Author: damitha
Date: Wed Apr 8 10:41:07 2009
New Revision: 763174
URL: http://svn.apache.org/viewvc?rev=763174&view=rev
Log: (empty)
Modified:
webservices/savan/trunk/c/configure.ac
webservices/savan/trunk/c/src/Makefile.am
webservices/savan/trunk/c/src/client/Makefile.am
webservices/savan/trunk/c/src/core/Makefile.am
webservices/savan/trunk/c/src/msgreceivers/Makefile.am
webservices/savan/trunk/c/src/publisher/esb/Makefile.am
webservices/savan/trunk/c/src/subs_mgrs/Makefile.am
Modified: webservices/savan/trunk/c/configure.ac
URL:
http://svn.apache.org/viewvc/webservices/savan/trunk/c/configure.ac?rev=763174&r1=763173&r2=763174&view=diff
==============================================================================
--- webservices/savan/trunk/c/configure.ac (original)
+++ webservices/savan/trunk/c/configure.ac Wed Apr 8 10:41:07 2009
@@ -78,12 +78,12 @@
;;
*)
AC_MSG_RESULT(yes)
- SAVAN_STORAGE="sqlite"
+ SAVAN_SUBS_MGR="sqlite"
;;
esac ],
AC_MSG_RESULT(yes)
- SAVAN_STORAGE="sqlite"
+ SAVAN_SUBS_MGR="sqlite"
)
@@ -93,12 +93,12 @@
[ case "${enableval}" in
no)
AC_MSG_RESULT(no)
- SAVAN_STORAGE=""
+ SAVAN_SUBS_MGR=""
SVC_DIR=""
;;
*)
AC_MSG_RESULT(yes)
- SAVAN_STORAGE="service"
+ SAVAN_SUBS_MGR="service"
SVC_DIR="subs_mgr_svc"
;;
esac ],
@@ -114,11 +114,11 @@
[ case "$withval" in
no)
AC_MSG_RESULT(no)
- SAVAN_STORAGE=""
+ SAVAN_SUBS_MGR=""
;;
*)
AC_MSG_RESULT(yes)
- SAVAN_STORAGE="registry"
+ SAVAN_SUBS_MGR="registry"
dnl Find registry include dir in the path
if test -d $withval; then
registryinc="-I$withval"
@@ -220,14 +220,14 @@
AC_SUBST(UTILINC)
AC_SUBST(NEETHIINC)
AC_SUBST(XMLSCHEMAINC)
-AC_SUBST(SAVAN_STORAGE)
+AC_SUBST(SAVAN_SUBS_MGR)
AC_SUBST(SAVAN_FILTER)
AC_SUBST(SAVAN_FILTER_LIB)
AC_SUBST(SAVAN_PUBLISHER)
AC_SUBST(SAVAN_PUBLISHER_LIB)
AC_SUBST(SVC_DIR)
-export SAVAN_STORAGE
+export SAVAN_SUBS_MGR
export SAVAN_FILTER
export SAVAN_FILTER_LIB
export SAVAN_PUBLISHER
Modified: webservices/savan/trunk/c/src/Makefile.am
URL:
http://svn.apache.org/viewvc/webservices/savan/trunk/c/src/Makefile.am?rev=763174&r1=763173&r2=763174&view=diff
==============================================================================
--- webservices/savan/trunk/c/src/Makefile.am (original)
+++ webservices/savan/trunk/c/src/Makefile.am Wed Apr 8 10:41:07 2009
@@ -1,2 +1,2 @@
-SUBDIRS = handlers subscribers util filters storage publisher msgreceivers
client core
+SUBDIRS = handlers subscribers util filters subs_mgrs publisher msgreceivers
client core
EXTRA_DIST=data
Modified: webservices/savan/trunk/c/src/client/Makefile.am
URL:
http://svn.apache.org/viewvc/webservices/savan/trunk/c/src/client/Makefile.am?rev=763174&r1=763173&r2=763174&view=diff
==============================================================================
--- webservices/savan/trunk/c/src/client/Makefile.am (original)
+++ webservices/savan/trunk/c/src/client/Makefile.am Wed Apr 8 10:41:07 2009
@@ -3,7 +3,7 @@
libsavan_client_la_SOURCES = savan_client.c
libsavan_client_la_LIBADD = $(top_builddir)/src/util/libsavan_util.la \
-
../storage/@SAVAN_STORAGE@/libsavan_storage.la \
+
../subs_mgrs/@SAVAN_SUBS_MGR@/libsavan_storage.la \
../filters/@SAVAN_FILTER_LIB@
INCLUDES = -I$(top_builddir)/include \
Modified: webservices/savan/trunk/c/src/core/Makefile.am
URL:
http://svn.apache.org/viewvc/webservices/savan/trunk/c/src/core/Makefile.am?rev=763174&r1=763173&r2=763174&view=diff
==============================================================================
--- webservices/savan/trunk/c/src/core/Makefile.am (original)
+++ webservices/savan/trunk/c/src/core/Makefile.am Wed Apr 8 10:41:07 2009
@@ -13,4 +13,4 @@
libmod_savan_la_LIBADD = \
../handlers/libsavan_handlers.la\
../util/libsavan_util.la \
-
../storage/@SAVAN_STORAGE@/libsavan_storage.la
+
../subs_mgrs/@SAVAN_SUBS_MGR@/libsavan_storage.la
Modified: webservices/savan/trunk/c/src/msgreceivers/Makefile.am
URL:
http://svn.apache.org/viewvc/webservices/savan/trunk/c/src/msgreceivers/Makefile.am?rev=763174&r1=763173&r2=763174&view=diff
==============================================================================
--- webservices/savan/trunk/c/src/msgreceivers/Makefile.am (original)
+++ webservices/savan/trunk/c/src/msgreceivers/Makefile.am Wed Apr 8 10:41:07
2009
@@ -3,7 +3,7 @@
libsavan_msgreceivers_la_SOURCES = savan_msg_recv.c
libsavan_msgreceivers_la_LIBADD = ../publisher/@SAVAN_PUBLISHER_LIB@ \
-
../storage/@SAVAN_STORAGE@/libsavan_storage.la \
+
../subs_mgrs/@SAVAN_SUBS_MGR@/libsavan_storage.la \
../util/libsavan_util.la
Modified: webservices/savan/trunk/c/src/publisher/esb/Makefile.am
URL:
http://svn.apache.org/viewvc/webservices/savan/trunk/c/src/publisher/esb/Makefile.am?rev=763174&r1=763173&r2=763174&view=diff
==============================================================================
--- webservices/savan/trunk/c/src/publisher/esb/Makefile.am (original)
+++ webservices/savan/trunk/c/src/publisher/esb/Makefile.am Wed Apr 8 10:41:07
2009
@@ -1,7 +1,6 @@
lib_LTLIBRARIES = libsavan_publisher_mod.la
libsavan_publisher_mod_la_SOURCES = publisher_mod.c
-libsavan_publisher_mod_la_LIBADD =
libsavan_publisher_mod_la_LIBADD = $(top_builddir)/src/util/libsavan_util.la \
../../filters/@SAVAN_FILTER_LIB@ \
../common/libsavan_common_publisher_mod.la
Modified: webservices/savan/trunk/c/src/subs_mgrs/Makefile.am
URL:
http://svn.apache.org/viewvc/webservices/savan/trunk/c/src/subs_mgrs/Makefile.am?rev=763174&r1=763173&r2=763174&view=diff
==============================================================================
--- webservices/savan/trunk/c/src/subs_mgrs/Makefile.am (original)
+++ webservices/savan/trunk/c/src/subs_mgrs/Makefile.am Wed Apr 8 10:41:07 2009
@@ -1 +1 @@
-SUBDIRS = common $(SVC_DIR) @SAVAN_STORAGE@
+SUBDIRS = common $(SVC_DIR) @SAVAN_SUBS_MGR@