You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you try to compile mosquitto without multithreading (-DWITH_THREADING=OFF) you will get a number of error messages, because mosquitto_internal.h line 271 checks whether threading is enabled or not, but not in the rest of the library.
If you try to compile mosquitto without multithreading (-DWITH_THREADING=OFF) you will get a number of error messages, because mosquitto_internal.h line 271 checks whether threading is enabled or not, but not in the rest of the library.
mosquitto/lib/mosquitto_internal.h
Line 271 in 849e0f5
For example, an attempt is made in handle_connack.c line 120 to use the variable
state_mutex
, but this is not defined if no threads are activated.mosquitto/lib/handle_connack.c
Line 120 in 849e0f5
pthread is now used without verification in so many files that the library must be assumed to be required.
The text was updated successfully, but these errors were encountered: