From 06405e36293881fa6edf7b9b57471a56d1cf4768 Mon Sep 17 00:00:00 2001 From: "Guillermo J. Rozas" Date: Mon, 22 Nov 1993 00:32:47 +0000 Subject: [PATCH] HP-UX, OSF, and AIX all have SysV shared memory. --- v7/src/microcode/bchdrn.h | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/v7/src/microcode/bchdrn.h b/v7/src/microcode/bchdrn.h index d25024c4e..f79c822dd 100644 --- a/v7/src/microcode/bchdrn.h +++ b/v7/src/microcode/bchdrn.h @@ -1,8 +1,8 @@ /* -*-C-*- -$Id: bchdrn.h,v 1.5 1993/06/24 07:06:55 gjr Exp $ +$Id: bchdrn.h,v 1.6 1993/11/22 00:32:47 gjr Exp $ -Copyright (c) 1991-1992 Massachusetts Institute of Technology +Copyright (c) 1991-1993 Massachusetts Institute of Technology This material was developed by the Scheme project at the Massachusetts Institute of Technology, Department of Electrical Engineering and @@ -64,6 +64,9 @@ MIT in each case. */ # if defined(_SYSV4) || defined(_SUNOS4) || defined(_ULTRIX) # define HAVE_SYSV_SHARED_MEMORY # endif +# if defined(_HPUX) || defined(__osf__) || defined(_AIX) +# define HAVE_SYSV_SHARED_MEMORY +# endif #endif #if defined(_HPUX) -- 2.25.1