invocations.
* tests/cxx-type.at (declarator): Don't rely on NDEBUG being not
defined.
+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.
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
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)
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
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 ());
}