aboutsummaryrefslogtreecommitdiffstats
path: root/wiretap/configure.in
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2002-02-06 09:58:30 +0000
committerGuy Harris <guy@alum.mit.edu>2002-02-06 09:58:30 +0000
commit23d1a63f39d096018057b333b1b7a99c52d18e17 (patch)
tree1507cee556dbf1f1c1e7a4113e29b81e530e49d8 /wiretap/configure.in
parent8bc19844ca6b4442e37cbea69b13a72a88008a07 (diff)
zlib 1.0.8 - the version that comes with X11 - does have "gzseek()",
even if it doesn't have "gzgets()", so one might think we could use it by using our own replacement for "gzgets()". One would be wrong to think so, however, as the "gzseek()" it has doesn't actually work when reading uncompressed files. zlib 1.0.9 has "gzgets()", and fixes that bug, so we rever to checking for "gzgets()" rather than "gzseek()", so that we don't accept pre-1.0.9 versions of zlib, and we get rid of our "gzgets()" replacement. svn path=/trunk/; revision=4702
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 b4e0fe59ab..8b64c969cb 100644
--- a/wiretap/configure.in
+++ b/wiretap/configure.in
@@ -1,4 +1,4 @@
-# $Id: configure.in,v 1.34 2002/01/30 23:48:53 guy Exp $
+# $Id: configure.in,v 1.35 2002/02/06 09:58:30 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
@@ -116,7 +116,7 @@ if test "x$enable_usr_local" = "xyes" ; then
#
# Arrange that we search for libraries in "/usr/local/lib", as we'll
- # be testing whether zlib has gzseek, and we need to be able to find
+ # be testing whether zlib has gzgets, and we need to be able to find
# zlib even if it's in "/usr/local/lib".
#
# We do this after checking for GLib; see above.