我正在尝试使用 cygwin 将 rasqal 0.9.20 库http://librdf.org/rasqal/安装到 Windows 7 机器上。之前我已经成功安装了 raptor-2.2.0 库http://librdf.org/raptor/我可以使用安装后创建的说唱歌手工具来验证这一点(./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