kconfig: search harder for curses library in check-lxdialog.sh

The check-lxdialog.sh script searches for "libFOO.so" which fails on OS X, due
to their special naming of libraries like "libfoo.dylib".  This patch turns
the curses lib search into extensible loops and adds dylib as a valid
extension.

Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
This commit is contained in:
Mike Frysinger
2007-05-17 15:06:31 -04:00
committed by Sam Ravnborg
parent fc31c77163
commit 03c9587d75

View File

@@ -4,21 +4,15 @@
# What library to link # What library to link
ldflags() ldflags()
{ {
$cc -print-file-name=libncursesw.so | grep -q / for ext in so a dylib ; do
if [ $? -eq 0 ]; then for lib in ncursesw ncurses curses ; do
echo '-lncursesw' $cc -print-file-name=lib${lib}.${ext} | grep -q /
exit if [ $? -eq 0 ]; then
fi echo "-l${lib}"
$cc -print-file-name=libncurses.so | grep -q / exit
if [ $? -eq 0 ]; then fi
echo '-lncurses' done
exit done
fi
$cc -print-file-name=libcurses.so | grep -q /
if [ $? -eq 0 ]; then
echo '-lcurses'
exit
fi
exit 1 exit 1
} }