diff options
author | Mark Dickinson <dickinsm@gmail.com> | 2012-12-02 12:11:38 (GMT) |
---|---|---|
committer | Mark Dickinson <dickinsm@gmail.com> | 2012-12-02 12:11:38 (GMT) |
commit | 983bc16c15234a2b18c56e7f7dfeeeb4b789f29a (patch) | |
tree | 634210486f55d4a1374d2ced316e7bd6183913f1 /pyconfig.h.in | |
parent | d8d1a0ab78d6bc32940462620967c2334c569752 (diff) | |
download | cpython-983bc16c15234a2b18c56e7f7dfeeeb4b789f29a.zip cpython-983bc16c15234a2b18c56e7f7dfeeeb4b789f29a.tar.gz cpython-983bc16c15234a2b18c56e7f7dfeeeb4b789f29a.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 3ca3a4f..10e2c91 100644 --- a/pyconfig.h.in +++ b/pyconfig.h.in @@ -426,6 +426,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 @@ -1047,6 +1053,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 |