summaryrefslogtreecommitdiffstats
path: root/js/src/moz.build
diff options
context:
space:
mode:
authorwolfbeast <mcwerewolf@gmail.com>2018-05-04 12:08:48 +0200
committerwolfbeast <mcwerewolf@gmail.com>2018-05-04 15:50:01 +0200
commita2652e5bc46b411f894d0a343f6ea6a83f07e3e2 (patch)
tree0dc3797117bfb9a02f7f1615c46eebc9b717b3b6 /js/src/moz.build
parent58751cc2ad952d73754fcf6bd894af865074ede6 (diff)
downloadUXP-a2652e5bc46b411f894d0a343f6ea6a83f07e3e2.tar
UXP-a2652e5bc46b411f894d0a343f6ea6a83f07e3e2.tar.gz
UXP-a2652e5bc46b411f894d0a343f6ea6a83f07e3e2.tar.lz
UXP-a2652e5bc46b411f894d0a343f6ea6a83f07e3e2.tar.xz
UXP-a2652e5bc46b411f894d0a343f6ea6a83f07e3e2.zip
Issue #325 Part 5: Remove non-Intl legacy code paths from js.
Diffstat (limited to 'js/src/moz.build')
-rw-r--r--js/src/moz.build23
1 files changed, 11 insertions, 12 deletions
diff --git a/js/src/moz.build b/js/src/moz.build
index 2d4e83db3..a3283b5d6 100644
--- a/js/src/moz.build
+++ b/js/src/moz.build
@@ -645,18 +645,17 @@ else:
FORCE_STATIC_LIB = True
STATIC_LIBRARY_NAME = 'js_static'
-if CONFIG['ENABLE_INTL_API']:
- if not CONFIG['MOZ_ICU_DATA_ARCHIVE']:
- USE_LIBS += [
- 'icu',
- ]
- else:
- # Linking 'icu' will pull in the stubdata library,
- # which the shell doesn't want, so link the other bits.
- USE_LIBS += [
- 'icui18n',
- 'icuuc',
- ]
+if not CONFIG['MOZ_ICU_DATA_ARCHIVE']:
+ USE_LIBS += [
+ 'icu',
+ ]
+else:
+ # Linking 'icu' will pull in the stubdata library,
+ # which the shell doesn't want, so link the other bits.
+ USE_LIBS += [
+ 'icui18n',
+ 'icuuc',
+ ]
USE_LIBS += [
'nspr',