Update of /cvsroot/compbench/CompBenchmarks++/libcompbenchmarks/Base
In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv2213
Modified Files:
Makefile.am
Log Message:
XMLReader added. libxml2 used.
Index: Makefile.am
===================================================================
RCS file: /cvsroot/compbench/CompBenchmarks++/libcompbenchmarks/Base/Makefile.am,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** Makefile.am 22 Jan 2007 18:21:05 -0000 1.2
--- Makefile.am 23 Jan 2007 18:46:27 -0000 1.3
***************
*** 10,14 ****
noinst_LTLIBRARIES = libBase.la
! sources = XML.cpp md5.cpp
libBase_la_SOURCES = $(sources) $(source_sys)
--- 10,14 ----
noinst_LTLIBRARIES = libBase.la
! sources = XML.cpp XMLReader.cpp md5.cpp
libBase_la_SOURCES = $(sources) $(source_sys)
***************
*** 17,20 ****
libBaseincludedir = $(includedir)/compbenchmarks/Base
! INCLUDES = -I $(top_srcdir)/libcompbenchmarks
# -I /usr/include/w3c-libwww # !!!
--- 17,23 ----
libBaseincludedir = $(includedir)/compbenchmarks/Base
! INCLUDES = -I $(top_srcdir)/libcompbenchmarks -I/usr/include/libxml2 # !!! $(xml2-config --cflags)
!
! libBase_la_LIBADD = -L/usr/lib -lxml2 # !!! `xml2-config --libs`
!
# -I /usr/include/w3c-libwww # !!!
|