mirror of
https://git.savannah.gnu.org/git/gnulib.git
synced 2025-08-20 11:01:20 +03:00
$(ALLOCA_H), redundant through BUILT_SOURCES. * modules/argz (Makefile.am): Remove explicit dependency on $(ARGZ_H), redundant through BUILT_SOURCES. * modules/byteswap (Makefile.am): Remove explicit dependency on $(BYTESWAP_H), redundant through BUILT_SOURCES. * modules/fnmatch (Makefile.am): Remove explicit dependency on $(FNMATCH_H), redundant through BUILT_SOURCES. * modules/getopt (Makefile.am): Remove explicit dependency on $(GETOPT_H), redundant through BUILT_SOURCES. * modules/glob (Makefile.am): Remove explicit dependency on $(GLOB_H), redundant through BUILT_SOURCES. * modules/poll (Makefile.am): Remove explicit dependency on $(POLL_H), redundant through BUILT_SOURCES. * modules/stdbool (Makefile.am): Remove explicit dependency on $(STDBOOL_H), redundant through BUILT_SOURCES. * modules/stdint (Makefile.am): Remove explicit dependency on $(STDINT_H), redundant through BUILT_SOURCES. * modules/sysexits (Makefile.am): Add $(SYSEXITS_H) to BUILT_SOURCES. Remove explicit dependency on $(SYSEXITS_H). Reported by Alexandre Duret-Lutz <adl@src.lip6.fr>.
33 lines
568 B
Plaintext
33 lines
568 B
Plaintext
Description:
|
|
An <stdbool.h> that nearly conforms to C99.
|
|
(Nearly: casts to bool may not work.)
|
|
|
|
Files:
|
|
lib/stdbool_.h
|
|
m4/stdbool.m4
|
|
|
|
Depends-on:
|
|
|
|
configure.ac:
|
|
AM_STDBOOL_H
|
|
|
|
Makefile.am:
|
|
BUILT_SOURCES += $(STDBOOL_H)
|
|
EXTRA_DIST += stdbool_.h
|
|
|
|
# We need the following in order to create <stdbool.h> when the system
|
|
# doesn't have one that works.
|
|
stdbool.h: stdbool_.h
|
|
sed -e 's/@''HAVE__BOOL''@/$(HAVE__BOOL)/g' < $(srcdir)/stdbool_.h > $@-t
|
|
mv $@-t $@
|
|
MOSTLYCLEANFILES += stdbool.h stdbool.h-t
|
|
|
|
Include:
|
|
#include <stdbool.h>
|
|
|
|
License:
|
|
LGPL
|
|
|
|
Maintainer:
|
|
Bruno Haible
|