From 1cd181c93604ba8ef8109d6d907c0f1c71bc441d Mon Sep 17 00:00:00 2001 From: Nikias Bassen Date: Thu, 20 Apr 2017 15:08:38 +0200 Subject: build: Fix check for previously installed cython bindings Due to the removal of pkg-config check for libxml2, $PKG_CONFIG was not defined and a check for libplist's include dir via pkg-config failed. By invoking PKG_PROG_PKG_CONFIG $PKG_CONFIG will be defined and the check works again. --- configure.ac | 1 + 1 file changed, 1 insertion(+) diff --git a/configure.ac b/configure.ac index 61eb8ef..1daa614 100644 --- a/configure.ac +++ b/configure.ac @@ -113,6 +113,7 @@ else CYTHON=false fi if [test "x$CYTHON" != "xfalse"]; then + PKG_PROG_PKG_CONFIG AC_MSG_CHECKING([for libplist Cython bindings]) CYTHON_PLIST_INCLUDE_DIR=$($PKG_CONFIG --variable=includedir libplist)/plist/cython if [test ! -d "$CYTHON_PLIST_INCLUDE_DIR"]; then -- cgit v1.1-32-gdbae