Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 33a2994

Browse files
committed
Issue #9700: define HAVE_BROKEN_POSIX_SEMAPHORES under AIX 6.x. Patch by
Sébastien Sablé.
1 parent 33856de commit 33a2994

4 files changed

Lines changed: 12 additions & 1 deletion

File tree

Misc/ACKS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -705,6 +705,7 @@ Jeff Rush
705705
Sam Rushing
706706
Mark Russell
707707
Nick Russo
708+
Sébastien Sablé
708709
Hajime Saitou
709710
George Sakkis
710711
Rich Salz

Misc/NEWS

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -347,6 +347,9 @@ Tests
347347
Build
348348
-----
349349

350+
- Issue #9700: define HAVE_BROKEN_POSIX_SEMAPHORES under AIX 6.x. Patch by
351+
Sébastien Sablé.
352+
350353
- Don't run pgen twice when using make -j.
351354

352355

configure

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#! /bin/sh
2-
# From configure.in Revision: 83580 .
2+
# From configure.in Revision: 83986 .
33
# Guess values for system-dependent variables and create Makefiles.
44
# Generated by GNU Autoconf 2.65 for python 3.2.
55
#
@@ -8745,6 +8745,10 @@ $as_echo "#define HAVE_BROKEN_POSIX_SEMAPHORES 1" >>confdefs.h
87458745
$as_echo "#define HAVE_BROKEN_POSIX_SEMAPHORES 1" >>confdefs.h
87468746
87478747
;;
8748+
AIX/6)
8749+
$as_echo "#define HAVE_BROKEN_POSIX_SEMAPHORES 1" >>confdefs.h
8750+
8751+
;;
87488752
esac
87498753
87508754
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if PTHREAD_SCOPE_SYSTEM is supported" >&5

configure.in

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2226,6 +2226,9 @@ if test "$posix_threads" = "yes"; then
22262226
AIX/5) AC_DEFINE(HAVE_BROKEN_POSIX_SEMAPHORES, 1,
22272227
[Define if the Posix semaphores do not work on your system])
22282228
;;
2229+
AIX/6) AC_DEFINE(HAVE_BROKEN_POSIX_SEMAPHORES, 1,
2230+
Define if the Posix semaphores do not work on your system)
2231+
;;
22292232
esac
22302233

22312234
AC_MSG_CHECKING(if PTHREAD_SCOPE_SYSTEM is supported)

0 commit comments

Comments
 (0)