view modules/float @ 14102:f49fe7e6d028

add _HEADERS primaries to Makefile.am snippets for installable headers * modules/alloca-opt, modules/arg-nonnull, modules/argz, modules/arpa_inet, modules/byteswap, modules/c++defs, modules/ctype, modules/dirent, modules/errno, modules/fcntl-h, modules/float, modules/fnmatch, modules/getopt-posix, modules/glob, modules/iconv-h, modules/iconv_open, modules/inttypes, modules/langinfo, modules/link-warning, modules/locale, modules/math, modules/netdb, modules/netinet_in, modules/poll-h, modules/pthread, modules/pty, modules/sched, modules/search, modules/selinux-h, modules/signal, modules/spawn, modules/stdarg, modules/stdbool, modules/stddef, modules/stdint, modules/stdio, modules/stdlib, modules/string, modules/strings, modules/sys_file, modules/sys_ioctl, modules/sys_select, modules/sys_socket, modules/sys_stat, modules/sys_time, modules/sys_times, modules/sys_utsname, modules/sys_wait, modules/sysexits, modules/termios, modules/time, modules/unistd, modules/unitypes, modules/unused-parameter, modules/warn-on-use, modules/wchar, modules/wctype (Makefile.am): Add nodist_include_HEADERS, nobase_nodist_include_HEADERS and EXTRA_HEADERS declarations for potentially installable header files. * gnulib-tool: Initialize nodist_include_HEADERS, nobase_nodist_include_HEADERS and EXTRA_HEADERS to prime for new `.*_HEADERS +=' declarations. (func_emit_lib_Makefile_am): Edit away new nodist_include_HEADERS, nobase_nodist_include_HEADERS and EXTRA_HEADERS declarations by default, reverting the Makefile.am snippets above to their original condition prior to this change *unless* the gnulib library is being installed.
author Gary V. Vaughan <gary@gnu.org>
date Mon, 11 Oct 2010 15:51:59 +0700
parents a19ace3ba849
children c1a1f592f879
line wrap: on
line source

Description:
A correct <float.h>.

Files:
lib/float.in.h
m4/float_h.m4

Depends-on:
include_next

configure.ac:
gl_FLOAT_H

Makefile.am:
nodist_include_HEADERS += $(FLOAT_H)
EXTRA_HEADERS += float.h

BUILT_SOURCES += $(FLOAT_H)

# We need the following in order to create <float.h> when the system
# doesn't have one that works with the given compiler.
float.h: float.in.h
	$(AM_V_GEN)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|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \
	      -e 's|@''NEXT_FLOAT_H''@|$(NEXT_FLOAT_H)|g' \
	      < $(srcdir)/float.in.h; \
	} > $@-t && \
	mv $@-t $@
MOSTLYCLEANFILES += float.h float.h-t

Include:
<float.h>

License:
LGPLv2+

Maintainer:
all