summaryrefslogtreecommitdiff
path: root/common.gypi
diff options
context:
space:
mode:
authorBen Noordhuis <info@bnoordhuis.nl>2013-11-21 17:13:58 +0100
committerTrevor Norris <trev.norris@gmail.com>2013-12-05 16:15:21 -0800
commit9e32a7daaa62c809eaafa171e898f6d61865cff2 (patch)
tree9dd6ff8e8b0fb7169bd01d18f34265c15c1eb86d /common.gypi
parent9ba0d905b0da23d540c23b073d794989612d4664 (diff)
downloadnode-new-9e32a7daaa62c809eaafa171e898f6d61865cff2.tar.gz
build: add libicu i18n support
Adds a --with-icu-path= switch to the configure script. Requires that the user checks out the copy of libicu that's bundled with chromium to a fixed directory. It's still a little rough around the edges but it works. Fixes #6371.
Diffstat (limited to 'common.gypi')
-rw-r--r--common.gypi2
1 files changed, 2 insertions, 0 deletions
diff --git a/common.gypi b/common.gypi
index 877464af3e..7e1e99969f 100644
--- a/common.gypi
+++ b/common.gypi
@@ -14,8 +14,10 @@
# Enable V8's post-mortem debugging only on unix flavors.
'conditions': [
['OS == "win"', {
+ 'os_posix': 0,
'v8_postmortem_support': 'false'
}, {
+ 'os_posix': 1,
'v8_postmortem_support': 'true'
}]
],