Merge tag 'nfs-for-6.4-1' of git://git.linux-nfs.org/projects/anna/linux-nfs
[linux-block.git] / scripts / kconfig / gconf-cfg.sh
CommitLineData
b464ef58
MY
1#!/bin/sh
2# SPDX-License-Identifier: GPL-2.0
3
3122c844
MY
4cflags=$1
5libs=$2
6
b464ef58
MY
7PKG="gtk+-2.0 gmodule-2.0 libglade-2.0"
8
d5ea4fec 9if [ -z "$(command -v ${HOSTPKG_CONFIG})" ]; then
fd65465b 10 echo >&2 "*"
d5ea4fec 11 echo >&2 "* 'make gconfig' requires '${HOSTPKG_CONFIG}'. Please install it."
fd65465b
MY
12 echo >&2 "*"
13 exit 1
14fi
15
d5ea4fec 16if ! ${HOSTPKG_CONFIG} --exists $PKG; then
b464ef58
MY
17 echo >&2 "*"
18 echo >&2 "* Unable to find the GTK+ installation. Please make sure that"
19 echo >&2 "* the GTK+ 2.0 development package is correctly installed."
20 echo >&2 "* You need $PKG"
21 echo >&2 "*"
22 exit 1
23fi
24
d5ea4fec 25if ! ${HOSTPKG_CONFIG} --atleast-version=2.0.0 gtk+-2.0; then
b464ef58
MY
26 echo >&2 "*"
27 echo >&2 "* GTK+ is present but version >= 2.0.0 is required."
28 echo >&2 "*"
29 exit 1
30fi
31
3122c844
MY
32${HOSTPKG_CONFIG} --cflags ${PKG} > ${cflags}
33${HOSTPKG_CONFIG} --libs ${PKG} > ${libs}