summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEvan Martin <martine@danga.com>2012-02-04 05:24:11 (GMT)
committerEvan Martin <martine@danga.com>2012-02-04 05:24:11 (GMT)
commit06315b1e2e2db9ba5dbb1d4ecf91344846c0de3a (patch)
tree7d53a1a4edffad14eb92d168ae4ba6b99d9763b8
parent717ccbea94a31621918ac508f98e061e9bd82469 (diff)
parent3c252b0234108b000e9559e8ccaf2c0629478419 (diff)
downloadNinja-06315b1e2e2db9ba5dbb1d4ecf91344846c0de3a.zip
Ninja-06315b1e2e2db9ba5dbb1d4ecf91344846c0de3a.tar.gz
Ninja-06315b1e2e2db9ba5dbb1d4ecf91344846c0de3a.tar.bz2
Merge pull request #211 from okuoku/msvc-build-c4819
windows: Disable warning C4819
-rwxr-xr-xconfigure.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.py b/configure.py
index be47446..78428d9 100755
--- a/configure.py
+++ b/configure.py
@@ -103,7 +103,7 @@ else:
if platform == 'windows':
cflags = ['/nologo', '/Zi', '/W4', '/WX', '/wd4530', '/wd4100', '/wd4706',
- '/wd4512', '/wd4800', '/wd4702',
+ '/wd4512', '/wd4800', '/wd4702', '/wd4819',
'/D_CRT_SECURE_NO_WARNINGS',
"/DNINJA_PYTHON=\"%s\"" % (options.with_python,)]
ldflags = ['/DEBUG', '/libpath:$builddir']