Christian Bartolomäus

Results 67 comments of Christian Bartolomäus

I stumbled upon this old issue and tried to reproduce it with current versions of Debian and Rakudo. Everything worked fine, though. My steps: ``` host# mkdir -p /opt/chroot/bullseye host#...

Just for the referencen there is a similar issue for Rakudo: also https://github.com/rakudo/rakudo/issues/4291

I tried out the patch and I'm afraid it doesn't really work as intended. For me (on FreeBSD 12.4) the socket files are created in the directory where I start...

Alternative PR: https://github.com/Raku/roast/pull/829

I've hit the same problem on Debian 10 (buster) that comes with openssl (and libssl) 1.1.1d. I've used [rakudo-pkg](https://nxadm.github.io/rakudo-pkg/) for this installation. ``` $ raku --version Welcome to Rakudo(tm) v2021.05....

That was spot on: ``` $ git clone https://github.com/sergot/openssl.git $ cd openssl $ sudo apt -y remove libssl-dev $ zef install . [...] [OpenSSL] Cannot locate native library 'libssl.so': libssl.so:...

Unfortunately the new version 0.1.25 (with the patch from https://github.com/sergot/openssl/commit/72ce2495b6) fails to install for me even with ```libssl-dev``` available: ``` $ sudo apt -y install libssl-dev [...] $ git clone...

I don't know if this is helpful, but adding a ```no precompilation``` at the top of ```lib/OpenSSL/Stack.pm6``` seems to make the original problem go away. My next thought was: That's...

This is weird. It looks like the new problem (```Unable to read key``` in OpenSSL::RSATools) goes away randomly. I just tried to run ```zef install .``` a couple of times...

I've opened a separate issue for the new problem: https://github.com/sergot/openssl/issues/87