From 236b96a8cfbb8c41c36e40248b8fa01a0bb2b269 Mon Sep 17 00:00:00 2001 From: Ben Noordhuis Date: Wed, 17 Aug 2011 07:01:29 +0200 Subject: [PATCH] unix: define HAVE_FUTIMES on freebsd --- src/unix/internal.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/unix/internal.h b/src/unix/internal.h index c30ef6e4..98fc51fc 100644 --- a/src/unix/internal.h +++ b/src/unix/internal.h @@ -55,6 +55,10 @@ # define HAVE_FUTIMES #endif +#ifdef __FreeBSD__ +# define HAVE_FUTIMES +#endif + /* flags */ enum { UV_CLOSING = 0x00000001, /* uv_close() called but not finished. */