diff options
author | Ronnie Sahlberg <ronnie_sahlberg@ozemail.com.au> | 2002-09-04 22:12:30 +0000 |
---|---|---|
committer | Ronnie Sahlberg <ronnie_sahlberg@ozemail.com.au> | 2002-09-04 22:12:30 +0000 |
commit | 159eb5113938b38db11a5da84af69dace1e92667 (patch) | |
tree | 43a607f3814c623a3c59e8b6fe016140f35bdbe8 /configure.in | |
parent | 174fb4985418bb48d069e86335eb78a5a37980a7 (diff) | |
download | wireshark-159eb5113938b38db11a5da84af69dace1e92667.tar.gz wireshark-159eb5113938b38db11a5da84af69dace1e92667.tar.bz2 wireshark-159eb5113938b38db11a5da84af69dace1e92667.zip |
When compiling for Gtk2, make sure we link with gthread as well.
svn path=/trunk/; revision=6181
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 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 ) |