Closed criesbeck closed 8 years ago
Although Allegro supports SSL, the free CL Express does not.
E.g., (drakma:http-request "https://docs-examples.firebaseio.com/rest/quickstart/users.json") gets an Enterprise SSL not supported error.
Replacing :allegro with (and :allegro (not :allegro-cl-express)) in drakma.asd and util.lisp seemed to fix the problem for me, but I was only able to test with MacOS, since I have a full Allegro on my Windows box
:allegro
(and :allegro (not :allegro-cl-express))
Can you submit a pull request?
First time doing this with a forked repo, so apologies if I did something stupid.
Although Allegro supports SSL, the free CL Express does not.
E.g., (drakma:http-request "https://docs-examples.firebaseio.com/rest/quickstart/users.json") gets an Enterprise SSL not supported error.
Replacing
:allegro
with(and :allegro (not :allegro-cl-express))
in drakma.asd and util.lisp seemed to fix the problem for me, but I was only able to test with MacOS, since I have a full Allegro on my Windows box