]> Git Repo - linux.git/blame - scripts/kconfig/nconf-cfg.sh
mm/list_lru.c: set bit in memcg shrinker bitmap on first list_lru item appearance
[linux.git] / scripts / kconfig / nconf-cfg.sh
CommitLineData
1c5af5cf
MY
1#!/bin/sh
2# SPDX-License-Identifier: GPL-2.0
3
4PKG="ncursesw menuw panelw"
5PKG2="ncurses menu panel"
6
7if pkg-config --exists $PKG; then
8 echo cflags=\"$(pkg-config --cflags $PKG)\"
9 echo libs=\"$(pkg-config --libs $PKG)\"
10 exit 0
11fi
12
13if pkg-config --exists $PKG2; then
14 echo cflags=\"$(pkg-config --cflags $PKG2)\"
15 echo libs=\"$(pkg-config --libs $PKG2)\"
16 exit 0
17fi
18
19# Unfortunately, some distributions (e.g. openSUSE) cannot find ncurses
20# by pkg-config.
21if [ -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
25fi
26
27if [ -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
31fi
32
33if [ -f /usr/include/ncurses.h ]; then
34 echo cflags=\"-D_GNU_SOURCE\"
35 echo libs=\"-lncurses -lmenu -lpanel\"
36 exit 0
37fi
38
39echo >&2 "*"
40echo >&2 "* Unable to find the ncurses package."
41echo >&2 "* Install ncurses (ncurses-devel or libncurses-dev"
42echo >&2 "* depending on your distribution)."
43echo >&2 "*"
44exit 1
This page took 0.069648 seconds and 4 git commands to generate.