diff --git a/Include/Python.h b/Include/Python.h index a2be68f78ac..2d48d2eaa10 100644 --- a/Include/Python.h +++ b/Include/Python.h @@ -41,6 +41,11 @@ #include #endif +/* For uintptr_t, intptr_t */ +#ifdef HAVE_STDDEF_H +#include +#endif + /* CAUTION: Build setups should ensure that NDEBUG is defined on the * compiler command line when building Python in release mode; else * assert() calls won't be removed. diff --git a/PC/pyconfig.h b/PC/pyconfig.h index 557342f876e..2109d22959a 100644 --- a/PC/pyconfig.h +++ b/PC/pyconfig.h @@ -267,6 +267,11 @@ Py_NO_ENABLE_SHARED to find out. Also support MS_NO_COREDLL for b/w compat */ #define SIZEOF_LONG 4 #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 /* Fairly standard from here! */ @@ -484,6 +489,9 @@ Py_NO_ENABLE_SHARED to find out. Also support MS_NO_COREDLL for b/w compat */ /* Define if you have the prototypes. */ #define HAVE_STDARG_PROTOTYPES +/* Define if you have the header file. */ +#define HAVE_STDDEF_H 1 + /* Define if you have the header file. */ /* #undef HAVE_SYS_AUDIOIO_H */