]> arthur.barton.de Git - netatalk.git/commitdiff
Portability fix
authorFrank Lahm <franklahm@googlemail.com>
Mon, 7 Mar 2011 09:08:05 +0000 (10:08 +0100)
committerFrank Lahm <franklahm@googlemail.com>
Mon, 7 Mar 2011 09:08:05 +0000 (10:08 +0100)
etc/cnid_dbd/comm.c

index 0a56be91087f79133e175591a44f908fad25e2f3..083d27a7d8022129c9c8f8ffb4f22571e5ce8842 100644 (file)
@@ -9,6 +9,16 @@
 #include "config.h"
 #endif
 
+#ifndef _XOPEN_SOURCE
+# define _XOPEN_SOURCE 600
+#endif
+#ifndef __EXTENSIONS__
+# define __EXTENSIONS__
+#endif
+#ifndef _GNU_SOURCE
+# define _GNU_SOURCE
+#endif
+
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
@@ -18,7 +28,6 @@
 #include <sys/types.h>
 #include <sys/time.h>
 #include <sys/uio.h>
-#define _XPG4_2 1
 #include <sys/socket.h>
 #include <sys/select.h>
 #include <assert.h>