chicken-users
[Top][All Lists]
Advanced

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

Re: [Chicken-users] How to compile with openssl?


From: Peter Bex
Subject: Re: [Chicken-users] How to compile with openssl?
Date: Tue, 7 Oct 2014 13:48:22 +0200
User-agent: Mutt/1.4.2.3i

On Tue, Oct 07, 2014 at 01:19:55PM +0200, Sascha Ziemann wrote:
> I tried to load all directly imported modules and also the indirectly
> imported openssl module before compilation:
> 
> (begin-for-syntax
>  (require-extension openssl)
>  (require-extension http-client)
>  (require-extension uri-common)
>  (require-extension uuid)
>  (require-extension xml-rpc-client)
>  (require-extension blowfish))
> 
> But this does not help.

It may be "indirectly" imported, but it needs to load it at runtime,
because that's when the SSL connection is made.  You do not even need
to (use ..) it or (require-library ..) it; http-client attempts to do
that at runtime.

You'll need to ensure that openssl is available to the application.
Like the error message says, all you need to do is ensure that it's
installed and it'll work.  If you're using -deploy, make sure that you
add the egg to your application bundle.  If you're using a custom egg
repository, ensure that openssl is in there.

Cheers,
Peter
-- 
http://www.more-magic.net



reply via email to

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