Linux 安装APR

匿名 (未验证) 提交于 2019-12-02 21:56:30

 

 
Linux下解压缩
 
tar zxvf httpd-2.4.3.tar.gz 
 
编译安装
 
cd httpd-2.4.3
 
./configure
 
提示如下错误信息
 
configure: error: APR not found.  Please read the documentation.
 
解压缩,安装APR1.4.5
 
tar zxvf apr-1.4.5.tar.gz
 
cd apr-1.4.5
 
./configure
 
make
 
make install
 
再次编译
 
cd ..
 
cd httpd-2.4.3
 
./configure
 
提示如下错误信息
 
configure: error: APR-util not found.  Please read the documentation.
 
解压缩,安装APR-util
 
tar zxvf apr-util-1.4.1.tar.gz 
 
cd apr-util-1.4.1
 
./configure 
 
提示需要指定--with-apr参数
 
configure: error: APR could not be located. Please use the --with-apr option.
 
指定参数编译
 
./configure --with-apr=/usr/local/apr
 
make
 
make install
 
再次编译apache,成功
 
cd ..
 
cd httpd-2.4.3
 
./configure
 
make
 
make install
 
 
转载 http://blog.sina.com.cn/s/blog_6f74890d01019217.html
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!