blob: cbd90c28c05f23f0f07fc688f912557860317cf4 [file] [log] [blame]
Patrick Georgi53ea1d42019-11-22 16:55:58 +01001#!/bin/sh
2# SPDX-License-Identifier: GPL-2.0
3
4PKG="gtk+-2.0 gmodule-2.0 libglade-2.0"
5
Patrick Georgi1215cc72022-10-28 01:00:26 +02006if [ -z "$(command -v ${HOSTPKG_CONFIG})" ]; then
Patrick Georgi53ea1d42019-11-22 16:55:58 +01007 echo >&2 "*"
Patrick Georgi1215cc72022-10-28 01:00:26 +02008 echo >&2 "* 'make gconfig' requires '${HOSTPKG_CONFIG}'. Please install it."
Patrick Georgi53ea1d42019-11-22 16:55:58 +01009 echo >&2 "*"
10 exit 1
11fi
12
Patrick Georgi1215cc72022-10-28 01:00:26 +020013if ! ${HOSTPKG_CONFIG} --exists $PKG; then
Patrick Georgi53ea1d42019-11-22 16:55:58 +010014 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
20fi
21
Patrick Georgi1215cc72022-10-28 01:00:26 +020022if ! ${HOSTPKG_CONFIG} --atleast-version=2.0.0 gtk+-2.0; then
Patrick Georgi53ea1d42019-11-22 16:55:58 +010023 echo >&2 "*"
24 echo >&2 "* GTK+ is present but version >= 2.0.0 is required."
25 echo >&2 "*"
26 exit 1
27fi
28
Patrick Georgi1215cc72022-10-28 01:00:26 +020029echo cflags=\"$(${HOSTPKG_CONFIG} --cflags $PKG)\"
30echo libs=\"$(${HOSTPKG_CONFIG} --libs $PKG)\"