openssl
openssl copied to clipboard
Where do the Windows SSL DDLs come from?
What's the origin of the Windows SSL DDLs ?
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.