Update to newer boost autoconf macros
[libt2n] / configure.in
CommitLineData
ac7fdc22
GE
1AC_INIT(configure.in)
2
3AM_CONFIG_HEADER(config.h)
28cb45a5 4dnl AC_CONFIG_HEADERS([config.h:config.h.in])
e1f27c9e 5AM_INIT_AUTOMAKE(libt2n, 0.5)
ac7fdc22 6
28cb45a5
GE
7AC_DEFINE(PROTOCOL_VERSION, 1, [protocol version used (integers, increase version if incompatible)])
8
ac7fdc22
GE
9AC_LANG_CPLUSPLUS
10AC_PROG_CXX
11AM_PROG_LIBTOOL
12
59adb9e2 13dnl check for doxygen
a16e5f7e 14AC_PATH_PROG(DOXYGEN, doxygen)
59c8cfaa 15AM_CONDITIONAL(HAVE_DOXYGEN, test -n $DOXYGEN)
59adb9e2 16
07e98688
GE
17AM_CONDITIONAL(AUTOCHECK, test "$enable_autocheck" = yes)
18AM_PATH_CPPUNIT(1.8.0)
19
3d9c0861
TJ
20AX_BOOST_BASE([1.33])
21AX_BOOST_SERIALIZATION
d184c648
GE
22if test "x$BOOST_SERIALIZATION_LIB" = "x"; then
23 echo "Sorry, we need the Serialization-Lib from Boost."
24 exit 1
25fi
26
eea21b24
JT
27PKG_CHECK_MODULES(XMLPP, libxml++-2.6 >= 2.8.1)
28AC_SUBST(XMLPP_CFLAGS)
29AC_SUBST(XMLPP_LIBS)
6f6d24c0 30
1f0aa49f 31dnl fake installed libt2n (codegen) for example-codegen
2e525d6f
JT
32dnl LIBT2N_CFLAGS="-I\$(top_srcdir)/src @BOOST_CPPFLAGS@ @CPPUNIT_CFLAGS@ -I\$(top_srcdir)/codegen"
33dnl LIBT2N_LIBS="\$(top_builddir)/src/libt2n.la @BOOST_SERIALIZATION_LIB@ @BOOST_LDFLAGS@"
34dnl LIBT2N_CODEGEN="\$(top_builddir)/codegen/libt2n-codegen"
35dnl LIBT2N_CLIENT_PCTEMPLATE="\$(top_srcdir)/codegen/clientlib.pc.in"
44a58add 36
86c3b9ab 37AC_SUBST(LIBT2N_CFLAGS)
44a58add
JT
38AC_SUBST(LIBT2N_LIBS)
39AC_SUBST(LIBT2N_CODEGEN)
1f0aa49f 40AC_SUBST(LIBT2N_CLIENT_PCTEMPLATE)
7eb34f4d
JT
41
42dnl todo: do not create .pc file in configure but in make
43dnl see also autoconf manual "Installation Directory Variables"
44a58add 44
c8dcbc9e 45AC_OUTPUT(Makefile doc/Doxyfile doc/Makefile src/Makefile libt2n.pc libt2n.spec test/Makefile examples/Makefile codegen/Makefile examples-codegen/Makefile)