Enable the use of getaddrinfo() in libxcb. This allows X11 clients to talk to a remote server over IPv6.
This is not a new feature, but somehow we lost it along the way and nobody noticed. Tested on alpha, amd64, sparc64. Index: lib/libxcb/src/config.h =================================================================== RCS file: /cvs/xenocara/lib/libxcb/src/config.h,v retrieving revision 1.2 diff -u -p -r1.2 config.h --- lib/libxcb/src/config.h 5 Oct 2011 18:05:48 -0000 1.2 +++ lib/libxcb/src/config.h 30 Mar 2013 22:38:59 -0000 @@ -13,6 +13,9 @@ /* Define to 1 if you have the <dlfcn.h> header file. */ #define HAVE_DLFCN_H 1 +/* getaddrinfo() function is available */ +#define HAVE_GETADDRINFO 1 + /* Define to 1 if you have the <inttypes.h> header file. */ #define HAVE_INTTYPES_H 1 -- Christian "naddy" Weisgerber [email protected]
