为什么CCL无法加载hunchentoot?

z_a*_*xis 4 hunchentoot ccl

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
Run Code Online (Sandbox Code Playgroud)

任何建议表示赞赏!

Luk*_*ili 7

如果你不需要ssl(或者将使用Apache),你可以

(push :hunchentoot-no-ssl *features*)
Run Code Online (Sandbox Code Playgroud)

然后

(ql:quickload 'hunchentoot)
Run Code Online (Sandbox Code Playgroud)