meson: stop building XA by default
Some checks are pending
macOS-CI / macOS-CI (dri) (push) Waiting to run
macOS-CI / macOS-CI (xlib) (push) Waiting to run

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>
This commit is contained in:
Dmitry Baryshkov 2025-05-22 20:11:46 +03:00 committed by Marge Bot
parent 6d226ceca1
commit 31cf6b94ad

View file

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