From a7721186cd55df4a2090a8289ce1635ebdff4fc6 Mon Sep 17 00:00:00 2001 From: fgerlits Date: Fri, 24 Dec 2004 14:20:15 +0000 Subject: [PATCH] *** empty log message *** --- livesupport/modules/core/src/AudioClip.cxx | 4 +++- livesupport/products/gLiveSupport/etc/Makefile.in | 7 +++++-- livesupport/products/scheduler/etc/Makefile.in | 7 +++++-- 3 files changed, 13 insertions(+), 5 deletions(-) diff --git a/livesupport/modules/core/src/AudioClip.cxx b/livesupport/modules/core/src/AudioClip.cxx index ee39879f1..adfc82f4d 100644 --- a/livesupport/modules/core/src/AudioClip.cxx +++ b/livesupport/modules/core/src/AudioClip.cxx @@ -22,7 +22,7 @@ Author : $Author: fgerlits $ - Version : $Revision: 1.8 $ + Version : $Revision: 1.9 $ Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/core/src/AudioClip.cxx,v $ ------------------------------------------------------------------------------*/ @@ -181,6 +181,8 @@ AudioClip :: getMetadata() throw () { Ptr::Ref metadata(new xmlpp::Document); + metadata->create_root_node("metadata"); + metadata->add_comment("some data will come here"); return metadata; } diff --git a/livesupport/products/gLiveSupport/etc/Makefile.in b/livesupport/products/gLiveSupport/etc/Makefile.in index 9e34dfe28..5ab589d9d 100644 --- a/livesupport/products/gLiveSupport/etc/Makefile.in +++ b/livesupport/products/gLiveSupport/etc/Makefile.in @@ -20,8 +20,8 @@ # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # # -# Author : $Author: maroy $ -# Version : $Revision: 1.13 $ +# Author : $Author: fgerlits $ +# Version : $Revision: 1.14 $ # Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/gLiveSupport/etc/Makefile.in,v $ # # @configure_input@ @@ -92,6 +92,8 @@ SCHEDULER_CLIENT_LIB_FILE = ${SCHEDULER_CLIENT_LIB_DIR}/lib${SCHEDULER_CLIENT_LI LIBXMLPP_CFLAGS=@LIBXMLPP_CFLAGS@ LIBXMLPP_LIBS=@LIBXMLPP_LIBS@ +CURL_LIBS=`${USR_DIR}/bin/curl-config --libs` + GTKMM_CFLAGS=@GTKMM_CFLAGS@ GTKMM_LIBS=@GTKMM_LIBS@ @@ -131,6 +133,7 @@ CXXFLAGS = @CXXFLAGS@ @DEFS@ @COVERAGE_CXXFLAGS@ -pthread \ LDFLAGS = @LDFLAGS@ -pthread \ ${ICU_LIBS} \ ${LIBXMLPP_LIBS} \ + ${CURL_LIBS} \ ${GTKMM_LIBS} \ -L${USR_LIB_DIR} \ -L${CORE_LIB_DIR} \ diff --git a/livesupport/products/scheduler/etc/Makefile.in b/livesupport/products/scheduler/etc/Makefile.in index 35471cd6e..bc27a58dc 100644 --- a/livesupport/products/scheduler/etc/Makefile.in +++ b/livesupport/products/scheduler/etc/Makefile.in @@ -20,8 +20,8 @@ # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # # -# Author : $Author: maroy $ -# Version : $Revision: 1.34 $ +# Author : $Author: fgerlits $ +# Version : $Revision: 1.35 $ # Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/products/scheduler/etc/Makefile.in,v $ # # @configure_input@ @@ -65,6 +65,8 @@ VPATH = ${SRC_DIR} LIBXMLPP_CFLAGS=@LIBXMLPP_CFLAGS@ LIBXMLPP_LIBS=@LIBXMLPP_LIBS@ +CURL_LIBS=`${USR_DIR}/bin/curl-config --libs` + MODULES_DIR = ${BASE_DIR}/../../modules CORE_DIR = ${MODULES_DIR}/core @@ -136,6 +138,7 @@ CXXFLAGS = @CXXFLAGS@ @DEFS@ @COVERAGE_CXXFLAGS@ -pthread \ -I${TMP_DIR} LDFLAGS = @LDFLAGS@ -pthread \ ${LIBXMLPP_LIBS} \ + ${CURL_LIBS} \ -L${USR_LIB_DIR} \ -L${HELIX_LIB_DIR} \ -L${CORE_LIB_DIR} \