|
@@ -4,17 +4,17 @@
|
|
# What library to link
|
|
# What library to link
|
|
ldflags()
|
|
ldflags()
|
|
{
|
|
{
|
|
- echo "main() {}" | $cc -lncursesw -xc - -o /dev/null 2> /dev/null
|
|
|
|
|
|
+ $cc -print-file-name=libncursesw.so | grep -q /
|
|
if [ $? -eq 0 ]; then
|
|
if [ $? -eq 0 ]; then
|
|
echo '-lncursesw'
|
|
echo '-lncursesw'
|
|
exit
|
|
exit
|
|
fi
|
|
fi
|
|
- echo "main() {}" | $cc -lncurses -xc - -o /dev/null 2> /dev/null
|
|
|
|
|
|
+ $cc -print-file-name=libncurses.so | grep -q /
|
|
if [ $? -eq 0 ]; then
|
|
if [ $? -eq 0 ]; then
|
|
echo '-lncurses'
|
|
echo '-lncurses'
|
|
exit
|
|
exit
|
|
fi
|
|
fi
|
|
- echo "main() {}" | $cc -lcurses -xc - -o /dev/null 2> /dev/null
|
|
|
|
|
|
+ $cc -print-file-name=libcurses.so | grep -q /
|
|
if [ $? -eq 0 ]; then
|
|
if [ $? -eq 0 ]; then
|
|
echo '-lcurses'
|
|
echo '-lcurses'
|
|
exit
|
|
exit
|
|
@@ -36,10 +36,13 @@ ccflags()
|
|
fi
|
|
fi
|
|
}
|
|
}
|
|
|
|
|
|
-compiler=""
|
|
|
|
|
|
+# 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 if we can link to ncurses
|
|
check() {
|
|
check() {
|
|
- echo "main() {}" | $cc -xc - -o /dev/null 2> /dev/null
|
|
|
|
|
|
+ echo "main() {}" | $cc -xc - -o $tmp 2> /dev/null
|
|
if [ $? != 0 ]; then
|
|
if [ $? != 0 ]; then
|
|
echo " *** Unable to find the ncurses libraries." 1>&2
|
|
echo " *** Unable to find the ncurses libraries." 1>&2
|
|
echo " *** make menuconfig require the ncurses libraries" 1>&2
|
|
echo " *** make menuconfig require the ncurses libraries" 1>&2
|
|
@@ -59,6 +62,7 @@ if [ $# == 0 ]; then
|
|
exit 1
|
|
exit 1
|
|
fi
|
|
fi
|
|
|
|
|
|
|
|
+cc=""
|
|
case "$1" in
|
|
case "$1" in
|
|
"-check")
|
|
"-check")
|
|
shift
|
|
shift
|