linux安装源码包出现apr错误,Linux源码安装Apchae时报错:error: APR not found.Please read the documentation....

配置的时候报错:

checking for APR... no

configure: error: APR not found . Please read the documentation

解决方法:

安装APR,下载所需软件包,如果此时计算机可以上网,执行命令下载文件:

wget http://archive.apache.org/dist/apr/apr-1.4.5.tar.gz

wget http://archive.apache.org/dist/apr/apr-util-1.3.12.tar.gz

wget http://jaist.dl.sourceforge.net/project/pcre/pcre/8.10/pcre-8.10.zip

APR not found问题:

tar -zxf apr-1.4.5.tar.gz

cd apr-1.4.5

./configure --prefix=/usr/local/apr

make && make install

APR-util not found问题:

tar -zxf apr-util-1.3.12.tar.gz

cd apr-util-1.3.12

./configure --prefix=/usr/local/apr-util -with-apr=/usr/local/apr/bin/apr-1-config --with-apr-util=/usr/local/apr-util

make && make install

pcre问题:

unzip -o pcre-8.10.zip

cd pcre-8.10

./configure --prefix=/usr/local/pcre

make && make install

如果检查配置的时候出现错误:

configure: error: no acceptable C compiler found in $PATH

安装GCC软件套件即可:yum install gcc

最后配置Apache:

./configure --prefix=/usr/local/httpd --enable-so --with-apr=/usr/local/apr --with-apr-util=/usr/local/apr-util/ --with-pcre=/usr/local/pcre

参考:

你可能感兴趣的:(linux安装源码包出现apr错误,Linux源码安装Apchae时报错:error: APR not found.Please read the documentation....)