Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaijiro Wachi <daijiro.wachi@gmail.com>2020-09-27 12:10:28 +0300
committerRich Trott <rtrott@gmail.com>2020-09-30 16:09:13 +0300
commitd8ec5a2e92b431ccea3fb83362628a0696273842 (patch)
tree9b91779ca263143b7644290cdeeff3f0f1670989
parente2475d5b54d11b0d2ef7debd18adf61ce0804a7d (diff)
doc: update example ICU URL
PR-URL: https://github.com/nodejs/node/pull/35373 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
-rw-r--r--doc/guides/maintaining-icu.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/guides/maintaining-icu.md b/doc/guides/maintaining-icu.md
index f83a435b847..4b0c413c3f9 100644
--- a/doc/guides/maintaining-icu.md
+++ b/doc/guides/maintaining-icu.md
@@ -83,7 +83,7 @@ V8 will not compile.
```c
// deps/v8/src/objects/intl-objects.h
-#define V8_MINIMUM_ICU_VERSION 64
+#define V8_MINIMUM_ICU_VERSION 65
```
V8 in Node.js depends on the ICU version supplied by Node.js.
@@ -104,7 +104,7 @@ should be sufficient).
```bash
./configure \
--with-intl=full-icu \
- --with-icu-source=http://download.icu-project.org/files/icu4c/58.1/icu4c-58_1-src.tgz
+ --with-icu-source=https://github.com/unicode-org/icu/releases/download/release-67-1/icu4c-67_1-src.tgz
make
```