Ignore:
Timestamp:
2010-06-04T15:18:02+12:00 (14 years ago)
Author:
sjm84
Message:

Added the cascade make external

Location:
gs2-extensions/gsdl-amp/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • gs2-extensions/gsdl-amp/trunk

    • Property svn:externals set to
  • gs2-extensions/gsdl-amp/trunk/packages/CASCADE-MAKE/APACHE-PASS1.sh

    r16729 r22234  
    11#!/bin/bash
    22
    3 package=apache
    4 version=_1.3.41
     3package=httpd
     4version=-2.2.15
    55
    66progname=$0
     
    1111prefix=$GEXTAMP_INSTALLED
    1212
    13 opt_run_untar $force_untar $auto_untar $package $version
    14 opt_run_configure $force_config $auto_config $package $version "$prefix" \
    15   --with-layout=Apache
     13if [ $COMPILE_UP_APACHE_HTTPD = "1" ] ; then
     14  opt_run_untar $force_untar $auto_untar $package $version
     15  opt_run_configure $force_config $auto_config $package $version "$prefix" \
     16    "--with-layout=Apache \
     17     --enable-so"
    1618
     19  opt_run_make $compile   $package $version
     20  opt_run_make $install   $package $version "install"
     21  opt_run_make $clean     $package $version "clean"
     22  opt_run_make $distclean $package $version "distclean"
    1723
    18 
    19 
    20 
     24  opt_run_tarclean $tarclean $package $version
     25else
     26  echo "Using Apache HTTPD that is provided externally to the extension at:"
     27  echo "  $APACHE_HTTPD_HOME"
     28  echo ""
     29fi
Note: See TracChangeset for help on using the changeset viewer.