summaryrefslogtreecommitdiff
path: root/deps/uv/uv.gyp
diff options
context:
space:
mode:
authorcjihrig <cjihrig@gmail.com>2018-06-22 11:28:11 -0400
committercjihrig <cjihrig@gmail.com>2018-06-24 20:54:34 -0400
commit537a4baa443daea9850a8e324b5b4d7c21dd2717 (patch)
treef36565e62794a56adfa99a8511c6d2a90c466fbc /deps/uv/uv.gyp
parent49e5f0a10fc3784b318842b06854b38475fc884b (diff)
downloadandroid-node-v8-537a4baa443daea9850a8e324b5b4d7c21dd2717.tar.gz
android-node-v8-537a4baa443daea9850a8e324b5b4d7c21dd2717.tar.bz2
android-node-v8-537a4baa443daea9850a8e324b5b4d7c21dd2717.zip
deps: upgrade to libuv 1.21.0
Notable changes: - Building via cmake is now supported. PR-URL: https://github.com/libuv/libuv/pull/1850 - Stricter checks have been added to prevent watching the same file descriptor multiple times. PR-URL: https://github.com/libuv/libuv/pull/1851 Refs: https://github.com/nodejs/node/issues/3604 - An IPC deadlock on Windows has been fixed. PR-URL: https://github.com/libuv/libuv/pull/1843 Fixes: https://github.com/nodejs/node/issues/9706 Fixes: https://github.com/nodejs/node/issues/7657 - uv_fs_lchown() has been added. PR-URL: https://github.com/libuv/libuv/pull/1826 Refs: https://github.com/nodejs/node/issues/19868 - uv_fs_copyfile() sets errno on error. PR-URL: https://github.com/libuv/libuv/pull/1881 Fixes: https://github.com/nodejs/node/issues/21329 - uv_fs_fchmod() supports -A files on Windows. PR-URL: https://github.com/libuv/libuv/pull/1819 Refs: https://github.com/nodejs/node/issues/12803 PR-URL: https://github.com/nodejs/node/pull/21466 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
Diffstat (limited to 'deps/uv/uv.gyp')
-rw-r--r--deps/uv/uv.gyp24
1 files changed, 12 insertions, 12 deletions
diff --git a/deps/uv/uv.gyp b/deps/uv/uv.gyp
index e41f9ff5dc..8aaf541b99 100644
--- a/deps/uv/uv.gyp
+++ b/deps/uv/uv.gyp
@@ -64,10 +64,10 @@
'sources': [
'common.gypi',
'include/uv.h',
- 'include/tree.h',
- 'include/uv-errno.h',
- 'include/uv-threadpool.h',
- 'include/uv-version.h',
+ 'include/uv/tree.h',
+ 'include/uv/errno.h',
+ 'include/uv/threadpool.h',
+ 'include/uv/version.h',
'src/fs-poll.c',
'src/heap-inl.h',
'src/inet.c',
@@ -95,7 +95,7 @@
'_GNU_SOURCE',
],
'sources': [
- 'include/uv-win.h',
+ 'include/uv/win.h',
'src/win/async.c',
'src/win/atomicops-inl.h',
'src/win/core.c',
@@ -144,12 +144,12 @@
},
}, { # Not Windows i.e. POSIX
'sources': [
- 'include/uv-unix.h',
- 'include/uv-linux.h',
- 'include/uv-sunos.h',
- 'include/uv-darwin.h',
- 'include/uv-bsd.h',
- 'include/uv-aix.h',
+ 'include/uv/unix.h',
+ 'include/uv/linux.h',
+ 'include/uv/sunos.h',
+ 'include/uv/darwin.h',
+ 'include/uv/bsd.h',
+ 'include/uv/aix.h',
'src/unix/async.c',
'src/unix/atomic-ops.h',
'src/unix/core.c',
@@ -199,7 +199,7 @@
['uv_library=="shared_library" and OS!="mac" and OS!="zos"', {
# This will cause gyp to set soname
# Must correspond with UV_VERSION_MAJOR
- # in include/uv-version.h
+ # in include/uv/version.h
'product_extension': 'so.1',
}],
],