0

rasqal 0.9.20 ライブラリ http://librdf.org/rasqal/ を cygwin を使用して Windows 7 マシンにインストールしようとしてます。インストール後に作成されたラッパーツールでこれを確認できます(./configure、./make、/make install)

rasqal の構成から得られるエラーは次のとおりです。

    ./configure --enable-raptor2  
...  
    checking for raptor... configure: error: Raptor2 is not installed - see http://librdf.org/raptor/ to get a version newer than 1.9.0

私はそれを修正する方法を見つけることができません。このフラグを処理する cofigure ファイルのコードは次のとおりです。

11840 # raptor is REQUIRED despite the checking here
11841 RAPTOR_MIN_VERSION=1.4.19
11842 RAPTOR_MAX_VERSION=1.8.99
11843 RAPTOR2_MIN_VERSION=1.9.0
11844
11845 raptor2=no
11846 # Check whether --enable-raptor2 was given.
11847 if test "${enable_raptor2+set}" = set; then :
11848   enableval=$enable_raptor2; raptor2="$enableval"
11849 else
11850   raptor2="no"
11851 fi
4

2 に答える 2

0

Raptor 2.0.0はpkg-config、構成情報を提供するためにのみ使用され、raptor-config削除されました。同じことがrasqal自体にも当てはまり、rasqal-configプログラムはある時点で終了します。rasqalとlibrdfの--enable-raptor2オプションは、ベータraptor2をテストするためのものであり、rasqal0.9.22とlibrdfGITヘッドから削除されました。

于 2011-01-21T11:05:17.720 に答える
0

正しいパスが含まれるように PKG_CONFIG_PATH を設定します。

env PKG_CONFIG_PATH=/usr/local/lib/pkgconfig ./configure

システムで利用可能な場合、別の方法として、/etc/environment で環境変数を定義します。

PKG_CONFIG_PATH=/usr/local/lib/pkgconfig
于 2014-01-29T12:43:56.283 に答える