]> granicus.if.org Git - python/commitdiff
Some platforms provide uintptr_t in inttypes.h. Patch by
authorAntoine Pitrou <solipsis@pitrou.net>
Sun, 10 Oct 2010 08:10:16 +0000 (08:10 +0000)
committerAntoine Pitrou <solipsis@pitrou.net>
Sun, 10 Oct 2010 08:10:16 +0000 (08:10 +0000)
Akira Kitada.

Misc/ACKS
Misc/NEWS
configure
configure.in

index 97792ad1ad47d5ffddd08455077883ab9d0b7664..e8132fb5bfafd38e57d7555dff499ffbad3398fa 100644 (file)
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -435,6 +435,7 @@ Randall Kern
 Magnus Kessler
 Lawrence Kesteloot
 Vivek Khera
+Akira Kitada
 Mads Kiilerich
 Taek Joo Kim
 Paul Kippes
index 94f0d8680ff63e9bc525385e750a1776c0d13630..81dc552e7e7a9f0ace8fb0b095d83bd2fce1d1ac 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -346,6 +346,9 @@ Tests
 Build
 -----
 
+- Issue #10054: Some platforms provide uintptr_t in inttypes.h.  Patch by
+  Akira Kitada.
+
 - Issue #10055: Make json C89-compliant in UCS4 mode.
 
 - Issue #9552: Avoid unnecessary rebuild of OpenSSL. (Windows)
index 0199ba0d52f2d1be5ff6cd25edb08b9e316d5465..f7d2334e361fc7b70895fb20cddde24cd60aedf7 100755 (executable)
--- a/configure
+++ b/configure
@@ -1,5 +1,5 @@
 #! /bin/sh
-# From configure.in Revision: 84752 .
+# From configure.in Revision: 84946 .
 # Guess values for system-dependent variables and create Makefiles.
 # Generated by GNU Autoconf 2.65 for python 3.2.
 #
@@ -7113,6 +7113,9 @@ fi
 ac_fn_c_check_type "$LINENO" "uintptr_t" "ac_cv_type_uintptr_t" "#ifdef HAVE_STDINT_H
         #include <stdint.h>
         #endif
+        #ifdef HAVE_INTTYPES_H
+        #include <inttypes.h>
+        #endif
 "
 if test "x$ac_cv_type_uintptr_t" = x""yes; then :
 
index d9e208e7d7b706b130c032dd734ed17075b352a0..80c581b014088f6c4a8cb7476d9e03a7feb9c8d3 100644 (file)
@@ -1483,6 +1483,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])
 
 AC_CHECK_SIZEOF(off_t, [], [