Merge branch 'master' into 'master'

meson: Turn selinux into a meson feature and make it auto by default

See merge request GNOME/glib!483
This commit is contained in:
Xavier Claessens 2018-11-20 19:14:52 +00:00
commit f54b48b3e6
2 changed files with 6 additions and 5 deletions

View File

@ -1812,9 +1812,10 @@ if host_system == 'windows'
endif
selinux_dep = []
if host_system == 'linux' and get_option('selinux')
selinux_dep = [dependency('libselinux')]
glib_conf.set('HAVE_SELINUX', 1)
if host_system == 'linux'
selinux_dep = dependency('libselinux', required: get_option('selinux'))
glib_conf.set('HAVE_SELINUX', selinux_dep.found())
endif
xattr_dep = []

View File

@ -20,8 +20,8 @@ option('gio_module_dir',
description : 'load gio modules from this directory (default to \'libdir/gio/modules\' if unset)')
option('selinux',
type : 'boolean',
value : true,
type : 'feature',
value : 'auto',
description : 'build with selinux support')
option('xattr',