libgnt/libgnt

Apply the tinfo library patch from Gentoo [1]
release-2.x.y
2020-06-11, Lars Wendler
74911ff78ac5
Parents c84141d94d17
Children 69d553f60cbc
Apply the tinfo library patch from Gentoo [1]

[1] https://gitweb.gentoo.org/repo/gentoo.git/commit/dev-libs/libgnt/files/libgnt-2.14.0-tinfo.patch?id=caf07e799877ea3e933b35b7402bc916c246132d
  • +2 -0
    meson.build
  • --- a/meson.build Tue Jun 09 21:21:05 2020 -0500
    +++ b/meson.build Thu Jun 11 23:34:06 2020 -0500
    @@ -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)
    ]