From 2753f47db6eae592a7d267960ae1917cd3c24d44 Mon Sep 17 00:00:00 2001 From: Kylie McClain Date: Mon, 14 Dec 2015 08:12:29 -0500 Subject: [PATCH] m4/arc-gnome: Use correct pkg-config macro This allows for ./configure to detect prefixed versions of pkg-config. --- m4/arc-gnome.m4 | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/m4/arc-gnome.m4 b/m4/arc-gnome.m4 index 349d1e027..11a25dbcf 100644 --- a/m4/arc-gnome.m4 +++ b/m4/arc-gnome.m4 @@ -2,7 +2,7 @@ # --------------- AC_DEFUN([ARC_GNOME], [ GNOMEDIR="$srcdir/common/gtk-3.0" - + PKG_PROG_PKG_CONFIG() AC_ARG_WITH( [gnome], [AS_HELP_STRING( @@ -10,12 +10,7 @@ AC_DEFUN([ARC_GNOME], [ [GNOME minor version] )], [GNOME_VERSION="$withval"], - [AC_CHECK_PROG(HAVE_PKG_CONFIG, pkg-config, yes) - AS_IF( - [test "x$HAVE_PKG_CONFIG" != "xyes"], - [AC_MSG_ERROR([Could not find pkg-config.])] - ) - PKG_CHECK_EXISTS( + [PKG_CHECK_EXISTS( [gtk+-3.0], [GNOME_VERSION=`$PKG_CONFIG --modversion gtk+-3.0`], [AC_MSG_ERROR([Could not determine GNOME version. Install GTK3 and its development files (libgtk-3-dev for Debian/Ubuntu based distros and gtk3-devel for RPM based distros).])]