xref: /OK3568_Linux_fs/buildroot/package/domoticz/Config.in (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1*4882a593Smuzhiyunconfig BR2_PACKAGE_DOMOTICZ
2*4882a593Smuzhiyun	bool "domoticz"
3*4882a593Smuzhiyun	depends on BR2_USE_MMU # fork()
4*4882a593Smuzhiyun	depends on !BR2_STATIC_LIBS
5*4882a593Smuzhiyun	depends on BR2_TOOLCHAIN_GCC_AT_LEAST_6 # C++14
6*4882a593Smuzhiyun	# pthread_condattr_setclock
7*4882a593Smuzhiyun	depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL # mosquitto
8*4882a593Smuzhiyun	depends on BR2_INSTALL_LIBSTDCPP
9*4882a593Smuzhiyun	depends on BR2_USE_WCHAR
10*4882a593Smuzhiyun	depends on BR2_PACKAGE_LUA_5_3
11*4882a593Smuzhiyun	depends on BR2_TOOLCHAIN_SUPPORTS_ALWAYS_LOCKFREE_ATOMIC_INTS # boost-thread
12*4882a593Smuzhiyun	depends on !BR2_TOOLCHAIN_HAS_GCC_BUG_64735 # exception_ptr
13*4882a593Smuzhiyun	select BR2_PACKAGE_BOOST
14*4882a593Smuzhiyun	select BR2_PACKAGE_BOOST_ATOMIC
15*4882a593Smuzhiyun	select BR2_PACKAGE_BOOST_DATE_TIME
16*4882a593Smuzhiyun	select BR2_PACKAGE_BOOST_SYSTEM
17*4882a593Smuzhiyun	select BR2_PACKAGE_BOOST_THREAD
18*4882a593Smuzhiyun	select BR2_PACKAGE_CEREAL
19*4882a593Smuzhiyun	select BR2_PACKAGE_FMT
20*4882a593Smuzhiyun	select BR2_PACKAGE_JSONCPP
21*4882a593Smuzhiyun	select BR2_PACKAGE_LIBCURL
22*4882a593Smuzhiyun	select BR2_PACKAGE_MOSQUITTO
23*4882a593Smuzhiyun	select BR2_PACKAGE_OPENSSL
24*4882a593Smuzhiyun	select BR2_PACKAGE_SQLITE
25*4882a593Smuzhiyun	select BR2_PACKAGE_ZLIB
26*4882a593Smuzhiyun	help
27*4882a593Smuzhiyun	  Domoticz is a Home Automation System that lets you monitor
28*4882a593Smuzhiyun	  and configure various devices like: Lights, Switches,
29*4882a593Smuzhiyun	  various sensors/meters like Temperature, Rain, Wind, UV,
30*4882a593Smuzhiyun	  Electra, Gas, Water and much more. Notifications/Alerts can
31*4882a593Smuzhiyun	  be sent to any mobile device.
32*4882a593Smuzhiyun
33*4882a593Smuzhiyun	  http://domoticz.com
34*4882a593Smuzhiyun
35*4882a593Smuzhiyuncomment "domoticz needs lua 5.3 and a toolchain w/ C++, gcc >= 6, NPTL, wchar, dynamic library"
36*4882a593Smuzhiyun	depends on BR2_USE_MMU
37*4882a593Smuzhiyun	depends on BR2_TOOLCHAIN_SUPPORTS_ALWAYS_LOCKFREE_ATOMIC_INTS
38*4882a593Smuzhiyun	depends on !BR2_INSTALL_LIBSTDCPP || \
39*4882a593Smuzhiyun		!BR2_TOOLCHAIN_GCC_AT_LEAST_6 || \
40*4882a593Smuzhiyun		!BR2_TOOLCHAIN_HAS_THREADS_NPTL || \
41*4882a593Smuzhiyun		!BR2_USE_WCHAR || BR2_STATIC_LIBS || \
42*4882a593Smuzhiyun		!BR2_PACKAGE_LUA_5_3
43*4882a593Smuzhiyun
44*4882a593Smuzhiyuncomment "domoticz needs exception_ptr"
45*4882a593Smuzhiyun	depends on BR2_TOOLCHAIN_HAS_GCC_BUG_64735
46