sunos has no __wait
authorClaus Gittinger <cg@exept.de>
Sun, 26 May 1996 13:01:28 +0200
changeset 1441 91284e90f42a
parent 1440 7a38f09abf92
child 1442 183f8d68f658
sunos has no __wait
Unix.st
--- a/Unix.st	Sun May 26 13:01:07 1996 +0200
+++ b/Unix.st	Sun May 26 13:01:28 1996 +0200
@@ -381,6 +381,10 @@
 # define SIGHANDLER_ARG
 #endif
 
+#ifdef sunos
+# define NO_WAITPID
+#endif
+
 %}
 ! !
 
@@ -580,6 +584,8 @@
 
     return status;
 }
+#else
+# define __wait	wait
 #endif /* WANT_SYSTEM */
 
 
@@ -6272,7 +6278,7 @@
     struct tm *gmTmPtr;
     long t;
 
-#ifdef ultrix /* mhmh - isnt this ifdef BSD ? */
+#if defined(ultrix) || defined(sunos) /* mhmh - isnt this ifdef BSD ? */
 #   define TIMEZONE     tmPtr->tm_gmtoff
 #else
 # ifdef MSDOS_LIKE
@@ -7391,6 +7397,6 @@
 !OperatingSystem class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Attic/Unix.st,v 1.142 1996-05-21 11:11:56 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Attic/Unix.st,v 1.143 1996-05-26 11:01:28 cg Exp $'
 ! !
 OperatingSystem initialize!