diff options
| author | Michael Biebl <biebl@debian.org> | 2020-10-05 22:28:16 +0200 |
|---|---|---|
| committer | Michael Biebl <biebl@debian.org> | 2020-10-05 22:28:16 +0200 |
| commit | 47a2114d6f697a31d84c8874c49e94dd04119d75 (patch) | |
| tree | e3022686ff1956d7f17f1f7cdf7022ce980b7a5c /src/meson.build | |
| parent | 9d722f3d3492e31c0b3e4bcba603ffd65309c621 (diff) | |
| parent | aafc1dbe4712c86189bbc1d4d54ad8cb4c69be7e (diff) | |
Update upstream source from tag 'upstream/1.27.90'
Update to upstream version '1.27.90' with Debian dir 72a0791efa5966be1724a82dfcac90f6cd22bd1b
Diffstat (limited to 'src/meson.build')
| -rw-r--r-- | src/meson.build | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/src/meson.build b/src/meson.build index 07bb1a52..667a6a2c 100644 --- a/src/meson.build +++ b/src/meson.build @@ -43,6 +43,10 @@ sources = files( 'nm-core-utils.c', 'nm-dbus-object.c', 'nm-dbus-utils.c', + 'nm-netns.c', + 'nm-l3-config-data.c', + 'nm-l3cfg.c', + 'nm-ip-config.c', 'nm-ip4-config.c', 'nm-ip6-config.c', 'nm-logging.c', @@ -143,7 +147,6 @@ sources = files( 'nm-hostname-manager.c', 'nm-keep-alive.c', 'nm-manager.c', - 'nm-netns.c', 'nm-pacrunner-manager.c', 'nm-policy.c', 'nm-proxy-config.c', @@ -191,19 +194,16 @@ libnetwork_manager = static_library( link_with: nm_links, ) -deps = [ - daemon_nm_default_dep, - dl_dep, - libndp_dep, - libudev_dep, -] - -name = 'nm-iface-helper' - executable( - name, - name + '.c', - dependencies: deps, + 'nm-iface-helper', + 'nm-iface-helper.c', + dependencies: [ + daemon_nm_default_dep, + dl_dep, + libndp_dep, + libudev_dep, + libn_acd_dep, + ], c_args: daemon_c_flags, link_with: nm_links, link_args: ldflags_linker_script_binary, |