I am trying to build httpd using DSO and mod_perl, mod_ssl
and mod_php (but that one hasn't come up yet)
I'm on an unpatched RedHat 6.1 with a newly built 5.6.0 perl
(egcs 2.91.66) with mod_perl from CVS and mod_ssl-2.6.3-1.3.12
for apache_1.3.12
I didn't get ANY errors doing the configuration and makes!
apachectl start results in "httpd could not ne started"
This is my build procedure
SSL stage all done according to mod_ssl-2.6.3-1.3.12/INSTALL
:standard rsaref-2.0 worked perfectly
:open_ssl-2.6.3-1.3.12
sh config -L`pwd`/../rsaref-2.0/local -fPIC worked fine
:optional mm-1.0.12 installed
:./configure --with-apache=/usr/local/apache
MODPERL stage:
: perl Makefile.PL EVERYTHING=1 PERL_TRACE=1 \
APACHE_SRC=../apache_1.3.12/src PREP_HTTPD=1 DO_HTTPD=1\
SSL_BASE=../mod_ssl-2.6.3-1.3.12 USE_DSO=1
: make
: make install
APACHE stage:
: SSL_BASE=../mod_ssl-2.6.3-1.3.12 CC=/usr/bin/gcc \
RSA_BASE=../rsaref-2.0/local EAPI_MM=../mm-1.0.12 \
./configure --prefix=/usr/local/apache \
--enable-module=most --enable-shared=all \
--enable-module=ssl --enable-shared=ssl \
--disable-rule=SSL_COMPAT --enable-rule=SSL_SDBM
--enable-rule=SHARED_CORE
: make
: make certificate TYPE=custom
: make install
During this whole thing I didn't get a single error :)
:httpd -l
http_core.c
mod_so.c
Did I miss something with APXS?
Thanks everyone. Peace.