From f5ae853de88f2f853137caca05f514d5e61bc33a Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Sat, 31 Mar 2001 03:54:00 +0000 Subject: [PATCH] don't need to worry about zlib any more because that's now taken care of by libQFutil --- tools/qfcc/configure.in | 23 +---------------------- 1 file changed, 1 insertion(+), 22 deletions(-) diff --git a/tools/qfcc/configure.in b/tools/qfcc/configure.in index 313d99e36..34f3f6ba1 100644 --- a/tools/qfcc/configure.in +++ b/tools/qfcc/configure.in @@ -54,32 +54,11 @@ dnl Checks for typedefs, structures, and compiler characteristics. dnl Checks for library functions. - -AC_ARG_ENABLE(zlib, -[ --disable-zlib disable zlib support], -) - -Z_LIBS= -if test "x$enable_zlib" != "xno"; then - dnl Check for working -lz - dnl Note - must have gztell *and* gzgets in -lz *and* zlib.h - AC_CHECK_LIB(z, gztell, HAVE_ZLIB=yes, HAVE_ZLIB=no, [$LIBS]) - if test "x$HAVE_ZLIB" = "xyes"; then - AC_CHECK_LIB(z, gzgets, HAVE_ZLIB=yes, HAVE_ZLIB=no, [$LIBS]) - if test "x$HAVE_ZLIB" = "xyes"; then - AC_CHECK_HEADER(zlib.h, HAVE_ZLIB=yes, HAVE_ZLIB=no) - if test "x$HAVE_ZLIB" = "xyes"; then - Z_LIBS="-lz" - fi - fi - fi -fi - AC_CHECK_HEADER(QF/qtypes.h, HAVE_QF=yes, HAVE_QF=no) if test "$HAVE_QF" = yes; then AC_CHECK_LIB(QFutil, Qopen, HAVE_QF=yes, HAVE_QF=no, - [$Z_LIBS] + [] ) fi if test "$HAVE_QF" != yes; then