Mesa (main): meson: fix regression finding shm dep

GitLab Mirror gitlab-mirror at kemper.freedesktop.org
Tue Aug 31 07:28:20 UTC 2021


Module: Mesa
Branch: main
Commit: 1ef97ea0ab607c4807e7157b25fe32acbf7bdac4
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=1ef97ea0ab607c4807e7157b25fe32acbf7bdac4

Author: Dave Airlie <airlied at redhat.com>
Date:   Tue Aug 31 07:56:18 2021 +1000

meson: fix regression finding shm dep

Just copy the dep into both places.

Fixes: b5c390c113d3 ("vulkan/wsi: add support for detecting mit-shm pixmaps.")
Reviewed-by: Adam Jackson <ajax at redhat.com>
Tested-by: Zoltán Böszörményi <zboszor at gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/12635>

---

 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



More information about the mesa-commit mailing list