view modules/arpa_inet @ 10264:ebb7ea0c94e8

Rename isnand.h to isnand-nolibm.h, similarly for isnanf.h.
author Ben Pfaff <blp@cs.stanford.edu>
date Sat, 12 Jul 2008 10:41:34 -0700
parents d26ac8a528f7
children f96e845fc36d
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
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|@''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' \
	      < $(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