Browse Source

* ifdef linux -> ifdef unix

carl 23 years ago
parent
commit
9783900355
1 changed files with 7 additions and 10 deletions
  1. 7 10
      utils/ppdep.pp

+ 7 - 10
utils/ppdep.pp

@@ -21,7 +21,7 @@ uses Dos;
 {.$define debug}
 {.$define debug}
 
 
 const
 const
-{$ifdef linux}
+{$ifdef unix}
   exeext='';
   exeext='';
 {$else}
 {$else}
   exeext='.EXE';
   exeext='.EXE';
@@ -81,7 +81,7 @@ begin
   for i:=length(s) downto 1 do
   for i:=length(s) downto 1 do
    begin
    begin
      case s[i] of
      case s[i] of
- {$ifdef Linux}
+ {$ifdef unix}
   '/','\' : begin
   '/','\' : begin
               FixFn[i]:='/';
               FixFn[i]:='/';
               NoPath:=false; {Skip lowercasing path: 'X11'<>'x11' }
               NoPath:=false; {Skip lowercasing path: 'X11'<>'x11' }
@@ -531,7 +531,7 @@ begin
   Outfile:='';
   Outfile:='';
   AddCall:=0;
   AddCall:=0;
   Verbose:=False;
   Verbose:=False;
-{$IFDEF LINUX}
+{$IFDEF linux}
   UnitExt:='ppu';
   UnitExt:='ppu';
 {$ELSE}
 {$ELSE}
   UnitExt:='PPU';
   UnitExt:='PPU';
@@ -579,13 +579,10 @@ end.
 
 
 {
 {
   $Log$
   $Log$
-  Revision 1.1  2000-07-13 10:16:22  michael
-  + Initial import
-
-  Revision 1.4  2000/02/09 16:44:14  peter
-    * log truncated
+  Revision 1.2  2002-02-27 16:32:50  carl
+  * ifdef linux -> ifdef unix
 
 
-  Revision 1.3  2000/01/07 16:46:02  daniel
-    * copyright 2000
+  Revision 1.1  2000/07/13 10:16:22  michael
+  + Initial import
 
 
 }
 }