]> git.saurik.com Git - bison.git/commitdiff
* tests/bison.in: Adjust to CVS Autoconf.
authorAkim Demaille <akim@epita.fr>
Thu, 3 Jan 2002 11:10:50 +0000 (11:10 +0000)
committerAkim Demaille <akim@epita.fr>
Thu, 3 Jan 2002 11:10:50 +0000 (11:10 +0000)
* tests/calc.at (exp): We no longer need to special case GCC as
the warning flags are passed by configure.
* tests/atlocal.in: Adjust.
* configure.in: Bump to 1.30j.

ChangeLog
NEWS
configure.in
tests/atlocal.in
tests/bison.in
tests/calc.at

index cce38380cb14d50ab41beadfb8ad9c3d637d688a..37cdee28b42ef3d80c9446ee82611bbd63023049 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2002-01-03  Akim Demaille  <akim@epita.fr>
+
+       * tests/bison.in: Adjust to CVS Autoconf.
+       * tests/calc.at (exp): We no longer need to special case GCC as
+       the warning flags are passed by configure.
+       * tests/atlocal.in: Adjust.
+       * configure.in: Bump to 1.30j.
+
 2002-01-03  Akim Demaille  <akim@epita.fr>
 
        Version 1.30i.
diff --git a/NEWS b/NEWS
index 145620e48fe2c856c045a4f945143a4f5ad5d85c..35bd1d0217a41690ab52c3fd60491c9f30474abd 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,8 @@
 Bison News
 ----------
 
+Changes in version 1.30j:
+
 Changes in version 1.30i:
 
 * Use of alloca in parsers
index 97f64ad631c566a87c99bb627bd42bd19e3c25e7..5d5177221015dd8a740c143b56d1a4917e0b92f0 100644 (file)
@@ -1,6 +1,6 @@
 # Configure template for GNU Bison.                   -*-Autoconf-*-
 #
-# Copyright 2001  Free Software Foundation, Inc.
+# Copyright 2001, 2002  Free Software Foundation, Inc.
 #
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
 # We need a recent Autoconf to run a recent Autotest.
 AC_PREREQ(2.52g)
 
-AC_INIT([GNU Bison], [1.30i], [bug-bison@gnu.org])
+AC_INIT([GNU Bison], [1.30j], [bug-bison@gnu.org])
 AC_CONFIG_AUX_DIR(config)
 
-AM_INIT_AUTOMAKE([bison], [1.30i])
+AM_INIT_AUTOMAKE([bison], [1.30j])
 AM_CONFIG_HEADER(config.h:config.hin)
 
 # Initialize the test suite.
index 0584e3631745705b13353b8e382f524836a21065..19c09262c223ad9c90b74d474875bfb472a9307b 100644 (file)
@@ -6,8 +6,5 @@
 CC='@CC@'
 CFLAGS='@CFLAGS@ @WARNING_CFLAGS@'
 
-# We need to know if the compiler is GCC.
-GCC='@GCC@'
-
 # We need `config.h'.
-CPPFLAGS="-I$top_buildpath @CPPFLAGS@"
+CPPFLAGS="-I$abs_top_builddir @CPPFLAGS@"
index 4adaefa684e33d03555bed250772c3c057a3e73f..67e5f08a30a170cb04a8a8ad664a533c8aef962e 100644 (file)
@@ -1,11 +1,11 @@
 #! /bin/sh
-# @configure_generated@
+# @configure_input@
 # Wrapper around a non installed bison to make it work as an installed one.
 
 # We want to use the files shipped with Bison.
-BISON_SIMPLE='@top_srcpath@/src/bison.simple'
+BISON_SIMPLE='@abs_top_srcdir@/src/bison.simple'
 export BISON_SIMPLE
-BISON_HAIRY='@top_srcpath@/src/bison.hairy'
+BISON_HAIRY='@abs_top_srcdir@/src/bison.hairy'
 export BISON_HAIRY
 
-exec '@top_buildpath@/src/bison' ${1+"$@"}
+exec '@abs_top_builddir@/src/bison' ${1+"$@"}
index 04d7e36609526659dd7521312b986f3387691061..527ca4dd04502e5941c75e0a4cd7cc5ae53f19ef 100644 (file)
@@ -334,17 +334,6 @@ AT_DATA_CALC_Y([$1])
 AT_CHECK([bison calc.y -o calc.c m4_bpatsubst([$1], [--yyerror-verbose])],
          [0], [], [])
 
-# Some compilers issue warnings we don't want to hear about.
-# Maybe some day we will have proper Autoconf macros to disable these
-# warnings, but this place is not the right one for that.
-# So let's keep only GCC warnings, which we know are sane.
-# Well, that's only part of the story: some assemblers issue warnings
-# which can be totally useless, and actually polluting.  It seems that
-# the best bet be to completely ignore stderr, but to pass -Werror
-# to GCC.
-if test "$GCC" = yes; then
-  CFLAGS="$CFLAGS -Werror"
-fi
 AT_CHECK([$CC $CFLAGS $CPPFLAGS calc.c -o calc], 0, [], [ignore])
 
 # Test the priorities.