Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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!

like image 323
z_axis Avatar asked Dec 28 '22 08:12

z_axis


1 Answers

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

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

and then

(ql:quickload 'hunchentoot)
like image 103
Luka Ramishvili Avatar answered May 17 '23 08:05

Luka Ramishvili