]> granicus.if.org Git - python/commitdiff
Merged revisions 85349 via svnmerge from
authorAntoine Pitrou <solipsis@pitrou.net>
Sun, 10 Oct 2010 08:15:08 +0000 (08:15 +0000)
committerAntoine Pitrou <solipsis@pitrou.net>
Sun, 10 Oct 2010 08:15:08 +0000 (08:15 +0000)
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.
........

Misc/ACKS
Misc/NEWS
configure
configure.in

index 0c48237f8d7b921bc8fd39a41dcfdc5f5217754e..95dbb9e49a4c3f727c586af53f382700a5ecb179 100644 (file)
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -411,6 +411,7 @@ Randall Kern
 Magnus Kessler
 Lawrence Kesteloot
 Vivek Khera
+Akira Kitada
 Mads Kiilerich
 Taek Joo Kim
 Paul Kippes
index a76b99557c610e65adc8f96699bd464098e323eb..3b76452938ced58f12560f52ba8762ed64586c07 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -600,6 +600,9 @@ Extension Modules
 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 #6244: Allow detect_tkinter to look for Tcl/Tk 8.6.
index 4a2f352e9c07815f00b345f386ad0bf2ae29331a..068bb330a1a5f52db7d7e2a0d7214871f80cfe6c 100755 (executable)
--- a/configure
+++ b/configure
@@ -1,5 +1,5 @@
 #! /bin/sh
-# From configure.in Revision: 84682 .
+# From configure.in Revision: 85251 .
 # Guess values for system-dependent variables and create Makefiles.
 # Generated by GNU Autoconf 2.65 for python 3.1.
 #
@@ -7073,6 +7073,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 :
 
@@ -9007,7 +9010,7 @@ fi
 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $with_doc_strings" >&5
 $as_echo "$with_doc_strings" >&6; }
 
-# Check for Python-specific malloc support
+# Check if eval loop should use timestamp counter profiling
 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for --with-tsc" >&5
 $as_echo_n "checking for --with-tsc... " >&6; }
 
index 6587bee5ba1089583e233236f9236ce3f772eae4..2863b8dbef5118e3a9ec738f214b78a2e5f77da5 100644 (file)
@@ -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])