1From 3b75498f523ce6e41662ec79ff7180def6af8a99 Mon Sep 17 00:00:00 2001 2From: Khem Raj <raj.khem@gmail.com> 3Date: Sat, 23 Nov 2024 13:28:33 -0800 4Subject: [PATCH] Link with icu-uc to fix build with ICU-76 5 6Fixes 7https://bugzilla.mozilla.org/show_bug.cgi?id=1927380 8 9Upstream-Status: Pending 10Signed-off-by: Khem Raj <raj.khem@gmail.com> 11--- 12 js/moz.configure | 2 +- 13 1 file changed, 1 insertion(+), 1 deletion(-) 14 15diff --git a/js/moz.configure b/js/moz.configure 16index af11416ec2..2b305bc8dd 100644 17--- a/js/moz.configure 18+++ b/js/moz.configure 19@@ -1104,7 +1104,7 @@ set_define( 20 # ====================================================== 21 system_lib_option("--with-system-icu", help="Use system ICU") 22 23-system_icu = pkg_check_modules("MOZ_ICU", "icu-i18n >= 73.1", when="--with-system-icu") 24+system_icu = pkg_check_modules("MOZ_ICU", "icu-i18n >= 73.1 icu-uc", when="--with-system-icu") 25 26 27 @depends("--with-system-icu") 28