diff options
| author | Michael Biebl <biebl@debian.org> | 2022-03-07 21:31:48 +0100 |
|---|---|---|
| committer | Michael Biebl <biebl@debian.org> | 2022-03-07 21:31:48 +0100 |
| commit | b002c8cf4a4edaf7067563fc1d59545b5c88cc99 (patch) | |
| tree | 6818612f86964c1dd79bb373feb4f443eeb2dd69 /meson.build | |
| parent | a31332e76bee4c5977e2ef9daeeddb205bad27ea (diff) | |
| parent | 4f887bccf1cde84106588536584a2d54a5b4e6e5 (diff) | |
Update upstream source from tag 'upstream/1.36.2'
Update to upstream version '1.36.2' with Debian dir ababed5cf88a964e7aac789b48238ba3cf57f0b4
Diffstat (limited to 'meson.build')
| -rw-r--r-- | meson.build | 18 |
1 files changed, 4 insertions, 14 deletions
diff --git a/meson.build b/meson.build index 5f86ee05..d0cec83d 100644 --- a/meson.build +++ b/meson.build @@ -6,7 +6,7 @@ project( # - add corresponding NM_VERSION_x_y_z macros in # "src/libnm-core-public/nm-version-macros.h.in" # - update number in configure.ac - version: '1.36.0', + version: '1.36.2', license: 'GPL2+', default_options: [ 'buildtype=debugoptimized', @@ -308,21 +308,11 @@ enable_ifcfg_rh = get_option('ifcfg_rh') or (distro == 'redhat') enable_ifupdown = get_option('ifupdown') or (distro == 'debian') config_plugins_default = get_option('config_plugins_default') -if config_plugins_default == '' - config_plugins = [] - - if enable_ifcfg_rh - config_plugins += ['ifcfg-rh'] - endif - - if enable_ifupdown - config_plugins += ['ifupdown'] - endif - - config_plugins_default = ','.join(config_plugins) -endif config_h.set_quoted('NM_CONFIG_DEFAULT_MAIN_PLUGINS', config_plugins_default) +config_h.set10('WITH_CONFIG_PLUGIN_IFCFG_RH', enable_ifcfg_rh) +config_h.set10('WITH_CONFIG_PLUGIN_IFUPDOWN', enable_ifupdown) + config_h.set_quoted('NM_DIST_VERSION', dist_version) enable_wifi = get_option('wifi') |