Re: How to compile an EAPI compliant DSO module ?
[prev]
[thread]
[next]
[Date index for 2004/12/29]
In message <41D19CA4.3040907@xxxxxxxxxxxxxxxxx.xxx>, 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
groenveld@xxx.xxx
--
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
 |
 |
Re: How to compile an EAPI compliant DSO module ?
John D Groenveld 20:30 on 29 Dec 2004
|