Config.in 797 B

1234567891011121314151617181920212223242526272829
  1. config BR2_PACKAGE_LIBFTDI
  2. bool "libftdi"
  3. depends on BR2_TOOLCHAIN_HAS_THREADS # libusb
  4. depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # libusb
  5. select BR2_PACKAGE_LIBUSB
  6. select BR2_PACKAGE_LIBUSB_COMPAT
  7. help
  8. Userspace access to FTDI USB interface chips
  9. http://www.intra2net.com/en/developer/libftdi/index.php
  10. if BR2_PACKAGE_LIBFTDI
  11. config BR2_PACKAGE_LIBFTDI_CPP
  12. bool "C++ bindings"
  13. depends on BR2_INSTALL_LIBSTDCPP
  14. depends on BR2_USE_WCHAR
  15. select BR2_PACKAGE_BOOST
  16. help
  17. C++ bindings for libftdi
  18. comment "libftdi C++ bindings need a toolchain w/ wchar, C++"
  19. depends on !BR2_USE_WCHAR || !BR2_INSTALL_LIBSTDCPP
  20. endif # BR2_PACKAGE_LIBFTDI
  21. comment "libftdi needs a toolchain w/ threads, gcc >= 4.9"
  22. depends on !BR2_TOOLCHAIN_HAS_THREADS || \
  23. !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9