Add netdb.h replacement module.
[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
11 configure.ac:
12 gl_HEADER_NETDB
13
14 Makefile.am:
15 BUILT_SOURCES += $(NETDB_H)
16
17 # We need the following in order to create <netdb.h> when the system
18 # doesn't have one that works with the given compiler.
19 netdb.h: netdb.in.h
20         rm -f $@-t $@
21         { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
22           sed -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \
23               -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \
24               -e 's|@''NEXT_NETDB_H''@|$(NEXT_NETDB_H)|g' \
25               -e 's|@''HAVE_NETDB_H''@|$(HAVE_NETDB_H)|g' \
26               < $(srcdir)/netdb.in.h; \
27         } > $@-t
28         mv $@-t $@
29 MOSTLYCLEANFILES += netdb.h netdb.h-t
30
31 Include:
32 #include <netdb.h>
33
34 License:
35 LGPLv2+
36
37 Maintainer:
38 Simon Josefsson