From 1895d6a107f7c1a6f6bcc8d4ccd76fe7e6f640ba Mon Sep 17 00:00:00 2001 From: Erik Faye-Lund Date: Wed, 11 Jun 2025 17:36:29 +0200 Subject: [PATCH] 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: d348fd5fb5b ("mediafoundation: Add mediafoundation frontend") Part-of: --- meson.options | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.options b/meson.options index 40fe433435a..a3a77ba15fa 100644 --- a/meson.options +++ b/meson.options @@ -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. ', )