You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

15 lines
266 B

--- a/src/term_curses.c
+++ b/src/term_curses.c
@@ -23,7 +23,11 @@
#include <stdlib.h>
#ifdef HAVE_NCURSES_H
-#include <ncurses.h>
+# ifdef HAVE_NCURSESW
+# include <ncursesw/ncurses.h>
+# else
+# include <ncurses.h>
+# endif
#else
#include <curses.h>
#endif