xref: /OK3568_Linux_fs/buildroot/package/mosquitto/Config.in (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1*4882a593Smuzhiyunconfig BR2_PACKAGE_MOSQUITTO
2*4882a593Smuzhiyun	bool "mosquitto"
3*4882a593Smuzhiyun	help
4*4882a593Smuzhiyun	  Eclipse Mosquitto is an open source (EPL/EDL licensed) message
5*4882a593Smuzhiyun	  broker that implements the MQTT protocol versions 5.0, 3.1.1
6*4882a593Smuzhiyun	  and 3.1. Mosquitto is lightweight and is suitable for use on
7*4882a593Smuzhiyun	  all devices from low power single board computers to full
8*4882a593Smuzhiyun	  servers.
9*4882a593Smuzhiyun
10*4882a593Smuzhiyun	  The MQTT protocol provides a lightweight method of carrying
11*4882a593Smuzhiyun	  out messaging using a publish/subscribe model. This makes it
12*4882a593Smuzhiyun	  suitable for Internet of Things messaging such as with low
13*4882a593Smuzhiyun	  power sensors or mobile devices such as phones,
14*4882a593Smuzhiyun	  embedded computers or microcontrollers.
15*4882a593Smuzhiyun
16*4882a593Smuzhiyun	  The Mosquitto project also provides a C library for
17*4882a593Smuzhiyun	  implementing MQTT clients, and the very popular mosquitto_pub
18*4882a593Smuzhiyun	  and mosquitto_sub command line MQTT clients.
19*4882a593Smuzhiyun
20*4882a593Smuzhiyun	  http://mosquitto.org/
21*4882a593Smuzhiyun
22*4882a593Smuzhiyunconfig BR2_PACKAGE_MOSQUITTO_BROKER
23*4882a593Smuzhiyun	bool "install the mosquitto broker"
24*4882a593Smuzhiyun	default y
25*4882a593Smuzhiyun	depends on BR2_USE_MMU # fork()
26*4882a593Smuzhiyun	depends on !BR2_STATIC_LIBS # include <dlfcn.h>
27*4882a593Smuzhiyun	depends on BR2_PACKAGE_MOSQUITTO
28*4882a593Smuzhiyun	help
29*4882a593Smuzhiyun	  Build and install the mosquitto broker onto target.
30*4882a593Smuzhiyun
31*4882a593Smuzhiyuncomment "mosquitto broker needs a toolchain w/ dynamic library"
32*4882a593Smuzhiyun	depends on BR2_USE_MMU
33*4882a593Smuzhiyun	depends on BR2_STATIC_LIBS
34*4882a593Smuzhiyun	depends on BR2_PACKAGE_MOSQUITTO
35