|
From: stephan b. <sg...@us...> - 2005-01-12 12:00:04
|
Update of /cvsroot/pclasses/pclasses2 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4132 Modified Files: configure.pclasses2 postconfig.pclasses2 toc.pclasses2.make.at Log Message: Added XML lib. Index: toc.pclasses2.make.at =================================================================== RCS file: /cvsroot/pclasses/pclasses2/toc.pclasses2.make.at,v retrieving revision 1.11 retrieving revision 1.12 diff -u -d -r1.11 -r1.12 --- toc.pclasses2.make.at 30 Dec 2004 20:14:10 -0000 1.11 +++ toc.pclasses2.make.at 12 Jan 2005 11:59:53 -0000 1.12 @@ -46,6 +46,7 @@ -l$(LIBPS11N_BASENAME): ; @true -l$(LIBPSIO_BASENAME): ; @true -l$(LIBPAPP_BASENAME): ; @true +-l$(LIBPXML_BASENAME): ; @true Index: configure.pclasses2 =================================================================== RCS file: /cvsroot/pclasses/pclasses2/configure.pclasses2,v retrieving revision 1.24 retrieving revision 1.25 diff -u -d -r1.24 -r1.25 --- configure.pclasses2 3 Jan 2005 18:27:55 -0000 1.24 +++ configure.pclasses2 12 Jan 2005 11:59:53 -0000 1.25 @@ -13,7 +13,7 @@ toc_export PACKAGE_DESCRIPTION="C++ generic application framework library" -# toc_source_test user_is_stephan_beal +toc_source_test user_is_stephan_beal # ^^^ i always compile with -Werror and -Wall. Must come before gnu_cpp_tools test. ####### compilers: @@ -231,6 +231,11 @@ toc_export LIBPAPP_CLIENT_LDADD="-l${LIBPAPP_BASENAME}" toc_export LIBPAPP_CFLAGS="" +toc_export LIBPXML_BASENAME=pclasses_xml +toc_export LIBPXML_LDADD="${LIBEXPAT_CLIENT_LDADD}" +toc_export LIBPXML_CLIENT_LDADD="-l${LIBPXML_BASENAME}" +toc_export LIBPXML_CFLAGS="" + ######################################################################## # Enable mysql driver... Index: postconfig.pclasses2 =================================================================== RCS file: /cvsroot/pclasses/pclasses2/postconfig.pclasses2,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- postconfig.pclasses2 30 Dec 2004 19:47:47 -0000 1.2 +++ postconfig.pclasses2 12 Jan 2005 11:59:53 -0000 1.3 @@ -10,13 +10,13 @@ EOF -for i in CORE IO UNICODE SYSTEM UTIL S11N SIO APP; do - base="LIBP${i}_BASENAME" +for i in CORE IO UNICODE SYSTEM UTIL S11N SIO APP XML; do + base=LIBP${i}_BASENAME ldl="LIBP${i}_LDADD" ldc="LIBP${i}_CLIENT_LDADD" - echo "$(eval echo \$$base):" - echo -e "\t$ldl=$(eval echo \$${ldl})" - echo -e "\t$ldc=$(eval echo \$${ldc})" + echo ${!base}: + echo -e "\t$ldl=${!ldl}" + echo -e "\t$ldc=${!ldc}" done echo |