On Sun, Feb 19, 2006 at 09:56:20PM -0500, Tom Lane wrote:
> Albert Chin <[EMAIL PROTECTED]> writes:
> 
> > AC_REPLACE_FUNCS([getaddrinfo]) will not detect getaddrinfo() on Tru64
> > UNIX because getaddrinfo is not in libc.
> 
> Hmm, where is it then?

getaddrinfo is a macro in <netdb.h>:
  #if defined (_SOCKADDR_LEN) || defined (_XOPEN_SOURCE_EXTENDED)
  #define getaddrinfo ngetaddrinfo
  #else
  #define getaddrinfo ogetaddrinfo
  #endif

The solution is to either revert to the 8.1.1 code (my recommendation)
or check for ngetaddrinfo. The latter is a crude hack though.

$ nm /usr/shlib/libc.so | grep getaddrinfo 
__ngetaddrinfo                   | 0004395900636352 | T | 0000000000000008
__ogetaddrinfo                   | 0004395900637184 | T | 0000000000000008
ngetaddrinfo                     | 0004395900636352 | T | 0000000000000008
ogetaddrinfo                     | 0004395900637184 | T | 0000000000000008

-- 
albert chin ([EMAIL PROTECTED])

---------------------------(end of broadcast)---------------------------
TIP 3: Have you checked our extensive FAQ?

               http://www.postgresql.org/docs/faq

Reply via email to