* .gnulib: Update to latest.
* bootstrap.conf (gnulib_modules): Import netdb.
* 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.
-Subproject commit e2843e30e8c2885eb8cbc77e20c4e0f4d562d44d
+Subproject commit 28e58203a7ab14264f8fa450884a89e9ae48025c
maintainer-makefile
mkstemp
mktempd
+netdb
perror
physmem
poll
#define VIR_FROM_THIS VIR_FROM_ESX
-/* AI_ADDRCONFIG is missing on some systems. */
-#ifndef AI_ADDRCONFIG
-# define AI_ADDRCONFIG 0
-#endif
-
-
int
esxUtil_ParseQuery(xmlURIPtr uri, char **transport, char **vCenter,
#include <poll.h>
-/* AI_ADDRCONFIG is missing on some systems. */
-#ifndef AI_ADDRCONFIG
-# define AI_ADDRCONFIG 0
-#endif
-
#include "virterror_internal.h"
#include "logging.h"
#include "datatypes.h"
#include <getopt.h>
#include <sys/types.h>
#include <sys/time.h>
+#include <sys/wait.h>
#include "c-ctype.h"
#include <fcntl.h>
#include <locale.h>
#define LVL_WARNING "WARNING"
#define LVL_ERROR "ERROR"
-#ifndef WEXITSTATUS
-# define WEXITSTATUS(x) ((x) & 0xff)
-#endif
/**
* vshErrorLevel:
*
return TRUE;
}
-#ifndef O_SYNC
-# define O_SYNC 0
-#endif
#define LOGFILE_FLAGS (O_WRONLY | O_APPEND | O_CREAT | O_SYNC)
/**