Don't make generated files read-only. That would bother too many
[gnulib.git] / modules / arpa_inet
1 Description:
2 A <arpa/inet.h> for systems lacking it (e.g., Mingw).
3
4 Files:
5 m4/arpa_inet_h.m4
6
7 Depends-on:
8 sys_socket
9
10 configure.ac:
11 gl_HEADER_ARPA_INET
12
13 Makefile.am:
14 BUILT_SOURCES += $(ARPA_INET_H)
15
16 # We need the following in order to create <arpa/inet.h> when the system
17 # doesn't have one.
18 arpa/inet.h:
19         test -d arpa || mkdir arpa
20         rm -f $@-t $@
21         echo '#include <sys/socket.h>' >$@-t
22         mv $@-t $@
23 MOSTLYCLEANFILES += arpa/inet.h arpa/inet.h-t
24 MOSTLYCLEANDIRS += arpa
25
26 Include:
27 #include <arpa/inet.h>
28
29 License:
30 LGPL
31
32 Maintainer:
33 Simon Josefsson