--> https://docs.mesa3d.org/relnotes/24.3.2 - supersedes the following patches: * 0001-dri-don-t-fetch-X11-modifiers-if-we-don-t-support-th.patch * 0002-egl-wayland-only-supply-LINEAR-modifier-when-support.patch * 0003-egl-wayland-fallback-to-implicit-modifiers-if-advert.patch OBS-URL: https://build.opensuse.org/package/show/X11:XOrg/Mesa?expand=0&rev=1362
16 lines
619 B
Diff
16 lines
619 B
Diff
Index: mesa-24.3.0/meson.build
|
|
===================================================================
|
|
--- mesa-24.3.0.orig/meson.build
|
|
+++ mesa-24.3.0/meson.build
|
|
@@ -2103,8 +2103,10 @@ if with_platform_x11
|
|
endif
|
|
endif
|
|
if with_dri_platform == 'drm'
|
|
+ dep_x11_xcb = dependency('x11-xcb')
|
|
dep_xcb_dri2 = dependency('xcb-dri2', version : '>= 1.8', required : with_x11_dri2)
|
|
|
|
+ dep_xcb = dependency('xcb')
|
|
dep_xcb_dri3 = dependency('xcb-dri3', version : '>= 1.13')
|
|
dep_xcb_present = dependency('xcb-present', version : '>= 1.13')
|
|
if (dep_xcb_dri3.version().version_compare('>= 1.17') and
|