diff options
-rw-r--r-- | config.c | 2 | ||||
-rw-r--r-- | portability.h | 4 |
2 files changed, 5 insertions, 1 deletions
@@ -3,7 +3,7 @@ #include <unistd.h> #include <errno.h> #ifndef _WIN32 -#include <linux/limits.h> +#include <limits.h> #endif #define BACKEND_NAME "core/cfg" diff --git a/portability.h b/portability.h index f0bfd07..c249a10 100644 --- a/portability.h +++ b/portability.h @@ -18,6 +18,10 @@ #define htole64(x) OSSwapHostToLittleInt64(x) #define be64toh(x) OSSwapBigToHostInt64(x) #define le64toh(x) OSSwapLittleToHostInt64(x) + + #ifndef IPV6_ADD_MEMBERSHIP + #define IPV6_ADD_MEMBERSHIP IPV6_JOIN_GROUP + #endif #endif #ifdef _WIN32 |