]> code.citadel.org Git - citadel.git/blobdiff - citadel/policy.c
- port to Cygwin (DLL support, etc.)
[citadel.git] / citadel / policy.c
index 7c51fd0b6da65b37b3a1e1a2cdb465e79e8d7a90..41b833b90715ddb655a7f6161d1d842f12c3daaf 100644 (file)
@@ -4,17 +4,33 @@
  * Functions which manage policy for rooms (such as message expiry)
  */
 
+#ifdef DLL_EXPORT
+#define IN_LIBCIT
+#endif
+
 #include "sysdep.h"
 #include <stdlib.h>
 #include <unistd.h>
 #include <stdio.h>
 #include <sys/stat.h>
 #include <string.h>
-#include <time.h>
+
+#if TIME_WITH_SYS_TIME
+# include <sys/time.h>
+# include <time.h>
+#else
+# if HAVE_SYS_TIME_H
+#  include <sys/time.h>
+# else
+#  include <time.h>
+# endif
+#endif
+
 #include <limits.h>
 #include "citadel.h"
 #include "server.h"
 #include "database.h"
+#include "dynloader.h"
 #include "config.h"
 #include "room_ops.h"
 #include "sysdep_decls.h"