aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEttore Perazzoli <ettore@src.gnome.org>2000-06-26 12:22:39 +0800
committerEttore Perazzoli <ettore@src.gnome.org>2000-06-26 12:22:39 +0800
commit59e1597cdc65c6813376a557013102107d2712eb (patch)
tree624545c2d65ed405fde882a4834c74b753e2905e
parent78075bd090ddfe0824c6cd33faa2638ccd0e609e (diff)
downloadgsoc2013-evolution-59e1597cdc65c6813376a557013102107d2712eb.tar
gsoc2013-evolution-59e1597cdc65c6813376a557013102107d2712eb.tar.gz
gsoc2013-evolution-59e1597cdc65c6813376a557013102107d2712eb.tar.bz2
gsoc2013-evolution-59e1597cdc65c6813376a557013102107d2712eb.tar.lz
gsoc2013-evolution-59e1597cdc65c6813376a557013102107d2712eb.tar.xz
gsoc2013-evolution-59e1597cdc65c6813376a557013102107d2712eb.tar.zst
gsoc2013-evolution-59e1597cdc65c6813376a557013102107d2712eb.zip
Fix linking options for gthreads.
svn path=/trunk/; revision=3735
-rw-r--r--ChangeLog5
-rw-r--r--configure.in4
2 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index fe00dee982..8006858fb3 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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)