tests: link lib/libbison.a for gnulib.

This solves a problem on Solaris 2.7 where the testsuite needs
at least gnulib's rpl_fopen.  Reported by Albert Chin at
<http://lists.gnu.org/archive/html/bug-bison/2010-02/msg00001.html>.
* NEWS (2.4.2): Document.
* tests/atlocal.in (LIBS): As for LDADD in src/Makefile.am, add
lib/libbison.a.
This commit is contained in:
Joel E. Denny
2010-02-01 15:54:41 -05:00
parent c412a490ec
commit d093cf8cbd
3 changed files with 14 additions and 1 deletions

View File

@@ -1,3 +1,13 @@
2010-02-01 Joel E. Denny <jdenny@ces.clemson.edu>
tests: link lib/libbison.a for gnulib.
This solves a problem on Solaris 2.7 where the testsuite needs
at least gnulib's rpl_fopen. Reported by Albert Chin at
<http://lists.gnu.org/archive/html/bug-bison/2010-02/msg00001.html>.
* NEWS (2.4.2): Document.
* tests/atlocal.in (LIBS): As for LDADD in src/Makefile.am, add
lib/libbison.a.
2010-01-22 Joel E. Denny <jdenny@ces.clemson.edu> 2010-01-22 Joel E. Denny <jdenny@ces.clemson.edu>
Prepare for 2.4.2 release. Prepare for 2.4.2 release.

3
NEWS
View File

@@ -3,6 +3,9 @@ Bison News
* Changes in version 2.4.2 (????-??-??): * Changes in version 2.4.2 (????-??-??):
** Some portability problems in the testsuite that resulted in failures
on at least Solaris 2.7 have been fixed.
** `%prec IDENTIFIER' requires IDENTIFIER to be defined separately. ** `%prec IDENTIFIER' requires IDENTIFIER to be defined separately.
POSIX specifies that an error be reported for any identifier that does POSIX specifies that an error be reported for any identifier that does

View File

@@ -28,7 +28,7 @@ CXXFLAGS='@O0CXXFLAGS@ @WARN_CXXFLAGS_TEST@ @WERROR_CFLAGS@'
LDFLAGS='@LDFLAGS@' LDFLAGS='@LDFLAGS@'
# Are special libraries needed? # Are special libraries needed?
LIBS='@LIBS@ @INTLLIBS@' LIBS="$abs_top_builddir/lib/libbison.a @LIBS@ @INTLLIBS@"
# Empty if no javac was found # Empty if no javac was found
CONF_JAVAC='@CONF_JAVAC@' CONF_JAVAC='@CONF_JAVAC@'