Skip to content

Commit 071640a

Browse files
srl295rvagg
authored andcommitted
build: Intl: bump ICU4C from 54 to 55
node was using ICU4C 54 ( released 2014-oct-06 ) * Bump to ICU4C 55 ( released 2015-apr-08) * Timezone fixes, translation fixes, bug/performance fixes. * Speed improvements in date formatting * ICU4C 55 changelog: http://site.icu-project.org/download/55 * CLDR 27 changelog: http://cldr.unicode.org/index/downloads/cldr-27 * Retarget the file exclusions from ICU4C 54 to ICU4C 55 * (improves on-disk footprint on some platforms) Reviewed-By: João Reis <[email protected]> Reviewed-By: Johan Bergström <[email protected]> Fixes: #2292 PR-URL: #2293
1 parent e51f90d commit 071640a

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

configure

+3-3
Original file line numberDiff line numberDiff line change
@@ -796,9 +796,9 @@ def glob_to_var(dir_base, dir_sub):
796796
def configure_intl(o):
797797
icus = [
798798
{
799-
'url': 'http://download.icu-project.org/files/icu4c/54.1/icu4c-54_1-src.zip',
800-
# from https://ssl.icu-project.org/files/icu4c/54.1/icu4c-src-54_1.md5:
801-
'md5': '6b89d60e2f0e140898ae4d7f72323bca',
799+
'url': 'http://download.icu-project.org/files/icu4c/55.1/icu4c-55_1-src.zip',
800+
# from https://ssl.icu-project.org/files/icu4c/55.1/icu4c-src-55_1.md5:
801+
'md5': '4cddf1e1d47622fdd9de2cd7bb5001fd',
802802
},
803803
]
804804
def icu_download(path):

tools/icu/icu-generic.gyp

+4-4
Original file line numberDiff line numberDiff line change
@@ -111,8 +111,8 @@
111111
'<@(icu_src_i18n)'
112112
],
113113
'conditions': [
114-
[ 'icu_ver_major == 54', { 'sources!': [
115-
## Strip out the following for ICU 54 only.
114+
[ 'icu_ver_major == 55', { 'sources!': [
115+
## Strip out the following for ICU 55 only.
116116
## add more conditions in the future?
117117
## if your compiler can dead-strip, this will
118118
## make ZERO difference to binary size.
@@ -369,8 +369,8 @@
369369
'<@(icu_src_common)',
370370
],
371371
'conditions': [
372-
[ 'icu_ver_major == 54', { 'sources!': [
373-
## Strip out the following for ICU 54 only.
372+
[ 'icu_ver_major == 55', { 'sources!': [
373+
## Strip out the following for ICU 55 only.
374374
## add more conditions in the future?
375375
## if your compiler can dead-strip, this will
376376
## make ZERO difference to binary size.

0 commit comments

Comments
 (0)