Merge commit '039ae97'
[gnulib.git] / modules / sys_socket
1 Description:
2 A POSIX-like <sys/socket.h>.
3
4 Files:
5 lib/sys_socket.in.h
6 m4/sys_socket_h.m4
7 m4/sockpfaf.m4
8
9 Depends-on:
10 include_next
11 link-warning
12 errno
13 alignof
14
15 configure.ac:
16 gl_HEADER_SYS_SOCKET
17 AC_PROG_MKDIR_P
18
19 Makefile.am:
20 BUILT_SOURCES += $(SYS_SOCKET_H)
21
22 # We need the following in order to create <sys/socket.h> when the system
23 # doesn't have one that works with the given compiler.
24 sys/socket.h: sys_socket.in.h $(LINK_WARNING_H)
25         $(AM_V_at)$(MKDIR_P) sys
26         $(AM_V_GEN)rm -f $@-t $@ && \
27         { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
28           sed -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \
29               -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \
30               -e 's|@''NEXT_SYS_SOCKET_H''@|$(NEXT_SYS_SOCKET_H)|g' \
31               -e 's|@''HAVE_SYS_SOCKET_H''@|$(HAVE_SYS_SOCKET_H)|g' \
32               -e 's|@''GNULIB_CLOSE''@|$(GNULIB_CLOSE)|g' \
33               -e 's|@''GNULIB_SOCKET''@|$(GNULIB_SOCKET)|g' \
34               -e 's|@''GNULIB_CONNECT''@|$(GNULIB_CONNECT)|g' \
35               -e 's|@''GNULIB_ACCEPT''@|$(GNULIB_ACCEPT)|g' \
36               -e 's|@''GNULIB_BIND''@|$(GNULIB_BIND)|g' \
37               -e 's|@''GNULIB_GETPEERNAME''@|$(GNULIB_GETPEERNAME)|g' \
38               -e 's|@''GNULIB_GETSOCKNAME''@|$(GNULIB_GETSOCKNAME)|g' \
39               -e 's|@''GNULIB_GETSOCKOPT''@|$(GNULIB_GETSOCKOPT)|g' \
40               -e 's|@''GNULIB_LISTEN''@|$(GNULIB_LISTEN)|g' \
41               -e 's|@''GNULIB_RECV''@|$(GNULIB_RECV)|g' \
42               -e 's|@''GNULIB_SEND''@|$(GNULIB_SEND)|g' \
43               -e 's|@''GNULIB_RECVFROM''@|$(GNULIB_RECVFROM)|g' \
44               -e 's|@''GNULIB_SENDTO''@|$(GNULIB_SENDTO)|g' \
45               -e 's|@''GNULIB_SETSOCKOPT''@|$(GNULIB_SETSOCKOPT)|g' \
46               -e 's|@''GNULIB_SHUTDOWN''@|$(GNULIB_SHUTDOWN)|g' \
47               -e 's|@''GNULIB_ACCEPT4''@|$(GNULIB_ACCEPT4)|g' \
48               -e 's|@''HAVE_WINSOCK2_H''@|$(HAVE_WINSOCK2_H)|g' \
49               -e 's|@''HAVE_WS2TCPIP_H''@|$(HAVE_WS2TCPIP_H)|g' \
50               -e 's|@''HAVE_STRUCT_SOCKADDR_STORAGE''@|$(HAVE_STRUCT_SOCKADDR_STORAGE)|g' \
51               -e 's|@''HAVE_SA_FAMILY_T''@|$(HAVE_SA_FAMILY_T)|g' \
52               -e 's|@''HAVE_ACCEPT4''@|$(HAVE_ACCEPT4)|g' \
53               -e '/definition of GL_LINK_WARNING/r $(LINK_WARNING_H)' \
54               < $(srcdir)/sys_socket.in.h; \
55         } > $@-t && \
56         mv -f $@-t $@
57 MOSTLYCLEANFILES += sys/socket.h sys/socket.h-t
58 MOSTLYCLEANDIRS += sys
59
60 Include:
61 <sys/socket.h>
62
63 License:
64 LGPLv2+
65
66 Maintainer:
67 Simon Josefsson