Module 'human' now depends on module 'stdbool'.
[gnulib.git] / modules / stdbool
index 08aa225..a63fcb0 100644 (file)
@@ -3,7 +3,7 @@ An <stdbool.h> that nearly conforms to C99.
 (Nearly: casts to bool may not work.)
 
 Files:
-lib/stdbool.h.in
+lib/stdbool_.h
 m4/stdbool.m4
 
 Depends-on:
@@ -12,15 +12,19 @@ configure.ac:
 AM_STDBOOL_H
 
 Makefile.am:
-EXTRA_DIST += stdbool.h.in
+EXTRA_DIST += stdbool_.h
 
-# The following is needed in order to create an <stdbool.h> when the system
+# We need the following in order to create an <stdbool.h> when the system
 # doesn't have one that works.
-all-local $(lib_OBJECTS): @STDBOOL_H@
-stdbool.h: stdbool.h.in
-       sed -e 's/@''HAVE__BOOL''@/@HAVE__BOOL@/g' < $(srcdir)/stdbool.h.in > stdbool.h
-MOSTLYCLEANFILES += stdbool.h
+all-local $(lib_OBJECTS): $(STDBOOL_H)
+stdbool.h: stdbool_.h
+       sed -e 's/@''HAVE__BOOL''@/$(HAVE__BOOL)/g' < $(srcdir)/stdbool_.h > stdbool.h-t
+       mv stdbool.h-t stdbool.h
+MOSTLYCLEANFILES += stdbool.h stdbool.h-t
 
 Include:
 #include <stdbool.h>
 
+Maintainer:
+Bruno Haible
+