This is a simple cut and paste file for those persons who have installed apache prior to 06-29-02 
and wish to upgrade the core Apache, Mod_perl, Mod_SSL & PHP programs.

Comments welcome via email!  kevin@mcgrail.com

cd /tmp/
rm -rf /tmp/062902/
mkdir 062902
cd 062902
wget http://www.peregrinehw.com/downloads/apache/devel/apache_1.3.26.tar.gz
wget http://www.peregrinehw.com/downloads/apache/devel/mod_perl-1.27.tar.gz
wget http://www.peregrinehw.com/downloads/apache/devel/mod_ssl-2.8.10-1.3.26.tar.gz
wget http://www.peregrinehw.com/downloads/apache/devel/php-4.2.1.tar.gz

cd /usr/src
rm -rf apache_1.3.2*
rm -rf mod_ssl-2.8*
rm -rf mod_perl-1.2*
rm -rf php-4.*

tar zxvf /tmp/062902/apache_1.3.26.tar.gz 
tar zxvf /tmp/062902/mod_ssl-2.8.10-1.3.26.tar.gz
tar zxvf /tmp/062902/php-4.2.1.tar.gz
tar zxvf /tmp/062902/mod_perl-1.27.tar.gz  

cd mod_ssl-2.8.10-1.3.26/
./configure --with-apache=../apache_1.3.26 --with-ssl=../openssl-0.9.6a  --with-mm=../mm-1.1.3

cd /usr/src/php-4.2.1/
./configure --with-apache=/usr/src/apache_1.3.26/ --with-mysql=/usr/local/mysql/
make -j3
make install

cd /usr/src/mod_perl-1.27/
perl Makefile.PL EVERYTHING=1 APACHE_SRC=../apache_1.3.26/src/ USE_APACI=1 PREP_HTTPD=1 DO_HTTPD=1
make -j3
make install

cd /usr/src/apache_1.3.26/
LIBS=-lz SSL_BASE=/usr/local/ssl EAPI_MM=SYSTEM ./configure --enable-module=ssl --activate-module=src/modules/perl/libperl.a --enable-module=perl --enable-module=expires --enable-module=usertrack --enable-module=rewrite --activate-module=src/modules/php4/libphp4.a
make -j3
make install
/etc/rc.d/init.d/apachectl stop
*wait and check for apache processes*
/etc/rc.d/init.d/apachectl start
rm -rf /tmp/062902/
