]> sjero.net Git - wget/blobdiff - src/ptimer.c
[svn] Use Windows timers under Cygwin.
[wget] / src / ptimer.c
index 472e74ba395064e4b659161f3c0e295944886e1a..33ca728eb8d3bcdd6c75c42cdbd0b88e4cbf7da9 100644 (file)
@@ -66,6 +66,13 @@ so, delete this exception statement from your version.  */
 #endif
 #include <assert.h>
 
+/* Cygwin currently (as of 2005-04-08, Cygwin 1.5.14) lack clock_getres,
+   but still define _POSIX_TIMERS!  Because of that we simply use the
+   Windows timers under Cygwin.  */
+#ifdef __CYGWIN__
+# include <windows.h>
+#endif
+
 #include "wget.h"
 #include "ptimer.h"
 
@@ -82,7 +89,7 @@ extern int errno;
 #undef PTIMER_TIME
 #undef PTIMER_WINDOWS
 
-#ifdef WINDOWS
+#if defined(WINDOWS) || defined(__CYGWIN__)
 # define PTIMER_WINDOWS                /* use Windows timers */
 #else
 # if _POSIX_TIMERS > 0