Browse Source

update minimum fpc compiler version in include file.

Ugochukwu Mmaduekwe 6 years ago
parent
commit
02b33ed4a4
1 changed files with 3 additions and 3 deletions
  1. 3 3
      CryptoLib/src/Include/CryptoLibHelper.inc

+ 3 - 3
CryptoLib/src/Include/CryptoLibHelper.inc

@@ -19,8 +19,8 @@
 {$IFDEF ENDIAN_BIG}
 {$MESSAGE FATAL 'This Library does not support "Big Endian" processors yet.'}
 {$ENDIF}
-// FPC 3.0.0 and Above
+// FPC 3.0.4 and Above
 // Had to Include this here since Delphi does not allow it Compile in "CryptoLib.inc".
-{$IF FPC_FULLVERSION < 30000}
-{$MESSAGE ERROR 'This Library requires FreePascal 3.0.0 or higher.'}
+{$IF FPC_FULLVERSION < 30004}
+{$MESSAGE ERROR 'This Library requires FreePascal 3.0.4 or higher.'}
 {$IFEND}