From 4982cdbe7ee3494e164502e0574376fea278b807 Mon Sep 17 00:00:00 2001 From: Sebastian Wilhelmi Date: Wed, 7 Jul 1999 12:36:45 +0000 Subject: [PATCH] Test for pthread_join rather than for pthread_create to determine the 1999-07-07 Sebastian Wilhelmi * 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 . --- ChangeLog | 7 +++++++ ChangeLog.pre-2-0 | 7 +++++++ ChangeLog.pre-2-10 | 7 +++++++ ChangeLog.pre-2-12 | 7 +++++++ ChangeLog.pre-2-2 | 7 +++++++ ChangeLog.pre-2-4 | 7 +++++++ ChangeLog.pre-2-6 | 7 +++++++ ChangeLog.pre-2-8 | 7 +++++++ configure.in | 4 ++-- 9 files changed, 58 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 2cebb98..c9b3d86 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +1999-07-07 Sebastian Wilhelmi + + * 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 + . + 1999-07-02 Tor Lillqvist * README.win32: Note about need to fix another bug in the mingw32 diff --git a/ChangeLog.pre-2-0 b/ChangeLog.pre-2-0 index 2cebb98..c9b3d86 100644 --- a/ChangeLog.pre-2-0 +++ b/ChangeLog.pre-2-0 @@ -1,3 +1,10 @@ +1999-07-07 Sebastian Wilhelmi + + * 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 + . + 1999-07-02 Tor Lillqvist * README.win32: Note about need to fix another bug in the mingw32 diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index 2cebb98..c9b3d86 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,3 +1,10 @@ +1999-07-07 Sebastian Wilhelmi + + * 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 + . + 1999-07-02 Tor Lillqvist * README.win32: Note about need to fix another bug in the mingw32 diff --git a/ChangeLog.pre-2-12 b/ChangeLog.pre-2-12 index 2cebb98..c9b3d86 100644 --- a/ChangeLog.pre-2-12 +++ b/ChangeLog.pre-2-12 @@ -1,3 +1,10 @@ +1999-07-07 Sebastian Wilhelmi + + * 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 + . + 1999-07-02 Tor Lillqvist * README.win32: Note about need to fix another bug in the mingw32 diff --git a/ChangeLog.pre-2-2 b/ChangeLog.pre-2-2 index 2cebb98..c9b3d86 100644 --- a/ChangeLog.pre-2-2 +++ b/ChangeLog.pre-2-2 @@ -1,3 +1,10 @@ +1999-07-07 Sebastian Wilhelmi + + * 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 + . + 1999-07-02 Tor Lillqvist * README.win32: Note about need to fix another bug in the mingw32 diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4 index 2cebb98..c9b3d86 100644 --- a/ChangeLog.pre-2-4 +++ b/ChangeLog.pre-2-4 @@ -1,3 +1,10 @@ +1999-07-07 Sebastian Wilhelmi + + * 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 + . + 1999-07-02 Tor Lillqvist * README.win32: Note about need to fix another bug in the mingw32 diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6 index 2cebb98..c9b3d86 100644 --- a/ChangeLog.pre-2-6 +++ b/ChangeLog.pre-2-6 @@ -1,3 +1,10 @@ +1999-07-07 Sebastian Wilhelmi + + * 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 + . + 1999-07-02 Tor Lillqvist * README.win32: Note about need to fix another bug in the mingw32 diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index 2cebb98..c9b3d86 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -1,3 +1,10 @@ +1999-07-07 Sebastian Wilhelmi + + * 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 + . + 1999-07-02 Tor Lillqvist * README.win32: Note about need to fix another bug in the mingw32 diff --git a/configure.in b/configure.in index aa07911..8095505 100644 --- a/configure.in +++ b/configure.in @@ -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_create(NULL,NULL,NULL,NULL)], + [pthread_join(NULL,NULL)], [AC_MSG_RESULT(yes) G_THREAD_LIBS="$add_thread_lib" break], -- 2.7.4