Test for pthread_join rather than for pthread_create to determine the

1999-07-07  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

	* configure.in: Test for pthread_join rather than for
	pthread_create to determine the right thread-lib. Makes it work on
	mips-sgi-irix6.5. Hitn from to Jari Vuoksenranta
	<javu@piano.ux.phys.jyu.fi>.
This commit is contained in:
Sebastian Wilhelmi 1999-07-07 12:36:45 +00:00 committed by Sebastian Wilhelmi
parent bbb6ccbab7
commit 4982cdbe7e
9 changed files with 58 additions and 2 deletions

View File

@ -1,3 +1,10 @@
1999-07-07 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* configure.in: Test for pthread_join rather than for
pthread_create to determine the right thread-lib. Makes it work on
mips-sgi-irix6.5. Hitn from to Jari Vuoksenranta
<javu@piano.ux.phys.jyu.fi>.
1999-07-02 Tor Lillqvist <tml@iki.fi>
* README.win32: Note about need to fix another bug in the mingw32

View File

@ -1,3 +1,10 @@
1999-07-07 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* configure.in: Test for pthread_join rather than for
pthread_create to determine the right thread-lib. Makes it work on
mips-sgi-irix6.5. Hitn from to Jari Vuoksenranta
<javu@piano.ux.phys.jyu.fi>.
1999-07-02 Tor Lillqvist <tml@iki.fi>
* README.win32: Note about need to fix another bug in the mingw32

View File

@ -1,3 +1,10 @@
1999-07-07 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* configure.in: Test for pthread_join rather than for
pthread_create to determine the right thread-lib. Makes it work on
mips-sgi-irix6.5. Hitn from to Jari Vuoksenranta
<javu@piano.ux.phys.jyu.fi>.
1999-07-02 Tor Lillqvist <tml@iki.fi>
* README.win32: Note about need to fix another bug in the mingw32

View File

@ -1,3 +1,10 @@
1999-07-07 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* configure.in: Test for pthread_join rather than for
pthread_create to determine the right thread-lib. Makes it work on
mips-sgi-irix6.5. Hitn from to Jari Vuoksenranta
<javu@piano.ux.phys.jyu.fi>.
1999-07-02 Tor Lillqvist <tml@iki.fi>
* README.win32: Note about need to fix another bug in the mingw32

View File

@ -1,3 +1,10 @@
1999-07-07 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* configure.in: Test for pthread_join rather than for
pthread_create to determine the right thread-lib. Makes it work on
mips-sgi-irix6.5. Hitn from to Jari Vuoksenranta
<javu@piano.ux.phys.jyu.fi>.
1999-07-02 Tor Lillqvist <tml@iki.fi>
* README.win32: Note about need to fix another bug in the mingw32

View File

@ -1,3 +1,10 @@
1999-07-07 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* configure.in: Test for pthread_join rather than for
pthread_create to determine the right thread-lib. Makes it work on
mips-sgi-irix6.5. Hitn from to Jari Vuoksenranta
<javu@piano.ux.phys.jyu.fi>.
1999-07-02 Tor Lillqvist <tml@iki.fi>
* README.win32: Note about need to fix another bug in the mingw32

View File

@ -1,3 +1,10 @@
1999-07-07 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* configure.in: Test for pthread_join rather than for
pthread_create to determine the right thread-lib. Makes it work on
mips-sgi-irix6.5. Hitn from to Jari Vuoksenranta
<javu@piano.ux.phys.jyu.fi>.
1999-07-02 Tor Lillqvist <tml@iki.fi>
* README.win32: Note about need to fix another bug in the mingw32

View File

@ -1,3 +1,10 @@
1999-07-07 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* configure.in: Test for pthread_join rather than for
pthread_create to determine the right thread-lib. Makes it work on
mips-sgi-irix6.5. Hitn from to Jari Vuoksenranta
<javu@piano.ux.phys.jyu.fi>.
1999-07-02 Tor Lillqvist <tml@iki.fi>
* README.win32: Note about need to fix another bug in the mingw32

View File

@ -707,9 +707,9 @@ case $have_threads in
LIBS="$glib_save_LIBS $add_thread_lib"
AC_MSG_CHECKING(for pthread_create$IN)
AC_MSG_CHECKING(for pthread_join$IN)
AC_TRY_LINK([#include <pthread.h>],
[pthread_create(NULL,NULL,NULL,NULL)],
[pthread_join(NULL,NULL)],
[AC_MSG_RESULT(yes)
G_THREAD_LIBS="$add_thread_lib"
break],