diff options
author | wolfbeast <mcwerewolf@gmail.com> | 2018-05-04 22:13:41 +0200 |
---|---|---|
committer | wolfbeast <mcwerewolf@gmail.com> | 2018-05-04 22:13:41 +0200 |
commit | 2860601772b392f3f6d2977269f11061f4e970ee (patch) | |
tree | a7fe0ab0bf37af87af9457859be156962b1e1b73 /build/autoconf/icu.m4 | |
parent | 891026d00551992f4c957eb20c13d65183126605 (diff) | |
download | UXP-2860601772b392f3f6d2977269f11061f4e970ee.tar UXP-2860601772b392f3f6d2977269f11061f4e970ee.tar.gz UXP-2860601772b392f3f6d2977269f11061f4e970ee.tar.lz UXP-2860601772b392f3f6d2977269f11061f4e970ee.tar.xz UXP-2860601772b392f3f6d2977269f11061f4e970ee.zip |
Issue #325 Part 15: Remove ENABLE_INTL_API and EXPOSE_INTL_API flags.
Diffstat (limited to 'build/autoconf/icu.m4')
-rw-r--r-- | build/autoconf/icu.m4 | 20 |
1 files changed, 2 insertions, 18 deletions
diff --git a/build/autoconf/icu.m4 b/build/autoconf/icu.m4 index 87d0f0ade..89c53c52c 100644 --- a/build/autoconf/icu.m4 +++ b/build/autoconf/icu.m4 @@ -22,24 +22,8 @@ fi AC_SUBST(MOZ_SYSTEM_ICU) -dnl Determine the status of the ECMAScript Internationalization API. -dnl ENABLE_INTL_API builds it, but doesn't determine if it's used or exposed -dnl EXPOSE_INTL_API (when built) uses ICU and exposes the API to js - -ENABLE_INTL_API=1 -EXPOSE_INTL_API=1 - -if test -n "$ENABLE_INTL_API"; then - USE_ICU=1 -fi - -if test -n "$EXPOSE_INTL_API"; then - AC_DEFINE(EXPOSE_INTL_API) -fi - -if test -n "$ENABLE_INTL_API"; then - AC_DEFINE(ENABLE_INTL_API) -fi +dnl We always use ICU. +USE_ICU=1 dnl Settings for the implementation of the ECMAScript Internationalization API if test -n "$USE_ICU"; then |