mirror of
git://git.sv.gnu.org/autoconf
synced 2025-01-18 10:45:15 +08:00
Version 2.57.
This commit is contained in:
parent
6745f8efa3
commit
8e884317d9
35
ChangeLog
35
ChangeLog
@ -1,3 +1,38 @@
|
||||
2002-12-03 Paul Eggert <eggert@twinsun.com>
|
||||
|
||||
Version 2.57.
|
||||
|
||||
* NEWS, configure.ac: Update version.
|
||||
|
||||
* doc/fdl.texi: Upgrade to FDL version 1.2.
|
||||
|
||||
* bin/autom4te.in (handle_traces): [^ *\(.*\) *$] ->
|
||||
[^ *\(.*[^ ]\)? *]. The old regular expression was obviously wrong,
|
||||
and it blunders into a GNU m4 bug as noted by Martin Frydl in
|
||||
<http://mail.gnu.org/pipermail/autoconf/2002-November/014524.html>.
|
||||
|
||||
* lib/autoconf/c.m4 (AC_LANG_FUNC_LINK_TRY(C)): Use the function f
|
||||
nontrivially in main's body, so that f's external declaration is
|
||||
not optimized away in AIX. This should fix the bug reported by
|
||||
Martin Frydl in
|
||||
<http://mail.gnu.org/pipermail/autoconf/2002-November/014508.html>.
|
||||
|
||||
* lib/autoconf/c.m4 (AC_LANG_FUNC_LINK_TRY(C),
|
||||
_AC_PROG_PREPROC_WORKS_IFELSE): Use <limits.h> if __STDC__ is
|
||||
defined, to support freestanding compilers. This should fix the
|
||||
bug reported by Momchil Velkov in
|
||||
<http://mail.gnu.org/pipermail/autoconf/2002-November/014490.html>.
|
||||
|
||||
* doc/autoconf.texi (Obsolete Macros): Fix typos (insert empty
|
||||
arg, AC_DEFINE -> AC_DEFINE_UNQUOTED) in documentation for
|
||||
obsolete AC_CHECK_TYPE. The missing empty arg was reported
|
||||
by Simon Josefsson in
|
||||
<http://mail.gnu.org/pipermail/autoconf-patches/2002-December/008830.html>.
|
||||
|
||||
* Makefile.maint (www-gnu): New macro.
|
||||
(standards.texi-url_prefix, make-stds.texi-url_prefix): Use it, as
|
||||
the location has moved.
|
||||
|
||||
2002-11-15 Akim Demaille <akim@epita.fr>
|
||||
|
||||
Version 2.56.
|
||||
|
18
NEWS
18
NEWS
@ -1,9 +1,17 @@
|
||||
* Major changes in Autoconf 2.56 -*- outline -*-
|
||||
* Major changes in Autoconf 2.57 -*- outline -*-
|
||||
|
||||
Released 2002-12-03.
|
||||
|
||||
Bug fixes for problems with AIX linker, with freestanding C compilers,
|
||||
with GNU m4 limitations, and with obsolete copies of GNU documents.
|
||||
|
||||
The Free Documentation License has been upgraded from 1.1 to 1.2.
|
||||
|
||||
* Major changes in Autoconf 2.56
|
||||
|
||||
Released November 15th, 2002.
|
||||
|
||||
One packaging problem fixed (config/install-sh was not executable).
|
||||
|
||||
|
||||
* Major changes in Autoconf 2.55
|
||||
|
||||
@ -109,7 +117,7 @@ Release tips:
|
||||
assignments.
|
||||
|
||||
|
||||
** Plans for 2.57
|
||||
** Plans for later versions
|
||||
|
||||
- ./configure <host>
|
||||
|
||||
@ -137,7 +145,7 @@ Release tips:
|
||||
to be escaped. This scheme is fragile, and will be removed; the
|
||||
only risk is uglified messages. Please, run `autoreconf -f -Wall'
|
||||
to find occurrences that will be affected.
|
||||
|
||||
|
||||
* Major changes in Autoconf 2.54
|
||||
|
||||
Released September 13th, 2002.
|
||||
@ -233,7 +241,6 @@ Release tips:
|
||||
- config.log
|
||||
Now contains the list of ouput variables and files (AC_SUBST,
|
||||
AC_SUBST_FILES).
|
||||
|
||||
|
||||
* Major changes in Autoconf 2.53
|
||||
|
||||
@ -357,7 +364,6 @@ Release tips:
|
||||
|
||||
- AC_FUNC_STRNLEN
|
||||
New.
|
||||
|
||||
|
||||
* Major changes in Autoconf 2.52
|
||||
|
||||
|
@ -22,7 +22,7 @@
|
||||
# We need AC_CONFIG_TESTDIR.
|
||||
AC_PREREQ([2.55])
|
||||
|
||||
AC_INIT([GNU Autoconf], [2.56], [bug-autoconf@gnu.org])
|
||||
AC_INIT([GNU Autoconf], [2.57], [bug-autoconf@gnu.org])
|
||||
AC_SUBST([PACKAGE_NAME])dnl
|
||||
AC_CONFIG_SRCDIR([ChangeLog])
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user