From: Thomas Weißschuh Date: Mon, 14 Apr 2025 21:19:06 +0000 (+0200) Subject: meson: remove tinfo dependency from 'more' X-Git-Tag: v2.41.1~43 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=616f4ecea6172814e87aebe191903d607b65e76b;p=thirdparty%2Futil-linux.git meson: remove tinfo dependency from 'more' The more utility does not need libtinfo and it is not specified in autotools either. Signed-off-by: Thomas Weißschuh (cherry picked from commit 363e48da01956321fb9337c59d78865c97c711a2) --- diff --git a/meson.build b/meson.build index 6aeac2137..6668aa23a 100644 --- a/meson.build +++ b/meson.build @@ -1387,8 +1387,7 @@ exe = executable( more_sources, link_with : [lib_common], include_directories : includes, - dependencies : [lib_tinfo, - curses_libs, + dependencies : [curses_libs, lib_magic], install : opt, build_by_default : opt) @@ -1398,8 +1397,7 @@ exe2 = executable( link_with : [lib_common], include_directories : includes, c_args : '-DTEST_PROGRAM', - dependencies : [lib_tinfo, - curses_libs, + dependencies : [curses_libs, lib_magic], build_by_default : opt and program_tests) exes += exe