From 6c3cad561216a81af52a840209e69b95cd42dede Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Wed, 29 Jun 2011 16:13:26 +0200 Subject: [PATCH] configure checks for Boost regex --- configure.ac | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 0cec75c..959021c 100644 --- a/configure.ac +++ b/configure.ac @@ -43,13 +43,16 @@ fi YAZ_DOC CPPFLAGS="$YAZPPINC $CPPFLAGS" -ID_BOOST([thread test],[1.33]) +ID_BOOST([thread test regex],[1.33]) if test -z "${BOOST_THREAD_LIB}"; then AC_MSG_ERROR([Boost thread development libraries required]) fi if test -z "${BOOST_TEST_LIB}"; then AC_MSG_ERROR([Boost unit test framework libraries required]) fi +if test -z "${BOOST_REGEX_LIB}"; then + AC_MSG_ERROR([Boost regex development libraries required]) +fi xml_avail=false xslt_avail=false -- 1.7.10.4