私はraptor-2.2.0ライブラリhttp://librdf.org/raptor/を正常にインストールしました。インストール後にラッパーツールでこれを確認することができます。私はそれを修正する方法を見つけることができませんrasqalの設定がcygwin上のraptorライブラリを認識できないのはなぜですか?
./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
:/私はrasqalの設定から取得していますエラーがある)./make、/ make installを、
を設定します。このフラグを扱う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
私はバグを発見しました。私は/ usr/lib/pkgconfigの下にraptor.pcファイルをコピーしました。 – curious
それは良い考えではありません。適切な場所に物事をインストールするには、configure --prefix =/usrを使用してください。詳細は、INSTALL.htmlのドキュメントを参照してください。 – dajobe