[Chicken-users] Non printable characters in call history

2014-10-07 Thread Sascha Ziemann
Hi, Chicken prints non printable characters in its call history: syntax (string-blob405 �x\x1e�`�ռ�UF���~F) My terminal crashed just because of this. Is it the intended behavior? Or can I change this by myself? Regards, Sascha ___

[Chicken-users] How to compile with openssl?

2014-10-07 Thread Sascha Ziemann
Hi, I have a small program talking XML-RPC over HTTPS. When I run it with csi it works fine: $ csi -s domrobot.scm 127.0.0.1 Record updated. But when I try the compiled version I get an error: $ csc domrobot.scm $ ./domrobot 127.0.0.1 Error: (ssl-connect) Unable to connect over HTTPS. To fix

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

2014-10-07 Thread Christian Kellermann
Sascha Ziemann cev...@gmail.com writes: This are the modules I use: (use http-client uri-common uuid xml-rpc-client blowfish) Does it work, when you add openssl here also? Cheers, Christian -- May you be peaceful, may you live in safety, may you be free from

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

2014-10-07 Thread Sascha Ziemann
2014-10-07 13:45 GMT+02:00 Christian Kellermann ck...@pestilenz.org: * Sascha Ziemann cev...@gmail.com [141007 13:37]: The binary is not linked against Openssl: $ ldd domrobot linux-gate.so.1 = (0xb7793000) libchicken.so.6 = /usr/lib/libchicken.so.6 (0xb7402000)

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

2014-10-07 Thread Peter Bex
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)

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

2014-10-07 Thread Sascha Ziemann
2014-10-07 13:48 GMT+02:00 Peter Bex peter@xs4all.nl: 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

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

2014-10-07 Thread Arthur Maciel
Sascha, putting (use openssl) in your code makes any difference? Best wishes, Arthur 2014-10-07 9:16 GMT-03:00 Sascha Ziemann cev...@gmail.com: 2014-10-07 13:48 GMT+02:00 Peter Bex peter@xs4all.nl: You'll need to ensure that openssl is available to the application. Like the error

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

2014-10-07 Thread Kristian Lein-Mathisen
Hi Sascha, which CHICKEN version are you using? There is a bug in some older versions where you need to specify (use chicken-syntax) for it work in compiled modules. Does that help? K. On Tue, Oct 7, 2014 at 2:25 PM, Arthur Maciel arthurmac...@gmail.com wrote: Sascha, putting (use openssl)

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

2014-10-07 Thread Sascha Ziemann
2014-10-07 14:28 GMT+02:00 Kristian Lein-Mathisen kristianl...@gmail.com: which CHICKEN version are you using? It is the one which comes with Debian stable: 4.7.0-1 There is a bug in some older versions where you need to specify (use chicken-syntax) for it work in compiled modules. Does

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

2014-10-07 Thread Christian Kellermann
* Sascha Ziemann cev...@gmail.com [141007 15:11]: 2014-10-07 14:28 GMT+02:00 Kristian Lein-Mathisen kristianl...@gmail.com: which CHICKEN version are you using? It is the one which comes with Debian stable: 4.7.0-1 There is a bug in some older versions where you need to specify

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

2014-10-07 Thread Sascha Ziemann
2014-10-07 15:23 GMT+02:00 Christian Kellermann ck...@pestilenz.org: If you can please consider upgrading, 4.7.0 is horribly out of date and tons of bugs have been fixed in the meantime. With the two non obvious lines: (use chicken-syntax) (begin-for-syntax (require-extension blowfish))