Config.in 556 B

1234567891011121314151617
  1. config BR2_PACKAGE_CCID
  2. bool "ccid"
  3. depends on BR2_TOOLCHAIN_HAS_THREADS # libusb
  4. depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # libusb, pcsc-lite
  5. depends on BR2_USE_MMU # pcsc-lite
  6. depends on !BR2_STATIC_LIBS # pcsc-lite
  7. select BR2_PACKAGE_PCSC_LITE
  8. select BR2_PACKAGE_LIBUSB
  9. help
  10. PC/SC driver for USB CCID smart card readers
  11. https://ccid.apdu.fr/
  12. comment "ccid needs a toolchain w/ threads, dynamic library, gcc >= 4.9"
  13. depends on BR2_USE_MMU
  14. depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS || \
  15. !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9