vlc | branch: master | Rémi Denis-Courmont <[email protected]> | Sat Sep 10 17:06:07 2016 +0300| [6c5ddd313ba72876029db5d58d390f1d6c6d3a59] | committer: Rémi Denis-Courmont
configure: fix libva error/warning message PKG_CHECK_EXISTS does not set any variables, not even *_PKG_ERRORS. > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=6c5ddd313ba72876029db5d58d390f1d6c6d3a59 --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 91b9315..ae59594 100644 --- a/configure.ac +++ b/configure.ac @@ -2350,7 +2350,7 @@ have_vaapi="no" have_vaapi_drm="no" have_vaapi_x11="no" AS_IF([test "${enable_libva}" != "no"], [ - PKG_CHECK_EXISTS([libva], [ + PKG_CHECK_MODULES([LIBVA], [libva], [ have_vaapi="yes" ], [ AS_IF([test -n "${enable_libva}"], [ _______________________________________________ vlc-commits mailing list [email protected] https://mailman.videolan.org/listinfo/vlc-commits
