mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-02-20 01:02:10 +01:00
Make the search for pthread_attr_... prototypes find names at the start of
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.
This commit is contained in:
parent
49a9cef971
commit
ead3a8c0c9
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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.
|
||||
|
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user