Make the search for pthread_attr_... prototypes find names at the start of
authorSebastian Wilhelmi <wilhelmi@ira.uka.de>
Fri, 3 Mar 2000 09:36:32 +0000 (09:36 +0000)
committerSebastian Wilhelmi <wilhelmi@src.gnome.org>
Fri, 3 Mar 2000 09:36:32 +0000 (09:36 +0000)
2000-03-03  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>

* configure.in: Make the search for pthread_attr_... prototypes
find names at the start of a line also, like it is on AIX. Thanks
to Valdis Kletnieks <Valdis.Kletnieks@vt.edu> for the info.

ChangeLog
ChangeLog.pre-2-0
ChangeLog.pre-2-10
ChangeLog.pre-2-12
ChangeLog.pre-2-2
ChangeLog.pre-2-4
ChangeLog.pre-2-6
ChangeLog.pre-2-8
configure.in

index bbd5d84..cbe73d8 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2000-03-03  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
+
+       * configure.in: Make the search for pthread_attr_... prototypes
+       find names at the start of a line also, like it is on AIX. Thanks
+       to Valdis Kletnieks <Valdis.Kletnieks@vt.edu> for the info.
+
 Wed Mar  1 10:39:39 2000  Tim Janik  <timj@gtk.org>
 
        * gslist.c (g_slist_reverse): minor optimization.
index bbd5d84..cbe73d8 100644 (file)
@@ -1,3 +1,9 @@
+2000-03-03  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
+
+       * configure.in: Make the search for pthread_attr_... prototypes
+       find names at the start of a line also, like it is on AIX. Thanks
+       to Valdis Kletnieks <Valdis.Kletnieks@vt.edu> for the info.
+
 Wed Mar  1 10:39:39 2000  Tim Janik  <timj@gtk.org>
 
        * gslist.c (g_slist_reverse): minor optimization.
index bbd5d84..cbe73d8 100644 (file)
@@ -1,3 +1,9 @@
+2000-03-03  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
+
+       * configure.in: Make the search for pthread_attr_... prototypes
+       find names at the start of a line also, like it is on AIX. Thanks
+       to Valdis Kletnieks <Valdis.Kletnieks@vt.edu> for the info.
+
 Wed Mar  1 10:39:39 2000  Tim Janik  <timj@gtk.org>
 
        * gslist.c (g_slist_reverse): minor optimization.
index bbd5d84..cbe73d8 100644 (file)
@@ -1,3 +1,9 @@
+2000-03-03  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
+
+       * configure.in: Make the search for pthread_attr_... prototypes
+       find names at the start of a line also, like it is on AIX. Thanks
+       to Valdis Kletnieks <Valdis.Kletnieks@vt.edu> for the info.
+
 Wed Mar  1 10:39:39 2000  Tim Janik  <timj@gtk.org>
 
        * gslist.c (g_slist_reverse): minor optimization.
index bbd5d84..cbe73d8 100644 (file)
@@ -1,3 +1,9 @@
+2000-03-03  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
+
+       * configure.in: Make the search for pthread_attr_... prototypes
+       find names at the start of a line also, like it is on AIX. Thanks
+       to Valdis Kletnieks <Valdis.Kletnieks@vt.edu> for the info.
+
 Wed Mar  1 10:39:39 2000  Tim Janik  <timj@gtk.org>
 
        * gslist.c (g_slist_reverse): minor optimization.
index bbd5d84..cbe73d8 100644 (file)
@@ -1,3 +1,9 @@
+2000-03-03  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
+
+       * configure.in: Make the search for pthread_attr_... prototypes
+       find names at the start of a line also, like it is on AIX. Thanks
+       to Valdis Kletnieks <Valdis.Kletnieks@vt.edu> for the info.
+
 Wed Mar  1 10:39:39 2000  Tim Janik  <timj@gtk.org>
 
        * gslist.c (g_slist_reverse): minor optimization.
index bbd5d84..cbe73d8 100644 (file)
@@ -1,3 +1,9 @@
+2000-03-03  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
+
+       * configure.in: Make the search for pthread_attr_... prototypes
+       find names at the start of a line also, like it is on AIX. Thanks
+       to Valdis Kletnieks <Valdis.Kletnieks@vt.edu> for the info.
+
 Wed Mar  1 10:39:39 2000  Tim Janik  <timj@gtk.org>
 
        * gslist.c (g_slist_reverse): minor optimization.
index bbd5d84..cbe73d8 100644 (file)
@@ -1,3 +1,9 @@
+2000-03-03  Sebastian Wilhelmi  <wilhelmi@ira.uka.de>
+
+       * configure.in: Make the search for pthread_attr_... prototypes
+       find names at the start of a line also, like it is on AIX. Thanks
+       to Valdis Kletnieks <Valdis.Kletnieks@vt.edu> for the info.
+
 Wed Mar  1 10:39:39 2000  Tim Janik  <timj@gtk.org>
 
        * gslist.c (g_slist_reverse): minor optimization.
index 70ff7aa..1198338 100644 (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