diff options
author | Emil Velikov <[email protected]> | 2017-04-18 11:33:42 +0100 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2017-04-24 13:12:51 +0100 |
commit | 3d40db7892d314b78353e2ee28912873c17ca844 (patch) | |
tree | 3a86c1c2a2e060a11f0a8c670c522b5698934fc8 | |
parent | 99da9dfd955fae26aede6d442cf564eee25d5048 (diff) |
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 <[email protected]>
Tested-by: Brian Paul <[email protected]>
Fixes: ce562f9e3fa ("EGL: Implement the libglvnd interface for EGL (v3)")
Signed-off-by: Emil Velikov <[email protected]>
(cherry picked from commit 179e21a72045ceb09cebf4c426bae16580fdd438)
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
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" |