From: Chris Hanson Date: Mon, 1 Jul 1996 23:27:18 +0000 (+0000) Subject: Add conditionalization to detect versions of HP-UX that supply the X-Git-Tag: 20090517-FFI~5491 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=e9a9d2f9592c4cf1ce34d5df7cf4a21cd3f9d8b1;p=mit-scheme.git Add conditionalization to detect versions of HP-UX that supply the `poll' system call. --- diff --git a/v7/src/microcode/ux.h b/v7/src/microcode/ux.h index 0076bb389..9ea5a1d2b 100644 --- a/v7/src/microcode/ux.h +++ b/v7/src/microcode/ux.h @@ -1,6 +1,6 @@ /* -*-C-*- -$Id: ux.h,v 1.64 1996/04/23 20:58:11 cph Exp $ +$Id: ux.h,v 1.65 1996/07/01 23:27:18 cph Exp $ Copyright (c) 1988-96 Massachusetts Institute of Technology @@ -355,6 +355,10 @@ extern int EXFUN (kill, (pid_t, int)); #define HAVE_SYMBOLIC_LINKS #define HAVE_TRUNCATE #define HAVE_VFORK + +#if (_HPUX_VERSION >= 90) +#define HAVE_POLL +#endif #if (_HPUX_VERSION >= 65) /* Is this right for 800-series machines? */