chicken-users
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: openssl static compile issue


From: nemo1211
Subject: Re: openssl static compile issue
Date: Thu, 14 May 2020 15:21:09 -0400

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 <address@hidden> 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"

reply via email to

[Prev in Thread] Current Thread [Next in Thread]