wingo pushed a commit to branch lightning
in repository guile.
commit bc0786e93300e74b5eabe153922963843f838838
Author: pcpa <[email protected]>
Date: Tue Aug 27 18:29:31 2013 -0300
test for zlib in configure.ac
---
THANKS | 1 +
configure.ac | 3 +++
2 files changed, 4 insertions(+)
diff --git a/THANKS b/THANKS
index 80e9e8a..99807c4 100644
--- a/THANKS
+++ b/THANKS
@@ -14,3 +14,4 @@ Jens Troeger <[email protected]>
Tom Tromey <[email protected]>
Trent Nelson <[email protected]>
Vitaly Magerya <[email protected]>
+Brandon Invergo <[email protected]>
diff --git a/configure.ac b/configure.ac
index 971cb4b..4f645df 100644
--- a/configure.ac
+++ b/configure.ac
@@ -57,10 +57,13 @@ if test "x$DISASSEMBLER" != "xno"; then
[HAVE_IBERTY="no"])
AC_CHECK_LIB(bfd, bfd_init, ,
[HAVE_BFD="no"])
+ AC_CHECK_LIB(z, compressBound, ,
+ [HAVE_Z="no"])
AC_CHECK_LIB(opcodes, init_disassemble_info, ,
[HAVE_OPCODES="no"])
if test "x$HAVE_IBERTY" = "xno" -o \
"x$HAVE_BFD" = "xno" -o \
+ "x$HAVE_Z" = "xno" -o \
"x$HAVE_OPCODES" = "xno"; then
if test "x$DISASSEMBLER" != "xauto"; then
AC_MSG_ERROR([binutils not found, see
http://www.gnu.org/software/binutils/])