summaryrefslogtreecommitdiffstats
path: root/configure.py
diff options
context:
space:
mode:
authorJesse McKenna <jessemckenna@google.com>2019-07-23 22:10:17 (GMT)
committerJesse McKenna <jessemckenna@google.com>2019-07-23 22:10:17 (GMT)
commit007e029ea35e29466bd40cc38de42d3c8eab70d3 (patch)
tree37b6bb80c364f1ed8c0c19338f67913e3a4ebce9 /configure.py
parenta3a5d60622eb7330b8d82ff6620d28e3b90c6848 (diff)
downloadNinja-007e029ea35e29466bd40cc38de42d3c8eab70d3.zip
Ninja-007e029ea35e29466bd40cc38de42d3c8eab70d3.tar.gz
Ninja-007e029ea35e29466bd40cc38de42d3c8eab70d3.tar.bz2
Update WIN32_WINNT from 0x0501 (Windows XP) to 0x0601 (Windows 7) to support processor-group Windows API
Diffstat (limited to 'configure.py')
-rwxr-xr-xconfigure.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.py b/configure.py
index 850bb98..0393cdd 100755
--- a/configure.py
+++ b/configure.py
@@ -351,7 +351,7 @@ else:
except:
pass
if platform.is_mingw():
- cflags += ['-D_WIN32_WINNT=0x0501']
+ cflags += ['-D_WIN32_WINNT=0x0601']
ldflags = ['-L$builddir']
if platform.uses_usr_local():
cflags.append('-I/usr/local/include')