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 | 3b116f2a9be9f576d672bc0b2877672d3cebf6ec (patch) | |
tree | a7fe0ab0bf37af87af9457859be156962b1e1b73 | |
parent | 5ea77a1278925d9b30a03e71a439124624ec4a4e (diff) | |
download | aura-central-3b116f2a9be9f576d672bc0b2877672d3cebf6ec.tar.gz |
Issue mcp-graveyard/UXP%325 Part 15: Remove ENABLE_INTL_API and EXPOSE_INTL_API flags.
-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 |