2 # SPDX-License-Identifier: GPL-2.0
7 PKG="gtk+-2.0 gmodule-2.0 libglade-2.0"
9 if [ -z "$(command -v ${HOSTPKG_CONFIG})" ]; then
11 echo >&2 "* 'make gconfig' requires '${HOSTPKG_CONFIG}'. Please install it."
16 if ! ${HOSTPKG_CONFIG} --exists $PKG; then
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"
25 if ! ${HOSTPKG_CONFIG} --atleast-version=2.0.0 gtk+-2.0; then
27 echo >&2 "* GTK+ is present but version >= 2.0.0 is required."
32 ${HOSTPKG_CONFIG} --cflags ${PKG} > ${cflags}
33 ${HOSTPKG_CONFIG} --libs ${PKG} > ${libs}