Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 03c9587d authored by Mike Frysinger's avatar Mike Frysinger Committed by Sam Ravnborg
Browse files

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: default avatarMike Frysinger <vapier@gentoo.org>
Signed-off-by: default avatarSam Ravnborg <sam@ravnborg.org>
parent fc31c771
Loading
Loading
Loading
Loading
+9 −15
Original line number Diff line number Diff line
@@ -4,21 +4,15 @@
# What library to link
ldflags()
{
	$cc -print-file-name=libncursesw.so | grep -q /
	for ext in so a dylib ; do
		for lib in ncursesw ncurses curses ; do
			$cc -print-file-name=lib${lib}.${ext} | grep -q /
			if [ $? -eq 0 ]; then
		echo '-lncursesw'
		exit
	fi
	$cc -print-file-name=libncurses.so | grep -q /
	if [ $? -eq 0 ]; then
		echo '-lncurses'
		exit
	fi
	$cc -print-file-name=libcurses.so | grep -q /
	if [ $? -eq 0 ]; then
		echo '-lcurses'
				echo "-l${lib}"
				exit
			fi
		done
	done
	exit 1
}