summaryrefslogtreecommitdiff
path: root/lib/getaddrinfo.h
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2006-02-14 23:08:59 +0000
committerPaul Eggert <eggert@cs.ucla.edu>2006-02-14 23:08:59 +0000
commit05e61daca4d7e0ed1f82e0e604812b90b8bcbde1 (patch)
treedfa8745d2ae39bfabc619e50d16f565a10fe16f8 /lib/getaddrinfo.h
parent83dcf2436fec5440943c03dac404f4b25f72e222 (diff)
downloadcoreutils-05e61daca4d7e0ed1f82e0e604812b90b8bcbde1.tar.xz
Sync from gnulib.
Diffstat (limited to 'lib/getaddrinfo.h')
-rw-r--r--lib/getaddrinfo.h16
1 files changed, 13 insertions, 3 deletions
diff --git a/lib/getaddrinfo.h b/lib/getaddrinfo.h
index 65f52cda6..7722c14ba 100644
--- a/lib/getaddrinfo.h
+++ b/lib/getaddrinfo.h
@@ -1,5 +1,5 @@
/* Get address information.
- Copyright (C) 1996-2002, 2003, 2004, 2005 Free Software Foundation, Inc.
+ Copyright (C) 1996-2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
Contributed by Simon Josefsson <simon@josefsson.org>.
This program is free software; you can redistribute it and/or modify
@@ -26,7 +26,9 @@
# include <sys/types.h>
/* Get all getaddrinfo related declarations, if available. */
# include <sys/socket.h>
+#ifdef HAVE_NETDB_H
# include <netdb.h>
+#endif
# ifndef HAVE_STRUCT_ADDRINFO
@@ -65,10 +67,18 @@ struct addrinfo
# define EAI_FAMILY -6 /* `ai_family' not supported. */
# define EAI_SOCKTYPE -7 /* `ai_socktype' not supported. */
# define EAI_SERVICE -8 /* SERVICE not supported for `ai_socktype'. */
-# define EAI_ADDRFAMILY -9 /* Address family for NAME not supported. */
# define EAI_MEMORY -10 /* Memory allocation failure. */
-# define EAI_SYSTEM -11 /* System error returned in `errno'. */
# define EAI_OVERFLOW -12 /* Argument buffer overflow. */
+#endif
+# ifndef EAI_ADDRFAMILY
+/* Not defined on mingw32. XXX May be incorrect? Perhaps it is never
+ returned? */
+# define EAI_ADDRFAMILY -9 /* Address family for NAME not supported. */
+# endif
+# ifndef EAI_SYSTEM
+/* Not defined on mingw32. XXX May be incorrect? Perhaps it is never
+ returned? */
+# define EAI_SYSTEM -11 /* System error returned in `errno'. */
# endif
# ifdef __USE_GNU