2ebf2a85c0
openssl is optional, not mandatory since the addition of the package in commit8aaa7ecbce
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Arnout Vandecappelle <arnout@mind.be> (cherry picked from commitb097ed3a4b
) Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
20 lines
693 B
Plaintext
20 lines
693 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()
|
|
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # pcsc-lite
|
|
select BR2_PACKAGE_PCSC_LITE
|
|
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, gcc >= 4.9"
|
|
depends on BR2_USE_MMU
|
|
depends on BR2_STATIC_LIBS || !BR2_TOOLCHAIN_HAS_THREADS || \
|
|
!BR2_TOOLCHAIN_GCC_AT_LEAST_4_9
|