X-Git-Url: http://jsfdemo.indexdata.com/?a=blobdiff_plain;f=configure.ac;h=cefe52fd0ad9f7487ddf5c10baafe2331a4d93bc;hb=85016b609dc5cabc1ba230d39acf143f3519c103;hp=b611303df9efabd1a1c08a83d2cd2858e81dcb56;hpb=74420da6f0c5cffc13ac62d7d845fade996e7c0f;p=metaproxy-moved-to-github.git diff --git a/configure.ac b/configure.ac index b611303..cefe52f 100644 --- a/configure.ac +++ b/configure.ac @@ -4,16 +4,15 @@ # Autoconf and automake setup AC_PREREQ(2.57) AC_INIT(yp2, 0.0.1, marc@indexdata.dk) -AM_CONFIG_HEADER(src/config.hpp) +AC_CONFIG_HEADERS(src/config.hpp) AC_CONFIG_SRCDIR(configure.ac) AC_CONFIG_AUX_DIR(config) AC_CANONICAL_SYSTEM ##AC_PREFIX_DEFAULT(`pwd`/install) -AM_INIT_AUTOMAKE - +AM_INIT_AUTOMAKE(1.8) # Checks for programs. AC_PROG_CXX @@ -28,11 +27,14 @@ AM_PROG_LIBTOOL AC_LANG(C++) # Checks for libraries. -##AC_CHECK_LIB(ibrary, main) AC_CHECK_LIB(boost_thread, main, [],[ AC_MSG_ERROR([boost thread library not found. Install libboost-thread-dev (or similar)]) ]) +AC_CHECK_LIB(boost_date_time, main, [],[ + AC_MSG_ERROR([boost date_time library not found. Install libboost-date-time-dev (or similar)]) +]) + AC_MSG_CHECKING([for boost_unit_test_framework presence]) OLIBS=$LIBS LIBS="$LIBS -lboost_unit_test_framework" @@ -96,7 +98,9 @@ fi ##AC_HEADER_SYS_WAIT ##AC_HEADER_TIME AC_CHECK_HEADERS(iostream list vector stdexcept) -AC_CHECK_HEADERS(boost/thread/mutex.hpp boost/test/auto_unit_test.hpp) +AC_CHECK_HEADERS(boost/thread/mutex.hpp \ + boost/date_time/posix_time/posix_time.hpp \ + boost/test/auto_unit_test.hpp) # Checks for typedefs, structures, and compiler characteristics. ##AC_TYPE_SIZE_T