Return-Path: Delivered-To: apmail-ws-tuscany-commits-archive@locus.apache.org Received: (qmail 17705 invoked from network); 2 Sep 2006 04:50:56 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 2 Sep 2006 04:50:56 -0000 Received: (qmail 59908 invoked by uid 500); 2 Sep 2006 04:50:56 -0000 Delivered-To: apmail-ws-tuscany-commits-archive@ws.apache.org Received: (qmail 59881 invoked by uid 500); 2 Sep 2006 04:50:56 -0000 Mailing-List: contact tuscany-commits-help@ws.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: tuscany-dev@ws.apache.org Delivered-To: mailing list tuscany-commits@ws.apache.org Received: (qmail 59872 invoked by uid 99); 2 Sep 2006 04:50:56 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 01 Sep 2006 21:50:56 -0700 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [140.211.166.113] (HELO eris.apache.org) (140.211.166.113) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 01 Sep 2006 21:50:53 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id 693391A981A; Fri, 1 Sep 2006 21:50:33 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r439534 - in /incubator/tuscany/cpp/sca: configure.ac runtime/extensions/python/ runtime/extensions/python/src/ runtime/extensions/python/src/Makefile.am samples/Calculator/CalculatorComposite/Makefile.am Date: Sat, 02 Sep 2006 04:50:32 -0000 To: tuscany-commits@ws.apache.org From: jsdelfino@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20060902045033.693391A981A@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: jsdelfino Date: Fri Sep 1 21:50:31 2006 New Revision: 439534 URL: http://svn.apache.org/viewvc?rev=439534&view=rev Log: Port Andy's python extension to Linux Modified: incubator/tuscany/cpp/sca/configure.ac incubator/tuscany/cpp/sca/runtime/extensions/python/ (props changed) incubator/tuscany/cpp/sca/runtime/extensions/python/src/ (props changed) incubator/tuscany/cpp/sca/runtime/extensions/python/src/Makefile.am incubator/tuscany/cpp/sca/samples/Calculator/CalculatorComposite/Makefile.am Modified: incubator/tuscany/cpp/sca/configure.ac URL: http://svn.apache.org/viewvc/incubator/tuscany/cpp/sca/configure.ac?rev=439534&r1=439533&r2=439534&view=diff ============================================================================== --- incubator/tuscany/cpp/sca/configure.ac (original) +++ incubator/tuscany/cpp/sca/configure.ac Fri Sep 1 21:50:31 2006 @@ -50,6 +50,8 @@ runtime/extensions/ws/service/Makefile runtime/extensions/ws/service/axis2c/Makefile runtime/extensions/ws/service/axis2c/src/Makefile + runtime/extensions/python/Makefile + runtime/extensions/python/src/Makefile runtime/core/test/Makefile runtime/core/test/CustomerInfo/Makefile runtime/core/test/MyValue/Makefile Propchange: incubator/tuscany/cpp/sca/runtime/extensions/python/ ------------------------------------------------------------------------------ --- svn:ignore (added) +++ svn:ignore Fri Sep 1 21:50:31 2006 @@ -0,0 +1,29 @@ +configure +Makefile.in +config.log +depcomp +config.guess +config.h +config.sub +ltmain.sh +Makefile +config.status +stamp-h1 +config.h.in +libtool +autom4te.cache +missing +aclocal.m4 +install-sh +.deps +*.dat +.libs +tmp +bld +.project +.cdtproject +.settings +*_Proxy.cpp +*_Proxy.h +*_Wrapper.cpp +*_Wrapper.h Propchange: incubator/tuscany/cpp/sca/runtime/extensions/python/src/ ------------------------------------------------------------------------------ --- svn:ignore (added) +++ svn:ignore Fri Sep 1 21:50:31 2006 @@ -0,0 +1,29 @@ +configure +Makefile.in +config.log +depcomp +config.guess +config.h +config.sub +ltmain.sh +Makefile +config.status +stamp-h1 +config.h.in +libtool +autom4te.cache +missing +aclocal.m4 +install-sh +.deps +*.dat +.libs +tmp +bld +.project +.cdtproject +.settings +*_Proxy.cpp +*_Proxy.h +*_Wrapper.cpp +*_Wrapper.h Modified: incubator/tuscany/cpp/sca/runtime/extensions/python/src/Makefile.am URL: http://svn.apache.org/viewvc/incubator/tuscany/cpp/sca/runtime/extensions/python/src/Makefile.am?rev=439534&r1=439533&r2=439534&view=diff ============================================================================== --- incubator/tuscany/cpp/sca/runtime/extensions/python/src/Makefile.am (original) +++ incubator/tuscany/cpp/sca/runtime/extensions/python/src/Makefile.am Fri Sep 1 21:50:31 2006 @@ -15,11 +15,13 @@ libtuscany_sca_python_la_LIBADD = -L${TUSCANY_SDOCPP}/lib -ltuscany_sdo \ -L$(top_builddir)/runtime/core/src -ltuscany_sca \ - -L$(top_builddir)/runtime/extensions/cpp/src -ltuscany_sca_cpp + -L$(top_builddir)/runtime/extensions/cpp/src -ltuscany_sca_cpp \ + -L${PYTHON_LIB} -lpython2.3 INCLUDES = -Imodel -I$(top_builddir)/runtime/core/src \ -I${TUSCANY_SDOCPP}/include \ - -I$(top_builddir)/runtime/extensions/cpp/src + -I$(top_builddir)/runtime/extensions/cpp/src \ + -I${PYTHON_INCLUDE} AM_CPPFLAGS = $(CPPFLAGS) -D_DEBUG - \ No newline at end of file + Modified: incubator/tuscany/cpp/sca/samples/Calculator/CalculatorComposite/Makefile.am URL: http://svn.apache.org/viewvc/incubator/tuscany/cpp/sca/samples/Calculator/CalculatorComposite/Makefile.am?rev=439534&r1=439533&r2=439534&view=diff ============================================================================== --- incubator/tuscany/cpp/sca/samples/Calculator/CalculatorComposite/Makefile.am (original) +++ incubator/tuscany/cpp/sca/samples/Calculator/CalculatorComposite/Makefile.am Fri Sep 1 21:50:31 2006 @@ -13,8 +13,8 @@ java -jar $(TUSCANY_SCACPP)/bin/scagen.jar -dir . -output . composite_LTLIBRARIES = libCalculatorComposite.la -composite_DATA = *.composite *.componentType *.wsdl services.xml -EXTRA_DIST = *.composite *.componentType *.wsdl services.xml +composite_DATA = *.composite *.componentType *.wsdl services.xml *.py +EXTRA_DIST = *.composite *.componentType *.wsdl services.xml *.py libCalculatorComposite_la_SOURCES = \ CalculatorImpl.cpp \ --------------------------------------------------------------------- To unsubscribe, e-mail: tuscany-commits-unsubscribe@ws.apache.org For additional commands, e-mail: tuscany-commits-help@ws.apache.org