我尝试从源代码安装 subversion,但在 ./configure 上收到:
configure: error: no suitable apr found
我已经下载了 apr 源并安装:
libraries have been installed in:
/usr/local/apr/lib
所以我返回到 subversion 的配置,但收到相同的错误。我该做什么?谢谢。
答案1
配置 Subversion 时,尝试
./configure --with-apr=/usr/local/apr/
这可能不完全是正确的道路。尝试找到apr-config
并给出通往该目标的路径。我猜可能是:
./configure --with-apr=/usr/local/apr/bin/apr-config
尝试./configure --help
看看您有什么选择。他们有很多。
答案2
您是否尝试过包含 的路径LD_LIBRARY_PATH
?我不知道这是一个多好的选择,但是像这样简单的事情值得一试:
export LD_LIBRARY_PATH="${LD_LIBRARY_PATH}":/usr/local/apr/lib