diff mbox

scripts/kconfig: Add tinfo library to linker library search

Message ID 1414437517-23558-1-git-send-email-nikos.giotis@gmail.com (mailing list archive)
State New, archived
Headers show

Commit Message

Nikos Giotis Oct. 27, 2014, 7:18 p.m. UTC
For systems that have ncurses library configured with the
"--with termlib=tinfo" option the linker reports errors when
running "make menuconfig" due to undefined reference to symbol
'acs_map'. The change does not change the behaviour when
building against ncurses configured without this option. The
tinfo library is included in the lists of libraries that are
searched when buidling lxdialog sources.

Tested with kernel 3.14.22 and latest master from git

Signed-off-by: Nikos Giotis <nikos.giotis@gmail.com>
---
 scripts/kconfig/lxdialog/check-lxdialog.sh | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
diff mbox

Patch

diff --git a/scripts/kconfig/lxdialog/check-lxdialog.sh b/scripts/kconfig/lxdialog/check-lxdialog.sh
index 5075ebf..202e4bf 100755
--- a/scripts/kconfig/lxdialog/check-lxdialog.sh
+++ b/scripts/kconfig/lxdialog/check-lxdialog.sh
@@ -4,10 +4,10 @@ 
 # What library to link
 ldflags()
 {
-	pkg-config --libs ncursesw 2>/dev/null && exit
-	pkg-config --libs ncurses 2>/dev/null && exit
+	pkg-config --libs ncursesw tinfo 2>/dev/null && exit
+	pkg-config --libs ncurses tinfo 2>/dev/null && exit
 	for ext in so a dll.a dylib ; do
-		for lib in ncursesw ncurses curses ; do
+		for lib in ncursesw ncurses curses tinfo ; do
 			$cc -print-file-name=lib${lib}.${ext} | grep -q /
 			if [ $? -eq 0 ]; then
 				echo "-l${lib}"