From: Eli Zaretskii Date: Fri, 16 Nov 2001 13:45:29 +0000 (+0000) Subject: (HAVE_SYS_WAIT_H): Undef for ISC 4.1. Reported by X-Git-Tag: emacs-21.2~306 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=530b813d0ac35135ef1c917b8bff951744e8cbfd;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