2 ## Process this file with autoconf to produce a configure script.
4 # Autoconf and automake setup
6 AC_INIT([metaproxy],[1.0.7],[metaproxy-help@indexdata.dk])
8 AC_CONFIG_HEADERS(src/config.hpp)
10 AC_CONFIG_SRCDIR([configure.ac])
11 AC_CONFIG_AUX_DIR([config])
13 ##AC_PREFIX_DEFAULT(`pwd`/install)
15 AM_INIT_AUTOMAKE([1.8])
17 # Checks for programs.
26 # Use C++ compilers only for tests
29 if test "$enable_shared" = "yes"; then
30 AC_DEFINE([HAVE_DL_SUPPORT],[1],
31 [Define to 1 if you have shared module support])
34 # Checks for libraries.
35 AC_CHECK_LIB(dl,dlopen)
38 AC_ARG_WITH(boost, [ ---with-boost=PREFIX Boost library in PREFIX],[boostdir=$withval])
40 if test "$openssl" != "yes"; then
41 CPPFLAGS="-I${boostdir}/include"
42 LIBS="-L${boostdir}/lib"
45 AC_CHECK_LIB(pthread, main)
47 AC_CHECK_LIB(boost_thread, main, [],[
48 AC_MSG_NOTICE([boost thread library not found.])
49 AC_MSG_ERROR([Install libboost-thread-dev (or similar)])
52 AC_CHECK_LIB(boost_date_time, main, [],[
53 AC_MSG_NOTICE([boost date_time library not found.])
54 AC_MSG_ERROR([Install libboost-date-time-dev (or similar)])
57 AC_CHECK_LIB(boost_program_options, main, [],[
58 AC_MSG_NOTICE([boost program options library not found.])
59 AC_MSG_ERROR([Install libboost-program-options-dev (or similar)])
62 AC_CHECK_HEADER(boost/test/auto_unit_test.hpp,,[
63 AC_MSG_NOTICE([boost test unit header not found.])
64 AC_MSG_ERROR([Install libboost-test-dev (or similar)])
67 AC_MSG_CHECKING([whether boost_unit_test_framework works])
69 LIBS="$LIBS -lboost_unit_test_framework"
71 #define BOOST_AUTO_TEST_MAIN
72 #include <boost/test/auto_unit_test.hpp>
73 BOOST_AUTO_UNIT_TEST( test )
84 AC_MSG_NOTICE([Boost unit test framework does not appear to work])
85 AC_MSG_ERROR([Consult config.log for details])
89 YAZPP_INIT(threads,1.0.1)
90 if test -z "$YAZPPLIB"; then
91 AC_MSG_ERROR([YAZ++ development libraries missing])
95 # Checks for header files.
99 AC_CHECK_HEADERS(sys/select.h sys/socket.h iostream list vector stdexcept)
100 AC_CHECK_HEADERS(boost/thread/mutex.hpp \
101 boost/date_time/posix_time/posix_time.hpp \
103 boost/test/auto_unit_test.hpp)
105 # Checks for typedefs, structures, and compiler characteristics.
107 ##AC_CHECK_SIZEOF(int)
108 ##AC_CHECK_SIZEOF(long int)
111 # Checks for library functions.
135 "------------------------------------------------------------------------
139 Source code location: ${srcdir}
140 CPP Preprocessor: ${CPP}
141 CPP Preprocessor flags: ${CPPFLAGS}
143 CXX Compiler flags: ${CXXFLAGS}
144 Linker flags: ${LDFLAGS}
146 Host System Type: ${host}
147 Install path: ${prefix}
148 Automake: ${AUTOMAKE}
151 YAZPP Version: ${YAZPPVERSION}
152 YAZPP Include: ${YAZPPINC}
153 YAZPP La Lib: ${YAZPPLALIB}
154 YAZPP Lib: ${YAZPPLIB}
155 Bugreport: ${PACKAGE_BUGREPORT}
157 ------------------------------------------------------------------------"