2 # Check ncurses compatibility
7 pkg-config
--libs ncursesw
2>/dev
/null
&& exit
8 pkg-config
--libs ncurses
2>/dev
/null
&& exit
9 for ext
in so a dll.a dylib
; do
10 for lib
in ncursesw ncurses curses
; do
11 $cc -print-file-name=lib
${lib}.
${ext} |
grep -q /
24 if [ -f /usr
/include
/ncursesw
/curses.h
]; then
25 echo '-I/usr/include/ncursesw -DCURSES_LOC="<curses.h>"'
26 echo ' -DNCURSES_WIDECHAR=1'
27 elif [ -f /usr
/include
/ncurses
/ncurses.h
]; then
28 echo '-I/usr/include/ncurses -DCURSES_LOC="<ncurses.h>"'
29 elif [ -f /usr
/include
/ncurses
/curses.h
]; then
30 echo '-I/usr/include/ncurses -DCURSES_LOC="<curses.h>"'
31 elif [ -f /usr
/include
/ncurses.h
]; then
32 echo '-DCURSES_LOC="<ncurses.h>"'
34 echo '-DCURSES_LOC="<curses.h>"'
38 # Temp file, try to clean up after us
40 trap "rm -f $tmp" 0 1 2 3 15
42 # Check if we can link to ncurses
44 $cc -x c
- -o $tmp 2>/dev
/null
<<'EOF'
49 echo " *** Unable to find the ncurses libraries or the" 1>&2
50 echo " *** required header files." 1>&2
51 echo " *** 'make menuconfig' requires the ncurses libraries." 1>&2
53 echo " *** Install ncurses (ncurses-devel) and try again." 1>&2
60 printf "Usage: $0 [-check compiler options|-ccflags|-ldflags compiler options]\n"