summaryrefslogtreecommitdiff
path: root/dev-qt
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2024-01-17 12:17:08 +0100
committerAndreas Sturmlechner <asturm@gentoo.org>2024-01-17 12:17:59 +0100
commit830d6ed5d3210ba88a668dabd2b0d0e446602ba2 (patch)
treec8124f7b78dce0a7d7d76106c61ebb33bcbe07cc /dev-qt
parentdev-libs/skalibs: drop 2.13.1.1 (diff)
downloadgentoo-830d6ed5d3210ba88a668dabd2b0d0e446602ba2.tar.gz
gentoo-830d6ed5d3210ba88a668dabd2b0d0e446602ba2.tar.bz2
gentoo-830d6ed5d3210ba88a668dabd2b0d0e446602ba2.zip
dev-qt/qtwebengine: Restore accidentally dropped patch
Closes: https://bugs.gentoo.org/922312 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'dev-qt')
-rw-r--r--dev-qt/qtwebengine/files/qtwebengine-6.5.3-icu74.patch16
1 files changed, 16 insertions, 0 deletions
diff --git a/dev-qt/qtwebengine/files/qtwebengine-6.5.3-icu74.patch b/dev-qt/qtwebengine/files/qtwebengine-6.5.3-icu74.patch
new file mode 100644
index 000000000000..3d42f3f933c5
--- /dev/null
+++ b/dev-qt/qtwebengine/files/qtwebengine-6.5.3-icu74.patch
@@ -0,0 +1,16 @@
+Quick fix for a static_assert failure with icu74. Still waiting
+for a proper upstream fix and unknown if entirely right, but is
+an extension of [1] (is now 48 rather than 43).
+
+https://bugs.gentoo.org/917633
+
+[1] https://crrev.com/e60b571faa3f14dd9119a6792dccf12f8bf80192
+--- a/src/3rdparty/chromium/third_party/blink/renderer/platform/text/text_break_iterator.cc
++++ b/src/3rdparty/chromium/third_party/blink/renderer/platform/text/text_break_iterator.cc
+@@ -163,3 +163,5 @@
+
+-#if U_ICU_VERSION_MAJOR_NUM >= 58
++#if U_ICU_VERSION_MAJOR_NUM >= 74
++#define BA_LB_COUNT (U_LB_COUNT - 8)
++#elif U_ICU_VERSION_MAJOR_NUM >= 58
+ #define BA_LB_COUNT (U_LB_COUNT - 3)