From 23a71b7d538b6ff7ae7622a712792a28fde9ddd3 Mon Sep 17 00:00:00 2001 From: Fabrice Fontaine Date: Mon, 25 Jul 2022 21:32:51 +0200 Subject: [PATCH] package/opensc: requires RIPEMD160 in openssl Enable RIPEMD160 in openssl to avoid the following build failure raised since the addition of the package in commit 8aaa7ecbce1d10cbcd880c3da5e429988f96176a: /nvmedata/autobuild/instance-17/output-1/host/lib/gcc/sparc-buildroot-linux-uclibc/10.3.0/../../../../sparc-buildroot-linux-uclibc/bin/ld: pkcs11_tool-pkcs11-tool.o: in function `sign_verify_openssl.constprop.0': pkcs11-tool.c:(.text+0x6b00): undefined reference to `EVP_ripemd160' Fixes: - http://autobuild.buildroot.org/results/6dc5baa2cfb037431b9ede9f2e0c5705957ee3bf Signed-off-by: Fabrice Fontaine Signed-off-by: Arnout Vandecappelle (Essensium/Mind) --- package/opensc/Config.in | 1 + 1 file changed, 1 insertion(+) diff --git a/package/opensc/Config.in b/package/opensc/Config.in index fe3dd0836e..6a0329fb39 100644 --- a/package/opensc/Config.in +++ b/package/opensc/Config.in @@ -5,6 +5,7 @@ config BR2_PACKAGE_OPENSC depends on BR2_USE_MMU # fork() select BR2_PACKAGE_PCSC_LITE select BR2_PACKAGE_OPENSSL + select BR2_PACKAGE_LIBOPENSSL_ENABLE_RMD160 if BR2_PACKAGE_LIBOPENSSL help OpenSC provides a set of libraries and utilities to work with smart cards.