From 530b813d0ac35135ef1c917b8bff951744e8cbfd Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Fri, 16 Nov 2001 13:45:29 +0000 Subject: [PATCH] (HAVE_SYS_WAIT_H): Undef for ISC 4.1. Reported by Andrew Wiseman . --- src/syswait.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 -- 2.39.2