aboutsummaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2002-09-11 00:02:52 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2002-09-11 00:02:52 +0000
commit1a678bcf8927411cb4352ab784d492a7e5f64d62 (patch)
tree2f1c1c2501124367cdb1ef8fc62a9a576bdef7dc /configure.in
parente7d91dc68b1811859ab2aa0d349fa97a6385c7f9 (diff)
Fix the test for "want_zlib" being "no" when generating the message
indicating whether we'll be building with zlib. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@6265 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 42352cab24..163588bf90 100644
--- a/configure.in
+++ b/configure.in
@@ -1,4 +1,4 @@
-# $Id: configure.in,v 1.177 2002/09/10 23:26:19 guy Exp $
+# $Id: configure.in,v 1.178 2002/09/11 00:02:52 guy 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
@@ -730,7 +730,7 @@ else
setuid_message="no"
fi
-if test "x$want_zlib" = "no" ; then
+if test "x$want_zlib" = "xno" ; then
zlib_message="no"
else
zlib_message="yes"