From 1ef97ea0ab607c4807e7157b25fe32acbf7bdac4 Mon Sep 17 00:00:00 2001 From: Dave Airlie Date: Tue, 31 Aug 2021 07:56:18 +1000 Subject: [PATCH] meson: fix regression finding shm dep MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Just copy the dep into both places. Fixes: b5c390c113d3 ("vulkan/wsi: add support for detecting mit-shm pixmaps.") Reviewed-by: Adam Jackson Tested-by: Zoltán Böszörményi Part-of: --- meson.build | 1 + 1 file changed, 1 insertion(+) diff --git a/meson.build b/meson.build index db6766ee6e7..9a1ca57f4de 100644 --- a/meson.build +++ b/meson.build @@ -1963,6 +1963,7 @@ if with_platform_x11 dep_xext = dependency('xext') dep_xfixes = dependency('xfixes', version : '>= 2.0') dep_xcb_glx = dependency('xcb-glx', version : '>= 1.8.1') + dep_xcb_shm = dependency('xcb-shm') endif if (with_any_vk or with_glx == 'dri' or with_egl or (with_gallium_vdpau or with_gallium_xvmc or with_gallium_va or