From 9cdfd67c90fec99151505518b8ee0b78e171d6fc Mon Sep 17 00:00:00 2001 From: Benjamin Franzke Date: Wed, 12 Feb 2020 21:39:42 +0100 Subject: Support UTF-8 characters Switch to ncursesw (using pkg-config) for UTF-8 support. Fallback to a X/Open Curses specification compatible curses implementation if ncursesw is not available. The fallback is intended for non-ncurses systems only. TODO: add proper check that the fallback X/Open Curses implementation is wide character (utf-8) capable. (Can't add right now, as we don't know about an incompatiblity) --- src/interface.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/interface.h') diff --git a/src/interface.h b/src/interface.h index ef7cdc2..61ce990 100644 --- a/src/interface.h +++ b/src/interface.h @@ -22,7 +22,7 @@ #include #include -#include +#include #define SELECTED_MAIN_CTL -1 #define H_MSG_BOX 3 -- cgit