]> git.eshelyaron.com Git - emacs.git/commitdiff
(HAVE_SYS_WAIT_H): Undef for ISC 4.1. Reported by
authorEli Zaretskii <eliz@gnu.org>
Fri, 16 Nov 2001 14:03:07 +0000 (14:03 +0000)
committerEli Zaretskii <eliz@gnu.org>
Fri, 16 Nov 2001 14:03:07 +0000 (14:03 +0000)
Andrew Wiseman <a.wiseman@btclick.com>.

src/syswait.h

index 692c202da1bb8e726ec90f809f1cf10771ae81c4..23690f141cba71b2cbce95ecb53a2a979f58b772 100644 (file)
@@ -38,7 +38,8 @@ Boston, MA 02111-1307, USA.  */
    definitions of some of the macros and `the convex' does too.
    HAVE_SYS_WAIT_H probably won't be defined on them if they still get
    used, but for safety...  -- fx */
-#if (defined (HPUX) && !defined (HPUX8)) || defined (convex)
+/* ISC 4.1 doesn't have wait3, but does have sys/wait.h.  */
+#if (defined(HPUX) && !defined(HPUX8)) || defined(convex) || defined(ISC4_1)
 #undef HAVE_SYS_WAIT_H
 #endif