diff options
author | Job Bautista <jobbautista9@aol.com> | 2023-03-19 10:55:00 +0800 |
---|---|---|
committer | Job Bautista <jobbautista9@aol.com> | 2023-03-19 10:55:00 +0800 |
commit | 0c63f5a27346875dd04c8bb41eced35203d20567 (patch) | |
tree | 8e5c74c92a193d1803507e29c8010c7b54ec2542 /old-configure.in | |
parent | eac34369607620a9c80e0472a627ae8a7ec095be (diff) | |
download | uxp-0c63f5a27346875dd04c8bb41eced35203d20567.tar.gz |
Issue #2165 - Follow-up: No longer support bundling the ICU data file into packaging, fold it into the ICU shared library, and always build ICU shared.
This removes two variables in the build system: MOZ_ICU_DATA_ARCHIVE and
MOZ_SHARED_ICU.
Per discussion in PR #2164, it's now preferred to fold the ICU data into the new
shared library.
This effectively means --enable-shared-icu is no longer a thing. UXP apps must
update their packaging manifest to avoid breakage.
Diffstat (limited to 'old-configure.in')
-rw-r--r-- | old-configure.in | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/old-configure.in b/old-configure.in index ccd8d16491..b193301d61 100644 --- a/old-configure.in +++ b/old-configure.in @@ -4864,14 +4864,9 @@ AC_SUBST(WIN32_REDIST_DIR) AC_SUBST(WIN_UCRT_REDIST_DIR) dnl ======================================================== -dnl ICU Shared Library Support +dnl ICU Configuration dnl ======================================================== -MOZ_ARG_ENABLE_BOOL(shared-icu, -[ --enable-shared-icu Build ICU as a shared library], - MOZ_SHARED_ICU=1, - MOZ_SHARED_ICU=) - MOZ_CONFIG_ICU() dnl Echo the CFLAGS to remove extra whitespace. |