[Python-checkins] python/dist/src/PC pyconfig.h,1.28,1.29
rhettinger at users.sourceforge.net
rhettinger at users.sourceforge.net
Tue Aug 3 10:52:48 CEST 2004
Update of /cvsroot/python/python/dist/src/PC
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10000/PC
Modified Files:
pyconfig.h
Log Message:
Restore compilation on MSVC++ 6.0
Index: pyconfig.h
===================================================================
RCS file: /cvsroot/python/python/dist/src/PC/pyconfig.h,v
retrieving revision 1.28
retrieving revision 1.29
diff -C2 -d -r1.28 -r1.29
*** pyconfig.h 27 Jul 2004 15:57:24 -0000 1.28
--- pyconfig.h 3 Aug 2004 08:52:46 -0000 1.29
***************
*** 268,275 ****
#define SIZEOF_LONG_LONG 8
! /* Atleast VC 7.1 has them. If some compiler does not provide them,
! #ifdef appropriately .*/
#define HAVE_UINTPTR_T 1
#define HAVE_INTPTR_T 1
#endif
--- 268,277 ----
#define SIZEOF_LONG_LONG 8
! /* VC 7.1 has them and VC 6.0 does not. VC 6.0 has a version number of 1200.
! If some compiler does not provide them, modify the #if appropriately. */
! #if _MSC_VER != 1200
#define HAVE_UINTPTR_T 1
#define HAVE_INTPTR_T 1
+ #endif
#endif
More information about the Python-checkins
mailing list