OpenSSL: fixed correct library naming for MacOSX (Yury Sidorov)

git-svn-id: https://svn.code.sf.net/p/synalist/code/trunk@133 7c85be65-684b-0410-a082-b2ed4fbef004
This commit is contained in:
geby 2011-01-19 14:52:37 +00:00
parent 55add16988
commit aec40ee3cc

View File

@ -1,9 +1,9 @@
{==============================================================================|
| Project : Ararat Synapse | 003.006.002 |
| Project : Ararat Synapse | 003.006.003 |
|==============================================================================|
| Content: SSL support by OpenSSL |
|==============================================================================|
| Copyright (c)1999-2010, Lukas Gebauer |
| Copyright (c)1999-2011, Lukas Gebauer |
| All rights reserved. |
| |
| Redistribution and use in source and binary forms, with or without |
@ -33,7 +33,7 @@
| DAMAGE. |
|==============================================================================|
| The Initial Developer of the Original Code is Lukas Gebauer (Czech Republic).|
| Portions created by Lukas Gebauer are Copyright (c)2002-2010. |
| Portions created by Lukas Gebauer are Copyright (c)2002-2011. |
| All Rights Reserved. |
|==============================================================================|
| Contributor(s): |
@ -107,8 +107,13 @@ const
{$ELSE}
var
{$IFNDEF MSWINDOWS}
DLLSSLName: string = 'libssl.so';
DLLUtilName: string = 'libcrypto.so';
{$IFDEF DARWIN}
DLLSSLName: string = 'libssl.dylib';
DLLUtilName: string = 'libcrypto.dylib';
{$ELSE}
DLLSSLName: string = 'libssl.so';
DLLUtilName: string = 'libcrypto.so';
{$ENDIF}
{$ELSE}
DLLSSLName: string = 'ssleay32.dll';
DLLSSLName2: string = 'libssl32.dll';