Config.in 497 B

12345678910111213141516
  1. config BR2_PACKAGE_PYTHON_NFC
  2. bool "python-nfc"
  3. depends on BR2_PACKAGE_PYTHON
  4. depends on BR2_TOOLCHAIN_HAS_THREADS # libusb
  5. depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # libusb
  6. select BR2_PACKAGE_LIBUSB
  7. select BR2_PACKAGE_LIBUSB_COMPAT
  8. help
  9. Python module for near field communication.
  10. https://launchpad.net/nfcpy
  11. comment "python-nfc needs a toolchain w/ threads, gcc >= 4.9"
  12. depends on BR2_PACKAGE_PYTHON
  13. depends on !BR2_TOOLCHAIN_HAS_THREADS || \
  14. !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9