Module: Mesa Branch: master Commit: 66b1597a88f7c58eb45f29883ebf5235c1abb952 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=66b1597a88f7c58eb45f29883ebf5235c1abb952
Author: Ville Syrjälä <[email protected]> Date: Tue Oct 10 01:34:18 2017 +0300 meson: Fix xf86vm dep The pkg-config file is called xxf86vm.pc not xf86vm.pc. Cc: Dylan Baker <[email protected]> Cc: Eric Anholt <[email protected]> Signed-off-by: Ville Syrjälä <[email protected]> Reviewed-by: Eric Anholt <[email protected]> Reviewed-by: Dylan Baker <[email protected]> --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index bff40f697d..4ba00283ce 100644 --- a/meson.build +++ b/meson.build @@ -582,7 +582,7 @@ if with_platform_x11 dependency('xcb-glx', version : '>= 1.8.1'), ] - dep_xf86vm = dependency('xf86vm', required : false) + dep_xf86vm = dependency('xxf86vm', required : false) endif # TODO: XF86VIDMODE endif _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
