Config.in 718 B

1234567891011121314151617181920
  1. config BR2_PACKAGE_DBUS_CPP
  2. bool "dbus-c++"
  3. depends on BR2_PACKAGE_DBUS
  4. depends on BR2_TOOLCHAIN_HAS_THREADS # dbus
  5. depends on BR2_USE_MMU # dbus
  6. depends on BR2_INSTALL_LIBSTDCPP
  7. depends on !BR2_TOOLCHAIN_USES_MUSL # no PTHREAD_RECURSIVE_MUTEX_*
  8. select BR2_PACKAGE_EXPAT
  9. help
  10. dbus-c++ attempts to provide a C++ API for D-BUS.
  11. The library has a glib/gtk and an Ecore mainloop integration.
  12. It also offers an optional own main loop.
  13. http://sourceforge.net/projects/dbus-cplusplus/
  14. comment "dbus-c++ needs a uClibc or glibc toolchain w/ C++, threads"
  15. depends on BR2_USE_MMU
  16. depends on BR2_PACKAGE_DBUS
  17. depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS \
  18. || BR2_TOOLCHAIN_USES_MUSL