From: Eli Zaretskii Date: Fri, 16 Nov 2001 14:03:07 +0000 (+0000) Subject: (HAVE_SYS_WAIT_H): Undef for ISC 4.1. Reported by X-Git-Tag: ttn-vms-21-2-B4~18492 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=6d12ed9ff1a912e778a108b03f5aad8016b47f9a;p=emacs.git (HAVE_SYS_WAIT_H): Undef for ISC 4.1. Reported by Andrew Wiseman . --- 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