From 0b6cb6a9bfc01f5b8d5e48a978fd7321c197cba1 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Thu, 3 Feb 2000 20:42:51 +0000 Subject: [PATCH] fix the checking for --enable-zlib --- configure.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.in b/configure.in index 8ab5968..7bdec6f 100644 --- a/configure.in +++ b/configure.in @@ -123,7 +123,7 @@ fi dnl Checks for working -lm AC_CHECK_LIB(m, pow,, AC_MSG_ERROR([math library (-lm) appears broken])) -if test "x$disable_zlib" = "xyes"; then +if test "x$enable_zlib" = "xyes"; then dnl Check for working -lz dnl Note - must have gztell *and* gzgets in -lz *and* zlib.h AC_CHECK_LIB(z, gztell, HAS_ZLIB=yes, HAS_ZLIB=no, [$LIBS])