]> code.citadel.org Git - citadel.git/blobdiff - citadel/vcard.c
fix all the <time.h> vs. <sys/time.h> issues, hopefully
[citadel.git] / citadel / vcard.c
index a34a466b0306800270a033358f41142254da1b3f..e9c06f3219f4ed6b58a57932022eb5cafb627d7a 100644 (file)
 #include <stdio.h>
 #include <fcntl.h>
 #include <signal.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 <ctype.h>
 #include <string.h>
 #include <errno.h>
 #include <limits.h>
-#include <pthread.h>
 #include <syslog.h>
 #include "citadel.h"
 #include "server.h"