2022-01-14 08:08:52 +01:00
|
|
|
config BR2_PACKAGE_OPENSC
|
|
|
|
bool "opensc"
|
|
|
|
depends on !BR2_STATIC_LIBS
|
|
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
|
|
|
depends on BR2_USE_MMU # fork()
|
2022-12-11 15:55:01 +01:00
|
|
|
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # pcsc-lite
|
2022-01-14 08:08:52 +01:00
|
|
|
select BR2_PACKAGE_PCSC_LITE
|
|
|
|
select BR2_PACKAGE_OPENSSL
|
2022-08-12 22:49:27 +02:00
|
|
|
select BR2_PACKAGE_LIBOPENSSL_ENABLE_DES if BR2_PACKAGE_LIBOPENSSL
|
2022-07-25 21:32:51 +02:00
|
|
|
select BR2_PACKAGE_LIBOPENSSL_ENABLE_RMD160 if BR2_PACKAGE_LIBOPENSSL
|
2022-01-14 08:08:52 +01:00
|
|
|
help
|
|
|
|
OpenSC provides a set of libraries and utilities to work
|
|
|
|
with smart cards.
|
|
|
|
|
|
|
|
https://github.com/OpenSC/OpenSC/wiki
|
|
|
|
|
2022-12-11 15:55:01 +01:00
|
|
|
comment "opensc needs a toolchain with dynamic library, threads, gcc >= 4.9"
|
2022-01-14 08:08:52 +01:00
|
|
|
depends on BR2_USE_MMU
|
2022-12-11 15:55:01 +01:00
|
|
|
depends on BR2_STATIC_LIBS || !BR2_TOOLCHAIN_HAS_THREADS || \
|
|
|
|
!BR2_TOOLCHAIN_GCC_AT_LEAST_4_9
|