meson: stop building XA by default

Commit cf40099730 ("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: cf40099730 ("meson: deprecate gallium-xa")
Backport-to: 25.1
Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/35113>
(cherry picked from commit 31cf6b94ad)
This commit is contained in:
Dmitry Baryshkov 2025-05-22 20:11:46 +03:00 committed by Eric Engestrom
parent 0ddbd895e2
commit a88780114f
2 changed files with 2 additions and 1 deletions

View file

@ -5004,7 +5004,7 @@
"description": "meson: stop building XA by default",
"nominated": true,
"nomination_type": 2,
"resolution": 0,
"resolution": 1,
"main_sha": null,
"because_sha": "cf40099730c4af304227c30c891834cec220abff",
"notes": null

View file

@ -127,6 +127,7 @@ option(
option(
'gallium-xa',
type : 'feature',
value : 'disabled',
description : 'enable gallium xa frontend.',
deprecated: true,
)