Do not depend on libboost-program-options-dev.
[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_thread" = "no"; then
56     AC_MSG_ERROR([install libboost-thread-dev or similar])
57 fi
58 if test "$ax_cv_boost_unit_test_framework" = "no"; then
59     AC_MSG_ERROR([install libboost-test-dev or similar])
60 fi
61     
62
63
64 # Checks for header files.
65 ##AC_HEADER_STDC
66 ##AC_HEADER_SYS_WAIT
67 ##AC_HEADER_TIME 
68 AC_CHECK_HEADERS(sys/select.h sys/socket.h)
69
70 # Checks for typedefs, structures, and compiler characteristics.
71 ##AC_TYPE_SIZE_T 
72 ##AC_CHECK_SIZEOF(int)
73 ##AC_CHECK_SIZEOF(long int)
74
75 # Checks for library functions.
76
77 AC_CONFIG_FILES([
78         Doxyfile
79         Makefile
80         src/Makefile
81         src/Jamfile
82         xml/Makefile
83         xml/schema/Makefile
84         xml/xslt/Makefile
85         doc/Makefile
86         doc/local.ent
87         doc/common/Makefile
88         doc/common/print.dsl
89         etc/Makefile
90 ])
91
92 AC_OUTPUT
93
94
95 # postamble
96
97
98 echo \
99 "------------------------------------------------------------------------
100
101   Package:                    ${PACKAGE}
102   Version:                    ${VERSION}
103   Source code location:       ${srcdir}
104   CPP Preprocessor:           ${CPP}
105   CPP Preprocessor flags:     ${CPPFLAGS}
106   CXX Compiler:               ${CXX}
107   CXX Compiler flags:         ${CXXFLAGS}
108   Linker flags:               ${LDFLAGS}
109   Linked libs:                ${LIBS}
110   Host System Type:           ${host}
111   Install path:               ${prefix}
112   Automake:                   ${AUTOMAKE}
113   Archiver:                   ${AR}
114   Ranlib:                     ${RANLIB}
115   Boost Version:              ${BOOST_VERSION}               
116   Boost Include:              ${BOOST_CPPFLAGS}               
117   Boost linker flags:         ${BOOST_LDFLAGS}               
118   Boost Libs:                 ${BOOST_DATE_TIME_LIB} ${BOOST_PROGRAM_OPTIONS_LIB} ${BOOST_THREAD_LIB}               
119   YAZPP Version:              ${YAZPPVERSION}
120   YAZPP Include:              ${YAZPPINC}
121   YAZPP La Lib:               ${YAZPPLALIB}
122   YAZPP Lib:                  ${YAZPPLIB}
123   Bugreport:                  ${PACKAGE_BUGREPORT}
124
125 ------------------------------------------------------------------------"
126 dnl Local Variables:
127 dnl mode:shell-script
128 dnl sh-indentation: 2
129 dnl sh-basic-offset: 4
130 dnl End: