Require autoconf 2.60 (bug #2050)
[metaproxy-moved-to-github.git] / configure.ac
1 ## -*- Autoconf -*-
2 ## Process this file with autoconf to produce a configure script.
3
4 # Autoconf and automake setup
5 AC_PREREQ(2.60)
6 AC_INIT([metaproxy],[1.0.13],[metaproxy-help@indexdata.dk])
7
8 AC_CONFIG_HEADERS(src/config.hpp)
9
10 AC_CONFIG_SRCDIR([configure.ac]) 
11 AC_CONFIG_AUX_DIR([config])
12 AC_CANONICAL_SYSTEM
13 ##AC_PREFIX_DEFAULT(`pwd`/install) 
14
15 AM_INIT_AUTOMAKE([1.9])
16
17 # Checks for programs.
18 AC_PROG_CXX
19 AC_PROG_CXXCPP
20 AC_PROG_INSTALL
21 AC_PROG_LN_S
22 AC_PROG_MAKE_SET
23 AC_PROG_RANLIB
24 AM_PROG_LIBTOOL
25
26 # Default language to use for tests (some tests may switch to C++)
27 AC_LANG(C)
28
29 if test "$enable_shared" = "yes"; then
30     AC_DEFINE([HAVE_DL_SUPPORT],[1],
31         [Define to 1 if you have shared module support])
32 fi
33
34 # Checks for libraries.
35 AC_CHECK_LIB(dl,dlopen)
36 AC_CHECK_LIB(m,main)
37
38 ## YAZPP checks
39 YAZPP_INIT([threads],[1.1.0])
40 if test -z "$YAZPPLIB"; then
41     AC_MSG_ERROR([YAZ++ development libraries missing])
42 fi
43 YAZ_DOC
44 CPPFLAGS="$YAZPPINC $CPPFLAGS"
45
46 # check for Boost C++ development libs and headers
47
48 AX_BOOST([1.32])
49 if test "$ax_cv_boost_base" = "no"; then
50     AC_MSG_ERROR([install libboost-dev or similar])
51 fi
52 if test "$ax_cv_boost_date_time" = "no"; then
53     AC_MSG_ERROR([install libboost-date-time-dev or similar])
54 fi
55 if test "$ax_cv_boost_program_options" = "no"; then
56     AC_MSG_ERROR([install libboost-program-options-dev or similar])
57 fi
58 if test "$ax_cv_boost_thread" = "no"; then
59     AC_MSG_ERROR([install libboost-thread-dev or similar])
60 fi
61 if test "$ax_cv_boost_unit_test_framework" = "no"; then
62     AC_MSG_ERROR([install libboost-test-dev or similar])
63 fi
64     
65
66
67 # Checks for header files.
68 ##AC_HEADER_STDC
69 ##AC_HEADER_SYS_WAIT
70 ##AC_HEADER_TIME 
71 AC_CHECK_HEADERS(sys/select.h sys/socket.h)
72
73 # Checks for typedefs, structures, and compiler characteristics.
74 ##AC_TYPE_SIZE_T 
75 ##AC_CHECK_SIZEOF(int)
76 ##AC_CHECK_SIZEOF(long int)
77
78 # Checks for library functions.
79
80 AC_CONFIG_FILES([
81         Doxyfile
82         Makefile
83         src/Makefile
84         src/Jamfile
85         xml/Makefile
86         xml/schema/Makefile
87         xml/xslt/Makefile
88         doc/Makefile
89         doc/local.ent
90         doc/common/Makefile
91         doc/common/print.dsl
92         etc/Makefile
93 ])
94
95 AC_OUTPUT
96
97
98 # postamble
99
100
101 echo \
102 "------------------------------------------------------------------------
103
104   Package:                    ${PACKAGE}
105   Version:                    ${VERSION}
106   Source code location:       ${srcdir}
107   CPP Preprocessor:           ${CPP}
108   CPP Preprocessor flags:     ${CPPFLAGS}
109   CXX Compiler:               ${CXX}
110   CXX Compiler flags:         ${CXXFLAGS}
111   Linker flags:               ${LDFLAGS}
112   Linked libs:                ${LIBS}
113   Host System Type:           ${host}
114   Install path:               ${prefix}
115   Automake:                   ${AUTOMAKE}
116   Archiver:                   ${AR}
117   Ranlib:                     ${RANLIB}
118   Boost Version:              ${BOOST_VERSION}               
119   Boost Include:              ${BOOST_CPPFLAGS}               
120   Boost linker flags:         ${BOOST_LDFLAGS}               
121   Boost Libs:                 ${BOOST_DATE_TIME_LIB} ${BOOST_PROGRAM_OPTIONS_LIB} ${BOOST_THREAD_LIB}               
122   YAZPP Version:              ${YAZPPVERSION}
123   YAZPP Include:              ${YAZPPINC}
124   YAZPP La Lib:               ${YAZPPLALIB}
125   YAZPP Lib:                  ${YAZPPLIB}
126   Bugreport:                  ${PACKAGE_BUGREPORT}
127
128 ------------------------------------------------------------------------"
129 dnl Local Variables:
130 dnl mode:shell-script
131 dnl sh-indentation: 2
132 dnl sh-basic-offset: 4
133 dnl End: