diff options
author | Job Bautista <jobbautista9@aol.com> | 2023-03-24 17:51:39 +0800 |
---|---|---|
committer | Job Bautista <jobbautista9@aol.com> | 2023-03-24 17:51:39 +0800 |
commit | 431f782f1714e0b0631f0d9b3ef296f61f49c3d4 (patch) | |
tree | b95e62236e3fa02366907e5b9a38cfcedac29baf /old-configure.in | |
parent | ee870812ffeac2731af182d8388367635e84242d (diff) | |
download | uxp-431f782f1714e0b0631f0d9b3ef296f61f49c3d4.tar.gz |
Issue #2165 - Follow-up: Always build ICU as shared lib in Windows.
Diffstat (limited to 'old-configure.in')
-rw-r--r-- | old-configure.in | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/old-configure.in b/old-configure.in index ccd8d16491..b3a108dd1d 100644 --- a/old-configure.in +++ b/old-configure.in @@ -4872,6 +4872,11 @@ MOZ_ARG_ENABLE_BOOL(shared-icu, MOZ_SHARED_ICU=1, MOZ_SHARED_ICU=) +# We want shared ICU to always be enabled on Windows regardless of the enable bool. +if test "$OS_ARCH" = "WINNT"; then + MOZ_SHARED_ICU=1 +fi + MOZ_CONFIG_ICU() dnl Echo the CFLAGS to remove extra whitespace. |