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