Skip to content

Commit

Permalink
Fix failing zlib check in configure.ac
Browse files Browse the repository at this point in the history
  • Loading branch information
keithw committed Feb 26, 2012
1 parent 7a9f92d commit dae8734
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion configure.ac
Expand Up @@ -14,6 +14,7 @@ AC_PROG_RANLIB

# Checks for libraries.
AC_SEARCH_LIBS([utempter_remove_added_record], [utempter], , [AC_MSG_ERROR([Unable to find libutempter.])])
AC_SEARCH_LIBS([compress], [z], , [AC_MSG_ERROR([Unable to find zlib.])])
AX_BOOST_BASE(, , [AC_MSG_ERROR([Unable to find boost libraries.])])

# Checks for header files.
Expand Down Expand Up @@ -41,7 +42,6 @@ AC_CHECK_FUNCS([clock_gettime gettimeofday inet_ntoa iswprint memchr memset nl_l

# Checks for protobuf
PKG_CHECK_MODULES([protobuf], [protobuf])
PKG_CHECK_MODULES([zlib], [zlib])

AC_CONFIG_FILES([Makefile src/Makefile src/crypto/Makefile src/frontend/Makefile src/network/Makefile src/protobufs/Makefile src/statesync/Makefile src/terminal/Makefile src/util/Makefile scripts/Makefile src/examples/Makefile man/Makefile])
AC_OUTPUT

0 comments on commit dae8734

Please sign in to comment.