diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2017-04-10 17:11:10 -0400 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2017-04-23 21:47:27 -0400 |
commit | 826472ce367cb93c64cc80225cab3fe5fd687363 (patch) | |
tree | ad595888c0b72cb6becf73dcc7344e286d34c2e3 /src/network | |
parent | e0bec52f2707c3dff041755972e3c4e8bdcf0dd3 (diff) |
meson: update linking for fixed meson linking
With mesonbuid/meson#1545, meson does not propagate deps of a library
when linking with that library. That's of course the right thing to do,
but it exposes a bunch of missing deps.
This compiles with both meson-0.39.1 and meson-git + pr/1545.
Diffstat (limited to 'src/network')
-rw-r--r-- | src/network/meson.build | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/network/meson.build b/src/network/meson.build index 8a15016307..a41ead952b 100644 --- a/src/network/meson.build +++ b/src/network/meson.build @@ -115,13 +115,15 @@ endif tests += [ [['src/network/test-networkd-conf.c'], [libnetworkd_core, - libsystemd_network], + libsystemd_network, + libudev], []], [['src/network/test-network.c'], [libnetworkd_core, libudev_internal, libsystemd_network, + libsystemd_internal, libfirewall], [libiptc]], @@ -132,6 +134,7 @@ tests += [ libudev_internal, libudev_core, libsystemd_network, + libsystemd_internal, libfirewall], [], '', '', [], |