From 8fded0095931a7349b5abbb92de1aef380b0330a Mon Sep 17 00:00:00 2001 From: Sebastian Wilhelmi Date: Mon, 6 Mar 2000 09:09:57 +0000 Subject: [PATCH] Another small change to the pthread_.. search pattern. Should work *now* 2000-03-06 Sebastian Wilhelmi * configure.in: Another small change to the pthread_.. search pattern. Should work *now* for AIX. --- ChangeLog | 5 +++++ ChangeLog.pre-2-0 | 5 +++++ ChangeLog.pre-2-10 | 5 +++++ ChangeLog.pre-2-12 | 5 +++++ ChangeLog.pre-2-2 | 5 +++++ ChangeLog.pre-2-4 | 5 +++++ ChangeLog.pre-2-6 | 5 +++++ ChangeLog.pre-2-8 | 5 +++++ configure.in | 4 ++-- 9 files changed, 42 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 416de3894..d9306fd01 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2000-03-06 Sebastian Wilhelmi + + * configure.in: Another small change to the pthread_.. search + pattern. Should work *now* for AIX. + 2000-03-04 Tor Lillqvist * gwin32.c (g_win32_error_message): New function that returns the diff --git a/ChangeLog.pre-2-0 b/ChangeLog.pre-2-0 index 416de3894..d9306fd01 100644 --- a/ChangeLog.pre-2-0 +++ b/ChangeLog.pre-2-0 @@ -1,3 +1,8 @@ +2000-03-06 Sebastian Wilhelmi + + * configure.in: Another small change to the pthread_.. search + pattern. Should work *now* for AIX. + 2000-03-04 Tor Lillqvist * gwin32.c (g_win32_error_message): New function that returns the diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index 416de3894..d9306fd01 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,3 +1,8 @@ +2000-03-06 Sebastian Wilhelmi + + * configure.in: Another small change to the pthread_.. search + pattern. Should work *now* for AIX. + 2000-03-04 Tor Lillqvist * gwin32.c (g_win32_error_message): New function that returns the diff --git a/ChangeLog.pre-2-12 b/ChangeLog.pre-2-12 index 416de3894..d9306fd01 100644 --- a/ChangeLog.pre-2-12 +++ b/ChangeLog.pre-2-12 @@ -1,3 +1,8 @@ +2000-03-06 Sebastian Wilhelmi + + * configure.in: Another small change to the pthread_.. search + pattern. Should work *now* for AIX. + 2000-03-04 Tor Lillqvist * gwin32.c (g_win32_error_message): New function that returns the diff --git a/ChangeLog.pre-2-2 b/ChangeLog.pre-2-2 index 416de3894..d9306fd01 100644 --- a/ChangeLog.pre-2-2 +++ b/ChangeLog.pre-2-2 @@ -1,3 +1,8 @@ +2000-03-06 Sebastian Wilhelmi + + * configure.in: Another small change to the pthread_.. search + pattern. Should work *now* for AIX. + 2000-03-04 Tor Lillqvist * gwin32.c (g_win32_error_message): New function that returns the diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4 index 416de3894..d9306fd01 100644 --- a/ChangeLog.pre-2-4 +++ b/ChangeLog.pre-2-4 @@ -1,3 +1,8 @@ +2000-03-06 Sebastian Wilhelmi + + * configure.in: Another small change to the pthread_.. search + pattern. Should work *now* for AIX. + 2000-03-04 Tor Lillqvist * gwin32.c (g_win32_error_message): New function that returns the diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6 index 416de3894..d9306fd01 100644 --- a/ChangeLog.pre-2-6 +++ b/ChangeLog.pre-2-6 @@ -1,3 +1,8 @@ +2000-03-06 Sebastian Wilhelmi + + * configure.in: Another small change to the pthread_.. search + pattern. Should work *now* for AIX. + 2000-03-04 Tor Lillqvist * gwin32.c (g_win32_error_message): New function that returns the diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index 416de3894..d9306fd01 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -1,3 +1,8 @@ +2000-03-06 Sebastian Wilhelmi + + * configure.in: Another small change to the pthread_.. search + pattern. Should work *now* for AIX. + 2000-03-04 Tor Lillqvist * gwin32.c (g_win32_error_message): New function that returns the diff --git a/configure.in b/configure.in index 11983380a..11f2f50ec 100644 --- a/configure.in +++ b/configure.in @@ -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