Explorar o código

* minimum compiler version to build the compiler is 2.6.0

git-svn-id: trunk@21411 -
florian %!s(int64=13) %!d(string=hai) anos
pai
achega
7bdbb3448e
Modificáronse 1 ficheiros con 4 adicións e 6 borrados
  1. 4 6
      compiler/pp.pas

+ 4 - 6
compiler/pp.pas

@@ -56,12 +56,10 @@ program pp;
 
 {$i fpcdefs.inc}
 
-{ Require at least 2.0.2 }
-{$ifdef VER2_0}
-  {$if FPC_PATCH<2}
-    {$fatal At least FPC 2.0.2 is required to compile the compiler}
-  {$endif}
-{$endif VER2_0}
+{ Require at least 2.6.0 }
+{$if FPC_FULLVERSION<20600}
+  {$fatal At least FPC 2.6.0 is required to compile the compiler}
+{$endif}
 
 { exactly one target CPU must be defined }
 {$ifdef I386}