From f5df31c76118816124be323a3caed22f42cdb50c Mon Sep 17 00:00:00 2001 From: Fabrice Fontaine Date: Thu, 10 Dec 2020 22:32:59 +0100 Subject: [PATCH] meson.build: KMS support also depends on dri2 Kernel modesettings support also depends on dri2, see ./hw/xfree86/drivers/modesetting/meson.build So update meson.build to reflect the changes made in configure.ac by commit 9c81b8f5b5d7bc987f73e8ef01a81e61205e58ee Signed-off-by: Fabrice Fontaine (cherry picked from commit 5d73a8b59e0d01d1ee4cb484e4b43563cec2eee9) --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 0531463f5..df2ba3663 100644 --- a/meson.build +++ b/meson.build @@ -348,7 +348,7 @@ if not libdrm_dep.found() and libdrm_required error('DRI requested, but LIBDRM not found') endif -build_modesetting = libdrm_dep.found() +build_modesetting = libdrm_dep.found() and dri2proto_dep.found() build_vbe = false if get_option('vbe') == 'auto'