fix ldap and openssl on unix
parent
c8e550edca
commit
080628af9f
|
@ -12,7 +12,7 @@ IN: ldap.libldap
|
|||
<< "libldap" {
|
||||
{ [ win32? ] [ "libldap.dll" "stdcall" ] }
|
||||
{ [ macosx? ] [ "libldap.dylib" "cdecl" ] }
|
||||
{ [ unix? ] [ "$LD_LIBRARY_PATH/libldap.so" "cdecl" ] }
|
||||
{ [ unix? ] [ "libldap.so" "cdecl" ] }
|
||||
} cond add-library >>
|
||||
|
||||
: LDAP_VERSION1 1 ; inline
|
||||
|
|
|
@ -12,7 +12,7 @@ IN: openssl.libcrypto
|
|||
"libcrypto" {
|
||||
{ [ win32? ] [ "libeay32.dll" "stdcall" ] }
|
||||
{ [ macosx? ] [ "libcrypto.dylib" "cdecl" ] }
|
||||
{ [ unix? ] [ "$LD_LIBRARY_PATH/libcrypto.so" "cdecl" ] }
|
||||
{ [ unix? ] [ "libcrypto.so" "cdecl" ] }
|
||||
} cond add-library
|
||||
|
||||
C-STRUCT: bio-method
|
||||
|
|
|
@ -12,7 +12,7 @@ IN: openssl.libssl
|
|||
<< "libssl" {
|
||||
{ [ win32? ] [ "ssleay32.dll" "stdcall" ] }
|
||||
{ [ macosx? ] [ "libssl.dylib" "cdecl" ] }
|
||||
{ [ unix? ] [ "$LD_LIBRARY_PATH/libssl.so" "cdecl" ] }
|
||||
{ [ unix? ] [ "libssl.so" "cdecl" ] }
|
||||
} cond add-library >>
|
||||
|
||||
: X509_FILETYPE_PEM 1 ; inline
|
||||
|
|
Loading…
Reference in New Issue