From: Chris Hanson Date: Tue, 4 Oct 1994 20:04:48 +0000 (+0000) Subject: Add conditionalizations for OS/2. X-Git-Tag: 20090517-FFI~7095 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=ac974b4f7cb774fe26ec715e9dc1d9aa60ecb843;p=mit-scheme.git Add conditionalizations for OS/2. --- diff --git a/v7/src/microcode/oscond.h b/v7/src/microcode/oscond.h index 8be6bc336..631cb4fc7 100644 --- a/v7/src/microcode/oscond.h +++ b/v7/src/microcode/oscond.h @@ -1,6 +1,6 @@ /* -*-C-*- -$Id: oscond.h,v 1.15 1993/11/08 06:15:20 gjr Exp $ +$Id: oscond.h,v 1.16 1994/10/04 20:04:48 cph Exp $ Copyright (c) 1990-1993 Massachusetts Institute of Technology @@ -170,6 +170,11 @@ MIT in each case. */ # define _DOS386_VERSION 50 #endif +#if defined(OS2) +#define _OS2 +#define _OS2_VERSION 21 +#endif + #if defined(_BSD) || defined(_SYSV) || defined(_PIXEL) # define _UNIX #else @@ -183,8 +188,12 @@ MIT in each case. */ # define NT386CL # endif # else -# include "error: unknown unix system -- you must add customizations" -# endif /* NT386 */ +# if defined(OS2) && defined(i386) +# define _OS2386 +# else +# include "error: unknown operating system -- you must customize" +# endif /* _OS2386 */ +# endif /* _NT386 */ # endif /* _DOS386 */ #endif /* _BSD || _SYSV || _PIXEL */