Module: Mesa Branch: master Commit: 3012885b3fa78ad767c3f3f7299be85b4505b9d9 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=3012885b3fa78ad767c3f3f7299be85b4505b9d9
Author: Nicholas Miell <[email protected]> Date: Tue Oct 17 18:04:16 2017 -0700 Fix the xf86vm meson dependency The pkg-config file is called xxf86vm. Signed-off-by: Nicholas Miell <[email protected]> Reviewed-by: Dylan Baker <[email protected]> Reviewed-by: Eric Engestrom <[email protected]> --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 33121600d0..82c4d2ed12 100644 --- a/meson.build +++ b/meson.build @@ -678,7 +678,7 @@ if with_platform_x11 dep_xdamage = dependency('xdamage', version : '>= 1.1') dep_xfixes = dependency('xfixes') dep_xcb_glx = dependency('xcb-glx', version : '>= 1.8.1') - dep_xf86vm = dependency('xf86vm', required : false) + dep_xf86vm = dependency('xxf86vm', required : false) endif if with_any_vk or (with_glx == 'dri' and with_dri_platform == 'drm') dep_xcb = dependency('xcb') _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
