mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-14 06:39:36 +02:00

release and patch level are always two digits so the version can be compared numerically: so 2.2.2 results in 20202, resolves #11568 git-svn-id: trunk@11504 -
10 lines
179 B
ObjectPascal
10 lines
179 B
ObjectPascal
{$if not(fpc_fullversion>20202)}
|
|
{$error Problem with fpc_fullversion}
|
|
{$endif}
|
|
|
|
{ force compiler error if it's defined wrong }
|
|
{$if fpc_fullversion>20202)}
|
|
begin
|
|
end.
|
|
{$endif}
|