aboutsummaryrefslogtreecommitdiffstats
path: root/util-src/pposix.c
diff options
context:
space:
mode:
authorEmmanuel Gil Peyrot <linkmauve@linkmauve.fr>2018-08-08 09:27:34 +0200
committerEmmanuel Gil Peyrot <linkmauve@linkmauve.fr>2018-08-08 09:27:34 +0200
commit9d9392a941a76d0b3f8c9bd471bd40a306bd156b (patch)
tree30c75d2a778b4fea03969a57f406e0f339ec21ea /util-src/pposix.c
parent10fe4432f4557fe4a12db3d11cf7e292fd74f34d (diff)
downloadprosody-9d9392a941a76d0b3f8c9bd471bd40a306bd156b.tar.gz
prosody-9d9392a941a76d0b3f8c9bd471bd40a306bd156b.zip
net, pposix, signal: Check for redefined defines, fix warnings.
Diffstat (limited to 'util-src/pposix.c')
-rw-r--r--util-src/pposix.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/util-src/pposix.c b/util-src/pposix.c
index 215c45c3..656bda07 100644
--- a/util-src/pposix.c
+++ b/util-src/pposix.c
@@ -17,11 +17,17 @@
#if defined(__linux__)
+#ifndef _GNU_SOURCE
#define _GNU_SOURCE
+#endif
#else
+#ifndef _DEFAULT_SOURCE
#define _DEFAULT_SOURCE
#endif
+#endif
+#ifndef _POSIX_C_SOURCE
#define _POSIX_C_SOURCE 200809L
+#endif
#include <stdlib.h>
#include <math.h>