diff options
author | Benjamin Peterson <benjamin@python.org> | 2016-09-06 20:33:56 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2016-09-06 20:33:56 (GMT) |
commit | b9d9eeda2ad0155c2bb1ce6601f5b311d411f848 (patch) | |
tree | b814cfbf85ac6c394f131b8ef95e300a7f47477e /configure.ac | |
parent | d982c8f51e33356bcb41678d7759395078ba536b (diff) | |
download | cpython-b9d9eeda2ad0155c2bb1ce6601f5b311d411f848.zip cpython-b9d9eeda2ad0155c2bb1ce6601f5b311d411f848.tar.gz cpython-b9d9eeda2ad0155c2bb1ce6601f5b311d411f848.tar.bz2 |
require uintptr_t to exist
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/configure.ac b/configure.ac index 29d5527..9358f0a 100644 --- a/configure.ac +++ b/configure.ac @@ -2101,11 +2101,6 @@ if test "$have_c99_bool" = yes ; then AC_CHECK_SIZEOF(_Bool, 1) fi -AC_CHECK_TYPES(uintptr_t, - [AC_CHECK_SIZEOF(uintptr_t, 4)], - [], [#include <stdint.h> - #include <inttypes.h>]) - AC_CHECK_SIZEOF(off_t, [], [ #ifdef HAVE_SYS_TYPES_H #include <sys/types.h> |