我第一次在 ubuntu 12.04 中安装 Apache,我在链接 Compiling and installing apache 中查找
它说我们应该先有 APR 和 APR-util 我按照程序把它们解压成/usr/local/srclib/apr
和 /usr/local/srclib/apr-util
目录。
每一个写的地方
./configure's --with-included-apr
现在我只是在
./configure
中执行 /usr/local/srclib/apr
之后我在 ./configure
中执行 /usr/local/srclib/apr-util
然后它抛出我错误 configure: error: APR could not be located. Please use the --with-apr option.
然后我添加
/configure --with-apr
它会引发错误error: --with-apr requires a directory or file to be provided.
请告诉我我在这里做错了什么
最佳答案
尝试运行这个:./configure --with-apr=<directory path where apr is installed>
例如:如果您的 APR 安装存在于 /usr/local/apr
(APR 的默认安装位置),您应该运行:./configure --with-apr=/usr/local/apr
关于Apache Apr 和 Apr-util 安装?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/23260365/