1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-07-02 19:28:53 +03:00

fix lxdialog cc/ldflags check script for darwin/osx

git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@4864 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nbd 2006-09-27 12:20:18 +00:00
parent aa765b43a2
commit 78981f18b8

View File

@ -4,21 +4,25 @@
# What library to link
ldflags()
{
$cc -print-file-name=libncursesw.so | 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'
exit
fi
for ext in so dylib; do
for dir in "" /usr/local/lib /opt/local/lib; do
$cc ${dir:+-L$dir} -print-file-name=libncursesw.$ext | grep -q /
if [ $? -eq 0 ]; then
echo $dir '-lncursesw'
exit
fi
$cc ${dir:+-L$dir} -print-file-name=libncurses.$ext | grep -q /
if [ $? -eq 0 ]; then
echo $dir '-lncurses'
exit
fi
$cc ${dir:+-L$dir} -print-file-name=libcurses.$ext | grep -q /
if [ $? -eq 0 ]; then
echo $dir '-lcurses'
exit
fi
done
done
exit 1
}
@ -29,6 +33,8 @@ ccflags()
echo '-I/usr/include/ncurses -DCURSES_LOC="<ncurses.h>"'
elif [ -f /usr/include/ncurses/curses.h ]; then
echo '-I/usr/include/ncurses -DCURSES_LOC="<ncurses/curses.h>"'
elif [ -f /opt/local/include/ncurses/ncurses.h ]; then
echo '-I/opt/local/include/ncurses -DCURSES_LOC="<ncurses/ncurses.h>"'
elif [ -f /usr/include/ncurses.h ]; then
echo '-DCURSES_LOC="<ncurses.h>"'
else