Mercurial > emacs
changeset 41138:f1b3a7278c62
(HAVE_SYS_WAIT_H): Undef for ISC 4.1. Reported by
Andrew Wiseman <a.wiseman@btclick.com>.
author | Eli Zaretskii <eliz@gnu.org> |
---|---|
date | Fri, 16 Nov 2001 14:03:07 +0000 |
parents | 98cd2e32a438 |
children | e7fb0abe0a4d |
files | src/syswait.h |
diffstat | 1 files changed, 2 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/syswait.h Fri Nov 16 13:53:05 2001 +0000 +++ b/src/syswait.h Fri Nov 16 14:03:07 2001 +0000 @@ -38,7 +38,8 @@ 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