From ff0917b84d6b7d0287fb0b441b8dd79978ee7509 Mon Sep 17 00:00:00 2001 From: William McBrine Date: Sat, 12 Nov 2005 13:55:54 +0000 Subject: [PATCH] Added extra "ifndef __OS2__" for compatibility with newer versions of EMX that _do_ define the symbol. --- curses.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/curses.h b/curses.h index 77732bcf..1120dd77 100644 --- a/curses.h +++ b/curses.h @@ -18,7 +18,7 @@ *************************************************************************** */ /* -$Id: curses.h,v 1.26 2005/08/24 09:18:01 rexx Exp $ +$Id: curses.h,v 1.27 2005/11/12 13:55:54 wmcbrine Exp $ */ /* *---------------------------------------------------------------------- @@ -403,7 +403,9 @@ PDCurses portable platform definitions list: # ifndef HAVE_PROTO # define HAVE_PROTO 1 /* emx supports ANSI C prototypes */ # endif -# define __OS2__ /* EMX does not define this :-( */ +# ifndef __OS2__ +# define __OS2__ /* EMX does not define this :-( */ +# endif # define OS2 3 /* Major release of OS/2 supported */ # define CURSES__32BIT__ # ifndef HAVE_STDARG_H