mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-02-06 19:50:32 +01:00
build/meson: rename config_plugin_ibft option to just ibft
This commit is contained in:
parent
619de16f3c
commit
ca9418232c
3 changed files with 9 additions and 9 deletions
|
|
@ -240,9 +240,9 @@ endif
|
|||
|
||||
enable_ifcfg_rh = get_option('ifcfg_rh') or (distro == 'redhat')
|
||||
enable_ifupdown = get_option('ifupdown') or (distro == 'debian')
|
||||
enable_ibft = get_option('ibft') or enable_ifcfg_rh
|
||||
|
||||
enable_config_plugin_ibft = get_option('config_plugin_ibft')
|
||||
config_h.set10('WITH_SETTINGS_PLUGIN_IBFT', enable_config_plugin_ibft)
|
||||
config_h.set10('WITH_SETTINGS_PLUGIN_IBFT', enable_ibft)
|
||||
|
||||
config_plugins_default = get_option('config_plugins_default')
|
||||
if config_plugins_default == ''
|
||||
|
|
@ -256,7 +256,7 @@ if config_plugins_default == ''
|
|||
config_plugins += ['ifupdown']
|
||||
endif
|
||||
|
||||
if enable_config_plugin_ibft
|
||||
if enable_ibft
|
||||
config_plugins += ['ibft']
|
||||
endif
|
||||
|
||||
|
|
@ -981,7 +981,7 @@ output += ' libnm-glib: ' + enable_libnm_glib.to_string() + '\n'
|
|||
output += ' nmcli: ' + enable_nmcli.to_string() + '\n'
|
||||
output += ' nmtui: ' + enable_nmtui.to_string() + '\n'
|
||||
output += '\nConfiguration_plugins (main.plugins=' + config_plugins_default + ')\n'
|
||||
output += ' ibft: ' + enable_config_plugin_ibft.to_string() + '\n'
|
||||
output += ' ibft: ' + enable_ibft.to_string() + '\n'
|
||||
output += ' ifcfg-rh: ' + enable_ifcfg_rh.to_string() + '\n'
|
||||
output += ' ifupdown: ' + enable_ifupdown.to_string() + '\n'
|
||||
output += '\nHandlers for /etc/resolv.conf:\n'
|
||||
|
|
|
|||
|
|
@ -44,7 +44,7 @@ option('bluez5_dun', type: 'boolean', value: false, description: 'enable Bluez5
|
|||
|
||||
# configuration plugins
|
||||
option('config_plugins_default', type: 'string', value: '', description: 'Default configuration option for main.plugins setting, used as fallback if the configuration option is unset')
|
||||
option('config_plugin_ibft', type: 'boolean', value: true, description: 'enable ibft configuration plugin')
|
||||
option('ibft', type: 'boolean', value: false, description: 'enable ibft configuration plugin')
|
||||
option('ifcfg_rh', type: 'boolean', value: false, description: 'enable ifcfg-rh configuration plugin (Fedora/RHEL)')
|
||||
option('ifupdown', type: 'boolean', value: false, description: 'enable ifupdown configuration plugin (Debian/Ubuntu)')
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
if enable_tests
|
||||
subdir('keyfile/tests')
|
||||
if enable_ibft
|
||||
subdir('ibft')
|
||||
endif
|
||||
|
||||
if enable_ifcfg_rh
|
||||
|
|
@ -10,6 +10,6 @@ if enable_ifupdown
|
|||
subdir('ifupdown')
|
||||
endif
|
||||
|
||||
if enable_config_plugin_ibft
|
||||
subdir('ibft')
|
||||
if enable_tests
|
||||
subdir('keyfile/tests')
|
||||
endif
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue