File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -435,6 +435,7 @@ Randall Kern
435435Magnus Kessler
436436Lawrence Kesteloot
437437Vivek Khera
438+ Akira Kitada
438439Mads Kiilerich
439440Taek Joo Kim
440441Paul Kippes
Original file line number Diff line number Diff line change @@ -346,6 +346,9 @@ Tests
346346Build
347347-----
348348
349+ - Issue #10054: Some platforms provide uintptr_t in inttypes.h. Patch by
350+ Akira Kitada.
351+
349352- Issue #10055: Make json C89-compliant in UCS4 mode.
350353
351354- Issue #9552: Avoid unnecessary rebuild of OpenSSL. (Windows)
Original file line number Diff line number Diff line change 11#! /bin/sh
2- # From configure.in Revision: 84752 .
2+ # From configure.in Revision: 84946 .
33# Guess values for system-dependent variables and create Makefiles.
44# Generated by GNU Autoconf 2.65 for python 3.2.
55#
71137113ac_fn_c_check_type " $LINENO " " uintptr_t" " ac_cv_type_uintptr_t" " #ifdef HAVE_STDINT_H
71147114 #include <stdint.h>
71157115 #endif
7116+ #ifdef HAVE_INTTYPES_H
7117+ #include <inttypes.h>
7118+ #endif
71167119"
71177120if test " x$ac_cv_type_uintptr_t " = x" " yes; then :
71187121
Original file line number Diff line number Diff line change @@ -1483,6 +1483,9 @@ AC_CHECK_TYPES(uintptr_t,
14831483 [AC_CHECK_SIZEOF(uintptr_t, 4)],
14841484 [], [#ifdef HAVE_STDINT_H
14851485 #include <stdint.h>
1486+ #endif
1487+ #ifdef HAVE_INTTYPES_H
1488+ #include <inttypes.h>
14861489 #endif])
14871490
14881491AC_CHECK_SIZEOF(off_t, [], [
You can’t perform that action at this time.
0 commit comments