diff options
author | Guy Harris <guy@alum.mit.edu> | 1999-11-29 01:44:56 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 1999-11-29 01:44:56 +0000 |
commit | f315a4b745e3c9aa13dacbb35105df274fa95849 (patch) | |
tree | ac347eb8e98ea2c33f210679482807bcbd1f48f0 /acinclude.m4 | |
parent | 8bac6513209a80d8e5b453b9f8fd2eb969e5ae30 (diff) | |
download | wireshark-f315a4b745e3c9aa13dacbb35105df274fa95849.tar.gz wireshark-f315a4b745e3c9aa13dacbb35105df274fa95849.tar.bz2 wireshark-f315a4b745e3c9aa13dacbb35105df274fa95849.zip |
Don't add compressed-file-reading support unless "gzopen()" *and*
"gzseek()" *and* "gztell()" *and* "gzgets()" *and* "zError()" are all in
Zlib - we use all of them, and it appears that some older versions of
Zlib that some users had on their systems don't have some of them.
svn path=/trunk/; revision=1136
Diffstat (limited to 'acinclude.m4')
-rw-r--r-- | acinclude.m4 | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/acinclude.m4 b/acinclude.m4 index 30ddcd9b99..b97e0ed41a 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -198,6 +198,10 @@ AC_DEFUN(AC_ETHEREAL_ZLIB_CHECK, [ AC_CHECK_HEADER(zlib.h,,enable_zlib=no) AC_CHECK_LIB(z, gzopen,,enable_zlib=no) + AC_CHECK_LIB(z, gzseek,,enable_zlib=no) + AC_CHECK_LIB(z, gztell,,enable_zlib=no) + AC_CHECK_LIB(z, gzgets,,enable_zlib=no) + AC_CHECK_LIB(z, zError,,enable_zlib=no) ]) # |