Browse Source

* More OSes fixes.

marco 23 years ago
parent
commit
9676d4dd17
1 changed files with 13 additions and 0 deletions
  1. 13 0
      docs/dosex/ex1.pp

+ 13 - 0
docs/dosex/ex1.pp

@@ -10,6 +10,19 @@ begin
 {$IFDEF LINUX}
 {$IFDEF LINUX}
   OS:='Linux';
   OS:='Linux';
 {$ENDIF}
 {$ENDIF}
+{$ifdef FreeBSD}
+  OS:='FreeBSD';
+{$endif}
+{$ifdef NetBSD}
+  OS:='NetBSD';
+{$endif}
+{$ifdef Solaris}
+  OS:='Solaris';
+{$endif}
+{$ifdef QNX}
+  OS:='QNX';
+{$endif}
+
 {$IFDEF DOS}
 {$IFDEF DOS}
   OS:='Dos';
   OS:='Dos';
 {$ENDIF}  
 {$ENDIF}