From fd1fc5080f6526e28c090b446400924ba08a1ae0 Mon Sep 17 00:00:00 2001 From: Ben Noordhuis Date: Tue, 9 Aug 2011 22:56:18 +0200 Subject: [PATCH] eio: define HAVE_UTIMES 1 on cygwin, fixes build Fixes #1483. --- deps/uv/src/eio/config_cygwin.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/deps/uv/src/eio/config_cygwin.h b/deps/uv/src/eio/config_cygwin.h index f149a6b352a..f64e7fe441a 100644 --- a/deps/uv/src/eio/config_cygwin.h +++ b/deps/uv/src/eio/config_cygwin.h @@ -7,6 +7,9 @@ /* fdatasync(2) is available */ #define HAVE_FDATASYNC 1 +/* utimes(2) is available */ +#define HAVE_UTIMES 1 + /* futimes(2) is available */ #define HAVE_FUTIMES 1