Commit 48fd2a6a authored by Antoine Pitrou's avatar Antoine Pitrou

Merged revisions 84366 via svnmerge from

svn+ssh://pythondev@svn.python.org/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é.
........
parent 66428b2e
...@@ -673,6 +673,7 @@ Jeff Rush ...@@ -673,6 +673,7 @@ Jeff Rush
Sam Rushing Sam Rushing
Mark Russell Mark Russell
Nick Russo Nick Russo
Sébastien Sablé
Hajime Saitou Hajime Saitou
George Sakkis George Sakkis
Rich Salz Rich Salz
......
...@@ -514,6 +514,9 @@ Extension Modules ...@@ -514,6 +514,9 @@ Extension Modules
Build Build
----- -----
- Issue #9700: define HAVE_BROKEN_POSIX_SEMAPHORES under AIX 6.x. Patch by
Sébastien Sablé.
- Issue #3928: os.mknod() now available in Solaris, also. - Issue #3928: os.mknod() now available in Solaris, also.
- Issue #6716: Quote -x arguments of compileall in MSI installer. - Issue #6716: Quote -x arguments of compileall in MSI installer.
......
#! /bin/sh #! /bin/sh
# From configure.in Revision: 80702 . # From configure.in Revision: 82963 .
# Guess values for system-dependent variables and create Makefiles. # Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.65 for python 3.1. # Generated by GNU Autoconf 2.65 for python 3.1.
# #
...@@ -8638,6 +8638,10 @@ $as_echo "#define HAVE_BROKEN_POSIX_SEMAPHORES 1" >>confdefs.h ...@@ -8638,6 +8638,10 @@ $as_echo "#define HAVE_BROKEN_POSIX_SEMAPHORES 1" >>confdefs.h
$as_echo "#define HAVE_BROKEN_POSIX_SEMAPHORES 1" >>confdefs.h $as_echo "#define HAVE_BROKEN_POSIX_SEMAPHORES 1" >>confdefs.h
;; ;;
AIX/6)
$as_echo "#define HAVE_BROKEN_POSIX_SEMAPHORES 1" >>confdefs.h
;;
esac esac
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking if PTHREAD_SCOPE_SYSTEM is supported" >&5 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if PTHREAD_SCOPE_SYSTEM is supported" >&5
...@@ -13847,8 +13851,8 @@ esac ...@@ -13847,8 +13851,8 @@ esac
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
# Files that config.status was made for. # Files that config.status was made for.
config_files="$ac_config_files" config_files="`echo $ac_config_files`"
config_headers="$ac_config_headers" config_headers="`echo $ac_config_headers`"
_ACEOF _ACEOF
......
...@@ -2233,6 +2233,9 @@ if test "$posix_threads" = "yes"; then ...@@ -2233,6 +2233,9 @@ if test "$posix_threads" = "yes"; then
AIX/5) AC_DEFINE(HAVE_BROKEN_POSIX_SEMAPHORES, 1, AIX/5) AC_DEFINE(HAVE_BROKEN_POSIX_SEMAPHORES, 1,
Define if the Posix semaphores do not work on your system) 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 esac
AC_MSG_CHECKING(if PTHREAD_SCOPE_SYSTEM is supported) AC_MSG_CHECKING(if PTHREAD_SCOPE_SYSTEM is supported)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment