aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRonnie Sahlberg <ronnie_sahlberg@ozemail.com.au>2002-09-04 22:12:30 +0000
committerRonnie Sahlberg <ronnie_sahlberg@ozemail.com.au>2002-09-04 22:12:30 +0000
commit159eb5113938b38db11a5da84af69dace1e92667 (patch)
tree43a607f3814c623a3c59e8b6fe016140f35bdbe8
parent174fb4985418bb48d069e86335eb78a5a37980a7 (diff)
When compiling for Gtk2, make sure we link with gthread as well.
svn path=/trunk/; revision=6181
-rw-r--r--configure.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.in b/configure.in
index e7da50152d..7923125a93 100644
--- a/configure.in
+++ b/configure.in
@@ -1,4 +1,4 @@
-# $Id: configure.in,v 1.175 2002/08/31 09:55:18 oabad Exp $
+# $Id: configure.in,v 1.176 2002/09/04 22:12:30 sahlberg Exp $
dnl
dnl Process this file with autoconf 2.13 or later to produce a
dnl configure script; 2.12 doesn't generate a "configure" script that
@@ -227,7 +227,7 @@ AM_CONDITIONAL(USE_GTK2, test x$enable_gtk2 = xyes)
#
if test "x$enable_gtk2" = "xyes" -a "x$enable_ethereal" = "xyes" ; then
GTK_OK=two
- AM_PATH_GTK_2_0(2.0.0, CFLAGS="$CFLAGS $GTK_CFLAGS", GTK_OK=no )
+ AM_PATH_GTK_2_0(2.0.0, CFLAGS="$CFLAGS $GTK_CFLAGS", GTK_OK=no, gthread)
elif test "x$enable_gtk2" = "xno" -a "x$enable_ethereal" = "xyes" ; then
GTK_OK=one
AM_PATH_GTK(1.2.0, CFLAGS="$CFLAGS $GTK_CFLAGS", GTK_OK=no )