SBCL可以成功加载hunchentoot。然而,CCL报道:
? (ql:quickload :hunchentoot)
To load "hunchentoot":
Load 1 ASDF system:
hunchentoot
; Loading "hunchentoot"
> Error: Unable to load any of the alternatives:
> ("libssl.so.0.9.8" "libssl.so" "libssl.so.4")
> While executing: CFFI::FL-ERROR, in process listener(1).
> Type :POP to abort, :R for a list of available restarts.
> Type :? for other options.nter code here
任何建议都表示赞赏!
答案 0 :(得分:7)
如果您不需要ssl(或者将使用Apache),您可以
(push :hunchentoot-no-ssl *features*)
然后
(ql:quickload 'hunchentoot)
答案 1 :(得分:3)
它正在寻找您没有的SSL库版本。一个简单的方法来纠正它(我没有测试过库本身的正确行为)是象征性的连接它。在shell中运行它们:
locate libssl
应该返回类似的内容:
/lib/i386-linux-gnu/libssl.so.1.0.0
/lib/x86_64-linux-gnu/libssl.so.1.0.0
/usr/lib/firefox-8.0/libssl3.so
/usr/lib/i386-linux-gnu/libssl.so.1.0.0
/usr/lib/thunderbird-8.0/libssl3.so
/usr/lib/x86_64-linux-gnu/libssl.so
/usr/lib/x86_64-linux-gnu/libssl.so.1.0.0
/usr/lib/x86_64-linux-gnu/libssl3.so
/usr/lib/x86_64-linux-gnu/libssl3.so.1d
您想要的那个肯定是 / usr / lib / x86_64-linux-gnu ,或类似的,具体取决于您的平台。
然后创建符号链接:
ln -s libssl3.so libssl.so
将libssl3.so替换为您已安装的版本。