Another small change to the pthread_.. search pattern. Should work *now*

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

	* configure.in: Another small change to the pthread_.. search
	pattern. Should work *now* for AIX.
This commit is contained in:
Sebastian Wilhelmi 2000-03-06 09:09:57 +00:00 committed by Sebastian Wilhelmi
parent d778d016b7
commit 8fded00959
9 changed files with 42 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2000-03-06 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* configure.in: Another small change to the pthread_.. search
pattern. Should work *now* for AIX.
2000-03-04 Tor Lillqvist <tml@iki.fi>
* gwin32.c (g_win32_error_message): New function that returns the

View File

@ -1,3 +1,8 @@
2000-03-06 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* configure.in: Another small change to the pthread_.. search
pattern. Should work *now* for AIX.
2000-03-04 Tor Lillqvist <tml@iki.fi>
* gwin32.c (g_win32_error_message): New function that returns the

View File

@ -1,3 +1,8 @@
2000-03-06 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* configure.in: Another small change to the pthread_.. search
pattern. Should work *now* for AIX.
2000-03-04 Tor Lillqvist <tml@iki.fi>
* gwin32.c (g_win32_error_message): New function that returns the

View File

@ -1,3 +1,8 @@
2000-03-06 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* configure.in: Another small change to the pthread_.. search
pattern. Should work *now* for AIX.
2000-03-04 Tor Lillqvist <tml@iki.fi>
* gwin32.c (g_win32_error_message): New function that returns the

View File

@ -1,3 +1,8 @@
2000-03-06 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* configure.in: Another small change to the pthread_.. search
pattern. Should work *now* for AIX.
2000-03-04 Tor Lillqvist <tml@iki.fi>
* gwin32.c (g_win32_error_message): New function that returns the

View File

@ -1,3 +1,8 @@
2000-03-06 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* configure.in: Another small change to the pthread_.. search
pattern. Should work *now* for AIX.
2000-03-04 Tor Lillqvist <tml@iki.fi>
* gwin32.c (g_win32_error_message): New function that returns the

View File

@ -1,3 +1,8 @@
2000-03-06 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* configure.in: Another small change to the pthread_.. search
pattern. Should work *now* for AIX.
2000-03-04 Tor Lillqvist <tml@iki.fi>
* gwin32.c (g_win32_error_message): New function that returns the

View File

@ -1,3 +1,8 @@
2000-03-06 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* configure.in: Another small change to the pthread_.. search
pattern. Should work *now* for AIX.
2000-03-04 Tor Lillqvist <tml@iki.fi>
* gwin32.c (g_win32_error_message): New function that returns the

View File

@ -687,12 +687,12 @@ if test "x$want_threads" = xyes || test "x$want_threads" = xposix \
glib_save_CPPFLAGS="$CPPFLAGS"
CPPFLAGS="$CPPFLAGS $GTHREAD_COMPILE_IMPL_DEFINES"
if test "x$have_threads" = xnone; then
AC_EGREP_HEADER([^(|.*[^a-zA-Z_])pthread_attr_init[^a-zA-Z_]],
AC_EGREP_HEADER([(^|[^a-zA-Z_])pthread_attr_init[^a-zA-Z_]],
pthread.h,
have_threads=posix)
fi
if test "x$have_threads" = xnone; then
AC_EGREP_HEADER([^(|.*[^a-zA-Z_])pthread_attr_create[^a-zA-Z_]],
AC_EGREP_HEADER([(^|[^a-zA-Z_])pthread_attr_create[^a-zA-Z_]],
pthread.h,
have_threads=dce)
fi