From 046cde5a27ed39526b90013d53bd1296ed4cced8 Mon Sep 17 00:00:00 2001 From: Fabrice Fontaine Date: Fri, 26 Nov 2021 23:31:53 +0100 Subject: [PATCH] package/poco: requires DES support in openssl Fix the following build failure raised since commit a83d41867c8d69a77d5cd0a665aa216af5340359: src/EVPPKey.cpp:161:52: error: 'EVP_des_ede3_cbc' was not declared in this scope; did you mean 'SN_des_ede3_cbc'? 161 | rc = PEM_write_bio_PrivateKey(bio, _pEVPPKey, EVP_des_ede3_cbc(), | ^~~~~~~~~~~~~~~~ | SN_des_ede3_cbc Fixes: - http://autobuild.buildroot.org/results/eddcba8e74c23ea041f2d95de57196107f5af8a3 Signed-off-by: Fabrice Fontaine Signed-off-by: Peter Korsgaard --- package/poco/Config.in | 1 + 1 file changed, 1 insertion(+) diff --git a/package/poco/Config.in b/package/poco/Config.in index 24514a3714..dd87ee36bb 100644 --- a/package/poco/Config.in +++ b/package/poco/Config.in @@ -45,6 +45,7 @@ config BR2_PACKAGE_POCO_NET config BR2_PACKAGE_POCO_CRYPTO bool "crypto" select BR2_PACKAGE_OPENSSL + select BR2_PACKAGE_LIBOPENSSL_ENABLE_DES if BR2_PACKAGE_LIBOPENSSL config BR2_PACKAGE_POCO_NETSSL_OPENSSL bool "netssl_openssl"