summaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
authorCharles-François Natali <neologix@free.fr>2011-07-21 17:45:31 (GMT)
committerCharles-François Natali <neologix@free.fr>2011-07-21 17:45:31 (GMT)
commit996f606787a7aba177f738157acd672b5821be4c (patch)
tree96dd930702ce82c9a1381ea4dff5fc1e89b53048 /configure.in
parent1beea5b7c181d9e7279dd58bc5fbee52b549e528 (diff)
downloadcpython-996f606787a7aba177f738157acd672b5821be4c.zip
cpython-996f606787a7aba177f738157acd672b5821be4c.tar.gz
cpython-996f606787a7aba177f738157acd672b5821be4c.tar.bz2
Issue #12372: POSIX semaphores are broken on AIX: don't use them.
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in7
1 files changed, 2 insertions, 5 deletions
diff --git a/configure.in b/configure.in
index 8e89c8f..de743ca 100644
--- a/configure.in
+++ b/configure.in
@@ -2239,18 +2239,15 @@ if test "$posix_threads" = "yes"; then
# Bug 662787: Using semaphores causes unexplicable hangs on Solaris 8.
case $ac_sys_system/$ac_sys_release in
- SunOS/5.6) AC_DEFINE(HAVE_PTHREAD_DESTRUCTOR, 1,
+ SunOS/5.6) AC_DEFINE(HAVE_PTHREAD_DESTRUCTOR, 1,
[Defined for Solaris 2.6 bug in pthread header.])
;;
SunOS/5.8) AC_DEFINE(HAVE_BROKEN_POSIX_SEMAPHORES, 1,
[Define if the Posix semaphores do not work on your system])
;;
- AIX/5) AC_DEFINE(HAVE_BROKEN_POSIX_SEMAPHORES, 1,
+ AIX/*) 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)