added missing dependencies to fix failing unistr/ tests
[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 arg-nonnull
11 warn-on-use
12 sys_socket
13
14 configure.ac:
15 gl_HEADER_NETDB
16
17 Makefile.am:
18 BUILT_SOURCES += netdb.h
19
20 # We need the following in order to create <netdb.h> when the system
21 # doesn't have one that works with the given compiler.
22 netdb.h: netdb.in.h $(ARG_NONNULL_H) $(WARN_ON_USE_H)
23         $(AM_V_GEN)rm -f $@-t $@ && \
24         { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
25           sed -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \
26               -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \
27               -e 's|@''NEXT_NETDB_H''@|$(NEXT_NETDB_H)|g' \
28               -e 's|@''HAVE_NETDB_H''@|$(HAVE_NETDB_H)|g' \
29               -e 's|@''GNULIB_GETADDRINFO''@|$(GNULIB_GETADDRINFO)|g' \
30               -e 's|@''HAVE_STRUCT_ADDRINFO''@|$(HAVE_STRUCT_ADDRINFO)|g' \
31               -e 's|@''HAVE_DECL_FREEADDRINFO''@|$(HAVE_DECL_FREEADDRINFO)|g' \
32               -e 's|@''HAVE_DECL_GAI_STRERROR''@|$(HAVE_DECL_GAI_STRERROR)|g' \
33               -e 's|@''HAVE_DECL_GETADDRINFO''@|$(HAVE_DECL_GETADDRINFO)|g' \
34               -e 's|@''HAVE_DECL_GETNAMEINFO''@|$(HAVE_DECL_GETNAMEINFO)|g' \
35               -e '/definition of _GL_ARG_NONNULL/r $(ARG_NONNULL_H)' \
36               -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)' \
37               < $(srcdir)/netdb.in.h; \
38         } > $@-t && \
39         mv $@-t $@
40 MOSTLYCLEANFILES += netdb.h netdb.h-t
41
42 Include:
43 <netdb.h>
44
45 License:
46 LGPLv2+
47
48 Maintainer:
49 Simon Josefsson