Author: jfrederic.clere(a)jboss.com
Date: 2008-06-11 03:47:31 -0400 (Wed, 11 Jun 2008)
New Revision: 1690
Added:
sandbox/httpd/test.release
Log:
Shell to test httpd release on the lab machines.
Added: sandbox/httpd/test.release
===================================================================
--- sandbox/httpd/test.release (rev 0)
+++ sandbox/httpd/test.release 2008-06-11 07:47:31 UTC (rev 1690)
@@ -0,0 +1,43 @@
+if [ -z "$BOXTYPE" ]
+then
+ echo "BOXTYPE not filled please . ./.profile!!!"
+ exit 1
+fi
+OS=`uname -s`
+case $OS in
+ HP-UX)
+ CC=cc
+ export CC
+ SSL_LOC=/opt/openssl
+ export SSL_LOC
+ ;;
+ SunOS)
+ CPP="/opt/SUNWspro/bin/cc -E"
+ export CPP
+ CC=/opt/SUNWspro/bin/cc
+ export CC
+ SSL_LOC=/usr/local/ssl
+ export SSL_LOC
+ CFLAGS="-pthreads"
+ export CFLAGS
+ ;;
+esac
+# Option for trunk?
+# --without-libtool \
+# --without-pgsql \
+
+VERSION=`pwd | awk -F . ' { print $3 } '`
+./configure CC="$CC" CPP="$CPP"
--prefix=$HOME/APACHE${VERSION}_${BOXTYPE} \
+ --with-included-apr \
+ --with-mpm=worker \
+ --enable-mods-shared=most \
+ --enable-ssl \
+ --with-ssl=$SSL_LOC \
+ --with-port=7779 \
+ --enable-proxy \
+ --enable-proxy-http \
+ --enable-proxy-ajp \
+ --enable-proxy-balancer
+make clean
+make
+make install
Show replies by date