head 1.2; access; symbols; locks; strict; comment @// @; 1.2 date 2021.05.13.08.20.58; author leot; state dead; branches; next 1.1; commitid bmc2DCIVeIarKXSC; 1.1 date 2021.04.25.12.00.24; author leot; state Exp; branches; next ; commitid s60llHjaVFc7xFQC; desc @@ 1.2 log @webkit-gtk: Update to 2.32.1 pkgsrc changes: - Remove patches applied upstream Changes: 2.32.1 ------ - Support building against the Musl C library. - Support building against ICU version 69 or newer. - Improve handling of Media Capture devices. - Improve WebAudio playback. - Improve video orientation handling. - Improve seeking support for MSE playback. - Improve flush support in EME decryptors. - Fix HTTP status codes for requests done through a custom URI handler. - Fix the Bubblewrap sandbox in certain 32-bit systems. - Fix inconsistencies between the WebKitWebView.is-muted property state and values returned by webkit_web_view_is_playing_audio(). - Fix the build with ENABLE_VIDEO=OFF. - Fix wrong timestamps for long-lived cookies. - Fix UI process crash when failing to load favicons. - Fix several crashes and rendering issues. - Translation updates: Swedish. @ text @$NetBSD: patch-Source_JavaScriptCore_runtime_IntlSegments.cpp,v 1.1 2021/04/25 12:00:24 leot Exp $ Fix build for ICU >= 69. From: https://trac.webkit.org/changeset/275920/webkit?format=diff&new=275920 --- Source/JavaScriptCore/runtime/IntlSegments.cpp.orig 2021-02-26 09:57:05.000000000 +0000 +++ Source/JavaScriptCore/runtime/IntlSegments.cpp @@@@ -100,7 +100,7 @@@@ JSObject* IntlSegments::createSegmentIte auto scope = DECLARE_THROW_SCOPE(vm); UErrorCode status = U_ZERO_ERROR; - auto segmenter = std::unique_ptr(ubrk_safeClone(m_segmenter.get(), nullptr, nullptr, &status)); + auto segmenter = std::unique_ptr(cloneUBreakIterator(m_segmenter.get(), &status)); if (U_FAILURE(status)) { throwTypeError(globalObject, scope, "failed to initialize SegmentIterator"_s); return nullptr; @ 1.1 log @webkit-gtk: Backport upstream patches to fix the build for ICU >= 69 PKGREVISION++ Thanks to for pointing out them! @ text @d1 1 a1 1 $NetBSD$ @