Return-Path: Delivered-To: apmail-ws-sandesha-dev-archive@www.apache.org Received: (qmail 48495 invoked from network); 26 Jun 2007 09:43:44 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 26 Jun 2007 09:43:44 -0000 Received: (qmail 63663 invoked by uid 500); 26 Jun 2007 09:43:48 -0000 Delivered-To: apmail-ws-sandesha-dev-archive@ws.apache.org Received: (qmail 63453 invoked by uid 500); 26 Jun 2007 09:43:47 -0000 Mailing-List: contact sandesha-dev-help@ws.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Delivered-To: mailing list sandesha-dev@ws.apache.org Received: (qmail 63442 invoked by uid 500); 26 Jun 2007 09:43:47 -0000 Delivered-To: apmail-ws-sandesha-cvs@ws.apache.org Received: (qmail 63439 invoked by uid 99); 26 Jun 2007 09:43:47 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 26 Jun 2007 02:43:47 -0700 X-ASF-Spam-Status: No, hits=-99.5 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 26 Jun 2007 02:43:43 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id D0CBD1A981A; Tue, 26 Jun 2007 02:43:22 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r550755 - in /webservices/sandesha/trunk/c/src/storage: ./ common/ Date: Tue, 26 Jun 2007 09:43:22 -0000 To: sandesha-cvs@ws.apache.org From: sahan@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20070626094322.D0CBD1A981A@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: sahan Date: Tue Jun 26 02:43:20 2007 New Revision: 550755 URL: http://svn.apache.org/viewvc?view=rev&rev=550755 Log: 1. Changing folder structure in storage (rearrangement in r550751 didn't work :( ) Added: webservices/sandesha/trunk/c/src/storage/common/ webservices/sandesha/trunk/c/src/storage/common/Makefile.am webservices/sandesha/trunk/c/src/storage/common/create_seq_mgr.c - copied unchanged from r550748, webservices/sandesha/trunk/c/src/storage/create_seq_mgr.c webservices/sandesha/trunk/c/src/storage/common/invoker_mgr.c - copied unchanged from r550748, webservices/sandesha/trunk/c/src/storage/invoker_mgr.c webservices/sandesha/trunk/c/src/storage/common/next_msg_mgr.c - copied unchanged from r550748, webservices/sandesha/trunk/c/src/storage/next_msg_mgr.c webservices/sandesha/trunk/c/src/storage/common/sender_mgr.c - copied unchanged from r550748, webservices/sandesha/trunk/c/src/storage/sender_mgr.c webservices/sandesha/trunk/c/src/storage/common/seq_property_mgr.c - copied unchanged from r550748, webservices/sandesha/trunk/c/src/storage/seq_property_mgr.c webservices/sandesha/trunk/c/src/storage/common/storage_mgr.c - copied unchanged from r550748, webservices/sandesha/trunk/c/src/storage/storage_mgr.c webservices/sandesha/trunk/c/src/storage/common/transaction.c - copied unchanged from r550748, webservices/sandesha/trunk/c/src/storage/transaction.c Removed: webservices/sandesha/trunk/c/src/storage/create_seq_mgr.c webservices/sandesha/trunk/c/src/storage/invoker_mgr.c webservices/sandesha/trunk/c/src/storage/next_msg_mgr.c webservices/sandesha/trunk/c/src/storage/sender_mgr.c webservices/sandesha/trunk/c/src/storage/seq_property_mgr.c webservices/sandesha/trunk/c/src/storage/storage_mgr.c webservices/sandesha/trunk/c/src/storage/transaction.c Added: webservices/sandesha/trunk/c/src/storage/common/Makefile.am URL: http://svn.apache.org/viewvc/webservices/sandesha/trunk/c/src/storage/common/Makefile.am?view=auto&rev=550755 ============================================================================== --- webservices/sandesha/trunk/c/src/storage/common/Makefile.am (added) +++ webservices/sandesha/trunk/c/src/storage/common/Makefile.am Tue Jun 26 02:43:20 2007 @@ -0,0 +1,15 @@ +noinst_LTLIBRARIES = libsandesha2_storage.la + +libsandesha2_storage_la_SOURCES = \ + storage_mgr.c \ + transaction.c \ + create_seq_mgr.c \ + invoker_mgr.c \ + sender_mgr.c \ + next_msg_mgr.c \ + seq_property_mgr.c + +INCLUDES = -I$(top_builddir)/include \ + @AXIS2INC@ \ + @AXIOMINC@ \ + @UTILINC@ --------------------------------------------------------------------- To unsubscribe, e-mail: sandesha-dev-unsubscribe@ws.apache.org For additional commands, e-mail: sandesha-dev-help@ws.apache.org