aboutsummaryrefslogtreecommitdiff
path: root/m4
diff options
context:
space:
mode:
authorKylie McClain2015-12-14 08:12:29 -0500
committerKylie McClain2015-12-14 08:23:07 -0500
commit2753f47db6eae592a7d267960ae1917cd3c24d44 (patch)
tree1b8c48142d90e3c7bf2ca3096320719892e021e7 /m4
parent946cbf56077088444d6248e3e9cea76dce237e6d (diff)
downloadsolarc-theme-2753f47db6eae592a7d267960ae1917cd3c24d44.tar.gz
solarc-theme-2753f47db6eae592a7d267960ae1917cd3c24d44.tar.xz
solarc-theme-2753f47db6eae592a7d267960ae1917cd3c24d44.zip
m4/arc-gnome: Use correct pkg-config macro
This allows for ./configure to detect prefixed versions of pkg-config.
Diffstat (limited to 'm4')
-rw-r--r--m4/arc-gnome.m49
1 files changed, 2 insertions, 7 deletions
diff --git a/m4/arc-gnome.m4 b/m4/arc-gnome.m4
index 349d1e0..11a25db 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).])]