diff options
author | Jesus Cea <jcea@jcea.es> | 2010-11-25 17:05:57 (GMT) |
---|---|---|
committer | Jesus Cea <jcea@jcea.es> | 2010-11-25 17:05:57 (GMT) |
commit | 436709cff22f812eebe7399894a1a5161583f203 (patch) | |
tree | 98c6bf04a5076e818a0ae1d7d88b93ae019c411c /configure.in | |
parent | 3188b2082e590d38eca60df7c67cc6212ad90f55 (diff) | |
download | cpython-436709cff22f812eebe7399894a1a5161583f203.zip cpython-436709cff22f812eebe7399894a1a5161583f203.tar.gz cpython-436709cff22f812eebe7399894a1a5161583f203.tar.bz2 |
Compile correctly under OpenIndiana (and possibly Solaris 11 Express)
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.in b/configure.in index 15105e7..0ec5e11 100644 --- a/configure.in +++ b/configure.in @@ -353,7 +353,7 @@ then # Furthermore, on Solaris 10, XPG6 requires the use of a C99 # compiler case $ac_sys_system/$ac_sys_release in - SunOS/5.8|SunOS/5.9|SunOS/5.10) + SunOS/5.8|SunOS/5.9|SunOS/5.10|SunOS/5.11) AC_DEFINE(_XOPEN_SOURCE, 500, Define to the level of X/Open that your system supports) ;; @@ -370,7 +370,7 @@ then # except for Solaris 10, where it must not be defined, # as it implies XPG4.2 case $ac_sys_system/$ac_sys_release in - SunOS/5.10) + SunOS/5.10|SunOS/5.11) ;; *) AC_DEFINE(_XOPEN_SOURCE_EXTENDED, 1, |