标签:
Apache编译还需要一些依赖:
#./configure --prefix……检查编辑环境时出现:
checking for APR... no
configure: error: APR not found . Please read the documentation
解决办法:
1.下载所需软件包:
2.编译安装:
具体步骤如下:
a:解决apr not found问题>>>>>>
b:解决APR-util not found问题>>>>
c:解决pcre问题>>>>>>>>>
4.最后编译Apache时加上:
--with-apr=/usr/local/apr \
--with-apr-util=/usr/local/apr-util/ \
--with-pcre=/usr/local/pcre
成功编译完成~
具体可以参考:
http://xtony.blog.51cto.com/3964396/836508/
标签:
原文地址:http://www.cnblogs.com/bonjov1/p/4493869.html