build-sys: Update meson dependency to 0.50.0

This is needed for currently used features (disabler and install in
configure_file).
This commit is contained in:
Arun Raghavan 2019-04-17 15:58:45 +05:30
parent 2f6a46ca1a
commit b943caa17f
2 changed files with 4 additions and 3 deletions

View file

@ -1,6 +1,6 @@
project('pulseaudio', 'c', 'cpp',
version : run_command(find_program('git-version-gen'), join_paths(meson.current_source_dir(), '.tarball-version')).stdout().strip(),
meson_version : '>= 0.47.0',
meson_version : '>= 0.50.0',
default_options : [ 'c_std=gnu11', 'cpp_std=c++11' ]
)
@ -250,7 +250,7 @@ if get_option('database') == 'tdb'
elif get_option('database') == 'gdbm'
database_dep = cc.find_library('gdbm', required : true)
else
database_dep = dependency('', required:false)
database_dep = dependency('', required: false)
endif
if get_option('ipv6')