From e49429ebd2fe0b7c24e2ee533311dd97f6febd1f Mon Sep 17 00:00:00 2001 From: Fedor Indutny Date: Thu, 7 Aug 2014 15:03:17 +0400 Subject: deps: update libuv to v0.11.28 --- deps/uv/src/unix/core.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'deps/uv/src/unix/core.c') diff --git a/deps/uv/src/unix/core.c b/deps/uv/src/unix/core.c index 402bb00eb2..4770d8d8c6 100644 --- a/deps/uv/src/unix/core.c +++ b/deps/uv/src/unix/core.c @@ -70,6 +70,10 @@ # endif #endif +#ifdef _AIX +#include +#endif + static void uv__run_pending(uv_loop_t* loop); /* Verify that uv_buf_t is ABI-compatible with struct iovec. */ @@ -444,7 +448,8 @@ int uv__close(int fd) { } -#if defined(__linux__) || defined(__FreeBSD__) || defined(__APPLE__) +#if defined(__linux__) || defined(__FreeBSD__) || defined(__APPLE__) || \ + defined(_AIX) int uv__nonblock(int fd, int set) { int r; -- cgit v1.2.3