aboutsummaryrefslogtreecommitdiffstats
path: root/wiretap/configure.in
diff options
context:
space:
mode:
authorJörg Mayer <jmayer@loplof.de>2004-06-01 00:15:38 +0000
committerJörg Mayer <jmayer@loplof.de>2004-06-01 00:15:38 +0000
commit01dd51cdf4a444065b20c2861bb9625c2103bfd9 (patch)
treeaf586ef0fefbf2f21188f03b240b7e2995cf4f46 /wiretap/configure.in
parentef763058f14f3faedbd7b7b72644545f56e02ac2 (diff)
It really helps when you change the default from gtk1 -> gtk2 in the top
level configure.in to mirror that change in wiretap. Otherwise people who have both versions of glib/gtk installed may see crashes. svn path=/trunk/; revision=11049
Diffstat (limited to 'wiretap/configure.in')
-rw-r--r--wiretap/configure.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/wiretap/configure.in b/wiretap/configure.in
index 12bda13a2b..7a5ca2b7b0 100644
--- a/wiretap/configure.in
+++ b/wiretap/configure.in
@@ -1,4 +1,4 @@
-# $Id: configure.in,v 1.57 2004/04/14 18:42:19 obiot Exp $
+# $Id: configure.in,v 1.58 2004/06/01 00:15:38 jmayer Exp $
#
AC_INIT(wtap.c)
@@ -123,7 +123,7 @@ else
fi
AC_ARG_ENABLE(gtk2,
-[ --enable-gtk2 build Glib2/Gtk2+-based (t)ethereal. [default=no]],enable_gtk2=$enableval,enable_gtk2=no)
+[ --disable-gtk2 build Glib1/Gtk1+-based (t)ethereal. [default=no]],enable_gtk2=$enableval,enable_gtk2=yes)
if test "x$enable_gtk2" = "xyes" ; then
AM_PATH_GLIB_2_0(2.0.0, CFLAGS="$CFLAGS $GLIB_CFLAGS" LIBS="$LIBS $GLIB_LIBS", , gmodule)