#!/bin/sh
apr_tar_gz=`ls |grep -e "apr-[0-9]*\.[0-9]*\.[0-9]*\.tar\.gz"`
apr_util_tar_gz=`ls |grep -e "apr-util-[0-9]*\.[0-9]*\.[0-9]*\.tar\.gz"`
apr=`basename $apr_tar_gz .tar.gz`
apr_util=`basename $apr_util_tar_gz .tar.gz`
httpd=`basename httpd-*.tar.gz .tar.gz`
pcre=`basename pcre-*.tar.gz .tar.gz`
echo $apr
echo $apr_util
echo $pcre
echo $httpd
tar xzf $apr.tar.gz
tar xzf $apr_util.tar.gz
tar xzf $pcre.tar.gz
tar xzf $httpd.tar.gz
mv $apr $httpd/srclib/apr
if test $? -ne 0; then
exit 1
fi
mv $apr_util $httpd/srclib/apr-util
if test $? -ne 0; then
exit 1
fi
cd $pcre
./configure --prefix=/usr/local/pcre
make
if test $? -ne 0; then
exit 1
fi
make install
if test $? -ne 0; then
exit 1
fi
cd ../$httpd
./configure --prefix=/usr/local/httpd --with-pcre=/usr/local/pcre
if test $? -ne 0; then
exit 1
fi
make
if test $? -ne 0; then
exit 1
fi
make install
if test $? -ne 0; then
exit 1
fi
echo "finished"
cd /usr/local/httpd/conf