X-Git-Url: http://lists.indexdata.com/cgi-bin?a=blobdiff_plain;f=configure.ac;h=47b1695b49a559144a79630c93bca24f49081e9f;hb=275c61aaf848a6c167a9a593fae7ca8e55f4cb73;hp=99acb1e4c32e7b70ab8a43d68af3a25c96135934;hpb=9c37ed608370ee5d47d5290593bd5a5eeba13594;p=metaproxy-moved-to-github.git diff --git a/configure.ac b/configure.ac index 99acb1e..47b1695 100644 --- a/configure.ac +++ b/configure.ac @@ -3,7 +3,7 @@ # Autoconf and automake setup AC_PREREQ(2.59) -AC_INIT([metaproxy],[1.0.6], [adam@indexdata.dk]) +AC_INIT([metaproxy],[1.0.9],[metaproxy-help@indexdata.dk]) AC_CONFIG_HEADERS(src/config.hpp) @@ -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 "$boostdir" != "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)]) @@ -76,7 +86,7 @@ BOOST_AUTO_UNIT_TEST( test ) ]) ## YAZPP checks -YAZPP_INIT(threads,1.0.1) +YAZPP_INIT(threads,1.0.2) if test -z "$YAZPPLIB"; then AC_MSG_ERROR([YAZ++ development libraries missing]) fi