aix has no sys/termios.h
authorClaus Gittinger <cg@exept.de>
Wed, 09 Jun 1999 15:44:35 +0200
changeset 4285 342a32e855b4
parent 4284 20f47ad19322
child 4286 2cfcccd2f1ca
aix has no sys/termios.h
UnixOS.st
UnixOperatingSystem.st
--- a/UnixOS.st	Sun Jun 06 22:47:21 1999 +0200
+++ b/UnixOS.st	Wed Jun 09 15:44:35 1999 +0200
@@ -326,7 +326,9 @@
 #  include <stropts.h>
 # endif
 
-# include <sys/termios.h>
+# ifndef aix
+#  include <sys/termios.h>
+# endif
 
 /*
  * NeXT has no pid_t
@@ -8611,6 +8613,6 @@
 !UnixOperatingSystem class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Attic/UnixOS.st,v 1.64 1999-06-04 15:50:27 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Attic/UnixOS.st,v 1.65 1999-06-09 13:44:35 cg Exp $'
 ! !
 UnixOperatingSystem initialize!
--- a/UnixOperatingSystem.st	Sun Jun 06 22:47:21 1999 +0200
+++ b/UnixOperatingSystem.st	Wed Jun 09 15:44:35 1999 +0200
@@ -326,7 +326,9 @@
 #  include <stropts.h>
 # endif
 
-# include <sys/termios.h>
+# ifndef aix
+#  include <sys/termios.h>
+# endif
 
 /*
  * NeXT has no pid_t
@@ -8611,6 +8613,6 @@
 !UnixOperatingSystem class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/UnixOperatingSystem.st,v 1.64 1999-06-04 15:50:27 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/UnixOperatingSystem.st,v 1.65 1999-06-09 13:44:35 cg Exp $'
 ! !
 UnixOperatingSystem initialize!