Linux 4.18.10
[linux/fpc-iii.git] / scripts / kconfig / gconf-cfg.sh
blob533b3d8f8f08dbab20fda2b3488d342f47ede5a2
1 #!/bin/sh
2 # SPDX-License-Identifier: GPL-2.0
4 PKG="gtk+-2.0 gmodule-2.0 libglade-2.0"
6 if ! pkg-config --exists $PKG; then
7 echo >&2 "*"
8 echo >&2 "* Unable to find the GTK+ installation. Please make sure that"
9 echo >&2 "* the GTK+ 2.0 development package is correctly installed."
10 echo >&2 "* You need $PKG"
11 echo >&2 "*"
12 exit 1
15 if ! pkg-config --atleast-version=2.0.0 gtk+-2.0; then
16 echo >&2 "*"
17 echo >&2 "* GTK+ is present but version >= 2.0.0 is required."
18 echo >&2 "*"
19 exit 1
22 echo cflags=\"$(pkg-config --cflags $PKG)\"
23 echo libs=\"$(pkg-config --libs $PKG)\"