adapt to API change in gnulib

* qemud/qemud.c: Include <netdb.h>, not "getaddrinfo.h"
* src/remote_internal.c: Likewise.
This commit is contained in:
Jim Meyering 2008-10-28 17:46:00 +00:00
parent 9801d7c595
commit cabb75c503
3 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,9 @@
Tue Oct 28 10:22:44 +0100 2008 Jim Meyering <meyering@redhat.com>
adapt to API change in gnulib
* qemud/qemud.c: Include <netdb.h>, not "getaddrinfo.h"
* src/remote_internal.c: Likewise.
Tue Oct 28 10:22:22 +0100 2008 Jim Meyering <meyering@redhat.com>
* src/network_conf.c: Include <string.h> for declaration of memcmp.

View File

@ -47,11 +47,11 @@
#include <fnmatch.h>
#include <grp.h>
#include <signal.h>
#include <netdb.h>
#include "internal.h"
#include "qemud.h"
#include "getaddrinfo.h"
#include "util.h"
#include "remote_internal.h"
#include "conf.h"

View File

@ -58,7 +58,7 @@
#endif
#include <libxml/uri.h>
#include "getaddrinfo.h"
#include <netdb.h>
/* AI_ADDRCONFIG is missing on some systems. */
#ifndef AI_ADDRCONFIG