Re: openssl static compile issue

2020-05-12 Thread Vasilij Schneidermann
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)

Re: openssl static compile issue

2020-05-12 Thread Peter Bex
On Tue, May 12, 2020 at 03:07:34PM -0400, nemo1...@gmail.com wrote: > csc -static filename.scm -L -lssl -L -lcrypto > > which removes all errors and allows the code to compile. However, when ran > the compiled code generates the following http-client egg error: > > "Unable to connect over HTTPS.

openssl static compile issue

2020-05-12 Thread nemo1211
Hello all, Updating a project to Chicken 5 and discovered the following problem (seems to be an issue with the openssl egg). The code runs fine in interpreted mode (with csi -s) and can be compiled successfully with `csc filename.scm`. However, the project is distributed in precompiled form, so