diff options
author | Christopher Larson <chris_larson@mentor.com> | 2013-05-30 19:26:27 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-05-31 08:02:44 +0100 |
commit | 5ada1631ee6feb0b031b64c9fe5cf0d390c732f9 (patch) | |
tree | e48d1f684d5d8df02a742c2cdbe5b27752dd2bec /meta/recipes-core/systemd | |
parent | a5d9fde36c5912a28b3a5a582e709902a27247ba (diff) | |
download | openembedded-core-5ada1631ee6feb0b031b64c9fe5cf0d390c732f9.tar.gz openembedded-core-5ada1631ee6feb0b031b64c9fe5cf0d390c732f9.tar.bz2 openembedded-core-5ada1631ee6feb0b031b64c9fe5cf0d390c732f9.zip |
systemd: obey 'tcp-wrappers' PACKAGECONFIG
Signed-off-by: Christopher Larson <chris_larson@mentor.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core/systemd')
-rw-r--r-- | meta/recipes-core/systemd/systemd_204.bb | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/meta/recipes-core/systemd/systemd_204.bb b/meta/recipes-core/systemd/systemd_204.bb index e7b9f6a2ac..5a63c7c14a 100644 --- a/meta/recipes-core/systemd/systemd_204.bb +++ b/meta/recipes-core/systemd/systemd_204.bb @@ -10,7 +10,7 @@ PROVIDES = "udev" PE = "1" -DEPENDS = "kmod docbook-sgml-dtd-4.1-native intltool-native gperf-native acl readline dbus libcap libcgroup tcp-wrappers glib-2.0 qemu-native util-linux" +DEPENDS = "kmod docbook-sgml-dtd-4.1-native intltool-native gperf-native acl readline dbus libcap libcgroup glib-2.0 qemu-native util-linux" DEPENDS += "${@base_contains('DISTRO_FEATURES', 'pam', 'libpam', '', d)}" SECTION = "base/shell" @@ -41,7 +41,7 @@ LDFLAGS_libc-uclibc_append = " -lrt" GTKDOC_DOCDIR = "${S}/docs/" -PACKAGECONFIG ??= "xz" +PACKAGECONFIG ??= "xz tcp-wrappers" # Sign the journal for anti-tampering PACKAGECONFIG[gcrypt] = "--enable-gcrypt,--disable-gcrypt,libgcrypt" # regardless of PACKAGECONFIG, libgcrypt is always required to expand @@ -49,6 +49,7 @@ PACKAGECONFIG[gcrypt] = "--enable-gcrypt,--disable-gcrypt,libgcrypt" DEPENDS += "libgcrypt" # Compress the journal PACKAGECONFIG[xz] = "--enable-xz,--disable-xz,xz" +PACKAGECONFIG[tcp-wrappers] = "--enable-tcpwrap,--disable-tcpwrap,tcp-wrappers" CACHED_CONFIGUREVARS = "ac_cv_path_KILL=${base_bindir}/kill" |