- 论坛徽章:
- 0
|
#perl Makefile.PL APACHE_SRC=../apache_1.3.29/src DO_HTTPD=1 USE_APACI=1 EVERYTHING=1 APACHE_PREFIX=/www APACI_ARGS=’--prefix=/www --with-layout=Apache’
和configure相同,是初始配置参数
设置apache1329的src的路径
To avoid this prompt and default to the first apache source tree found
to configure and build against, use the following command:
perl Makefile.PL DO_HTTPD=1
APACHE_PREFIX=/www 路径
apache的args所在路径的定位
======================================================
#./configure ––prefix=/www––activate-module=src/modules/perl/libperl.a ––enable-module=so
配置apache的"安装到"的路径,和openssl有区别 , --activate-module 设置添加的额外模块 --enable-module=so 如果没记错是开启所有模块,即所有模块省略#
=======================================================
mod-perl是做什么用的?
自己查google |
|