Fix openssl binding on Windows
parent
194b0d827e
commit
91f4dadea8
|
@ -11,7 +11,7 @@ IN: openssl.libcrypto
|
||||||
|
|
||||||
<<
|
<<
|
||||||
"libcrypto" {
|
"libcrypto" {
|
||||||
{ [ win32? ] [ "libeay32.dll" "stdcall" ] }
|
{ [ win32? ] [ "libeay32.dll" "cdecl" ] }
|
||||||
{ [ macosx? ] [ "libcrypto.dylib" "cdecl" ] }
|
{ [ macosx? ] [ "libcrypto.dylib" "cdecl" ] }
|
||||||
{ [ unix? ] [ "libcrypto.so" "cdecl" ] }
|
{ [ unix? ] [ "libcrypto.so" "cdecl" ] }
|
||||||
} cond add-library
|
} cond add-library
|
||||||
|
|
|
@ -10,7 +10,7 @@ USING: alien alien.syntax combinators kernel system ;
|
||||||
IN: openssl.libssl
|
IN: openssl.libssl
|
||||||
|
|
||||||
<< "libssl" {
|
<< "libssl" {
|
||||||
{ [ win32? ] [ "ssleay32.dll" "stdcall" ] }
|
{ [ win32? ] [ "ssleay32.dll" "cdecl" ] }
|
||||||
{ [ macosx? ] [ "libssl.dylib" "cdecl" ] }
|
{ [ macosx? ] [ "libssl.dylib" "cdecl" ] }
|
||||||
{ [ unix? ] [ "libssl.so" "cdecl" ] }
|
{ [ unix? ] [ "libssl.so" "cdecl" ] }
|
||||||
} cond add-library >>
|
} cond add-library >>
|
||||||
|
|
Loading…
Reference in New Issue