diff options
author | Sebastian Wilhelmi <wilhelmi@ira.uka.de> | 2000-03-06 09:09:57 +0000 |
---|---|---|
committer | Sebastian Wilhelmi <wilhelmi@src.gnome.org> | 2000-03-06 09:09:57 +0000 |
commit | 8fded0095931a7349b5abbb92de1aef380b0330a (patch) | |
tree | 1eba00e055bd06e23a28273cfc1391fb92828c05 /configure.in | |
parent | d778d016b7f5d29ced51225f53b9827cc04bfa8e (diff) |
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.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 4 |
1 files changed, 2 insertions, 2 deletions
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 |