
11 May
2010
11 May
'10
11:53 a.m.
Eric Blake wrote:
* .gnulib: Update to latest. * src/esx/esx_util.c (AI_ADDRCONFIG): Rely on gnulib. * src/remote/remote_driver.c (AI_ADDRCONFIG): Likewise. * tools/virsh.c (WEXITSTATUS, O_SYNC): Likewise. ... diff --git a/src/esx/esx_util.c b/src/esx/esx_util.c ... -/* AI_ADDRCONFIG is missing on some systems. */ -#ifndef AI_ADDRCONFIG -# define AI_ADDRCONFIG 0 -#endif
All looks fine, except the above. You can remove a definition only if the gnulib module that provides the definition is being used. That's provided by the netdb module, and libvirt isn't using it (yet). So just add netdb to the list in bootstrap.conf, and consider this ACK'd.