X-Git-Url: http://developer.intra2net.com/git/?p=libt2n;a=blobdiff_plain;f=configure.in;h=83d0cfd74c7c55c904f461420e90ac0175339044;hp=6e8b944fac52890a0b8da56db0f42e7272423e88;hb=7eb34f4dcd6b5eba1846bce22e95d54418b2e34e;hpb=d184c64894e6c4f3adb9467078acfc9e7446664a diff --git a/configure.in b/configure.in index 6e8b944..83d0cfd 100644 --- a/configure.in +++ b/configure.in @@ -1,8 +1,11 @@ AC_INIT(configure.in) AM_CONFIG_HEADER(config.h) +dnl AC_CONFIG_HEADERS([config.h:config.h.in]) AM_INIT_AUTOMAKE(libt2n, 0.1) +AC_DEFINE(PROTOCOL_VERSION, 1, [protocol version used (integers, increase version if incompatible)]) + AC_LANG_CPLUSPLUS AC_PROG_CXX AM_PROG_LIBTOOL @@ -20,4 +23,24 @@ if test "x$BOOST_SERIALIZATION_LIB" = "x"; then exit 1 fi -AC_OUTPUT(Makefile doc/Doxyfile doc/Makefile src/Makefile libt2n.pc libt2n.spec test/Makefile) +PKG_CHECK_MODULES(XMLPP, libxml++-2.6 >= 2.8.1) +AC_SUBST(XMLPP_CFLAGS) +AC_SUBST(XMLPP_LIBS) + +dnl fake installed libt2n (codegen) for example-codegen +LIBT2N_CPPFLAGS="-I\$(top_srcdir)/src @BOOST_CPPFLAGS@ @CPPUNIT_CFLAGS@ -I\$(top_srcdir)/codegen" +LIBT2N_LIBS="\$(top_builddir)/src/libt2n.la @BOOST_SERIALIZATION_LIB@ @BOOST_LDFLAGS@" +LIBT2N_CODEGEN="\$(top_builddir)/codegen/libt2n-codegen" +LIBT2N_CLIENT_PCTEMPLATE="\$(top_srcdir)/codegen/clientlib.pc.in" +LIBT2N_CODEGEN_MAKESNIPPET="include \$(top_srcdir)/codegen/codegen.make" + +AC_SUBST(LIBT2N_CPPFLAGS) +AC_SUBST(LIBT2N_LIBS) +AC_SUBST(LIBT2N_CODEGEN) +AC_SUBST(LIBT2N_CLIENT_PCTEMPLATE) +AC_SUBST(LIBT2N_CODEGEN_MAKESNIPPET) + +dnl todo: do not create .pc file in configure but in make +dnl see also autoconf manual "Installation Directory Variables" + +AC_OUTPUT(Makefile doc/Doxyfile doc/Makefile src/Makefile libt2n.pc libt2n.spec test/Makefile examples/Makefile codegen/Makefile example-codegen/Makefile)