AC_SUBST HAVE_LIBZ for curl-config.in

This commit is contained in:
Daniel Stenberg 2002-09-02 22:45:46 +00:00
parent 64bbe9dfaf
commit f8e0b18439
2 changed files with 6 additions and 1 deletions

View File

@ -536,7 +536,9 @@ fi
dnl AC_CHECK_FUNC(gzread, , AC_CHECK_LIB(z, gzread))
AC_CHECK_LIB(z, gzread, [AM_CONDITIONAL(CONTENT_ENCODING, true)
AC_DEFINE(HAVE_LIBZ)
LIBS="$LIBS -lz"])
LIBS="$LIBS -lz"
HAVE_LIBZ="1"
AC_SUBST(HAVE_LIBZ)])
dnl Default is to try the thread-safe versions of a few functions
OPT_THREAD=on

View File

@ -66,6 +66,9 @@ while test $# -gt 0; do
if test "@IPV6_ENABLED@" = "1"; then
echo "IPv6"
fi
if test "@HAVE_LIBZ@" = "1"; then
echo "libz"
fi
if test "@CURL_DISABLE_HTTP@" = "1"; then
echo "HTTP-disabled"
fi