From 2ce6aaee9dee1fdc79470a49d1c7a9299484b384 Mon Sep 17 00:00:00 2001 From: Fabrice Fontaine Date: Fri, 12 Aug 2022 22:49:27 +0200 Subject: [PATCH] package/opensc: requires DES in openssl Enable DES in openssl to avoid the following build failure raised since the addition of the package in commit 8aaa7ecbce1d10cbcd880c3da5e429988f96176a: In file included from sm-common.c:51: sm-common.h:33:1: error: unknown type name 'DES_LONG' 33 | DES_LONG DES_cbc_cksum_3des(const unsigned char *in, DES_cblock *output, long length, | ^~~~~~~~ Fixes: - http://autobuild.buildroot.org/results/25d0933406dea28201dadc90abd32072afab720b Signed-off-by: Fabrice Fontaine Signed-off-by: Thomas Petazzoni --- package/opensc/Config.in | 1 + 1 file changed, 1 insertion(+) diff --git a/package/opensc/Config.in b/package/opensc/Config.in index 6a0329fb39..2cec096ac2 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_DES if BR2_PACKAGE_LIBOPENSSL select BR2_PACKAGE_LIBOPENSSL_ENABLE_RMD160 if BR2_PACKAGE_LIBOPENSSL help OpenSC provides a set of libraries and utilities to work