summaryrefslogtreecommitdiffstats
path: root/RichString.h
diff options
context:
space:
mode:
Diffstat (limited to 'RichString.h')
-rw-r--r--RichString.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/RichString.h b/RichString.h
index e6fb4c32..6b626d40 100644
--- a/RichString.h
+++ b/RichString.h
@@ -14,13 +14,13 @@ in the source distribution for its full text.
#include <assert.h>
#ifdef HAVE_NCURSESW_CURSES_H
#include <ncursesw/curses.h>
-#elif HAVE_NCURSES_NCURSES_H
+#elif defined(HAVE_NCURSES_NCURSES_H)
#include <ncurses/ncurses.h>
-#elif HAVE_NCURSES_CURSES_H
+#elif defined(HAVE_NCURSES_CURSES_H)
#include <ncurses/curses.h>
-#elif HAVE_NCURSES_H
+#elif defined(HAVE_NCURSES_H)
#include <ncurses.h>
-#elif HAVE_CURSES_H
+#elif defined(HAVE_CURSES_H)
#include <curses.h>
#endif
@@ -63,13 +63,13 @@ void RichString_setAttrn(RichString* this, int attrs, int start, int finish);
int RichString_findChar(RichString* this, char c, int start);
-#else
+#else /* HAVE_LIBNCURSESW */
void RichString_setAttrn(RichString* this, int attrs, int start, int finish);
int RichString_findChar(RichString* this, char c, int start);
-#endif
+#endif /* HAVE_LIBNCURSESW */
void RichString_prune(RichString* this);