Next, install the Perl side of mod_perl into the Perl hierarchy and
prepare the src/modules/perl/ subdirectory
inside the Apache source tree:
panic% cd mod_perl-1.xx
panic% perl Makefile.PL \
APACHE_SRC=../apache_1.3.xx/src \
NO_HTTPD=1 \
USE_APACI=1 \
PREP_HTTPD=1 \
EVERYTHING=1 \
[...]
panic% make
panic# make install
The APACHE_SRC option sets the path to your Apache
source tree, the NO_HTTPD option forces this path
and only this path to be used, the USE_APACI
option triggers the new hybrid build environment, and the
PREP_HTTPD option forces preparation of the
$APACHE_SRC/modules/perl/ tree but no automatic
build.
This tells the configuration process to prepare the Apache side of
mod_perl in the Apache source tree, but doesn't
touch anything else in it. It then just builds the Perl side of
mod_perl and installs it into the Perl installation hierarchy.
Note that if you use PREP_HTTPD as described
above, to complete the build you must go into the Apache source
directory and run make and make
install.