summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorJob Bautista <jobbautista9@protonmail.com>2022-07-25 14:07:36 +0800
committerJob Bautista <jobbautista9@protonmail.com>2022-07-25 14:07:36 +0800
commit824c2f0d4012f8e718dcca5c3db9b796a7530008 (patch)
treeaf2af37f56790bd99566c5566fafef3ec6b266de /config
parent6542ca6bcdf836ee1fb82b75d77adb0e9604b97b (diff)
downloaduxp-824c2f0d4012f8e718dcca5c3db9b796a7530008.tar.gz
Issue #1969 - Implement Intl.RelativeTimeFormat.
Based on Mozilla bugs 1270140, 1504656, 1483545, and 1504334. Took note of Mozilla bug 1379222 which changed GetPrototypeFromCallableConstructor to GetPrototypeFromBuiltinConstructor. There are many other changes I did myself since the initial implementation by Mozilla wouldn't work with this codebase.
Diffstat (limited to 'config')
-rw-r--r--config/check_spidermonkey_style.py2
-rw-r--r--config/external/icu/defs.mozbuild1
2 files changed, 2 insertions, 1 deletions
diff --git a/config/check_spidermonkey_style.py b/config/check_spidermonkey_style.py
index 4667a1a2ff..eb272a81c6 100644
--- a/config/check_spidermonkey_style.py
+++ b/config/check_spidermonkey_style.py
@@ -86,12 +86,14 @@ included_inclnames_to_ignore = set([
'unicode/ucol.h', # ICU
'unicode/udat.h', # ICU
'unicode/udatpg.h', # ICU
+ 'unicode/udisplaycontext.h',# ICU
'unicode/uenum.h', # ICU
'unicode/uniset.h', # ICU
'unicode/unorm.h', # ICU
'unicode/unum.h', # ICU
'unicode/unumsys.h', # ICU
'unicode/upluralrules.h', # ICU
+ 'unicode/ureldatefmt.h', # ICU
'unicode/ustring.h', # ICU
'unicode/utypes.h', # ICU
'vtune/VTuneWrapper.h' # VTune
diff --git a/config/external/icu/defs.mozbuild b/config/external/icu/defs.mozbuild
index a6249783f4..165564cf32 100644
--- a/config/external/icu/defs.mozbuild
+++ b/config/external/icu/defs.mozbuild
@@ -14,7 +14,6 @@ DEFINES.update(
UCONFIG_NO_LEGACY_CONVERSION = True,
UCONFIG_NO_TRANSLITERATION = True,
UCONFIG_NO_REGULAR_EXPRESSIONS = True,
- UCONFIG_NO_BREAK_ITERATION = True,
# We don't need to pass data to and from legacy char* APIs.
U_CHARSET_IS_UTF8 = True,