2018-05-22 00:22:21 -07:00
|
|
|
#!/bin/sh
|
|
|
|
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
|
2024-06-11 09:08:05 -07:00
|
|
|
set -eu
|
|
|
|
|
2022-12-10 19:54:48 -07:00
|
|
|
cflags=$1
|
|
|
|
libs=$2
|
|
|
|
|
2018-05-22 00:22:21 -07:00
|
|
|
PKG="ncursesw menuw panelw"
|
|
|
|
PKG2="ncurses menu panel"
|
|
|
|
|
2022-04-01 16:18:02 -07:00
|
|
|
if [ -n "$(command -v ${HOSTPKG_CONFIG})" ]; then
|
|
|
|
if ${HOSTPKG_CONFIG} --exists $PKG; then
|
2022-12-10 19:54:48 -07:00
|
|
|
${HOSTPKG_CONFIG} --cflags ${PKG} > ${cflags}
|
|
|
|
${HOSTPKG_CONFIG} --libs ${PKG} > ${libs}
|
kconfig: do not require pkg-config on make {menu,n}config
Meelis Roos reported a {menu,n}config regression:
"I have libncurses devel package installed in the default system
location (as do 99%+ on actual developers probably) and in this
case, pkg-config is useless. pkg-config is needed only when
libraries and headers are installed in non-default locations but
it is bad to require installation of pkg-config on all the machines
where make menuconfig would be possibly run."
For {menu,n}config, do not use pkg-config if it is not installed.
For {g,x}config, keep checking pkg-config since we really rely on it
for finding the installation paths of the required packages.
Fixes: 4ab3b80159d4 ("kconfig: check for pkg-config on make {menu,n,g,x}config")
Reported-by: Meelis Roos <mroos@linux.ee>
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Tested-by: Meelis Roos <mroos@linux.ee>
Tested-by: Randy Dunlap <rdunlap@infradead.org>
2018-08-31 02:34:55 -07:00
|
|
|
exit 0
|
|
|
|
fi
|
2018-05-22 00:22:21 -07:00
|
|
|
|
2022-04-01 16:18:02 -07:00
|
|
|
if ${HOSTPKG_CONFIG} --exists $PKG2; then
|
2022-12-10 19:54:48 -07:00
|
|
|
${HOSTPKG_CONFIG} --cflags ${PKG2} > ${cflags}
|
|
|
|
${HOSTPKG_CONFIG} --libs ${PKG2} > ${libs}
|
kconfig: do not require pkg-config on make {menu,n}config
Meelis Roos reported a {menu,n}config regression:
"I have libncurses devel package installed in the default system
location (as do 99%+ on actual developers probably) and in this
case, pkg-config is useless. pkg-config is needed only when
libraries and headers are installed in non-default locations but
it is bad to require installation of pkg-config on all the machines
where make menuconfig would be possibly run."
For {menu,n}config, do not use pkg-config if it is not installed.
For {g,x}config, keep checking pkg-config since we really rely on it
for finding the installation paths of the required packages.
Fixes: 4ab3b80159d4 ("kconfig: check for pkg-config on make {menu,n,g,x}config")
Reported-by: Meelis Roos <mroos@linux.ee>
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Tested-by: Meelis Roos <mroos@linux.ee>
Tested-by: Randy Dunlap <rdunlap@infradead.org>
2018-08-31 02:34:55 -07:00
|
|
|
exit 0
|
|
|
|
fi
|
2018-05-22 00:22:21 -07:00
|
|
|
fi
|
|
|
|
|
kconfig: do not require pkg-config on make {menu,n}config
Meelis Roos reported a {menu,n}config regression:
"I have libncurses devel package installed in the default system
location (as do 99%+ on actual developers probably) and in this
case, pkg-config is useless. pkg-config is needed only when
libraries and headers are installed in non-default locations but
it is bad to require installation of pkg-config on all the machines
where make menuconfig would be possibly run."
For {menu,n}config, do not use pkg-config if it is not installed.
For {g,x}config, keep checking pkg-config since we really rely on it
for finding the installation paths of the required packages.
Fixes: 4ab3b80159d4 ("kconfig: check for pkg-config on make {menu,n,g,x}config")
Reported-by: Meelis Roos <mroos@linux.ee>
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Tested-by: Meelis Roos <mroos@linux.ee>
Tested-by: Randy Dunlap <rdunlap@infradead.org>
2018-08-31 02:34:55 -07:00
|
|
|
# Check the default paths in case pkg-config is not installed.
|
|
|
|
# (Even if it is installed, some distributions such as openSUSE cannot
|
|
|
|
# find ncurses by pkg-config.)
|
2018-05-22 00:22:21 -07:00
|
|
|
if [ -f /usr/include/ncursesw/ncurses.h ]; then
|
2022-12-10 19:54:48 -07:00
|
|
|
echo -D_GNU_SOURCE -I/usr/include/ncursesw > ${cflags}
|
|
|
|
echo -lncursesw -lmenuw -lpanelw > ${libs}
|
2018-05-22 00:22:21 -07:00
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -f /usr/include/ncurses/ncurses.h ]; then
|
2022-12-10 19:54:48 -07:00
|
|
|
echo -D_GNU_SOURCE -I/usr/include/ncurses > ${cflags}
|
|
|
|
echo -lncurses -lmenu -lpanel > ${libs}
|
2018-05-22 00:22:21 -07:00
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -f /usr/include/ncurses.h ]; then
|
2022-12-10 19:54:48 -07:00
|
|
|
echo -D_GNU_SOURCE > ${cflags}
|
|
|
|
echo -lncurses -lmenu -lpanel > ${libs}
|
2018-05-22 00:22:21 -07:00
|
|
|
exit 0
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo >&2 "*"
|
|
|
|
echo >&2 "* Unable to find the ncurses package."
|
|
|
|
echo >&2 "* Install ncurses (ncurses-devel or libncurses-dev"
|
|
|
|
echo >&2 "* depending on your distribution)."
|
|
|
|
echo >&2 "*"
|
2022-04-01 16:18:02 -07:00
|
|
|
echo >&2 "* You may also need to install ${HOSTPKG_CONFIG} to find the"
|
2019-11-05 08:07:36 -07:00
|
|
|
echo >&2 "* ncurses installed in a non-default location."
|
|
|
|
echo >&2 "*"
|
2018-05-22 00:22:21 -07:00
|
|
|
exit 1
|