From: Sebastian Wilhelmi Date: Mon, 6 Mar 2000 09:09:57 +0000 (+0000) Subject: Another small change to the pthread_.. search pattern. Should work *now* X-Git-Tag: GLIB_1_3_1~86 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8fded0095931a7349b5abbb92de1aef380b0330a;p=platform%2Fupstream%2Fglib.git 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. --- diff --git a/ChangeLog b/ChangeLog index 416de38..d9306fd 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 416de38..d9306fd 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 416de38..d9306fd 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 416de38..d9306fd 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 416de38..d9306fd 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 416de38..d9306fd 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 416de38..d9306fd 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 416de38..d9306fd 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 1198338..11f2f50 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