mirror of https://github.com/nodejs/node.git
EAI_NODATA deprecated, patch to use EAI_NONAME if missing (it is in FreeBSD)
parent
52b295400d
commit
9e97e185ad
|
@ -1080,6 +1080,9 @@ struct resolve_request {
|
|||
char hostname[1];
|
||||
};
|
||||
|
||||
#ifndef EAI_NODATA // EAI_NODATA is deprecated, FreeBSD already thrown it away in favor of EAI_NONAME
|
||||
#define EAI_NODATA EAI_NONAME
|
||||
#endif
|
||||
|
||||
static int AfterResolve(eio_req *req) {
|
||||
ev_unref(EV_DEFAULT_UC);
|
||||
|
|
Loading…
Reference in New Issue