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

Last change on this file since 23004 was 23004, checked in by sjm84, 14 years ago

Added a src dir to this extension

  • Property svn:executable set to *
File size: 721 bytes
Line 
1#!/bin/bash
2
3package=httpd
4version=-2.2.15
5
6progname=$0
7
8source ../cascade-make/lib/cascade-lib.bash
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
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.