diff options
author | Eli Zaretskii <eliz@gnu.org> | 2001-11-16 14:03:07 +0000 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2001-11-16 14:03:07 +0000 |
commit | 6d12ed9ff1a912e778a108b03f5aad8016b47f9a (patch) | |
tree | f448386e1babf271ab6aaea36eb9849d64a435a6 /src/syswait.h | |
parent | 25c056e614ca870e0448fdaa18a6080ce83bad04 (diff) |
(HAVE_SYS_WAIT_H): Undef for ISC 4.1. Reported by
Andrew Wiseman <a.wiseman@btclick.com>.
Diffstat (limited to 'src/syswait.h')
-rw-r--r-- | src/syswait.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/syswait.h b/src/syswait.h index 692c202da1..23690f141c 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 |