EAI_NODATA deprecated, patch to use EAI_NONAME if missing (it is in FreeBSD)

pull/5370/head
Herbert Vojcik 2010-03-20 14:37:16 +01:00 committed by Ryan Dahl
parent 52b295400d
commit 9e97e185ad
1 changed files with 3 additions and 0 deletions

View File

@ -1080,6 +1080,9 @@ struct resolve_request {
char hostname[1]; 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) { static int AfterResolve(eio_req *req) {
ev_unref(EV_DEFAULT_UC); ev_unref(EV_DEFAULT_UC);