Workaround for platforms that have getaddrinfo() without AI_NUMERICHOST.

We don't actually need the flag, so just #define it as zero in such cases.
This commit is contained in:
Tom Lane 2003-08-14 18:32:55 +00:00
parent 2b5f049f7c
commit 71b0fe5b2e
1 changed files with 10 additions and 2 deletions

View File

@ -15,7 +15,7 @@
*
* Copyright (c) 2003, PostgreSQL Global Development Group
*
* $Id: getaddrinfo.h,v 1.10 2003/08/08 21:42:31 momjian Exp $
* $Id: getaddrinfo.h,v 1.11 2003/08/14 18:32:55 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@ -31,7 +31,6 @@
/* Various macros that ought to be in <netdb.h>, but might not be */
#ifndef EAI_FAIL
#define EAI_BADFLAGS -1
#define EAI_NONAME -2
#define EAI_AGAIN -3
@ -46,9 +45,18 @@
#ifndef AI_PASSIVE
#define AI_PASSIVE 0x0001
#endif
#ifndef AI_NUMERICHOST
/*
* some platforms don't support AI_NUMERICHOST; define as zero if using
* the system version of getaddrinfo...
*/
#if defined(HAVE_STRUCT_ADDRINFO) && defined(HAVE_GETADDRINFO)
#define AI_NUMERICHOST 0
#else
#define AI_NUMERICHOST 0x0004
#endif
#endif
#ifndef NI_NUMERICHOST
#define NI_NUMERICHOST 1