diff options
author | Christian Heimes <christian@cheimes.de> | 2013-12-07 22:39:33 (GMT) |
---|---|---|
committer | Christian Heimes <christian@cheimes.de> | 2013-12-07 22:39:33 (GMT) |
commit | 647cd87169d79b4ab4ad084104dc152381cca339 (patch) | |
tree | c9c84926942a226ae6b3190be5cd27a84949bf4e /configure.ac | |
parent | 35175a8f07a8d9da20587ab748446d85b615baaa (diff) | |
download | cpython-647cd87169d79b4ab4ad084104dc152381cca339.zip cpython-647cd87169d79b4ab4ad084104dc152381cca339.tar.gz cpython-647cd87169d79b4ab4ad084104dc152381cca339.tar.bz2 |
Issue #19922: define _INCLUDE__STDC_A1_SOURCE in HP-UX to include mbstate_t
for mbrtowc().
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 14b3aef..2d701b1 100644 --- a/configure.ac +++ b/configure.ac @@ -522,6 +522,13 @@ then AC_DEFINE(_POSIX_C_SOURCE, 200809L, Define to activate features from IEEE Stds 1003.1-2008) fi +# On HP-UX mbstate_t requires _INCLUDE__STDC_A1_SOURCE +case $ac_sys_system in +hp*|HP*) + AC_DEFINE(_INCLUDE__STDC_A1_SOURCE, 1, Define to include mbstate_t for mbrtowc) + ;; +esac + # # SGI compilers allow the specification of the both the ABI and the # ISA on the command line. Depending on the values of these switches, |