You are viewing a plain text version of this content. The canonical link for it is here.
Posted to c-commits@axis.apache.org by da...@apache.org on 2010/07/21 09:32:35 UTC

svn commit: r966124 - /axis/axis2/c/core/trunk/build_for_dist.sh

Author: damitha
Date: Wed Jul 21 07:32:34 2010
New Revision: 966124

URL: http://svn.apache.org/viewvc?rev=966124&view=rev
Log:
build script with full options that could be useful for a dist

Added:
    axis/axis2/c/core/trunk/build_for_dist.sh   (with props)

Added: axis/axis2/c/core/trunk/build_for_dist.sh
URL: http://svn.apache.org/viewvc/axis/axis2/c/core/trunk/build_for_dist.sh?rev=966124&view=auto
==============================================================================
--- axis/axis2/c/core/trunk/build_for_dist.sh (added)
+++ axis/axis2/c/core/trunk/build_for_dist.sh Wed Jul 21 07:32:34 2010
@@ -0,0 +1,18 @@
+#!/bin/bash
+set -e
+sh autogen.sh
+
+AXIS2C_HOME=`pwd`/deploy
+export AXIS2C_HOME
+echo "AXIS2C_HOME = ${AXIS2C_HOME}"
+
+sh configure --prefix=`pwd`/deploy --enable-tests=yes --with-apache2=/usr/local/apache2/include --enable-tcp=yes --with-archive=/usr/include
+make -j 10
+make install
+
+cd samples
+sh autogen.sh
+sh configure --prefix=`pwd`/../deploy --with-axis2=`pwd`/../deploy/include/axis2-1.7.0
+make -j 10
+make install
+cd ..

Propchange: axis/axis2/c/core/trunk/build_for_dist.sh
------------------------------------------------------------------------------
    svn:executable = *