mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 11:41:09 +00:00
meson_options.txt: fix meson warning about default bool values being a string
This commit is contained in:
parent
f1940077a2
commit
e7d771903e
2 changed files with 2 additions and 2 deletions
|
@ -87,7 +87,7 @@ option('rpi-lib-dir', type : 'string', value : '/opt/vc/lib', description : 'Dir
|
||||||
|
|
||||||
# soup plugin options
|
# soup plugin options
|
||||||
option('soup', type : 'feature', value : 'auto', description : 'libsoup HTTP client source/sink plugin')
|
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')
|
description : 'Lookup libsoup dep at build time even when building a shared plugin')
|
||||||
|
|
||||||
# Qt plugin options
|
# Qt plugin options
|
||||||
|
|
|
@ -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('dbghelp', type : 'feature', value : 'auto', description : 'Use dbghelp to generate backtraces')
|
||||||
option('bash-completion', type : 'feature', value : 'auto', description : 'Install bash completion files')
|
option('bash-completion', type : 'feature', value : 'auto', description : 'Install bash completion files')
|
||||||
option('coretracers', type : 'feature', value : 'auto', description : 'Build coretracers plugin')
|
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
|
# Common feature options
|
||||||
option('examples', type : 'feature', value : 'auto', yield : true)
|
option('examples', type : 'feature', value : 'auto', yield : true)
|
||||||
|
|
Loading…
Reference in a new issue