Merge branch 'upstream'
[gnulib.git] / modules / netdb
1 Description:
2 A <netdb.h> for systems lacking it.
3
4 Files:
5 lib/netdb.in.h
6 m4/netdb_h.m4
7
8 Depends-on:
9 include_next
10 sys_socket
11
12 configure.ac:
13 gl_HEADER_NETDB
14
15 Makefile.am:
16 BUILT_SOURCES += $(NETDB_H)
17
18 # We need the following in order to create <netdb.h> when the system
19 # doesn't have one that works with the given compiler.
20 netdb.h: netdb.in.h
21         $(AM_V_GEN)rm -f $@-t $@ && \
22         { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
23           sed -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \
24               -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \
25               -e 's|@''NEXT_NETDB_H''@|$(NEXT_NETDB_H)|g' \
26               -e 's|@''HAVE_NETDB_H''@|$(HAVE_NETDB_H)|g' \
27               -e 's|@''GNULIB_GETADDRINFO''@|$(GNULIB_GETADDRINFO)|g' \
28               -e 's|@''HAVE_STRUCT_ADDRINFO''@|$(HAVE_STRUCT_ADDRINFO)|g' \
29               -e 's|@''HAVE_DECL_FREEADDRINFO''@|$(HAVE_DECL_FREEADDRINFO)|g' \
30               -e 's|@''HAVE_DECL_GAI_STRERROR''@|$(HAVE_DECL_GAI_STRERROR)|g' \
31               -e 's|@''HAVE_DECL_GETADDRINFO''@|$(HAVE_DECL_GETADDRINFO)|g' \
32               -e 's|@''HAVE_DECL_GETNAMEINFO''@|$(HAVE_DECL_GETNAMEINFO)|g' \
33               < $(srcdir)/netdb.in.h; \
34         } > $@-t && \
35         mv $@-t $@
36 MOSTLYCLEANFILES += netdb.h netdb.h-t
37
38 Include:
39 <netdb.h>
40
41 License:
42 LGPLv2+
43
44 Maintainer:
45 Simon Josefsson