Vincent Bruijnes wrote:
Dear mod_perl users.

Is it possible to have an apache with --enable-shared=max and mod_perl
statically linked?
If yes please tell me how to do, i need mod_perl statically cause otherwise
my Apache::ASP won't work.

Sincerely Vincent Bruijnes
[EMAIL PROTECTED]

Yes, I do it in SunOS 5.6, and it should works elsewhere.

$ cd mod_perl-1.24
$ perl Makefile.PL \
     APACHE_SRC=../apache_1.3.X/src \
     DO_HTTPD=1 \
     USE_APACI=1 \
     PREP_HTTPD=1 \
     EVERYTHING=1 \
$ make
$ make install
$ cd ../apache_1.3.X/src
$ ./configure --prefix=/data/apache --activate-module=src/modules/perl/libperl.a --enable-module=all --enable-shared=max --disable-module=auth_db --disable-shared=perl
$ make
$ make install
 
 

Reply via email to