2007-02-24 11:00:05 +00:00
|
|
|
#!/bin/sh
|
|
|
|
# Check ncurses compatibility
|
|
|
|
|
2010-05-24 14:33:45 +00:00
|
|
|
OS=`uname`
|
|
|
|
|
|
|
|
# Under MACOS make sure that the macports-installed version is used.
|
|
|
|
case "$OS" in
|
|
|
|
Darwin) BASEDIR="/opt/local";;
|
|
|
|
*) BASEDIR="/usr";;
|
|
|
|
esac
|
|
|
|
|
|
|
|
INCLUDEPATH="${BASEDIR}/include"
|
|
|
|
LIBPATH="${BASEDIR}/lib"
|
|
|
|
|
2007-02-24 11:00:05 +00:00
|
|
|
# What library to link
|
|
|
|
ldflags()
|
|
|
|
{
|
2008-11-30 20:59:15 +00:00
|
|
|
for ext in so a dylib ; do
|
|
|
|
for lib in ncursesw ncurses curses ; do
|
2010-05-24 14:33:45 +00:00
|
|
|
if [ -f "${LIBPATH}/lib${lib}.${ext}" ]; then
|
|
|
|
echo "-L${LIBPATH} -l${lib}"
|
2008-11-30 20:59:15 +00:00
|
|
|
exit
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
done
|
2007-02-24 11:00:05 +00:00
|
|
|
exit 1
|
|
|
|
}
|
|
|
|
|
|
|
|
# Where is ncurses.h?
|
|
|
|
ccflags()
|
|
|
|
{
|
2010-05-24 14:33:45 +00:00
|
|
|
if [ -f "${INCLUDEPATH}/ncursesw/ncurses.h" ]; then
|
|
|
|
echo "-I${INCLUDEPATH} \"-DCURSES_LOC=<ncursesw/ncurses.h>\""
|
|
|
|
elif [ -f "${INCLUDEPATH}/ncurses/ncurses.h" ]; then
|
|
|
|
echo "-I${INCLUDEPATH} \"-DCURSES_LOC=<ncurses/ncurses.h>\""
|
|
|
|
elif [ -f "${INCLUDEPATH}/ncursesw/curses.h" ]; then
|
|
|
|
echo "-I${INCLUDEPATH} \"-DCURSES_LOC=<ncursesw/curses.h>\""
|
|
|
|
elif [ -f "${INCLUDEPATH}/ncurses/curses.h" ]; then
|
|
|
|
echo "-I${INCLUDEPATH} \"-DCURSES_LOC=<ncurses/curses.h>\""
|
|
|
|
elif [ -f "${INCLUDEPATH}/ncurses.h" ]; then
|
|
|
|
echo "-I${INCLUDEPATH} \"-DCURSES_LOC=<ncurses.h>\""
|
|
|
|
elif [ -f "${INCLUDEPATH}/curses.h" ]; then
|
|
|
|
echo "-I${INCLUDEPATH} \"-DCURSES_LOC=<curses.h>\""
|
2007-02-24 11:00:05 +00:00
|
|
|
else
|
2010-05-24 14:33:45 +00:00
|
|
|
exit 1
|
2007-02-24 11:00:05 +00:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
# Temp file, try to clean up after us
|
|
|
|
tmp=.lxdialog.tmp
|
|
|
|
trap "rm -f $tmp" 0 1 2 3 15
|
|
|
|
|
|
|
|
# Check if we can link to ncurses
|
|
|
|
check() {
|
2010-05-24 14:33:45 +00:00
|
|
|
IF=`echo $(ccflags) | sed -e 's/"//g'`
|
|
|
|
$cc $IF $(ldflags) -xc - -o $tmp 2>/dev/null <<'EOF'
|
2008-11-30 20:59:15 +00:00
|
|
|
#include CURSES_LOC
|
|
|
|
main() {}
|
|
|
|
EOF
|
|
|
|
if [ $? != 0 ]; then
|
|
|
|
echo " *** Unable to find the ncurses libraries or the" 1>&2
|
|
|
|
echo " *** required header files." 1>&2
|
|
|
|
echo " *** 'make menuconfig' requires the ncurses libraries." 1>&2
|
|
|
|
echo " *** " 1>&2
|
|
|
|
echo " *** Install ncurses (ncurses-devel) and try again." 1>&2
|
|
|
|
echo " *** " 1>&2
|
|
|
|
exit 1
|
2007-02-24 11:00:05 +00:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
usage() {
|
2009-03-04 18:56:07 +00:00
|
|
|
printf "Usage: $0 [-check compiler options|-ccflags|-ldflags compiler options]\n"
|
2007-02-24 11:00:05 +00:00
|
|
|
}
|
|
|
|
|
2008-07-22 09:16:07 +00:00
|
|
|
if [ $# -eq 0 ]; then
|
2007-02-24 11:00:05 +00:00
|
|
|
usage
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
cc=""
|
|
|
|
case "$1" in
|
|
|
|
"-check")
|
|
|
|
shift
|
|
|
|
cc="$@"
|
|
|
|
check
|
|
|
|
;;
|
|
|
|
"-ccflags")
|
|
|
|
ccflags
|
|
|
|
;;
|
|
|
|
"-ldflags")
|
|
|
|
shift
|
|
|
|
cc="$@"
|
|
|
|
ldflags
|
|
|
|
;;
|
|
|
|
"*")
|
|
|
|
usage
|
|
|
|
exit 1
|
|
|
|
;;
|
|
|
|
esac
|