ubuntu-ソースからsubversionをインストール-4月がありません


9

Ubuntuのリポジトリバージョンのsubversionでは利用できないバグ修正が必要なため、ソースからインストールしています。

を実行する./configureと、エラーが発生します。

configure: WARNING: APR not found
The Apache Portable Runtime (APR) library cannot be found.
Please install APR on this system and supply the appropriate
--with-apr option to 'configure'

or

get it with SVN and put it in a subdirectory of this source:

   svn co \
    http://svn.apache.org/repos/asf/apr/apr/branches/1.2.x \
    apr

Run that right here in the top level of the Subversion tree.
Afterwards, run apr/buildconf in that subdirectory and
then run configure again here.

Whichever of the above you do, you probably need to do
something similar for apr-util, either providing both
--with-apr and --with-apr-util to 'configure', or
getting both from SVN with:

   svn co \
    http://svn.apache.org/repos/asf/apr/apr-util/branches/1.2.x \
    apr-util

configure: error: no suitable apr found

ノート:

1)すでにlibapr1をインストールしています

2)エラーメッセージの指示に従って、svnクライアントをインストールできません(apt-get install svn-パッケージが見つかりません-sources.listにmain、universe、restricted、multiverseがあります)

回答:


14

ライブラリに依存するプログラムをコンパイルするには、通常、開発者パッケージが必要です。あなたの状況では、次のことを行う必要がありますapt-get install libapr1-dev。そして、で繰り返すことを忘れないでくださいapt-get install libaprutil1-dev


ありがとう。これはうまくいきました。別のエラーが発生しました。たまたま、これのパッケージを知っていますか?(グーグルで検索しましたが、apt-getパッケージが見つかりませんでした)...............................設定:警告:APRUTILが見つかりませんApache Portable Runtime Utility(APRUTIL)ライブラリが見つかりません。このシステムにAPRUTILをインストールして、適切なものを供給してください
tanon

1
libaprutil1-devというパッケージを同じようにインストールします
slubman
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.