windows openssl, libtls: Use the libressl dlls for SSL.
http://ftp.openbsd.org/pub/OpenBSD/LibreSSL/ http://downloads.factorcode.org/dlls/ libcrypt-37.dll libssl-38.dll libtls-10.dlldb4
parent
7488e54825
commit
a4804621af
|
@ -11,7 +11,7 @@ alien.syntax classes.struct combinators system ;
|
|||
IN: openssl.libcrypto
|
||||
|
||||
<< "libcrypto" {
|
||||
{ [ os windows? ] [ "libeay32.dll" ] }
|
||||
{ [ os windows? ] [ "libcrypto-37.dll" ] }
|
||||
{ [ os macosx? ] [ "libcrypto.dylib" ] }
|
||||
{ [ os unix? ] [ "libcrypto.so" ] }
|
||||
} cond cdecl add-library >>
|
||||
|
|
|
@ -9,7 +9,7 @@ sequences system words ;
|
|||
IN: openssl.libssl
|
||||
|
||||
<< "libssl" {
|
||||
{ [ os windows? ] [ "ssleay32.dll" ] }
|
||||
{ [ os windows? ] [ "libssl-38.dll" ] }
|
||||
{ [ os macosx? ] [ "libssl.dylib" ] }
|
||||
{ [ os unix? ] [ "libssl.so" ] }
|
||||
} cond cdecl add-library >>
|
||||
|
|
|
@ -4,7 +4,7 @@ alien.syntax combinators io.sockets.secure system unix.types ;
|
|||
IN: libtls.ffi
|
||||
|
||||
<< "libtls" {
|
||||
{ [ os windows? ] [ "libtls.dll" ] }
|
||||
{ [ os windows? ] [ "libtls-10.dll" ] }
|
||||
{ [ os macosx? ] [ "libtls.dylib" ] }
|
||||
{ [ os unix? ] [ "libtls.so" ] }
|
||||
} cond cdecl add-library >>
|
||||
|
|
Loading…
Reference in New Issue