Software-Installation

如何使 apr 可用於 subversion 安裝?

  • August 19, 2016

我嘗試從原始碼安裝顛覆,但在 ./configure 上接收:

configure: error: no suitable apr found

我已經下載了 apr 源並安裝了:

libraries have been installed in:
/usr/local/apr/lib

所以我返回配置顛覆,但收到同樣的錯誤。我該做什麼?謝謝。

配置 Subversion 時,嘗試

./configure --with-apr=/usr/local/apr/

那可能不是完全正確的道路。嘗試找到apr-config並給出路徑。我猜可能是:

./configure --with-apr=/usr/local/apr/bin/apr-config

試著./configure --help看看你的選擇是什麼。他們有很多。

您是否嘗試過包含路徑LD_LIBRARY_PATH?我不知道這是一個多麼好的選擇,但是像這樣簡單的事情值得一試:

export LD_LIBRARY_PATH="${LD_LIBRARY_PATH}":/usr/local/apr/lib

引用自:https://unix.stackexchange.com/questions/41910