meson: use literal false instead of string
Some checks are pending
macOS-CI / macOS-CI (dri) (push) Waiting to run
macOS-CI / macOS-CI (xlib) (push) Waiting to run

This fixes the following warning from Meson:

meson.options:179: WARNING: Project targets '>= 1.3.0' but uses
feature deprecated since '1.1.0': "boolean option" keyword argument
"value" of type str. use a boolean, not a string

Fixes: d348fd5fb5 ("mediafoundation: Add mediafoundation frontend")
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/35468>
This commit is contained in:
Erik Faye-Lund 2025-06-11 17:36:29 +02:00 committed by Marge Bot
parent 36dd155e7a
commit 1895d6a107

View file

@ -179,7 +179,7 @@ option(
option(
'mediafoundation-store-dll',
type : 'boolean',
value : 'false',
value : false,
description : 'Selects whether the gallium mediafoundation DLL is built for the store. ',
)