]> git.ipfire.org Git - thirdparty/util-linux.git/commitdiff
meson: remove tinfo dependency from 'more'
authorThomas Weißschuh <thomas@t-8ch.de>
Mon, 14 Apr 2025 21:19:06 +0000 (23:19 +0200)
committerThomas Weißschuh <thomas@t-8ch.de>
Mon, 14 Apr 2025 21:47:11 +0000 (23:47 +0200)
The more utility does not need libtinfo and it is not
specified in autotools either.

Signed-off-by: Thomas Weißschuh <thomas@t-8ch.de>
meson.build

index ec135330569c0c9c42fb6d2610c453038f301ee2..928eda2da8c4ced10010338f36a209a5b5d1b07f 100644 (file)
@@ -1400,8 +1400,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)
@@ -1411,8 +1410,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