diff options
Diffstat (limited to 'Game/Code/switches.inc')
-rw-r--r-- | Game/Code/switches.inc | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Game/Code/switches.inc b/Game/Code/switches.inc index 52df7e7d..20956492 100644 --- a/Game/Code/switches.inc +++ b/Game/Code/switches.inc @@ -20,6 +20,12 @@ {$DEFINE DEBUG} {$ENDIF} + // for transition from 2.2.0 to 2.2.2 + // remove 2.2.0 support as soon as packages for all distributions are available + {$IF (FPC_VERSION > 2) or ((FPC_VERSION = 2) and ((FPC_RELEASE > 2) or ((FPC_RELEASE = 2) and (FPC_PATCH >= 2))))} + {$DEFINE FPC_VERSION_2_2_2_PLUS} + {$IFEND} + {$DEFINE HasInline} {$ELSE} {$DEFINE Delphi} |