Fixed <sys/time.h> / <time.h> handling as suggested by the autoconf
[freeglut] / src / freeglut_internal.h
index b9cc632..effb2e0 100644 (file)
 #include <stdarg.h>
 #if TARGET_HOST_UNIX_X11
 #include <unistd.h>
-#include <sys/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
 #endif
 
 /* The system-dependant include files should go here: */