aboutsummaryrefslogtreecommitdiffstats
path: root/wiretap/acinclude.m4
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2001-09-28 05:41:45 +0000
committerGuy Harris <guy@alum.mit.edu>2001-09-28 05:41:45 +0000
commit61568581bd093d43e8ef18347098d2814d4d62b0 (patch)
treeba9f315e66965ef51192d545f1d88da7a5d11a16 /wiretap/acinclude.m4
parentad0e1385e31c7d7b891294cc177433beed17dcb1 (diff)
We have our own internal versions of "gzgets()" and "gzgetc()", so we
don't need to check whether zlib has them. We *do*, however, have to check for "gzseek()", as we don't have our own version of that. svn path=/trunk/; revision=3963
Diffstat (limited to 'wiretap/acinclude.m4')
-rw-r--r--wiretap/acinclude.m412
1 files changed, 6 insertions, 6 deletions
diff --git a/wiretap/acinclude.m4 b/wiretap/acinclude.m4
index 00674548ed..3f094e2aab 100644
--- a/wiretap/acinclude.m4
+++ b/wiretap/acinclude.m4
@@ -2,7 +2,7 @@ dnl Macros that test for specific features.
dnl This file is part of the Autoconf packaging for Ethereal.
dnl Copyright (C) 1998-2000 by Gerald Combs.
dnl
-dnl $Id: acinclude.m4,v 1.11 2001/08/20 15:23:34 gram Exp $
+dnl $Id: acinclude.m4,v 1.12 2001/09/28 05:41:45 guy Exp $
dnl
#
@@ -71,12 +71,12 @@ AC_DEFUN(AC_WIRETAP_ZLIB_CHECK,
#
# Well, we at least have the zlib header file.
#
- # Check for "gzgets()" in zlib, because we need it, but
+ # Check for "gzseek()" in zlib, because we need it, but
# some older versions of zlib don't have it. It appears
- # from the ChangeLog that any released version of zlib
- # with "gzgets()" should have the other routines we
- # depend on, such as "gzseek()", "gztell()", and "zError()".
+ # from the zlib ChangeLog that any released version of zlib
+ # with "gzseek()" should have the other routines we
+ # depend on, such as "gztell()" and "zError()".
#
- AC_CHECK_LIB(z, gzgets,,enable_zlib=no)
+ AC_CHECK_LIB(z, gzseek,,enable_zlib=no)
fi
])