fix ldap and openssl on unix

db4
Eduardo Cavazos 2008-03-14 10:54:46 -06:00
parent c8e550edca
commit 080628af9f
3 changed files with 6 additions and 6 deletions

View File

@ -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

View File

@ -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

View File

@ -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