[Python-checkins] python/dist/src/PC pyconfig.h,1.26,1.27
loewis at users.sourceforge.net
loewis at users.sourceforge.net
Tue Jul 27 16:16:17 CEST 2004
Update of /cvsroot/python/python/dist/src/PC
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2949
Modified Files:
pyconfig.h
Log Message:
Properly check for Win64 compilers.
Index: pyconfig.h
===================================================================
RCS file: /cvsroot/python/python/dist/src/PC/pyconfig.h,v
retrieving revision 1.26
retrieving revision 1.27
diff -C2 -d -r1.26 -r1.27
*** pyconfig.h 10 Feb 2004 16:50:19 -0000 1.26
--- pyconfig.h 27 Jul 2004 14:16:14 -0000 1.27
***************
*** 99,102 ****
--- 99,106 ----
#ifdef _M_IX86
#define COMPILER _Py_PASTE_VERSION("64 bit (Intel)")
+ #elif defined(_M_IA64)
+ #define COMPILER _Py_PASTE_VERSION("64 bit (Itanium)")
+ #elif defined(_M_AMD64)
+ #define COMPILER _Py_PASTE_VERSION("64 bit (AMD64)")
#else
#define COMPILER _Py_PASTE_VERSION("64 bit (Unknown)")
More information about the Python-checkins
mailing list