From 68077fb163a5a274e1e9dbf9762d4e4bc71dc7f2 Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Mon, 21 Apr 2008 11:30:07 +0200 Subject: [PATCH] Check for Boost thread/unit. It is no longer handled by ID_BOOST. --- configure.ac | 6 ++++++ 1 file changed, 6 insertions(+) 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]) -- 1.7.10.4