Hi Vasilij and Peter, It looks like my linking attempt was correct, but I needed to import openssl prior to http-client first as Vasilij suspected. That is, both steps are needed.
Thank you both! Nick On Tue, May 12, 2020 at 4:30 PM Vasilij Schneidermann <[email protected]> wrote: > Hello Peter, > > I've experimented a bit and found it's a matter of shuffling the imports > around. Here's an example: > > (import scheme) > (import (chicken base)) > (import (chicken io)) > (import openssl) ; HACK: this must precede the http-client import > (import http-client) > > (with-input-from-request "https://en.wikipedia.org/wiki/Cat" #f > read-string) > > Vasilij > -- "Eppur si muove"
