diff options
author | Ben Noordhuis <info@bnoordhuis.nl> | 2013-11-21 17:13:58 +0100 |
---|---|---|
committer | Trevor Norris <trev.norris@gmail.com> | 2013-12-05 16:15:21 -0800 |
commit | 9e32a7daaa62c809eaafa171e898f6d61865cff2 (patch) | |
tree | 9dd6ff8e8b0fb7169bd01d18f34265c15c1eb86d /common.gypi | |
parent | 9ba0d905b0da23d540c23b073d794989612d4664 (diff) | |
download | node-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.gypi | 2 |
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' }] ], |