diff options
author | Daniel Stenberg <daniel@haxx.se> | 2002-11-28 13:29:42 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2002-11-28 13:29:42 +0000 |
commit | a0eadb76eae63e954b13f82be46b41a543802b82 (patch) | |
tree | 2d41598b0e9bb313c4537ec27a68c5be3f464622 | |
parent | 065852e46cc889719e89ba1385e000156a8ee30f (diff) |
bad use of AM_CONDITIONAL removed and now configure runs better when used
with --disable-ipv6 --without-zlib
-rw-r--r-- | configure.in | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/configure.in b/configure.in index 829cd72a0..4e452c2e8 100644 --- a/configure.in +++ b/configure.in @@ -543,8 +543,7 @@ case "$OPT_ZLIB" in AC_CHECK_HEADER(zlib.h,[ AC_CHECK_LIB(z, gzread, - [AM_CONDITIONAL(CONTENT_ENCODING, true) - HAVE_LIBZ="1" + [HAVE_LIBZ="1" AC_SUBST(HAVE_LIBZ) LIBS="$LIBS -lz" AC_DEFINE(HAVE_ZLIB_H, 1, [if you have the zlib.h header file]) |