aboutsummaryrefslogtreecommitdiffhomepage
path: root/input.cpp
diff options
context:
space:
mode:
authorGravatar David Adam <zanchey@ucc.gu.uwa.edu.au>2014-12-07 16:41:15 +0800
committerGravatar David Adam <zanchey@ucc.gu.uwa.edu.au>2014-12-21 23:37:23 +0800
commita8059c5962ba5695b3622fe0cf7b5e2eb383db1f (patch)
tree919ff79f6edc0c7db28202d09549c4eec8d23e9c /input.cpp
parent381404c4f45c59d90524adfa3ee746bd608aea9d (diff)
Solaris build fixes: pick the right curses more of the time
Diffstat (limited to 'input.cpp')
-rw-r--r--input.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/input.cpp b/input.cpp
index 8eeb4477..b4e323e9 100644
--- a/input.cpp
+++ b/input.cpp
@@ -24,8 +24,13 @@
#if HAVE_NCURSES_H
#include <ncurses.h>
+#elif HAVE_NCURSES_CURSES_H
+#include <ncurses/curses.h>
#else
+// Solaris curses defines lots of unneeded macros which conflict with C++
+#define NOMACROS
#include <curses.h>
+#undef NOMACROS
#endif
#if HAVE_TERM_H