xref: /OK3568_Linux_fs/buildroot/package/dbus-cpp/Config.in (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1config 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
14	  http://sourceforge.net/projects/dbus-cplusplus/
15
16comment "dbus-c++ needs a uClibc or glibc toolchain w/ C++, threads"
17	depends on BR2_USE_MMU
18	depends on BR2_PACKAGE_DBUS
19	depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS \
20		|| BR2_TOOLCHAIN_USES_MUSL
21