commit | 2f865b962cc26366ddd374233ee78ee759e62f68 | [log] [tgz] |
---|---|---|
author | Mark Dickinson <dickinsm@gmail.com> | Tue Jun 30 15:32:30 2009 +0000 |
committer | Mark Dickinson <dickinsm@gmail.com> | Tue Jun 30 15:32:30 2009 +0000 |
tree | b575cd34241794668a05470435978d7eb973ecdc | |
parent | 5dfc7f9fc8b0a7eda357643234e415ff51e79711 [diff] [blame] |
Issue #6347: Add inttypes.h to the pyport.h #includes; fixes a build failure on HP-UX 11.00.
diff --git a/Include/pyport.h b/Include/pyport.h index f44c43e..da83196 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