From e7d771903efd6481dcf161e25a71aa0b87f5e1f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Mon, 5 Feb 2024 09:27:54 +0100 Subject: [PATCH] meson_options.txt: fix meson warning about default bool values being a string --- subprojects/gst-plugins-good/meson_options.txt | 2 +- subprojects/gstreamer/meson_options.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/subprojects/gst-plugins-good/meson_options.txt b/subprojects/gst-plugins-good/meson_options.txt index 664e43e3f2..2d95ea5203 100644 --- a/subprojects/gst-plugins-good/meson_options.txt +++ b/subprojects/gst-plugins-good/meson_options.txt @@ -87,7 +87,7 @@ option('rpi-lib-dir', type : 'string', value : '/opt/vc/lib', description : 'Dir # soup plugin options option('soup', type : 'feature', value : 'auto', description : 'libsoup HTTP client source/sink plugin') -option('soup-lookup-dep', type : 'boolean', value : 'false', +option('soup-lookup-dep', type : 'boolean', value : false, description : 'Lookup libsoup dep at build time even when building a shared plugin') # Qt plugin options diff --git a/subprojects/gstreamer/meson_options.txt b/subprojects/gstreamer/meson_options.txt index 25464e3f2e..340fb5801d 100644 --- a/subprojects/gstreamer/meson_options.txt +++ b/subprojects/gstreamer/meson_options.txt @@ -24,7 +24,7 @@ option('libdw', type : 'feature', value : 'auto', description : 'Use libdw to ge option('dbghelp', type : 'feature', value : 'auto', description : 'Use dbghelp to generate backtraces') option('bash-completion', type : 'feature', value : 'auto', description : 'Install bash completion files') option('coretracers', type : 'feature', value : 'auto', description : 'Build coretracers plugin') -option('gstreamer-static-full', type : 'boolean', value : 'false', description : 'Enable static support of gstreamer-full.') +option('gstreamer-static-full', type : 'boolean', value : false, description : 'Enable static support of gstreamer-full.') # Common feature options option('examples', type : 'feature', value : 'auto', yield : true)