2
1

Config.in 668 B

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