forked from jpmens/mosquitto-auth-plug
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
porting to mosquitto 1.6 and configuration for RMAP
- Loading branch information
Showing
3 changed files
with
37 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,5 +6,4 @@ np | |
jp*.conf | ||
Makefile | ||
*.a | ||
config.mk | ||
sundry |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# Select your backends from this list | ||
BACKEND_CDB ?= no | ||
BACKEND_MYSQL ?= no | ||
BACKEND_SQLITE ?= no | ||
BACKEND_REDIS ?= no | ||
BACKEND_POSTGRES ?= no | ||
BACKEND_LDAP ?= no | ||
BACKEND_HTTP ?= yes | ||
BACKEND_JWT ?= no | ||
BACKEND_MONGO ?= no | ||
BACKEND_FILES ?= no | ||
BACKEND_MEMCACHED ?= no | ||
|
||
# Specify the path to the Mosquitto sources here | ||
# MOSQUITTO_SRC = /usr/local/Cellar/mosquitto/1.4.12 | ||
MOSQUITTO_SRC = | ||
|
||
# Specify the path the OpenSSL here | ||
OPENSSLDIR = /usr | ||
|
||
# Add support for django hashers algorithm name | ||
SUPPORT_DJANGO_HASHERS ?= no | ||
|
||
# Specify optional/additional linker/compiler flags here | ||
# On macOS, add | ||
# CFG_LDFLAGS = -undefined dynamic_lookup | ||
# as described in https://github.com/eclipse/mosquitto/issues/244 | ||
# | ||
# CFG_LDFLAGS = -undefined dynamic_lookup -L/usr/local/Cellar/openssl/1.0.2l/lib | ||
# CFG_CFLAGS = -I/usr/local/Cellar/openssl/1.0.2l/include -I/usr/local/Cellar/mosquitto/1.4.12/include | ||
CFG_LDFLAGS = | ||
CFG_CFLAGS = |