diff options
| author | Eli Zaretskii | 2001-11-16 14:03:07 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2001-11-16 14:03:07 +0000 |
| commit | 6d12ed9ff1a912e778a108b03f5aad8016b47f9a (patch) | |
| tree | f448386e1babf271ab6aaea36eb9849d64a435a6 /src/syswait.h | |
| parent | 25c056e614ca870e0448fdaa18a6080ce83bad04 (diff) | |
| download | emacs-6d12ed9ff1a912e778a108b03f5aad8016b47f9a.tar.gz emacs-6d12ed9ff1a912e778a108b03f5aad8016b47f9a.zip | |
(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 692c202da1b..23690f141cb 100644 --- a/src/syswait.h +++ b/src/syswait.h | |||
| @@ -38,7 +38,8 @@ Boston, MA 02111-1307, USA. */ | |||
| 38 | definitions of some of the macros and `the convex' does too. | 38 | definitions of some of the macros and `the convex' does too. |
| 39 | HAVE_SYS_WAIT_H probably won't be defined on them if they still get | 39 | HAVE_SYS_WAIT_H probably won't be defined on them if they still get |
| 40 | used, but for safety... -- fx */ | 40 | used, but for safety... -- fx */ |
| 41 | #if (defined (HPUX) && !defined (HPUX8)) || defined (convex) | 41 | /* ISC 4.1 doesn't have wait3, but does have sys/wait.h. */ |
| 42 | #if (defined(HPUX) && !defined(HPUX8)) || defined(convex) || defined(ISC4_1) | ||
| 42 | #undef HAVE_SYS_WAIT_H | 43 | #undef HAVE_SYS_WAIT_H |
| 43 | #endif | 44 | #endif |
| 44 | 45 | ||