You are viewing a plain text version of this content. The canonical link for it is here.
Posted to sandesha-dev@ws.apache.org by da...@apache.org on 2006/09/10 05:44:08 UTC

svn commit: r441895 - in /webservices/sandesha/trunk/c/samples: autogen.sh build.sh

Author: damitha
Date: Sat Sep  9 20:44:08 2006
New Revision: 441895

URL: http://svn.apache.org/viewvc?view=rev&rev=441895
Log:
Added build files

Added:
    webservices/sandesha/trunk/c/samples/autogen.sh   (with props)
    webservices/sandesha/trunk/c/samples/build.sh   (with props)

Added: webservices/sandesha/trunk/c/samples/autogen.sh
URL: http://svn.apache.org/viewvc/webservices/sandesha/trunk/c/samples/autogen.sh?view=auto&rev=441895
==============================================================================
--- webservices/sandesha/trunk/c/samples/autogen.sh (added)
+++ webservices/sandesha/trunk/c/samples/autogen.sh Sat Sep  9 20:44:08 2006
@@ -0,0 +1,43 @@
+#!/bin/bash
+
+echo -n 'Running libtoolize...'
+if libtoolize --force > /dev/null 2>&1; then
+	echo 'done.'
+else
+	echo 'failed.'
+	exit 1
+fi
+
+echo -n 'Running aclocal...'
+if aclocal > /dev/null 2>&1; then
+	echo 'done.'
+else
+	echo 'failed.'
+	exit 1
+fi
+
+echo -n 'Running autoheader...'
+if autoheader > /dev/null 2>&1; then
+	echo 'done.'
+else
+	echo 'failed.'
+	exit 1
+fi
+
+echo -n 'Running autoconf...'
+if autoconf > /dev/null 2>&1; then
+	echo 'done.'
+else
+	echo 'failed.'
+	exit 1
+fi
+
+echo -n 'Running automake...'
+if automake --add-missing > /dev/null 2>&1; then
+	echo 'done.'
+else
+	echo 'failed.'
+	exit 1
+fi
+
+echo 'done'

Propchange: webservices/sandesha/trunk/c/samples/autogen.sh
------------------------------------------------------------------------------
    svn:executable = *

Added: webservices/sandesha/trunk/c/samples/build.sh
URL: http://svn.apache.org/viewvc/webservices/sandesha/trunk/c/samples/build.sh?view=auto&rev=441895
==============================================================================
--- webservices/sandesha/trunk/c/samples/build.sh (added)
+++ webservices/sandesha/trunk/c/samples/build.sh Sat Sep  9 20:44:08 2006
@@ -0,0 +1,8 @@
+#!/bin/bash
+
+./autogen.sh
+
+./configure --prefix=${AXIS2C_HOME} --with-axis2_util=${AXIS2C_HOME}/include --with-axiom=${AXIS2C_HOME}/include
+make 
+make install
+

Propchange: webservices/sandesha/trunk/c/samples/build.sh
------------------------------------------------------------------------------
    svn:executable = *



---------------------------------------------------------------------
To unsubscribe, e-mail: sandesha-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: sandesha-dev-help@ws.apache.org