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