From 9e32a7daaa62c809eaafa171e898f6d61865cff2 Mon Sep 17 00:00:00 2001 From: Ben Noordhuis Date: Thu, 21 Nov 2013 17:13:58 +0100 Subject: 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. --- common.gypi | 2 ++ 1 file changed, 2 insertions(+) (limited to 'common.gypi') 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' }] ], -- cgit v1.2.1