]> code.citadel.org Git - citadel.git/blobdiff - citadel/serv_info.c
fix all the <time.h> vs. <sys/time.h> issues, hopefully
[citadel.git] / citadel / serv_info.c
index 48c701022e621bf98b85bf0c100b6a6db42874b7..02915751c9e2251d998c8574b04399f0872516e7 100644 (file)
@@ -9,7 +9,18 @@
 #include <stdlib.h>
 #include <unistd.h>
 #include <stdio.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>