In message <[EMAIL PROTECTED]>, didier Belot writes: >Using apache 1.3.33 with mod_ssl 2.8.22, i want to compile mod_perl 1.29 >as a >loadable module. > >here is the snippet related to mod_perl installation: > >perl Makefile.PL USE_APXS=1 \ > WITH_APXS=/usr/local/sbin/apxs \ > ENABLE_RULE=EAPI \ > EVERYTHING=1 >make >make install
If you build mod_ssl as a DSO, Apache apxs will automagically do the right thing. $ cd /tmp/mod_ssl-2.8.22-1.3.33 $ ./configure --with-apache=../apache_1.3.33 $ cd /tmp/apache_1.3.33 $ env SSL_BASE=/opt/openssl ./configure --prefix=/opt/apache \ --enable-module=most --enable-shared=max $ cd /tmp/mod_perl-1.29 $ /opt/apache/perl/bin/perl Makefile.PL USE_APXS=1 \ WITH_APXS=/opt/apache/bin/apxs EVERYTHING=1 John [EMAIL PROTECTED] -- Report problems: http://perl.apache.org/bugs/ Mail list info: http://perl.apache.org/maillist/modperl.html List etiquette: http://perl.apache.org/maillist/email-etiquette.html