More W32 resolver workarounds
[oweals/gnunet.git] / src / include / platform.h
index 9d58427b9ed8d0ca76a373ac5298ef2e3749d687..b69426168338b9ee197bab3ab10b45d0c3d63ff2 100644 (file)
 #include <sys/types.h>
 #endif
 
-#define ALLOW_EXTRA_CHECKS GNUNET_NO
+/**
+ * These may be expensive, but good for debugging...
+ */
+#define ALLOW_EXTRA_CHECKS GNUNET_YES
 
 /**
  * For strptime (glibc2 needs this).
  */
 #ifndef _XOPEN_SOURCE
-#define _XOPEN_SOURCE
+#define _XOPEN_SOURCE 499
 #endif
 
 #ifndef _REENTRANT
 #if HAVE_UCRED_H
 #include <ucred.h>
 #endif
+#if HAVE_SYS_UCRED_H
+#include <sys/ucred.h>
+#endif
 #ifdef CYGWIN
 #include <windows.h>
 #include <cygwin/if.h>
@@ -266,10 +272,9 @@ atoll (const char *nptr);
 #define SOCKTYPE int
 #endif
 
-#if ENABLE_SUPERMUC
-#define GNUNET_TERM_SIG SIGUSR1
-#else
+/**
+ * The termination signal
+ */
 #define GNUNET_TERM_SIG SIGTERM
-#endif
 
 #endif