[Python-checkins] r62020 - python/trunk/PC/pyconfig.h

amaury.forgeotdarc python-checkins at python.org
Fri Mar 28 23:43:38 CET 2008


Author: amaury.forgeotdarc
Date: Fri Mar 28 23:43:38 2008
New Revision: 62020

Modified:
   python/trunk/PC/pyconfig.h
Log:
One #ifdef too much, and I broke all windows buildbots: 
in pyconfig.h, NTDDI_WIN2KSP4 is not *yet* defined, but will be at some point on some modules.

Let this line even for older SDKs, they don't use it anyway.


Modified: python/trunk/PC/pyconfig.h
==============================================================================
--- python/trunk/PC/pyconfig.h	(original)
+++ python/trunk/PC/pyconfig.h	Fri Mar 28 23:43:38 2008
@@ -167,10 +167,8 @@
 #else
 #define Py_WINVER 0x0500
 #endif
-#ifdef NTDDI_WIN2KSP4
 #define Py_NTDDI NTDDI_WIN2KSP4
 #endif
-#endif
 
 /* We only set these values when building Python - we don't want to force
    these values on extensions, as that will affect the prototypes and


More information about the Python-checkins mailing list