diff options
author | Georg Brandl <georg@python.org> | 2011-02-25 10:26:14 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2011-02-25 10:26:14 (GMT) |
commit | 8f1598787f6ca018d2c228a2b651418a5f25e24f (patch) | |
tree | c601673700e3e401f8cdaee938f2cb6752abd24c /configure | |
parent | 3f0df3bc51a9d06a464731bbc9e70fcd21734505 (diff) | |
download | cpython-8f1598787f6ca018d2c228a2b651418a5f25e24f.zip cpython-8f1598787f6ca018d2c228a2b651418a5f25e24f.tar.gz cpython-8f1598787f6ca018d2c228a2b651418a5f25e24f.tar.bz2 |
Merged revisions 88438,88440 via svnmerge from
svn+ssh://svn.python.org/python/branches/py3k
........
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 | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -1,5 +1,5 @@ #! /bin/sh -# From configure.in Revision: 88560 . +# From configure.in Revision: 88561 . # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.68 for python 3.1. # @@ -6408,6 +6408,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 |