sergot / openssl

OpenSSL bindings for Perl 6
MIT License
14 stars 31 forks source link

Where do the Windows SSL DDLs come from? #60

Open stmuk opened 6 years ago

stmuk commented 6 years ago

What's the origin of the Windows SSL DDLs ?

skinkade commented 6 years ago

Extraordinarily delayed response:

They are cross-compiled from a Linux machine. Copied from #23:

wget ftp://ftp.openssl.org/source/openssl-1.0.2g.tar.gz
tar xf openssl-1.0.2g.tar.gz; cd openssl-1.0.2g
CROSS_COMPILE="x86_64-w64-mingw32-" ./Configure mingw64 no-asm shared
make depend
make

Adjust for version number and check signature, but that's the gist.