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
任何建议表示赞赏!
最佳答案
如果您不需要ssl(或将使用Apache),则可以
(push :hunchentoot-no-ssl *features*)
然后
(ql:quickload 'hunchentoot)