Apache安装问题:configure: error: APR not found . Please read the documentation: Linux上安装Apache时,编译出现错误: checking for APR... no configure: error: APR not found . Please read the documentation 安装APR,下载所需软件包,如果此时计算机可以上网,执行命令下载文件: wget http://archive.apache
一.编译安装apache 1.解决依赖关系 httpd-2.4.4需要较新版本的apr和apr-util,因此需要事先对其进行升级.升级方式有两种,一种是通过源代码编译安装,一种是直接升级rpm包.这里选择使用编译源代码的方式进行,它们的下载路径http://apr.apache.org/ (1) 编译安装apr # tar xf apr-1.4.6.tar.bz2# cd apr-1.4.6# ./configure --prefix=/usr/local/lamp/apr# make &&am