aboutsummaryrefslogtreecommitdiffstats
path: root/util-src
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2018-09-08 11:46:02 +0200
committerKim Alvefur <zash@zash.se>2018-09-08 11:46:02 +0200
commit530a9f9c8ea8a019f581df9dfc46430cba9ad938 (patch)
tree0ed0d09d872d348d19d7990e58c35db950f279a7 /util-src
parentb78f1d3da1d7321240d92f25a239033bbc6fa2d1 (diff)
downloadprosody-530a9f9c8ea8a019f581df9dfc46430cba9ad938.tar.gz
prosody-530a9f9c8ea8a019f581df9dfc46430cba9ad938.zip
util.pposix: Fix or silence a warning on OS X (#1202)
Diffstat (limited to 'util-src')
-rw-r--r--util-src/pposix.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/util-src/pposix.c b/util-src/pposix.c
index 5e20def7..d3b1e5e6 100644
--- a/util-src/pposix.c
+++ b/util-src/pposix.c
@@ -21,6 +21,9 @@
#else
#define _DEFAULT_SOURCE
#endif
+#if defined(__APPLE__)
+#define _DARWIN_C_SOURCE
+#endif
#define _POSIX_C_SOURCE 200809L
#include <stdlib.h>