From a8f95d9d06b9db022371a52acdf7416fd3b71bf2 Mon Sep 17 00:00:00 2001 From: Thomas Debesse Date: Thu, 19 Sep 2024 08:24:05 +0200 Subject: [PATCH] meson: fix linking gallium with xcb-xfixes when using x11 Commit 8f6fca89aa1812b03da6d9f7fac3966955abc41e from !30952 by @zmike renamed with_dri3 as with_dri in many places, but mistakenly deleted it there, instead of renaming it. This causes the linking of gallium to fail because of missing xcb_xfixes_destroy_region symbol from xcb-fixes. This is basically replaying commit cf17d6251653f4a98e7c4f904ea2f0bc0ecedd5c from !7164 by @duncan.hopkins but with the new syntax. Part-of: --- meson.build | 1 + 1 file changed, 1 insertion(+) diff --git a/meson.build b/meson.build index e52d4b7643e..f83be6ec601 100644 --- a/meson.build +++ b/meson.build @@ -2128,6 +2128,7 @@ if with_platform_x11 endif endif if (with_egl or + with_dri or with_any_vk or with_gallium_vdpau or with_gallium_xa) dep_xcb_xfixes = dependency('xcb-xfixes')