summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorCharles-François Natali <neologix@free.fr>2011-07-21 17:41:04 (GMT)
committerCharles-François Natali <neologix@free.fr>2011-07-21 17:41:04 (GMT)
commit4929eb911bbbe3a39b68bdf0c7d58002e4d1c3f2 (patch)
treeffcec3ad368117a0c44abff608819bde0920b720 /configure
parentb95241349941f08708952273e3c69f1b4a22233d (diff)
downloadcpython-4929eb911bbbe3a39b68bdf0c7d58002e4d1c3f2.zip
cpython-4929eb911bbbe3a39b68bdf0c7d58002e4d1c3f2.tar.gz
cpython-4929eb911bbbe3a39b68bdf0c7d58002e4d1c3f2.tar.bz2
Issue #12372: POSIX semaphores are broken on AIX: don't use them.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure8
1 files changed, 2 insertions, 6 deletions
diff --git a/configure b/configure
index 4a60b10..dc20f69 100755
--- a/configure
+++ b/configure
@@ -8987,7 +8987,7 @@ $as_echo "#define _POSIX_THREADS 1" >>confdefs.h
# Bug 662787: Using semaphores causes unexplicable hangs on Solaris 8.
case $ac_sys_system/$ac_sys_release in
- SunOS/5.6)
+ SunOS/5.6)
$as_echo "#define HAVE_PTHREAD_DESTRUCTOR 1" >>confdefs.h
;;
@@ -8995,14 +8995,10 @@ $as_echo "#define HAVE_PTHREAD_DESTRUCTOR 1" >>confdefs.h
$as_echo "#define HAVE_BROKEN_POSIX_SEMAPHORES 1" >>confdefs.h
;;
- AIX/5)
+ AIX/*)
$as_echo "#define HAVE_BROKEN_POSIX_SEMAPHORES 1" >>confdefs.h
;;
- AIX/6)
-$as_echo "#define HAVE_BROKEN_POSIX_SEMAPHORES 1" >>confdefs.h
-
- ;;
esac
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if PTHREAD_SCOPE_SYSTEM is supported" >&5