Fixed <sys/time.h> / <time.h> handling as suggested by the autoconf
[freeglut] / src / freeglut_internal.h
index c1d8b4e..effb2e0 100644 (file)
 #ifndef  FREEGLUT_INTERNAL_H
 #define  FREEGLUT_INTERNAL_H
 
+#ifdef HAVE_CONFIG_H
+#    include "config.h"
+#endif
+
 /* XXX Update these for each release! */
 #define  VERSION_MAJOR 2
 #define  VERSION_MINOR 2
 #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: */