From 2c1ae1973bf428a88137f97033b8262cb0ddfe7e Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Fri, 13 Oct 2006 09:54:30 +0000 Subject: [PATCH] Support --with-boost=PREFIX option. Check for -lpthread before Boost is checked. --- configure.ac | 10 ++++++++++ 1 file changed, 10 insertions(+) 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)]) -- 1.7.10.4