关于mod-perl的问题
#cd /usr/local/mod_perl-1.29
#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’
#cd /usr/local/apache_1.3.29
#./configure ––prefix=/www––activate-module=src/modules/perl/libperl.a ––enable-module=so
哪位高手能告诉我这几句话是在做什么?
mod-perl是做什么用的?
谢谢了.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
#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