fix all the <time.h> vs. <sys/time.h> issues, hopefully
[citadel.git] / citadel / parsedate.y
index 22ab722b6edf56673c60f078820132f7acbf4b5d..b710129c04f9434a3fc909924458502358e8ad6f 100644 (file)
 #include <stdlib.h>
 #include <sys/types.h>
 #include <ctype.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 "parsedate.h"
 
 int date_lex(void);