summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorQi.Chen@windriver.com <Qi.Chen@windriver.com>2019-08-28 09:48:43 +0800
committerArmin Kuster <akuster808@gmail.com>2019-08-28 08:05:48 -0700
commitbcbd10be8775785c2d03fc768a1f76a6c13ea8b8 (patch)
tree124100eaad81e0afee2b931b307a6d00dbdd381c
parent563c2af19c1c34bf0370be79f2b07afc25b0bdb7 (diff)
downloadmeta-security-bcbd10be8775785c2d03fc768a1f76a6c13ea8b8.tar.gz
ecryptfs-utils: remove openssl PACKAGECONFIG
ecryptfs-utils does not build with openssl1.1. Previously this openssl PACKAGECONFIG is disabled by default, so we are not getting build failures by default. But if we enable it, we get do_compile failure. This package is from ubuntu source, and the one ubuntu ships does not depend on openssl. The development of this package has stopped for about 3 years. I don't see it will fix the build offically. So remove this PACKAGECONFIG and use '--disable-openssl' directly. Signed-off-by: Chen Qi <Qi.Chen@windriver.com> Signed-off-by: Armin Kuster <akuster808@gmail.com>
-rw-r--r--recipes-security/ecryptfs-utils/ecryptfs-utils_111.bb2
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes-security/ecryptfs-utils/ecryptfs-utils_111.bb b/recipes-security/ecryptfs-utils/ecryptfs-utils_111.bb
index 1f780f9..8e498c9 100644
--- a/recipes-security/ecryptfs-utils/ecryptfs-utils_111.bb
+++ b/recipes-security/ecryptfs-utils/ecryptfs-utils_111.bb
@@ -30,13 +30,13 @@ EXTRA_OECONF = "\
30 --disable-pywrap \ 30 --disable-pywrap \
31 --disable-nls \ 31 --disable-nls \
32 --with-pamdir=${base_libdir}/security \ 32 --with-pamdir=${base_libdir}/security \
33 --disable-openssl \
33 " 34 "
34 35
35PACKAGECONFIG ??= "nss \ 36PACKAGECONFIG ??= "nss \
36 ${@bb.utils.filter('DISTRO_FEATURES', 'pam', d)} \ 37 ${@bb.utils.filter('DISTRO_FEATURES', 'pam', d)} \
37 " 38 "
38PACKAGECONFIG[nss] = "--enable-nss,--disable-nss,nss," 39PACKAGECONFIG[nss] = "--enable-nss,--disable-nss,nss,"
39PACKAGECONFIG[openssl] = "--enable-openssl,--disable-openssl,openssl,"
40PACKAGECONFIG[pam] = "--enable-pam,--disable-pam,libpam," 40PACKAGECONFIG[pam] = "--enable-pam,--disable-pam,libpam,"
41 41
42do_configure_prepend() { 42do_configure_prepend() {