menuconfig: optionally use pkg-config to detect ncurses libs
authorJustin Lecher <jlec@gentoo.org>
Wed, 6 Mar 2013 13:02:01 +0000 (14:02 +0100)
committerYann E. MORIN <yann.morin.1998@free.fr>
Wed, 6 Mar 2013 23:20:51 +0000 (00:20 +0100)
When building ncurses with --with-termlib several symbols get moved from
libncurses.so to libtinfo.so. Thus when linking with libncurses.so, one
additionally needs to link with libtinfo.so.

The ncurses pkg-config module will be used to detect the necessary libs for
linking. If not available the old heuristic for detection of the ncurses libs
will be used.

Signed-off-by: Justin Lecher <jlec@gentoo.org>
Tested-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
scripts/kconfig/lxdialog/check-lxdialog.sh

index 80788137c670b2b7e7740c99803f03edd9803a3f..782d20085e1c9b403bcd76496a938c63a3bc83bb 100644 (file)
@@ -4,6 +4,8 @@
 # What library to link
 ldflags()
 {
+       pkg-config --libs ncursesw 2>/dev/null && exit
+       pkg-config --libs ncurses 2>/dev/null && exit
        for ext in so a dll.a dylib ; do
                for lib in ncursesw ncurses curses ; do
                        $cc -print-file-name=lib${lib}.${ext} | grep -q /