mirror of
https://github.com/nodejs/node-v0.x-archive.git
synced 2026-04-28 03:01:10 -04:00
deps: upgrade libuv to 0b26af3
This commit is contained in:
2
deps/uv/src/unix/stream.c
vendored
2
deps/uv/src/unix/stream.c
vendored
@@ -1119,7 +1119,7 @@ static void uv__stream_io(uv_loop_t* loop, uv__io_t* w, unsigned int events) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (events & UV__POLLIN) {
|
||||
if (events & (UV__POLLIN | UV__POLLERR | UV__POLLHUP)) {
|
||||
assert(uv__stream_fd(stream) >= 0);
|
||||
|
||||
uv__read(stream);
|
||||
|
||||
6
deps/uv/uv.gyp
vendored
6
deps/uv/uv.gyp
vendored
@@ -100,9 +100,11 @@
|
||||
],
|
||||
'link_settings': {
|
||||
'libraries': [
|
||||
'-lws2_32.lib',
|
||||
'-ladvapi32.lib',
|
||||
'-liphlpapi.lib',
|
||||
'-lpsapi.lib',
|
||||
'-liphlpapi.lib'
|
||||
'-lshell32.lib',
|
||||
'-lws2_32.lib'
|
||||
],
|
||||
},
|
||||
}, { # Not Windows i.e. POSIX
|
||||
|
||||
Reference in New Issue
Block a user