source: gs2-extensions/gsdl-amp/trunk/src/packages/CASCADE-MAKE/APACHE.sh@ 28345

Last change on this file since 28345 was 28345, checked in by davidb, 11 years ago

Minor tweak to compiling up apache

  • Property svn:executable set to *
File size: 790 bytes
Line 
1#!/bin/bash
2
3package=httpd
4version=-2.2.15
5
6progname=$0
7
8source ../cascade-make/lib/cascade-lib.bash GEXTAMP ../.. $*
9
10prefix=$GEXTAMP_INSTALLED
11
12if [ "$COMPILE_UP_APACHE_HTTPD" = "1" ] ; then
13 opt_run_untar $force_untar $auto_untar $package $version
14 opt_run_configure $force_config $auto_config $package $version $prefix --with-layout=Apache --enable-so --enable-rewrite --enable-proxy --with-included-apr
15
16 opt_run_make $compile $package $version
17 opt_run_make $install $package $version "install"
18 opt_run_make $clean $package $version "clean"
19 opt_run_make $distclean $package $version "distclean"
20
21 opt_run_tarclean $tarclean $package $version
22else
23 echo "Using Apache HTTPD that is provided externally to the extension at:"
24 echo " $APACHE_HTTPD_HOME"
25 echo ""
26fi
Note: See TracBrowser for help on using the repository browser.