Using easy-ssl-acceptor in LispWorks

136 Views Asked by At

I want to use Hunchentoot's easy-ssl-acceptor in LispWorks. However, I see that this class of acceptor has the following feature syntax #-:hunchentoot-no-ssl.

This feature is indeed present in my *features* list, so I cannot use this class. What is the problem here? Why was :hunchentoot-no-ssl added to my *features*? How can I resolve this so that I can use the easy-ssl-acceptor class?

PS: I am on macOS 10.13 using LispWorks 7.1.

1

There are 1 best solutions below

0
On

It is unclear how this feature got into your *features*, but the simplest thing to do in this case is to remove it from *features* manually and then force-rebuild Hunchentoot:

* (alexandria:removef *features* :hunchentoot-no-ssl)
* (asdf:load-system :hunchentoot :force t)