diff options
author | Guy Harris <guy@alum.mit.edu> | 2000-01-16 00:13:24 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2000-01-16 00:13:24 +0000 |
commit | 66a0ac1ca116c350549aa006772c67c891602b8f (patch) | |
tree | d533c6cd45f65ac7bf6fa980e96ccf92c336f228 /configure.in | |
parent | 25e72642db39134f08c14c000ae0eef4c5ce3128 (diff) | |
download | wireshark-66a0ac1ca116c350549aa006772c67c891602b8f.tar.gz wireshark-66a0ac1ca116c350549aa006772c67c891602b8f.tar.bz2 wireshark-66a0ac1ca116c350549aa006772c67c891602b8f.zip |
The NetBSD zlib problem is probably the same as the FreeBSD and OpenBSD
zlib problems, and my workaround appears to handle that problem, so
let's reenable zlib support in NetBSD and look into it in more detail if
there's still a problem.
svn path=/trunk/; revision=1494
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/configure.in b/configure.in index 3bacd693d6..2523b0ea29 100644 --- a/configure.in +++ b/configure.in @@ -1,4 +1,4 @@ -# $Id: configure.in,v 1.77 2000/01/15 13:25:13 gram Exp $ +# $Id: configure.in,v 1.78 2000/01/16 00:13:24 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 @@ -119,11 +119,7 @@ fi dnl zlib check AC_ARG_ENABLE(zlib, -[ --enable-zlib use zlib to read compressed data. [default=yes]],, [dnl -case "$host_os" in -netbsd*) enable_zlib=no;; -*) enable_zlib=yes;; -esac]) +[ --enable-zlib use zlib to read compressed data. [default=yes]],,enable_zlib=yes) AC_MSG_CHECKING(whether to use zlib for reading compressed capture files) if test "x$enable_zlib" = "xno" ; then |