2006-01-08 18:39:44 +01:00
|
|
|
#!/bin/sh
|
|
|
|
# Check ncurses compatibility
|
|
|
|
|
|
|
|
# What library to link
|
|
|
|
ldflags()
|
|
|
|
{
|
2006-01-21 12:03:09 +01:00
|
|
|
$cc -print-file-name=libncursesw.so | grep -q /
|
2006-01-15 15:28:35 +01:00
|
|
|
if [ $? -eq 0 ]; then
|
|
|
|
echo '-lncursesw'
|
|
|
|
exit
|
|
|
|
fi
|
2006-01-21 12:03:09 +01:00
|
|
|
$cc -print-file-name=libncurses.so | grep -q /
|
2006-01-15 15:28:35 +01:00
|
|
|
if [ $? -eq 0 ]; then
|
2006-01-08 18:39:44 +01:00
|
|
|
echo '-lncurses'
|
2006-01-15 15:28:35 +01:00
|
|
|
exit
|
2006-01-08 18:39:44 +01:00
|
|
|
fi
|
2006-01-21 12:03:09 +01:00
|
|
|
$cc -print-file-name=libcurses.so | grep -q /
|
2006-01-15 15:28:35 +01:00
|
|
|
if [ $? -eq 0 ]; then
|
|
|
|
echo '-lcurses'
|
|
|
|
exit
|
|
|
|
fi
|
|
|
|
exit 1
|
2006-01-08 18:39:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
# Where is ncurses.h?
|
|
|
|
ccflags()
|
|
|
|
{
|
|
|
|
if [ -f /usr/include/ncurses/ncurses.h ]; then
|
|
|
|
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 /usr/include/ncurses.h ]; then
|
|
|
|
echo '-DCURSES_LOC="<ncurses.h>"'
|
|
|
|
else
|
|
|
|
echo '-DCURSES_LOC="<curses.h>"'
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2006-01-21 12:03:09 +01:00
|
|
|
# Temp file, try to clean up after us
|
|
|
|
tmp=.lxdialog.tmp
|
|
|
|
trap "rm -f $tmp" 0 1 2 3 15
|
|
|
|
|
2006-01-08 18:39:44 +01:00
|
|
|
# Check if we can link to ncurses
|
|
|
|
check() {
|
2006-01-21 12:03:09 +01:00
|
|
|
echo "main() {}" | $cc -xc - -o $tmp 2> /dev/null
|
2006-01-08 18:39:44 +01:00
|
|
|
if [ $? != 0 ]; then
|
|
|
|
echo " *** Unable to find the ncurses libraries." 1>&2
|
|
|
|
echo " *** make menuconfig require the ncurses libraries" 1>&2
|
|
|
|
echo " *** " 1>&2
|
|
|
|
echo " *** Install ncurses (ncurses-devel) and try again" 1>&2
|
|
|
|
echo " *** " 1>&2
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
usage() {
|
|
|
|
printf "Usage: $0 [-check compiler options|-header|-library]\n"
|
|
|
|
}
|
|
|
|
|
|
|
|
if [ $# == 0 ]; then
|
|
|
|
usage
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2006-01-21 12:03:09 +01:00
|
|
|
cc=""
|
2006-01-08 18:39:44 +01:00
|
|
|
case "$1" in
|
|
|
|
"-check")
|
|
|
|
shift
|
2006-01-15 15:28:35 +01:00
|
|
|
cc="$@"
|
2006-01-08 18:39:44 +01:00
|
|
|
check
|
|
|
|
;;
|
|
|
|
"-ccflags")
|
|
|
|
ccflags
|
|
|
|
;;
|
|
|
|
"-ldflags")
|
2006-01-15 15:28:35 +01:00
|
|
|
shift
|
|
|
|
cc="$@"
|
2006-01-08 18:39:44 +01:00
|
|
|
ldflags
|
|
|
|
;;
|
|
|
|
"*")
|
|
|
|
usage
|
|
|
|
exit 1
|
|
|
|
;;
|
|
|
|
esac
|