mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-26 04:10:09 +01:00
meson: use literal false instead of string
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:
parent
36dd155e7a
commit
1895d6a107
1 changed files with 1 additions and 1 deletions
|
|
@ -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. ',
|
||||
)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue