From: Jens Thiele Date: Tue, 28 Nov 2006 16:10:40 +0000 (+0000) Subject: replaced CODEGEN_ with XMLPP_ X-Git-Tag: v0.2~72 X-Git-Url: http://developer.intra2net.com/git/?p=libt2n;a=commitdiff_plain;h=eea21b24bf7f76e16a25f17c2e466635d09fbf3b;hp=84b484fa66baa81473a4278153b43221f877a2e1 replaced CODEGEN_ with XMLPP_ --- diff --git a/codegen/Makefile.am b/codegen/Makefile.am index 5fab309..e1120dd 100644 --- a/codegen/Makefile.am +++ b/codegen/Makefile.am @@ -1,5 +1,5 @@ -INCLUDES = @CODEGEN_CFLAGS@ -LDADD = @CODEGEN_LIBS@ +INCLUDES = @XMLPP_CFLAGS@ +LDADD = @XMLPP_LIBS@ codegen_SOURCES = main.cpp diff --git a/codegen/TODO b/codegen/TODO index 41e2160..ac99f43 100644 --- a/codegen/TODO +++ b/codegen/TODO @@ -1,4 +1,3 @@ -- configure.in sed s,CODEGEN,XMLPP, oder so - remove support for LIBT2N_EXPORT_GROUP(group) (this will simplify the generator a lot) - add option similar to gccs -MD (at the moment it is a fixed set of files generated and they are handled in the makefile) diff --git a/configure.in b/configure.in index edcf792..967635f 100644 --- a/configure.in +++ b/configure.in @@ -23,8 +23,8 @@ if test "x$BOOST_SERIALIZATION_LIB" = "x"; then exit 1 fi -PKG_CHECK_MODULES(CODEGEN, libxml++-2.6 >= 2.8.1) -AC_SUBST(CODEGEN_CFLAGS) -AC_SUBST(CODEGEN_LIBS) +PKG_CHECK_MODULES(XMLPP, libxml++-2.6 >= 2.8.1) +AC_SUBST(XMLPP_CFLAGS) +AC_SUBST(XMLPP_LIBS) AC_OUTPUT(Makefile doc/Doxyfile doc/Makefile src/Makefile libt2n.pc libt2n.spec test/Makefile examples/Makefile codegen/Makefile example-codegen/Makefile)