Config.in 801 B

123456789101112131415161718192021
  1. config BR2_PACKAGE_ACSCCID
  2. bool "acsccid"
  3. depends on BR2_TOOLCHAIN_HAS_THREADS # pcsc-lite, 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_LIBICONV if !BR2_ENABLE_LOCALE
  8. select BR2_PACKAGE_PCSC_LITE
  9. # Even though there is a --disable-libusb option, it has in
  10. # fact no effect, and acsccid really requires libusb.
  11. select BR2_PACKAGE_LIBUSB
  12. help
  13. acsccid is a PC/SC driver for Linux/Mac OS X and it supports
  14. ACS CCID smart card readers.
  15. http://acsccid.sourceforge.net/
  16. comment "acsccid needs a toolchain w/ threads, dynamic library, gcc >= 4.9"
  17. depends on BR2_USE_MMU
  18. depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS || \
  19. !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9