[Python-checkins] r78266 - python/branches/py3k-cdecimal/Modules/cdecimal/mpdecimal.h

stefan.krah python-checkins at python.org
Sat Feb 20 22:49:04 CET 2010


Author: stefan.krah
Date: Sat Feb 20 22:49:02 2010
New Revision: 78266

Log:
PCbuild process does not use pyconfig.h

Modified:
   python/branches/py3k-cdecimal/Modules/cdecimal/mpdecimal.h

Modified: python/branches/py3k-cdecimal/Modules/cdecimal/mpdecimal.h
==============================================================================
--- python/branches/py3k-cdecimal/Modules/cdecimal/mpdecimal.h	(original)
+++ python/branches/py3k-cdecimal/Modules/cdecimal/mpdecimal.h	Sat Feb 20 22:49:02 2010
@@ -8,9 +8,6 @@
 #define MPDECIMAL_H
 
 
-#include "pyconfig.h"
-
-
 #ifdef _MSC_VER
   #include "vccompat.h"
   #ifndef UNUSED
@@ -18,6 +15,7 @@
   #endif
   #define EXTINLINE extern inline
 #else
+  #include "pyconfig.h"
   #if HAVE_STDINT_H
     #include <stdint.h>
   #endif


More information about the Python-checkins mailing list