diff options
Diffstat (limited to 'meta-oe/recipes-extended/mozjs/mozjs-128/0001-Link-with-icu-uc-to-fix-build-with-ICU-76.patch')
-rw-r--r-- | meta-oe/recipes-extended/mozjs/mozjs-128/0001-Link-with-icu-uc-to-fix-build-with-ICU-76.patch | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/meta-oe/recipes-extended/mozjs/mozjs-128/0001-Link-with-icu-uc-to-fix-build-with-ICU-76.patch b/meta-oe/recipes-extended/mozjs/mozjs-128/0001-Link-with-icu-uc-to-fix-build-with-ICU-76.patch new file mode 100644 index 0000000000..4fb7a28eeb --- /dev/null +++ b/meta-oe/recipes-extended/mozjs/mozjs-128/0001-Link-with-icu-uc-to-fix-build-with-ICU-76.patch | |||
@@ -0,0 +1,27 @@ | |||
1 | From cbb5cc1022cc27edefc8eabbe21458cac9bda6fb Mon Sep 17 00:00:00 2001 | ||
2 | From: Khem Raj <raj.khem@gmail.com> | ||
3 | Date: Sat, 23 Nov 2024 13:28:33 -0800 | ||
4 | Subject: [PATCH] Link with icu-uc to fix build with ICU-76 | ||
5 | |||
6 | Fixes | ||
7 | https://bugzilla.mozilla.org/show_bug.cgi?id=1927380 | ||
8 | |||
9 | Upstream-Status: Pending | ||
10 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
11 | --- | ||
12 | js/moz.configure | 2 +- | ||
13 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
14 | |||
15 | diff --git a/js/moz.configure b/js/moz.configure | ||
16 | index 593b93acee..2181dca34b 100644 | ||
17 | --- a/js/moz.configure | ||
18 | +++ b/js/moz.configure | ||
19 | @@ -1305,7 +1305,7 @@ def enable_system_icu_option(enable_system_icu): | ||
20 | return enable_system_icu | ||
21 | |||
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(enable_system_icu_option) | ||