diff options
author | Mark Dickinson <dickinsm@gmail.com> | 2012-12-02 13:13:56 (GMT) |
---|---|---|
committer | Mark Dickinson <dickinsm@gmail.com> | 2012-12-02 13:13:56 (GMT) |
commit | 17c50cdac2c35e4f37bc5fd68f24a00d1e7c67a6 (patch) | |
tree | b3edc20f58e9593f51d297facf6abc90ca9e27b4 /pyconfig.h.in | |
parent | b83575b0a5a798301a85a602a8d888329da0cf88 (diff) | |
download | cpython-17c50cdac2c35e4f37bc5fd68f24a00d1e7c67a6.zip cpython-17c50cdac2c35e4f37bc5fd68f24a00d1e7c67a6.tar.gz cpython-17c50cdac2c35e4f37bc5fd68f24a00d1e7c67a6.tar.bz2 |
Issue 10052: fix failed uint32_t / uint64_t / int32_t / int64_t detection on some platforms.
Diffstat (limited to 'pyconfig.h.in')
-rw-r--r-- | pyconfig.h.in | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/pyconfig.h.in b/pyconfig.h.in index 9c8801d..7703992 100644 --- a/pyconfig.h.in +++ b/pyconfig.h.in @@ -370,6 +370,12 @@ /* Define to 1 if you have the `initgroups' function. */ #undef HAVE_INITGROUPS +/* Define if your compiler provides int32_t. */ +#undef HAVE_INT32_T + +/* Define if your compiler provides int64_t. */ +#undef HAVE_INT64_T + /* Define to 1 if you have the <inttypes.h> header file. */ #undef HAVE_INTTYPES_H @@ -847,6 +853,12 @@ /* Define this if you have tcl and TCL_UTF_MAX==6 */ #undef HAVE_UCS4_TCL +/* Define if your compiler provides uint32_t. */ +#undef HAVE_UINT32_T + +/* Define if your compiler provides uint64_t. */ +#undef HAVE_UINT64_T + /* Define to 1 if the system has the type `uintptr_t'. */ #undef HAVE_UINTPTR_T |