From 611db44974be5a2fb223026b26de719827a3e4be Mon Sep 17 00:00:00 2001 From: Thomas Haller Date: Thu, 11 May 2023 14:20:23 +0200 Subject: [PATCH] build/meson: enable -Dnm_cloud_setup=true by default That is also what autotools does. Keep the behvior in sync. Also, "contrib/scripts/nm-ci-run.sh" does not explicitly enable nm-cloud-setup, so we ended up not building it in test. This solves that, by enabling it by default. --- meson_options.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson_options.txt b/meson_options.txt index 015f31f0a3..d49faf3463 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -39,7 +39,7 @@ option('teamdctl', type: 'boolean', value: false, description: 'enable Teamd con option('ovs', type: 'boolean', value: true, description: 'enable Open vSwitch support') option('nmcli', type: 'boolean', value: true, description: 'Build nmcli') option('nmtui', type: 'boolean', value: true, description: 'Build nmtui') -option('nm_cloud_setup', type: 'boolean', value: false, description: 'Build nm-cloud-setup, a tool for automatically configuring networking in cloud') +option('nm_cloud_setup', type: 'boolean', value: true, description: 'Build nm-cloud-setup, a tool for automatically configuring networking in cloud') option('bluez5_dun', type: 'boolean', value: false, description: 'enable Bluez5 DUN support') option('ebpf', type: 'combo', choices: ['auto', 'true', 'false'], description: 'Enable eBPF support')