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