diff options
author | Christian Heimes <christian@cheimes.de> | 2008-01-30 22:54:18 (GMT) |
---|---|---|
committer | Christian Heimes <christian@cheimes.de> | 2008-01-30 22:54:18 (GMT) |
commit | cba36bbe65c5df5d2a16d7780beceb2faefb6c75 (patch) | |
tree | 86ac7bd35094e4f827cb1861a32422a972b735e1 /configure.in | |
parent | a44327a9a226619a4eb0e658d30211baf920480b (diff) | |
download | cpython-cba36bbe65c5df5d2a16d7780beceb2faefb6c75.zip cpython-cba36bbe65c5df5d2a16d7780beceb2faefb6c75.tar.gz cpython-cba36bbe65c5df5d2a16d7780beceb2faefb6c75.tar.bz2 |
Bug #1234: Fixed semaphore errors on AIX 5.2
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 64699ff..2ee4744 100644 --- a/configure.in +++ b/configure.in @@ -1993,6 +1993,9 @@ if test "$posix_threads" = "yes"; then 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, + Define if the Posix semaphores do not work on your system) + ;; esac AC_MSG_CHECKING(if PTHREAD_SCOPE_SYSTEM is supported) |