NEWS.stable: log cherry-pick [e446f25]->[c092018] relocatable-shell: Update suggested...
[gnulib.git] / modules / stdbool
index bda2d93..cfb9aac 100644 (file)
@@ -1,7 +1,9 @@
 Description:
+An <stdbool.h> that nearly conforms to C99.
+(Nearly: casts to bool may not work.)
 
 Files:
-lib/stdbool.h.in
+lib/stdbool.in.h
 m4/stdbool.m4
 
 Depends-on:
@@ -10,15 +12,28 @@ configure.ac:
 AM_STDBOOL_H
 
 Makefile.am:
-EXTRA_DIST += stdbool.h.in
+BUILT_SOURCES += $(STDBOOL_H)
 
-# The following is needed in order to create an <stdbool.h> when the system
+# We need the following in order to create <stdbool.h> when the system
 # doesn't have one that works.
-all-local: @STDBOOL_H@
-stdbool.h: stdbool.h.in
-       sed -e 's/@''HAVE__BOOL''@/@HAVE__BOOL@/g' < $(srcdir)/stdbool.h.in > stdbool.h
-MOSTLYCLEANFILES += stdbool.h
+if GL_GENERATE_STDBOOL_H
+stdbool.h: stdbool.in.h $(top_builddir)/config.status
+       $(AM_V_GEN)rm -f $@-t $@ && \
+       { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
+         sed -e 's/@''HAVE__BOOL''@/$(HAVE__BOOL)/g' < $(srcdir)/stdbool.in.h; \
+       } > $@-t && \
+       mv $@-t $@
+else
+stdbool.h: $(top_builddir)/config.status
+       rm -f $@
+endif
+MOSTLYCLEANFILES += stdbool.h stdbool.h-t
 
 Include:
-#include <stdbool.h>
+<stdbool.h>
 
+License:
+LGPLv2+
+
+Maintainer:
+Bruno Haible