From: Karel Zak Date: Thu, 19 Mar 2026 12:30:22 +0000 (+0100) Subject: meson: remove unused HAVE_NCURSES config define X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2b0baa966988d74917ab30758a6e906da520318b;p=thirdparty%2Futil-linux.git meson: remove unused HAVE_NCURSES config define No source code uses HAVE_NCURSES (without _W or _H suffix). In autotools it only exists as an AM_CONDITIONAL for Makefile logic, not as a config.h define. Signed-off-by: Karel Zak --- diff --git a/meson.build b/meson.build index a0c54aa03..ec7b8d9c6 100644 --- a/meson.build +++ b/meson.build @@ -303,7 +303,6 @@ endif conf.set('HAVE_LIBNCURSESW', lib_ncursesw.found() ? 1 : false) conf.set('HAVE_LIBNCURSES', lib_ncurses.found() ? 1 : false) -conf.set('HAVE_NCURSES', (lib_ncursesw.found() or lib_ncurses.found()) ? 1 : false) lib_slang = dependency( 'slang',