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

Skip to content

Commit 48fd2a6

Browse files
committed
Merged revisions 84366 via svnmerge from
svn+ssh://[email protected]/python/branches/py3k ........ r84366 | antoine.pitrou | 2010-08-30 16:52:00 +0200 (lun., 30 août 2010) | 5 lines Issue #9700: define HAVE_BROKEN_POSIX_SEMAPHORES under AIX 6.x. Patch by Sébastien Sablé. ........
1 parent 66428b2 commit 48fd2a6

4 files changed

Lines changed: 14 additions & 3 deletions

File tree

Misc/ACKS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -673,6 +673,7 @@ Jeff Rush
673673
Sam Rushing
674674
Mark Russell
675675
Nick Russo
676+
Sébastien Sablé
676677
Hajime Saitou
677678
George Sakkis
678679
Rich Salz

Misc/NEWS

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -514,6 +514,9 @@ Extension Modules
514514
Build
515515
-----
516516

517+
- Issue #9700: define HAVE_BROKEN_POSIX_SEMAPHORES under AIX 6.x. Patch by
518+
Sébastien Sablé.
519+
517520
- Issue #3928: os.mknod() now available in Solaris, also.
518521

519522
- Issue #6716: Quote -x arguments of compileall in MSI installer.

configure

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#! /bin/sh
2-
# From configure.in Revision: 80702 .
2+
# From configure.in Revision: 82963 .
33
# Guess values for system-dependent variables and create Makefiles.
44
# Generated by GNU Autoconf 2.65 for python 3.1.
55
#
@@ -8638,6 +8638,10 @@ $as_echo "#define HAVE_BROKEN_POSIX_SEMAPHORES 1" >>confdefs.h
86388638
$as_echo "#define HAVE_BROKEN_POSIX_SEMAPHORES 1" >>confdefs.h
86398639
86408640
;;
8641+
AIX/6)
8642+
$as_echo "#define HAVE_BROKEN_POSIX_SEMAPHORES 1" >>confdefs.h
8643+
8644+
;;
86418645
esac
86428646
86438647
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if PTHREAD_SCOPE_SYSTEM is supported" >&5
@@ -13847,8 +13851,8 @@ esac
1384713851
1384813852
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
1384913853
# Files that config.status was made for.
13850-
config_files="$ac_config_files"
13851-
config_headers="$ac_config_headers"
13854+
config_files="`echo $ac_config_files`"
13855+
config_headers="`echo $ac_config_headers`"
1385213856
1385313857
_ACEOF
1385413858

configure.in

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2233,6 +2233,9 @@ if test "$posix_threads" = "yes"; then
22332233
AIX/5) AC_DEFINE(HAVE_BROKEN_POSIX_SEMAPHORES, 1,
22342234
Define if the Posix semaphores do not work on your system)
22352235
;;
2236+
AIX/6) AC_DEFINE(HAVE_BROKEN_POSIX_SEMAPHORES, 1,
2237+
Define if the Posix semaphores do not work on your system)
2238+
;;
22362239
esac
22372240

22382241
AC_MSG_CHECKING(if PTHREAD_SCOPE_SYSTEM is supported)

0 commit comments

Comments
 (0)