The mutex in the check for pthread_mutex_trylock should be a static var.

2000-03-21  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

	* configure.in: The mutex in the check for pthread_mutex_trylock
	should be a static var. Thanks to Wan-Teh Chang <wtc@netscape.com>
	for pointing this out.
This commit is contained in:
Sebastian Wilhelmi 2000-03-21 09:23:52 +00:00 committed by Sebastian Wilhelmi
parent 6fbe816b6b
commit 2b8fb12960
9 changed files with 49 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2000-03-21 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* configure.in: The mutex in the check for pthread_mutex_trylock
should be a static var. Thanks to Wan-Teh Chang <wtc@netscape.com>
for pointing this out.
2000-02-18 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* configure.in: Changed GCC version test to also accept major

View File

@ -1,3 +1,9 @@
2000-03-21 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* configure.in: The mutex in the check for pthread_mutex_trylock
should be a static var. Thanks to Wan-Teh Chang <wtc@netscape.com>
for pointing this out.
2000-02-18 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* configure.in: Changed GCC version test to also accept major

View File

@ -1,3 +1,9 @@
2000-03-21 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* configure.in: The mutex in the check for pthread_mutex_trylock
should be a static var. Thanks to Wan-Teh Chang <wtc@netscape.com>
for pointing this out.
2000-02-18 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* configure.in: Changed GCC version test to also accept major

View File

@ -1,3 +1,9 @@
2000-03-21 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* configure.in: The mutex in the check for pthread_mutex_trylock
should be a static var. Thanks to Wan-Teh Chang <wtc@netscape.com>
for pointing this out.
2000-02-18 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* configure.in: Changed GCC version test to also accept major

View File

@ -1,3 +1,9 @@
2000-03-21 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* configure.in: The mutex in the check for pthread_mutex_trylock
should be a static var. Thanks to Wan-Teh Chang <wtc@netscape.com>
for pointing this out.
2000-02-18 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* configure.in: Changed GCC version test to also accept major

View File

@ -1,3 +1,9 @@
2000-03-21 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* configure.in: The mutex in the check for pthread_mutex_trylock
should be a static var. Thanks to Wan-Teh Chang <wtc@netscape.com>
for pointing this out.
2000-02-18 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* configure.in: Changed GCC version test to also accept major

View File

@ -1,3 +1,9 @@
2000-03-21 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* configure.in: The mutex in the check for pthread_mutex_trylock
should be a static var. Thanks to Wan-Teh Chang <wtc@netscape.com>
for pointing this out.
2000-02-18 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* configure.in: Changed GCC version test to also accept major

View File

@ -1,3 +1,9 @@
2000-03-21 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* configure.in: The mutex in the check for pthread_mutex_trylock
should be a static var. Thanks to Wan-Teh Chang <wtc@netscape.com>
for pointing this out.
2000-02-18 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* configure.in: Changed GCC version test to also accept major

View File

@ -818,8 +818,8 @@ if test x"$have_threads" != xnone; then
AC_MSG_CHECKING(whether pthread_mutex_trylock is posix like)
# DCE Threads return 1 as success, posix 0. what a mess.
AC_TRY_RUN([#include <pthread.h>
int main () {
pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER;
int main () {
return !pthread_mutex_trylock (&mutex); }],
[AC_MSG_RESULT(no)],
[AC_MSG_RESULT(yes)