Rename stdbool.h.in to stdbool_.h, for DOS and VMS's sake.
authorBruno Haible <bruno@clisp.org>
Fri, 6 Jun 2003 20:59:34 +0000 (20:59 +0000)
committerBruno Haible <bruno@clisp.org>
Fri, 6 Jun 2003 20:59:34 +0000 (20:59 +0000)
ChangeLog
lib/ChangeLog
modules/stdbool

index c67961e34055ddb2e940864a0c62bb307677c93d..5fa8b7b110299e99cc993fc5c51c5c1bcb971a62 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2003-06-06  Jim Meyering  <jim@meyering.net>
+            Bruno Haible  <bruno@clisp.org>
+
+        * modules/stdbool: Reflect renaming: stdbool.h.in -> stdbool_.h.
+        Adjust Makefile.am snippet not to redirect directly to target.
+        Use $(STDBOOL_H) notation, not @STDBOOL_H@ for AC_REPLACE'd variables.
+
 2003-05-30  Bruno Haible  <bruno@clisp.org>
 
        * modules/gettext: Add files m4/nls.m4 and m4/po.m4.
index 808c8bc71830bf4f8ddf86f8b175b6714b4fc181..92a994d653b616c09a590c821ee1559b69464467 100644 (file)
@@ -1,3 +1,7 @@
+2003-06-06  Jim Meyering  <jim@meyering.net>
+
+       * stdbool_.h: Renamed from stdbool.h.in.
+
 2003-06-06  Jim Meyering  <jim@meyering.net>
 
        Merge from coreutils.
        posixtime failures better.
        Improve the test data (in comments only).
 
-2003-06-02  Jim Meyering  <jim@meyering.net>
-
-       * stdbool.h.in: Rename to stdbool.hin.
-
 2003-05-30    <karl@gnu.org>
 
        * mktime.c: update from libc.
 
        * argmatch.c: Include "quote.h".
        (argmatch_invalid): Remove explicit `' quotes.  Instead, use the
-       quote function.  Reported by Göran Uddeborg.
+       quote function.  Reported by Göran Uddeborg.
 
 2001-05-20  Alexandre Duret-Lutz  <duret_g@epita.fr>
 
 
 2000-01-17  Jim Meyering  <meyering@lucent.com>
 
-       * interlock: Remove unused file.  Reported by François Pinard.
+       * interlock: Remove unused file.  Reported by François Pinard.
 
 2000-01-16  Paul Eggert  <eggert@twinsun.com>
 
index 946905fcacd375965cc93bb2f1e7f177a4446cdb..14591900de746eb2a1da2d999e5166727e837ef4 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,14 +12,15 @@ 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
 # 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>