mirror of
https://github.com/eclipse-mosquitto/mosquitto.git
synced 2026-09-22 16:15:05 +08:00
Fix missing mach/mach_time.h header on OS X.
Closes #1831. Thanks to P-Hagen.
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
Client library:
|
||||
- Fix send quota being incorrecly reset on reconnect. Closes #1822.
|
||||
- Don't use logging until log mutex is initialised. Closes #1819.
|
||||
- Fix missing mach/mach_time.h header on OS X. Closes #1831.
|
||||
|
||||
1.6.12 - 2020-08-19
|
||||
===================
|
||||
|
||||
@@ -24,6 +24,10 @@ Contributors:
|
||||
#include <strings.h>
|
||||
#endif
|
||||
|
||||
#if defined(__APPLE__)
|
||||
# include <mach/mach_time.h>
|
||||
#endif
|
||||
|
||||
#include "logging_mosq.h"
|
||||
#include "mosquitto.h"
|
||||
#include "mosquitto_internal.h"
|
||||
|
||||
Reference in New Issue
Block a user