diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2010-08-30 14:52:00 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2010-08-30 14:52:00 (GMT) |
commit | 33a299428d1adc12b57d2ba0ee89c9393f08834a (patch) | |
tree | f36e6f31e16959e0de8b52aa23ff7352cdedb5d3 /configure.in | |
parent | 33856de84d1115a18b699e0ca93c3b921bc6a1af (diff) | |
download | cpython-33a299428d1adc12b57d2ba0ee89c9393f08834a.zip cpython-33a299428d1adc12b57d2ba0ee89c9393f08834a.tar.gz cpython-33a299428d1adc12b57d2ba0ee89c9393f08834a.tar.bz2 |
Issue #9700: define HAVE_BROKEN_POSIX_SEMAPHORES under AIX 6.x. Patch by
Sébastien Sablé.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/configure.in b/configure.in index eb753bb..f36b28c 100644 --- a/configure.in +++ b/configure.in @@ -2226,6 +2226,9 @@ if test "$posix_threads" = "yes"; then AIX/5) AC_DEFINE(HAVE_BROKEN_POSIX_SEMAPHORES, 1, [Define if the Posix semaphores do not work on your system]) ;; + AIX/6) AC_DEFINE(HAVE_BROKEN_POSIX_SEMAPHORES, 1, + Define if the Posix semaphores do not work on your system) + ;; esac AC_MSG_CHECKING(if PTHREAD_SCOPE_SYSTEM is supported) |