summaryrefslogtreecommitdiffstats
path: root/build.sh
blob: d88b220e5ec6727486d9ea004115f6c8cc0ebe28 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/bash
set -e
sh autogen.sh
AXIS2C_HOME=${AXIS2C_HOME:=`pwd`/deploy}

export AXIS2C_HOME

echo "AXIS2C_HOME = ${AXIS2C_HOME}"

sh configure --prefix=${AXIS2C_HOME} --enable-tests=yes --with-apache2=/usr/include/httpd --with-apr=/usr/include/apr-1
make -j 10 
make install

cd samples
sh build.sh

cd ..