Commit ab8fe4e0 authored by Christian Heimes's avatar Christian Heimes

Bug #1234: Fixed semaphore errors on AIX 5.2

parent c9b20734
...@@ -257,6 +257,8 @@ Documentation ...@@ -257,6 +257,8 @@ Documentation
Build Build
----- -----
- Bug #1234: Fixed semaphore errors on AIX 5.2
- Bug #1699: Define _BSD_SOURCE only on OpenBSD. - Bug #1699: Define _BSD_SOURCE only on OpenBSD.
- Bug #1608: use -fwrapv when GCC supports it. This is important, - Bug #1608: use -fwrapv when GCC supports it. This is important,
......
#! /bin/sh #! /bin/sh
# From configure.in Revision: 59552 . # From configure.in Revision: 59610 .
# Guess values for system-dependent variables and create Makefiles. # Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.61 for python 2.5. # Generated by GNU Autoconf 2.61 for python 2.5.
# #
...@@ -13862,6 +13862,12 @@ _ACEOF ...@@ -13862,6 +13862,12 @@ _ACEOF
SunOS/5.8) SunOS/5.8)
cat >>confdefs.h <<\_ACEOF cat >>confdefs.h <<\_ACEOF
#define HAVE_BROKEN_POSIX_SEMAPHORES 1 #define HAVE_BROKEN_POSIX_SEMAPHORES 1
_ACEOF
;;
AIX/5)
cat >>confdefs.h <<\_ACEOF
#define HAVE_BROKEN_POSIX_SEMAPHORES 1
_ACEOF _ACEOF
;; ;;
......
...@@ -1963,6 +1963,9 @@ if test "$posix_threads" = "yes"; then ...@@ -1963,6 +1963,9 @@ if test "$posix_threads" = "yes"; then
SunOS/5.8) AC_DEFINE(HAVE_BROKEN_POSIX_SEMAPHORES, 1, SunOS/5.8) 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/5) 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)
......
...@@ -94,6 +94,10 @@ ...@@ -94,6 +94,10 @@
/* Define if you have the 'resize_term' function. */ /* Define if you have the 'resize_term' function. */
#undef HAVE_CURSES_RESIZE_TERM #undef HAVE_CURSES_RESIZE_TERM
/* Define to 1 if you have the declaration of `tzname', and to 0 if you don't.
*/
#undef HAVE_DECL_TZNAME
/* Define to 1 if you have the device macros. */ /* Define to 1 if you have the device macros. */
#undef HAVE_DEVICE_MACROS #undef HAVE_DEVICE_MACROS
...@@ -793,22 +797,22 @@ ...@@ -793,22 +797,22 @@
/* Define if i>>j for signed int i does not extend the sign bit when i < 0 */ /* Define if i>>j for signed int i does not extend the sign bit when i < 0 */
#undef SIGNED_RIGHT_SHIFT_ZERO_FILLS #undef SIGNED_RIGHT_SHIFT_ZERO_FILLS
/* The size of a `double', as computed by sizeof. */ /* The size of `double', as computed by sizeof. */
#undef SIZEOF_DOUBLE #undef SIZEOF_DOUBLE
/* The size of a `float', as computed by sizeof. */ /* The size of `float', as computed by sizeof. */
#undef SIZEOF_FLOAT #undef SIZEOF_FLOAT
/* The size of a `fpos_t', as computed by sizeof. */ /* The size of `fpos_t', as computed by sizeof. */
#undef SIZEOF_FPOS_T #undef SIZEOF_FPOS_T
/* The size of a `int', as computed by sizeof. */ /* The size of `int', as computed by sizeof. */
#undef SIZEOF_INT #undef SIZEOF_INT
/* The size of a `long', as computed by sizeof. */ /* The size of `long', as computed by sizeof. */
#undef SIZEOF_LONG #undef SIZEOF_LONG
/* The size of a `long long', as computed by sizeof. */ /* The size of `long long', as computed by sizeof. */
#undef SIZEOF_LONG_LONG #undef SIZEOF_LONG_LONG
/* The number of bytes in an off_t. */ /* The number of bytes in an off_t. */
...@@ -817,22 +821,22 @@ ...@@ -817,22 +821,22 @@
/* The number of bytes in a pthread_t. */ /* The number of bytes in a pthread_t. */
#undef SIZEOF_PTHREAD_T #undef SIZEOF_PTHREAD_T
/* The size of a `short', as computed by sizeof. */ /* The size of `short', as computed by sizeof. */
#undef SIZEOF_SHORT #undef SIZEOF_SHORT
/* The size of a `size_t', as computed by sizeof. */ /* The size of `size_t', as computed by sizeof. */
#undef SIZEOF_SIZE_T #undef SIZEOF_SIZE_T
/* The number of bytes in a time_t. */ /* The number of bytes in a time_t. */
#undef SIZEOF_TIME_T #undef SIZEOF_TIME_T
/* The size of a `uintptr_t', as computed by sizeof. */ /* The size of `uintptr_t', as computed by sizeof. */
#undef SIZEOF_UINTPTR_T #undef SIZEOF_UINTPTR_T
/* The size of a `void *', as computed by sizeof. */ /* The size of `void *', as computed by sizeof. */
#undef SIZEOF_VOID_P #undef SIZEOF_VOID_P
/* The size of a `wchar_t', as computed by sizeof. */ /* The size of `wchar_t', as computed by sizeof. */
#undef SIZEOF_WCHAR_T #undef SIZEOF_WCHAR_T
/* Define to 1 if you have the ANSI C header files. */ /* Define to 1 if you have the ANSI C header files. */
...@@ -971,7 +975,7 @@ ...@@ -971,7 +975,7 @@
/* Define to `int' if <sys/types.h> does not define. */ /* Define to `int' if <sys/types.h> does not define. */
#undef mode_t #undef mode_t
/* Define to `long' if <sys/types.h> does not define. */ /* Define to `long int' if <sys/types.h> does not define. */
#undef off_t #undef off_t
/* Define to `int' if <sys/types.h> does not define. */ /* Define to `int' if <sys/types.h> does not define. */
...@@ -980,7 +984,7 @@ ...@@ -980,7 +984,7 @@
/* Define to empty if the keyword does not work. */ /* Define to empty if the keyword does not work. */
#undef signed #undef signed
/* Define to `unsigned' if <sys/types.h> does not define. */ /* Define to `unsigned int' if <sys/types.h> does not define. */
#undef size_t #undef size_t
/* Define to `int' if <sys/socket.h> does not define. */ /* Define to `int' if <sys/socket.h> does not define. */
......
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