0
APACHE 安装出错 configure: error: Cannot use an external APR with the bundled APR-util
Posted in Linux at 二月 18th, 2011 / No Comments »
configure: error: Cannot use an external APR with the bundled APR-util
根据错误信息进行解决
安装apr和apr-util
http://apr.apache.org上面有这些源码包自己编译安装
tar xzvf apr-1.2.9.tar.gz
cd apr-1.2.9
./configure –prefix=/usr/local/apr
make
make install
tar xzvf apr-util-1.2.8.tar.gz
cd apr-util-1.2.8
./configure –prefix=/usr/local/apr-util –with-apr=/usr/local/apr
make
make install
接下来安装apache
./configure –prefix=/usr/local/apache2 –enable-so –enable-mods-shared=all –enable-cgi –enable-rewrite–enable-deflate –enable-headers –with-apr=/usr/local/apr –with-apr-util=/usr/local/apr-util –with-mpm=worker
make
make install
安装将不再出错
http://blog.163.com/hancker_31/blog/static/3558736120101130355787/