summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>2001-11-16 14:03:07 +0000
committerEli Zaretskii <eliz@gnu.org>2001-11-16 14:03:07 +0000
commite154a7bf11cec7ce2492955c94a78f1a8f029656 (patch)
tree6fd723228a3be049a0a7fc16eb9d8aecd6bcadff
parent69a42f10a2d48b9b62de30fecaf09cd9528d9c4e (diff)
downloademacs-e154a7bf11cec7ce2492955c94a78f1a8f029656.tar.gz
(HAVE_SYS_WAIT_H): Undef for ISC 4.1. Reported by
Andrew Wiseman <a.wiseman@btclick.com>.
-rw-r--r--src/syswait.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/syswait.h b/src/syswait.h
index 692c202da1b..23690f141cb 100644
--- a/src/syswait.h
+++ b/src/syswait.h
@@ -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