aboutsummaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
authorsahlberg <sahlberg@f5534014-38df-0310-8fa8-9805f1628bb7>2002-09-04 22:12:30 +0000
committersahlberg <sahlberg@f5534014-38df-0310-8fa8-9805f1628bb7>2002-09-04 22:12:30 +0000
commitbaf40b5f0cf7cad71f853cdc9c1909068d56f607 (patch)
tree43a607f3814c623a3c59e8b6fe016140f35bdbe8 /configure.in
parent738cacc0443b165958a1053530bcea96f15c927a (diff)
When compiling for Gtk2, make sure we link with gthread as well.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@6181 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'configure.in')
-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 )