2 ## Process this file with autoconf to produce a configure script.
4 # Autoconf and automake setup
6 AC_INIT([metaproxy],[1.2.3],[metaproxy-help@indexdata.dk])
8 AC_CONFIG_HEADERS([src/config.hpp])
10 AC_CONFIG_SRCDIR([configure.ac])
11 AC_CONFIG_AUX_DIR([config])
14 AM_INIT_AUTOMAKE([1.9])
24 # Default language to use for tests (some tests may switch to C++)
27 if test "$enable_shared" = "yes"; then
28 AC_DEFINE([HAVE_DL_SUPPORT],[1],
29 [Define to 1 if you have shared module support])
32 # Checks for libraries.
33 AC_CHECK_LIB([dl],[dlopen])
34 AC_CHECK_LIB([m],[main])
36 AC_CHECK_FUNCS([localtime_r])
39 YAZPP_INIT([threads],[1.2.3])
40 if test -z "$YAZPPLIB"; then
41 AC_MSG_ERROR([YAZ++ development libraries missing])
44 CPPFLAGS="$YAZPPINC $CPPFLAGS"
46 ID_BOOST([thread test],[1.33])
47 if test -z "${BOOST_THREAD_LIB}"; then
48 AC_MSG_ERROR([Boost thread development libraries required])
50 if test -z "${BOOST_TEST_LIB}"; then
51 AC_MSG_ERROR([Boost unit test framework libraries required])
54 AC_CHECK_HEADERS([sys/select.h sys/socket.h])
56 if test -d ${srcdir}/.git; then
57 SHA1=`git show --pretty=format:%H|head -1`
59 SHA1=`head -1 ${srcdir}/ChangeLog|awk '{print $2}'`
61 AC_DEFINE_UNQUOTED([VERSION_SHA1], "$SHA1", [SHA-1 from Git])
67 include/Makefile include/metaproxy/Makefile
78 sed s%echo_source=yes%echo_source=no%g < metaproxy-config > src/metaproxy-config && chmod +x metaproxy-config src/metaproxy-config
89 "------------------------------------------------------------------------
93 Source code location: ${srcdir}
94 CPP Preprocessor: ${CPP}
95 CPP Preprocessor flags: ${CPPFLAGS}
97 CXX Compiler flags: ${CXXFLAGS}
98 Linker flags: ${LDFLAGS}
100 Host System Type: ${host}
101 Install path: ${prefix}
102 Automake: ${AUTOMAKE}
105 Boost Version: ${BOOST_VERSION}
106 Boost Include: ${BOOST_CPPFLAGS}
107 Boost linker flags: ${BOOST_LDFLAGS}
108 Boost Libs: ${BOOST_DATE_TIME_LIB} ${BOOST_THREAD_LIB}
109 YAZPP Version: ${YAZPPVERSION}
110 YAZPP Include: ${YAZPPINC}
111 YAZPP La Lib: ${YAZPPLALIB}
112 YAZPP Lib: ${YAZPPLIB}
113 Bugreport: ${PACKAGE_BUGREPORT}
115 ------------------------------------------------------------------------"
117 dnl mode:shell-script
118 dnl sh-indentation: 2
119 dnl sh-basic-offset: 4