Fix incorrect linking of libmosquitto_common.so for the acl and password plugins

Closes #3460. Thanks to Jacopo Labardi
This commit is contained in:
Roger A. Light
2026-02-03 08:29:50 +00:00
parent f07f85bcee
commit 6edc3fb6a7
3 changed files with 6 additions and 2 deletions
+4
View File
@@ -10,6 +10,10 @@
- Fix inconsistent disconnect log message format, and add address:port.
- Fix `plugin`/`global_plugin` option not allowing space characters.
# Plugins
- Fix incorrect linking of libmosquitto_common.so for the acl and password
file plugins. Closes #3460.
2.1.0 - 2026-01-29
==================
+1 -1
View File
@@ -5,7 +5,7 @@ PLUGIN_NAME=mosquitto_acl_file
LOCAL_CFLAGS+=
LOCAL_CPPFLAGS+=-I${R}/src
LOCAL_LDFLAGS+=
LOCAL_LIBADD+=${R}/libcommon/libmosquitto_common.so.${SOVERSION}
LOCAL_LIBADD+=${LIBMOSQ_COMMON}
# Objects for this plugin only, built from source in this directory
OBJS = \
+1 -1
View File
@@ -5,7 +5,7 @@ PLUGIN_NAME=mosquitto_password_file
LOCAL_CFLAGS+=
LOCAL_CPPFLAGS+=-I${R}/src
LOCAL_LDFLAGS+=
LOCAL_LIBADD+=${R}/libcommon/libmosquitto_common.so.${SOVERSION}
LOCAL_LIBADD+=${LIBMOSQ_COMMON}
# Objects for this plugin only, built from source in this directory
OBJS = \