autoconf-archive-maintainers
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

AX_CHECK_ZLIB


From: Peter Johansson
Subject: AX_CHECK_ZLIB
Date: Wed, 03 Mar 2010 16:41:12 -0500
User-agent: Thunderbird 2.0.0.19 (X11/20090105)

Hello,

Using the AX_CHECK_LIB I noticed that when calling configure without any --with-zlib or --without-zlib the configure output was:

checking if zlib is wanted... checking for inflateEnd in -lz... yes
checking zlib.h usability... yes
checking zlib.h presence... yes

while I expected

checking if zlib is wanted... yes
checking for inflateEnd in -lz... yes
checking zlib.h usability... yes
checking zlib.h presence... yes

The tiny attached patch fixes this.

Thanks,
Peter


--
Peter Johansson

svndigest maintainer, http://dev.thep.lu.se/svndigest
yat maintainer,       http://dev.thep.lu.se/yat

--- ax_check_zlib.m4.orig       2010-03-02 13:56:28.000000000 -0500
+++ ax_check_zlib.m4    2010-03-03 16:31:24.000000000 -0500
@@ -76,7 +76,8 @@
   fi
 else
   AC_MSG_RESULT(no)
-fi])
+fi], 
+[AC_MSG_RESULT(yes)])
 
 ZLIB_HOME=/usr/local
 if test ! -f "${ZLIB_HOME}/include/zlib.h"

reply via email to

[Prev in Thread] Current Thread [Next in Thread]