[Buildroot] [PATCH 1/1] package/poco: requires DES support in openssl

Fabrice Fontaine fontaine.fabrice at gmail.com
Fri Nov 26 22:31:53 UTC 2021


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 <fontaine.fabrice at gmail.com>
---
 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"
-- 
2.33.0




More information about the buildroot mailing list