summaryrefslogtreecommitdiff
path: root/libguile/net_db.c
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2010-02-17 17:50:43 +0100
committerLudovic Courtès <ludo@gnu.org>2010-02-17 17:50:43 +0100
commitdde9c5a431c67a16febf000d011172c65883f49b (patch)
treedca6d796e10e523f609f74cdc6ea1981751b64b3 /libguile/net_db.c
parent44d70904a6ae93e0a844dedf65b2f84dc93a5048 (diff)
downloadguile-dde9c5a431c67a16febf000d011172c65883f49b.tar.gz
Update to Gnulib v0.0-3448-g6078aa4 for its <netdb.h> fix.
Reverts commit 691b9ec196203fa5d6da3530d5355b2f73e707d1 ("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>.
Diffstat (limited to 'libguile/net_db.c')
-rw-r--r--libguile/net_db.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/libguile/net_db.c b/libguile/net_db.c
index eb0c4c3eb..bcba18ebd 100644
--- a/libguile/net_db.c
+++ b/libguile/net_db.c
@@ -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");