diff options
author | Ross Burton <ross.burton@intel.com> | 2016-01-04 10:20:25 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-01-07 13:40:15 +0000 |
commit | 3fea163f40bd6d92697d20ae2b775a974d596868 (patch) | |
tree | 84f7ad5de0eab19f4c448e78a4b96941fabe85f1 /meta/recipes-core/systemd | |
parent | d462b70b29d7a26c67bb3546d5d6797f138395c5 (diff) | |
download | poky-3fea163f40bd6d92697d20ae2b775a974d596868.tar.gz |
systemd: add more compression and importd PACKAGECONFIGs
Add explicit PACKAGECONFIGs for all of compression formats that systemd can
detect at configure time, and an explicit enable/disable for importd. importd
defaults to disabled as it needs curl and all the compression formats to be
enabled.
(From OE-Core rev: 24d358c44770b2ea145380f8648d6797b7bdb04c)
Signed-off-by: Ross Burton <ross.burton@intel.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_228.bb | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/meta/recipes-core/systemd/systemd_228.bb b/meta/recipes-core/systemd/systemd_228.bb index 0f95390acd..6673042f94 100644 --- a/meta/recipes-core/systemd/systemd_228.bb +++ b/meta/recipes-core/systemd/systemd_228.bb | |||
@@ -70,13 +70,13 @@ PACKAGECONFIG[gcrypt] = "--enable-gcrypt,--disable-gcrypt,libgcrypt" | |||
70 | # regardless of PACKAGECONFIG, libgcrypt is always required to expand | 70 | # regardless of PACKAGECONFIG, libgcrypt is always required to expand |
71 | # the AM_PATH_LIBGCRYPT autoconf macro | 71 | # the AM_PATH_LIBGCRYPT autoconf macro |
72 | DEPENDS += "libgcrypt" | 72 | DEPENDS += "libgcrypt" |
73 | # Compress the journal | ||
74 | PACKAGECONFIG[xz] = "--enable-xz,--disable-xz,xz" | ||
75 | PACKAGECONFIG[cryptsetup] = "--enable-libcryptsetup,--disable-libcryptsetup,cryptsetup" | 73 | PACKAGECONFIG[cryptsetup] = "--enable-libcryptsetup,--disable-libcryptsetup,cryptsetup" |
76 | PACKAGECONFIG[microhttpd] = "--enable-microhttpd,--disable-microhttpd,libmicrohttpd" | 74 | PACKAGECONFIG[microhttpd] = "--enable-microhttpd,--disable-microhttpd,libmicrohttpd" |
77 | PACKAGECONFIG[elfutils] = "--enable-elfutils,--disable-elfutils,elfutils" | 75 | PACKAGECONFIG[elfutils] = "--enable-elfutils,--disable-elfutils,elfutils" |
78 | PACKAGECONFIG[resolved] = "--enable-resolved,--disable-resolved" | 76 | PACKAGECONFIG[resolved] = "--enable-resolved,--disable-resolved" |
79 | PACKAGECONFIG[networkd] = "--enable-networkd,--disable-networkd" | 77 | PACKAGECONFIG[networkd] = "--enable-networkd,--disable-networkd" |
78 | # importd requires curl/xz/zlib/bzip2/gcrypt | ||
79 | PACKAGECONFIG[importd] = "--enable-importd,--disable-importd" | ||
80 | PACKAGECONFIG[libidn] = "--enable-libidn,--disable-libidn,libidn" | 80 | PACKAGECONFIG[libidn] = "--enable-libidn,--disable-libidn,libidn" |
81 | PACKAGECONFIG[audit] = "--enable-audit,--disable-audit,audit" | 81 | PACKAGECONFIG[audit] = "--enable-audit,--disable-audit,audit" |
82 | PACKAGECONFIG[manpages] = "--enable-manpages,--disable-manpages,libxslt-native xmlto-native docbook-xml-dtd4-native docbook-xsl-stylesheets-native" | 82 | PACKAGECONFIG[manpages] = "--enable-manpages,--disable-manpages,libxslt-native xmlto-native docbook-xml-dtd4-native docbook-xsl-stylesheets-native" |
@@ -92,6 +92,10 @@ PACKAGECONFIG[qrencode] = "--enable-qrencode,--disable-qrencode,qrencode" | |||
92 | PACKAGECONFIG[compat] = "--enable-compat-libs,--disable-compat-libs" | 92 | PACKAGECONFIG[compat] = "--enable-compat-libs,--disable-compat-libs" |
93 | PACKAGECONFIG[dbus] = "--enable-dbus,--disable-dbus,dbus" | 93 | PACKAGECONFIG[dbus] = "--enable-dbus,--disable-dbus,dbus" |
94 | PACKAGECONFIG[coredump] = "--enable-coredump,--disable-coredump" | 94 | PACKAGECONFIG[coredump] = "--enable-coredump,--disable-coredump" |
95 | PACKAGECONFIG[bzip2] = "--enable-bzip2,--disable-bzip2,bzip2" | ||
96 | PACKAGECONFIG[lz4] = "--enable-lz4,--disable-lz4,lz4" | ||
97 | PACKAGECONFIG[xz] = "--enable-xz,--disable-xz,xz" | ||
98 | PACKAGECONFIG[zlib] = "--enable-zlib,--disable-zlib,zlib" | ||
95 | 99 | ||
96 | CACHED_CONFIGUREVARS += "ac_cv_path_KILL=${base_bindir}/kill" | 100 | CACHED_CONFIGUREVARS += "ac_cv_path_KILL=${base_bindir}/kill" |
97 | CACHED_CONFIGUREVARS += "ac_cv_path_KMOD=${base_bindir}/kmod" | 101 | CACHED_CONFIGUREVARS += "ac_cv_path_KMOD=${base_bindir}/kmod" |