Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
1bf29b7d
Commit
1bf29b7d
authored
Oct 10, 2010
by
Antoine Pitrou
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Some platforms provide uintptr_t in inttypes.h. Patch by
Akira Kitada.
parent
79941b5c
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
11 additions
and
1 deletion
+11
-1
Misc/ACKS
Misc/ACKS
+1
-0
Misc/NEWS
Misc/NEWS
+3
-0
configure
configure
+4
-1
configure.in
configure.in
+3
-0
No files found.
Misc/ACKS
View file @
1bf29b7d
...
...
@@ -435,6 +435,7 @@ Randall Kern
Magnus Kessler
Lawrence Kesteloot
Vivek Khera
Akira Kitada
Mads Kiilerich
Taek Joo Kim
Paul Kippes
...
...
Misc/NEWS
View file @
1bf29b7d
...
...
@@ -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)
...
...
configure
View file @
1bf29b7d
#! /bin/sh
# From configure.in Revision: 84
752
.
# From configure.in Revision: 84
946
.
# 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
:
...
...
configure.in
View file @
1bf29b7d
...
...
@@ -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, [], [
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment