Search code examples
hunchentootccl

Why cannot CCL load hunchentoot?


SBCL can load hunchentoot successfully. However, the CCL reported:

? (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

Any suggestion is appreciated!


Solution

  • If you don't need ssl (or will use Apache for this), you can

    (push :hunchentoot-no-ssl *features*)
    

    and then

    (ql:quickload 'hunchentoot)