* configure.in: Bump to 1.29b.

* tests/Makefile.am (DISTCLEANFILES): Add package.m4.
* tests/calc.at (_AT_DATA_CALC_Y): #undef malloc so that we don't
need xmalloc.c in calc.y.
From Pascal Bart.
This commit is contained in:
Akim Demaille
2001-09-22 16:56:37 +00:00
parent 6792619fa8
commit 19f01e885f
10 changed files with 1129 additions and 1003 deletions

View File

@@ -1,3 +1,11 @@
2001-09-22 Akim Demaille <akim@epita.fr>
* configure.in: Bump to 1.29b.
* tests/Makefile.am (DISTCLEANFILES): Add package.m4.
* tests/calc.at (_AT_DATA_CALC_Y): #undef malloc so that we don't
need xmalloc.c in calc.y.
From Pascal Bart.
2001-09-21 Akim Demaille <akim@epita.fr>
Version 1.29a.

4
NEWS
View File

@@ -1,10 +1,10 @@
Bison News
----------
Changes in version 1.29a:
Changes in version 1.29b:
* `--defines' and `--graph' have now an optionnal argument which is the
output file name. `-d' and `-g' do not change, they do not take any
output file name. `-d' and `-g' do not change, they do not take any
argument.
* `%source_extension' and `%header_extension' are removed, failed

2080
configure vendored

File diff suppressed because it is too large Load Diff

View File

@@ -16,12 +16,12 @@
# 02111-1307 USA
# We need a recent Autoconf to run a recent Autotest.
AC_PREREQ(2.52c)
AC_PREREQ(2.52e)
AC_INIT([GNU Bison], [1.29a], [bug-bison@gnu.org])
AC_INIT([GNU Bison], [1.29b], [bug-bison@gnu.org])
AC_CONFIG_AUX_DIR(config)
AM_INIT_AUTOMAKE([bison], [1.29a])
AM_INIT_AUTOMAKE([bison], [1.29b])
AM_CONFIG_HEADER(config.h:config.hin)
# Initialize the test suite.

View File

@@ -34,7 +34,7 @@ File: bison.info, Node: Top, Next: Introduction, Up: (dir)
Bison
*****
This manual documents version 1.29a of Bison, updated 20 September
This manual documents version 1.29b of Bison, updated 20 September
2001.
* Menu:
@@ -238,7 +238,7 @@ Bison in detail.
it Yacc-compatible. Wilfred Hansen of Carnegie Mellon University added
multi-character string literals and other features.
This edition corresponds to version 1.29a of Bison.
This edition corresponds to version 1.29b of Bison.

File: bison.info, Node: Conditions, Next: Copying, Prev: Introduction, Up: Top

View File

@@ -1,4 +1,4 @@
@set UPDATED 20 September 2001
@set UPDATED-MONTH September 2001
@set EDITION 1.29a
@set VERSION 1.29a
@set EDITION 1.29b
@set VERSION 1.29b

View File

@@ -1,4 +1,4 @@
@set UPDATED 20 September 2001
@set UPDATED-MONTH September 2001
@set EDITION 1.29a
@set VERSION 1.29a
@set EDITION 1.29b
@set VERSION 1.29b

View File

@@ -20,7 +20,7 @@
EXTRA_DIST = atlocal.in bison $(TESTSUITE_AT) testsuite
DISTCLEANFILES = atconfig atlocal
DISTCLEANFILES = atconfig atlocal package.m4
MAINTAINERCLEANFILES = Makefile.in $(TESTSUITE)
TESTSUITE_AT = \
@@ -31,14 +31,6 @@ TESTSUITE = $(srcdir)/testsuite
AUTOM4TE = autom4te
AUTOTEST = $(AUTOM4TE) --language=autotest
$(srcdir)/$(TESTSUITE): $(TESTSUITE_AT)
{ \
echo '# Signature of the current package.'; \
echo 'm4_define([PACKAGE_NAME], [@PACKAGE_NAME@])'; \
echo 'm4_define([PACKAGE_TARNAME], [@PACKAGE_TARNAME@])'; \
echo 'm4_define([PACKAGE_VERSION], [@PACKAGE_VERSION@])'; \
echo 'm4_define([PACKAGE_STRING], [@PACKAGE_STRING@])'; \
echo 'm4_define([PACKAGE_BUGREPORT], [@PACKAGE_BUGREPORT@])'; \
} >package.m4
$(AUTOTEST) -I $(srcdir) testsuite.at -o $@.tmp
mv $@.tmp $@

View File

@@ -98,7 +98,7 @@ install_sh = @install_sh@
EXTRA_DIST = atlocal.in bison $(TESTSUITE_AT) testsuite
DISTCLEANFILES = atconfig atlocal
DISTCLEANFILES = atconfig atlocal package.m4
MAINTAINERCLEANFILES = Makefile.in $(TESTSUITE)
TESTSUITE_AT = \
@@ -229,14 +229,6 @@ uninstall-am: uninstall-info-am
uninstall uninstall-am uninstall-info-am
$(srcdir)/$(TESTSUITE): $(TESTSUITE_AT)
{ \
echo '# Signature of the current package.'; \
echo 'm4_define([PACKAGE_NAME], [@PACKAGE_NAME@])'; \
echo 'm4_define([PACKAGE_TARNAME], [@PACKAGE_TARNAME@])'; \
echo 'm4_define([PACKAGE_VERSION], [@PACKAGE_VERSION@])'; \
echo 'm4_define([PACKAGE_STRING], [@PACKAGE_STRING@])'; \
echo 'm4_define([PACKAGE_BUGREPORT], [@PACKAGE_BUGREPORT@])'; \
} >package.m4
$(AUTOTEST) -I $(srcdir) testsuite.at -o $@.tmp
mv $@.tmp $@

View File

@@ -42,6 +42,8 @@ AT_DATA([calc.y],
%{
#include <config.h>
/* We don't need a perfect malloc for these tests. */
#undef malloc
#include <stdio.h>
#if STDC_HEADERS