Changes: Version bump to 8.10.0 Refreshed patches Added npx install Added 004-node_crypto-remove-std.patch Additional patch fixes node_cypto compile failure: ./src/node_crypto.cc:5626:32: error: expected unqualified-id before '(' Signed-off-by: Arturo Rinaldi <arty.net2@gmail.com> Signed-off-by: Marko Ratkaj <marko.ratkaj@sartura.hr>
10 lines
342 B
Diff
10 lines
342 B
Diff
--- a/deps/uv/src/unix/getaddrinfo.c
|
|
+++ b/deps/uv/src/unix/getaddrinfo.c
|
|
@@ -100,6 +100,7 @@
|
|
int err;
|
|
|
|
req = container_of(w, uv_getaddrinfo_t, work_req);
|
|
+ req->hints->ai_flags &= ~AI_V4MAPPED;
|
|
err = getaddrinfo(req->hostname, req->service, req->hints, &req->addrinfo);
|
|
req->retcode = uv__getaddrinfo_translate_error(err);
|
|
}
|