I'm trying to install from source apache + mod_perl + mod_ssl.
I couldn't make it following the steps of INSTALL.simple.mod_ssl
I also tried with the online guide unsuccessfully.

Anyway here is how I did it step by step:

cd mod_ssl*
./configure --with-apache=../apache_1.3.28
cd ..

cd apache_*
./configure
cd ..

cd mod_perl*
perl Makefile.PL APACHE_SRC=../apache_1.3.28/src NO_HTTPD=1 \
    USE_APACI=1 PREP_HTTPD=1 EVERYTHING=1
make
cd ..

cd apache_*
./configure --prefix=/usr/local/apache \
        --activate-module=src/modules/perl/libperl.a \
        --activate-module=src/modules/ssl/libssl.a \
        --enable-module=rewrite
make && make install



Reply via email to