1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-17 01:00:20 +02:00

Update to Gnulib v0.0-3448-g6078aa4 for its <netdb.h> fix.

Reverts commit 691b9ec196 ("getaddrinfo:
Define macros lacking in NetBSD 5.0.").

* libguile/net_db.c (AI_ALL, AI_V4MAPPED, AI_ADDRCONFIG): Remove
  placeholder definitions, how provided by Gnulib's <netdb.h>.
This commit is contained in:
Ludovic Courtès 2010-02-17 17:50:43 +01:00
parent 44d70904a6
commit dde9c5a431
4 changed files with 49 additions and 29 deletions

View file

@ -73,17 +73,6 @@ extern int h_errno;
extern const char *hstrerror (int);
#endif
/* NetBSD 5.0 lacks the following flags. */
#ifndef AI_ALL
# define AI_ALL 0
#endif
#ifndef AI_V4MAPPED
# define AI_V4MAPPED 0
#endif
#ifndef AI_ADDRCONFIG
# define AI_ADDRCONFIG 0
#endif
SCM_SYMBOL (scm_host_not_found_key, "host-not-found");