Support --with-boost=PREFIX option. Check for -lpthread before Boost is
authorAdam Dickmeiss <adam@indexdata.dk>
Fri, 13 Oct 2006 09:54:30 +0000 (09:54 +0000)
committerAdam Dickmeiss <adam@indexdata.dk>
Fri, 13 Oct 2006 09:54:30 +0000 (09:54 +0000)
checked.

configure.ac

index 99acb1e..666de4b 100644 (file)
@@ -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)])