a6210d28db
GCC14 now treats implicit int types as error so when check() from check-lxdialog.sh is called to check whether we can link against ncurses it will fail silently and the help text indicating to install ncurses is printed. However, this is not due to missing ncurses but once the stderr redirect to /dev/null is removed we can see the root cause: <stdin>:2:1: error: return type defaults to ‘int’ [-Wimplicit-int] So, in order for menuconfig to work with GCC14 lets just specify the return type of main() as int. Npte that the upstream kconfig in the linux kernel source tree no longer carries or uses the check-lxdialog.sh script since commit 1c5af5cf9308 (kconfig: refactor ncurses package checks for building mconf and nconf), so there is no commit we can backport to our kconfig copy. Signed-off-by: Robert Marko <robimarko@gmail.com> Reviewed-by: Petr Vorel <petr.vorel@gmail.com> Tested-by: Petr Vorel <petr.vorel@gmail.com> [yann.morin.1998@free.fr: add note about upstream kernel] Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
94 lines
2.1 KiB
Bash
Executable File
94 lines
2.1 KiB
Bash
Executable File
#!/bin/sh
|
|
# SPDX-License-Identifier: GPL-2.0
|
|
# Check ncurses compatibility
|
|
|
|
# What library to link
|
|
ldflags()
|
|
{
|
|
pkg-config --libs ncursesw 2>/dev/null && exit
|
|
pkg-config --libs ncurses 2>/dev/null && exit
|
|
for ext in so a dll.a dylib ; do
|
|
for lib in ncursesw ncurses curses ; do
|
|
$cc -print-file-name=lib${lib}.${ext} | grep -q /
|
|
if [ $? -eq 0 ]; then
|
|
echo "-l${lib}"
|
|
exit
|
|
fi
|
|
done
|
|
done
|
|
exit 1
|
|
}
|
|
|
|
# Where is ncurses.h?
|
|
ccflags()
|
|
{
|
|
if pkg-config --cflags ncursesw 2>/dev/null; then
|
|
echo '-DCURSES_LOC="<ncurses.h>" -DNCURSES_WIDECHAR=1'
|
|
elif pkg-config --cflags ncurses 2>/dev/null; then
|
|
echo '-DCURSES_LOC="<ncurses.h>"'
|
|
elif [ -f /usr/include/ncursesw/curses.h ]; then
|
|
echo '-I/usr/include/ncursesw -DCURSES_LOC="<curses.h>"'
|
|
echo ' -DNCURSES_WIDECHAR=1'
|
|
elif [ -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="<curses.h>"'
|
|
elif [ -f /usr/include/ncurses.h ]; then
|
|
echo '-DCURSES_LOC="<ncurses.h>"'
|
|
else
|
|
echo '-DCURSES_LOC="<curses.h>"'
|
|
fi
|
|
}
|
|
|
|
# Temp file, try to clean up after us
|
|
tmp=$(mktemp)
|
|
trap "rm -f $tmp" 0 1 2 3 15
|
|
|
|
# Check if we can link to ncurses
|
|
check() {
|
|
$cc -x c - -o $tmp 2>/dev/null <<'EOF'
|
|
#include CURSES_LOC
|
|
int 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 or libncurses-dev " 1>&2
|
|
echo " *** depending on your distribution) and try again." 1>&2
|
|
echo " *** " 1>&2
|
|
exit 1
|
|
fi
|
|
}
|
|
|
|
usage() {
|
|
printf "Usage: $0 [-check compiler options|-ccflags|-ldflags compiler options]\n"
|
|
}
|
|
|
|
if [ $# -eq 0 ]; then
|
|
usage
|
|
exit 1
|
|
fi
|
|
|
|
cc=""
|
|
case "$1" in
|
|
"-check")
|
|
shift
|
|
cc="$@"
|
|
check
|
|
;;
|
|
"-ccflags")
|
|
ccflags
|
|
;;
|
|
"-ldflags")
|
|
shift
|
|
cc="$@"
|
|
ldflags
|
|
;;
|
|
"*")
|
|
usage
|
|
exit 1
|
|
;;
|
|
esac
|