Selaa lähdekoodia

* Rename unit crc to fpccrc to avoid name conflict in packages

git-svn-id: trunk@1856 -
daniel 19 vuotta sitten
vanhempi
commit
c0b4678873
4 muutettua tiedostoa jossa 4 lisäystä ja 4 poistoa
  1. 1 1
      .gitattributes
  2. 1 1
      compiler/fpccrc.pas
  3. 1 1
      compiler/ppu.pas
  4. 1 1
      compiler/symdef.pas

+ 1 - 1
.gitattributes

@@ -90,7 +90,6 @@ compiler/comprsrc.pas svneol=native#text/plain
 compiler/cp437.pas svneol=native#text/plain
 compiler/cp850.pas svneol=native#text/plain
 compiler/cp8859_1.pas svneol=native#text/plain
-compiler/crc.pas svneol=native#text/plain
 compiler/cresstr.pas svneol=native#text/plain
 compiler/cstreams.pas svneol=native#text/plain
 compiler/cutils.pas svneol=native#text/plain
@@ -103,6 +102,7 @@ compiler/dwarf.pas svneol=native#text/plain
 compiler/export.pas svneol=native#text/plain
 compiler/finput.pas svneol=native#text/plain
 compiler/fmodule.pas svneol=native#text/plain
+compiler/fpccrc.pas svneol=native#text/plain
 compiler/fpcdefs.inc svneol=native#text/plain
 compiler/fppu.pas svneol=native#text/plain
 compiler/gendef.pas svneol=native#text/plain

+ 1 - 1
compiler/crc.pas → compiler/fpccrc.pas

@@ -19,7 +19,7 @@
 
  ****************************************************************************
 }
-Unit crc;
+Unit fpccrc;
 
 {$i fpcdefs.inc}
 

+ 1 - 1
compiler/ppu.pas

@@ -268,7 +268,7 @@ implementation
 {$ifdef Test_Double_checksum}
     comphook,
 {$endif def Test_Double_checksum}
-    crc,
+    fpccrc,
     cutils;
 
 {*****************************************************************************

+ 1 - 1
compiler/symdef.pas

@@ -751,7 +751,7 @@ implementation
       fmodule,
       { other }
       gendef,
-      crc
+      fpccrc
       ;
 
 {****************************************************************************