diff options
author | Georg Brandl <georg@python.org> | 2011-02-25 11:09:02 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2011-02-25 11:09:02 (GMT) |
commit | 94800df6321976e03222fd51f09ed574d47ff0c1 (patch) | |
tree | c613367db542540d413c3ead087e445e380d602b /configure | |
parent | 71f4fbb0b74b45df75c81aad80d204df0a315ae4 (diff) | |
download | cpython-94800df6321976e03222fd51f09ed574d47ff0c1.zip cpython-94800df6321976e03222fd51f09ed574d47ff0c1.tar.gz cpython-94800df6321976e03222fd51f09ed574d47ff0c1.tar.bz2 |
Merged revisions 88430,88438,88440 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r88430 | georg.brandl | 2011-02-15 20:48:59 +0100 (Di, 15 Feb 2011) | 1 line
#730467: Another small AIX fix.
........
r88438 | georg.brandl | 2011-02-19 09:44:47 +0100 (Sa, 19 Feb 2011) | 1 line
#10709: add back an updated AIX-NOTES (as README.AIX).
........
r88440 | georg.brandl | 2011-02-19 09:58:23 +0100 (Sa, 19 Feb 2011) | 1 line
#11184: Fix large file support on AIX.
........
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 11 |
1 files changed, 9 insertions, 2 deletions
@@ -1,5 +1,5 @@ #! /bin/sh -# From configure.in Revision: 87700 . +# From configure.in Revision: 88568 . # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.68 for python 2.7. # @@ -6463,6 +6463,13 @@ fi if test "$use_lfs" = "yes"; then # Two defines needed to enable largefile support on various platforms # These may affect some typedefs +case $ac_sys_system/$ac_sys_release in +AIX*) + +$as_echo "#define _LARGE_FILES 1" >>confdefs.h + + ;; +esac $as_echo "#define _LARGEFILE_SOURCE 1" >>confdefs.h @@ -8016,7 +8023,7 @@ $as_echo_n "checking for genuine AIX C++ extensions support... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ - #include "/usr/lpp/xlC/include/load.h" + #include <load.h> int main () { |