diff options
author | Mark Dickinson <dickinsm@gmail.com> | 2012-12-02 13:20:22 (GMT) |
---|---|---|
committer | Mark Dickinson <dickinsm@gmail.com> | 2012-12-02 13:20:22 (GMT) |
commit | ce31f66a6d23a5df75eb692c2991e7602b2b6571 (patch) | |
tree | 7acb60d9b9c765d1c7910a4958ac6577786a9de6 /pyconfig.h.in | |
parent | 43fb54cd4f27f9c27f114d7b6fb2e04b35441a92 (diff) | |
download | cpython-ce31f66a6d23a5df75eb692c2991e7602b2b6571.zip cpython-ce31f66a6d23a5df75eb692c2991e7602b2b6571.tar.gz cpython-ce31f66a6d23a5df75eb692c2991e7602b2b6571.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 ca8ccb6..6fff165 100644 --- a/pyconfig.h.in +++ b/pyconfig.h.in @@ -377,6 +377,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 @@ -863,6 +869,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 |