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.in | |
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.in')
-rw-r--r-- | configure.in | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/configure.in b/configure.in index a24e54b..d1833be 100644 --- a/configure.in +++ b/configure.in @@ -1395,6 +1395,12 @@ 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*) + AC_DEFINE(_LARGE_FILES, 1, + [This must be defined on AIX systems to enable large file support.]) + ;; +esac AC_DEFINE(_LARGEFILE_SOURCE, 1, [This must be defined on some systems to enable large file support.]) AC_DEFINE(_FILE_OFFSET_BITS, 64, |