summaryrefslogtreecommitdiffstats
path: root/Include/pyport.h
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2009-06-30 15:45:17 (GMT)
committerMark Dickinson <dickinsm@gmail.com>2009-06-30 15:45:17 (GMT)
commit835a6c8467a5c2d63a23b392d21c79c5f5a9e300 (patch)
treed41e5f63a89b3e92ced4f5e84bf0bec3b7e831d5 /Include/pyport.h
parentaa3b5b857791052e4e22a137f8315992c389f6f4 (diff)
downloadcpython-835a6c8467a5c2d63a23b392d21c79c5f5a9e300.zip
cpython-835a6c8467a5c2d63a23b392d21c79c5f5a9e300.tar.gz
cpython-835a6c8467a5c2d63a23b392d21c79c5f5a9e300.tar.bz2
Merged revisions 73701 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r73701 | mark.dickinson | 2009-06-30 16:32:30 +0100 (Tue, 30 Jun 2009) | 3 lines Issue #6347: Add inttypes.h to the pyport.h #includes; fixes a build failure on HP-UX 11.00. ........
Diffstat (limited to 'Include/pyport.h')
-rw-r--r--Include/pyport.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/Include/pyport.h b/Include/pyport.h
index 437c818..be15fe1 100644
--- a/Include/pyport.h
+++ b/Include/pyport.h
@@ -3,6 +3,12 @@
#include "pyconfig.h" /* include for defines */
+/* Some versions of HP-UX & Solaris need inttypes.h for int32_t,
+ INT32_MAX, etc. */
+#ifdef HAVE_INTTYPES_H
+#include <inttypes.h>
+#endif
+
#ifdef HAVE_STDINT_H
#include <stdint.h>
#endif