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