소스 검색

* fixes bootstrapping with 2.6.0

git-svn-id: trunk@19491 -
florian 13 년 전
부모
커밋
73a084d662
11개의 변경된 파일11개의 추가작업 그리고 11개의 파일을 삭제
  1. 1 1
      compiler/cp1251.pas
  2. 1 1
      compiler/cp1252.pp
  3. 1 1
      compiler/cp437.pas
  4. 1 1
      compiler/cp850.pas
  5. 1 1
      compiler/cp866.pas
  6. 1 1
      compiler/cp8859_1.pas
  7. 1 1
      compiler/cp8859_5.pas
  8. 1 1
      compiler/cresstr.pas
  9. 1 1
      compiler/options.pas
  10. 1 1
      compiler/scanner.pas
  11. 1 1
      compiler/widestr.pas

+ 1 - 1
compiler/cp1251.pas

@@ -6,7 +6,7 @@ unit cp1251;
   implementation
   implementation
 
 
   uses
   uses
-     {$ifdef VER2_4}ccharset{$else VER2_4}charset{$endif VER2_4};
+     {$if FPC_FULLVERSION<20700}ccharset{$else}charset{$endif};
 
 
   const
   const
      map : array[0..255] of tunicodecharmapping = (
      map : array[0..255] of tunicodecharmapping = (

+ 1 - 1
compiler/cp1252.pp

@@ -6,7 +6,7 @@ unit CP1252;
   implementation
   implementation
 
 
   uses
   uses
-     {$ifdef VER2_4}ccharset{$else VER2_4}charset{$endif VER2_4};
+     {$if FPC_FULLVERSION<20700}ccharset{$else}charset{$endif};
 
 
   const
   const
      map : array[0..255] of tunicodecharmapping = (
      map : array[0..255] of tunicodecharmapping = (

+ 1 - 1
compiler/cp437.pas

@@ -6,7 +6,7 @@ unit cp437;
   implementation
   implementation
 
 
   uses
   uses
-     {$ifdef VER2_4}ccharset{$else VER2_4}charset{$endif VER2_4};
+     {$if FPC_FULLVERSION<20700}ccharset{$else}charset{$endif};
 
 
   const
   const
      map : array[0..255] of tunicodecharmapping = (
      map : array[0..255] of tunicodecharmapping = (

+ 1 - 1
compiler/cp850.pas

@@ -6,7 +6,7 @@ unit cp850;
   implementation
   implementation
 
 
   uses
   uses
-     {$ifdef VER2_4}ccharset{$else VER2_4}charset{$endif VER2_4};
+     {$if FPC_FULLVERSION<20700}ccharset{$else}charset{$endif};
 
 
   const
   const
      map : array[0..255] of tunicodecharmapping = (
      map : array[0..255] of tunicodecharmapping = (

+ 1 - 1
compiler/cp866.pas

@@ -6,7 +6,7 @@ unit cp866;
   implementation
   implementation
 
 
   uses
   uses
-     {$ifdef VER2_4}ccharset{$else VER2_4}charset{$endif VER2_4};
+     {$if FPC_FULLVERSION<20700}ccharset{$else}charset{$endif};
 
 
   const
   const
      map : array[0..255] of tunicodecharmapping = (
      map : array[0..255] of tunicodecharmapping = (

+ 1 - 1
compiler/cp8859_1.pas

@@ -6,7 +6,7 @@ unit cp8859_1;
   implementation
   implementation
 
 
   uses
   uses
-     {$ifdef VER2_4}ccharset{$else VER2_4}charset{$endif VER2_4};
+    {$if FPC_FULLVERSION<20700}ccharset{$else}charset{$endif};
 
 
   const
   const
      map : array[0..255] of tunicodecharmapping = (
      map : array[0..255] of tunicodecharmapping = (

+ 1 - 1
compiler/cp8859_5.pas

@@ -6,7 +6,7 @@ unit cp8859_5;
   implementation
   implementation
 
 
   uses
   uses
-     {$ifdef VER2_4}ccharset{$else VER2_4}charset{$endif VER2_4};
+     {$if FPC_FULLVERSION<20700}ccharset{$else}charset{$endif};
 
 
   const
   const
      map : array[0..255] of tunicodecharmapping = (
      map : array[0..255] of tunicodecharmapping = (

+ 1 - 1
compiler/cresstr.pas

@@ -40,7 +40,7 @@ uses
    aasmcpu,
    aasmcpu,
 {$if FPC_FULLVERSION<20700}
 {$if FPC_FULLVERSION<20700}
    ccharset,
    ccharset,
-{$endif }
+{$endif}
    asmutils;
    asmutils;
 
 
     Type
     Type

+ 1 - 1
compiler/options.pas

@@ -78,7 +78,7 @@ implementation
 
 
 uses
 uses
   widestr,
   widestr,
-  {$ifdef VER2_4}ccharset{$else VER2_4}charset{$endif VER2_4},
+  {$if FPC_FULLVERSION<20700}ccharset{$else}charset{$endif},
   SysUtils,
   SysUtils,
   version,
   version,
   cutils,cmsgs,
   cutils,cmsgs,

+ 1 - 1
compiler/scanner.pas

@@ -269,7 +269,7 @@ implementation
       { This is needed for tcputype }
       { This is needed for tcputype }
       cpuinfo,
       cpuinfo,
       fmodule
       fmodule
-{$ifdef VER2_4}
+{$if FPC_FULLVERSION<20700}
       ,ccharset
       ,ccharset
 {$endif}
 {$endif}
       ;
       ;

+ 1 - 1
compiler/widestr.pas

@@ -28,7 +28,7 @@ unit widestr;
   interface
   interface
 
 
     uses
     uses
-       {$ifdef VER2_4}ccharset{$else VER2_4}charset{$endif VER2_4},globtype;
+       {$if FPC_FULLVERSION<20700}ccharset{$else}charset{$endif},globtype;
 
 
 
 
     type
     type