mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-30 20:58:14 -07:00
Use same KEYWORDS like in pidgin as this is an outsourced pidgin plugin Bug: https://bugs.gentoo.org/727878 Package-Manager: Portage-2.3.100, Repoman-2.3.22 Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
19 lines
567 B
Diff
19 lines
567 B
Diff
--- 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)
|
|
]
|