Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit c158354

Browse files
committed
Merged revisions 85349 via svnmerge from
svn+ssh://[email protected]/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. ........
1 parent e6788db commit c158354

4 files changed

Lines changed: 12 additions & 2 deletions

File tree

Misc/ACKS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -411,6 +411,7 @@ Randall Kern
411411
Magnus Kessler
412412
Lawrence Kesteloot
413413
Vivek Khera
414+
Akira Kitada
414415
Mads Kiilerich
415416
Taek Joo Kim
416417
Paul Kippes

Misc/NEWS

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -600,6 +600,9 @@ Extension Modules
600600
Build
601601
-----
602602

603+
- Issue #10054: Some platforms provide uintptr_t in inttypes.h. Patch by
604+
Akira Kitada.
605+
603606
- Issue #10055: Make json C89-compliant in UCS4 mode.
604607

605608
- Issue #6244: Allow detect_tkinter to look for Tcl/Tk 8.6.

configure

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#! /bin/sh
2-
# From configure.in Revision: 84682 .
2+
# From configure.in Revision: 85251 .
33
# Guess values for system-dependent variables and create Makefiles.
44
# Generated by GNU Autoconf 2.65 for python 3.1.
55
#
@@ -7073,6 +7073,9 @@ fi
70737073
ac_fn_c_check_type "$LINENO" "uintptr_t" "ac_cv_type_uintptr_t" "#ifdef HAVE_STDINT_H
70747074
#include <stdint.h>
70757075
#endif
7076+
#ifdef HAVE_INTTYPES_H
7077+
#include <inttypes.h>
7078+
#endif
70767079
"
70777080
if test "x$ac_cv_type_uintptr_t" = x""yes; then :
70787081
@@ -9007,7 +9010,7 @@ fi
90079010
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $with_doc_strings" >&5
90089011
$as_echo "$with_doc_strings" >&6; }
90099012
9010-
# Check for Python-specific malloc support
9013+
# Check if eval loop should use timestamp counter profiling
90119014
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for --with-tsc" >&5
90129015
$as_echo_n "checking for --with-tsc... " >&6; }
90139016

configure.in

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1472,6 +1472,9 @@ AC_CHECK_TYPES(uintptr_t,
14721472
[AC_CHECK_SIZEOF(uintptr_t, 4)],
14731473
[], [#ifdef HAVE_STDINT_H
14741474
#include <stdint.h>
1475+
#endif
1476+
#ifdef HAVE_INTTYPES_H
1477+
#include <inttypes.h>
14751478
#endif])
14761479

14771480

0 commit comments

Comments
 (0)