$NetBSD: patch-aa,v 1.3 2001/02/08 13:46:04 wiz Exp $ --- cursesterm.cc.orig Mon Apr 5 18:25:45 1999 +++ cursesterm.cc @@ -19,13 +19,23 @@ #include "config.h" #include #include +#ifdef __NetBSD__ +#include +#include +#else #include +#endif #include #include #include "utility.h" #include "displaybuf.h" #include "terminal.h" #include "cursesterm.h" + +/* workaround for NetBSD curses */ +#ifndef A_VERTICAL +#define A_VERTICAL 0x2000 +#endif /* Mapping of 5250 colors to curses colors */ #define A_5250_GREEN (COLOR_PAIR(COLOR_GREEN))