Browse Source

* use $IF DEFINED instead of $IFDEF for consistency (and is required for 3.2.2)

git-svn-id: trunk@49249 -
svenbarth 4 years ago
parent
commit
e540e8f52e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      packages/openssl/src/openssl.pas

+ 1 - 1
packages/openssl/src/openssl.pas

@@ -90,7 +90,7 @@ Type
 const
 const
 // SSL and Crypto DLL arrays must have the same length and contain
 // SSL and Crypto DLL arrays must have the same length and contain
 // matched pairs of DLL filenames. Place newer versions at the beginning.
 // matched pairs of DLL filenames. Place newer versions at the beginning.
-{$IFDEF WIN64}
+{$IF DEFINED(WIN64)}
   SSL_DLL_Names:    array[1..3] of string = ('libssl-1_1-x64',    'ssleay32', 'libssl32');
   SSL_DLL_Names:    array[1..3] of string = ('libssl-1_1-x64',    'ssleay32', 'libssl32');
   Crypto_DLL_Names: array[1..3] of string = ('libcrypto-1_1-x64', 'libeay32', 'libeay32');
   Crypto_DLL_Names: array[1..3] of string = ('libcrypto-1_1-x64', 'libeay32', 'libeay32');
 {$ELSEIF DEFINED(WINDOWS)}
 {$ELSEIF DEFINED(WINDOWS)}