diff options
Diffstat (limited to 'dev-libs/libgnt/files/libgnt-2.14.0-tinfo.patch')
-rw-r--r-- | dev-libs/libgnt/files/libgnt-2.14.0-tinfo.patch | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/dev-libs/libgnt/files/libgnt-2.14.0-tinfo.patch b/dev-libs/libgnt/files/libgnt-2.14.0-tinfo.patch new file mode 100644 index 000000000000..1e4ab49020b9 --- /dev/null +++ b/dev-libs/libgnt/files/libgnt-2.14.0-tinfo.patch @@ -0,0 +1,18 @@ +--- libgnt-2.14.0/meson.build ++++ libgnt-2.14.0/meson.build +@@ -72,6 +72,7 @@ + ncurses_available = true + ncurses_inc = [] + ncurses_libs = [ ++ compiler.find_library('tinfow', required : false), + compiler.find_library('ncursesw', required : false), + compiler.find_library('panelw', required : false) + ] +@@ -113,6 +114,7 @@ + else + # ncursesw was not found. Look for plain old ncurses + ncurses_libs = [ ++ compiler.find_library('tinfo', required : false), + compiler.find_library('ncurses', required : false), + compiler.find_library('panel', required : false) + ] |