view modules/arpa_inet @ 30189:20a9c8c912b3

Provide the definition of GL_LINK-WARNING.
author Bruno Haible <bruno@clisp.org>
date Sat, 27 Sep 2008 17:55:04 +0200
parents 7902c57e7155
children bbc8b00b08b5
line wrap: on
line source

Description:
A GNU-like <arpa/inet.h>.

Files:
lib/arpa_inet.in.h
m4/arpa_inet_h.m4

Depends-on:
include_next
link-warning
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! */'; \
	  sed -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \
	      -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \
	      -e 's|@''NEXT_ARPA_INET_H''@|$(NEXT_ARPA_INET_H)|g' \
	      -e 's|@''HAVE_ARPA_INET_H''@|$(HAVE_ARPA_INET_H)|g' \
	      -e 's|@''GNULIB_INET_NTOP''@|$(GNULIB_INET_NTOP)|g' \
	      -e 's|@''GNULIB_INET_PTON''@|$(GNULIB_INET_PTON)|g' \
	      -e 's|@''HAVE_DECL_INET_NTOP''@|$(HAVE_DECL_INET_NTOP)|g' \
	      -e 's|@''HAVE_DECL_INET_PTON''@|$(HAVE_DECL_INET_PTON)|g' \
	      -e '/definition of GL_LINK_WARNING/r $(LINK_WARNING_H)' \
	      < $(srcdir)/arpa_inet.in.h; \
	} > $@-t
	mv $@-t $@
MOSTLYCLEANFILES += arpa/inet.h arpa/inet.h-t
MOSTLYCLEANDIRS += arpa

Include:
#include <arpa/inet.h>

License:
LGPLv2+

Maintainer:
Simon Josefsson