Description:
A <arpa/inet.h> for systems lacking it (e.g., Mingw).

Files:
m4/arpa_inet_h.m4

Depends-on:
sys_socket

configure.ac:
gl_HEADER_ARPA_INET
AC_PROG_MKDIR_P

Makefile.am:
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:
	@MKDIR_P@ arpa
	rm -f $@-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

Include:
#include <arpa/inet.h>

License:
LGPLv2+

Maintainer:
Simon Josefsson
