Parcourir la source

Include sys/time.h in timers.c and time_fmt.c

This fixes compilation on OpenBSD.

Signed-off-by: Kris Katterjohn <katterjohn@gmail.com>
Kris Katterjohn il y a 5 ans
Parent
commit
daaa2751ed
2 fichiers modifiés avec 8 ajouts et 0 suppressions
  1. 4 0
      src/lib/encoding/time_fmt.c
  2. 4 0
      src/lib/evloop/timers.c

+ 4 - 0
src/lib/encoding/time_fmt.c

@@ -26,6 +26,10 @@
 #include <string.h>
 #include <time.h>
 
+#ifdef HAVE_SYS_TIME_H
+#include <sys/time.h>
+#endif
+
 #ifdef _WIN32
 /* For struct timeval */
 #include <winsock2.h>

+ 4 - 0
src/lib/evloop/timers.c

@@ -39,6 +39,10 @@
 #include "lib/malloc/malloc.h"
 #include "lib/time/compat_time.h"
 
+#ifdef HAVE_SYS_TIME_H
+#include <sys/time.h>
+#endif
+
 #ifdef _WIN32
 // For struct timeval.
 #include <winsock2.h>