diff options
author | R. David Murray <rdmurray@bitdance.com> | 2010-10-16 00:43:13 (GMT) |
---|---|---|
committer | R. David Murray <rdmurray@bitdance.com> | 2010-10-16 00:43:13 (GMT) |
commit | 1d9d16e82729821197af6e240995a344e8e7e0ba (patch) | |
tree | 680a6d1ed94426cdaa8cbb7cbf8f0d6d43656329 /configure.in | |
parent | 63e284d35433130b8f8bc79276a0a476bbad36fb (diff) | |
download | cpython-1d9d16e82729821197af6e240995a344e8e7e0ba.zip cpython-1d9d16e82729821197af6e240995a344e8e7e0ba.tar.gz cpython-1d9d16e82729821197af6e240995a344e8e7e0ba.tar.bz2 |
Merged revisions 85554 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r85554 | r.david.murray | 2010-10-15 19:12:57 -0400 (Fri, 15 Oct 2010) | 4 lines
#9862: On AIX PIPE_BUF is broken. Make it 512.
Patch by Sébastien Sablé.
........
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 bfa5ba5..3a87ff1 100644 --- a/configure.in +++ b/configure.in @@ -4261,6 +4261,12 @@ AC_CHECK_TYPE(socklen_t,, #endif ]) +case $ac_sys_system in +AIX*) + AC_DEFINE(HAVE_BROKEN_PIPE_BUF, 1, [Define if the system reports an invalid PIPE_BUF value.]) ;; +esac + + AC_SUBST(THREADHEADERS) for h in `(cd $srcdir;echo Python/thread_*.h)` |