diff options
Diffstat (limited to 'meta/recipes-graphics/mesa/files/0001-meson-stop-building-XA-by-default.patch')
-rw-r--r-- | meta/recipes-graphics/mesa/files/0001-meson-stop-building-XA-by-default.patch | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/meta/recipes-graphics/mesa/files/0001-meson-stop-building-XA-by-default.patch b/meta/recipes-graphics/mesa/files/0001-meson-stop-building-XA-by-default.patch new file mode 100644 index 0000000000..4372675952 --- /dev/null +++ b/meta/recipes-graphics/mesa/files/0001-meson-stop-building-XA-by-default.patch | |||
@@ -0,0 +1,33 @@ | |||
1 | From 31a835dd2573c17d77efa8803c7fb28e0d58abc6 Mon Sep 17 00:00:00 2001 | ||
2 | From: Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com> | ||
3 | Date: Thu, 22 May 2025 20:11:46 +0300 | ||
4 | Subject: [PATCH] meson: stop building XA by default | ||
5 | |||
6 | Commit cf40099730c4 ("meson: deprecate gallium-xa") deprecated XA | ||
7 | tracker, but didn't disable it by default. Thus any attempt to disable | ||
8 | it would cause a deprecated option warning. Flip the default to disable | ||
9 | XA tracker by default. | ||
10 | |||
11 | Fixes: cf40099730c4 ("meson: deprecate gallium-xa") | ||
12 | Backport-to: 25.1 | ||
13 | Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com> | ||
14 | Upstream-Status: Backport [https://gitlab.freedesktop.org/mesa/mesa/-/commit/31cf6b94ad1dfaf4272b22a39d7e2805d03f9375] | ||
15 | --- | ||
16 | meson.options | 1 + | ||
17 | 1 file changed, 1 insertion(+) | ||
18 | |||
19 | diff --git a/meson.options b/meson.options | ||
20 | index e6c9567ade86..a56bcef6e2ca 100644 | ||
21 | --- a/meson.options | ||
22 | +++ b/meson.options | ||
23 | @@ -127,6 +127,7 @@ option( | ||
24 | option( | ||
25 | 'gallium-xa', | ||
26 | type : 'feature', | ||
27 | + value : 'disabled', | ||
28 | description : 'enable gallium xa frontend.', | ||
29 | deprecated: true, | ||
30 | ) | ||
31 | -- | ||
32 | 2.47.2 | ||
33 | |||