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

  1. --- a/src/term_curses.c
  2. +++ b/src/term_curses.c
  3. @@ -23,7 +23,11 @@
  4. #include <stdlib.h>
  5. #ifdef HAVE_NCURSES_H
  6. -#include <ncurses.h>
  7. +# ifdef HAVE_NCURSESW
  8. +# include <ncursesw/ncurses.h>
  9. +# else
  10. +# include <ncurses.h>
  11. +# endif
  12. #else
  13. #include <curses.h>
  14. #endif