From: Adam Dickmeiss Date: Fri, 13 Oct 2006 09:54:30 +0000 (+0000) Subject: Support --with-boost=PREFIX option. Check for -lpthread before Boost is X-Git-Tag: METAPROXY.1.0.7~9 X-Git-Url: http://lists.indexdata.dk/?a=commitdiff_plain;h=2c1ae1973bf428a88137f97033b8262cb0ddfe7e;p=metaproxy-moved-to-github.git Support --with-boost=PREFIX option. Check for -lpthread before Boost is checked. --- diff --git a/configure.ac b/configure.ac index 99acb1e..666de4b 100644 --- a/configure.ac +++ b/configure.ac @@ -34,6 +34,16 @@ fi # Checks for libraries. AC_CHECK_LIB(dl,dlopen) +boostdir="yes" +AC_ARG_WITH(boost, [ ---with-boost=PREFIX Boost library in PREFIX],[boostdir=$withval]) + +if test "$openssl" != "yes"; then + CPPFLAGS="-I${boostdir}/include" + LIBS="-L${boostdir}/lib" +fi + +AC_CHECK_LIB(pthread, main) + AC_CHECK_LIB(boost_thread, main, [],[ AC_MSG_NOTICE([boost thread library not found.]) AC_MSG_ERROR([Install libboost-thread-dev (or similar)])