aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorcbdev <cb@cbcdn.com>2020-04-27 21:33:10 +0200
committercbdev <cb@cbcdn.com>2020-04-27 21:33:10 +0200
commit30d7adab904dfb5350ba57f1cc0e2de49a740c01 (patch)
treed29b62150a5b65b8383d4ed58597b3a507a7d6ca
parentf692715444c6ddeb47bf87b53acf46798785290a (diff)
downloadmidimonster-30d7adab904dfb5350ba57f1cc0e2de49a740c01.tar.gz
midimonster-30d7adab904dfb5350ba57f1cc0e2de49a740c01.tar.bz2
midimonster-30d7adab904dfb5350ba57f1cc0e2de49a740c01.zip
Fix OSX compilation
-rw-r--r--config.c2
-rw-r--r--portability.h4
2 files changed, 5 insertions, 1 deletions
diff --git a/config.c b/config.c
index b5e0747..11e8a70 100644
--- a/config.c
+++ b/config.c
@@ -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