]> git.saurik.com Git - bison.git/commitdiff
* configure.ac: Update AC_OUTPUT and AM_CONFIG_HEADER
authorAkim Demaille <akim@epita.fr>
Mon, 30 Sep 2002 12:27:31 +0000 (12:27 +0000)
committerAkim Demaille <akim@epita.fr>
Mon, 30 Sep 2002 12:27:31 +0000 (12:27 +0000)
invocations.
* tests/cxx-type.at (declarator): Don't rely on NDEBUG being not
defined.

ChangeLog
THANKS
configure.ac
tests/cxx-type.at

index e0b4cb47110434688362378d9888aa28844d888e..b4ed0ebfaebd11d4eb3da72b6062db9445179198 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2002-09-30  Art Haas  <ahaas@neosoft.com>
+
+       * configure.ac: Update AC_OUTPUT and AM_CONFIG_HEADER
+       invocations.
+       * tests/cxx-type.at (declarator): Don't rely on NDEBUG being not
+       defined.
+
 2002-09-27  Akim Demaille  <akim@epita.fr>
 
        Version 1.49c.
diff --git a/THANKS b/THANKS
index ba76e761741946b3d13fbbef86b245181251e61f..e629602a72630af6b3e0b806254ff9fb4d56171f 100644 (file)
--- a/THANKS
+++ b/THANKS
@@ -7,6 +7,7 @@ Albert Chin-A-Young     china@thewrittenword.com
 Alexander Belopolsky   alexb@rentec.com
 Andreas Schwab         schwab@suse.de
 Arnold Robbins         arnold@skeeve.com
+Art Haas                ahaas@neosoft.com
 Benoit Perrot          benoit.perrot@epita.fr
 Bruce Lilly            blilly@erols.com
 Cris Bailiff           c.bailiff+bison@awayweb.com
index 8a1795fa32b977573036e59b408bbd891fc971d6..1a54406d0e911105629e1f341941373e82f6ba6d 100644 (file)
@@ -24,7 +24,7 @@ AC_INIT([GNU Bison], [1.49d], [bug-bison@gnu.org])
 AC_CONFIG_AUX_DIR(config)
 
 AM_INIT_AUTOMAKE([1.7 check-news readme-alpha dist-bzip2])
-AM_CONFIG_HEADER(config.h:config.hin)
+AC_CONFIG_HEADERS([config.h:config.hin])
 
 # Initialize the test suite.
 AC_CONFIG_TESTDIR(tests)
@@ -110,9 +110,10 @@ BISON_PREREQ_TIMEVAR
 AM_GNU_GETTEXT(external, need-ngettext)
 AM_GNU_GETTEXT_VERSION(0.11.5)
 
-AC_OUTPUT([Makefile
-           config/Makefile
-           po/Makefile.in
-           data/Makefile
-           lib/Makefile src/Makefile doc/Makefile
-           m4/Makefile])
+AC_CONFIG_FILES([Makefile
+                 config/Makefile
+                 po/Makefile.in
+                 data/Makefile
+                 lib/Makefile src/Makefile doc/Makefile
+                 m4/Makefile])
+AC_OUTPUT
index 1c67c71274fef01334393fb9b1695690992ae5f1..d41c361dac075430dc8609981a0ac4e2666af4fa 100644 (file)
@@ -93,8 +93,9 @@ declarator : ID               { printf ("\"%s\" ", ]$[1); }
 int
 main (int argc, char** argv)
 {
-  assert (argc = 2);
-  assert (freopen (argv[1], "r", stdin));
+  assert (argc == 2);
+  if (!freopen (argv[1], "r", stdin))
+    abort ();
   exit (yyparse ());
 }