diff options
-rw-r--r-- | meta-oe/recipes-extended/mozjs/mozjs-115/0001-Link-with-icu-uc-to-fix-build-with-ICU-76.patch | 27 | ||||
-rw-r--r-- | meta-oe/recipes-extended/mozjs/mozjs-115_115.16.1.bb | 1 |
2 files changed, 28 insertions, 0 deletions
diff --git a/meta-oe/recipes-extended/mozjs/mozjs-115/0001-Link-with-icu-uc-to-fix-build-with-ICU-76.patch b/meta-oe/recipes-extended/mozjs/mozjs-115/0001-Link-with-icu-uc-to-fix-build-with-ICU-76.patch new file mode 100644 index 0000000000..8b1fee2cae --- /dev/null +++ b/meta-oe/recipes-extended/mozjs/mozjs-115/0001-Link-with-icu-uc-to-fix-build-with-ICU-76.patch | |||
@@ -0,0 +1,27 @@ | |||
1 | From 3b75498f523ce6e41662ec79ff7180def6af8a99 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 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") | ||
diff --git a/meta-oe/recipes-extended/mozjs/mozjs-115_115.16.1.bb b/meta-oe/recipes-extended/mozjs/mozjs-115_115.16.1.bb index d235b252ae..df75e29bd3 100644 --- a/meta-oe/recipes-extended/mozjs/mozjs-115_115.16.1.bb +++ b/meta-oe/recipes-extended/mozjs/mozjs-115_115.16.1.bb | |||
@@ -18,6 +18,7 @@ SRC_URI = "https://archive.mozilla.org/pub/firefox/releases/${PV}esr/source/fire | |||
18 | file://armv5.patch \ | 18 | file://armv5.patch \ |
19 | file://1849070.patch \ | 19 | file://1849070.patch \ |
20 | file://1894423.patch \ | 20 | file://1894423.patch \ |
21 | file://0001-Link-with-icu-uc-to-fix-build-with-ICU-76.patch \ | ||
21 | " | 22 | " |
22 | SRC_URI[sha256sum] = "c3bb5a210738ca0f8cd26aa53fc4a07560db079c06cd0421cf35af4035029367" | 23 | SRC_URI[sha256sum] = "c3bb5a210738ca0f8cd26aa53fc4a07560db079c06cd0421cf35af4035029367" |
23 | 24 | ||