Add notes that libsystemd-dev or similar is needed.

This is when building with systemd support on Linux.

Closes #2019. Thanks to Mark Symmes.
This commit is contained in:
Roger A. Light 2021-01-15 09:58:19 +00:00
parent 00083623f0
commit 300dc54dad
3 changed files with 5 additions and 0 deletions

View File

@ -4,6 +4,8 @@ Broker:
- Fix message expiry interval property not being honoured in - Fix message expiry interval property not being honoured in
`mosquitto_broker_publish` and `mosquitto_broker_publish_copy`. `mosquitto_broker_publish` and `mosquitto_broker_publish_copy`.
- Fix websockets listeners with TLS not responding. Closes #2020. - Fix websockets listeners with TLS not responding. Closes #2020.
- Add notes that libsystemd-dev or similar is needed if building with systemd
support. Closes #2019.
2.0.5 - 2021-01-11 2.0.5 - 2021-01-11

View File

@ -7,6 +7,7 @@ are optional.
* libwebsockets (optional, disabled by default, version 2.4 and above) * libwebsockets (optional, disabled by default, version 2.4 and above)
* cJSON (optional but recommended, for dynamic-security plugin support, and * cJSON (optional but recommended, for dynamic-security plugin support, and
JSON output from mosquitto_sub/mosquitto_rr) JSON output from mosquitto_sub/mosquitto_rr)
* libsystemd-dev (optional, if building with systemd support on Linux)
* On Windows, a pthreads library is required if threading support is to be * On Windows, a pthreads library is required if threading support is to be
included. included.

View File

@ -59,6 +59,8 @@ WITH_SYS_TREE:=yes
# Build with systemd support. If enabled, mosquitto will notify systemd after # Build with systemd support. If enabled, mosquitto will notify systemd after
# initialization. See README in service/systemd/ for more information. # initialization. See README in service/systemd/ for more information.
# Setting to yes means the libsystemd-dev or similar package will need to be
# installed.
WITH_SYSTEMD:=no WITH_SYSTEMD:=no
# Build with SRV lookup support. # Build with SRV lookup support.