blob: a88d35366b7e2380dcfa6d624ed31e93999ef96b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
--- ./config.mk.orig
+++ ./config.mk
@@ -26,7 +26,7 @@
# Comment out to disable TLS/PSK support in the broker and client. Requires
# WITH_TLS=yes.
# This must be disabled if using openssl < 1.0.
-WITH_TLS_PSK:=yes
+WITH_TLS_PSK:=no
# Comment out to disable client client threading support.
WITH_THREADING:=yes
@@ -46,7 +46,7 @@
# Comment out to remove memory tracking support from the broker. If disabled,
# mosquitto won't track heap memory usage nor export '$SYS/broker/heap/current
# size', but will use slightly less memory and CPU time.
-WITH_MEMORY_TRACKING:=yes
+WITH_MEMORY_TRACKING:=no
# Compile with database upgrading support? If disabled, mosquitto won't
# automatically upgrade old database versions.
@@ -65,7 +65,7 @@
WITH_UUID:=yes
# Build with websockets support on the broker.
-WITH_WEBSOCKETS:=no
+WITH_WEBSOCKETS:=yes
# Use elliptic keys in broker
WITH_EC:=yes
@@ -78,6 +78,7 @@
# Build with async dns lookup support for bridges (temporary). Requires glibc.
#WITH_ADNS:=yes
+WITH_ADNS=no
# =============================================================================
# End of user configuration
@@ -249,7 +250,7 @@
endif
INSTALL?=install
-prefix=/usr/local
+prefix=/usr
mandir=${prefix}/share/man
localedir=${prefix}/share/locale
STRIP?=strip
|