From: Adam Dickmeiss Date: Mon, 21 Apr 2008 09:30:07 +0000 (+0200) Subject: Check for Boost thread/unit. It is no longer handled by ID_BOOST. X-Git-Tag: v1.0.13.1~3 X-Git-Url: http://lists.indexdata.com/cgi-bin?a=commitdiff_plain;h=68077fb163a5a274e1e9dbf9762d4e4bc71dc7f2;p=metaproxy-moved-to-github.git Check for Boost thread/unit. It is no longer handled by ID_BOOST. --- diff --git a/configure.ac b/configure.ac index 84b14f4..64ffe7a 100644 --- a/configure.ac +++ b/configure.ac @@ -44,6 +44,12 @@ YAZ_DOC CPPFLAGS="$YAZPPINC $CPPFLAGS" ID_BOOST([thread test],[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 AC_CHECK_HEADERS([sys/select.h sys/socket.h])