2ce6aaee9d
Enable DES in openssl to avoid the following build failure raised since
the addition of the package in commit
8aaa7ecbce
:
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 <fontaine.fabrice@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
19 lines
615 B
Plaintext
19 lines
615 B
Plaintext
config BR2_PACKAGE_OPENSC
|
|
bool "opensc"
|
|
depends on !BR2_STATIC_LIBS
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
|
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
|
|
with smart cards.
|
|
|
|
https://github.com/OpenSC/OpenSC/wiki
|
|
|
|
comment "opensc needs a toolchain with dynamic library, threads"
|
|
depends on BR2_USE_MMU
|
|
depends on BR2_STATIC_LIBS || !BR2_TOOLCHAIN_HAS_THREADS
|