Cannot use an external APR with the bundled APR-util

Cannot use an external APR with the bundled APR-util


apache2.0.x与apache2.2.x在apr上有本质的区别,前者为依赖公用apr,后者依赖于自身的apr
一般前者也就是2.0.x的编译基本上没有apr方面的问题,除非,在编译前,安装了非2.0.x所需的apr,如果是这样,则需要将已经安装的apr去除,然后再编译。
如果是后者也出现关于apr的问题,则将安装前的apr去除后,在编译apache2.2.x自身的apr,在srclib目录中。

cd httpd-2.2.3
安装APR
cd srclib/apr

#./configure --prefix=/路径/apr
#make
#make install

安装APR-util
cd srclib/apr-util

#./configure --prefix=/路径/apr-util --with-apr=/路径/apr

#make
#make install

然后再configure apache

注意的是 在参数上一定要指定路径 --with-apr=/路径/apr --with-apr-util=/路径/apr-util

#make

#make install

相关链接: http://blog.sina.com.cn/s/blog_5732927a0100056j.html

你可能感兴趣的:(with,use,apr,external,apr-util,cannot,the,An,bundled)