From 6301bd99c733b66bd9b5b7eeb155fe6a70b700f3 Mon Sep 17 00:00:00 2001 From: Chris Hanson Date: Mon, 1 Jul 1996 23:25:27 +0000 Subject: [PATCH] Add conditionalization to detect HP-UX version 10.10. --- v7/src/microcode/oscond.h | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/v7/src/microcode/oscond.h b/v7/src/microcode/oscond.h index 1b450f6ce..94d0d958d 100644 --- a/v7/src/microcode/oscond.h +++ b/v7/src/microcode/oscond.h @@ -1,8 +1,8 @@ /* -*-C-*- -$Id: oscond.h,v 1.21 1995/10/24 05:08:19 cph Exp $ +$Id: oscond.h,v 1.22 1996/07/01 23:25:27 cph Exp $ -Copyright (c) 1990-95 Massachusetts Institute of Technology +Copyright (c) 1990-96 Massachusetts Institute of Technology This material was developed by the Scheme project at the Massachusetts Institute of Technology, Department of Electrical Engineering and @@ -76,12 +76,17 @@ MIT in each case. */ #define _POSIX #define _SYSV3 +#include +#ifdef PGID_USE_PID +#define _HPUX_VERSION 100 +#else #include #ifdef SHL_MAGIC #define _HPUX_VERSION 80 #else #define _HPUX_VERSION 70 #endif +#endif #else /* not __hpux */ -- 2.25.1