[Python-checkins] python/dist/src/PC pyconfig.h,1.27,1.28
loewis at users.sourceforge.net
loewis at users.sourceforge.net
Tue Jul 27 17:57:26 CEST 2004
Update of /cvsroot/python/python/dist/src/PC
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22726/PC
Modified Files:
pyconfig.h
Log Message:
Use intptr_t/uintptr_t on Windows
Index: pyconfig.h
===================================================================
RCS file: /cvsroot/python/python/dist/src/PC/pyconfig.h,v
retrieving revision 1.27
retrieving revision 1.28
diff -C2 -d -r1.27 -r1.28
*** pyconfig.h 27 Jul 2004 14:16:14 -0000 1.27
--- pyconfig.h 27 Jul 2004 15:57:24 -0000 1.28
***************
*** 268,271 ****
--- 268,276 ----
#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
***************
*** 485,488 ****
--- 490,496 ----
#define HAVE_STDARG_PROTOTYPES
+ /* Define if you have the <stddef.h> header file. */
+ #define HAVE_STDDEF_H 1
+
/* Define if you have the <sys/audioio.h> header file. */
/* #undef HAVE_SYS_AUDIOIO_H */
More information about the Python-checkins
mailing list