diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | configure.in | 4 |
2 files changed, 7 insertions, 2 deletions
@@ -1,3 +1,8 @@ +2000-06-25 Ettore Perazzoli <ettore@helixcode.com> + + * configure.in: Use `glib-config' instead of `$GLIB_CONFIG' as the + latter is not actually defined anywhere. + 2000-06-25 Peter Williams <peterw@helixcode.com> * configure.in (pthread stuff): Make threads required due diff --git a/configure.in b/configure.in index 7af7493057..c3693eb263 100644 --- a/configure.in +++ b/configure.in @@ -151,8 +151,8 @@ dnl Notice that this is a hack, and we wont be able to use this forever, but dnl at least for some time dnl -THREADS_LIBS="$PTHREAD_LIB `$GLIB_CONFIG --libs gthread`" -THREADS_CFLAGS="`$GLIB_CONFIG --cflags gthread`" +THREADS_LIBS="$PTHREAD_LIB `glib-config --libs gthread`" +THREADS_CFLAGS="`glib-config --cflags gthread`" AC_SUBST(THREADS_LIBS) AC_SUBST(THREADS_CFLAGS) |