From: Zbigniew Jędrzejewski-Szmek Date: Wed, 26 Jul 2017 18:11:15 +0000 (-0400) Subject: meson: -D remote and -D importd should be "combo" options X-Git-Tag: v235~291^2~1 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b1519d656691e725a8b8950fc0e6cc8d25b1016a;p=thirdparty%2Fsystemd.git meson: -D remote and -D importd should be "combo" options The default should be 'auto', and we allow 'true' and 'false' too. Fixes #6445. --- diff --git a/meson_options.txt b/meson_options.txt index 2c097db34b0..70d7f6b036a 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -69,7 +69,7 @@ option('timedated', type : 'boolean', description : 'install the systemd-timedated daemon') option('timesyncd', type : 'boolean', description : 'install the systemd-timesyncd daemon') -option('remote', type : 'boolean', +option('remote', type : 'combo', choices : ['auto', 'true', 'false'], description : 'support for "journal over the network"') option('myhostname', type : 'boolean', description : 'nss-myhostname support') @@ -87,7 +87,7 @@ option('sysusers', type : 'boolean', description : 'support for the sysusers configuration') option('tmpfiles', type : 'boolean', description : 'support for tmpfiles.d') -option('importd', type : 'boolean', +option('importd', type : 'combo', choices : ['auto', 'true', 'false'], description : 'install the systemd-importd daemon') option('hwdb', type : 'boolean', description : 'support for the hardware database')