Complete removal of mod_perl support.
authorshort <>
Thu, 16 Dec 2004 16:01:39 +0000 (16:01 +0000)
committershort <>
Thu, 16 Dec 2004 16:01:39 +0000 (16:01 +0000)
 - Used only by me (Lace) - I used Fedora httpd-2.x now anyway.

bin/vellumweb-build

index 01eb921..5e744cf 100755 (executable)
@@ -9,9 +9,7 @@ pkgs="
        openssl=openssl-0.9.7d
        modssl=mod_ssl-2.8.19-1.3.31
        php=php-4.3.6
-       modperl=mod_perl-1.29
        "
-with_perl=false
 export CFLAGS="-ggdb3"
 
 #-----------------------------------------------------------------------------
@@ -22,7 +20,6 @@ trap 'if $do_failed;then echo "FAILED FAILED FAILED!";fi' EXIT
 set -e
 eval "$pkgs"
 echo "$pkgs"|sed -n 's/=/ /p'|while read -r pkg pkgb;do
-       ! $with_perl && test $pkg = modperl && continue
          if test -f $arch/$pkgb.tar.gz ;then pkgarchext=.tar.gz ;z=z
        elif test -f $arch/$pkgb.tgz    ;then pkgarchext=.tgz    ;z=z
        elif test -f $arch/$pkgb.tar.bz2;then pkgarchext=.tar.bz2;z=j
@@ -66,25 +63,10 @@ pushd $php
        make install
 popd
 
-if $with_perl;then
-pushd $modperl
-       perl Makefile.PL APACHE_SRC=../$httpd DO_HTTPD=1 USE_APACI=1 PREP_HTTPD=1 EVERYTHING=1 \
-                       PERL_DEBUG=1
-       make
-#      make test       # requires running httpd!
-       make install UNINST=1
-popd
-fi
-
 pushd $httpd
        OPTIM="$CFLAGS" SSL_BASE="$PWD/../$openssl" ./configure --prefix=$prefix \
                        --enable-module=ssl \
                        --activate-module=src/modules/php4/libphp4.a \
-                       $(if $with_perl;then echo \
-                               --activate-module=src/modules/perl/libperl.a \
-                                               --disable-rule=EXPAT \
-                               ;fi
-                               ) \
                        --enable-module=so \
                        --enable-module=headers \
                        --enable-module=rewrite \