Fix problem with _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H on VMS.
[gnulib.git] / modules / arpa_inet
index 17a14c0..5193952 100644 (file)
@@ -9,6 +9,7 @@ sys_socket
 
 configure.ac:
 gl_HEADER_ARPA_INET
+AC_PROG_MKDIR_P
 
 Makefile.am:
 BUILT_SOURCES += $(ARPA_INET_H)
@@ -16,10 +17,11 @@ BUILT_SOURCES += $(ARPA_INET_H)
 # We need the following in order to create <arpa/inet.h> when the system
 # doesn't have one.
 arpa/inet.h:
-       test -d arpa || mkdir arpa
+       @MKDIR_P@ arpa
        rm -f $@-t $@
-       echo '#include <sys/socket.h>' >$@-t
-       chmod a-x $@-t
+       { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
+         echo '#include <sys/socket.h>'; \
+       } > $@-t
        mv $@-t $@
 MOSTLYCLEANFILES += arpa/inet.h arpa/inet.h-t
 MOSTLYCLEANDIRS += arpa
@@ -28,7 +30,7 @@ Include:
 #include <arpa/inet.h>
 
 License:
-LGPL
+LGPLv2+
 
 Maintainer:
 Simon Josefsson