aboutsummaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
authorsahlberg <sahlberg@f5534014-38df-0310-8fa8-9805f1628bb7>2007-05-07 07:23:38 +0000
committersahlberg <sahlberg@f5534014-38df-0310-8fa8-9805f1628bb7>2007-05-07 07:23:38 +0000
commitc712b2e7ea946048b20a59b5999ad135acc52ef4 (patch)
treef1e465b42f7975301fba881064f763005fde787f /configure.in
parentd0229bd44e3f26843b62d3b7c5cc55f57dbd5d57 (diff)
there was a syntax error introduced in this file which made it
impossible to configure and build wireshark under gtk1 git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@21709 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index 9a9f220854..0cdfa14146 100644
--- a/configure.in
+++ b/configure.in
@@ -498,7 +498,7 @@ if test "x$enable_gtk2" = "xyes" -a \
GTK_OK=two
AM_PATH_GTK_2_0(2.0.0, CFLAGS="$CFLAGS $GTK_CFLAGS", GTK_OK=no, gthread)
elif test "x$enable_gtk2" != "xyes" \
- "(" "x$enable_wireshark" = "xyes" -o "x$enable_wireshark" = "xifgtkavailable" ")"; then
+ -a "(" "x$enable_wireshark" = "xyes" -o "x$enable_wireshark" = "xifgtkavailable" ")"; then
GTK_OK=one
AM_PATH_GTK(1.2.0, CFLAGS="$CFLAGS $GTK_CFLAGS", GTK_OK=no )
else