Merge tag 'u-boot-amlogic-20200406' of https://gitlab.denx.de/u-boot/custodians/u...
[oweals/u-boot.git] / scripts / kconfig / nconf-cfg.sh
1 #!/bin/sh
2 # SPDX-License-Identifier: GPL-2.0
3
4 PKG="ncursesw menuw panelw"
5 PKG2="ncurses menu panel"
6
7 if pkg-config --exists $PKG; then
8         echo cflags=\"$(pkg-config --cflags $PKG)\"
9         echo libs=\"$(pkg-config --libs $PKG)\"
10         exit 0
11 fi
12
13 if pkg-config --exists $PKG2; then
14         echo cflags=\"$(pkg-config --cflags $PKG2)\"
15         echo libs=\"$(pkg-config --libs $PKG2)\"
16         exit 0
17 fi
18
19 # Unfortunately, some distributions (e.g. openSUSE) cannot find ncurses
20 # by pkg-config.
21 if [ -f /usr/include/ncursesw/ncurses.h ]; then
22         echo cflags=\"-D_GNU_SOURCE -I/usr/include/ncursesw\"
23         echo libs=\"-lncursesw -lmenuw -lpanelw\"
24         exit 0
25 fi
26
27 if [ -f /usr/include/ncurses/ncurses.h ]; then
28         echo cflags=\"-D_GNU_SOURCE -I/usr/include/ncurses\"
29         echo libs=\"-lncurses -lmenu -lpanel\"
30         exit 0
31 fi
32
33 if [ -f /usr/include/ncurses.h ]; then
34         echo cflags=\"-D_GNU_SOURCE\"
35         echo libs=\"-lncurses -lmenu -lpanel\"
36         exit 0
37 fi
38
39 echo >&2 "*"
40 echo >&2 "* Unable to find the ncurses package."
41 echo >&2 "* Install ncurses (ncurses-devel or libncurses-dev"
42 echo >&2 "* depending on your distribution)."
43 echo >&2 "*"
44 exit 1