diff options
author | Michael Biebl <biebl@debian.org> | 2017-04-26 18:57:18 +0200 |
---|---|---|
committer | Michael Biebl <biebl@debian.org> | 2017-04-26 18:58:40 +0200 |
commit | 1697c8cde45d76b2e35f728d0769c4a849db21e6 (patch) | |
tree | 6d0507ec2dd3589afaeeed6d42be380387dd0ed4 /src | |
parent | main: improve RLIMIT_NOFILE handling (#5795) (diff) | |
download | systemd-1697c8cde45d76b2e35f728d0769c4a849db21e6.tar.xz systemd-1697c8cde45d76b2e35f728d0769c4a849db21e6.zip |
meson: drop libiptc link dependencies from libshared
The only place where libiptc is needed is in libfirewall, which already
takes care of linking against libiptc.
Diffstat (limited to 'src')
-rw-r--r-- | src/network/meson.build | 2 | ||||
-rw-r--r-- | src/shared/meson.build | 2 |
2 files changed, 1 insertions, 3 deletions
diff --git a/src/network/meson.build b/src/network/meson.build index 94bbb156aa..4d76902ef1 100644 --- a/src/network/meson.build +++ b/src/network/meson.build @@ -130,7 +130,7 @@ if conf.get('ENABLE_NETWORKD', 0) == 1 libsystemd_network, libshared, libfirewall], - [libiptc]], + []], [['src/network/test-network-tables.c', 'src/network/test-network-tables.c', diff --git a/src/shared/meson.build b/src/shared/meson.build index 8968127d3f..7d51e99487 100644 --- a/src/shared/meson.build +++ b/src/shared/meson.build @@ -132,7 +132,6 @@ libshared = shared_library( libacl, libcryptsetup, libgcrypt, - libiptc, libseccomp, libselinux, libidn, @@ -152,7 +151,6 @@ libshared_static = static_library( libcap, libacl, libcryptsetup, - libiptc, libseccomp, libselinux, libidn, |