summaryrefslogtreecommitdiff
path: root/deps/uv/src/unix/internal.h
diff options
context:
space:
mode:
authorBen Noordhuis <info@bnoordhuis.nl>2012-11-20 20:11:08 +0100
committerBen Noordhuis <info@bnoordhuis.nl>2012-11-20 22:44:23 +0100
commit8ba1bec47d1a3f16db25af4efc29fab2ad2ffd3c (patch)
tree1cd4b46b764070cbf66ab4a7f5c616570c8cc81a /deps/uv/src/unix/internal.h
parent6f9ed28fac9db8ca34169059962118209826b28a (diff)
downloadandroid-node-v8-8ba1bec47d1a3f16db25af4efc29fab2ad2ffd3c.tar.gz
android-node-v8-8ba1bec47d1a3f16db25af4efc29fab2ad2ffd3c.tar.bz2
android-node-v8-8ba1bec47d1a3f16db25af4efc29fab2ad2ffd3c.zip
deps: upgrade libuv to fc5984f
Diffstat (limited to 'deps/uv/src/unix/internal.h')
-rw-r--r--deps/uv/src/unix/internal.h16
1 files changed, 0 insertions, 16 deletions
diff --git a/deps/uv/src/unix/internal.h b/deps/uv/src/unix/internal.h
index 4369cd40d5..6054461822 100644
--- a/deps/uv/src/unix/internal.h
+++ b/deps/uv/src/unix/internal.h
@@ -31,13 +31,10 @@
# define inline __inline
#endif
-#undef HAVE_FUTIMES
-#undef HAVE_KQUEUE
#undef HAVE_PORTS_FS
#if __linux__
# include "linux/syscalls.h"
-# define HAVE_FUTIMES 1 /* emulated with utimesat() */
#endif /* __linux__ */
#if defined(__sun)
@@ -46,22 +43,9 @@
# ifdef PORT_SOURCE_FILE
# define HAVE_PORTS_FS 1
# endif
-# define HAVE_FUTIMES 1
# define futimes(fd, tv) futimesat(fd, (void*)0, tv)
#endif /* __sun */
-#if defined(__APPLE__) || defined(__FreeBSD__) || defined(__sun)
-# define HAVE_FUTIMES 1
-#endif
-
-/* FIXME exact copy of the #ifdef guard in uv-unix.h */
-#if defined(__APPLE__) \
- || defined(__FreeBSD__) \
- || defined(__OpenBSD__) \
- || defined(__NetBSD__)
-# define HAVE_KQUEUE 1
-#endif
-
#if defined(__APPLE__) && !TARGET_OS_IPHONE
# include <CoreServices/CoreServices.h>
#endif