Config.in 579 B

1234567891011121314151617
  1. config BR2_PACKAGE_PAHO_MQTT_CPP
  2. bool "paho-mqtt-cpp"
  3. depends on BR2_TOOLCHAIN_HAS_THREADS
  4. depends on !BR2_TOOLCHAIN_HAS_GCC_BUG_64735 # std::future
  5. depends on BR2_INSTALL_LIBSTDCPP
  6. select BR2_PACKAGE_PAHO_MQTT_C
  7. help
  8. MQTT client C++ library
  9. https://eclipse.org/paho/clients/cpp/
  10. comment "paho-mqtt-cpp needs a toolchain w/ threads, C++"
  11. depends on !BR2_TOOLCHAIN_HAS_THREADS || !BR2_INSTALL_LIBSTDCPP
  12. depends on !BR2_TOOLCHAIN_HAS_GCC_BUG_64735
  13. comment "paho-mqtt-cpp needs a toolchain not affected by GCC bug 64735"
  14. depends on BR2_TOOLCHAIN_HAS_GCC_BUG_64735