diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2010-10-10 08:15:08 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2010-10-10 08:15:08 (GMT) |
commit | c15835437d23bfa8b6665dafeeb64123df0a1625 (patch) | |
tree | 54a5faf85417120271cb8210bdc36a4791344afa /configure.in | |
parent | e6788dbfdc7f745cfb6a0122a0c301e5f7d4914c (diff) | |
download | cpython-c15835437d23bfa8b6665dafeeb64123df0a1625.zip cpython-c15835437d23bfa8b6665dafeeb64123df0a1625.tar.gz cpython-c15835437d23bfa8b6665dafeeb64123df0a1625.tar.bz2 |
Merged revisions 85349 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r85349 | antoine.pitrou | 2010-10-10 10:10:16 +0200 (dim., 10 oct. 2010) | 4 lines
Some platforms provide uintptr_t in inttypes.h. Patch by
Akira Kitada.
........
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/configure.in b/configure.in index 6587bee..2863b8d 100644 --- a/configure.in +++ b/configure.in @@ -1472,6 +1472,9 @@ AC_CHECK_TYPES(uintptr_t, [AC_CHECK_SIZEOF(uintptr_t, 4)], [], [#ifdef HAVE_STDINT_H #include <stdint.h> + #endif + #ifdef HAVE_INTTYPES_H + #include <inttypes.h> #endif]) |