summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesse McKenna <jessemckenna@google.com>2019-07-23 15:10:17 -0700
committerJesse McKenna <jessemckenna@google.com>2019-07-23 15:10:17 -0700
commit007e029ea35e29466bd40cc38de42d3c8eab70d3 (patch)
tree37b6bb80c364f1ed8c0c19338f67913e3a4ebce9
parenta3a5d60622eb7330b8d82ff6620d28e3b90c6848 (diff)
downloadninja-007e029ea35e29466bd40cc38de42d3c8eab70d3.tar.gz
Update WIN32_WINNT from 0x0501 (Windows XP) to 0x0601 (Windows 7) to support processor-group Windows API
-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')