From e9a9d2f9592c4cf1ce34d5df7cf4a21cd3f9d8b1 Mon Sep 17 00:00:00 2001 From: Chris Hanson Date: Mon, 1 Jul 1996 23:27:18 +0000 Subject: [PATCH] Add conditionalization to detect versions of HP-UX that supply the `poll' system call. --- v7/src/microcode/ux.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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? */ -- 2.25.1