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 | |
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')
-rwxr-xr-x | configure | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -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; } |