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