While we're at it, also enable parallel builds. Signed-off-by: Matthias Schiffer <mschiffer@universe-factory.net>
10 lines
380 B
Diff
10 lines
380 B
Diff
--- a/deps/uv/src/unix/getaddrinfo.c
|
|
+++ b/deps/uv/src/unix/getaddrinfo.c
|
|
@@ -99,6 +99,7 @@ static void uv__getaddrinfo_work(struct
|
|
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);
|
|
}
|