Browse Source

* only fpc uses video unit

pierre 23 years ago
parent
commit
7c478984c8
2 changed files with 16 additions and 4 deletions
  1. 8 2
      ide/fpcompil.pas
  2. 8 2
      ide/fpdebug.pas

+ 8 - 2
ide/fpcompil.pas

@@ -148,7 +148,10 @@ uses
 {$ifdef HasSignal}
   fpcatch,
 {$endif HasSignal}
-  Dos,Video,
+  Dos,
+{$ifdef fpc}
+  Video,
+{$endif fpc}
   StdDlg,App,tokens,
 {$ifdef FVISION}
   FVConsts,
@@ -1290,7 +1293,10 @@ end;
 end.
 {
   $Log$
-  Revision 1.13  2002-09-09 06:53:54  pierre
+  Revision 1.14  2002-09-13 22:30:50  pierre
+   * only fpc uses video unit
+
+  Revision 1.13  2002/09/09 06:53:54  pierre
    * avoid to save file used by codecomplete
 
   Revision 1.12  2002/09/07 15:40:42  peter

+ 8 - 2
ide/fpdebug.pas

@@ -377,7 +377,10 @@ procedure UpdateDebugViews;
 implementation
 
 uses
-  Dos,Video,
+  Dos,
+{$ifdef fpc}
+  Video,
+{$endif fpc}
   App,Strings,
 {$ifdef FVISION}
   FVConsts,
@@ -4167,7 +4170,10 @@ end.
 
 {
   $Log$
-  Revision 1.28  2002-09-13 08:13:07  pierre
+  Revision 1.29  2002-09-13 22:30:50  pierre
+   * only fpc uses video unit
+
+  Revision 1.28  2002/09/13 08:13:07  pierre
    * avoid RTE 201 in hexstr calls
 
   Revision 1.27  2002/09/07 21:04:41  carl