[Python-checkins] r59757 - python/trunk/PCbuild/build_tkinter.py

christian.heimes python-checkins at python.org
Sat Jan 5 22:35:53 CET 2008


Author: christian.heimes
Date: Sat Jan  5 22:35:52 2008
New Revision: 59757

Modified:
   python/trunk/PCbuild/build_tkinter.py
Log:
Final adjustments for #1601

Modified: python/trunk/PCbuild/build_tkinter.py
==============================================================================
--- python/trunk/PCbuild/build_tkinter.py	(original)
+++ python/trunk/PCbuild/build_tkinter.py	Sat Jan  5 22:35:52 2008
@@ -24,7 +24,9 @@
 ROOT = os.path.abspath(os.path.join(here, par, par))
 # Windows 2000 compatibility: WINVER 0x0500
 # http://msdn2.microsoft.com/en-us/library/aa383745.aspx
-NMAKE = "nmake /nologo /f %s COMPILERFLAGS=-DWINVER=0x0500 %s %s"
+NMAKE = ('nmake /nologo /f %s '
+    'COMPILERFLAGS=\"-DWINVER=0x0500 -D_WIN32_WINNT=0x0500 -DNTDDI_VERSION=NTDDI_WIN2KSP4\"'
+    '%s %s')
 
 def nmake(makefile, command="", **kw):
     defines = ' '.join(k+'='+v for k, v in kw.items())


More information about the Python-checkins mailing list