On Tue, 07 Dec 1999, you wrote:
> Hi,
> Does any body in here ever try to combain:
> apache 1.3.9 + mod_ssl2.4.9-1.3.9 + openssl-0.9.4 + php-3.0.12
> and success ?
> Can I get more info how to do that ?
> 
> Thanks a lot
> 
> 
> ______________________________________________________________________
> Apache Interface to OpenSSL (mod_ssl)                   www.modssl.org
> User Support Mailing List                      [EMAIL PROTECTED]
> Automated List Manager                            [EMAIL PROTECTED]


I have not done the exact releases you mention, but I worte a script and have
successfully used it for several versions. In each case the only change I had
to make was in the version numbers. For what its worth, here it is:


------------ Clip -----------------
#! /bin/sh
echo
echo "Entering openSSL"
echo

cd openssl-0.9.2b

echo
echo "Cleaning OpenSSL"
echo
make clean

echo
echo "Configuring OpenSSL"
echo
make -f Makefile.ssl links
perl ./Configure linux-elf

echo
echo "Making OpenSSL"
echo
make

echo
echo "Testing OpenSSL"
echo
make test

echo
echo "Leaving openSSL"
echo
cd ..

echo
echo "Entering mod_ssl"
echo
cd mod_ssl-2.2.7-1.3.6

echo
echo "Cleaning mod_ssl"
echo
make clean

echo
echo "Configuring mod_ssl"
echo
./configure \
---with-apache=../apache_1.3.6 \
--with-ssl=../openssl-0.9.2b \
--enable-shared=ssl \
--disable-rule=SSL_COMPAT \
--enable-rule=SSL_SDBM

echo
echo "Leaving mod_ssl"
echo
cd ..

echo
echo "Entering apache to pre-configure"
echo
cd apache_1.3.6

echo
echo "Pre-configuring apache"
echo
./configure --prefix=/web

echo
echo "Leaving apache"
echo
cd ..

echo
echo "Entering php"
echo
cd php-3.0.7

echo
echo "Configuring php"
echo
CFLAGS='-O2 -I/usr/local/ssl/include' \
./configure \
---with-postgres \
--with-shared-apache=../apache_1.3.6 \
--enable-track-vars \
--enable-memory-limit=yes \
--enable-debug=no

echo
echo "Making php"
echo
gmake

echo
echo "Installing php"
echo
gmake install

echo
echo "Leaving php"
echo
cd ..

echo
echo "Entering apache"
echo
cd apache_1.3.6

echo
echo "Configuring apache"
echo
SSL_BASE="/usr/local/ssl" \
./configure \
""--prefix=/web" \
"--exec-prefix=/usr/local" \
"--bindir=/usr/local/bin" \
"--sbindir=/usr/local/sbin" \
"--libexecdir=/usr/local/libexec" \
"--mandir=/usr/local/man" \
"--sysconfdir=/etc/apache" \
"--datadir=/web" \
"--includedir=/usr/local/include+" \
"--localstatedir=/var" \
"--runtimedir=/var/run" \
"--logfiledir=var/log" \
"--proxycachedir=/var/proxy" \
"--enable-module=most" \
"--enable-shared=max" \
"--enable-shared=ssl" \
"--activate-module=src/modules/php3/libphp3.a" \
"--enable-shared=php3" \
"--enable-shared=info" \
"--enable-shared=rewrite" \
"$@"

echo
echo "Making apache"
echo
make

exit

------------------ Clip ----------------------
______________________________________________________________________
Apache Interface to OpenSSL (mod_ssl)                   www.modssl.org
User Support Mailing List                      [EMAIL PROTECTED]
Automated List Manager                            [EMAIL PROTECTED]

Reply via email to