From: Emil Velikov Date: Tue, 18 Apr 2017 10:33:42 +0000 (+0100) Subject: configure.ac: manually expand PKG_CHECK_VAR X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=179e21a72045ceb09cebf4c426bae16580fdd438;p=mesa.git configure.ac: manually expand PKG_CHECK_VAR The macro is introduced with pkgconfig v0.28 which isn't universally available. Thus it will error at configure stage. Reported-by: Brian Paul Tested-by: Brian Paul Fixes: ce562f9e3fa ("EGL: Implement the libglvnd interface for EGL (v3)") Signed-off-by: Emil Velikov --- diff --git a/configure.ac b/configure.ac index e18f12f0b95..e1c60d842b5 100644 --- a/configure.ac +++ b/configure.ac @@ -1367,7 +1367,7 @@ if test "x$enable_libglvnd" = xyes ; then esac PKG_CHECK_MODULES([GLVND], libglvnd >= 0.2.0) - PKG_CHECK_VAR(LIBGLVND_DATADIR, libglvnd, datadir) + LIBGLVND_DATADIR=`$PKG_CONFIG --variable=datadir libglvnd` AC_SUBST([LIBGLVND_DATADIR]) DEFINES="${DEFINES} -DUSE_LIBGLVND=1"