From 338dcef94c6f7f9e4596b905067c0dd66d78805f Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Tue, 7 Jan 2020 20:06:56 +0100 Subject: [PATCH] - fix macOS compile error. The conditions for this redefinition do not seem to be correct. --- source/thirdparty/include/enet.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/thirdparty/include/enet.h b/source/thirdparty/include/enet.h index 7cc99c232..8c722ad19 100644 --- a/source/thirdparty/include/enet.h +++ b/source/thirdparty/include/enet.h @@ -4878,7 +4878,7 @@ extern "C" { tv->tv_nsec = t.QuadPart % 1000000 * 1000; return (0); } - #elif __APPLE__ && __MAC_OS_X_VERSION_MIN_REQUIRED < 101200 + #elif __APPLE__ && __MAC_OS_X_VERSION_MIN_REQUIRED < 101200 && !defined CLOCK_MONOTONIC #define CLOCK_MONOTONIC 0 int clock_gettime(int X, struct timespec *ts) {