summaryrefslogtreecommitdiffstats
path: root/RichString.h
diff options
context:
space:
mode:
authorHisham Muhammad <hisham@gobolinux.org>2011-09-08 01:45:16 +0000
committerHisham Muhammad <hisham@gobolinux.org>2011-09-08 01:45:16 +0000
commita7bcf1d2e4e6b4783c3bb64696c70d8b8560b607 (patch)
treed54c7ea65ff88e51020e2ab92d234fce2c7a42af /RichString.h
parent25a2aada3c0faee45f57d2ce31c0987d030ce693 (diff)
Try harder to find the ncurses header, fixes detection in SuSE SLES9.
(thanks to Moritz Barsnick)
Diffstat (limited to 'RichString.h')
-rw-r--r--RichString.h10
1 files changed, 7 insertions, 3 deletions
diff --git a/RichString.h b/RichString.h
index b6622a13..754ff9b2 100644
--- a/RichString.h
+++ b/RichString.h
@@ -15,10 +15,14 @@
#include "debug.h"
#include <assert.h>
-#ifdef HAVE_LIBNCURSESW
-#include <ncursesw/curses.h>
-#else
+#ifdef HAVE_CURSES_H
#include <curses.h>
+#elif HAVE_NCURSES_H
+#include <ncurses.h>
+#elif HAVE_NCURSESW_CURSES_H
+#include <ncursesw/curses.h>
+#elif HAVE_NCURSES_NCURSES_H
+#include <ncurses/ncurses.h>
#endif
#define RICHSTRING_MAXLEN 300

© 2014-2024 Faster IT GmbH | imprint | privacy policy