* bin/Makefile.am ($(top_builddir)/bin/autom4te): New dependency.
[autoconf.git] / ChangeLog
blob4fc694a8fa8ba8c43a8054c228723619afc96c4e
1 2007-05-25  Noah Misch  <noah@cs.caltech.edu>
3         * bin/Makefile.am ($(top_builddir)/bin/autom4te): New dependency.
5 2007-05-21  Paul Eggert  <eggert@cs.ucla.edu>
7         * lib/autoconf/c.m4 (AC_OPENMP): Don't echo --enable-openmp
8         choice, since that's what we do with --enable-largefile etc.
9         Redo indenting and assignments to simplify things a bit, and make
10         the parens work with Emacs.
12         * doc/autoconf.texi (Generic Compiler Characteristics): Fix typo
13         in my previous change: AC_C_OPENMP -> AC_OPENMP.  Reported by Bruno
14         Haible.
16 2007-05-21  Noah Misch  <noah@cs.caltech.edu>
18         * lib/autoconf/c.m4 (AC_OPENMP): Simplify use of AC_ARG_ENABLE.
19         * tests/local.at (AT_CHECK_ENV): Exempt OPENMP_CFLAGS.
21 2007-05-21  Bruno Haible  <bruno@clisp.org>
23         * NEWS: Rename AC_C_OPENMP to AC_OPENMP.
24         * lib/autoconf/c.m4 (AC_OPENMP): Renamed from AC_C_OPENMP.
25         * doc/autoconf.texi (Generic Compiler Characteristics): Move
26         renamed AC_OPENMP documentation here, from "C compiler".
27         Mention C++ and Fortran.
29 2007-05-21  Paul Eggert  <eggert@cs.ucla.edu>
31         * doc/autoconf.texi (C Compiler): Tweak OpenMP documentation a bit.
33 2007-05-21  Bruno Haible  <bruno@clisp.org>
35         * NEWS: Mention AC_C_OPENMP.
36         * lib/autoconf/c.m4 (AC_C_OPENMP): New macro.
37         * doc/autoconf.texi (C Compiler): Document AC_C_OPENMP.
39 2007-05-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
41         * bin/autom4te.in: Fix typos.
43 2007-05-16  Noah Misch  <noah@cs.caltech.edu>
45         * bin/autoconf.as: Handle `-' just like other input files.
46         * bin/autom4te.in (parse_args): Pass `-' through.
47         (handle_output): Skip the forbidden token search if we read from stdin.
48         (up_to_date): Always treat stdin as out of date.
49         * tests/tools.at (autoconf: input from stdin): New test.
50         (autoconf: forbidden tokens, basic): Check a second `autoconf' run.
52 2007-05-16  Stepan Kasal  <kasal@ucw.cz>
54         * tests/foreign.at tests/semantics.at, tests/tools.at: Remove
55         parameters for AT_CLEANUP.
56         * tests/local.at (AT_CHECK_AU_MACRO): Likewise.
58 2007-05-14  Paul Eggert  <eggert@cs.ucla.edu>
60         * NEWS: Document that AC_C_RESTRICT checks 'restrict' last.
61         * doc/autoconf.texi (C Compiler): Likewise.
63 2007-05-14  Noah Misch  <noah@cs.caltech.edu>
65         * lib/autoconf/c.m4 (AC_C_RESTRICT): Check `restrict' last.
67 2007-05-09  Stepan Kasal  <kasal@ucw.cz>
69         * doc/autoconf.texi: Direntry for "autoconf Invocation"
70         renamed to "autoconf-invocation"
72         * doc/autoconf.texi (Caching Results): The CACHE-ID variable
73         in the examples should not use the internal "ac_" prefix.
75 2007-05-05  Noah Misch  <noah@cs.caltech.edu>
77         * lib/autotest/general.m4 (_AT_NORMALIZE_TEST_GROUP_NUMBER): Use `eval'.
78         * doc/autoconf.texi ($@, case): Document Zsh limitations.
80 2007-05-03  Stepan Kasal  <kasal@ucw.cz>
82         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Put a.out first.
83         Reorganize the comments before and in the macro.
85 2007-05-02  Stepan Kasal  <kasal@ucw.cz>
87         * lib/autoconf/lang.m4, lib/autoconf/c.m4,
88         lib/autoconf/fortran.m4, lib/autoconf/erlang.m4: Cleanup of
89         section titles and other comments; no code change.
91 2007-05-01  Kevin Ryde  <user42@zip.com.au>
93         * doc/autoconf.texi (Particular Programs): Typo
94         @acindex{AC_PROG_MKDIR_P} shouldn't have "AC" in that call.
96 2007-04-30  Paul Eggert  <eggert@cs.ucla.edu>
98         * lib/m4sugar/m4sh.m4 (_AS_SHELL_FN_SPY): Don't imply that
99         'configure' will fail if the shell lacks proper support for shell
100         functions.  Suggested by RMS.
102 2007-04-29  Paul Eggert  <eggert@cs.ucla.edu>
104         * doc/autoconf.texi (Limitations of Builtins): Correct the warning
105         about Solaris /bin/printf '%010000x' 123.  Problem reported by
106         Bruno Haible.
108 2007-04-28  Paul Eggert  <eggert@cs.ucla.edu>
110         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Don't look
111         for a.* when searching for executables, as this prevents users
112         from having files like a.c.  Problem reported by Ralf Wildenhues in:
113         http://lists.gnu.org/archive/html/autoconf-patches/2007-04/msg00029.html
114         This fixes a problem introduced on 2000-12-19.
116 2007-04-26  Paul Eggert  <eggert@cs.ucla.edu>
118         * doc/autoconf.texi (Limitations of Builtins): Warn about Solaris
119         /bin/printf '%010000x' 123.  Problem reported by Arto C. Nirkko
120         via Bruno Haible.
122 2007-04-12  Paul Eggert  <eggert@cs.ucla.edu>
124         * NEWS: Document recent changes to AC_CHECK_ALIGNOF, AC_CHECK_SIZEOF,
125         AC_CHECK_TYPE, AC_CHECK_TYPES.
126         * doc/autoconf.texi (Generic types): C types must be type-names
127         (the C terminology), not type-ids (the C++ term).  C++ types
128         must not be anonymous.
129         * lib/autoconf/types.m4 (_AC_CHECK_TYPE_NEW): Remove special case
130         for C++; this drops support for anonymous struct and union types,
131         which were problematic anyway.
132         * tests/semantics.at (AC_CHECK_HEADERS_NEW): Adjust test to work even
133         for C++.
135 2007-04-12  Jim Meyering  <jim@meyering.net>
137         * doc/autoconf.texi (Libraries): Typo fix: insert missing "in".
139 2007-04-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
141         * lib/autoconf/status.m4 (_AC_OUTPUT_LINK): Fix AC_CONFIG_LINKS
142         to prefer a link source from the build tree, if it exists.
143         Report by Pallav Gupta <pallavgupta@gmail.com>.
145 2007-04-11  Paul Eggert  <eggert@cs.ucla.edu>
147         * doc/autoconf.texi (Generic Types): Document the restrictions
148         on types imposed by AC_CHECK_TYPE, AC_CHECK_TYPES.
149         (Generic Compiler Characteristics): AC_CHECK_SIZEOF now works
150         with objects too.  Document the restrictions on its use.
151         Document the restrictions on AC_CHECK_ALIGNOF's type argument.
152         * lib/autoconf/types.m4 (_AC_CHECK_TYPE_NEW):
153         For C, just try sizeof (TYPE) and sizeof ((TYPE)); if the former
154         works but the latter doesn't, then it's a valid type.
155         This lets people use function types and so forth.
156         For C++ there doesn't seem to be a simple solution, so leave it alone.
157         (AC_CHECK_SIZEOF): Allow argument to be a variable.
158         (AC_CHECK_SIZEOF, AC_CHECK_ALIGNOF): Don't bother to invoke
159         AC_CHECK_TYPE; that wasn't documented or necessary.
161 2007-04-11  Stepan Kasal  <kasal@ucw.cz>
163         * lib/autoconf/general.m4 (_AC_LINK_IFELSE): Skip AS_TEST_X
164         when cross-compiling.
166 2007-04-11  Stepan Kasal  <kasal@ucw.cz>
168         * doc/autoconf.texi (External Software): Fix a typo in the
169         previous change.
171 2007-04-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
173         * doc/autoconf.texi (External Software, Package Options):
174         Fix ambiguous wording.  Report by Reuben Thomas <rrt@sc3d.org>.
176 2007-04-06  Paul Eggert  <eggert@cs.ucla.edu>
178         * doc/autoconf.texi (Particular Types): AC_C_LONG_DOUBLE is now
179         obsolescent.  Suggested by Bruno Haible.
180         * NEWS: Document this.
182 2007-03-29  Paul Eggert  <eggert@cs.ucla.edu>
184         * doc/autoconf.texi (Here-Documents, Limitations of Builtins):
185         (Limitations of Usual Tools): Don't say "older" if Solaris 10 by
186         default still has the problem.  Problem reported by Bruce Korb.
188 2007-03-28  Stepan Kasal  <kasal@ucw.cz>
189         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
191         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Fix a
192         comment in the generated config.status.
194 2007-03-27  Stepan Kasal  <kasal@ucw.cz>
196         * lib/autoconf/status.m4 (AC_CONFIG_SUBDIRS): Update comment.
198 2007-03-26  Paul Eggert  <eggert@cs.ucla.edu>
200         * doc/autoconf.texi (Shellology): Rework treatment of the 'test'
201         command and case statements to make it a bit clearer and describe
202         more pitfalls.
204 2007-03-23  Paul Eggert  <eggert@cs.ucla.edu>
206         * doc/autoconf.texi (C Compiler): Mention that AC_PROG_CC_C99 also
207         checks for unsigned long long int.
209 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
211         * doc/autoconf.texi (Limitations of Usual Tools): Warn about other
212         nonstandard grep R.E. escape sequences.
214 2007-03-17  Jim Meyering  <jim@meyering.net>
216         * doc/autoconf.texi: Adjust grammar around use of "heuristics".
217         (Limitations of Usual Tools): Also list \< and \>, and mention that
218         HP-UX's grep, like the one from Solaris, does not support that syntax.
220 2007-03-09  Stepan Kasal  <kasal@ucw.cz>
222         * doc/autoconf.texi (Specifying Names): `--host' does not
223         change the build type.
225 2007-03-05  Paul Eggert  <eggert@cs.ucla.edu>
227         * doc/autoconf.texi (C Compiler): Warn that AC_C_BIGENDIAN
228         suggests AC_CONFIG_HEADERS.
229         * lib/autoconf/c.m4 (AC_C_BIGENDIAN): Warn if not using
230         AC_CONFIG_HEADERS.  Problem reported by
231         Peter O'Gorman.
233 2007-02-28  Paul Eggert  <eggert@cs.ucla.edu>
235         * lib/autoconf/c.m4 (AC_C_BIGENDIAN): Fix typo "__LITLE_ENDIAN__".
236         Problem reported by Paolo Bonzini in:
237         http://lists.gnu.org/archive/html/autoconf-patches/2007-02/msg00024.html
238         * tests/semantics.at (AC_C_BIGENDIAN): Don't reject hosts that have
239         universal binaries.  Problem reported by Elias Pipping.
241 2007-02-27  Paul Eggert  <eggert@cs.ucla.edu>
243         * NEWS: AC_C_BIGENDIAN now supports universal binaries a la Mac OS X.
244         * doc/autoconf.texi (C Compiler): Document this.  There is a new
245         extra argument ACTION-IF-UNIVERSAL.
246         * lib/autoconf/c.m4 (AC_C_BIGENDIAN): Implement this.
247         Add support for Solaris-style _LITTLE_ENDIAN and _BIG_ENDIAN.
248         Reindent for sanity's sake.
250 2007-02-24  Eric Blake  <ebb9@byu.net>
252         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Update
253         copyright.
254         * lib/autoconf/general.m4 (_AC_INIT_COPYRIGHT): Likewise.
255         * lib/autotest/general.m4 (AT_INIT): Likewise.
256         (_AT_DECIDE_TRACEABLE): Fix syntax highlighting.
258 2007-02-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
260         * lib/autotest/general.m4 (AT_INIT): With --clean, return exit
261         status of rm so we know when it failed.
262         If cleaning of test dir failed before running the test, warn.
263         Output the line separator in verbose mode before the warning
264         to make clear the warning belongs to the following test.
266 2007-02-08  Paul Eggert  <eggert@cs.ucla.edu>
268         * doc/autoconf.texi (Parentheses): Mention problem with (( in
269         shells.
271 2007-02-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
272         and Paul Eggert  <eggert@cs.ucla.edu>
274         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE): Fix quoting
275         errors introduced in last change.
277 2007-02-07  Paul Eggert  <eggert@cs.ucla.edu>
279         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE): Prefer \r to
280         an actual carriage return.  Use "ac_cr" to contain the actual
281         carriage return.
282         * doc/autoconf.texi (Limitations of Usual Tools): Document problem
283         with traditional Awk and begin.
284         * tests/torture.at (Limitations of Builtins): Document the problem
285         with Bash 2.03 printf.
286         (Substitute and define special characters):
287         Remove trailing white space.  Work around a bug in Solaris 8 /bin/bash.
289 2007-02-06  Ralf Menzel  <menzel@ls6.cs.uni-dortmund.de>  (tiny change)
291         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE): Redirect
292         input from /dev/null in awk test, so even Solaris /usr/bin/awk
293         will not wait for input with a script containing only a BEGIN
294         rule.
296 2007-02-03  Paul Eggert  <eggert@cs.ucla.edu>
298         * doc/autoconf.texi (Introduction, Why GNU M4): Clarify M4 version
299         requirements.
300         * README: Likewise.
302 2007-02-02  Eric Blake  <ebb9@byu.net>
304         * NEWS: Update copyright.
306         * m4/m4.m4 (AC_PROG_GNU_M4): Reject M4 1.4 through 1.4.4 as
307         broken.
308         * configure.ac: Update error message.
309         * NEWS: Note that M4 1.4.5 or later is now a hard dependency.
310         Reported by Gary Vaughan and Jim Meyering, and problem analyzed
311         by Stepan Kasal:
312         http://lists.gnu.org/archive/html/bug-autoconf/2006-11/msg00025.html
314 2007-01-31  Eric Blake  <ebb9@byu.net>
316         * THANKS (people): Update.
318 2007-01-28  Paul Eggert  <eggert@cs.ucla.edu>
320         * doc/autoconf.texi (Shellology): pdksh 5.2.14 is still the
321         latest version.
322         (Shell Substitutions): Note problems with @{var:=value} etc.
323         Add a new section for problems with @{#var} etc.  Problem noted
324         by Ralf Wildenhues.  See:
325         http://lists.gnu.org/archive/html/libtool-patches/2005-01/msg00157.html
327 2007-01-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
329         * lib/autoconf/programs.m4 (AC_PROG_MKDIR_P): Also
330         AC_SUBST([MKDIR_P]), so that Automake < 1.10 will pick up its
331         trace, if a package uses AC_PROG_MKDIR_P explicitly.  The actual
332         substitution will still be done by the special code.
333         Report by Jim Meyering.
335         * doc/autoconf.texi (File System Conventions): Mention that
336         $PATH_SEPARATOR is for the build system only.
337         Report by Keith Marshall.
339 2007-01-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
341         * doc/autoconf.texi (Setting Output Variables): Mention that
342         all non-NUL characters are ok in substituted values.
343         * lib/autoconf/status.m4 (_AC_SED_CMD_LIMIT): Fix comment typo.
344         (_AC_OUTPUT_FILES_PREPARE): Test and use backslash escaping of
345         carriage return for $AWK, needed for BSD awk.
346         * tests/torture.at (Substitute and define special characters):
347         Test all 8 bit non-NUL characters.
348         Report against Automake by Patrick Welche.
350 2007-01-15  Stepan Kasal  <kasal@ucw.cz>
352         * doc/autoconf.texi: Direntry for "autoconf Invocation" renamed.
354 2007-01-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
356         * lib/autoconf/programs.m4 (AC_PROG_SED): When closing a pipe
357         early on the reader side, drop stderr of the input to avoid
358         `broken pipe' error output; this may happen even with shell
359         builtin `echo' of some bash versions.  Reports by Ian Macdonald
360         <iamacdo@telkomsa.net> and Sam Sexton <Sam.Sexton@reuters.com>.
362 2007-01-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
364         * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS): Use newlines to
365         separate items of `ac_user_opts', to avoid long lines.
366         (_AC_INIT_PARSE_ENABLE2, _AC_ENABLE_IF_ACTION): Adjust.
368 2007-01-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
370         * doc/autoconf.texi: Fix some typos.
372 2007-01-05  Paul Eggert  <eggert@cs.ucla.edu>
374         Fix some wording problems noted by Paolo Bonzini in:
375         http://lists.gnu.org/archive/html/autoconf-patches/2007-01/msg00077.html
376         * doc/autoconf.texi (Signed Overflow Examples): Give more
377         discussion about the allow_superuser_privileges example,
378         and change it a bit to make things clearer.
379         (Optimization and Wraparound): Clarify whether the compiler
380         will generate an infinite loop for the example derived from
381         Autoconf's mktime test.
382         (Signed Overflow Advice): Say that -ftrapv is meant for debugging.
383         Also, clarify unsigned multiplication overflow.
385 2007-01-04  Eric Blake  <ebb9@byu.net>
387         * bin/Makefile.am (RELEASE_YEAR): New macro.
388         (edit): Use it to supply correct copyright year to scripts.
389         * bin/autoconf.as (version): Use it.
390         * bin/autoheader.in ($version): Likewise.
391         * bin/autom4te.in ($version): Likewise.
392         * bin/autoreconf.in ($version): Likewise.
393         * bin/autoscan.in ($version): Likewise.
394         * bin/autoupdate.in ($version): Likewise.
395         * bin/ifnames.in ($version): Likewise.
397 2007-01-02  Paul Eggert  <eggert@cs.ucla.edu>
399         * doc/autoconf.texi (Integer Overflow): Revised based on today's
400         feedback.  The most important changes document what happens when
401         you convert an out-of-range value to a signed integer type, and
402         say that (sum < a) != (b < 0) reliably detects overflow when sum =
403         a + b.
405         * doc/autoconf.texi (Integer Overflow): Greatly expand and
406         rewrite, taking notions from the recent discussion on the gcc and
407         autoconf mailing lists; please see
408         http://lists.gnu.org/archive/html/autoconf-patches/2006-12/msg00091.html
409         and follow the many links.
410         (Integer Overflow Basics, Signed Overflow Examples):
411         (Optimization and Wraparound, Signed Overflow Advice):
412         (Signed Integer Division): New sections.
414 2006-12-28  Steven G. Johnson  <stevenj@alum.mit.edu>
416         * lib/autoconf/general.m4 (AC_DEFINE_TRACE): Don't include
417         preprocessor macro arguments in traced name.
418         * doc/autoconf.texi (Defining symbols): Document longstanding
419         support for AC_DEFINE-ing macros with arguments, and document
420         behavior when the same variable has multiple AC_DEFINEs.
421         * lib/autoconf/fortran.m4 (_AC_FC_WRAPPERS): Revert to the
422         old implementation which AC_DEFINEs the FC_FUNC and FC_FUNC_
423         macros directly, giving much shorter and simpler code.
425 2006-12-28  Malcolm Purvis <malcolmp@xemacs.org>  (trivial change)
427         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Insert a
428         space before "$ac_configure_args" to prevent a 'config.status
429         --recheck' failure if ac_configure_args doesn't contain a leading
430         space.  This works around a problem with the XEmacs configure.ac,
431         which uses the (undocumented) ac_configure_args variable
432         inconsistently with Autoconf.
434 2006-12-22  Paul Eggert  <eggert@cs.ucla.edu>
436         * lib/autoconf/functions.m4 (AC_FUNC_MKTIME):
437         Include <limits.h>, and use its INT_MAX to rewrite the
438         j loop so that it does not overflow 'int'.  Problem reported by
439         Ralf Wildenhues in
440         <http://lists.gnu.org/archive/html/bug-gnulib/2006-12/msg00084.html>.
441         Play it safe by shifting left by 1 rather than multiplying by 2,
442         as GCC is less likely to optimize this away when the value
443         is signed (when it assumes overflow leads to undefined behavior).
444         Also, don't assume time_t uses two's complement.
446 2006-12-20  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
448         * tests/torture.at (Substitute a 2000-byte string): Avoid using
449         a 10kB long (multi-line) string literal, OpenServer 5.0.7 ksh
450         dumps core on it.  Report by Tim Rice.
452 2006-12-18  Steven G. Johnson  <stevenj@alum.mit.edu>
454         * lib/autoconf/general.m4 (AC_ARG_ENABLE): Print help about
455         --disable-option-checking to --help output even when
456         AC_PRESERVE_HELP_ORDER is not used.
457         (_AC_INIT_PARSE_ENABLE2): Print warnings using actual --enable or
458         --with argument, rather than argument with [-.] replaced by
459         underscores.
460         * NEWS: Fix typo in previous change; the news was in the
461         wrong section.
463 2006-12-18  Paul Eggert  <eggert@cs.ucla.edu>
465         * NEWS: Warnings are now generated by default for unknown
466         --enable-* and --with-* options.
467         * doc/autoconf.texi (Option Checking): Renamed from
468         (Configure Option Checking).  Tighten up the wording a bit.
469         (External Software, Package Options): Cross-reference to Option
470         Checking, and use this to shorten our section.
471         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ARGS): Prefer test -n
472         "$x" to test "x$foo" != x.
473         * lib/autoconf/status.m4 (AC_OUTPUT): Likewise.
474         Don't warn if $enable_option_checking is "no".
475         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ARGS): Initialize
476         ac_unrecognized_opts to the empty string.
477         Don't echo the unrecognized opts, as this might mishandle
478         backslashes or leading -.
479         (AC_PRESERVE_HELP_ORDER): Put the --disable-option-checking
480         usage next to the other --disable-FEATURE options in the
481         help string.
483 2006-12-18  Steven G. Johnson  <stevenj@alum.mit.edu>
485         * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS, _AC_INIT_PARSE_ARGS):
486         (_AC_INIT_PARSE_ENABLE2, _AC_INIT_HELP, _AC_ENABLE_IF):
487         Print warning for unrecognized --with and --enable options
488         (AC_DISABLE_OPTION_CHECKING): New macro to disable warnings.
489         * lib/autoconf/status.m4 (AC_CONFIG_SUBDIRS, _AC_OUTPUT_SUBDIRS):
490         Disable option checking when subdirs are configured.
491         (AC_OUTPUT): If warnings are enabled, print warning about
492         unrecognized --with and --enable options at the end of
493         the configure output (as well as at the beginning).
494         * doc/autoconf.texi (Option Checking): New node.
495         Document new option warning functionality.
497 2006-12-16  Eric Blake  <ebb9@byu.net>
499         * configure.ac (AC_INIT): Bump version, since 2.61a is released.
500         * NEWS: Start news for current version.
502 2006-12-15  Paul Eggert  <eggert@cs.ucla.edu>
504         * lib/autoconf/functions.m4 (AC_FUNC_GETMNTENT):
505         Define HAVE_GETMNTENT to 1, not to the empty string.
506         Problem originally reported by Jochen Friedrich in
507         <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=403243>.
509         This change prompted by a problem report by Andrey Simonenko in
510         <http://lists.gnu.org/archive/html/bug-autoconf/2006-12/msg00026.html>.
511         * doc/autoconf.texi (Defining Symbols): AC_DEFINE works for
512         object-like macros only, in the traditional portable character
513         set.
514         * lib/autoconf/general.m4 (AC_DEFINE_TRACE_LITERAL):
515         Warn about attempts to define things that are not identifiers.
516         * lib/autoconf/fortran.m4 (_AC_FC_WRAPPERS): Rewrite to avoid
517         awful hack that AC_DEFINEd macro names containing parentheses.
519 2006-12-12  Paul Eggert  <eggert@cs.ucla.edu>
521         * doc/autoconf.texi: Undo some of the 2006-12-10 change.  It was
522         too drastic, even if Texinfo in theory requires it for info mode.
524         (config.status Invocation): Renamed back from Recreating a
525         Configuration).
526         (Obsolete config.status Use): Renamed back from Obsolete Recreation.
527         (Autoconf 2.13): Renamed back from 20th-century Autoconf 2.
529 2006-12-11  Paul Eggert  <eggert@cs.ucla.edu>
531         * NEWS: Version 2.61a.
533 2006-12-11  Paul Eggert  <eggert@cs.ucla.edu>
534         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
536         * NEWS: Document changes with echo and printf, and the lack
537         of limits on the total size of multi-line values of substituted
538         variables, and the AC_FUNC_FSEEKO fix.
540 2006-12-10  Paul Eggert  <eggert@cs.ucla.edu>
542         * doc/autoconf.texi (Writing Autoconf Input): Renamed from
543         Writing configure.ac.
544         (Autoconf Input Layout): Renamed from configure.ac Layout.
545         (Recreating a Configuration): Renamed from config.status Invocation.
546         (Obsolete Recreation): Renamed from Obsolete config.status Use.
547         (acconfig Header): Renamed from acconfig.h.
548         (20th-century Autoconf 2): Renamed from Autoconf 2.13.
549         (Writing Testsuites): Renamed from Writing testsuite.at.
550         (Autom4te Cache): Renamed from autom4te.cache.
552         * BUGS: Remove mention of VPATH problem, since it's now documented
553         not to be a bug in the Autoconf build procedure itself, but rather
554         a problem with the proprietary `make' programs.
556         * doc/autoconf.texi (Build Directories): Add a cross reference
557         to VPATH and Make.
559         * build-aux/config.guess, build-aux/config.sub, build-aux/texinfo.tex:
560         * doc/standards.texi: Sync from gnulib.
562         * man/autoconf.1, man/autoheader.1, man/autom4te.1, man/autoreconf.1:
563         * man/autoscan.1, man/autoupdate.1, man/config.guess.1:
564         * man/config.sub.1, man/ifnames.1: Remove from CVS, since they're
565         generated automatically.
567 2006-12-06  Paul Eggert  <eggert@cs.ucla.edu>
569         * lib/autoconf/c.m4 (_AC_PROG_CC_C89): Also try -xc99=all, for Sun
570         C 5.8 on Solaris 10.  Using -xc99=all rather than -xc99 bypasses
571         the buggy -xc99 option of Forte Developer 7 C on Solaris 9.
573 2006-12-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
575         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE): Drop the
576         `CEOF$ac_eof' special marker, the awk script cannot contain a
577         line matching `^CEOF', so this is not needed any more.
578         * tests/torture.at (Substitute a newline): Expose the `%!_!# '
579         special marker in the test.
581 2006-12-06  Stepan Kasal  <kasal@ucw.cz>
583         * tests/tools.at (autom4te preselections): Use `find -newer';
584         remove one of the sleeps.
586         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ENABLE): Make it
587         more readable, using ...
588         (_AC_INIT_PARSE_ENABLE2): ... this new helper macro.
590         * doc/autoconf.texi (autoheader Invocation): Do not double-
591         quote the parameter of `AH_BOTTOM' in the example.
593 2006-12-05  Stepan Kasal  <kasal@ucw.cz>
595         * doc/autoconf.texi (Configuration Headers): Remove the
596         example with multiple input files.
597         (autoheader Invocation): Encourage `AH_BOTTOM', discouraging
598         multiple input files.
600 2006-12-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
602         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE): When
603         creating the awk substitution script, handle one input line at a
604         time, so that the maximum length of a substituted (multi-line)
605         value is not limited by the size of the sed pattern space.
606         The trade-off is a slightly repetitive sed script.
607         * doc/autoconf.texi (Limitations of Usual Tools): Branch labels
608         can only have up to 7 characters, due to Solaris 10 /bin/sed.
609         * tests/torture.at (Substitute a 2000-byte string): Increase the
610         test with several long lines, they should not be caught by sed
611         limits any more.
613         * tests/tools.at (autom4te preselections): New test, to flag
614         entries missing from autom4te.cfg.
615         Report by David Byron <dbyron@hheld.com>.
617         * tests/torture.at (Substitute a 2000-byte string): Actually use
618         AC_PROG_AWK, so the last change works as intended.
619         (Substitute and define special characters): Likewise.
620         (Substitute a newline): Likewise.
622         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE): Use `$AWK'
623         instead of `awk' consistently.
624         (_AC_OUTPUT_CONFIG_STATUS): Initialize $AWK.
625         * tests/torture.at (Torturing config.status): Test both the
626         result of AC_PROG_AWK and plain awk.
627         (Substitute a 2000-byte string): Likewise.
628         (Substitute and define special characters): Likewise.
629         (Substitute a newline): Likewise.
631 2006-12-04  Paul Eggert  <eggert@cs.ucla.edu>
633         * lib/autoconf/functions.m4 (AC_FUNC_FSEEKO): Check that fseeko
634         can be assigned to a function pointer.  Problem reported by
635         Peter Palfrader in <http://bugs.debian.org/401377>.  Based on
636         part of a patch by Ralf Wildenhues in that same bug report.
638 2006-12-01  Paul Eggert  <eggert@cs.ucla.edu>
640         * tests/mktests.sh (ac_exclude_list): Exclude AC_FUNC_SETVBUF_REVERSED.
641         * tests/semantics.at (AC_FUNC_SETVBUF_REVERSED): New test.
643 2006-12-01  Eric Blake  <ebb9@byu.net>
645         * lib/autoconf/c.m4 (AC_LANG_INT_SAVE): Avoid newline, to aid in
646         cross-compiling from cygwin to mingw.
647         Reported by Bob Rossi.  This resurrects the 2000-11-30 patch to
648         aclang.m4, which was mistakenly removed in the 2001-09-17 patch
649         to lib/autoconf/c.m4.
651 2006-12-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
653         * lib/m4sugar/m4sh.m4 (_AS_ECHO_PREPARE): Use a longer test
654         string for more reliable failure.  Wrap the entire test that
655         causes the broken Solaris printf to dump core, in a subshell,
656         so the segmentation fault message is reliably suppressed.
657         Fix shell expansion errors by using /usr/ucb/echo always;
658         avoid an error on systems without it by another subshell.
659         Avoid m4 expansion of `$1'.  Set the zeroth argument of the
660         subshell-$as_echo to `as_echo', for better error message.
662 2006-11-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
664         * lib/autoconf/general.m4 (_AC_CACHE_DUMP): If `BASH_ARGV' or
665         `BASH_SOURCE' contain a newline, set them to empty, as they may
666         not be unset.
668 2006-11-27  Paul Eggert  <eggert@cs.ucla.edu>
670         Turn AC_FUNC_SETVBUF_REVERSED into a noop.  It's been obsolete for
671         years and is too hard to maintain now.  The last straw was
672         reported by Jerker Baeck in
673         <http://lists.gnu.org/archive/html/autoconf/2006-11/msg00102.html>.
674         * NEWS: AC_FUNC_SETVBUF_REVERSED is now obsolete.
675         * doc/autoconf.texi (Particular Functions): Move
676         AC_FUNC_SETVBUF_REVERSED from here...
677         (Obsolete Macros): ... to here.  Say that it does nothing now.
678         * lib/autoconf/functions.m4 (AC_FUNC_SETVBUF_REVERSED):
679         Turn into (almost) a no-op.
681         * lib/autoconf/c.m4 (AC_PROG_GCC_TRADITIONAL, AC_C_CONST):
682         (AC_C_VOLATILE):
683         Do not recommend via AN_FUNCTION, AN_IDENTIFIER, or AN_HEADER.
684         These macros are obsolescent and new applications shouldn't need them.
685         * lib/autoconf/functions.m4 (AC_FUNC_CLOSEDIR_VOID, AC_REPLACE_FNMATCH):
686         (AC_FUNC_GETLOADAVG, AC_FUNC_GETPGRP, AC_FUNC_MEMCMP):
687         (AC_FUNC_SELECT_ARGTYPES, AC_FUNC_SETPGRP, AC_FUNC_STAT, AC_FUNC_LSTAT):
688         (AC_FUNC_STRFTIME, AC_FUNC_SETVBUF_REVERSED, AC_FUNC_UTIME_NULL):
689         (AC_FUNC_VPRINTF): Likewise.
690         * lib/autoconf/headers.m4 (AC_HEADER_DIRENT, AC_HEADER_STAT):
691         (AC_HEADER_STDC, AC_HEADER_SYS_WAIT, AC_HEADER_TIME): Likewise.
692         * lib/autoconf/types.m4 (AC_STRUCT_TM): Likewise.
694         * doc/autoconf.texi (Setting Output Variables): Mention that
695         @VAR1@VAR2 has unspecified behavior.  Problem reported by
696         Ralf Wildenhues.
697         * NEWS: Mention this.
699         * Makefile.am: Put only a single '#' into the copyright notice,
700         so that it's also present in the output file.  Standardize wording
701         in makefile copyright notices to match GNU coding standards.
702         * bin/Makefile.am: Likewise.
703         * doc/Makefile.am: Likewise.
704         * lib/Makefile.am: Likewise.
705         * lib/freeze.mk: Likewise.
706         * lib/autoconf/Makefile.am: Likewise.
707         * lib/autoscan/Makefile.am: Likewise.
708         * lib/autotest/Makefile.am: Likewise.
709         * lib/m4sugar/Makefile.am: Likewise.
710         * man/Makefile.am: Likewise.
711         * tests/Makefile.am: Likewise.
712         * lib/emacs/Makefile.am: Remove copyright notice; it's just a
713         one-line file.
715 2006-11-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
717         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE): Fix error
718         in the sed script that mangles the awk script: delete up to the
719         first exclamation mark only.
720         * tests/torture.at (Substitute and define special characters):
721         Test '!' too.
723 2006-11-26  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
725         Rewrite config files generation: avoid quadratic growth in
726         the number of substituted variables by using awk instead of sed
727         for the bulk of the substitutions.
728         * NEWS: Mention this.
729         * doc/autoconf.texi (Setting Output Variables): `|#_!!_#|' is also
730         forbidden in the output (and thus input) file.
731         * lib/autoconf/status.m4 (_AC_AWK_LITERAL_LIMIT): New macro.
732         (_AC_OUTPUT_FILES_PREPARE): Instead of several sed scripts,
733         generate just one large awk script for substitutions,
734         eliminating much of the earlier complexity, while adding some
735         new complexity.  Only expand the substitution templates at
736         configure time, for smaller configure script size.  If
737         _AC_SUBST_FILES are used, test 'awk' for working getline support
738         at config.status time.  If absent, interpolate through the
739         shell.  The awk script was written with much help
740         from Paolo Bonzini and Paul Eggert.
741         (_AC_SED_CMD_NUM, _AC_SED_DELIM_NUM, _AC_SED_FRAG): Removed.
742         (_AC_SED_FRAG_NUM): Likewise.
743         (_AC_SUBST_CMDS): Renamed from...
744         (_AC_SED_CMDS): ...this.
745         (_AC_OUTPUT_FILE): Use _AC_SUBST_CMDS.
746         * tests/torture.at (Substitute a 2000-byte string): Also
747         substitute a line with 1000 words, and a variable with several
748         long lines.
749         (Substitute and define special characters): Test awk special
750         characters, and put substitution input strings `@foo@' in the
751         output, to test that no recursion happens; test several other
752         combinations from Paolo Bonzini.
754 2006-11-25  Paul Eggert  <eggert@cs.ucla.edu>
756         * lib/autotest/general.m4 (AT_INIT): Undo recent changes
757         that replaced echo with AS_ECHO where this wasn't necessary.
758         Problem reportd by Ralf Wildenhues.
759         * lib/m4sugar/m4sh.m4 (_AS_ECHO_PREPARE): Port to Solaris 7,
760         where "/usr/bin/printf '%s\n' S" dumps core if S is long.
761         This is Sun bug 4206210.  Problem reportd by Ralf Wildenhues.
763 2006-11-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
765         * lib/freeze.mk (GREP): Removed, no need to initialize this.
767 2006-11-21  Paul Eggert  <eggert@cs.ucla.edu>
769         * doc/autoconf.texi (Limitations of Usual Tools): Don't claim
770         that traditional Awk lacks 3-arg "split".  It has it.
771         Mention that FS must be a single character, and a few other
772         99-byte limits of traditional Awk.
773         Mention that if (i in a) doesn't work with traditional Awk.
775 2006-11-18  Paul Eggert  <eggert@cs.ucla.edu>
777         * tests/autotest.at (BSx641-newline in command):
778         (BS-BS-newline in command, BSx640-newline in command):
779         (Newline-CODE-BS-newline in command):
780         (Single-quote-BS-newline in command):
781         (Single-quote-newline-BS-newline in command):
782         Use printf '%s\n' instead of echo, for portability to hosts
783         where echo interprets backslashes.  This will break on hosts
784         that lack printf, but for now let's assume all such hosts
785         are dead (if not, we should get reports of test failures).
787 2006-11-17  Paul Eggert  <eggert@cs.ucla.edu>
789         'echo' has some portability problems, when given a first argument
790         with a leading '-', or when given any argument containing '\'.
791         Avoid using 'echo' in these cases.
792         * bin/Makefile.am $(bin_SCRIPTS): Rewrite to avoid 'echo' entirely.
793         * lib/autoconf/c.m4 (AC_PROG_CC, AC_PROG_CXX, AC_PROG_OBJC): Likewise.
794         * lib/autoconf/fortran.m4 (_AC_PROG_FC): Likewise.
795         * lib/autotest/general.m4 (AT_INIT): Likewise.
796         * bin/autoconf.as: Use AS_ECHO rather than plain echo, when the
797         argument might be unportable.
798         * lib/autoconf/c.m4 (AC_PROG_CC_C_O): Likewise.
799         * lib/autoconf/erlang.m4 (AC_LANG(Erlang)): Likewise.
800         * lib/autoconf/fortran.m4 (_AC_PROG_FC_V_OUTPUT):
801         (_AC_FC_LIBRARY_LDFLAGS): Likewise.
802         * lib/autoconf/functions.m4 (AC_FUNC_GETLOADAVG): Likewise.
803         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ENABLE, _AC_INIT_PREPARE):
804         (_AC_ARG_VAR_VALIDATE, AC_ARG_PROGRAM, _AC_MSG_LOG_CONFTEST):
805         (AC_RUN_LOG, _AC_RUN_IFELSE, _AC_LIBOBJS_NORMALIZE): Likewise.
806         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Likewise.
807         * lib/autoconf/libs.m4 (_AC_PATH_X_DIRECT): Likewise.
808         * lib/autoconf/programs.m4 (_AC_FEATURE_CHECK_LENGTH):
809         (AC_PROG_MAKE_SET): Likewise.
810         * lib/autoconf/status.m4 (_AC_SRCDIRS, _AC_OUTPUT_HEADER):
811         (_AC_OUTPUT_SUBDIRS, _AC_OUTPUT_CONFIG_STATUS): Likewise.
812         * lib/autotest/general.m4 (_AT_CREATE_DEBUGGING_SCRIPT, AT_INIT):
813         (AT_CLEANUP, _AT_DECIDE_TRACEABLE, _AT_CHECK): Likewise.
814         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE, _AS_ECHO_UNQUOTED):
815         (_AS_BASENAME_SED, _AS_DIRNAME_SED, AS_MKDIR_P, AS_TMPDIR, AS_UNAME):
816         (AS_TR_SH, AS_TR_CPP, AS_VAR_GET): Likewise.
817         * bin/autoconf.as: Redo verbose flag implementation, as the old
818         scheme wouldn't work with AS_ECHO.
819         * lib/autotest/general.m4 (AT_INIT): Likewise.
820         * lib/autoconf/general.m4 (AC_MSG_RESULT, AC_MSG_RESULT_UNQUOTED):
821         Don't use ECHO_T, since ECHO_N is now reliable.
822         * lib/autotest/general.m4 (AT_INIT): Likewise.
823         * lib/autoconf/general.m4 (AC_ARG_PROGRAM): Use sed "$script"
824         rather than using a here-document to put the script into a file.
825         (_AC_DO_ECHO): Hoist the eval out of the echo, so that we can
826         use AS_ECHO.
827         * lib/m4sugar/m4sh.m4 (AS_VAR_GET): Likewise.
828         * lib/autoconf/programs.m4 (_AC_FEATURE_CHECK_LENGTH): Use
829         AS_ECHO_N rather than ECHO_N and ECHO_C.  This doesn't fix any
830         bug, but we might as well stop using ECHO_N and ECHO_C internally.
831         * lib/autotest/general.m4 (AT_SETUP): Likewise.
832         * lib/m4sugar/m4sh.m4 (_AS_ECHO_N): Likewise.
833         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS):
834         (_AC_OUTPUT_MAIN_LOOP): Rework echo so that it has just one
835         operand, as AS_ECHO requires.  Avoid double file name expansion.
836         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Invoke _AS_ECHO_PREPARE.
837         Don't set as_nl, since _AS_ECHO_PREPARE does that now.
838         (_AS_PREPARE): Comment that _AS_ECHO_N_PREPARE is just for user code.
839         (AS_ECHO, AS_ECHO_N, _AS_ECHO_PREPARE): New macros.
840         * tests/c.at (AC_PROG_CPP without warnings, AC_PROG_CPP via CC):
841         Double-quote strings that would otherwise contain M4 comments.
842         * tests/m4sh.at (AS_ECHO and AS_ECHO_N): New test.
844         * configure.ac (AC_INIT): Bump to 2.61a.
845         * NEWS: Likewise.
847 2006-11-17  Paul Eggert  <eggert@cs.ucla.edu>
849         Version 2.61.
851         * configure.ac (AC_INIT): Bump to 2.61.
852         * NEWS: Likewise.
854         * tests/autotest.at (Macro with backslash in a test title):
855         Comment out for now, as this tests neither fails nor passes
856         reliably.  Problem reported by Ralf Wildenhues.
858 2006-11-16  Paul Eggert  <eggert@cs.ucla.edu>
860         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ENABLE): Fix some typos
861         in previous change, which caused test failures.
863 2006-11-16  Stepan Kasal  <kasal@ucw.cz>
865         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ARGS): Factor out
866         code for --enable, --disable, --with, and --without to...
867         (_AC_INIT_PARSE_ENABLE): ... a new macro.
868         * doc/autoconf.texi (Package Options):
869         * NEWS: Document that AC_ARG_ENABLE allows dots, too.
871 2006-11-16  Paul Eggert  <eggert@cs.ucla.edu>
873         Import these changes from config via gnulib:
875         2006-11-15  Ben Elliston  <bje@gnu.org>
877         From Josselin Mouette <joss@debian.org>:
878         * build-aux/config.guess (SX-8:SUPER-UX:*:*): New.
880         2006-11-08  Ben Elliston  <bje@gnu.org>
882         * build-aux/config.guess (authenticamd:Interix*:[3456]*): Another AMD64.
884         2006-11-07  Steve Woodford  <scw@NetBSD.org>
885                     Ben Elliston  <bje@gnu.org>
887         * build-aux/config.guess (*:NetBSD:*:*): Handle sh5el arch.
888         * build-aux/config.sub (sh5el): New basic_machine.
891         Import this change from coreutils:
893         2006-02-13  Jim Meyering  <jim@meyering.net>
895         * GNUmakefile (all): Emit diagnostics to stderr, not stdout.
898         Import this change from gnustandards via gnulib:
900         2006-11-15  Karl Berry  <karl@gnu.org>
902         * standards.texi: core -> memory, throughout.
903         (CPU Portability): show correct example of calling write
904         on a char value; thanks to Paul Eggert for the code.
905         Both of these suggestions from Eugene Y. Vasserman.
908         Import these changes from texinfo via gnulib:
910         2006-11-08  Karl Berry  <karl@gnu.org>
912         * build-aux/texinfo.tex (\dopdfimage): look for png, jpg/jpeg/JPG, and
913           as well as pdf images, since they are supported in pdftex with
914           no further ado.
916         2006-11-05  Karl Berry  <karl@gnu.org>
918         * doc/texinfo.tex (Image Syntax): don't mention GIF any more.
920 2006-11-13  Paul Eggert  <eggert@cs.ucla.edu>
922         * NEWS: Document the AC_ARG_WITH change.
924 2006-11-13  Bruno Haible  <bruno@clisp.org>
926         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ARGS): For --with, --without
927         options, transliterate also dots to underscores.
928         (_AC_ENABLE_IF): Transliterate also dots to underscores.
929         * doc/autoconf.texi (External Software): Document that AC_ARG_WITH's
930         first argument may also contain dots.
932 2006-11-09  Paul Eggert  <eggert@cs.ucla.edu>
934         * tests/mktests.sh (ac_exclude_list): Exclude AC_PROG_CXX_C_O, for
935         benefit of platforms like Solaris+GCC where it is common to have a
936         non-working g++ installation.
938 2006-11-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
939         and Joel E. Denny  <jdenny@ces.clemson.edu>
940         and Paul Eggert  <eggert@cs.ucla.edu>
942         * tests/autotest.at (AT_CHECK_AT_TITLE): Fix shell quoting bugs
943         and non-portable sed scripts, and use $CONFIG_SHELL when invoking
944         ./micro-suite.
946 2006-11-08  Paul Eggert  <eggert@cs.ucla.edu>
948         * lib/autoconf/types.m4 (AC_TYPE_LONG_LONG_INT): Set
949         ac_cv_type_long_long_int to 'yes' instead of 'cross-compiling'.
950         Imported from a similar patch to gnulib by Bruno Haible.
952 2006-11-08  Paul Eggert  <eggert@cs.ucla.edu>
954         * NEWS: New macros AC_C_FLEXIBLE_ARRAY_MEMBER, AC_C_VARARRAYS.
955         * doc/autoconf.texi (C Compiler): Document them.
956         * lib/autoconf/c.m4 (AC_C_FLEXIBLE_ARRAY_MEMBER, AC_C_VARARRAYS):
957         New macros, taken from gnulib.
959 2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
961         * lib/autoconf/types.m4 (AC_TYPE_LONG_LONG_INT): Detect bug in
962         Tandem NonStop Kernel (OSS) cc -O circa 2004, reported by
963         Matthew Woehlke.
965 2006-10-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
967         * tests/torture.at (Configuring subdirectories): Do not skip
968         Automake 1.10 nor future Automake 11.1 (sic).
970 2006-10-26  Joel E. Denny  <jdenny@ces.clemson.edu>
971         and Stepan Kasal  <kasal@ucw.cz>
973         Handle special characters in test case titles correctly.
974         * lib/autotest/general.m4 (AT_INIT): M4-quote and AS_ESCAPE AT_help_all
975         properly.
976         (AT_SETUP): M4-quote and AS_ESCAPE the title properly everywhere.
977         * tests/autotest.at (AT_CHECK_AT_TITLE): Add EXPANDED-TITLE-TO-TEST
978         argument.  Extend to check titles printed by ./micro-suite and
979         ./micro-suite -l and the title in micro-suite.log.
980         (Backquote in a test title,
981         Single-quote in a test title,
982         Double-quote in a test title): Don't expect failure anymore.
983         (Backslash in a test title): Put a non-whitespace character after the
984         backslash so that Bourne shells might actually see it as an escape
985         sequence.
986         (Brackets in a test title,
987         Pound in a test title,
988         Comma in a test title,
989         Quoted Macro in a test title,
990         Macro in a test title,
991         Macro with single-quote in a test title): New tests.
992         (Macro with backquote in a test title,
993         Macro with double-quote in a test title,
994         Macro with backslash in a test title): New tests expected to fail.
995         * tests/torture.at (#define header templates): M4-quote this title in
996         AT_SETUP call so that no M4 code is commented inadvertently somewhere.
997         The visible effect was a stray [] in the testsuite output.
999 2006-10-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1001         * doc/autoconf.texi (Limitations of Builtins): Do not invoke
1002         `trap ... 0' inside a function, for AIX sh.
1004 2006-10-26  Paul Eggert  <eggert@cs.ucla.edu>
1006         * tests/base.at (AC_COMPUTE_INT): Test **0** rather than 1 / 0,
1007         since powerpc-apple-darwin8-gcc-4.0.1 (Apple Computer, Inc. build
1008         5363) simply issues a warning when dividing by zero at compile
1009         time.  Problem reported by Elias Pipping.
1011 2006-10-26  Eric Blake  <ebb9@byu.net>
1013         * THANKS: Update.
1014         * doc/autoconf.texi (Evaluation Macros): Improve the example to
1015         show effect on macros that expand with commas.
1016         Reported by Joel E. Denny.
1018         * tests/m4sugar.at (m4_warn, m4_require: circular dependencies):
1019         Also work with M4 1.4.8.
1021 2006-10-25  Paul Eggert  <eggert@cs.ucla.edu>
1023         * doc/autoconf.texi (Slashes): Document Tru64 4.0 bug reported by
1024         Jim Meyering.
1026 2006-10-25  Stepan Kasal  <kasal@ucw.cz>
1028         * tests/tools.at (autom4te --force): New test, verifies that
1029         `--force' always rewrites the output file.
1031 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
1033         * doc/autoconf.texi (Limitations of Usual Tools): Document that rm
1034         needs operands on NetBSD 2.0.2.  Problem reported by Bruno Haible.
1036 2006-10-24  Stepan Kasal  <kasal@ucw.cz>
1038         * tools/trace.at (autoconf --trace: user macros): Test `$%'.
1040 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
1042         * lib/autoconf/specific.m4 (_AC_SYS_LARGEFILE_MACRO_VALUE):
1043         If FUNCTION-BODY is nonempty, use AC_LINK_IFELSE rather than
1044         AC_COMPILE_IFELSE, to work around problem with OSF/1 4.0F fseeko
1045         reported by Nelson H. F. Beebe for Coreutils 6.4.
1047         * tests/tools.at (autoconf --trace: user macros): Remove test
1048         for tracing multiline macros, since m4 1.4.7a uses a different
1049         way to number lines.  Problem reported by Ralf Wildenhues.
1051 2006-10-24  Stepan Kasal  <kasal@ucw.cz>
1053         * bin/autom4te.in (handle_m4): Do not redirect stdin to
1054         /dev/null since the heuristics for interactive behaviour was
1055         fixed in CVS m4.
1057         * bin/autom4te.in: With --force, always refresh the output
1058         file.  Problem reported by Greg Schafer <gschafer@zip.com.au>.
1060         * bin/autoconf.as: Fix the verbose message at the end.
1062 2006-10-23  Paul Eggert  <eggert@cs.ucla.edu>
1064         * configure.ac (AC_INIT): Bump to 2.60c.
1065         * NEWS: Likewise.
1067 2006-10-22  Paul Eggert  <eggert@cs.ucla.edu>
1069         * NEWS: Version 2.60b.
1071         Import this change from Texinfo:
1072         2006-10-15  Karl Berry  <karl@gnu.org>
1073         * build-aux/texinfo.tex: automake 1.10
1075         * NEWS: Remove AC_CACHE_CHECK_INT.
1076         * doc/autoconf.texi (Caching Results): Likewise.
1077         * lib/autoconf/general.m4 (_AC_CACHE_CHECK_INT): Renamed from
1078         AC_CACHE_CHECK_INT, since it's no longer public.
1079         * lib/autoconf/types.m4: All uses of AC_CACHE_CHECK_INT changed.
1080         * tests/base.at (AC_COMPUTE_INT): Test this, not AC_CACHE_CHECK_INT.
1082 2006-10-20  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1084         * doc/autoconf.texi (Limitations of Usual Tools): Fix two typos.
1086 2006-10-19  Eric Blake  <ebb9@byu.net>
1088         * lib/m4sugar/m4sugar.m4 (m4_mkstemp): New macro.
1089         (m4_maketemp): Avoid warnings with M4 1.9a.
1090         * lib/emacs/autoconf-mode.el (autoconf-font-lock-keywords): Color
1091         m4_mkstemp.
1092         * doc/autoconf.texi (Redefined M4 Macros): Document m4_mkstemp.
1093         * NEWS: Likewise.
1095 2006-10-16  Eric Blake  <ebb9@byu.net>
1097         * doc/autoconf.texi (Setting Output Variables): Fix typo.
1099         * bin/autoconf.as (version): Reword to match GNU Coding
1100         Standards.
1101         * bin/autoheader.in (version): Likewise.
1102         * bin/autom4te.in (version): Likewise.
1103         * bin/autoreconf.in (version): Likewise.
1104         * bin/autoscan.in (version): Likewise.
1105         * bin/autoupdate.in (version): Likewise.
1106         * bin/ifnames.in (version): Likewise.
1108 2006-10-14  Stepan Kasal  <kasal@ucw.cz>
1110         * lib/m4sugar/m4sh.m4 (AS_LITERAL_IF): Expand $1 before
1111         looking for special shell characters.
1112         * lib/autoconf/functions.m4 (AC_CHECK_FUNC): Do not expand the
1113         macro defined by AS_VAR_PUSHDEF before passing it as a
1114         parameter.
1115         * lib/autoconf/general.m4 (AC_CHECK_FILE, AC_CHECK_DECL):
1116         * lib/autoconf/libs.m4 (AC_SEARCH_LIBS, AC_CHECK_LIB):
1117         * lib/autoconf/types.m4 (_AC_CHECK_TYPE_NEW, AC_CHECK_MEMBER):
1118         * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_MONGREL):
1119         (_AC_CHECK_HEADER_NEW, _AC_CHECK_HEADER_OLD, _AC_CHECK_HEADER_DIRENT):
1120         Likewise.
1121         * lib/autotest/general.m4 (AT_INIT): Quote parameters of
1122         AS_VAR_* properly.
1123         * tests/m4sh.at (AS_LITERAL_IF): New test.
1125 2006-10-14  Paul Eggert  <eggert@cs.ucla.edu>
1127         (Imported from Automake.)
1128         * build-aux/install-sh (posix_mkdir): Reject FreeBSD 6.1 mkdir -p -m,
1129         which incorrectly sets the mode of an existing destination
1130         directory.  In some cases the unpatched install-sh could do the
1131         equivalent of "chmod 777 /" or "chmod 0 /" on a buggy FreeBSD
1132         system.  We hope this is rare in practice, but it's clearly worth
1133         fixing.  Problem reported by Alex Unleashed in
1134         <http://lists.gnu.org/archive/html/bug-autoconf/2006-10/msg00012.html>.
1135         Also, don't bother to check for -m bugs unless we're using -m;
1136         suggested by Stepan Kasal.
1138 2006-10-14  Paul Eggert  <eggert@cs.ucla.edu>
1140         Import this change from Automake:
1142         2006-08-23  Alexandre Duret-Lutz  <adl@gnu.org>
1143         * lib/Autom4te/ChannelDefs.pm (usage): Mention that -Wportability
1144         is enabled by default with gnu and gnits strictness.
1145         Report from Bruno Haible.
1147         2006-03-10  Alexandre Duret-Lutz  <adl@gnu.org>
1148         * lib/Autom4te/ChannelDefs.pm: Make -Wportability the default in
1149         gnu and gnits modes.
1151         Import this change from Config:
1153         2006-09-20  Ben Elliston  <bje@gnu.org>
1154         * build-aux/config.sub (score, score-*): New.
1156         Import this change from Gnulib:
1158         2006-09-16  Karl Berry  <karl@gnu.org>
1159         * doc/fdl.texi (ADDENDUM): switch to @heading from @appendixsubsec,
1160         to avoid sectioning errors.
1162         Import these changes from Texinfo:
1164         2006-10-04  Karl Berry  <karl@gnu.org>
1165         * build-aux/texinfo.tex (\singlequotechar): rename to \codequoteright.
1166         (\quoteexpand): rename to \rquoteexpand.
1167         (\codequoteleft): new def, to look for @set codequotebacktick.
1168         (\lquoteexpand, \quoteexpand): new defs.
1169         (\lquoteChar, \rquoteChar, \dashChar, \underChar: new \chardef's.
1170         (\code): must use new \...Char values, since now ` is active.
1172         2006-08-26  Karl Berry  <karl@gnu.org>
1173         * build-aux/texinfo.tex (\textdegree): New command.
1175         2006-08-12  Karl Berry  <karl@gnu.org>
1176         * build-aux/texinfo.tex (error \box0): smaller font.
1178 2006-10-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1180         * doc/autoconf.texi (Autoheader Macros): Fix syntax error.
1182 2006-10-13  Stepan Kasal  <kasal@ucw.cz>
1184         * doc/autoconf.texi (Autoheader Macros): Warn that the text
1185         added to the template can get mangled.
1187 2006-10-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1189         * lib/autoconf/functions.m4 (AC_FUNC_OBSTACK): In the test,
1190         include the default headers, and redefine obstack_chunk_alloc
1191         and obstack_chunk_free.  Fixes false failure with glibc.
1193 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
1195         * lib/m4sugar/m4sh.m4 (_AS_TEST_PREPARE): Set as_executable_p,
1196         for backward compatibility with Libtool 1.5.22.  Problem reported
1197         by Ralf Wildenhues.
1199 2006-10-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1201         * lib/autoconf/c.m4 (AC_PROG_GCC_TRADITIONAL): Require
1202         AC_PROG_CC.
1203         Report by IOhannes m zmoelnig <zmoelnig@iem.at>.
1205 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
1207         * NEWS: AC_USE_SYSTEM_EXTENSIONS now defines _TANDEM_SOURCE for
1208         the NonStop platform.
1209         * doc/autoconf.texi (Posix Variants): Likewise.
1210         * lib/autoconf/specific.m4 (AC_USE_SYSTEM_EXTENSIONS): Likewise.
1212         * lib/m4sugar/m4sh.m4 (AS_TEST_X): New macro.
1213         (AS_EXECUTABLE_P): Use as_test_x rather than as_executable_p.
1214         (_AS_TEST_PREPARE): Set as_test_x rather than as_executable_p.
1215         Use a better substitute, by inspecting the output of "ls"
1216         rather than just using ":".
1217         * lib/autoconf/general.m4 (_AC_LINK_IFELSE): Use AS_TEST_X
1218         rather than AS_EXECUTABLE_P, since we needn't worry about
1219         non-regular files here.
1221         * NEWS: Autoconf-generated shell scripts no longer export BIN_SH,
1222         due to configuration hassles with this.  See Tonya Underwood's report
1223         <http://lists.gnu.org/archive/html/bug-autoconf/2006-10/msg00003.html>.
1224         * doc/autoconf.texi (Special Shell Variables): Likewise.
1226 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
1227             Stepan Kasal  <kasal@ucw.cz>
1229         * lib/m4sugar/m4sh.m4 (AS_BOURNE_COMPATIBLE): Don't set BIN_SH.
1230         (_AS_DETECT_BETTER_SHELL): Don't look in /usr/bin/posix.
1232 2006-10-11  Stepan Kasal  <kasal@ucw.cz>
1234         * lib/m4sugar/m4sh.m4 (AS_BOURNE_COMPATIBLE): Move the
1235           initialization which is not inherited through the environment
1236         (_AS_BOURNE_COMPATIBLE): ... to this new macro.
1237         (_AS_RUN): Call _AS_BOURNE_COMPATIBLE, not AS_BOURNE_COMPATIBLE.
1239 2006-10-09  Paul Eggert  <eggert@cs.ucla.edu>
1241         * doc/autoconf.texi (Limitations of Usual Tools): Describe
1242         problems with mkdir -p -m.
1244 2006-10-06  Paul Eggert  <eggert@cs.ucla.edu>
1246         * lib/autoconf/c.m4 (_AC_PROG_PREPROC_WORKS_IFELSE): Remove
1247         comment about ac_cpp_err; it was incorrect, and anyway
1248         ac_cpp_err is being removed below.
1249         * lib/autoconf/general.m4 (_AC_PREPROC_IFELSE): Don't
1250         set ac_cpp_err to 'yesyes' if preproc_warn_flag and werror_flag
1251         are both 'yes'.  In fact, don't bother setting ac_cpp_err at all;
1252         nobody uses it.
1253         (_AC_COMPILE_IFELSE, _AC_LINK_IFELSE): Don't log our funky tests
1254         with werror_flag and conftest.err and so forth.  This is more
1255         compatible with how _AC_PROG_PREPROC_WORKS_IFELSE behaves,
1256         and anyway the user shouldn't normally want to see this gorp logged.
1257         Problem reported by Ralf Wildenhues.
1258         * lib/autoconf/lang.m4 (AC_LANG_WERROR): werror_flag's default is
1259         empty, not 'no', since the rest of the code uses 'test -z'.
1261 2006-10-04  Paul Eggert  <eggert@cs.ucla.edu>
1263         * lib/autoconf/general.m4 (_AC_COMPILE_IFELSE, _AC_LINK_IFELSE):
1264         Use a single call to AC_DO_TOKENS rather than multiple, for
1265         efficiency.
1266         (_AC_LINK_IFELSE): Test that resulting file is executable.
1267         Problem reported by mwoehlke in
1268         <http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00048.html>.
1270         * lib/m4sugar/m4sh.m4 (_AS_TEST_PREPARE): Use "test -x /" rather
1271         than creating a file to use with test -x; this is much faster.
1273 2006-10-02  Bruno Haible  <bruno@clisp.org>
1275         * lib/autom4te.in (Automake-preselections): Add
1276         AM_GNU_GETTEXT_INTL_SUBDIR, for automake 1.10.
1278 2006-09-27  Stepan Kasal  <kasal@ucw.cz>
1280         * doc/autoconf.texi (Writing testsuite.at): Fix a typo: for
1281         standard error, `experr' should be used, not `expout'.
1283 2006-09-26  Paul Eggert  <eggert@cs.ucla.edu>
1285         * lib/autoconf/functions.m4 (AC_FUNC_FSEEKO): Don't compile the
1286         fseeko testing program twice; just use the earlier result.
1287         * lib/autoconf/specific.m4 (_AC_SYS_LARGEFILE_MACRO_VALUE):
1288         Set cache var to 'unknown' (not 'no') if leaving the macro unset
1289         still doesn't let the program compile.
1290         (AC_SYS_LARGEFILE): Test for _LARGE_FILES only if earlier tests
1291         failed.
1293         * lib/autoconf/functions.m4: Fix problems reported by Ralf Wildenhues.
1294         (AC_FUNC_ERROR_AT_LINE): Don't bother to check for error.h.  Just
1295         include it, without including anything else.
1296         (AC_FUNC_FSEEKO): Avoid gcc -Wall warnings about constant
1297         expressions.
1298         (AC_FUNC_STRNLEN): Require AC_USE_SYSTEM_EXTENSIONS.
1300 2006-09-26  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1302         * lib/autoconf/functions.m4 (AC_FUNC_ERROR_AT_LINE): Check for
1303         `error.h', and include it, for a `error_at_line' prototype.
1304         Use a nonempty format string in the link test.
1305         * lib/autoconf/functions.m4 (AC_FUNC_WAIT3): Include <sys/wait.h>,
1306         for a declaration of wait3.
1308 2006-09-26  Paul Eggert  <eggert@cs.ucla.edu>
1310         * NEWS: AC_CHECK_DECL now also works with aggregate objects.
1311         * doc/autoconf.texi (Generic Declarations): Clarify that AC_CHECK_DECL
1312         can apply to constants too, and that it checks for macro defns.
1313         * lib/autoconf/general.m4 (AC_CHECK_DECL): Assume C89 or better,
1314         and simply cast the identifier to void.  This handles structure
1315         values.  Problem reported by Ralf Wildenhues.
1316         * tests/semantics.at (AC_CHECK_DECLS): Also check enums.
1318 2006-09-26  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1320         * tests/semantics.at (AC_CHECK_DECLS): Also check macros,
1321         structure, and function symbols.
1323 2006-09-26  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1325         * tests/semantics.at (AC_CHECK_MEMBERS): Also test with a struct
1326         member.
1328 2006-09-25  Paul Eggert  <eggert@cs.ucla.edu>
1330         * NEWS: Recommend M4 1.4.7 instead of 1.4.6.
1331         * README: Likewise.
1332         * doc/autoconf.texi (Introduction, Why GNU M4): Likewise.
1334 2006-09-25  Paul Eggert  <eggert@cs.ucla.edu>
1335         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1337         * lib/autoconf/functions.m4 (AC_FUNC_OBSTACK): Avoid `gcc -Wall'
1338         warnings (uninitialized value).
1339         (AC_FUNC_UTIME_NULL): Likewise, test for and include <utime.h> if
1340         present.
1341         * lib/autoconf/types.m4 (AC_TYPE_LONG_LONG_INT): Likewise, add
1342         parentheses.
1343         (AC_STRUCT_TM): Likewise, avoid unused variables.
1345 2006-09-20  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1347         * lib/autoconf/c.m4 (_AC_ARG_VAR_LDFLAGS): Update comment.
1348         (_AC_ARG_VAR_LIBS): New macro: let LIBS be precious.
1349         (AC_PROG_CC, AC_PROG_CXX, AC_PROG_OBJC): Call _AC_ARG_VAR_LIBS.
1350         * lib/autoconf/fortran.m4 (AC_PROG_F77, AC_PROG_FC): Likewise.
1351         Report by Olly Betts.
1353 2006-09-19  Eric Blake  <ebb9@byu.net>
1355         * m4/m4.m4: Change copyright.
1356         * configure: Regenerate.
1357         * Makefile.in: Likewise.
1358         * bin/Makefile.in: Likewise.
1359         * doc/Makefile.in: Likewise.
1360         * lib/Makefile.in: Likewise.
1361         * lib/Autom4te/Makefile.in: Likewise.
1362         * lib/autoconf/Makefile.in: Likewise.
1363         * lib/autoscan/Makefile.in: Likewise.
1364         * lib/autotest/Makefile.in: Likewise.
1365         * lib/emacs/Makefile.in: Likewise.
1366         * lib/m4sugar/Makefile.in: Likewise.
1367         * man/Makefile.in: Likewise.
1368         * tests/Makefile.in: Likewise.
1370         * m4/m4.m4 (AC_PROG_GNU_M4): Check for m4 --debugfile support.
1371         * bin/Makefile.am (edit): Substitute M4_DEBUGFILE.
1372         * bin/autom4te.in (handle_m4): Favor --debugfile over misnamed
1373         --error-output, to avoid warnings with M4 2.0.
1375 2006-09-19  Stepan Kasal  <kasal@ucw.cz>
1377         * lib/autoconf/libs.m4 (AH_CHECK_LIB): Fix quoting, to be
1378           consistent with _AH_CHECK_FUNCS and _AH_CHECK_HEADERS.
1379         * lib/autoconf/headers.m4 (AH_CHECK_HEADERS_DIRENT): Likewise.
1381 2006-09-15  Stepan Kasal  <kasal@ucw.cz>
1383         * lib/autoconf/functions.m4 (AC_FUNC_GETMNTENT): Eliminate the
1384         expansion of AC_CHECK_FUNCS.
1386 2006-09-14  Stepan Kasal  <kasal@ucw.cz>
1388         * lib/autoconf/general.m4 (AC_CONFIG_MACRO_DIR): Remove a
1389         mistaken comment: the path has to be relative; do not use
1390         the path at runtime.
1392 2006-09-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1394         * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): Quote the
1395         argument to `--prefix' for sub-configure scripts.
1396         Pass `--silent' to sub-configure scripts.
1397         * tests/torture.at (Configuring subdirectories): Add tests
1398         for both changes.
1399         * doc/autoconf.texi (Setting Output Variables): Fix example to
1400         not show `--silent' being passed to a `configure' re-run.
1402 2006-09-12  Paul Eggert  <eggert@cs.ucla.edu>
1404         * doc/autoconf.texi (Input): Clarify role of AC_CONFIG_MACRO_DIR.
1405         * lib/autoconf/general.m4 (AC_CONFIG_MACRO_DIR): Do not check
1406         for the existence of the directory at configure-time.  That's
1407         too late, anyway.  Problem reported by Stefan Seefeld.
1409         * lib/m4sugar/m4sh.m4 (_AS_TEST_PREPARE): Avoid bug in UnixWare
1410         7.1.4 /usr/bin/posix/sh described by Tim Rice in
1411         <http://lists.gnu.org/archive/html/bug-autoconf/2006-09/msg00017.html>.
1413 2006-09-11  Stepan Kasal  <kasal@ucw.cz>
1415         * tests/local.at (AT_CHECK_M4): Fix this so that the testsuite
1416         works with GNU M4 1.4.3 again; make the normalized form
1417         match the current m4 message; fix the description.
1418         * test/tools.at (autom4te cache): Adapt to the change.
1420 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
1422         * lib/autoconf/functions.m4 (AC_FUNC_MKTIME):  Add year_2050_test
1423         to catch glibc bug 2821
1424         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
1426         Merge from gnulib as follows: Use AC_CHECK_HEADERS_ONCE instead of
1427         AC_CHECK_HEADERS, and likewise for AC_CHECK_FUNCS_ONCE and
1428         AC_CHECK_FUNCS.  Don't check for stdlib.h, since we now
1429         assume C89.
1431 2006-09-08  Stepan Kasal  <kasal@ucw.cz>
1433         * lib/autom4te.in (Autoconf-without-aclocal-m4): Move the
1434         preselections ...
1435         (Autoconf): ... here.
1436         (Autoscan-preselections): Delete.
1438 2006-09-07  Stepan Kasal  <kasal@ucw.cz>
1440         * lib/autom4te.in (Automake-preselections): Preselect
1441         AM_ENABLE_MULTILIB.
1443 2006-09-05  Paul Eggert  <eggert@cs.ucla.edu>
1445         * doc/autoconf.texi (Preset Output Variables): srcdir and
1446         top_srcdir are not necessarily relative.  Problem reported
1447         by Dries Kimpe.
1449 2006-09-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1451         * lib/autoconf/fortran.m4 (_AC_PROG_FC): Prefer xlf90/xlf95 over
1452         f90/f95 because the latter drivers of AIX Fortran 9.1 do not
1453         accept files with extension `.f'.  For consistency, also prefer
1454         xlf over f77.
1455         * doc/autoconf.texi (Fortran Compiler): Remove mention of bug
1456         from last patch.
1458 2006-09-05  Romain Lenglet  <rlenglet@users.forge.objectweb.org>
1460         * lib/autoconf/erlang.m4 (AC_ERLANG_CHECK_LIB): Added substitution
1461         of ERLANG_LIB_VER_* variables.
1462         * doc/autoconf.texi (Erlang Libraries): Document ERLANG_LIB_VER_*
1463         variables.
1465 2006-09-03  Paul Eggert  <eggert@cs.ucla.edu>
1466         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1468         * doc/autoconf.texi (Limitations of Builtins): Document 'unset'
1469         bugs of Bash 2.01 and 2.05a.
1470         (Fortran Compiler): Document that AC_PROG_CC should be called
1471         before AC_PROG_FC, due to a bug in Autoconf.
1473 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
1475         * NEWS: New macro AC_CACHE_CHECK_INT.  It replaces the
1476         old AC_COMPUTE_INT, which now behaves like _AC_COMPUTE_INT
1477         except the first two arguments are reversed.
1478         * doc/autoconf.texi (Caching Results): New macro AC_CACHE_CHECK_INT.
1479         (Generic Compiler Characteristics): AC_COMPUTE_INT no longer
1480         caches nor outputs a diagnostic.  Suggested by Bruno Haible.
1481         * lib/autoconf/general.m4 (AC_CACHE_CHECK_INT): New macro,
1482         equivalent to the old AC_COMPUTE_INT.
1483         (AC_COMPUTE_INT): No longer caches or reports.  New signature.
1484         All uses changed to AC_CACHE_CHECK_INT.
1485         * tests/base.at (AC_CACHE_CHECK_INT): New test.
1486         * tests/mktests.sh (ac_exclude_list): Add AC_CACHE_CHECK_INT.
1488 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
1490         * NEWS: AC_FUNC_FNMATCH, AC_FUNC_FNMATCH_GNU, AC_FUNC_GETLOADVG,
1491         and AC_REPLACE_FNMATCH are now obsolescent in Autoconf.  New
1492         programs should use their Gnulib counterparts.
1493         * doc/autoconf.texi (Particular Functions): Likewise.
1494         (Macro Names, testsuite Invocation): Replace uses of these
1495         obsolete macros with uses of non-obsolete macros.
1497 2006-08-29  Eric Blake  <ebb9@byu.net>
1499         * configure.ac (AC_INIT): Bump to 2.60b.
1500         * NEWS: Update.
1502 2006-08-28  Eric Blake  <ebb9@byu.net>
1504         * lib/autoconf/headers.m4 (AC_HEADER_STAT): Fix logic that was
1505         mistakenly swapped on 2006-08-15.
1507 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
1509         * NEWS: Version 2.60a.
1511 2006-08-25  Stepan Kasal  <kasal@ucw.cz>
1513         * lib/autoconf/general.m4 (_AC_LINK_IFELSE): Remove the IPA/IPO
1514         file created by the PGI compiler.
1516 2006-08-25  Noah Misch  <noah@cs.caltech.edu>
1518         * lib/Autom4te/General.pm (END): Use `File::Path::rmtree' to
1519         simplify the code.
1521 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
1523         Fix Lex library problem reported to us by Julio Garvia.
1524         * doc/autoconf.texi (Particular Programs): YYTEXT_POINTER is
1525         for the default, which the user can override.
1526         * lib/autoconf/programs.m4 (AC_PROG_LEX): Let _AC_PROG_LEX_YYTEXT_DECL
1527         deal with LEXLIB.
1528         (_AC_PROG_LEX_YYTEXT_DECL): Handle caching correctly; the old code
1529         didn't work if some values were cached but not others.  Test for
1530         broken lex libraries like native ia64-hp-hpux11.22; see
1531         <http://sources.redhat.com/ml/binutils/2003-12/msg00337.html>, and
1532         work around the problem by preferring an empty LEXLIB to -lfl or
1533         -ll.  Let the user set LEXLIB='' to indicate no library needed.
1535         * NEWS: Recommend M4 1.4.6 instead of 1.4.5.
1536         * README: Likewise.
1537         * doc/autoconf.texi (Introduction, Why GNU M4): Likewise.
1539 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
1541         Rework to use more-modern build style.
1542         Many files are renamed; all uses of their names were changed.
1543         * .x-sc_trailing_blank: Renamed from .x-sc_trailing_space.
1544         * .x-sc_useless_cpp_parens: New file.
1545         * build-aux/config.guess: Renamed from config/config.guess.  Update.
1546         * build-aux/config.sub: Renamed from config/config.sub.  Update.
1547         * build-aux/elisp-comp: Renamed from config/elisp-comp.
1548         * build-aux/install-sh: Renamed from config/install-sh.  Update.
1549         * build-aux/mdate-sh: Renamed from config/mdate-sh.
1550         * build-aux/missing: Renamed from config/missing.
1551         * build-aux/texinfo.tex: Renamed from config/texinfo.tex.  Update.
1552         * build-aux/vc-list-files: Renamed from config/vc-list-files.
1553         * config/Makefile.am: Removed.
1554         * config/mkinstalldirs: Removed.
1555         * config/move-if-change: Removed.
1556         * m4/m4.m4: Renamed from config/m4.m4.  Add (C) to copyright notice.
1557         * Makefile.am (SUBDIRS): Remove config.
1558         (ACLOCAL_AMFLAGS): Include from m4, not config.
1559         (EXTRA_DIST): Add config/announce-gen, config/prev-version.txt.
1560         (WGET, WGETFLAGS): New macros, since Makefile.maint no longer does this.
1561         (autom4te-update): Rewrite with a loop.  Get from gnulib, not automake.
1562         Fail if there's an error.
1563         * Makefile.cfg (move_if_change): Remove.
1564         (wget_files): Remove.
1565         (cvs_executable_files): New macro.
1566         (cvs_files): Use it.  Remove mkinstalldirs.  Add fdl.texi.
1567         (executable-update): Use $(cvs_executable_files).
1568         (local-checks-to-skip): Remove.
1569         * Makefile.maint: Merge from coreutils, plus add our own changes
1570         (gzip_rsyncable): New macro.
1571         (GZIP_ENV): Use it.
1572         (CVS_LIST): Use build-aux/vc-list-files.
1573         (VERSION_REGEXP): New macro.
1574         (local-checks-available): Add patch-check, $(syntax-check-rules),
1575         check-AUTHORS.
1576         (syntax-check-rules): Compute dynamically.
1577         (sc_cast_of_x_alloc_return_value): Work even if no source files.
1578         (sc_cast_of_alloca_return_value): Likewise.
1579         (sc_prohibit_atoi_atof): Simplify regexp.
1580         (sc_no_if_have_config_h, sc_require_config_h):
1581         (sc_prohibit_assert_without_use,
1582         (sc_obsolete_symbols): Check for O_NDELAY.
1583         (sc_texi_notab): Remove.
1584         (sc-changelog): Don't make an exception for '----' lines.
1585         (.re-list): Remove, so we don't have a junk file behind.
1586         (sc_system_h_headers): Remove the need for .re-list.
1587         (sc_the_the):  New rule.
1588         (sc_tight_scope): Simplify.
1589         (sc_trailing_blank): Renamed from sc_trailing_space.
1590         (longopt_re): New macro.
1591         (sc_two_space_separator_in_usage): New rule.
1592         (sc_unmarked_diagnostics): Look at all files under CVS.
1593         (sc_useless_cpp_parens, patch-check, check-AUTHORS): New rules.
1594         (news-date-check, changelog-check): Version is OK.
1595         (po-check): Look for lib files even if not in CVS.
1596         (copyright-check): Use $() not ``.
1597         (maintainer-distcheck): Do not depend on changelog-check.
1598         (my-distcheck): Depend on $(release_archive_dir)/$(prev-tgz).
1599         Also check for -Wpointer-arith.
1600         (WGET, WGETFLAGS, tgz-md5, tgz-sha1, bz2-md5, bz2-sha1):
1601         (xdelta-md5, xdelta-sha1, tgz-size, bz2-size, xd-size, rel-check):
1602         Remove.
1603         (announcement): Add --gpg-key-id arg.
1604         (cvs-sv): Remove.
1605         (move_if_change): Just use mv.
1606         (local_updates: Remove wget-update, po-update.
1607         (po_repo, do-po-update, po-update, wget_files, get-targets): Remove.
1608         (config.guess-url_prefix, config.sub-url_prefix): Remove.
1609         (ansi2knr.c-url_prefix, texinfo.tex-url_prefix):
1610         (standards.texi-url_prefix, make-stds.texi-url_prefix, target, url):
1611         ($(get-targets)): Remove.
1612         (cvs_files): Remove missing, mkinstalldirs, ansi2knr.c.
1613         (gnulib_repo): Renamed from automake_repo.  Get from gnulib now.
1614         (cvs-update): Get from gnulib.
1615         (emut_upload_commands): gnupload is in build-aux now.
1616         (alpha beta major): Add changelog-check.  Check version.
1617         * configure.ac (AC_CONFIG_AUX_DIR): Renamed from config to build-aux.
1618         (AC_CONFIG_FILES): Remove.
1619         * bin/autoconf.as: Add spaces to avoid distcheck warning.
1620         * config/announce-gen: Sync from coreutils.
1621         * doc/make-stds.texi: Sync from gnulib.
1622         * doc/standards.texi: Likewise.
1623         * man/Makefile.am: Adjust for config -> build-aux renaming.
1624         * tests/Makefile.am: Prefer $(FOO) to @FOO@.
1625         * tests/local.at: Adjust from config -> build-aux renaming.
1626         * tests/tools.at: Likewise.
1627         * tests/torture.at: Likewise.
1629         * NEWS: The C99 check now tests for vararg macros and 64-bit
1630         preprocessor ints.
1631         * doc/autoconf.texi (C Compiler): Document // comments, va_copy.
1632         * lib/autoconf/c.m4 (_AC_PROG_CC_C99): Test varargs macros and
1633         64-bit preprocessor ints.  Check for static initialization of
1634         long long.  Remove unnecessary casts.
1636 2006-08-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1638         * doc/autoconf.texi (Particular Programs): Mention that
1639         @INSTALL@ and @MKDIR_P@ may vary for different output files.
1640         Reported by Alexandre Duret-Lutz.
1642 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
1644         * lib/autoconf/fortran.m4 (_AC_FC_LIBRARY_LDFLAGS): Also ignore
1645         -lgcc?* and -lSystem, for Darwin/MacOS X.  Problem reported by
1646         Bill Northcott in
1647         <http://lists.gnu.org/archive/html/autoconf/2006-08/msg00083.html>.
1649 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
1651         * lib/autoconf/c.m4 (AC_C_CONST): Don't used shadowed vars, to
1652         pacify insanely picky compilers.  Problem reported by Eric Blake.
1654         * doc/autoconf.texi (Posix Variants): INTERACTIVE Unix is no
1655         longer supported by Sun.
1657 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
1659         * NEWS: Autoconf now uses constructs like "#ifdef HAVE_STDLIB_H"
1660         rather than "#if HAVE_STDLIB_H", so that it now works with "gcc
1661         -Wundef -Werror".  Problem reported by David Fang in
1662         <http://lists.gnu.org/archive/html/autoconf/2006-08/msg00045.html>.
1663         * doc/autoconf.texi (Header Templates, Default Includes):
1664         (Particular Functions, Generic Functions, Header Portability):
1665         (Particular Headers, Generic Headers, Generic Declarations, Guidelines):
1666         (Obsolete Macros, AC_FOO_IFELSE vs AC_TRY_FOO):
1667         (Present But Cannot Be Compiled, Preprocessor Symbol Index):
1668         Prefer #ifdef to #if.
1669         * lib/autoconf/c.m4 (AC_C_BIGENDIAN): Prefer #ifdef to #if.
1670         * lib/autoconf/functions.m4 (AC_FUNC_ALLOCA, _AC_FUNC_MALLOC_IF):
1671         (AC_FUNC_MKTIME, AC_FUNC_MMAP, _AC_FUNC_REALLOC_IF):
1672         (AC_FUNC_SELECT_ARGTYPES, AC_FUNC_SETVBUF_REVERSED, _AC_FUNC_VFORK):
1673         Likewise.
1674         * lib/autoconf/headers.m4 (_AC_INCLUDES_DEFAULT_REQUIREMENTS):
1675         (AC_HEADER_RESOLV, AC_HEADER_STAT): Likewise.
1676         * lib/autoconf/specific.m4 (AC_DECL_SYS_SYGLIST):
1677         (AC_SYS_RESTARTABLE_SYSCALLS): Likewise.
1678         * lib/autoconf/headers.m4 (AC_HEADER_STAT): Don't assume that
1679         S_ISDIR etc. are valid for use in #if; POSIX doesn't guarantee
1680         this.
1682 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
1684         * doc/autoconf.texi (Limitations of Usual Tools): Document sed
1685         problems with arg script text that doesn't end in newline, and
1686         with '-e a...'.  Problems reported by Ralf Wildenhues.
1688 2006-08-12  Alexandre Julliard  <julliard@winehq.org>  (tiny change)
1690         * lib/autoconf/libs.m4 (AC_PATH_X_DIRECT): Replace another
1691         check for libXt by a check for libX11.
1693 2006-08-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1695         * doc/autoconf.texi (config.status Invocation): Adjust according
1696         to last change.
1698 2006-08-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1700         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): `config.status
1701         --help' should mention that `--version' outputs configuration
1702         settings.  Report by Bruno Haible.
1704 2006-08-06  Paul Eggert  <eggert@cs.ucla.edu>
1706         Fix test suite failures reported by Pierre in
1707         <http://lists.gnu.org/archive/html/bug-autoconf/2006-08/msg00005.html>.
1708         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Don't claim
1709         the compiler created a file "b.out" when it didn't create anything
1710         at all.
1711         * lib/autoconf/specific.m4 (AC_SYS_INTERPRETER):
1712         Discard stderr too, when invoking the test script.
1714 2006-08-05  Alexandre Julliard  <julliard@winehq.org>  (tiny change)
1716         * lib/autoconf/libs.m4 (AC_PATH_XTRA): Fixed a typo
1717         in the restoring of the werror flag.
1719 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
1721         * doc/autoconf.texi (Volatile Objects): Be even a little
1722         less skeptical about "volatile", after discussion with
1723         Bruno Haible on bug-gnulib.
1724         (Limitations of Usual Tools): Warn about sed stripping
1725         leading white space from text.  From Bruno Haible.
1727 2006-07-20  Paul Eggert  <eggert@cs.ucla.edu>
1729         * lib/autoconf/libs.m4 (AC_PATH_XTRA): Don't use -R if the
1730         compiler complains about it, even if things works after the
1731         complaint.  Problem reported by Peter O'Gorman.
1733         * doc/autoconf.texi (Preset Output Variables): Document CFLAGS,
1734         CPPFLAGS, and LDFLAGS better.  Problem reported by Bruno Haible.
1735         Similarly for CXXFLAGS, OBJCFLAGS, ERLCFLAGS.
1737 2006-07-17  Paul Eggert  <eggert@cs.ucla.edu>
1739         * lib/autoconf/libs.m4 (AC_PATH_XTRA): Do the check for space
1740         after -R regardless of host.  Patrick Welche reports that this
1741         fixes things on NetBSD 3.99.
1743         * NEWS: Recommend M4 1.4.5.
1744         * README: Likewise.
1745         * doc/autoconf.texi (Introduction, Why GNU M4): Likewise.
1746         * tests/tools.at (autom4te cache): Update wording of diagnostic
1747         to match M4 1.4.5.
1749 2006-07-07  Paul Eggert  <eggert@cs.ucla.edu>
1751         * doc/autoconf.texi (C Compiler): Add a ref to Volatile Objects
1752         under AC_C_VOLATILE.
1753         (Volatile Objects): Be a little less skeptical about what
1754         "volatile" means.  Derived from thoughts by Ben Pfaff in
1755         <http://lists.gnu.org/archive/html/bug-gnulib/2006-07/msg00092.html>.
1757 2006-07-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1759         * doc/autoconf.texi: Fix some typos.
1761 2006-07-07  Paul Eggert  <eggert@cs.ucla.edu>
1763         * tests/torture.at (Configuring subdirectories): Set CONFIG_SITE
1764         more globally, since the 2006-06-30 patch didn't suffice.  Problem
1765         reported by Keith Marshall.  Also, don't bother with builddir2,
1766         since it shouldn't be needed any more.
1768 2006-07-07  Paolo Bonzini  <bonzini@gnu.org>
1770         * doc/autoconf.texi (Generic compiler characteristics):
1771         Document AC_COMPUTE_INT.  Fix wrong statements on Default
1772         Includes for AC_CHECK_SIZEOF and AC_CHECK_ALIGNOF.
1774         * lib/autoconf/general.m4 (AC_COMPUTE_INT): New.
1775         (_AC_COMPUTE_INT): Add obsoletion warnings.
1776         * lib/autoconf/types.m4 (AC_CHECK_SIZEOF, AC_CHECK_ALIGNOF): Use
1777         AC_COMPUTE_INT.
1779         * NEWS: Document change.
1781 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
1783         * doc/autoconf.texi (Volatile Objects): New section.
1785         * NEWS: Document previous change.
1787 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
1789         * lib/autoconf/types.m4 (AC_TYPE_LONG_LONG_INT):
1790         Require that long long int be at least 64 bits wide.  C99 requires
1791         this and enough programs depend on it so we should check for it.
1792         Bruno Haible reports in
1793         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00286.html>
1794         that long long int is 32 bits wide with some nonstandard compilers.
1795         (AC_TYPE_UNSIGNED_LONG_LONG_INT): Likewise.
1797 2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
1799         * tests/torture.at (Configuring subdirectories): Set CONFIG_SITE
1800         to a nonexistent file, so that we don't have to worry about
1801         a local site configuration that doesn't use /usr/local.
1802         Problem reported by Keith Marshall in
1803         <http://lists.gnu.org/archive/html/bug-autoconf/2006-06/msg00133.html>.
1805 2006-06-28  Paul Eggert  <eggert@cs.ucla.edu>
1807         * doc/autoconf.texi: Be more consistent about using @acronym with
1808         "HP" and "HP-UX".  Remove mention of OSF; the old version wasn't
1809         quite right (it talked about "OSF/Tru64", even though the
1810         operating systems were called OSF/1, Digital UNIX, and Tru64 UNIX,
1811         and it even mentioned "OSF 4"!) and at this point there's little
1812         reason to talk about OSF any more, since it died in 1994.
1813         (Specific Compiler Characteristics): Simplify example of
1814         negative-size array.
1815         (File Descriptors): Reorder to make the text flow better.
1816         Remove joke about "appreciate the various levels"; I didn't get it.
1817         Add remark about HP-UX sh -x bug with stderr noted by Bob Proulx in
1818         <http://lists.gnu.org/archive/html/bug-coreutils/2006-06/msg00225.html>.
1819         (File Descriptors, Limitations of Usual Tools):
1820         Tone down the advice against renaming or removing open files.
1821         (Limitations of Usual Tools): Add a new section, on 'rm'.
1823 2006-06-26  Stepan Kasal  <kasal@ucw.cz>
1825         * lib/autoconf/libs.m4 (_AC_PATH_X_DIRECT): Use -lX11, not
1826         -lXt in LIBS, idea from Karsten Hopp; this was due since
1827         this change:
1829         2005-09-18  Paul Eggert  <eggert@cs.ucla.edu>
1830         * lib/autoconf/libs.m4 (_AC_PATH_X_DIRECT): Look for X11/Xlib.h
1831         and XrmInitialize rather than X11/Intrinsic.h and XtMalloc
1832         (which belong to Xt, not X itself).  See Debian bug 327655.
1834 2006-06-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1836         * configure.ac (AC_INIT): Bump to 2.60a.
1837         * NEWS: Update.
1839 2006-06-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1841         Version 2.60.
1843         * configure.ac, NEWS: Update.
1845 2006-06-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1847         * config/texinfo.tex: Sync from upstream.
1849         * bin/autom4te.in (handle_traces): Transform the `@S|@'
1850         quadrigraph correctly in traces.
1852         * NEWS, lib/Autom4te/C4che.pm, lib/autoconf/functions.m4:
1853         Fix typos.
1855         * lib/autoconf/status.m4 (_AC_OUTPUT_FILE): Expand tests for
1856         datarootdir-related errors only if AC_DATAROOTDIR_CHECKED is
1857         not defined.
1858         * doc/autoconf.texi (Changed Directory Variables): New node,
1859         to document the whole `datarootdir' business a bit better.
1860         * NEWS: Update.
1861         * tests/torture.at (datarootdir workaround): Extend test.
1862         Prompted by report by Alexandre Julliard.
1864 2006-06-22  Paul Eggert  <eggert@cs.ucla.edu>
1866         * lib/autoconf/c.m4 (_AC_PROG_CC_C89): Check for C89 incompatibility
1867         when using default mode of IBM C 6 for AIX.  Problem and two-line
1868         fix reported by Larry Jones.
1870 2006-06-22  Alexandre Julliard <julliard@winehq.org>
1872         * lib/autoconf/status.m4 (_AC_OUTPUT_FILE): Avoid warning
1873         about literal '${datarootdir}' if a definition is found in the
1874         output file.
1876 2006-06-20  Paul Eggert  <eggert@cs.ucla.edu>
1878         * NEWS: Use "M4" rather than "m4" when appropriate.
1879         Problem reported by Eric Blake.
1880         * doc/autoconf.texi: Likewise.
1881         Use @acronym around BSD, GCC, and GNU when appropriate.
1882         (Why GNU M4): Renamed from "Why GNU m4".
1883         (Redefined M4 Macros): Mention that Posix
1884         m4wrap takes only 1 argument, but GNU M4 1.4.x takes more.
1885         (Buffer Overruns): Mention size_t and ptrdiff_t as alternatives
1886         to int.
1888 2006-06-20  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1890         * bin/autom4te.in (handle_output): Do not forbid the empty
1891         pattern.
1892         * tests/tools.at (autoconf: the empty token): New test.
1894 2006-06-20  Stepan Kasal  <kasal@ucw.cz>
1896         * lib/m4sugar/m4sugar.m4 (m4_init): Merge the two m4_wrap
1897         calls, so that we do not care whether they are LIFO or FIFO;
1898         in the m4_wrap, do not check which diversion is the topmost
1899         one, just check that the stack is balanced at the end.
1900         * lib/m4sugar/m4sh.m4 (AS_INIT): We are going to change the
1901         base diversion forever--pop the previous diversion before
1902         opening the new one; consequently, remove the m4_wrap call.
1903         * lib/autotest/general.m4 (AT_INIT): Likewise.
1904         * tests/m4sugar.at: Do not use
1905         m4_wrap([m4_diversion_pop([..])]), for educational purposes.
1907 2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
1908         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1910         * NEWS: Document that m4wrap/m4_wrap might not be LIFO.
1911         * doc/autoconf.texi (Redefined M4 Macros): Likewise.
1912         Rework example of m4wrap token-pasting trouble so that it doesn't
1913         care whether it's LIFO or FIFO.
1914         Fix some "contrary to"s that are awkward in English.
1916 2006-06-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1918         * lib/autoconf/types.m4 (_AC_TYPE_INT): Set `$ac_cv_c_int$1_t'
1919         to `yes' instead of `int$1_t' if the type is found, for more
1920         consistent configure output (where $1 is the number of bits).
1921         (_AC_TYPE_UINT): Likewise for `uint$1_t'.
1922         Suggested by Bruno Haible.
1924         * lib/autoconf/types.m4 (_AC_TYPE_UNSIGNED_INT): Solaris 2.5.1
1925         needs _UINT8_T and _UINT64_T defines as well, to avoid clashes
1926         with system headers.  Report by Bruno Haible.
1928 2006-06-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1930         * config/config.guess, config/config.sub: Sync from upstream.
1932         * bin/Makefile.am (autoconf.in): Use `--melt' for autom4te,
1933         in order to avoid picking up an older installed frozen m4sh.m4f.
1934         Besides an outdated shell startup, this could have been created
1935         by an earlier M4 version with incompatible frozen file format.
1937 2006-06-16  Paul Eggert  <eggert@cs.ucla.edu>
1939         * README: Recommend m4 1.4.4 instead of 1.4.3..
1940         * doc/autoconf.texi: Likewise.
1941         (Special Chars in Names): Say that $(.FOO) is portable, as
1942         suggested by Stepan Kasal.
1943         (Installation Directory Variables, Build Directories):
1944         (Automatic Remaking, Subdirectories, Fortran Compiler):
1945         (Making testsuite Scripts, Defining Directories):
1946         Quote variable usages better.
1947         (Making testsuite Scripts): Add clean-local rule to makefile
1948         snippet, by Eric Blake.
1949         (Installation Directory Variables): Fix table item font.
1950         Reword slightly to clarify.  Generalize advice about
1951         not using special characters to include all file-related
1952         vars, not just VPATH.
1953         (Special Chars in Variables): Warn about special characters in
1954         $(srcdir) too.
1955         (Assignments): Clarify default-value example as suggested by
1956         Ralf Wildenhues in
1957         <http://lists.gnu.org/archive/html/autoconf-patches/2006-06/msg00072.html>.
1958         (Special Shell Variables): Note leading ./ or ../, as suggested
1959         by Eric Blake.
1960         (Limitations of Builtins): Under cd, warn about CDPATH.
1961         (The Make Macro MAKEFLAGS): Untabify.  Problem reported by
1962         Ralf Wildenhues.
1964 2006-06-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1966         * doc/autoconf.texi (Configuration Actions): Remove duplicate
1967         `@var', for texi2html.
1968         (Systemology): Some more word wrapping, for DVI output.
1969         (autom4te Invocation): The short option for `--melt' is `-M',
1970         not `-m'.
1972 2006-06-15  Paul Eggert  <eggert@cs.ucla.edu>
1974         * doc/autoconf.texi: More formatting and English tweaks,
1975         many suggested by Ralf Wildenhues.
1976         Reword to avoid "@code{...}'s" and the like, since it's ugly
1977         with Emacs info mode.  discontents -> woes.
1978         Put a few "will"s back.  time stamp -> timestamp.
1979         side-effect -> side effect.
1981 2006-06-14  Paul Eggert  <eggert@cs.ucla.edu>
1983         * doc/autoconf.texi (Initializing configure, Shell Substitutions):
1984         Warn about $@ not persisting.  Problem reported by Julien Danjou in
1985         <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=372179>.
1986         (Special Chars in Names): Renamed from Leading _ in Macro Names.
1987         Mention other special chars, too.
1989 2006-06-14  Eric Blake  <ebb9@byu.net>
1991         * doc/autoconf.texi (The Make Macro MAKEFLAGS): New node.
1993 2006-06-13  Paul Eggert  <eggert@cs.ucla.edu>
1995         * doc/autoconf.texi: Some systematic minor improvements, as
1996         follows.  Use "makefile" when talking about makefiles
1997         generally (which might be named "makefile" or "Makefile" or even
1998         "foo.mk"), "Makefile" when talking about a specific makefile
1999         called "Makefile".  This unclutters the text from weird quotes
2000         (e.g., "`Makefile's" in info mode).  Similarly, use "@var{foo}
2001         values" rather than "@var{foo}s" and similar constructs containing
2002         "}s".  Use "Make rules" rather than "Makefile rules".  Minor
2003         English-language improvements.  Change the prefix "sub-" to "sub"
2004         and "re-" to "re".
2005         Put blank lines around examples more consistently.
2006         Avoid "rather" and "very" as intensifiers.
2007         Avoid "will" as an auxiliary.
2008         (Limitations of Make): Split this node into....
2009         (Portable Make, $< in Ordinary Make Rules, Failure in Make Rules):
2010         (Leading _ in Macro Names, Backslash-Newline-Newline):
2011         (Backslash-Newline Comments, Long Lines in Makefiles):
2012         (Macros and Submakes, The Make Macro SHELL, Comments in Make Rules):
2013         (obj/ and Make, make -k Status, VPATH and Make):
2014         (VPATH and Double-colon, $< in Explicit Rules):
2015         (Automatic Rule Rewriting, OSF/Tru64 Directory Magic):
2016         (Make Target Lookup, Single Suffix Rules, Timestamps and Make):
2017         New nodes, resulting from splitup of Limitations of Make.
2018         All cross-references changed.  Raise the top node from
2019         a section to a chapter, and all subnodes accordingly.
2020         Redo the introductory wording to match the new organization.
2021         (Installation Directory Variables): Use an example that is
2022         closer to what Autoconf actually does.  Mention that VPATH's
2023         value should not contain metacharacters or white space.
2024         (Fortran Compiler): Fix a VPATH bug in an example.
2025         (Leading _ in Macro Names): Mention that this problem is no longer
2026         of practical concern.
2027         (VPATH and Make): Reword the advice to make it clearer
2028         that Autoconf and Automake support VPATH in non-GNU make, but
2029         many packages have bugs in this area.
2030         ($< in Explicit Rules): Refer to Build Directories rather
2031         than using a (non-VPATH-safe) example.
2032         (Automatic Rule Rewriting): Mention the sort of disaster that
2033         can ensue with Solaris-style rule rewriting with VPATH.
2035 2006-06-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2037         * doc/install.texi (Compilers and Options): Weaken the
2038         suggestion to use GNU make for VPATH builds.
2040         * lib/autom4te.in (Automake-preselections): Add AM_PROG_CXX_C_O,
2041         AM_PROG_F77_C_O, AM_PROG_FC_C_O, AC_FC_SRCEXT, AC_FC_FREEFORM.
2043         * lib/autoconf/programs.m4 (AC_PROG_MAKE_SET): Fix M4 quotation
2044         in regular expression.
2046 2006-06-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2048         * doc/autoconf.texi (Installation Directory Variables):
2049         Drop extra @samp from `@table @samp' item.
2050         (Limitations of Usual Tools): Comment fix.
2051         Do not nest @samp just to point to other table items.
2052         (Writing testsuite.at) <AT_CHECK>: The second argument to
2053         `@dvar' is already @samp'ed.
2054         (Making testsuite Scripts) <AC_CONFIG_TESTDIR>: Likewise,
2055         do not use @var in the second argument.
2057 2006-06-07  Paul Eggert  <eggert@cs.ucla.edu>
2059         * lib/m4sugar/m4sh.m4 (_AS_DETECT_BETTER_SHELL): Look for
2060         $as_shell.exe too.  Problem reported by Andreas Buening in
2061         <http://lists.gnu.org/archive/html/autoconf/2006-06/msg00038.html>.
2063 2006-06-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2065         * lib/autoconf/functions.m4 (AC_FUNC_ALLOCA): Work around
2066         `unused variable' compiler warning, for `-Wall -Werror'.
2067         Reported by Jaap Haitsma in
2068         <http://lists.gnu.org/archive/html/bug-autoconf/2006-06/msg00012.html>.
2070 2006-06-06  Paul Eggert  <eggert@cs.ucla.edu>
2072         * lib/autoconf/c.m4 (AC_PROG_CC_C_O): Remove core file, in
2073         case the compiler dumps core.  Problem reported for
2074         OpenServer 5.0.7 by Tim Rice in
2075         <http://lists.gnu.org/archive/html/bug-autoconf/2006-06/msg00019.html>.
2076         * lib/autoconf/general.m4 (_AC_COMPILE_IFELSE, _AC_LINK_IFELSE):
2077         Likewise.
2079 2006-06-06  Tim Rice <tim@multitalents.net>.
2081         * lib/freeze.mk: Quiet check-forbidden-patterns so the string
2082         "ERROR" only shows up in "make check" output if there is an
2083         error.
2085 2006-06-06  Eric Blake  <ebb9@byu.net>
2087         * tests/tools.at (automatically allowed tokens): Fix typo.
2089 2006-06-05  Paul Eggert  <eggert@cs.ucla.edu>
2091         * NEWS: Don't blame non-GNU VPATH compatibility issues on Automake.
2093         * doc/autoconf.texi (Integer Overflow): Mention that INT_MIN % -1
2094         typically overflows on x86 CPUs, even though the C standard
2095         requires otherwise.
2097 2006-06-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2099         * configure.ac (AC_INIT): Bump to 2.59e.
2100         * NEWS: Update.
2102 2006-06-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2104         Version 2.59d.
2106         * config/texinfo.tex: Sync from upstream.
2108         * bin/autoreconf.in: Trace `LT_CONFIG_LTDL_DIR'; if it has been
2109         seen, invoke libtoolize with `--ltdl' argument.
2110         * lib/autom4te.in (Autoreconf-preselections): Adjust.
2111         * NEWS: Update.
2112         Suggested by Eric Blake.
2114 2006-06-05  Paul Eggert  <eggert@cs.ucla.edu>
2116         * NEWS: Whoops!  AC_FUNC_STRNLEN isn't obsolescent.  Problem
2117         reported by Ralf Wildenhues.
2118         * doc/autoconf.texi (AC_FUNC_STRNLEN): Likewise.
2120 2006-06-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2122         * THANKS: Update.
2124 2006-06-05  Paul Eggert  <eggert@cs.ucla.edu>
2126         * doc/autoconf.texi: Modernize some of the references to Solaris.
2128 2006-06-05  Stepan Kasal  <kasal@ucw.cz>
2130         * lib/m4sugar/m4sugar.m4 (m4_require): Modify the error
2131         message issued by AC_REQUIRE.
2132         * tests/m4sugar.at: Check m4_require's error message.
2133         * tests/base.at: Check AC_REQUIRE's error message.
2134         * tests/local.at (AT_CHECK_M4): New macro, almost identical
2135         to...
2136         (AT_CHECK_AUTOM4TE): ... which is now a thin wrapper around
2137         AT_CHECK_M4.
2138         (AT_CHECK_AUTOCONF): Use AT_CHECK_M4; no longer support
2139         `expout' as the last parameter.
2140         * tests/tools.at: Adapt to the above change.
2142 2006-06-04  Stepan Kasal  <kasal@ucw.cz>
2144         * doc/autoconf.texi (Limitations of Usual Tools): Correct
2145         information about race-free implementations of mkdir.
2147 2006-06-04  Eric Blake  <ebb9@byu.net>
2149         * bin/autoreconf.in (help): Document M4 environment variable.
2150         * bin/autoconf.as (Usage): Likewise.
2151         * bin/autom4te.in (help): Likewise.
2152         * doc/autoconf.texi (autom4te Invocation): Likewise.
2154 2006-06-04  Paul Eggert  <eggert@cs.ucla.edu>
2156         * NEWS: GNU make now recommended for VPATH builds.
2157         Mention that some macros are now documented to be obsolescent.
2158         * doc/autoconf.texi:
2159         Prefer "current" to "modern" to describe
2160         currently-used (albeit perhaps old-fashioned) hosts.
2161         Mention which ancient features no longer need to be worried about.
2162         setgid -> set-group-ID
2163         setuid -> set-user-ID (these are the Posix terms)
2164         Fix some misuses of "only".
2165         (AC_C_BACKSLASH_A, AC_C_CONST, AC_C_PROTOTYPES):
2166         (AC_C_STRINGIZE, AC_C_VOLATILE, AC_FUNC_CLOSEDIR_VOID):
2167         (AC_FUNC_GETPGRP, AC_FUNC_LSTAT, AC_FUNC_MEMCMP):
2168         (AC_FUNC_SELECT_ARGTYPES, AC_FUNC_SETPGRP):
2169         (AC_FUNC_SETVBUF_REVERSED, AC_FUNC_STAT, AC_FUNC_STRFTIME):
2170         (AC_FUNC_STRNLEN, AC_FUNC_UTIME_NULL, AC_FUNC_VPRINTF):
2171         (AC_HEADER_DIRENT, AC_HEADER_STAT, AC_HEADER_STDC):
2172         (AC_HEADER_SYS_WAIT, AC_HEADER_TIME, AC_ISC_POSIX):
2173         (AC_PROG_GCC_TRADITIONAL, AC_STRUCT_TM):
2174         Mention that these macros are obsolescent.
2175         (Installation Directory Variables): shall -> should
2176         (File Descriptors): Mention that 0, 1, 2 might get reopened.
2177         Mention that it's now safe to use 3 and 4.
2178         (Limitations of Usual Tools): cp -r is now specified by Posix.
2179         Omit longwinded and obsolescent discussion of cp -f.
2180         Modernize discussion of expr, ls.
2181         (Limitations of Make): Modernize discussion of VPATH builds.
2182         Mention $? as a workaround in some cases.
2183         * doc/install.texi (Basic Installation):
2184         Mention "./configure; make; make install" first.  Be more
2185         specific about why this file is generic.  Remove unnecessary
2186         parens.  Remove misleading "only".  Remove obsolete advice
2187         about csh.  Don't say "configure" takes awhile; say it
2188         might take a while.  Suggest CFLAGS=-g rather than CFLAGS=-O2,
2189         and CC=c99 rather than CC=c89, as these are blessed by current
2190         Posix.  Recommend GNU make if doing a VPATH build.
2192 2006-06-03  Paul Eggert  <eggert@cs.ucla.edu>
2194         * doc/autoconf.texi: Use a consistent style "$ @kbd{...}" for
2195         examples involving shell prompts.
2197 2006-06-02  Stepan Kasal  <kasal@ucw.cz>
2198         and Paul Eggert  <eggert@cs.ucla.edu>
2200         * doc/autoconf.texi (Here-Documents): Add details about the
2201         pre-ksh93g bug.  Reword slightly to make it clearer.  Consistently
2202         use "here-documents" instead of "here documents".
2204 2006-06-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2206         * config/texinfo.tex, doc/standards.texi: Sync from upstream.
2208 2006-06-01  Paul Eggert  <eggert@cs.ucla.edu>
2210         * doc/autoconf.texi (File System Conventions): Warn about ":"
2211         anywhere in directory names.
2213 2006-05-31  Paul Eggert  <eggert@cs.ucla.edu>
2215         * lib/autoconf/general.m4 (_AC_DO_ECHO): Be even more conservative
2216         about quoting the case statement, just in case.
2217         * doc/autoconf.texi (Here-Documents): Mention that the ksh bug
2218         was fixed in ksh93g; reported by Ralf Wildenhues.
2220 2006-05-31  Stepan Kasal  <kasal@ucw.cz>
2222         * doc/autoconf.texi (System Services): Do not document
2223         overriding EXEEXT via ac_cv_exeext=ext.
2224         (Particular Programs) <AC_PROG_MKDIR_P>:
2225         Document that ${MKDIR_P} understands --.
2226         * lib/autoconf/programs.m4 (AC_PROG_MKDIR_P): Improve the
2227         comment.
2229 2006-05-31  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2231         * lib/m4sugar/m4sh.m4 (_AS_DIRNAME_PREPARE): Guard against test
2232         argument with leading hyphen.  Problem reported by Paul Eggert.
2234 2006-05-30  Paul Eggert  <eggert@cs.ucla.edu>
2236         * lib/autoconf/general.m4 (_AC_DO_ECHO): Be more conservative
2237         about quoting ac_try: quote all of it, if any of it seems suspicious.
2238         This means we don't have to worry about ${ or sed any more.
2239         Also, double-quote the case statement, to work around misuses via
2240         underquoting as reported by Ralf Wildenhues in
2241         <http://lists.gnu.org/archive/html/autoconf-patches/2006-05/msg00169.html>.
2242         (_AC_EVAL_STDERR): Revert, since evidently some packages rely on this
2243         undocumented and dangerous macro.
2244         Problem reported by Ralf Wildenhues in
2245         <http://lists.gnu.org/archive/html/autoconf-patches/2006-05/msg00168.html>.
2247 2006-05-31  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2249         * lib/m4sugar/m4sh.m4 (_AS_DIRNAME_PREPARE): Check whether
2250         `dirname -- /' returns `/', for SunOS dirname scripts that escaped.
2251         Report by Sam Sirlin <sam@kalessin.jpl.nasa.gov>.
2253 2006-05-30  Paul Eggert  <eggert@cs.ucla.edu>
2255         * lib/autoconf/general.m4: Revert AC_TRY_EVAL and AC_TRY_COMMAND,
2256         since evidently some packages rely on the old, broken behavior.
2257         Problem reported by Ralf Wildenhues in
2258         <http://lists.gnu.org/archive/html/autoconf-patches/2006-05/msg00160.html>.
2259         (AC_TRY_EVAL, AC_TRY_COMMAND, _AC_EVAL): Go back to the
2260         pre-2006-05-26 definitions, but leave in the comments that
2261         these macros are dangerous and should not be used.
2262         (_AC_DO_ECHO): Renamed from _AC_EVAL_ECHO.  All callers changed.
2263         (_AC_DO): Renamed from _AC_EVAL.  All callers changed.
2264         (_AC_DO_STDERR): Renamed from _AC_EVAL_STDERR.  All callers changed.
2265         (_AC_DO_VAR): Renamed from AC_TRY_EVAL.
2266         (_AC_DO_TOKENS): Renamed from AC_TRY_COMMAND.
2268 2006-05-29  Paul Eggert  <eggert@cs.ucla.edu>
2270         * lib/autoconf/status.m4 (AC_OUTPUT_MAKE_DEFS): Rewrite to avoid
2271         the use of 'tr', since this is our only use of 'tr'.
2273 2006-05-29  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2274         and Paul Eggert  <eggert@cs.ucla.edu>
2276         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE):
2277         Don't assume 'grep' works on long lines, since AIX grep doesn't.
2279 2005-05-28  Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
2281         * lib/autoconf/status.m4 (_AC_OUTPUT_FILE): Do not use `grep' on
2282         the output file in the `${datarootdir}' test.
2284 2005-05-28  Stepan Kasal  <kasal@ucw.cz>
2285         and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
2287         * lib/autoconf/status.m4 (_AC_OUTPUT_FILE): If we have not seen
2288         mention of `datarootdir' in the input file(s), but literal
2289         `${datarootdir}' in the output file, and we haven't warned yet,
2290         then warn as well: the user may have (erroneously) used
2291         `AC_SUBST([mydatadir], [$datadir/my])' instead of the correct
2292         `AC_SUBST([mydatadir], ['${datadir}/my'])'.
2293         * tests/torture.at (datarootdir workaround): Extend this test.
2294         * NEWS: Update.
2296 2006-05-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2297         and Paul Eggert  <eggert@cs.ucla.edu>
2299         * doc/autoconf.texi (autoheader Invocation): The first argument to
2300         `AC_DEFINE_UNQUOTED' need not be a literal.  Mention the
2301         alternatives and clear up the language a bit.
2303 2006-05-27  Paul Eggert  <eggert@cs.ucla.edu>
2305         * NEWS: Reword notice for AC_TRY_COMMAND, AC_TRY_EVAL,
2306         ac_config_guess, ac_config_sub, ac_configure.
2307         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS):
2308         Fix typo that prevented an unnecessary space from being removed.
2309         Problems reported by Ralf Wildenhues in:
2310         http://lists.gnu.org/archive/html/autoconf-patches/2006-05/msg00143.html
2312 2006-05-26  Paul Eggert  <eggert@cs.ucla.edu>
2314         * doc/autoconf.texi (Particular Programs, Limitations of Usual Tools):
2315         Use better wording to talk about AC_PROG_MKDIR_P's thread-safety.
2316         Don't use the term "thread-safe" to talk about mkdir race
2317         conditions, since the problem is more a process than a thread
2318         issue.  Problem reported by Stepan Kasal in:
2319         http://lists.gnu.org/archive/html/autoconf-patches/2006-05/msg00088.html
2320         * lib/autoconf/programs.m4 (AC_PROG_MKDIR_P): Use code that mimics
2321         the test for 'install' more closely.  Look at MKDIR_P first.
2322         Look in the PATH, and at /opt/sfw/bin.
2323         Look for a 'gmkdir' program as well (Solaris 10 /opt/sfw/bin/gmkdir).
2324         Don't bother to try mkdir -p, since we already check mkdir --version;
2325         just look at the version number.  (There's no easy way to check
2326         for race-free implementations.)
2327         * tests/tools.at (autoconf: subdirectories): Adjust to above
2328         changes, since MKDIR_P now might end in "/mkdir -p".
2330         * doc/autoconf.texi (autoheader Invocation): Mention that the
2331         first arg of AC_DEFINE_UNQUOTED must be a literal.
2332         Problem reported by Ben Pfaff in
2333         <http://lists.gnu.org/archive/html/bug-autoconf/2006-05/msg00090.html>.
2335         * NEWS: Mention that AC_TRY_COMMAND and AC_TRY_EVAL may be removed.
2336         * doc/autoconf.texi (Special Chars in Variables): New section.
2337         (Preset Output Variables): Warn about special chars in CPPFLAGS.
2338         (Installation Directory Variables): Quote $(datadir) better.
2339         (Limitations of Builtins): Describe some of eval's trickiness.
2341         * lib/autoconf/c.m4 (AC_PROG_CC_C_O): Simplify quoting.
2342         * lib/autoconf/fortram.m4 (_AC_PROG_FC_V_OUTPUT): Likewise.
2343         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Put leading space
2344         in front of every arg, not just trailing args.  Quote apostrophes.
2345         (_AC_EVAL_ECHO): New macro.
2346         (_AC_EVAL, AC_EVAL_STDERR): Use it.  Quote arg of eval.
2347         (AC_TRY_EVAL, AC_TRY_COMMAND): Mention that these macros might get
2348         removed.
2349         (_AC_LINK_IFELSE): Use proper rule for shell continuation lines,
2350         exposed by quoting of eval argument.  Put the command on line line
2351         so it logs better.
2352         * lib/autoconf/libs.m4 (_AC_PATH_X_XMKMF): Use eval more safely.
2353         (_AC_PATH_X, AC_PATH_X): Quote more safely.
2354         * lib/autoconf/programs.m4 (AC_PROG_MAKE_SET): Use eval more safely.
2355         * lib/autoconf/specific.m4 (AC_SYS_LONG_FILE_NAMES): Don't use eval.
2356         * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): Minor style change.
2357         Handle special chars in prefix, ac_srcdir, ac_aux_dir.
2358         Use eval more safely.
2359         (_AC_OUTPUT_CONFIG_STATUS): Adjust to above changes.
2360         * lib/m4sugar/m4sh.m4 (AS_VAR_GET): Note that this API needs
2361         to be replaced.
2362         * tests/base.at (AC_TRY_COMMAND): Use proper rule for shell continuation
2363         lines, exposed by quoting of eval argument.
2365 2006-05-26  Stepan Kasal  <kasal@ucw.cz>
2366         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2368         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Drop the
2369         initialization of `ac_cv_exeext', do not override it if it was
2370         already set, unless it was set to `no', for compatibility with
2371         Autoconf-2.13, and comment this.
2372         Do not export `ac_cv_exeext', Libtool hasn't needed this for years.
2373         (_AC_COMPILER_EXEEXT_DEFAULT): Likewise, do not export it.
2374         (_AC_COMPILER_EXEEXT_WORKS, _AC_COMPILER_EXEEXT_CROSS): Typos.
2375         * doc/autoconf.texi (Compilers and Preprocessors) <EXEEXT>:
2376         Document that this test may be overridden by setting
2377         `ac_cv_exeext'.
2379 2006-05-26  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2381         Revert these two patches:
2383         2006-04-06  Eric Blake  <ebb9@byu.net>
2384         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_O): Inside cache
2385         check, s/ac_exeext/ac_cv_exeext/.  Fixes regression introduced
2386         2006-04-01.
2388         2006-04-01  Stepan Kasal  <kasal@ucw.cz>
2389         Clean up _AC_COMPILER_EXEEXT* macros.
2390         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Don't try to
2391           detect exeext, it will be done by _AC_COMPILER_EXEEXT_O; just set
2392           ac_file to the name of the default output file and call
2393           _AC_COMPILER_EXEEXT_WORKS.  Move the definition of ac_files and the
2394           initial `rm' of the candidate files...
2395         (_AC_COMPILER_EXEEXT): ... here and simplify them.  Moreover, use
2396           the same list in subsequent `rm' calls, and for the temporary
2397           redefinition of ac_clean_files; call _AC_COMPILER_OBJEXT at the end,
2398           and don't call the other _AC_COMPILER_EXEEXT_* macros directly, use...
2399         (_AC_COMPILER_EXEEXT_TESTS): ... this new macro.
2400         (_AC_COMPILER_EXEEXT_O): Don't export ac_cv_exeext, it's not needed (or
2401           no longer needed) by libtool.  Make it a cache check.
2402         (_AC_COMPILER_EXEEXT_CROSS): Remove the comment, it was obviously
2403           copied here by mistake.
2404         (AC_NO_EXECUTABLES): Redefine _AC_COMPILER_EXEEXT_TESTS, not
2405           _AC_COMPILER_EXEEXT.
2406         * lib/autoconf/c.m4 (AC_PROG_CC, AC_PROG_CXX, AC_PROG_OBJC): Do not call
2407           _AC_COMPILER_OBJEXT directly.
2408         * lib/autoconf/fortran.m4 (_AC_PROG_FC): Likewise.
2410 2006-05-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2412         * doc/autoconf.texi (Limitations of Usual Tools) < sed (`t')>:
2413         Fix description of how the buggy `sed' works.
2415 2006-05-25  Noah Misch  <noah@cs.caltech.edu>
2417         Sync from Automake:
2419         * lib/Autom4te/XFile.pm (lock): Allow EOPNOTSUPP, besides
2420         ENOLCK.  Only mention `make -j' when applicable.  Only raise
2421         fatal errors when `make -j' is involved.  Improve error message.
2423 2006-05-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2425         * doc/autoconf.texi (Here-Documents): We now know more about
2426         the variable expansion in here documents bug.
2427         Thanks to Tim Rice and Stepan Kasal.
2429         * doc/autoconf.texi (Making testsuite Scripts): Add an example
2430         how to use TESTSUITEFLAGS.  Suggested by Eric Blake.
2432 2006-05-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2434         * tests/autotest.at (Multiline command from M4 expansion):
2435         No failure to be expected if the shell quotes newlines in
2436         commands in the `set -x' output.  Report by Tim Rice.
2437         * THANKS: Update.
2439 2006-05-23  Paul Eggert  <eggert@cs.ucla.edu>
2441         * lib/autoconf/status.m4 (_AC_OUTPUT_HEADER): Don't use shell
2442         expansion in the here-documents used by config.status, as that
2443         runs afoul of the Korn shell version M-12/28/93d bug described in
2444         the Autoconf manual, and this in turn causes a Coreutils 5.95 build to
2445         fail as described by Tim Rice and diagnosed by Ralf Wildenhues in
2446         <http://lists.gnu.org/archive/html/bug-autoconf/2006-05/msg00082.html>.
2448 2006-05-23  Jim Meyering  <jim@meyering.net>
2450         * lib/autoconf/functions.m4 (AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK):
2451         Fix typo introduced with 2006-04-02 change.  It reversed the sense
2452         of the test.
2454 2006-05-23  Paul Eggert  <eggert@cs.ucla.edu>
2456         * lib/autoconf/status.m4 (_AC_OUTPUT_HEADER): Simplify ac_dA and
2457         ac_dB slightly, to save bytes in the script.
2458         Max out at 50 lines, rather than 96; this is more likely
2459         (though not guaranteed) to avoid obscure 'sed' failures.
2461 2006-05-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2463         * lib/autotest/general.m4 (AT_INIT): UnixWare `tr' may interpret
2464         `tr -d -' as bad option argument.  Work around this by deleting
2465         an unrelated character.
2466         Report by Tim Rice <tim@multitalents.net>.
2468 2006-05-22  Paul Eggert  <eggert@cs.ucla.edu>,
2469             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>,
2470             Stepan Kasal  <kasal@ucw.cz>
2472         * doc/autoconf.texi (Particular Programs): Do not promise that
2473         we always prefer the GNU version of the program, and that we
2474         search according to PATH; both rules can have exceptions.
2475         Update description of AC_PROG_GREP, AC_PROG_EGREP, AC_PROG_FGREP,
2476         AC_PROG_SED.  Move descriptions of limitations
2477         to the Limitations of Usual Tools section.
2478         (Limitations of Usual Tools) <sed>: Mention script length
2479         limitations with Solaris /usr/ucb/sed.
2480         <grep>: Fix wording for empty alternative.  Mention that -c and
2481         -l should not be combined, and that -E and -F should not be
2482         combined.
2484 2006-05-21  Paul Eggert  <eggert@cs.ucla.edu>
2485         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2487         * lib/autoconf/programs.m4 (AC_PROG_SED): Catch script length
2488         limits in Solaris 8 /usr/ucb/sed by testing a long script.
2490 2006-05-22  Stepan Kasal  <kasal@ucw.cz>
2492         * doc/autoconf.texi (Defining Symbols): Literal parameter of
2493         AC_DEFINE is now passed to m4_pattern_allow.
2494         * NEWS: Mention that; likewise for AC_SUBST.
2495         * lib/autoconf/general.m4 (AC_DEFINE_TRACE_LITERAL): Pass
2496         the parameter to m4_pattern_allow.
2497         * tests/tools.at: Add a check for that.
2499 2006-05-22  Stepan Kasal  <kasal@ucw.cz>
2501         * lib/autoconf/status.m4: Fix typos.
2503 2006-05-21  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2505         * lib/autoconf/programs.m4 (_AC_FEATURE_CHECK_LENGTH): Remove
2506         only the files that this macro generates.
2508 2006-05-21  Paul Eggert  <eggert@cs.ucla.edu>
2510         * doc/autoconf.texi (Limitations of Usual Tools) <sed>: For
2511         the HP-UX sed limitation of 99 commands, labels do not count.
2512         * lib/autoconf/status.m4 (_AC_SED_CMD_LIMIT): Mention that
2513         in the comment.
2514         (_AC_OUTPUT_HEADER): Revert the change from 2006-05-19.
2516 2006-05-21  Paul Eggert  <eggert@cs.ucla.edu>
2518         * lib/autoconf/functions.m4 (AC_FUNC_GETMNTENT):
2519         Import the following fix from coreutils:
2521         2006-01-13  Jim Meyering  <jim@meyering.net>
2523         Invoke AC_CHECK_FUNCS(getmntent) unconditionally so that tests of
2524         $ac_cv_func_getmntent (e.g., in gl_LIST_MOUNTED_FILE_SYSTEMS) need
2525         not double-quote uses of that variable, to accommodate the rare
2526         case in which getmntent is available in none of the libraries
2527         checked.  This happens at least on FreeBSD 5.0.
2529 2006-05-20  Paul Eggert  <eggert@cs.ucla.edu>
2531         * lib/autoconf/general.m4 (AC_CONFIG_AUX_DIRS): Bring back
2532         ac_config_guess, ac_config_sub, and ac_configure, since evidently
2533         some other programs unwisely rely on these undocumented vars.
2534         But put in warning comments about them.
2535         Problem reported by Ralf Wildenhues in
2536         <http://lists.gnu.org/archive/html/autoconf-patches/2006-05/msg00068.html>.
2537         * NEWS: Document that these variables are intended to go away.
2539 2006-05-20  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2541         * lib/autoconf/c.m4 (AC_PROG_CXX_C_O): Require AC_PROG_CXX,
2542         and set the language to C++ (analogous to the equivalent Fortran
2543         tests).
2545         * lib/autoconf/c.m4 (AC_PROG_CXX_C_O): New macro.
2546         * doc/autoconf.texi (C++ Compiler): Document it.
2547         * lib/autoconf/fortran.m4 (_AC_PROG_FC_C_O): Adjust comment.
2548         * NEWS: Update.
2550 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
2552         * lib/autoconf/status.m4 (_AC_OUTPUT_HEADER): Fix off-by-one bug
2553         that caused config.status to generate 100-command sed scripts; the
2554         portable limit is 99.
2556 2006-05-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2558         * lib/autoconf/programs.m4 (AC_PROG_MKDIR_P): Name temporary
2559         variable `ac_d' instead of `d' to avoid infringing namespace.
2560         Report by Ralf Menzel.
2562 2006-05-18  Paul Eggert  <eggert@cs.ucla.edu>
2564         * lib/autoconf/status.m4 (_AC_OUTPUT_FILE): Don't prepend
2565         $ac_top_build_prefix to $MKDIR_P if it's just 'mkdir -p'.
2566         * tests/tools.at (autoconf: subdirectories): New test, taken from
2567         the corresponding problem report by Ralf Wildenhues in:
2568         http://lists.gnu.org/archive/html/autoconf-patches/2006-05/msg00053.html
2570         * lib/autoconf/functions.m4 (AC_REPLACE_FNMATCH, AC_FUNC_FNMATCH_GNU):
2571         Quote some uses of shell variables if they might suffer unexpected
2572         globbing.  This doesn't fix all instances of quoting problems that
2573         I found, just the easy ones that look safe.
2574         * lib/autoconf/general.m4 (_AC_INIT_SRCDIR, _AC_INIT_HELP):
2575         (AC_CONFIG_AUX_DIR, AC_CONFIG_AUX_DIR_DEFAULT, AC_CONFIG_AUX_DIRS):
2576         (AC_CANONICAL_BUILD, AC_CANONICAL_HOST, AC_CANONICAL_TARGET):
2577         (AC_CACHE_LOAD, AC_CACHE_SAVE): Likewise.
2578         * lib/autoconf/libs.m4 (_AC_PATH_X_XMKMF, _AC_PATH_X_DIRECT): Likewise.
2579         * lib/autoconf/specific.m4 (AC_SYS_LONG_FILE_NAMES): Likewise.
2580         * lib/autoconf/status.m4 (_AC_OUTPUT_LINK, _AC_OUTPUT_SUBDIRS):
2581         Likewise.
2582         * lib/autotest/general.m4 (_AC_INIT_PARSE_ARGS): Likewise.
2583         * lib/m4sugar/m4sh.m4 (_AS_DETECT_BETTER_SHELL): Likewise.
2585 2006-05-18  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2587         * bin/autoreconf.in ($help): Reword according to the manual.
2588         Suggested by Olly Betts.
2590 2006-05-17  Olly Betts  <olly@survex.com>  (tiny change)
2591         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2593         * bin/autoreconf.in: Pass the directory argument to
2594         `require_configure_ac'.  Fix comment.
2595         * tests/torture.at (Configuring subdirectories): Expose this.
2596         Reported by Olly Betts.
2598 2006-05-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2600         * lib/Automake/Configure_ac.pm, lib/Automake/Channels.pm,
2601         lib/Automake/FileUtils.pm, lib/Automake/Struct.pm: Sync from
2602         Automake as follows:
2604         * lib/Autom4te/Configure_ac.pm (find_configure_ac): Use
2605         `$configure_in' instead of `configure.in', to preserve
2606         directory component.
2608 2006-05-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2610         * config/config.guess, config/config.sub, config/texinfo.tex,
2611         doc/make-stds.texi, doc/standards.texi: Sync from upstream.
2613 2006-05-14  Paul Eggert  <eggert@cs.ucla.edu>
2615         * lib/autoconf/headers.m4 (AC_HEADER_STDBOOL): Fix overly-picky
2616         test for C99 conformance; (bool) 0.5 is an integer constant
2617         expression, but (bool) -0.5 is not.  Problem reported by Fedor
2618         Sergeev in <http://forum.sun.com/jive/thread.jspa?threadID=96202>.
2620 2006-05-13  Paul Eggert  <eggert@cs.ucla.edu>
2622         * doc/autoconf.texi (Particular Programs): AC_PROG_MKDIR_P now
2623         sets MKDIR_P, not mkdir_p, to avoid collisions with Automake.
2624         Warn about obsolete install-sh files.  Remove stray sentence
2625         fragment and fix cross reference.
2626         * lib/autoconf/programs.m4 (AC_PROG_INSTALL): Don't insist on
2627         install -d; this undoes the 2006-05-10 change.
2628         (MKDIR_P): Mark with AN_MAKEVAR.
2629         (AC_PROG_MKDIR_P): Fall back on $ac_install_sh, not $INSTALL, so
2630         that we don't require $INSTALL to be thread-safe.  Move comments
2631         out of generated code.  Require AC_CONFIG_AUX_DIR_DEFAULT instead
2632         of AC_PROG_INSTALL.  Output a message saying that we're checking
2633         mkdir -p.  Set MKDIR_P rather than mkdir_p.  Do special magic for
2634         MKDIR_P instead of AC_SUBST.
2635         * lib/autoconf/status.m4 (_AC_OUTPUT_FILE, _AC_OUTPUT_CONFIG_STATUS):
2636         Special magic for MKDIR_P, too.
2637         * lib/m4sugar/m4sh.m4 (AS_MKDIR_P): Remove comment that defeated
2638         a dnl.
2639         * tests/local.at (AT_CHECK_ENV): mkdir_p -> MKDIR_P.
2641 2006-05-11  Paul Eggert  <eggert@cs.ucla.edu>
2643         Sync from Automake, as follows:
2645         2006-05-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2646         * config/install-sh: Initialize IFS, so field splitting isn't
2647         turned off later.
2648         * config/mkinstalldirs: Likewise.
2649         * config/missing: Remove superfluous quotes.  Replace all uses of
2650         `[' by `test', for consistency, and for..
2651         * config/missing (sed_minuso, sed_output): New variables.
2652         (autom4te, help2man, makeinfo): Use them.  Unifies detection of
2653         `-o FILE', `--output FILE', `--output=FILE', stricter regex.
2654         Fixes `missing' to detect `--output' for help2man.  Fixes
2655         PR automake/483.  Report by Dennis J. Linse.
2656         (autom4te): Document in `missing --help'.
2658 2006-05-10  Paul Eggert  <eggert@cs.ucla.edu>
2660         * NEWS: New macro AC_PROG_MKDIR_P.  AS_MKDIR_P is now more robust.
2661         * config/install-sh: Don't use 'path' to talk about file names,
2662         as per GNU coding standards.  Close a race condition reported by Ralf
2663         Wildenhues and Stepan Kasal.  There is still a race condition
2664         on hosts that predate Posix 1003.1-1992, but we can't help this.
2665         Don't mishandle weird characters like space on pre-Posix hosts.
2666         Invoke mkdir at most once per dir arg on pre-Posix hosts.
2667         * doc/autoconf.texi (Programming in M4sh): Cross-reference to
2668         AC_PROG_MKDIR_P from AS_MKDIR_P.
2669         (Limitations of Usual Tools): Cross-reference to AC_PROG_MKDIR_P
2670         from mkdir.  Mention that Autoconf 2.60 install-sh is safe but
2671         earlier editions are not (including Automake 1.8.3).
2672         Do not suggest mkinstalldirs for thread-safety.
2673         * lib/autoconf/programs.m4 (AC_PROG_INSTALL): Insist on an 'install'
2674         that understands -d, so that AC_PROG_MKDIR_P can fall back on $INSTALL.
2675         * lib/m4sugar/m4sh.m4 (AS_MKDIR_P): Make it more robust in the
2676         presence of special characters and race conditions.
2677         * tests/local.at (AT_CHECK_ENV): Add mkdir_p to the list of variables
2678         in Autoconf's name space.
2680 2006-05-10  Bruno Haible  <bruno@clisp.org>
2681         and Paul Eggert  <eggert@cs.ucla.edu>
2683         * lib/autoconf/programs.m4 (AC_PROG_MKDIR_P): New macro, taken
2684         from Automake with minor changes.
2685         * doc/autoconf.texi (Particular Programs): Document AC_PROG_MKDIR_P.
2687 2006-05-10  Paul Eggert  <eggert@cs.ucla.edu>
2689         * config/install-sh: Update to Automake CVS version, as follows:
2690         2006-04-25  Stepan Kasal  <kasal@ucw.cz>
2691         * lib/install-sh: Simplify the expr implementation of dirname.
2692         2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
2693         * lib/install-sh: Handle --, and diagnose unknown options.
2695 2006-05-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2697         * tests/Makefile.am (AUTOTEST): Use `$(MY_AUTOM4TE)' instead of
2698         `./autom4te' to create `./testsuite', since the `all' target
2699         will ensure its presence, but `installcheck' should not create
2700         the uninstalled wrappers.
2702         * tests/torture.at (Unusual Automake input files): Skip if we
2703         detect automake < 1.8.
2705 2006-05-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2707         * lib/autoconf/c.m4 (AC_PROG_CC_STDC): If ac_cv_prog_cc_stdc
2708         is set to `no', then that overrides and sets ac_cv_prog_cc_c89
2709         and ac_cv_prog_cc_c99 to `no', for backward compatibility.
2710         * NEWS: Update.
2712 2006-05-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2714         * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): Take care not to
2715         munge (multiple) white space and other oddities.
2716         * tests/torture.at (AT_CHECK_AC_ARG_VAR): Make sure to M4-escape
2717         single quotes in variable assignment.
2718         (AC_ARG_VAR, configure invocation): Adjust tests to expose this
2719         and similar failures by adding multiple spaces, tabs, and other
2720         special characters.
2721         Report and different test suggested by Francesco Romani
2722         <fromani@gmail.com> and Andrew Church <achurch@achurch.org>.
2724         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): When we escape
2725         single quotes, we only need to search for single quotes; this
2726         both simplifies the search pattern, and makes us less
2727         susceptible to `echo' variations for arguments not containing
2728         single quotes.
2729         (_AC_ARG_VAR_VALIDATE): Likewise.
2731 2006-05-04  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2733         * doc/autoconf.texi (Special Shell Variables) <IFS>: Document
2734         `$*' and IFS concatenation issue with traditional shells and
2735         bash-2.04.  Report by Seanster@Seanster.com.
2737 2006-05-03  Bruno Haible  <bruno@clisp.org>
2739         * doc/autoconf.texi (Limitations of Usual Tools): Identify more
2740         precisely which Mac OS X versions have the od problem.
2742 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
2744         * doc/autoconf.texi: Use @option systematically.
2746 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
2747         and Bruno Haible  <bruno@clisp.org>
2749         * doc/autoconf.texi (Limitations of Usual Tools): Add a paragraph
2750         about 'od'.
2751         (Integer Overflow): Mention the special case of integer division
2752         overflow.
2754 2006-05-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2756         * lib/autoconf/general.m4 (_AC_CANONICAL_SPLIT): Cater for
2757         traditional shells like the Solaris one that do not use the
2758         first IFS character for assembling `$*'.
2759         Prompted by a related report from autoconf_bug@nro.ca.
2761 2006-05-01  Paul Eggert  <eggert@cs.ucla.edu>
2762         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2764         * doc/autoconf.texi (Limitations of Builtins, Limitations of Make):
2765         Mention more problems with the -e option.
2767 2006-04-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2769         * NEWS: Typo.
2770         * doc/autoconf.texi (Systemology): Mention the Heirloom Project.
2772         * doc/autoconf.texi (Introduction, Pointers): Use `@/' liberally
2773         in URLs to improve DVI formatted output (requires texinfo 4.6).
2774         (System Services, Systemology, Shellology): Likewise.
2775         (Limitations of Usual Tools): Rewrite Mac OS X example for nicer
2776         output.
2778         * doc/autoconf.texi (Fortran Compiler): Do not use `@ovar' in
2779         continuous text.
2780         (Runtime): Fix macro argument names to match description:
2781         `action-if-found' -> `action-if-true' and similarly.
2782         (Obsolete Macros): Likewise.
2783         * lib/autoconf/general.m4 (_AC_COMPILE_IFELSE): Likewise.
2784         (AC_COMPILE_IFELSE, AC_TRY_COMPILE, _AC_LINK_IFELSE)
2785         (AC_LINK_IFELSE, AC_TRY_LINK, AC_COMPILE_CHECK): Likewise.
2787 2006-04-29  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2789         * doc/autoconf.texi (Limitations of Make): Clean up markup.
2791         * ChangeLog: Typo.
2792         * doc/autoconf.texi (Portable Shell): Allow wrapped URLs, for
2793         DVI output.
2795 2006-04-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2797         * doc/autoconf.texi (Limitations of Builtins): Document FreeBSD
2798         /bin/sh set unsorted output.
2799         * lib/autoconf/general.m4 (_AC_CACHE_DUMP): Adjust.
2800         * tests/local.at: Likewise.
2802 2006-04-26  Paul Eggert  <eggert@cs.ucla.edu>
2804         * doc/autoconf.texi (Portable C and C++, Varieties of Unportability):
2805         (Integer Overflow, Null Pointers, Buffer Overruns):
2806         (Floating Point Portability, Exiting Portably): New sections.
2807         (Writing Test Programs): Fix some langauge.  Recommend exiting
2808         with status 1, not merely nonzero.  Clarify exit declaration.
2809         (Run Time): Move C exit status stuff to new Exiting Portably section.
2810         (Systemology): Mention Posix and levenez.  Update v7 reference.
2811         (Portable Shell): Mention the Posix shell.
2813 2006-04-25  Stepan Kasal  <kasal@ucw.cz>
2815         * bin/autoconf.as (me): Replace by as_me.
2817 2006-04-25  Paul Eggert  <eggert@cs.ucla.edu>
2819         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Don't use AS_ERROR,
2820         since as_me isn't set yet.
2822 2006-04-23  Paul Eggert  <eggert@cs.ucla.edu>
2824         Prepare for deprecation of AS_BASENAME and AS_DIRNAME, and fix
2825         a few minor bugs in this area.
2827         * doc/autoconf.texi (Programming in M4sh): Comment out the
2828         documentation of AS_BASENAME, for now.
2829         (Shell Substitutions): Do not use AS_DIRNAME in an example.
2830         (Limitations of Builtins) <basename>: Do not refer to
2831         AS_BASENAME.
2832         * bin/autoconf.as (me): Don't use AS_BASENAME.
2833         (dir): Remove the unused variable.
2834         * lib/m4sugar/m4sh.m4 (_AS_DETECT_REQUIRED): Renamed from
2835         AS_DETECT_REQUIRED.  All uses changed.
2836         (_AS_DETECT_SUGGESTED): Renamed from AS_DETECT_SUGGESTED.
2837         All uses changed.
2838         (_AS_DETECT_BETTER_SHELL): Put ;; at the end of a case.
2839         (AS_BASENAME): Use "basename --" to protect against leading "-".
2840         (_AS_BASENAME_EXPR): Renamed from AS_BASENAME_EXPR.  All uses changed.
2841         (_AS_BASENAME_SED): Renamed from AS_BASENAME_SED.  All uses changed.
2842         (_AS_BASENAME_PREPARE): Reject implementations that cannot handle "--".
2843         (_AS_DIRNAME_PREPARE): Likewise.
2844         (_AS_DIRNAME_EXPR): Renamed from AS_DIRNAME_EXPR.  All uses changed.
2845         (_AS_DIRNAME_SED): Renamed from AS_DIRNAME_SED.  All uses changed.
2846         (AS_DIRNAME): Use "dirname --".
2848 2006-04-23  Paul Eggert  <eggert@cs.ucla.edu>
2850         * doc/autoconf.texi (Runtime): Renamed from "Run Time".  All uses
2851         of "run time" and "run-time" changed to "runtime", for consistency.
2852         * lib/autoconf/fortran.m4: Likewise (in comment).
2853         * lib/autoconf/functions.m4: Likewise.
2854         * lib/autoconf/general.m4: Likewise.
2855         * lib/autoconf/headers.m4: Likewise.
2857         * doc/autoconf.texi (Run Time): Document the exit status situation
2858         with more accuracy and detail.
2860 2006-04-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2862         * doc/autoconf.texi (Introduction): The GNU Autoconf Macro
2863         Archive is not officially `GNU' any more.  Update URL.
2864         (Defining Directories): Likewise
2865         * lib/autoconf/c.m4 (AC_C_RESTRICT): Update URL.
2867 2006-04-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2869         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Remove the leading
2870         newline from the `trap' code to finish `config.log'; the NetBSD
2871         /bin/sh resets the exit status after an empty command, as
2872         documented in doc/autoconf.texi.
2873         Reported by Dalibor Topic <robilad@kaffe.org>.
2875 2006-04-19  Paul Eggert  <eggert@cs.ucla.edu>
2877         * doc/autoconf.texi (C Compiler): Clarify AC_C_TYPEOF.
2878         Suggested by Bruno Haible.
2880 2006-04-18  Paul Eggert  <eggert@cs.ucla.edu>
2882         * configure.ac (ac_cv_sh_n_works): Don't try to test for it, since
2883         some shells (e.g., Solaris 8 /bin/sh) implement it verrrry slowly.
2884         Instead, just list the shells that we know work.
2885         * tests/local.at (AT_CHECK_SHELL_SYNTAX): Remove 2nd arg.  All uses
2886         changed.  Be more cautious about the _cv_ variable.
2887         * tests/tools.at (Syntax of the shell scripts): Check the
2888         _cv_ variable once, at first, to avoid an internal autoconf error
2889         when sh -n does not work.
2891 2006-04-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2893         * lib/Autom4te/FileUtils.pm: Sync from Automake.
2895 2006-04-16  Paul Eggert  <eggert@cs.ucla.edu>
2897         * lib/autoconf/general.m4 (_AC_INIT_CONFIG_LOG): Don't
2898         use ">&-" since we're only 99.999% sure that this is portable,
2899         and since the MinGW bug is fixed in a different way.
2900         * lib/autotest/general.m4 (AT_INIT): Likewise.
2902 2006-04-16  Stepan Kasal  <kasal@ucw.cz>
2904         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Handle --recheck
2905         before opening config.log, to avoid hitting a bug on MinGW.
2907 2006-04-14  Paul Eggert  <eggert@cs.ucla.edu>
2909         * lib/autoconf/general.m4 (_AC_INIT_CONFIG_LOG): Close
2910         AS_MESSAGE_LOG_FD before reopening it onto the log file.
2911         This works around a MinGW bug reported by Eric Paire.
2912         Make sure that all writes to the log file append to it,
2913         rather than possibly losing data.
2914         * lib/autotest/general.m4 (AT_INIT): Likewise.
2916 2006-04-14  Stepan Kasal  <kasal@ucw.cz>
2918         * lib/Autom4te/FileUtils.pm (find_file): Fix a typo in the
2919         description.
2921 2006-04-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2923         * NEWS: Update.
2925         * configure.ac (AC_INIT): Bump to 2.59d.
2927 2006-04-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2929         Version 2.59c.
2931         * Makefile.maint (news-date-check): Do not require a leading `*'
2932         before the release date in NEWS.
2934 2006-04-12  Stepan Kasal  <kasal@ucw.cz>
2935         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2937         * lib/autoconf/status.m4 (_AC_OUTPUT_FILE): If the templates for
2938         the instantiated file do not contain the string 'datarootdir'
2939         but contain @datadir@, @docdir@, @infodir@, @localedir@, or
2940         @mandir@, replace the reference '${datarootdir}' by the value.
2941         * tests/torture.at (datarootdir workaround): New test.
2942         * NEWS: Advertise this temporary fixup.
2943         Based on a patch by Bruno Haible, reported and analyzed by
2944         Paul Eggert and Noah Misch.
2946 2006-04-12  Eric Blake  <ebb9@byu.net>
2948         * tests/autotest.at (Debugging a failed test): Fix comment.
2950 2006-04-12  Stepan Kasal  <kasal@ucw.cz>
2952         * lib/m4sugar/m4sh.m4 (_AS_LN_S_PREPARE): Simplify the summary of
2953         all the changes since 2006-04-07.
2955 2006-04-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2957         * lib/m4sugar/m4sh.m4 (_AS_LN_S_PREPARE): If `ln -s file1 file2'
2958         succeeded, but `ln -s file dir' failed, take care to remove the
2959         leftover target before the next test, to prevent its spurious
2960         failure; also make sure `ln file dir' works before selecting it.
2961         Thanks to Keith Marshall for pointing this out.
2962         * THANKS: Update.
2964         * lib/autotest/general.m4 (AT_INIT): Store quoted variable
2965         assignments in `at_debug_args', so that we put them correctly
2966         in the `run' script.
2967         * tests/autotest.at (Debugging a failed test): Unmark XFAIL.
2968         Reported by Eric Blake.
2970 2006-04-11  Eric Blake  <ebb9@byu.net>
2972         * tests/autotest.at (AT_CHECK_AT): Add new argument, to allow
2973         top-level tests after micro-suite has been run.   Used in...
2974         (Debugging a successful test, Debugging script and environment),
2975         (Debugging a failed test): ...these new tests.  The first of these
2976         is fixed by...
2977         * lib/autotest/general.m4 (_AT_CREATE_DEBUGGING_SCRIPT): New
2978         macro, split out from...
2979         (AT_INIT): ...here, so that using -d also generates a run script.
2980         Document that -d inhibits top-level logging.
2981         * doc/autoconf.texi (testsuite Invocation): Document that -d only
2982         inhibits top-level logging; debug scripts are created.
2984         * lib/autotest/general.m4 (_AT_CHECK): Avoid syntax error on empty
2985         check.
2986         * tests/autotest.at (Empty test, Empty check): New test to check it.
2988         * lib/autoconf/c.m4 (AC_C_CONST, AC_C_VOLATILE): Avoid warnings
2989         from gcc.
2991 2006-04-10  Stepan Kasal  <kasal@ucw.cz>
2993         * tests/mktests.sh: Use "trap '' 0", not "trap 0".  Do not touch
2994         the files if a problem appears.  Make the empty *.at files
2995         read-only, too.  Proposed by Ralf Wildenhues.
2997 2006-04-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2999         * config/Makefile.am: Add comment to force updated Makefile.in.
3001         * lib/freeze.mk: Fix typo in comment.  Unlike the last, white
3002         space only patch to this file, this patch causes the Makefile.in
3003         files that include freeze.mk to be updated, and thus have a
3004         newer time stamp again, which in turn makes a pristine CVS
3005         checkout have correct time stamps.
3007         * Makefile.maint (cvs-sv): New macro, to be used..
3008         (config.guess-url_prefix, config.sub-url_prefix)
3009         (texinfo.tex-url_prefix, standards.texi-url_prefix): ..here;
3010         point to CVS text checkout of Gnulib files.
3011         (copyright-check): Bump current year.
3012         (announcement): Do not hard-wire `./announce-gen'.
3013         (cvs-update): Propagate failures of `cvs' and `move-if-change'
3014         correctly.
3015         * Makefile.cfg (executable-update): Use `chmod a+x' instead of
3016         `chmod +x'.
3017         (wget_files): Update config.guess, config.sub, texinfo.tex by
3018         `wget-update', now that their URLs work again.
3020 2006-04-10  Paul Eggert  <eggert@cs.ucla.edu>
3022         * doc/autoconf.texi (Particular Types): Don't use AC_CHECK_TYPE.
3023         Problem noted by Paul D. Smith.
3025 2006-04-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3027         * doc/autoconf.texi: Remove unused words from word list.
3028         * .x-sc_prohibit_atoi_atof, .x-sc_space_tab, .x-sc_sun_os_names,
3029         .x-sc_trailing_space: New files.
3031         * doc/standards.texi: Sync from gnulib.
3033         * NEWS, doc/autoconf.texi (AC_LIBOBJ vs LIBOBJS): Mark
3034         `LIBOBJDIR' as experimental.
3036         * lib/m4sugar/m4sh.m4 (_AS_LN_S_PREPARE): MSYS `ln -s' fails
3037         with a target directory; it's internally implemented as `cp'
3038         anyway, but since Autoconf advertises the possibility to use
3039         a target directory when LN_S is `ln -s', we need to find out.
3040         Reported by Rolf Ebert <rolf.ebert.gcc@gmx.de> against MSYS,
3041         analyzed by Keith Marshall <keith.marshall@total.com>.
3043         * THANKS: Update.
3045 2006-04-10  Paul Eggert  <eggert@cs.ucla.edu>
3047         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Just output
3048         confdefs.h as-is.  In general, if it has backslash-newline or the
3049         like, then it doesn't work either to sort or to remove empty
3050         lines.
3052 2006-04-09  Stepan Kasal  <kasal@ucw.cz>
3054         * tests/Makefile.am (AUTOCONF_FILES): Fix typo in the comment.
3056 2006-04-09  Alexandre Duret-Lutz  <adl@gnu.org>
3058         * lib/autom4te.in (Automake-preselections): Preselect
3059         _AM_SUBST_NOTMAKE.
3061 2006-04-08  Paul Eggert  <eggert@cs.ucla.edu>
3063         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Use '\'' for an
3064         apostrophe within a single-quoted string, as this is the usual
3065         tradition and is easier to read than '"'"'.  Don't rely on the
3066         shell treating "$/" like '$/'.  Use a more-consistent indenting
3067         style for the trap.
3069 2006-04-09  Eric Blake  <ebb9@byu.net>
3071         * tests/autotest.at (Backquote command substitution),
3072         (Multiline backquote command substitution): Remove mistaken
3073         AT_NO_CMDSUBST from the 2006-03-14 patch, which was meant to be
3074         applied...
3075         (Parenthetical command substitution, Multiline parenthetical
3076         command substitution): here.
3078 2006-04-08  Paul Eggert  <eggert@cs.ucla.edu>
3080         Import macros from gnulib (often changing their name).
3082         * NEWS: AC_C_TYPE_LONG_DOUBLE is now obsolete.
3083         New macros AC_CHECK_DECLS_ONCE, AC_CHECK_FUNCS_ONCE,
3084         AC_CHECK_HEADERS_ONCE, AC_FUNC_STRTOLD, AC_HEADER_ASSERT,
3085         AC_STRUCT_DIRENT_D_INO, AC_STRUCT_DIRENT_D_TYPE,
3086         AC_TYPE_LONG_DOUBLE, AC_TYPE_LONG_DOUBLE_WIDER, AC_TYPE_INT8_T,
3087         AC_TYPE_INT16_T, AC_TYPE_INT32_T, AC_TYPE_INT64_T,
3088         AC_TYPE_INTMAX_T, AC_TYPE_INTPTR_T, AC_TYPE_LONG_LONG_INT,
3089         AC_TYPE_UINT8_T, AC_TYPE_UINT16_T, AC_TYPE_UINT32_T,
3090         AC_TYPE_UINT64_T, AC_TYPE_UINTMAX_T, AC_TYPE_UINTPTR_T,
3091         AC_TYPE_UNSIGNED_LONG_LONG_INT, AC_USE_SYSTEM_EXTENSIONS.
3092         The manual mentions Gnulib more prominently.
3093         * doc/autoconf.texi (Gnulib): New node.
3094         (Pointers): Add Gnulib URL.
3095         (Particular Functions): Alphabetize.  Add AC_FUNC_STRTOLD.
3096         (Generic Functions): Add AC_CHECK_FUNCS_ONCE.  Refer to new
3097         Gnulib section.
3098         (Particular Headers): Add AC_HEADER_ASSERT.  For stdbool.h,
3099         suggest a #define rather than a typedef for _Bool, and mention
3100         Gnulib rather than trying to substitute stdbool code.
3101         (Generic Headers): Add AC_CHECK_HEADERS_ONCE.
3102         (Generic Declarations): Add AC_CHECK_DECLS_ONCE.
3103         (Particular Structures): Add AC_STRUCT_DIRENT_D_INO,
3104         AC_STRUCT_DIRENT_D_TYPE.
3105         (Particular Types): Mention stdint.h and inttypes.h as standard
3106         headers too.
3107         Add AC_TYPE_INT8_T, AC_TYPE_INT16_T, AC_TYPE_INT32_T, AC_TYPE_INT64_T,
3108         AC_TYPE_INTMAX_T, AC_TYPE_INTPTR_T, AC_TYPE_LONG_DOUBLE,
3109         AC_TYPE_LONG_DOUBLE_WIDER, AC_TYPE_LONG_LONG_INT, AC_TYPE_UINT8_T,
3110         AC_TYPE_UINT16_T, AC_TYPE_UINT32_T, AC_TYPE_UINT64_T,
3111         AC_TYPE_UINTMAX_T, AC_TYPE_UINTPTR_T, AC_TYPE_UNSIGNED_LONG_LONG_INT.
3112         (C Compiler): Move AC_C_LONG_DOUBLE to ...
3113         (Obsolete Macros): here.  Under AC_LONG_DOUBLE, mention
3114         AC_TYPE_LONG_DOUBLE or AC_TYPE_LONG_DOUBLE_WIDER instead.
3115         (Posix Variants): Add AC_USE_SYSTEM_EXTENSIONS.
3116         (Coding Style).  Don't mention m4_expand_once.
3117         * lib/autoconf/c.m4 (AC_C_LONG_DOUBLE): Implement via
3118         AC_TYPE_LONG_DOUBLE_WIDER.  Now obsolete.
3119         * lib/autoconf/functions.m4 (_AH_CHECK_FUNCS): New macro.
3120         (AC_CHECK_FUNCS): Use it.
3121         (AC_CHECK_FUNCS_ONCE, AC_FUNC_STRTOLD): New macros.
3122         (AC_FUNC_WAIT3): "the Open Group standards" -> "POSIX".
3123         * lib/autoconf/general.m4 (AC_CHECK_DECLS_ONCE): New macro.
3124         * lib/autoconf/headers.m4 (AC_CHECK_HEADERS_ONCE): New macro.
3125         (AC_HEADER_ASSERT): New macro.
3126         (AC_HEADER_STDBOOL): Don't assume "#error" works.
3127         Catch a bug in IBM AIX xlc compiler version 6.0.0.0.
3128         Catch a bug in an HP-UX C compiler.
3129         * lib/autoconf/specific.m4 (AC_USE_SYSTEM_EXTENSIONS): New macro.
3130         * lib/autoconf/types.m4 (AC_TYPE_INTMAX_T. AC_TYPE_UINTMAX_T):
3131         (AC_TYPE_INTPTR_T, AC_TYPE_UINTPTR_T. AC_TYPE_LONG_DOUBLE):
3132         (AC_TYPE_LONG_DOUBLE_WIDER, AC_C_LONG_DOUBLE, AC_TYPE_LONG_LONG_INT):
3133         (AC_TYPE_UNSIGNED_LONG_LONG_INT, _AC_TYPE_INT, _AC_TYPE_UNSIGNED_INT):
3134         (_AC_STRUCT_DIRENT, AC_STRUCT_DIRENT_D_INO, AC_STRUCT_DIRENT_D_TYPE):
3135         New macros.
3137         * tests/mktests.sh (ac_exclude_list, au_exclude_list): Do not
3138         use /^foo|bar$/, it does not mean /^(foo|bar)$/.
3140 2006-04-08  Stepan Kasal  <kasal@ucw.cz>
3142         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Fix the wording
3143         of the warning introduced by the 2001-08-28 change.
3145 2006-04-08  Stepan Kasal  <kasal@ucw.cz>,
3146             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3148         * lib/autoconf/general.m4 (AC_CACHE_SAVE): All `ac_cv_env_foo'
3149         variables shall be overriden by the cache.
3150         * tests/torture.at (AC_ARG_VAR): Test also with a first value
3151         that contains braces.
3153 2006-04-07  Stepan Kasal  <kasal@ucw.cz>
3155         Revert the patch from 2006-04-01 and only improve
3156         _AS_DETECT_BETTER_SHELL:
3158         * lib/m4sugar/m4sh.m4 (_AS_PATH_WALK): Do not optimize; do not
3159         skip nonexistent directories.
3160         (_AS_DETECT_BETTER_SHELL): The optimization is moved here--try
3161         only shell candidates which exist.
3162         (AS_UNAME): No need to give three parameters to _AS_PATH_WALK.
3163         * lib/autotest/general.m4 (AT_INIT): No need to give three
3164         parameters to _AS_PATH_WALK.
3166 2006-04-07  Stepan Kasal  <kasal@ucw.cz>,
3167             Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3169         * bin/autoupdate.in (handle_autoconf_patches): Change the way we
3170         distinguish m4sugar macros.
3171         * tests/tools.at (autoupdating with aclocal and m4_include):
3172         New test.  Bug reported by Gary V. Vaughan <gary@gnu.org>,
3173         test case by Noah Misch <noah@cs.caltech.edu>.
3175 2006-04-07  Stepan Kasal  <kasal@ucw.cz>
3177         Revert my change from 2006-03-17, in other words:
3178         * lib/m4sugar/m4sh.m4 (AS_BOURNE_COMPATIBLE): Insert BIN_SH=xpg4
3179           and DUALCASE=1.
3180         (AS_SHELL_SANITIZE): Remove DUALCASE=1.
3181         * doc/autoconf.texi (Special Shell Variables) <BIN_SH>: Say that
3182           it is set.
3184 2006-04-07  Eric Blake  <ebb9@byu.net>
3186         * doc/autoconf.texi (Programming in M4sh): Document that
3187         AS_MKDIR_P exits the script on failure.
3188         * lib/autotest/general.m4: Remove redundant AS_ERROR.
3190 2006-04-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3192         * config/elisp-comp, config/install-sh, config/mdate-sh,
3193         config/missing, config/mkinstalldirs: Sync from Automake.
3195         * lib/Autom4te/FileUtils.pm, lib/Autom4te/Struct.pm: Sync
3196         from Automake.
3198         * doc/make-stds.texi: Sync from gnulib.
3200 2006-04-06  Eric Blake  <ebb9@byu.net>
3202         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_O): Inside cache
3203         check, s/ac_exeext/ac_cv_exeext/.  Fixes regression introduced
3204         2006-04-01.
3206 2006-04-06  Stepan Kasal  <kasal@ucw.cz>,
3207             Eric Blake  <ebb9@byu.net>,
3208             Paul Eggert  <eggert@cs.ucla.edu>,
3209             Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3211         * lib/autoconf/general.m4 (_AC_CACHE_DUMP): Fix the detection of
3212         whether `set' quotes correctly: redirect stderr of the tested
3213         `set', and use a subshell, for Ultrix; use `sed' instead of
3214         `grep' for zsh `set' which may write binary output; match only
3215         at the beginning of a line, to avoid false positives.
3216         In order to avoid false positives by unrelated variables with
3217         multiline content, put the dump algorithm in a subshell and
3218         unset all variables containing newlines (except some which are
3219         special to the shell).  Warn about cache variables that are
3220         unset.
3222 2006-04-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3224         * config/config.guess, config/config.sub, config/texinfo.tex:
3225         Sync from upstream.
3227         * tests/mktests.sh: Reword comments.
3229         * tests/mktests.sh: Only skip internal macros starting with
3230         `_AC_' or `__AC_'.  Noted by Stepan Kasal.
3231         Update exclusion lists for the test suite to this end:
3232         (AC_ARG_VAR): Do test this now.
3233         (AC_SEARCH_LIBS, AC_REPLACE_FUNCS): Need an argument.
3234         (AC_LINKER_OPTION): Remove (renamed to _AC_LINKER_OPTION).
3235         (AC_LIST_MEMBER_OF): Likewise (renamed to _AC_LIST_MEMBER_IF).
3236         (AC_LINK_FILES): Obsoleted since (and thus AU_DEFUN'ed).
3238         * doc/autoconf.texi (Shell Substitutions): Mention the MSYS
3239         shell issue with double-quoted command substitutions of native
3240         commands.
3241         Reported to MSYS by Mark Cave-Ayland, to Autoconf by Keith
3242         Marshall.
3244         * Makefile.maint (sc_cast_of_argument_to_free): Do not fail when
3245         no file matches the glob, discard the warning, set `nullglob'.
3246         (syntax-check): Likewise.
3247         (sc_cast_of_x_alloc_return_value): Likewise.
3248         (sc_cast_of_alloca_return_value, sc_error_exit_success)
3249         (sc_prohibit_jm_in_m4, .re-list, sc_unmarked_diagnostics)
3250         (m4-check): Likewise.
3251         (sc_system_h_headers): Do not print rule on execution.
3252         (sc_tight_scope): Do not fail for non-existing `src' directory.
3253         (sc_changelog): Skip the Copyright footer.
3254         * lib/autoconf/lang.m4: Remove trailing space.
3256         * lib/autoconf/status.m4: More replacements to
3257         <tab><space> where this makes sense.
3259 2006-04-06  Stepan Kasal  <kasal@ucw.cz>
3261         * tests/Makefile.am (maintainer-check-posix):
3262           s/POSIXLY_CORRECTLY/POSIXLY_CORRECT/
3264         * lib/autoconf/status.m4 (_AC_CONFIG_FOOS): Append TAGS to
3265           ac_config_<foo>s again, sometimes normalized, sometimes not.
3266         (AC_CONFIG_FILES, AC_CONFIG_HEADERS, AC_CONFIG_LINKS):
3267         (AC_CONFIG_COMMANDS): Do not do so here.
3268         (_AC_CONFIG_REGISTER_DEST): Double quote the tags in macros _AC_LIST_TAGS
3269           and_AC_LIST_TAG_COMMANDS; fixes another regression introduced by the
3270           2005-07-25 rewrite.  Noticed by Noah Misch.
3272         * lib/autoconf/general.m4 (AC_PRESERVE_HELP_ORDER): Do not define
3273           _AC_PRESERVE_HELP_ORDER, ...
3274         (AC_ARG_ENABLE, AC_ARG_WITH): ... use AC_PROVIDE_IFELSE insetad.
3276         * lib/autoconf/general.m4 (AC_ARG_VAR): Do not use m4_divert_once
3277           inside m4_expand_once; it is redundant.
3279         * lib/autoconf/general.m4 (_AC_INIT_HELP): Remove the broken support
3280           for --help from Cygnus `configure.'
3282 2006-04-06  Paul Eggert  <eggert@cs.ucla.edu>
3284         * doc/autoconf.texi (C Compiler): Warn about #error.  Follows up
3285         on a patch proposed by Ralf Wildenhues.
3287 2006-04-05  Paul Eggert  <eggert@cs.ucla.edu>
3289         * lib/autoconf/status.m4: Replace <space>''<tab> with
3290         <tab><space> where this makes sense.
3292 2006-04-05  Howard Chu  <hyc@highlandsun.com>  (trivial change)
3293             Noah Misch  <noah@cs.caltech.edu>
3295         * lib/autoconf/general.m4 (AC_PRESERVE_HELP_ORDER): New macro.
3296         (AC_ARG_ENABLE, AC_ARG_WITH): Adjust.
3297         * doc/autoconf.texi (Help Formatting): New node.
3298         * NEWS: Announce AC_PRESERVE_HELP_ORDER.
3300 2006-04-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3302         * TODO, config/Makefile.am, lib/freeze.mk, lib/autoconf/c.m4,
3303         lib/autoconf/specific.m4, lib/autoconf/status.m4,
3304         lib/autoconf/types.m4, lib/autotest/general.m4,
3305         tests/mktests.sh, tests/torture.at: White space cleanup:
3306         remove some SPACE before TAB, or add quoting ('' or @&t@).
3308         * NEWS, TODO, bin/autoreconf.in: `filesystem' -> `file system'.
3310         * doc/autoconf.texi (Shell Substitutions): Document `^' vs. `|'.
3312 2006-04-05  Eric Blake  <ebb9@byu.net>
3314         * lib/autotest/general.m4 (AT_INIT): Prep AT_*_all, so that an
3315         empty test suite works.
3316         * tests/autotest.at (Empty test suite): Remove xfail.
3318 2006-04-05  Noah Misch  <noah@cs.caltech.edu>
3320         * lib/autoconf/status.m4 (_AC_CONFIG_FOOS): Do not append normalized
3321         TAGS to ac_config_<foo>s.
3322         (AC_CONFIG_FILES, AC_CONFIG_HEADERS, AC_CONFIG_LINKS): Do so here.
3323         (AC_CONFIG_COMMANDS): Append NAME to ac_config_commands without
3324         normalizing it, consistent it with previous releases.
3325         * tests/torture.at (Macro calls in AC_CONFIG_COMMANDS tags): New test.
3327 2006-04-05  Paul Eggert  <eggert@cs.ucla.edu>
3329         * lib/m4sugar/m4sh.m4 (AS_BASENAME_EXPR, AS_DIRNAME_EXPR):
3330         Use simplified args that Eric Blake originally suggested.
3332 2006-04-04  Paul Eggert  <eggert@cs.ucla.edu>
3334         * tests/mktests.sh: Don't use 'cat'; just read the files directly.
3335         Prefer 'sort -u' to 'sort | uniq'.  Filter data before sorting it.
3336         Use 'comm' rather than N instances of grep; this also fixes a bug
3337         whereby substrings were incorrectly matched, causing us to not
3338         generate tests for AC_F77_NAME_MANGLING and AC_FUNC_LSTAT.
3339         (exclude_list): Exclude empty macros.
3340         (ac_exclude_list): Exclude AC_INCLUDES_DEFAULT.
3342         Use awk rather than grep -E or egrep, to avoid
3343         portability problems with regular expressions containing newlines.
3344         (exclude_list, ac_exclude_list, au_exclude_list, ac_exclude_script):
3345         Switch from grep to awk syntax.
3346         (ac_exclude_script): Renamed from ac_exclude_egrep.
3347         (au_exclude_script): Renamed from au_exclude_egrep.
3349 2006-04-04  Noah Misch  <noah@cs.caltech.edu>
3351         * lib/autoconf/general.m4 (_AC_INIT_HELP): Only `configure.in' evidences
3352         a subdirectory subject to Cygnus `configure'.
3353         * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): Likewise.
3355         * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_MONGREL): Omit the bug
3356         report request when we have no AC_PACKAGE_BUGREPORT.
3358 2006-04-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3360         * THANKS: Update.
3362         * tests/mktests.sh: Update copyright year in the header of the
3363         generated files.
3365         * lib/autoconf/c.m4 (AC_C_INLINE): Do not skip cleanup code.
3366         (AC_C_RESTRICT): Likewise.  Furthermore, add a function with a
3367         typedef'ed restricted pointer, to catch a compiler bug on
3368         HP-UX 11.x, and fix warnings so it passes with -Werror.
3369         (_AC_PROG_CC_C99): Likewise.
3370         Reported by Albert Chin <china@thewrittenword.com>.
3371         * tests/mktests.sh: Do not skip AC_C_INLINE, AC_C_RESTRICT.
3373 2006-04-03  Noah Misch  <noah@cs.caltech.edu>
3375         * bin/autoscan.in (subdirs): New global.
3376         (scan_file): Prune directories with configure{,.{ac,in,gnu}}.
3377         (output): Emit AC_CONFIG_SUBDIRS as needed.
3378         * tests/autoscan.at (autoscan): Remove XFAIL.
3380 2006-04-03  Noah Misch  <noah@cs.caltech.edu>
3382         * lib/autoconf/general.m4 (AC_CACHE_SAVE): Use AC_MSG_NOTICE.
3384 2006-04-03  Eric Blake  <ebb9@byu.net>
3386         * THANKS: Add myself.
3388 2006-04-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3390         * lib/autotest/general.m4 (AT_INIT): Add `at_testdir' to pointer
3391         to log, point to testsuite output tree.
3393 2006-04-02  Paul Eggert  <eggert@cs.ucla.edu>
3395         * NEWS: AC_PROG_CC and AC_PROG_CXX no longer declare 'exit'.
3396         * doc/autoconf.texi (Function Portability): Mention that C++
3397         has trouble with 'exit'.
3398         (Guidelines): Test programs shouldn't use 'exit'.
3399         * lib/autoconf/c.m4 (_AC_PROG_CXX_EXIT_DECLARATION):
3400         Remove; all uses removed.
3401         (AC_LANG_INT_SAVE(C), AC_C_BIGENDIAN):
3402         Return from 'main' instead of calling 'exit'.
3403         * lib/autoconf/functions.m4 (_AC_LIBOBJ_ALLOCA, AC_FUNC_CLOSEDIR_VOID):
3404         (_AC_FUNC_FNMATCH_IF, AC_FUNC_GETGROUPS):
3405         (AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK, _AC_FUNC_MALLOC_IF):
3406         (AC_FUNC_MEMCMP, AC_FUNC_MKTIME, AC_FUNC_MMAP, _AC_FUNC_REALLOC_IF):
3407         (AC_FUNC_SETPGRP, _AC_FUNC_STAT, AC_FUNC_STRTOD, AC_FUNC_STRERROR_R):
3408         (AC_FUNC_STRNLEN, AC_FUNC_SETVBUF_REVERSED, AC_FUNC_UTIME_NULL):
3409         (_AC_FUNC_FORK, _AC_FUNC_VFORK, AC_FUNC_WAIT3): Likewise.
3410         * lib/autoconf/headers.m4 (AC_HEADER_STDC): Likewise.
3411         * lib/autoconf/specific.m4 (AC_SYS_RESTARTABLE_SYSCALLS): Likewise.
3412         * lib/autoconf/types.m4 (AC_TYPE_GETGROUPS): Likewise.
3413         * tests/compile.at: Likewise.
3415 2006-04-02  Pavel Roskin  <proski@gnu.org>
3417         * doc/autoconf.texi (AC_PATH_X): Update per 2005-08-26 change.
3419 2006-04-01  Stepan Kasal  <kasal@ucw.cz>
3421         Clean up _AC_COMPILER_EXEEXT* macros.
3423         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Don't try to
3424           detect exeext, it will be done by _AC_COMPILER_EXEEXT_O; just set
3425           ac_file to the name of the default output file and call
3426           _AC_COMPILER_EXEEXT_WORKS.  Move the definition of ac_files and the
3427           initial `rm' of the candidate files...
3428         (_AC_COMPILER_EXEEXT): ... here and simplify them.  Moreover, use
3429           the same list in subsequent `rm' calls, and for the temporary
3430           redefinition of ac_clean_files; call _AC_COMPILER_OBJEXT at the end,
3431           and don't call the other _AC_COMPILER_EXEEXT_* macros directly, use...
3432         (_AC_COMPILER_EXEEXT_TESTS): ... this new macro.
3433         (_AC_COMPILER_EXEEXT_O): Don't export ac_cv_exeext, it's not needed (or
3434           no longer needed) by libtool.  Make it a cache check.
3435         (_AC_COMPILER_EXEEXT_CROSS): Remove the comment, it was obviously
3436           copied here by mistake.
3437         (AC_NO_EXECUTABLES): Redefine _AC_COMPILER_EXEEXT_TESTS, not
3438           _AC_COMPILER_EXEEXT.
3439         * lib/autoconf/c.m4 (AC_PROG_CC, AC_PROG_CXX, AC_PROG_OBJC): Do not call
3440           _AC_COMPILER_OBJEXT directly.
3441         * lib/autoconf/fortran.m4 (_AC_PROG_FC): Likewise.
3443 2006-04-01  Stepan Kasal  <kasal@ucw.cz>
3445         * lib/m4sugar/m4sh.m4 (_AS_DIRNAME_PREPARE): New macro.
3446         (AS_DIRNAME): Use it.
3447         (_AS_PREPARE): Add _AS_DIRNAME_PREPARE.
3449         * tests/*.at: Remove the generated ones.
3451 2006-04-01  Stepan Kasal  <kasal@ucw.cz>
3453         * lib/autotest/general.m4 (AT_INIT): Don't optimize the first PATH walk.
3455 2006-04-01  Eric Blake  <ebb9@byu.net>
3457         * lib/m4sugar/m4sh.m4 (_AS_PATH_WALK): Optimize nonexistent
3458         directories, unless optional third argument supplied.
3459         (AS_UNAME): Don't optimize PATH walk.
3461         * lib/Autom4te/Struct.pm, lib/autoconf/c.m4: s/non-existent/nonexistent/
3463 2006-04-01  Eric Blake  <ebb9@byu.net>
3464         and Stepan Kasal  <kasal@ucw.cz>
3466         * lib/m4sugar/m4sh.m4: Sort sections as implied by the comments,
3467         and fix some typos.
3469 2006-04-01  Noah Misch  <noah@cs.caltech.edu>
3471         * lib/autoconf/general.m4 (_AC_INIT_VERSION): Emit script name and
3472         Autoconf version number despite a zero- or one-argument AC_INIT.
3474         * bin/autoreconf.in (parse_args): Multiple -v send --verbose to
3475         subordinate tools.
3476         * lib/Autom4te/General.pm (getopt): Make -v and -d incremental.
3477         * doc/autoconf.texi (autoreconf Invocation): Document it.
3479         * doc/autoconf.texi: Use `Cygwin', `MinGW', and `license' consistently.
3480         Append LocalWords so ispell-buffer passes cleanly.  Spelling fixes.
3482 2006-04-01  Eric Blake  <ebb9@byu.net>
3484         * lib/m4sugar/m4sh.m4 (AS_MKDIR_P): Allow use in shell lists.
3485         * lib/autotest/general.m4: Be tolerant of existing directory when
3486           rm failed to remove it.
3488 2006-04-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3490         * bin/autoupdate.in: Redefine m4_location so that warnings print
3491         the correct lines of the input file by subtracting..
3492         (_au__first_line): ..this new definition.
3494         * lib/autoconf/general.m4 (AC_COMPILE_CHECK): Prefer
3495         AC_MSG_CHECKING over obsolete AC_CHECKING in autoupdated code.
3496         Remove stray newline in output.
3497         (AC_FOREACH): AU_DEFUN this as literal for autoupdate, and also
3498         AC_DEFUN this for autoconf, including the obsoletion diagnose.
3499         Fixes autoupdating of code where the replacement output contains
3500         m4sugar macros.
3501         * lib/autoconf/lang.m4 (AC_LANG_SAVE): Likewise.
3502         * tests/mktests.sh (ac_exclude_list): Add AC_FOREACH.
3503          (au_exclude_list): Add AC_LANG_SAVE.
3504         * tests/tools.at: Several new tests for all of this.
3505         * doc/autoconf.texi (Obsoleting Macros): Give a hint about the
3506         hairy details.
3507         The AC_LANG_SAVE issue was reported against Libtool by
3508         Dalibor Topic <robilad@kaffe.org>, and against Autoconf 2.57 by
3509         Kristian Kvilekval <kris@cs.ucsb.edu>.
3511 2006-04-01  Stepan Kasal  <kasal@ucw.cz>
3513         * bin/autoupdate.in: Handle m4 builtins and m4sugar macros together--
3514           switch all of them on and of when necessary.  Fixes the bug when
3515           m4sugar macros (e.g., m4_define) were expanded after the first
3516           automatic update (e.g., after AC_PREREQ or AC_INIT).
3518 2006-03-31  Paul Eggert  <eggert@cs.ucla.edu>
3520         * doc/autoconf.texi (Programming in M4sh): Sharpen the descriptions
3521         of AS_BASENAME and AS_DIRNAME.  Reported by Stepan Kasal.
3523         * lib/m4sugar/m4sh.m4 (AS_BASENAME_EXPR): Handle ///, ////, etc.
3524         correctly.  Problem reported by Eric Blake.
3525         (_AS_EXPR_PREPARE): Detect Tru64 expr bug.  Problem reported by
3526         Ralf Wildenhues.
3528 2006-03-30  Paul Eggert  <eggert@cs.ucla.edu>
3530         * doc/autoconf.texi (Programming in M4sh, Limitations of Usual Tools):
3531         Tighten up the basename/dirname wording.
3533 2006-03-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3535         * Makefile.maint (sc_texi_notab): New check: do not use TABs
3536         in texinfo files outside of verbatim environments.
3537         (syntax-check-rules): Update.
3538         * doc/autoconf.texi (Configuration Headers): Conform to it.
3540 2006-03-30  Chris Pickett <cpicke@cs.mcgill.ca>  (tiny change)
3542         * doc/autoconf.texi (autoreconf Invocation): Mention that -I for
3543           aclocal cannot be given on the command line.
3545 2006-03-29  Paul Eggert  <eggert@cs.ucla.edu>
3547         * doc/autoconf.texi (Programming in M4sh): Mention AS_BASENAME.
3548         Give an example for AS_DIRNAME instead of referring to Posix..
3549         (File System Conventions): Put discussion of // versus / here, and
3550         modernize it a bit.
3551         (Limitations of Usual Tools): Add basename.  Remove verbiage
3552         after dirname, since it got moved to the above sections.
3553         All this was inspired by a patch proposed earlier by Eric Blake.
3555 2006-03-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3557         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Quote
3558         `$0' to protect against spaces.
3559         * lib/autotest/general.m4 (AT_INIT): Likewise.
3560         * lib/m4sugar/m4sh.m4 (_AS_LINENO_PREPARE): Likewise, for
3561         `$0', $as_me.
3563 2006-03-26  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3565         * bin/autoscan.in: The value of find_configure_ac should be
3566         checked for existence, so we don't barf over a nonexisting
3567         configure.ac.  Reported by Laurence Darby <ldarby@tuffmail.com>.
3569 2006-03-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3571         * bin/autoupdate.in: Fix some typos.
3573 2006-03-21  Stepan Kasal  <kasal@ucw.cz>
3575         * doc/autoconf.texi (Installation Directory Variables): Fix typo.
3577         * lib/autoscan/autoscan.list: Refreshed.
3579 2006-03-20  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3581         * tests/local.at (AT_CHECK_ENV): Ignore AC_SUBSTed Objective C
3582         and Erlang related variables.
3584         * lib/autoconf/c.m4 (AC_LANG(Objective C), AC_LANG_OBJC)
3585         (_AC_LANG_ABBREV(Objective C), _AC_LANG_PREFIX(Objective C))
3586         (AC_LANG_SOURCE(Objective C), AC_LANG_PROGRAM(Objective C))
3587         (AC_LANG_CALL(Objective C), AC_LANG_FUNC_LINK_TRY(Objective C))
3588         (AC_LANG_BOOL_COMPILE_TRY(Objective C))
3589         (AC_LANG_INT_SAVE(Objective C), AC_LANG_PREPROC(Objective C))
3590         (AC_PROG_OBJCPP, AC_LANG_COMPILER(Objective C), AC_PROG_OBJC)
3591         (_AC_PROG_OBJC_G): New macros.
3592         (_AC_ARG_VAR_CPPFLAGS): Adjusted.
3593         * doc/autoconf.texi (Objective C Compiler): New node.
3594         (Preset Output Variables): Document OBJCFLAGS.
3595         (Language Choice): Document `Objective C' language.
3596         (Fortran Compiler): Fix typo.
3597         * NEWS: Updated.
3598         Inspired by a patch from David M. Lloyd <dmlloyd@tds.net>.
3600 2006-03-20  Stepan Kasal  <kasal@ucw.cz>
3602         * doc/autoconf.texi (Default Includes): Fix typo
3603           s/AC_HEADERS_STDC/AC_HEADER_STDC/
3604         (Limitations of Usual Tools): s/unwriteable/unwritable/
3605         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT, _AC_COMPILER_EXEEXT):
3606           Fix typos in the comments.
3608 2006-03-17  Stepan Kasal  <kasal@ucw.cz>
3610         * lib/autoconf/programs.m4 (AC_PATH_TOOL, AC_CHECK_TOOL, AC_CHECK_TOOLS):
3611           Factor out the warning to...
3612         (_AC_TOOL_WARN): ... this new macro; use `cross_compiling'.
3613         * tests/local.at (AT_CHECK_MACRO_CROSS): Avoid this warning.
3614         * tests/semantics.at (AC_C_BIGENDIAN): Likewise.
3616         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE): Do not special
3617           case `ac_delim' when writing the sed script.
3619         * lib/m4sugar/m4sh.m4 (AS_BOURNE_COMPATIBLE): Removed BIN_SH=xpg4,
3620           moved DUALCASE=1 ...
3621         (AS_SHELL_SANITIZE): ... here.
3622         * doc/autoconf.texi (Special Shell Variables) <BIN_SH>: Do not say
3623           that it is set.
3625         * lib/autoconf/programs.m4 (AC_CHECK_PROG): Quote the parameter of
3626           AC_SUBST.
3627         (_AC_PATH_PROG): Store the result to VARIABLE.
3628         (AC_PATH_PROG): No need to set VARIABLE again.
3630         * tests/local.at (AT_CHECK_MACRO_CROSS): New macro, creates two tests:
3631           the first one is usual AT_CHECK_MACRO test, the second one checks
3632           that the same works when cross-compiling.
3633         * tests/semantics.at (AC_CHECK_ALIGNOF, AC_CHECK_ALIGNOF struct):
3634         (AC_CHECK_SIZEOF, AC_CHECK_SIZEOF struct): Use it.
3636 2006-03-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3638         * lib/m4sugar/m4sh.m4 (_AS_DETECT_BETTER_SHELL): Prepend
3639         the directory `/usr/bin/posix' in the shell search, to prefer
3640         the Posix shell not only in subsequent spawns as with `$BIN_SH'
3641         on Tru64.
3643         * doc/autoconf.texi (contents): To fix texi2html output, hide
3644         `@setcontentsaftertitlepage' for HTML.
3645         (Writing Autoconf Macros): Likewise, insert space after `@c'.
3646         (Leviticus, Numbers, Deuteronomy): Likewise, change `@,c' to
3647         `@,{c}'.
3649 2006-03-16  Stepan Kasal  <kasal@ucw.cz>
3651         * lib/m4sugar/m4sh.m4 (_AS_PREPARE): Move the IFS setup and CDPATH
3652           sanitizing...
3653         (AS_SHELL_SANITIZE): ...here; mention _AS_PATH_WALK needs IFS set.
3654         * lib/autoconf/general.m4 (_AC_CANONICAL_SPLIT): Add an explanation
3655           why IFS is restored so late; thank you, Ralf, for reminding us.
3657 2006-03-15  Stepan Kasal  <kasal@ucw.cz>
3659         * doc/autoconf.texi (Pretty Help Strings): No need to use cached
3660           variables in the examples.
3662 2006-03-14  Romain Lenglet  <rlenglet@users.forge.objectweb.org>
3664         * doc/autoconf.texi (several sections): Cleaned up documentation for
3665         macros in erlang.m4.
3667 2006-03-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3669         * tests/autotest.at (AT_NO_CMDSUBST): New macro to determine
3670         failure condition for `$(cmd)' style command substitutions.
3671         (Parenthetical command substition, Multiline parenthetical
3672         command substition): Use it.
3674         * doc/autoconf.texi (Special Shell Variables): Missing word.
3675         Reported by Keith Marshall <keith.marshall@total.com>.
3677         * lib/m4sugar/m4sh.m4 (_AS_PATH_WALK): Do not forget to reset
3678         IFS even in case of empty `$PATH'.
3680 2006-03-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3682         * lib/autotest/general.m4 (AT_INIT) <at_optarg>: Optimize
3683         `expr' away if there is nothing to do.
3684         < --keywords >: Simplify and robustify argument handling.
3685         Revert erroneous comment from 2005-08-23.  Extend to allow
3686         keyword negation with `!'.
3687         Update help message.  Remove broken code to prevent running
3688         tests multiple times.
3689         * doc/autoconf.texi (testsuite Invocation) < --keywords >:
3690         Update and fix the documentation accordingly.
3691         * tests/autotest.at (Keywords): Renamed to..
3692         (Keywords and ranges): .. this.  Extended to make sure negated
3693         keywords, keywords taken from AT_SETUP arguments, and numeric
3694         test ranges work, and that matching is case-insensitive.
3696 2006-03-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3698         * lib/autoconf/types.m4 (_AC_CHECK_TYPE_NEW): Use a typedef to
3699         allow to pass unnamed structs even in C++.
3700         (AC_CHECK_SIZEOF):  Likewise.
3701         Also fix quoting error in `AC_MSG_FAILURE' arguments.
3702         * tests/semantics.at (AC_CHECK_ALIGNOF struct, AC_CHECK_SIZEOF
3703         struct): New tests for unnamed structs, each both native and
3704         cross-compiling.
3706         * lib/autoconf/c.m4 (AC_C_TYPEOF): Use typedef to avoid defining
3707         a structure inside a cast, for C++ conformance.
3708         * lib/autoconf/types.m4 (AC_CHECK_ALIGNOF): Likewise.
3709         Also fix quoting error in `AC_MSG_FAILURE' arguments.
3711         * lib/autoconf/c.m4 (AC_PROG_CC_STDC): If we cannot enable C99
3712         nor C89 mode, set `$ac_cv_prog_cc_stdc' to `no' instead of
3713         trying to execute the command `no'.
3715         * lib/autoconf/lang.m4 (AC_LANG_CONFTEST): AC_DEFUN this, not
3716         m4_define, so that the requirements of `AC_INCLUDES_DEFAULT' are
3717         expanded outside.
3719         * doc/autoconf.texi (autoconf Invocation): Fix typos in trace
3720         example.  Do not emphasize `$%', it is hardly new and special.
3721         Reported by Edouard Bechetoille <ebecheto@ens-lyon.fr>.
3723         * doc/autoconf.texi (Limitations of Usual Tools): Document
3724         OpenBSD and traditional `grep' failure to handle multiple
3725         patterns separated by newlines.
3727 2006-03-10  Romain Lenglet  <rlenglet@users.forge.objectweb.org>
3729         * doc/autoconf.texi (several sections): Add documentation for macros
3730         in erlang.m4.
3732 2006-03-10  Eric Blake  <ebb9@byu.net>
3734         * doc/autoconf.texi (Obsolete Macros): Fix wording of
3735         AC_TRY_LINK_FUNC.
3737 2006-03-10  Paul Eggert  <eggert@cs.ucla.edu>
3739         * doc/autoconf.texi: Use @acronym more consistently for acronyms
3740         like BSD, GPL, LGPL.  Fix minor English typos.
3741         (AC_STDC_HEADERS, AC_PROG_GCC_TRADITIONAL):
3742         Mention that these macros are becoming obsolete.
3743         (AC_STDC_HEADERS, AC_PROG_CC, AC_C_CONST, AC_C_VOLATILE):
3744         Use more modern terminology for which standard is what.
3745         (AC_PROG_CC): Mention gcc first, and remove obsolete references to egcs
3746         and to ansi2knr.
3747         (AC_PROG_CXX): Likewise.
3748         (AC_C_PROTOTYPES, Test Functions, AC_LIBOBJ vs LIBOBJS):
3749         Remove obsolete discussion about how to port to K&R.
3750         (Guidelines for Test Programs): Suggest AC_HEADER_STDBOOL rather than
3751         the obsolescent AC_HEADER_STDC.
3752         (AC_FOO_IFELSE vs AC_TRY_FOO): Don't use #error; test programs
3753         can't rely on it.
3755 2006-03-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3757         * tests/c.at (AC_PROG_CPP without warnings, AC_PROG_CPP via CC):
3758         Remove stdin redirection from /dev/null to allow pipe to work.
3760 2006-03-08  Paul Eggert  <eggert@cs.ucla.edu>
3762         * tests/c.at (AC_PROG_CPP without warnings, AC_PROG_CPP via CC):
3763         Require that /lib/cpp include stdio.h correctly.  Solaris 10's
3764         doesn't.  Problem reported by D'Arcy A MacIsaac and diagnosed by
3765         Ralf Wildenhues.
3767 2006-03-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3769         * lib/autoconf/status.m4 (_AC_SED_CMD_LIMIT): The limit for
3770         HP-UX sed is 99 commands, not 100.
3771         (_AC_OUTPUT_FILES_PREPARE): Do not count the `}' of an
3772         _AC_SUBST_FILES fragment.  Separate `{' and `r' commands by
3773         newline for portability.
3774         * tests/torture.at (Torturing config.status): Also test 100
3775         AC_SUBST_FILE invocations.  Fix test to actually verify the
3776         AC_CONFIG_FILES output.
3777         * doc/autoconf.texi (Limitations of Usual Tools): Document HP-UX
3778         command, label, and read-file `r' limits.  Unify HP-UX spelling.
3780         * tests/Makefile.am (edit, $(wrappers)): Do not use `$<' in
3781         non-suffix rule.
3782         ($(TESTSUITE_GENERATED_AT)): Use `$(srcdir)` for the benefit of
3783         non-GNU make.
3784         (autoconfdir, $(AUTOCONF_FILES)): Likewise.
3785         * tests/mktests.sh: Small shell portability fixes.
3787 2006-03-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3789         * doc/autoconf.texi (Caching Results): Fix the examples to use a
3790         recommended quoting style and discard unwanted output.
3792 2006-03-05  Paul Eggert  <eggert@cs.ucla.edu>
3794         * lib/autotest/general.m4 (_AT_NORMALIZE_TEST_GROUP_NUMBER): New macro.
3795         (AT_INIT): Use it, to remove arbitrary limit of 999,999 test
3796         cases, and to work around Tru64 expr bug.
3798 2006-03-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3800         * doc/autoconf.texi (Limitations of Usual Tools): Mention Tru64
3801         expr bug that turns the result of a regex match into a number if
3802         possible.
3804 2006-03-04  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3806         * lib/autoconf/types.m4 (AC_CHECK_ALIGNOF): Work around
3807         HPUX compiler bug, similarly to AC_CHECK_SIZEOF, as documented
3808         in section `Specific Compiler Characteristics'.
3810 2006-03-04  Eric Blake  <ebb9@byu.net>
3812         * lib/autoconf/functions.m4 (AC_FUNC_STRERROR_R): Avoid unused
3813         variable warning.
3815 2006-03-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3817         * lib/autoconf/status.m4 (_AC_OUTPUT_HEADER): Force correct
3818         order of variable initialization, so even the Solaris 2.6 shell
3819         can create a config header correctly.  Fixes lots of test suite
3820         failures.
3822 2006-02-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3824         * doc/autoconf.texi (Text processing Macros): New node to
3825         document the m4sugar macros m4_re_escape, m4_tolower,
3826         m4_toupper, m4_split, m4_normalize, m4_append, m4_append_uniq.
3828 2006-02-22  Paul Eggert  <eggert@cs.ucla.edu>
3830         * lib/autoconf/libs.m4 (_AC_PATH_X_DIRECT): Fix typo:
3831         XrmInitialize (0) -> XrmInitialize ().
3832         Reported by Toshio Kuratomi.
3834 2006-02-21  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3836         * lib/m4sugar/m4sh.m4 (AS_IF): Extend to allow more than one
3837         test, as in `if tests; then cmd1; elif ...; else ...; fi'.
3838         * doc/autoconf.texi (Programming in M4sh): Adjusted.
3839         * tests/m4sh.at (AS_IF and AS_CASE): Test this.  Also make sure
3840         both macros are defun'ed so that required macros are evaluated
3841         outside.
3843         * doc/autoconf.texi (Prerequisite Macros): State more precisely
3844         where a required macro will be expanded.
3845         (Coding Style): Another reason not to use `m4_define'.
3847 2006-02-21  Eric Blake  <ebb9@byu.net>
3849         * lib/autoconf/general.m4 (_AC_LIBOBJ): Minor optimization.
3851 2006-02-20  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3853         * doc/autoconf.texi (Looping constructs): New node, to
3854         document m4_for, m4_foreach, m4_foreach_w, and mention
3855         obsolete AC_FOREACH.
3856         (Obsolete Macros): Document AC_FOREACH.
3857         * lib/m4sugar/m4sugar.m4 (_m4_for): Fix declaration comment.
3858         (m4_for): Fix to never loop (almost) endlessly, work correctly
3859         with arithmetic expressions in arguments, a step of zero or
3860         non-integer multiple of the interval, and avoid integer
3861         overflow.
3862         * tests/m4sugar.at: New test for m4_for, m4_foreach, and
3863         m4_foreach_w.
3865 2006-02-20  Romain Lenglet  <rlenglet@users.forge.objectweb.org>
3867         Add basic support for Erlang, both for configuring Erlang/OTP
3868         tools, and Erlang as a conf test language.
3869         * lib/autoconf/erlang.m4: New file.
3870         * lib/autoconf/autoconf.m4: Add erlang.m4.
3871         * lib/autoconf/Makefile.am (dist_autoconflib_DATA): Likewise.
3872         * lib/freeze.mk (autoconf_m4f_dependencies): Likewise.
3873         * NEWS: Add short description of new macros.
3874         * THANKS: Add Romain Lenglet.
3876 2006-02-20  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3878         * doc/autoconf.texi (Shellology) <pdksh>: Document that pdksh as
3879         native /bin/sh may not set KSH_VERSION (seen on OpenBSD).
3881 2006-02-15  Eric Blake  <ebb9@byu.net>
3883         * lib/autoconf/general.m4 (AC_CHECK_DECL): Avoid unused variable
3884         warning.
3886 2006-02-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3888         * lib/m4sugar/m4sh.m4 (AS_CASE): New macro.
3889         (_AS_CASE): Private helper macro.
3890         * tests/m4sh.at: Basic tests for AS_IF and AS_CASE.
3891         * doc/autoconf.texi (Programming in M4sh): Document AS_CASE.
3892         Fix syntax of AS_IF description
3893         (Prerequisite Macros): Mention AS_IF and AS_CASE as workarounds
3894         for the AC_REQUIRE mess.
3895         * NEWS: Mention AS_CASE, AS_BOURNE_COMPATIBLE, and
3896         AS_SHELL_SANITIZE.
3898 2006-02-14  Paul Eggert  <eggert@cs.ucla.edu>
3900         * doc/autoconf.texi: Minor style cleanup.
3901         Be consistent about spaces after commas.
3902         Insert [] where empty args look a bit funny.
3903         Fix some "i.e." and "e.g." usages.
3904         Try to avoid "X/Y" usages.
3905         Don't be pedantic about "ISO C99"; just say C99.
3906         Prefer GNU style for spaces in front of parens.
3907         (Function Portability): Comment about C89 versus C99
3908         signed integer division.
3909         (Particular Headers): Use current gnulib style for dirent
3910         includes.
3912 2006-02-14  Stepan Kasal  <kasal@ucw.cz>
3913         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3915         * bin/autoupdate.in (handle_autoconf_macros): Fix updating of
3916         macros without parameters.
3917         * lib/autoconf/autoupdate.m4 (AU_ALIAS): Likewise.
3918         * doc/autoconf.texi (Obsoleting Macros): Document AU_ALIAS.
3919         * tests/tools.at (autoupdating AU_ALIAS): New test for AU_ALIAS
3920         `$#' bug.
3921         (autoupdate): Updated to match AU_ALIAS fix.
3923 2006-02-13 Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3924         and Paul Eggert  <eggert@cs.ucla.edu>
3926         * doc/autoconf.texi (Programming in M4sh): Document
3927         AS_BOURNE_COMPATIBLE and AS_SHELL_SANITIZE.
3929 2006-02-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3931         * lib/m4sugar/m4sh.m4 (_AS_BOURNE_COMPATIBLE): Renamed to..
3932         (AS_BOURNE_COMPATIBLE): ..this.
3933         (_AS_RUN, AS_SHELL_SANITIZE): Adjusted all callers.
3935 2006-02-12  Paul Eggert  <eggert@cs.ucla.edu>
3937         * doc/install.texi (Defining Variables): Tighten up the
3938         CONFIG_SHELL wording.
3940 2006-02-12 Paul Eggert  <eggert@cs.ucla.edu>
3941         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3943         * lib/m4sugar/m4sh.m4 (_AS_BOURNE_COMPATIBLE): Look at the output
3944         of (set -o) rather than testing whether (set -o posix) succeeds,
3945         to work around a bug in the AIX 5.3 shell.  Problem originally
3946         reportd by Howard Chu for libtool.
3948 2006-02-10  J.T. Conklin  <jtc@acorntoolworks.com>
3950         * doc/autoconf.texi (Running the Compiler, Running the Linker):
3951         Changes the macro arguments in summaries to match the
3952         descriptions.
3954 2006-02-04  Stepan Kasal  <kasal@ucw.cz>
3956         * doc/install.texi (Defining Variables): Classify the `CONFIG_SHELL'
3957         hint as ``a workaround for a bug.''
3959 2006-01-31  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3961         * bin/autoreconf.in: New option `--no-recursive'.
3962         Improve wording for subpackages a bit.
3963         * doc/autoconf.texi (autoreconf Invocation): Updated.
3964         * NEWS: Updated.
3966         * doc/install.texi (Defining Variables): Put `CONFIG_SHELL'
3967         in environment of `configure', not the command line.
3968         Reported by Howard Chu <hyc@highlandsun.com>.
3970 2006-01-25  Paul Eggert  <eggert@cs.ucla.edu>
3972         * doc/autoconf.texi (Limitations of Builtins): Document the
3973         problem with "trap -".
3975 2006-01-23  Steven G. Johnson  <stevenj@fftw.org>
3977         * lib/autoconf/fortran.m4 (_AC_FC_LIBRARY_LDFLAGS, _AC_FC_DUMMY_MAIN):
3978         (_AC_FC_MAIN, __AC_FC_NAME_MANGLING): Use _AC_LANG in check
3979         messages to differentiate Fortran and Fortran 77 tests.
3980         (AC_FC_SRCEXT, AC_FC_FREEFORM): Use AC_LANG_PUSH/POP instead of
3981         AC_LANG_ASSERT, to allow use in mixed-language projects.
3983 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
3985         * lib/autoconf/c.m4 (AC_LANG_FUNC_LINK_TRY(C)): Prefer "defined
3986         FOO" to "defined (FOO)".
3987         * lib/autoconf/functions.m4 (_AC_LIBOBJ_ALLOCA): Likewise.
3988         * lib/autoconf/headers.m4 (AC_HEADER_STAT): Likewise.
3989         * lib/autoconf/specific.m4 (AC_XENIX_DIR): Likewise.
3990         * tests/tools.at (ifnames): Likewise.
3992 2006-01-21  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3994         * lib/m4sugar/m4sh.m4 (AS_TMPDIR): Do not pass `-q' to mktemp.
3995         * lib/Autom4te/General.pm (mktmpdir): Likewise.
3996         (END): Improve error message a bit.
3997         Reported by Bruce Korb <bkorb@gnu.org>.
3999 2006-01-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4001         * lib/autoconf/fortran.m4 (_AC_FC_LIBRARY_LDFLAGS): Ignore
4002         `-LIST:' and `-LNO:', for PathScale 2.3 compilers.
4004 2006-01-11  Stepan Kasal  <kasal@ucw.cz>
4006         * doc/autoconf.texi (Header Portability): On Solaris 8, sys/ptem.h
4007         requires sys/stream.h.  Reported by Oliver Kiddle.
4009 2006-01-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4010             Stepan Kasal  <kasal@ucw.cz>
4012         * lib/autotest/general.m4 (AT_INIT): When ensuring writability
4013         before the removals of test dirs, use `find' to avoid modification
4014         of symlinked directories.
4016 2006-01-11  Steven G. Johnson  <stevenj@alum.mit.edu>
4018         * lib/autoconf/fortran.m4 (AC_F77_DUMMY_MAIN, AC_FC_DUMMY_MAIN):
4019         Don't ignore the macro arguments.
4021 2006-01-11  David Thompson  <dthompsn@vizsolutions.com>
4023         * lib/autoconf/c.m4 (_AC_PROG_CXX_EXIT_DECLARATION): Add `exit'
4024         declaration that works for MSVC.
4026 2006-01-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4028         * lib/autoconf/lang.m4 (_AC_COMPILER_OBJEXT_REJECT):
4029         Add `*.map' and `.inf' for Green Hills compiler.
4030         Reported by Stefan Seefeld <stefan@codesourcery.com>.
4032         * lib/m4sugar/m4sugar.m4 (m4_text_wrap): Handle quadrigraphs
4033         correctly: pad with spaces after FIRST_PREFIX if necessary,
4034         and compute string lenghts with `m4_qlen' instead of `m4_len'.
4035         * lib/m4sugar/m4sh.m4 (AS_HELP_STRING): Comments updated.
4036         * tests/m4sh.at (AS_HELP_STRING): Test extended.
4037         * NEWS: Updated.
4038         Reported by numerous people, numerous times.
4040 2006-01-05  Paul Eggert  <eggert@cs.ucla.edu>
4042         * bin/autoconf.as, bin/autoheader.in, bin/autom4te.in
4043         * bin/autoreconf.in, bin/autoscan.in, bin/autoupdate.in, bin/ifnames.in:
4044         * lib/autoconf/general.m4, lib/autoconf/status.m4:
4045         * lib/autotest/general.m4, tests/local.at:
4046         Update copyright year to 2006.
4048         * Makefile.maint (sc_root_tests): Use the recommended style s/a/b/ for
4049         sed substitutions.
4050         * doc/autoconf.texi (Installation Directory Variables): Use s|a|b|
4051         for file names, again.  Reported by Noah Misch.
4052         (Coding Style): Explain that s|a|b| is preferred for file names.
4053         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE): Prefer s/a/b/.
4054         (AC_OUTPUT_MAKE_DEFS): Likewise.
4055         * lib/autotest/general.m4 (AT_INIT): Likewise.
4056         * lib/m4sugar/m4sh.m4 (_AS_LINENO_PREPARE): Likewise.
4057         * tests/local.at (AT_CHECK_AUTOM4TE): Likewise.
4059         Fix Posix-conformance bugs re use of { command in sed scripts,
4060         and improve the sed-related documentation a bit.
4061         * doc/autoconf.texi (Installation Directory Variables): Use
4062         our own style advice re 's,a,b,' versus 's|a|b|'.  Use "Sed"
4063         rather than "sed" when talking about Sed in general.
4064         (Particular Programs): Likewise.
4065         (Coding Style): y is like s with respect to / and ,.
4066         (Limitations of Usual Tools): Document the weird restrictions
4067         that Posix has about { }.  Use better quoting.
4068         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE, _AC_OUTPUT_HEADER):
4069         Rewrite to conform to Posix rules about { } in sed scripts.
4070         * lib/m4sugar/m4sh.m4 (AS_DIRNAME_SED, AS_BASENAME_SED): Likewise.
4071         * tests/foreign.at (Libtool): Likewise.
4072         * tests/semantics.at (AC_CHECK_PROG & AC_CHECK_PROGS):
4073         Use our own style advice re 's,a,b,' versus 's|a|b|'.
4075 2006-01-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4077         * lib/autoconf/status.m4: Fix typo.
4079         * lib/autoconf/fortran.m4 (_AC_FC_LIBRARY_LDFLAGS): Ignore
4080         singly- or doubly-quoted arguments to `-cmdline', `-ignore',
4081         `-def', for the benefit of Portland `pgf90 -Mipa'.
4082         Reported by Christopher Hulbert <cchgroupmail@gmail.com>.
4084 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
4086         * doc/autoconf.texi: Update copyright (and other) dates to 2006.
4087         * doc/autoconf.texi (Shellology): Mac OS X 10.2 changed the default
4088         shell from zsh to bash.
4090 2005-12-31  Stepan Kasal  <kasal@ucw.cz>
4092         * lib/autoconf/programs.m4 (_AC_PROG_GREP): Use $PATH_SEPARATOR;
4093           ":" caused problems on OS/2-EMX.  Suggested by Andrew Belov.
4095 2005-12-29  Paul Eggert  <eggert@cs.ucla.edu>
4097         * doc/autoconf.texi (Shell Substitutions): Warn about unbalanced
4098         parentheses in $(...).  Problem reported by Eric Blake.
4100 2005-12-12  Paul Eggert  <eggert@cs.ucla.edu>
4102         * doc/autoconf.texi (Limitations of Usual Tools):
4103         Mention which characters can be escaped with \ in portable regular
4104         expressions used in grep, sed, expr.  Mention the leading ^ problem
4105         with expr.  Clean up some confusing wording.  Mention which
4106         grep options are portable.
4108 2005-12-09  Stepan Kasal  <kasal@ucw.cz>
4110         * tests/local.at (AT_CHECK_AUTOM4TE): Fix typo in the comment.
4112 2005-12-02  Paul Eggert  <eggert@cs.ucla.edu>
4114         * doc/autoconf.texi (Limitations of Builtins): Fix typos in previous
4115         patch, noted by Ralf Wildenhues.
4117 2005-12-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4119         * lib/m4sugar/m4sh.m4 (_AS_BOURNE_COMPATIBLE): Try `set -o
4120         posix' unconditionally, for pdksh in `native sh' emulation.
4122 2005-12-01  Paul Eggert  <eggert@cs.ucla.edu>
4124         * doc/autoconf.texi (Shellology): Document eval $? problem
4125         with ash.
4126         (Limitations of Builtins): Likewise.
4128 2005-11-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4130         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Pass
4131         CONFIG_SHELL in the environment of the configure rerun.
4132         * doc/autoconf.texi (Here-Documents, config.status Invocation):
4133         Suggest passing CONFIG_SHELL absolute, and in the environment
4134         rather than as option.
4136 2005-11-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4138         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE):
4139         Fix quoting of output line (triggered for many AC_SUBST_FILEs).
4140         Fix macro quoting.  Fix output for n * 98 substituted variables.
4142 2005-11-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4144         * lib/autoconf/status.m4 (_AC_OUTPUT_MAIN_LOOP): Initialize
4145         `tmp' to avoid file removal race.
4147 2005-11-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4149         * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS): Initialize
4150         ac_clean_files and LIBOBJS.
4152 2005-11-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4154         * lib/autoconf/programs.m4 (AC_CHECK_PROG, AC_PATH_PROG):
4155         Factor functionality to..
4156         (_AC_CHECK_PROG, _AC_PATH_PROG): these new macros, but only
4157         `AC_SUBST($1)' in the public version.
4158         (AC_CHECK_TOOL, AC_PATH_TOOL, AC_PATH_TARGET_TOOL)
4159         (AC_CHECK_TARGET_TOOL): Use internal versions for ac_ct_* and
4160         ac_pt_* variables.
4162 2005-11-01  Stepan Kasal  <kasal@ucw.cz>
4164         * lib/autoconf/c.m4 (AC_PROG_CC_C_O): Remove the comment about 8+3
4165         filesystems.
4167 2005-11-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4169         * NEWS: Move AH_HEADER mention to right place.
4171 2005-10-27  Stepan Kasal  <kasal@ucw.cz>
4173         * lib/autoconf/c.m4 (AC_PROG_CC_C_O): "conftst2" -> "conftest2"
4174         * lib/autoconf/fortran.m4 (_AC_PROG_FC_C_O): Likewise.
4176 2005-10-25  Stepan Kasal  <kasal@ucw.cz>
4178         * lib/autoconf/c.m4 (AC_PROG_CC_C_O): rm -f conftst2.*, not only
4179         conftst2.$ac_objext.
4180         * lib/autoconf/fortran.m4 (_AC_PROG_FC_C_O): Likewise.
4182 2005-10-24  Stepan Kasal  <kasal@ucw.cz>
4184         * lib/autoconf/c.m4 (AC_PROG_CC_C_O): Use conftst2.o instead of
4185         conftest.o, to see whether the compiler really obeys; rm the object
4186         file before and after the test and register it with ac_clean_files.
4187         * lib/autoconf/fortran.m4 (_AC_PROG_FC_C_O): Likewise.
4189 2005-10-21  Stepan Kasal  <kasal@ucw.cz>
4191         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE): When determining,
4192         the delimiter CEOF$ac_eof: fix quoting of CEOF[0-9]* and modify the
4193         code so that the most common case requires less forks.
4195 2005-10-20  Stepan Kasal  <kasal@ucw.cz>
4197         * doc/autoconf.texi (Shell Substitutions}: Document that ${10} is
4198         not portable; thanks to Paul Eggert and Alexandre.
4200         * NEWS: Fix an old typo.
4202 2005-10-20  Jim Meyering  <jim@meyering.net>
4204         * doc/autoconf.texi: Typo: s/feature/features/ in ``the features of
4205         the latter'', in two places.
4207 2005-10-19  Paul Eggert  <eggert@cs.ucla.edu>
4209         * doc/autoconf.texi (Generating Sources): AC_LANG_PROGRAMS ->
4210         AC_LANG_PROGRAM, fixing a typo.  Don't give details about
4211         the inner workings of AC_LANG_FUNC_LINK_TRY.
4212         * lib/autoconf/c.m4 (AC_LANG_CALL(C)): Reformat to match
4213         AC_LANG_FUNC_LINK_TRY.  This involves returning the value returned
4214         by the function rather than ignoring it.
4215         (AC_LANG_FUNC_LINK_TRY(C)): Call the function rather than simply
4216         comparing its address.  Intel's interprocedural optimization was
4217         outsmarting the old heuristic.  Problem reported by
4218         Mikulas Patocka.
4220 2005-10-19  Stepan Kasal  <kasal@ucw.cz>
4222         * lib/autoconf/general.m4 (AC_SUBST): Remove an obsolete comment.
4224 2005-10-05  Paul Eggert  <eggert@cs.ucla.edu>
4226         * lib/m4sugar/m4sugar.m4 (_m4_map): New macro.
4227         (m4_map, m4_map_sep): Use it.  Handle the empty list correctly.
4229 2005-10-04  Stepan Kasal  <kasal@ucw.cz>
4231         * lib/autotest/general.m4 (AT_INIT): Really make the subtree writable
4232         before removing it (chmod -R u+rwx); there are three instances of this.
4234 2005-10-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4235             Stepan Kasal  <kasal@ucw.cz>
4237         * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): Balance parentheses.
4238         * lib/autotest/general.m4 (AT_INIT): If the test dir already exists,
4239         make its content writable before removing it.  Remove an errorneous
4240         comment from the end, where the logs of the failed tests are copied
4241         to the main log file.
4243 2005-09-27  Stepan Kasal  <kasal@ucw.cz>
4245         * tests/semantics.at (AC_C_BIGENDIAN): Pass --force to autoheader,
4246           in case the computer is too quick.  Double quote the configure.ac
4247           snippets.
4249         * tests/local.at (AT_CHECK_AUTOCONF): Always pass --force to prevent
4250           problems if the testsuite were running too fast.
4252 2005-09-18  Paul Eggert  <eggert@cs.ucla.edu>
4254         * lib/autoconf/libs.m4 (_AC_PATH_X_DIRECT): Look for X11/Xlib.h
4255         and XrmInitialize rather than X11/Intrinsic.h and XtMalloc
4256         (which belong to Xt, not X itself).  See Debian bug 327655.
4257         * NEWS: Mention this.
4259 2005-09-07  Stepan Kasal  <kasal@ucw.cz>
4261         * lib/autoconf/c.m4 (AC_LANG_SOURCE(C)): Remove an incorrect comment.
4263 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
4265         * config/move-if-change: Don't output "$2 is unchanged";
4266         suggested by Ben Elliston.  Handle weird characters correctly.
4268 2005-09-06  Stepan Kasal  <kasal@ucw.cz>
4270         * lib/autoconf/libs.m4 (AC_SEARCH_LIBS): Merge the two AC_LINK_IFELSE
4271           calls, so that the final expansion of this macro is shorter.
4272           Create the conftest.$ac_ext outside the `for' loop, to speed the run.
4273           Do not use `break' in the argument to AC_LINK_IFELSE, it would skip
4274           the cleanup there.  Use AS_VAR_* macros, to be more general.
4275         * tests/semantics.at (AC_SEARCH_LIBS): Check for the cleanup.
4277         * lib/autoconf/general.m4: Use AS_IF where appropriate.
4279         * lib/m4sugar/m4sh.m4 (AS_IF): Use m4_default.
4281 2005-09-01  Stepan Kasal  <kasal@ucw.cz>
4283         * doc/autoconf.texi (Configuration Headers): Add an index entry
4284           for AH_HEADER.
4286 2005-08-26  Pavel Roskin  <proski@gnu.org>
4288         * lib/autoconf/libs.m4 (_AC_PATH_X_XMKMF): Use shell variable
4289         XMKMF to locate xmkmf.  Make XMKMF precious.  Export CC when
4290         running xmkmf.
4292 2005-08-26  Paul Eggert  <eggert@cs.ucla.edu>
4294         * lib/m4sugar/m4sh.m4 (_AS_VERSION_COMPARE_PREPARE):
4295         The previous patch didn't work, so try a better one.
4297 2005-08-26  Stepan Kasal  <kasal@ucw.cz>
4299         * doc/autoconf.texi (Programming in M4sh) <AS_TR_CPP>: Fix m4 quoting
4300         in the example.  Reported by Bruno Haible.
4301         <AS_TR_SH>: Likewise.  Also modify the example to be more convincing:
4302         "if $undefined_var;" succeeds with my shell.
4304         * lib/autoconf/general.m4 (AC_CANONICAL_BUILD, AC_CANONICAL_HOST,
4305         AC_CANONICAL_TARGET): Define by AC_DEFUN, no need to use AC_DEFUN_ONCE;
4306         but change the m4_divert_text to m4_divert_once.
4308 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
4310         * lib/m4sugar/m4sh.m4 (_AS_VERSION_COMPARE_PREPARE):
4311         Work around bug in Solaris /usr/xpg4/bin/awk.
4312         The bug is present in at least Solaris 8 through 10.
4314 2005-08-24  Stepan Kasal  <kasal@ucw.cz>
4316         * lib/autoconf/general.m4 (_AC_CANONICAL_SPLIT): Simplify; rejecting
4317         some evil values and relying on the fact that $* concatenates the
4318         parameters by the first character from IFS.
4320 2005-08-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>,
4321             Stepan Kasal  <kasal@ucw.cz>
4323         * lib/autoconf/status.m4 (_AC_CONFIG_REGISTER_DEST): When the
4324         first header appears, define AH_HEADER.
4325         * doc/autoconf.texi (Configuration Headers): Document AH_HEADER.
4326         Update limitations about when to call AC_CONFIG_HEADERS.
4327         (Configuration Commands): Document that AC_CONFIG_COMMANDS_PRE
4328         parameter can call AC_SUBST, AC_DEFINE, or AC_CONFIG_FOOS; explain
4329         that AC_CONFIG_COMMANDS_PRE and AC_CONFIG_COMMANDS_POST are not
4330         ``Configuration Actions''; fix their index entries.
4332         * lib/autotest/general.m4 (AT_INIT): Process multiple keywords
4333         options correctly.  Process N-M as M-N if M is smaller than N.
4334         Process ranges correctly so that N-N will run only N.
4335         Sort and uniquify the tests that will be run.  If there is more
4336         than one test, reinsert the banners for the tests.
4337         * tests/autotest.at (Keywords): Unmark XFAIL.
4339 2005-08-23  Stepan Kasal  <kasal@ucw.cz>
4341         * lib/autoconf/general.m4 (_AC_DEFINE_Q): Strip the parameter list
4342           before passing the macro name to AH_TEMPLATE.
4344         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): config.status
4345           now opens log after option processing; in particular, --version
4346           and --help do not touch config.log.
4348         * Makefile.maint: Revert the change from 2005-08-12.
4350 2005-08-22  Stepan Kasal  <kasal@ucw.cz>
4352         * lib/autoconf/general.m4 (AC_ARG_ENABLE, AC_ARG_WITH): Factor out
4353           common code to...
4354         (_AC_ENABLE_IF, _AC_ENABLE_IF_ACTION): ... these new macros.
4356 2005-08-21  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4358         * doc/autoconf.texi (Using Autotest, testsuite Scripts)
4359         (Autotest Logs, Writing testsuite.at, testsuite Invocation):
4360         Language cleanup.
4362         * doc/autoconf.texi (Defining Symbols, Changed Results):
4363         Prepend to LIBS, not append, in examples.
4365 2005-08-16  Stepan Kasal  <kasal@ucw.cz>
4367         When building in place, set srcdir="."; suggested by Tim Van Holder.
4369         * lib/autoconf/general.m4 (_AC_INIT_SRCDIR): Do this; to recognize
4370           build in place, we need ac_pwd, and thus have to AC_REQUIRE ...
4371         (_AC_INIT_DIRCHECK): ... this macro and AC_DEFUN both of them.
4372         * lib/autoconf/status.m4 (_AC_SRCDIRS): Fix a comment: srcdir="."
4373           does not mean "no --srcdir option".
4375 2005-08-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4377         * tests/autoscan.at (autoscan): New file.
4378         * tests/suite.at: Use it.
4379         * tests/Makefile.am (TESTSUITE_HAND_AT): Add it.
4380         Reported against Libtool by Gideon Go <gideon.go@gmail.com>.
4382         * tests/autotest.at (Keywords): Test keywords combinations.
4384 2005-08-12  Stepan Kasal  <kasal@ucw.cz>
4386         * Makefile.maint (GZIP_ENV): When checking the help text of gzip,
4387           add "2>&1"; gzip 1.2.4 prints help on stderr.
4389 2005-07-27  Stepan Kasal  <kasal@ucw.cz>
4391         * lib/autotest/general.m4 (_AT_DECIDE_TRACEABLE): The symbol at_reason
4392         was pushdef'ed twice while popped only once.  Push it only once.
4393         (_AT_CHECK): Cosmetic changes to the "case $at_status" command.
4395 2005-07-26  Stepan Kasal  <kasal@ucw.cz>
4397         * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): The message is now
4398         prefixed by mere "===", not "configure: === ".
4400 2005-07-25  Paul Eggert  <eggert@cs.ucla.edu>
4402         * Makefile.maint: Update from Bison.
4404         * lib/m4sugar/m4sugar.m4 (m4_strip): Comment fix---change tab to
4405         "<tab>" in comment, so that the point is understandable.
4407 2005-07-25  Stepan Kasal  <kasal@ucw.cz>
4409         Rewrite substantial part of lib/autoconf/status.m4.
4410         The main change is that CONFIG_FILES, CONFIG_HEADERS, CONFIG_LINKS,
4411         and CONFIG_COMMANDS are not processed in four separate loops.
4412         Instead, there is one main loop.  This alows that the common code
4413         is expanded only once, thus config.status (and configure) is smaller.
4415         The registration mechnism in AC_CONFIG_FILES and cousins also changed;
4416         the AC_LIST_FILES and cousins macros are no longer used.
4418         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES, _AC_OUTPUT_HEADERS,
4419         _AC_OUTPUT_LINKS, _AC_OUTPUT_COMMANDS): Renamed to ...
4420         (_AC_OUTPUT_FILE, _AC_OUTPUT_HEADER, _AC_OUTPUT_LINK,
4421         _AC_OUTPUT_COMMAND): ..., respectively.  These macros no longer
4422         contain the initialization, nor the for loop, nor the associated
4423         commands; all these go to ...
4424         (_AC_OUTPUT_MAIN_LOOP): ... this new macro, called from
4425         _AC_OUTPUT_CONFIG_STATUS.
4426         (_AC_CONFIG_SPLIT, _AC_CONFIG_SPLIT_SOURCE_DEST, _AC_CONFIG_SPLIT_FILE_IN):
4427         Nuked; the code was merged into _AC_OUTPUT_MAIN_LOOP.
4428         (_AC_OUTPUT_FILE): The creation of the sed script ...
4429         (AC_OUTPUT): ... and the setup of ac_vpsub goes to ...
4430         (_AC_OUTPUT_FILES_PREPARE): ... a new macro, also called from
4431         _AC_OUTPUT_MAIN_LOOP.
4432         (_AC_CONFIG_FILES, _AC_CONFIG_HEADERS, _AC_CONFIG_LINKS,
4433         _AC_CONFIG_COMMANDS): Use ...
4434         (_AC_CONFIG_FOOS): ... this new macro, which uses these ...
4435         (_AC_CONFIG_REGISTER, _AC_CONFIG_REGISTER_DEST): ... new macros.
4436         (_AC_CONFIG_FILE, _AC_CONFIG_HEADER, _AC_CONFIG_LINK,
4437         _AC_CONFIG_COMMAND, _AC_CONFIG_DEPENDENCIES): No longer needed.
4438         (_AC_CONFIG_DEPENDENCY): Update, it uses these ...
4439         (_AC_CONFIG_DEPENDENCY_DEFAULT, _AC_FILE_DEPENDENCY_TRACE_COLON):
4440         ... new macros.
4441         (_AC_CONFIG_UNIQUE): Update.
4442         (AC_LIST_FILES, AC_LIST_HEADERS, AC_LIST_LINKS, AC_LIST_COMMANDS):
4443         Replaced by this ...
4444         (_AC_LIST_TAGS): ... new common macro.
4445         (AC_LIST_FILE_COMMANDS, AC_LIST_HEADER_COMMANDS, AC_LIST_LINK_COMMANDS,
4446         AC_LIST_COMMAND_COMMANDS): Replaced by this ...
4447         (_AC_LIST_TAG_COMMANDS): ... new common macro.
4448         (_AC_CONFIG_COMMANDS_INIT): Moved top to the `registration' section;
4449         this didn't belong to the `config commands' section.
4450         (_AC_OUTPUT_COMMANDS_INIT): Don't initialize, m4_ifdef is our friend.
4451         (AC_CONFIG_COMMANDS_PRE, AC_OUTPUT_COMMANDS_PRE,
4452         AC_CONFIG_COMMANDS_POST): Moved to a new section, these didn't belong
4453         to the `config commands' section either.
4454         (AC_CONFIG_SUBDIRS): Don't touch diversion DEFAULTS.
4455         (_AC_LIST_SUBDIRS): Don't initialize, m4_ifdef is our friend.
4457         ... and many changes to the comments nearby.
4459         * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS): At the end of the day,
4460         set ac_subdirs_all='_AC_LIST_SUBDIRS'.
4461         * tests/torture.at (AC_CONFIG_FILES, HEADERS, LINKS and COMMANDS):
4462         AC_CONFIG_COMMANDS(command:input,...) is no longer allowed.
4463         (#define header templates): The comment at the top of the generated
4464         header now includes the name(s) of the source file(s).
4466         Several unrelated small changes:
4468         * lib/autoconf/general.m4 (AC_CACHE_VAL): Be didactic, quote the first
4469         parameter to AC_DIAGNOSE.
4470         * lib/autoconf/status.m4 (AC_CONFIG_SUBDIRS): Likewise.
4471         (_AC_LINK_FILES_CNT): Don't AU_DEFUN this; it causes confusing messages
4472         with autoupdate; use m4_define_default inside AU_DEFUNed AC_LINK_FILES.
4473         (AC_OUTPUT): In the compatibility code, use m4_ifvaln, to be consistent
4474         with AU::AC_OUTPUT.
4475         (AU::AC_OUTPUT): Don't double-quote $2 and $3, the compatibility code
4476         in AC_OUTPUT doesn't double-quote it either.
4477         * tests/tools.at (autoupdate): AU::AC_OUTPUT no longer double-quotes the
4478         parameters.
4480 2005-07-10  Stepan Kasal  <kasal@ucw.cz>
4482         * lib/autoconf/fortran.m4 (_AC_PROG_FC_V_OUTPUT): Document which
4483         versions of Portland Group compiler produce single- and double-quoted
4484         -cmdline argument.  Reported by Steven G. Johnson <stevenj@fftw.org>
4485         and Ole Holm Nielsen <Ole.H.Nielsen@fysik.dtu.dk>.
4487 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
4489         * tests/local.at (AT_CONFIG_CMP): Ignore lines like "LIBS=''" too.
4490         This is a corrected version of yesterday's patch.
4492 2005-07-07  Stepan Kasal  <kasal@ucw.cz>
4494         * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): Report the full
4495         path, too; insert a "===" to emphasize the line.
4497         * lib/autoconf/general.m4 (AC_CANONICAL_BUILD): Rename
4498           ac_cv_build_alias to ac_build_alias.
4499         (AC_CANONICAL_HOST, AC_CANONICAL_TARGET): Simplify.
4501         On 2005-02-24, an unintentional AC_SUBST([CC]) was introduced; this
4502         change eliminates it.  Problem reported by Alexandre Duret-Lutz.
4503         * lib/autoconf/general.m4 (_AC_ARG_VAR_PRECIOUS): Move the AC_SUBST ...
4504         (AC_ARG_VAR): ... here.
4505         (_AC_INIT_PREPARE): Call AC_SUBST for build_alias, host_alias and
4506           target_alias.
4508         Keep a list of all precious variables and process them with one simple
4509         for loop, instead of expanding all commands, or, OTOH, complicated
4510         processing of output of "set".
4511         * lib/autoconf/general.m4 (_AC_ARG_VAR_PRECIOUS): Acumulate the
4512         variable names in new macro...
4513         (_AC_PRECIOUS_VARS): ... which will be assigned to ac_precious_vars.
4514         (_AC_ARG_VAR_STORE): New macro which writes to diversion PARSE_ARGS
4515           a loop to assign all ac_env_* and ac_cv_env_* variables.
4516         (_AC_ARG_VAR_VALIDATE): Use shell variable ac_precious_vars, divert
4517           to INIT_PREPARE.
4518         (_AC_INIT_DEFAULTS): At the end, if _AC_PRECIOUS_VARS is set, assign
4519           its value to shell variable ac_precious_vars and call
4520           _AC_ARG_VAR_STORE and _AC_ARG_VAR_VALIDATE.
4521         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Don't call
4522           _AC_ARG_VAR_VALIDATE.
4524         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Move AC_LANG_PUSH(C)
4525           and the AC_SUBSTs ...
4526         (AC_INIT): ... here.
4528         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Changed the title of
4529           the ac_subst_files section in config.log.
4531         * tests/local.at (AT_CONFIG_CMP): Revert Paul's previous change.
4533 2005-07-06  Paul Eggert  <eggert@cs.ucla.edu>
4535         * NEWS: New macro AC_C_TYPEOF.
4536         * doc/autoconf.texi (C Compiler): Document AC_C_TYPEOF.
4537         * lib/autoconf/c.m4 (AC_C_TYPEOF): New macro.
4538         * tests/c.at (C keywords): Test AC_C_TYPEOF.
4540         Fix problems reported by Nicolas Joly.
4541         * tests/base.at (Input/Output): Ignore 'loading site script' chatter.
4542         * tests/local.at (AT_CONFIG_CMP): Ignore lines like "LIBS=''" too.
4543         They are generated by the Tru64 v5.1B shell.
4545 2005-07-05  Stepan Kasal  <kasal@ucw.cz>
4547         Fix my changes from 2005-07-01; reported by Noah Misch.
4548         * lib/autoconf/status.m4 (_AC_CONFIG_DEPENDENCIES): Fix the
4549         description, the macro now accepts only a single tag.
4550         (_AC_CONFIG_UNIQUE): Likewise; s/AC_File/[$1]/
4552         Fix cases when the varsions of Autoconf and Autotest don't match.
4553         Reported by Noah Misch.
4554         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): Set also
4555         at_top_builddir, for compatibility with older autotest.
4556         * lib/autotest/general.m4 (AT_INIT): If at_top_build_prefix
4557         is not set, use at_top_builddir, for compatibility with older
4558         versions of autoconf.
4560 2005-07-04  Paul Eggert  <eggert@cs.ucla.edu>
4562         * bin/autom4te.in ($m4): Catch usages like --nesting-limit=2048.
4563         Problem reported by Patrick Welche.
4565 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
4567         * lib/autoconf/general.m4 (AC_ARG_PROGRAM): Use &, not |, in
4568         sed substitution command, so that we allow | in program prefixes
4569         and program suffixes.  (& is a problem anyway; we're not fixing
4570         that here.)
4571         * lib/autoconf/status.m4 (AC_CONFIG_FILES): Likewise, for
4572         configure_input, top_builddir, srcdir, etc.
4573         * lib/autotest/general.m4 (AT_INIT): Likewise, for
4574         PATH_SEPARATOR in AUTOTEST_PATH.
4576 2005-07-02  Alexandre Duret-Lutz  <adl@gnu.org>
4578         * lib/autoconf/general.m4 (AC_SITE_LOAD): Rewrite the
4579         for loop over config.site files using `set', to allow
4580         directory names containing IFS characters.
4582 2005-07-01  Paul Eggert  <eggert@cs.ucla.edu>
4584         * lib/autoconf/general.m4 (_AC_INIT_DIRCHECK): Remove the tests for
4585         directories with weird names.  Apparently some people like living
4586         on the edge.  However, improve the test that "pwd" actually does
4587         report a name for the working directory.
4588         * NEWS: Remove the claim that we test for funny chars in dir names.
4590 2005-07-01  Stepan Kasal  <kasal@ucw.cz>
4592         * lib/autoconf/general.m4 (AC_FOREACH): Make obsolete; it's
4593         replaced ...
4594         * lib/m4sugar/m4sugar.m4 (m4_foreach_w): ... by this new macro.
4595         * lib/autoconf/status.m4 (_AC_CONFIG_DEPENDENCIES, _AC_CONFIG_UNIQUE):
4596         Now accept a single tag, not whitespace separated list.
4597         (AC_CONFIG_SUBDIRS): Call _AC_CONFIG_UNIQUE in a m4_foreach_w loop.
4599 2005-06-30  Stepan Kasal  <kasal@ucw.cz>
4601         * doc/autoconf.texi (Configuration Headers): Change the explanation
4602         about #include <config.h>.
4603         (Generic Functions): Mention the Gnulib project.
4604         (Limitations of Usual Tools) <sed>: Another minor rephrasing.
4606         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Use a here
4607         document to output the default config_* lists to config.status.
4608         Don't recognize option --file, if the functionality is not there.
4609         Likewise for --header; moreover, recognize --he and --h as shortcuts
4610         for --help in that case.
4612         * lib/autoconf/status.m4: Fix the order of the "sections", so that it
4613         matches the order of execution.  No code changed.
4615 2005-06-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4617         * lib/autoconf/fortran.m4 (_AC_PROG_FC_V_OUTPUT): Fix also for
4618         single-quoted -cmdline argument in Portland Group compiler.
4619         Reported against LAM by Ole Holm Nielsen <Ole.H.Nielsen@fysik.dtu.dk>.
4621 2005-06-30  Alexandre Duret-Lutz  <adl@gnu.org>
4623         * lib/autom4te.in (Automake-preselections): Preselect AC_SUBST_TRACE.
4625 2005-06-29  Stepan Kasal  <kasal@ucw.cz>
4627         * doc/autoconf.texi (File Descriptors): ksh doesn't pass open file
4628         descriptors to child processes; reported by Norman Gray.
4630 2005-06-29  Stepan Kasal  <kasal@ucw.cz>
4632         * lib/autoconf/general.m4 (AC_ARG_VAR): Move next to _AC_ARG_PRECIOUS.
4634         * lib/autoconf/general.m4 (AC_SUBST_TRACE): New macro, to be traced
4635         instead of AC_SUBST; proposed by Alexandre Duret-Lutz.
4636         (AC_SUBST): Call it.
4637         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES): Call AC_SUBST_TRACE for
4638         the directory specific variables; but don't call it for configure_input.
4640 2005-06-28  Derek Price  <derek@ximbiot.com>
4642         * doc/autoconf.texi (Limitations of Usual Tools) <sed>: Reword recent
4643         addition.
4645 2005-06-23  Paul Eggert  <eggert@cs.ucla.edu>
4647         * NEWS: Don't worry about spaces in bindir etc.  Only srcdir and working
4648         directory have inherent problems with special characters like spaces,
4649         due to limitations in Make syntax.  Problem reported by Alexandre
4650         Duret-Lutz.
4651         * lib/autoconf/general.m4 (_AC_INIT_DIRCHECK): Implement the above.
4652         Also, fix Tru64 porting problem with shell patterns,
4653         reported by Ralf Wildenhues.
4655 2005-06-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4657         * doc/autoconf.texi (Subdirectories): Fix markup typos.
4659 2005-06-23  Paul Eggert  <eggert@cs.ucla.edu>
4661         * tests/local.at (AT_CHECK_ENV): Simplify regexp slightly.
4663         Fix some more shell quoting problems.  Prompted by a bug report
4664         from Justace Clutter.
4665         * lib/autoconf/general.m4 (_AC_INIT_DIRCHECK): Put name of invalid
4666         variable into diagnostic.  Make the diagnostic an error, not a warning,
4667         because we really don't support spaces and suchlike in dir names.
4668         (_AC_INIT_SRCDIR): Allow special characters in $ac_unique_file.
4669         Don't worry about backslashes in srcdir; it can't happen now.
4670         (_AC_INIT_PARSE_ARGS): Allow weird characters in ac_optarg.
4671         Simplify ac_optarg handling.
4672         (_AC_ARG_VAR_VALIDATE): Remove unnecessary and inconsistent quotes.
4674 2005-06-22  Stepan Kasal  <kasal@ucw.cz>
4676         Fix AT_CONFIG_CMP for Solaris hosts; idea from Ralf Menzel.
4677         * configure.ac: Call AC_PROG_EGREP and AC_PROG_SED.
4678         * tests/atlocal.in: Propagate $EGREP and $SED.
4679         * tests/local.at (AT_CHECK_ENV): Use $EGREP, not $GREP -E.
4680         (AT_CONFIG_CMP): Use sed instead of grep plumbing.
4682         * doc/autoconf.texi (Limitations of Usual Tools) <grep>: Mention
4683         that '\|' is not allowed in BREs; recommend using newline separated
4684         list of patterns instead of multiple -e options.
4686         * lib/autoconf/fortran.m4 (_AC_PROG_FC_V_OUTPUT): Remove an old comment.
4688         * lib/autoconf/general.m4 (_AC_CANONICAL_SPLIT): Use AC_SUBST/2.
4690 2005-06-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4692         * lib/autoconf/general.m4 (_AC_CANONICAL_SPLIT): Fix typo.
4694 2005-06-21  Stepan Kasal  <kasal@ucw.cz>
4696         * doc/autoconf.texi (Limitations of Usual Tools) <sed>: Document that
4697         b, t, r, w commands require single space, while : cannot have any.
4698         (Special Shell Variables): Fix sed code this in the example.
4699         * lib/autoconf/status.m4 (_AC_OUTPUT_HEADERS): Likewise; and fix a typo.
4700         * lib/autotest/general.m4 (AT_ARG_OPTION): Fix typo in the description.
4702         * lib/m4sugar/m4sugar.m4 (m4_split): If the parameter is empty,
4703         expand to the empty list.  Don't use two pairs of m4_changequote,
4704         it's not necessary.
4706 2005-06-20  Derek Price  <derek@ximbiot.com>
4708         * lib/m4/programs.m4 (AC_PROG_YACC): Declare YACC & YFLAGS precious.
4710 2005-06-17  Paul Eggert  <eggert@cs.ucla.edu>
4712         * lib/m4sugar/m4sh.m4 (as_awk_strverscmp): Port to Solaris /bin/awk.
4713         * doc/autoconf.texi:
4714         Don't mention Solaris versions so much, if a
4715         problem is common to all extant versions of Solaris.  Say "SunOS
4716         4" instead of "SunOS" for SunOS 4.
4717         (awk): Mention more of the limitations of traditional Awk.
4718         (cat): Don't talk about cat -v.
4720 2005-06-16  Paul Eggert  <eggert@cs.ucla.edu>
4722         * lib/m4sugar/m4sh.m4 (_AS_VERSION_COMPARE_PREPARE): New macro.
4723         (AS_VERSION_COMPARE): New macro.  The API is taken from CVS,
4724         but the implementation is entirely different and is designed
4725         to be compatible with glibc strverscmp.
4726         * tests/m4sh.at (AS_VERSION_COMPARE): New test.
4728         * doc/autoconf.texi (Limitations of Usual Tools): Mention expr bug
4729         on Mac OS X 10.4 reported by Peter O'Gorman in:
4730         http://lists.gnu.org/archive/html/autoconf-patches/2005-06/msg00041.html
4731         * lib/autoconf/general.m4 (_AC_CANONICAL_SPLIT):
4732         Use shell builtins rather than 'expr', to work around expr bug.
4734 2005-06-10  Paul Eggert  <eggert@cs.ucla.edu>
4736         * doc/autoconf.texi: "filesystem" -> "file system".
4737         "behaviour" -> "behavior".
4738         Warn about \(...\)* in Solaris sed (written by Ralf Menzel).
4739         * lib/autoconf/general.m4: Omit blank after ":" sed command,
4740         as per POSIX.
4741         * lib/m4sugar/m4sh.m4: Likewise.
4742         * lib/autoconf/status.m4 (_AC_OUTPUT_HEADERS): Work around problem
4743         with Solaris sed.  Fix by Ralf Menzel and Stepan Kasal.
4745         * man/Makefile.am (MOSTLYCLEANFILES): Add $(srcdir)/*.t.
4746         (.x.1): Ignore the time stamp in the .TH line when deciding whether
4747         to update the man page.  That way, we don't have to check in new
4748         man pages every month.
4750         * lib/m4sugar/m4sh.m4 (AS_VAR_TEST_SET): Work even if $1 contains
4751         quotes and backslashes.  Patch from Derek Price.
4753 2005-06-10  Derek Price  <derek@ximbiot.com>
4755         * doc/autoconf.texi (Programming in M4sh): Document AS_TR_CPP &
4756         AS_TR_SH.
4758 2005-06-08  Paul Eggert  <eggert@cs.ucla.edu>
4760         * lib/autotest/general.m4 (AT_INIT): Don't accept Solaris 9's diff
4761         -u, since it outputs chatter if the input files are the same.
4762         Problem reported by Ralf Menzel.
4764 2005-06-08  Derek Price  <derek@ximbiot.com>
4766         * lib/m4sugar/m4sugar.m4: Undefine include & sinclude rather than
4767         renaming them since they are about to be redefined anyhow.
4769 2005-06-08  Derek Price  <derek@ximbiot.com>
4771         * doc/autoconf.texi (Redefined M4 Macros): Add index entries for most
4772         redefined M4 macros to this node.  Document m4_include & m4_sinclude.
4773         Move m4_undefine to alphabetical order.
4775 2005-06-07  Paul Eggert  <eggert@cs.ucla.edu>
4777         * README: Recommend GNU M4 1.4.3 or later.
4778         * doc/autoconf.texi (Introduction): Likewise.
4779         Reword to avoid some formatting glitches.
4780         Use "#!/bin/sh", not "#! /bin/sh"; the space isn't needed these days.
4781         Clarify explanation of HP compiler bug.
4782         Redo example output tp match current CVS snapshot.
4783         Use @example.org in email addresses when the examples
4784         might get inadvertently cut-and-pasted into user code.
4785         Remove example of autom4te usage that doesn't seem to work now.
4786         Use modern AC_INIT (except when the example is meant to be
4787         shown with Autoconf 2.13).
4788         Update ksh info for Solaris 9 and later.
4789         KB -> kB.
4790         Modernize description of Automake versions a bit.
4791         Don't claim a future version of Autoconf is near.
4792         * doc/install.texi: Reword to avoid some formatting glitches.
4794 2005-06-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4796         * doc/autoconf.texi: Add [] to examples, so that the manual
4797         follows its own advice about quoting better.
4798         Reword to avoid some formatting glitches.
4799         * doc/installt.exi: Reword to avoid some formatting glitches.
4801         * doc/autoconf.texi (Limitations of Builtins) <case>: Mention
4802         Tru64 ksh pattern matching bug.  Reported against Libtool by
4803         Albert Chin <libtool@mlists.thewrittenword.com> and
4804         Nicolas Joly <njoly@pasteur.fr>.
4806 2005-06-06  Stepan Kasal  <kasal@ucw.cz>
4808         m4_cdr of one-member list was [[]] (one-member list containing an
4809         empty string) instead of [] (an empty list.  Callers were skewed to
4810         match this misbehaviour.  As a consequence of this:
4811          - m4_foreach([x], [], [foo]) expanded to `foo', while
4812          - the expansion of m4_foreach([x], [[]], [foo]) was empty.
4813         This bug has been fixed:
4815         * lib/m4sugar/m4sugar.m4 (m4_cdr): If only one argument is given,
4816           expand to an empty string; print error msg if called without
4817           an argument list.
4818         (m4_foreach, m4_map, m4_map_sep): Don't expect the previous
4819           misbehaviour; handle [] and [[]] correctly.
4821 2005-06-06  Stepan Kasal  <kasal@ucw.cz>
4823         * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS): Nuke ac_max_here_lines.
4824         * lib/autoconf/status.m4 (_AC_OUTPUT_HEADERS): Simplify the sed
4825           scripts created and the loop applying them, use _AC_SED_CMD_LIMIT.
4827 2005-06-06  Ralf Menzel <menzel@ls6.cs.uni-dortmund.de>  (trivial change)
4829         * doc/autoconf.texi (Limitations of Usual Tools): Solaris' awk cannot
4830           swallow records with more than 99 fields.
4831         * lib/autotest/general.m4 (AT_INIT): Use the awk builtin `split' to
4832           parse the long line.
4834 2005-06-04  Stepan Kasal  <kasal@ucw.cz>
4836         * doc/autoconf.texi (Limitations of Usual Tools): AIX awk cannot
4837           swallow literals longer than 399.  Reported by Ralf Wildenhues.
4838         * lib/autotest/general.m4 (AT_INIT): Pass $at_groups though stdin,
4839           to workaround this limitation.
4841 2005-06-03  Steven G. Johnson  <stevenj@alum.mit.edu>
4843         * lib/autoconf/fortran.m4 (_AC_PROG_FC): Find g95 in addition
4844         to gfortran, and make these the first two compiler names
4845         checked (following the general autoconf preference for gcc).
4847 2005-06-03  Stepan Kasal  <kasal@ucw.cz>
4849         * tests/Makefile.am (check_SCRIPTS): Set to $(wrappers).
4850         (DISTCLEANFILES): Remove $(check_SCRIPTS).
4851         (testsuite): Make sure autotest.m4f is up-to-date before using it.
4853 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
4855         * lib/autotest/general.m4 (AT_INIT): Don't create a regular
4856         expression of unbounded size when processing the --list
4857         option.  This runs afoul of a limit of 399 bytes per regular
4858         expression on AIX.  Problem reported by Ralf Wildenhues.
4860 2005-06-01  Paul Eggert  <eggert@cs.ucla.edu>
4862         * NEWS: Note yesterday's changes to AC_SUBST and AC_SUBST_FILE.
4863         * doc/autoconf.texi (Particular Headers): Reword example
4864         for multiline stdbool replacement.
4865         (Setting Output Variables): Reword text a bit.  Don't
4866         give all the details about |#_!!_#|.
4867         Reword description of line replacement.
4869 2005-05-31  Dan Manthey  <dan_manthey@partech.com>
4871         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES): Output variables may
4872         now contain newlines, and substituted files must be referenced on
4873         a line alone; the sed scripts to substitute them are now very
4874         different.
4875         (_AC_SED_CMD_LIMIT): Added; single place to store limit on how many
4876         commands can be put in a sed script portably.
4877         * doc/autoconf.texi (Setting Output Variables): Document above
4878         changes.  (Particular Header Checks) <AC_HEADER_STDBOOL>: Give exaple
4879         use of multiline substitution.
4880         * tests/torture.at: No longer expect substitution of newline to fail.
4882 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
4884         * lib/m4sugar/m4sh.m4 (_AS_SHELL_FN_WORK): Fix diagnostics.
4885         From Ralf Menzel (trivial change).
4887 2005-05-25  Paul Eggert  <eggert@cs.ucla.edu>
4889         * tests/local.at: Don't attempt to check for negated character
4890         classes in shell scripts.  The test was too brittle.
4892 2005-05-25  Stepan Kasal  <kasal@ucw.cz>
4894         * bin/autoconf.as: Don't use "shift 2"; it's not portable enough.
4895         * doc/autoconf.texi (Limitations of Builtins): Document this
4896           limitation.
4898 2005-05-24  Stepan Kasal  <kasal@ucw.cz>
4900         * lib/m4sugar/m4sh.m4 (_AS_ECHO_LOG): New macro to factor out
4901           common code; used in many places in the tree.
4902         (AS_ESCAPE): Make the pattern a bit simpler; use \& insetad of \1.
4903         (_AS_ECHO_UNQUOTED): Move the macro lower; no code change.
4905         * lib/m4sugar/m4sugar.m4 (m4_ifset): Use m4_ifval.
4907         * lib/autoconf/general.m4 (_AC_INIT_SRCDIR): Merge the two error
4908           messages when ac_unique_file is not found.
4909         (AC_CONFIG_MACRO_DIR): Simplify the `if' at the end.
4910         (AC_MSG_CHECKING, AC_MSG_RESULT): Put braces around the two echo
4911           commands, for consistency with AC_MSG_ERROR and such.
4913         * bin/autoconf.as: Make more use of "shift 2" in option processing.
4915         * bin/Makefile.am: Merge the two rules for creating scripts.
4917 2005-05-23  Stepan Kasal  <kasal@ucw.cz>
4919         * lib/autoconf/general.m4 (AC_MSG_RESULT_UNQUOTED): Make
4920         obsolete; it was never documented.
4921         (AC_CACHE_CHECK): Use AC_MSG_RESULT instead.
4923 2005-05-20  Stepan Kasal  <kasal@ucw.cz>
4925         * NEWS: @top_builddir@ is now a dirname, ac_top_builddir will follow.
4926         * lib/autoconf/status.m4 (_AC_SRCDIRS): Rename ...
4927         (ac_top_builddir): ... this ...
4928         (ac_top_build_prefix): ... to this; the old name is also kept, for
4929           backward compatibility.
4930         (ac_top_builddir_sub): New variable, without the trailing slash,
4931           always nonempty.
4932         (_AC_OUTPUT_FILES): s/@top_builddir@/$ac_top_builddir_sub/
4933         * doc/autoconf.texi (Configuration Actions): Rename
4934           ac_top_builddir to ac_top_build_prefix.
4935         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): Rename
4936           at_top_builddir to at_top_build_prefix.
4937         * lib/autotest/general.m4 (AT_INIT): Likewise.
4939 2005-05-20  Stepan Kasal  <kasal@ucw.cz>
4941         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Simplify the init
4942           of confdefs.h .
4944 2005-05-17  Stepan Kasal  <kasal@ucw.cz>
4946         * lib/m4sugar/m4sugar.m4 (m4_text_wrap): Don't m4_quote the second
4947           argument to m4_foreach.  I guess it was necessary in the past,
4948           but I think it's a no-op now.
4950 2005-05-17  Stepan Kasal  <kasal@ucw.cz>
4952         * lib/autoconf/general.m4 (_AC_INIT_HELP): Merge two consecutive
4953           ``cat <<_ACEOF'' commands to one.
4954         (_AC_CANONICAL_SPLIT): Use expr, not ``echo|sed.''
4955         * lib/autoconf/status.m4: On various places, use expr instead of
4956           ``echo|sed.''
4957         (_AC_CONFIG_SPLIT, _AC_CONFIG_SPLIT_SOURCE_DEST):
4958         (_AC_CONFIG_SPLIT_FILE_IN): New macros, to factor out common code.
4959         * lib/autotest/general.m4 (AT_INIT): Use expr to get the numbers from
4960           a range.
4961         * tests/local.at (AT_CHECK_SHELL_SYNTAX): Use awk to search for
4962           the wrong patterns between ``case'' and ``esac.''  The previous
4963           code had false positives.
4965 2005-05-14  Alexandre Duret-Lutz  <adl@gnu.org>
4967         * lib/autoconf/functions.m4 (_AC_LIBOBJ_ALLOCA): Prepend ${LIBOBJDIR},
4968         as on 2005-05-02.
4969         * doc/autoconf.texi (Particular Functions) <AC_FUNC_ALLOCA>:
4970         Mention LIBOBJDIR.
4972 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
4974         * AUTHORS, BUGS, COPYING, ChangeLog, ChangeLog.0, ChangeLog.1,
4975         ChangeLog.2, GNUmakefile, Makefile.am, Makefile.cfg,
4976         Makefile.maint, NEWS, README, README-alpha, TODO, configure.ac,
4977         bin/Makefile.am, bin/autoconf.as, bin/autoheader.in,
4978         bin/autom4te.in, bin/autoreconf.in, bin/autoscan.in,
4979         bin/autoupdate.in, bin/ifnames.in, config/Makefile.am,
4980         config/config.guess, config/config.sub, config/elisp-comp,
4981         config/m4.m4, config/mdate-sh, config/missing, config/texinfo.tex,
4982         doc/Makefile.am, doc/fdl.texi, lib/Makefile.am, lib/autom4te.in,
4983         lib/freeze.mk, lib/Autom4te/C4che.pm, lib/Autom4te/ChannelDefs.pm,
4984         lib/Autom4te/Channels.pm, lib/Autom4te/Configure_ac.pm,
4985         lib/Autom4te/FileUtils.pm, lib/Autom4te/General.pm,
4986         lib/Autom4te/Request.pm, lib/Autom4te/Struct.pm,
4987         lib/Autom4te/XFile.pm, lib/autoconf/Makefile.am,
4988         lib/autoconf/autoconf.m4, lib/autoconf/autoheader.m4,
4989         lib/autoconf/autoscan.m4, lib/autoconf/autotest.m4,
4990         lib/autoconf/autoupdate.m4, lib/autoconf/c.m4,
4991         lib/autoconf/fortran.m4, lib/autoconf/functions.m4,
4992         lib/autoconf/general.m4, lib/autoconf/headers.m4,
4993         lib/autoconf/lang.m4, lib/autoconf/libs.m4,
4994         lib/autoconf/oldnames.m4, lib/autoconf/programs.m4,
4995         lib/autoconf/specific.m4, lib/autoconf/status.m4,
4996         lib/autoconf/types.m4, lib/autoscan/Makefile.am,
4997         lib/autoscan/autoscan.list, lib/autoscan/autoscan.pre,
4998         lib/autotest/Makefile.am, lib/autotest/autotest.m4,
4999         lib/autotest/general.m4, lib/emacs/Makefile.am,
5000         lib/emacs/autoconf-mode.el, lib/emacs/autotest-mode.el,
5001         lib/m4sugar/Makefile.am, lib/m4sugar/m4sh.m4,
5002         lib/m4sugar/m4sugar.m4, man/Makefile.am, tests/Makefile.am,
5003         tests/atlocal.in, tests/autotest.at, tests/base.at, tests/c.at,
5004         tests/compile.at, tests/foreign.at, tests/fortran.at,
5005         tests/local.at, tests/m4sh.at, tests/m4sugar.at, tests/mktests.sh,
5006         tests/semantics.at, tests/suite.at, tests/tools.at,
5007         tests/torture.at, tests/wrapper.as:
5008         Update FSF postal mail address.
5010 2005-05-13  Stepan Kasal  <kasal@ucw.cz>
5012         * lib/autoconf/general.m4 (AC_CONFIG_LIBOBJ_DIR): Remove the broken
5013           check.
5014         * lib/m4sugar/m4sugar.m4 (m4_bmatch): Halt with error if we don't get
5015           enough arguments, similarly as in m4_bpatsubsts.
5017 2005-05-12  Stepan Kasal  <kasal@ucw.cz>
5019         * lib/autoconf/status.m4 (_AC_SRCDIRS): Simplify the computation
5020           of absolute paths.
5022 2005-05-11  Stepan Kasal  <kasal@ucw.cz>
5024         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ARGS): Make the check
5025           for absolute directory names in one loop.
5026         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Handle
5027           abbreviations of --version and --debug.
5029 2005-05-10  Paul Eggert  <eggert@cs.ucla.edu>
5031         * doc/autoconf.texi (Autoconf Language): Be more precise about
5032         quoting rules.  Problems noted by Stepan Kasal.
5033         Also, throughout this document, be more careful about white space.
5034         "blank", "white space", and "space" all have different meanings
5035         and we should be careful to say what we mean.
5037 2005-05-05  Paul Eggert  <eggert@cs.ucla.edu>
5039         Fix C++ related problems reported by Werner Lemberg.
5040         * doc/autoconf.texi (C++ Compiler): Mention .cpp extension.
5041         * lib/autoconf/c.m4 (AC_LANG(C++)): Set ac_ext to .cpp, not .cc.
5042         * lib/autoconf/types.m4 (AC_TYPE_SIGNAL): Simplify test, to
5043         avoid problems with C++ and throw.
5044         * tests/compile.at: .cpp, not .cc.
5046         * tests/semantics.at: Prepend LIBOBJDIR, as per 2005-05-02 change.
5048 2005-05-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5050         * doc/autoconf.texi (Generic Functions): Typos.
5052 2005-05-02  Gary V. Vaughan  <gary@gnu.org>
5054         * lib/autoconf/general.m4 (_AC_LIBOBJS_NORMALIZE): Prepend each
5055         object named in LIBOBJS and LTLIBOBJS with the ${LIBOBJDIR}, as
5056         set by latest automake.
5058 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
5060         * doc/autoconf.texi (Limitations of Usual Tools): "expr '' \| ''"
5061         outputs 0 on GNU/Linux these days.
5063 2005-04-29  Paul Eggert  <eggert@cs.ucla.edu>
5065         * doc/autoconf.texi (Autoconf Language): Add more description
5066         about quoting heuristics.
5067         (Limitations of Builtins): Describe "set -" problems.
5069 2005-04-29  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5071         * lib/autotest/general.m4 (AT_KEYWORDS): Separate by space,
5072         not newline.
5074         * doc/autoconf.texi (External Software): Replace AC_DEFINE_UNQUOTED
5075         by AC_DEFINE; it was a mistake.
5076         From bug reported against libtool by Dalibor Topic <robilad@kaffe.org>.
5078 2005-04-25  Stepan Kasal  <kasal@ucw.cz>
5080         * lib/autoconf/status.m4 (_AC_OUTPUT_HEADERS): A tiny optimization.
5082 2005-04-22  Stepan Kasal  <kasal@ucw.cz>
5084         * doc/autoconf.texi (External Software): Quadrigraphs are not
5085           processed correctly in AS_HELP_STRING; avoid this in the examples.
5086         * lib/m4sugar/m4sh.m4 (AS_HELP_STRING): Add a FIXME about quadrigraphs.
5087         * lib/m4sugar/m4sugar.m4 (m4_text_wrap): Likewise; and rephrase the
5088           comment and reduce m4_default([foo], []) to [foo].
5089         (m4_strip): Update the explanation.
5091 2005-04-19  Paul Eggert  <eggert@cs.ucla.edu>
5093         * lib/autoconf/general.m4 (_AC_INIT_PREPARE, _AC_RUN_IFELSE):
5094         Remove core.conftest.* too; it's generated by Tru64 5.1.
5095         Problem reported by Jennis Pruett.
5096         * lib/autoconf/functions.m4
5097         (AC_FUNC_SETVBUF_REVERSED, AC_FUNC_UTIME_NULL):
5098         Don't bother to remove core files; AC_RUN_IFELSE should do that
5099         for you.
5101 2005-04-19  Stepan Kasal  <kasal@ucw.cz>
5103         * lib/m4sugar/m4sugar.m4 (m4_bpatsubsts): Add the b- to comment, too.
5105 2005-04-19  Alexandre Duret-Lutz  <adl@gnu.org>
5107         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ARGS): Handle --docdir.
5108         Report from Horst Wente.
5110 2005-04-15  Stepan Kasal  <kasal@ucw.cz>
5112         * lib/autoconf/general.m4 (_AC_ARG_VAR_VALIDATE): Fixed a typo in
5113           the comment.
5115 2005-04-14  Gregorio Guidi  <greg_g@gentoo.org>
5117         * doc/autoconf.texi (External Software, Package Options): Add
5118           examples showing how to implement --with-* and --enable-* options.
5120 2005-04-13  Paul Eggert  <eggert@cs.ucla.edu>
5122         * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): Look for configure.ac
5123         as well as configure.in.  Problem reported by Gregorio Guidi.
5125 2005-04-10  Paul Eggert  <eggert@cs.ucla.edu>
5127         * doc/autoconf.texi (Particular Functions): Use gnulib's current
5128         pattern for alloca snippet.
5130 2005-04-04  Stepan Kasal  <kasal@ucw.cz>
5132         * lib/autotest/general.m4 (_AT_DECIDE_TRACEABLE): Fix a typo.
5134 2005-04-01  Stepan Kasal  <kasal@ucw.cz>
5136         * doc/autoconf.texi (Generic Programs): Fix a typo.
5138 2005-04-01  Paul Eggert  <eggert@cs.ucla.edu>
5140         * lib/autotest/general.m4 (AT_INIT): Don't assume that "date +%s"
5141         fails if %s isn't supported.  Problem reported by Ralf Wildenhues.
5143 2005-03-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5145         * lib/autoconf/fortran.m4 (_AC_FC_LIBRARY_LDFLAGS):
5146         Merge `-z option' as well for the benefit of Solaris link flags.  Pass
5147         whole-archive (-zallextract, -zdefaultextract) options in the hope of
5148         unique libraries, for the Sun Fortran 95 8.0 compiler.  Bug reported
5149         against Libtool by Yury Puhalsky <pooh@cryptopro.ru>.
5151 2005-03-22  Paul Eggert  <eggert@cs.ucla.edu>
5153         * NEWS: The configure command now warns you if you attempt to use
5154         a directory whose name contains a special character like space,
5155         newline, or "\".
5156         * doc/autoconf.texi (Installation Directory Variables): Allow
5157         "," in file names.  Do not use \@; it's not a portable regexp.
5158         * bin/Makefile.am (edit): Likewise.
5159         * lib/Makefile.am (edit): Likewise.
5160         * tests/Makefile.am (edit): Likewise.
5161         * tests/semantics.at: Likewise.
5162         * tests/torture.at: Likewise.
5163         * lib/autoconf/general.m4 (AC_ARG_PROGRAM): Likewise.
5164         * lib/autoconf/status.m4 (_AC_SRCDIRS): Likewise.
5165         * doc/autoconf.texi (File System Conventions): Warn about
5166         unportable file names.
5167         * lib/autoconf/general.m4 (_AC_INIT_DIRCHECK): New macro.
5168         (AC_INIT): Use it.
5169         (_AC_INIT_SRCDIR): Use ac_pwd rather than invoking pwd.
5170         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Propagate
5171         ac_pwd, and quote srcdir.
5172         * lib/autotest/general.m4 (AT_INIT): Quote file name args.
5174         * doc/autoconf.texi: Fix some systematic formatting problems.
5175         ".)"  needs a following @: if not at the end of a sentence, and
5176         similarly for "!)".  "etc." should be preceded by a comma.
5177         "n-th" -> "@var{n}th".  pdksh is still buggy, so update its date.
5179 2005-03-22  Bruno Haible  <bruno@clisp.org>
5181         * doc/autoconf.texi (Input): Mention that AC_CONFIG_AUX_DIR's
5182         argument is often called 'build-aux'.
5184 2005-03-07  Stepan Kasal  <kasal@ucw.cz>
5186         * doc/autoconf.texi (Quotation Rule Of Thumb): Mention that the
5187           macro AC_TRY_LINK is obsolete.
5188         (Installation Directory Variables): Change `AC_OUTPUT_FILES' to
5189           `AC_CONFIG_FILES'.
5191 2005-02-24  Stepan Kasal  <kasal@ucw.cz>
5193         * lib/autoconf/c.m4 (AC_PROG_CC): Be more careful to skip
5194           `/usr/ucb/cc'; use `cl.exe' to distinguish the MS compiler
5195           from a Common Lisp's `cl'.
5196         (AC_PROG_CXX): Behave according to the documentation: don't
5197           search for $ac_tool_prefix$CCC and $CCC, just set CXX=$CCC;
5198           make the variable CCC precious; use `cl.exe', not `cl'.
5200 2005-02-23  Paul Eggert  <eggert@cs.ucla.edu>
5201             Alexandre Duret-Lutz  <adl@gnu.org>
5203         * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS): Redirect stdin from
5204         /dev/null, as "configure" shouldn't read stdin, and this insulates
5205         us from problems (e.g., when testing for "cl").  Also, do this
5206         redirection before invoking "hostname" or "uname", and keep the
5207         original input stream available via...
5208         (AS_ORIGINAL_STDIN_FD): ... this new macro.
5209         (_AC_PREPROC_IFELSE, _AC_COMPILE_IFELSE, _AC_LINK_IFELSE): Don't
5210         bother with "</dev/null" since it's now done at the top of
5211         'configure'.
5212         * lib/autoconf/c.m4 (AC_PROG_CC, AC_PROG_CXX): Likewise.
5213         * lib/autoconf/fortran.m4 (_AC_PROG_FC): Likewise.
5214         * lib/autoconf/programs.m4 (_AC_PATH_PROG_FLAVOR_GNU): Likewise.
5215         * doc/autoconf.texi (File Descriptor Macros): New section.
5216         (Printing Messages): Mention it.
5217         * tests/base.at (Input/Output): New test.
5219 2005-02-23  Paul Eggert  <eggert@cs.ucla.edu>
5221         * lib/m4sugar/m4sh.m4 (_AS_ECHO_N_PREPARE): Don't set ECHO_C to
5222         newline if neither \c nor -n work, as that would output two
5223         newlines.  Prefer -n to \c.  Reported by Stepan Kasal.
5225 2005-02-12  Stepan Kasal  <kasal@ucw.cz>
5227         * lib/m4sugar/m4sh.m4 (AS_IF): Define by m4_defun, not m4_define.
5228         This causes that any required macros inside will get before the if.
5229         * doc/autoconf.texi (autom4te.cache): A typo.
5231 2005-02-12  Paul Eggert  <eggert@cs.ucla.edu>
5233         Undo previous change, except keep the change to
5234         lib/autoconf/programs.m4 that replaced grep with shell
5235         pattern-matching.  This is because net-snmp configure reads stdin.
5236         Reported by Noah Misch.
5238 2005-02-11  Paul Eggert  <eggert@cs.ucla.edu>
5240         * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS): Redirect stdin
5241         from /dev/null, as "configure" shouldn't read stdin, and this
5242         insulates us from problems (e.g., when testing for "cl").
5243         Suggested by Alexandre Duret-Lutz.  Also, do this redirection
5244         before invoking "hostname" or "uname".
5245         (_AC_PREPROC_IFELSE, _AC_COMPILE_IFELSE,
5246         _AC_LINK_IFELSE): Undo previous change, as it's no longer needed.
5247         * lib/autoconf/c.m4 (AC_PROG_CC, AC_PROG_CXX): Don't bother with
5248         "</dev/null" since it's now done at the top of 'configure'.
5249         * lib/autoconf/fortran.m4 (_AC_PROG_FC): Likewise.
5250         * lib/autoconf/programs.m4 (_AC_PATH_PROG_FLAVOR_GNU): Likewise.
5251         Also, replace grep with shell pattern-matching, to save a process.
5253 2005-02-10  Paul Eggert  <eggert@cs.ucla.edu>
5255         * lib/autoconf/general.m4 (_AC_PREPROC_IFELSE, _AC_COMPILE_IFELSE,
5256         _AC_LINK_IFELSE): Redirect stdin to /dev/null, in an attempt to
5257         avoid thinking that Allegro Common Lisp's "cl" command is a C++
5258         compiler.
5260 2005-02-09  Paul Eggert  <eggert@cs.ucla.edu>
5262         * doc/autoconf.texi (Limitations of Usual Tools): Document that
5263         grep -q isn't portable.  Improve grep -s explanation.
5264         Problem reported by Dan Manthey.
5266 2005-02-08  Paul Eggert  <eggert@cs.ucla.edu>
5268         * doc/autoconf.texi (Special Shell Variables): Clarify
5269         PATH_SEPARATOR wording; fix typo in IFS.  Reported by Gary V. Vaughan.
5271 2005-02-07  Paul Eggert  <eggert@cs.ucla.edu>
5273         * doc/autoconf.texi: Use @acronym for DJGPP.
5274         Fix some @code's that should have been @env's, and vice versa.
5275         Sort environment variable names.
5276         Mention that shells no longer inherit IFS.
5277         Don't recommend PATH_SEPARATOR=';' so strongly.
5278         Mention that $RANDOM might expand to the empty string.
5279         "symlink" and "soft link" -> "symbolic link".
5280         Improve mktemp description (reported by Bruno Haible).
5282 2005-02-05  Paul Eggert  <eggert@cs.ucla.edu>
5284         * tests/foreign.at (Libtool): Don't overquote AT_SETUP arg.
5285         * tests/m4sh.at (AS_DIRNAME, AS_BASENAME, AS_MKDIR_P, AS_HELP_STRING):
5286         Likewise.
5287         * tests/semantics.at (AC_C_BIGENDIAN, AC_PATH_PROG & AC_PATH_PROGS):
5288         Likewise.
5290 2005-02-04  Paul Eggert  <eggert@cs.ucla.edu>
5292         * NEWS: Mention AT_COPYRIGHT.
5294         * tests/local.at (AT_CMP): Use diff directly on input files rather
5295         than copying them.
5297         * lib/autoconf/programs.m4 (AC_PROG_SED): Don't look in
5298         /usr/xpg4/bin since that sed dumps core (at least on Solaris 8).
5300 2005-02-04  Noah Misch  <noah@cs.caltech.edu>
5301         and Paul Eggert  <eggert@cs.ucla.edu>
5303         * tests/autotest.at (Empty test suite): New test.
5304         * tests/torture.at (Substitute and define special characters)
5305         (Substitute a 2000-byte string, Define to a 2000-byte string)
5306         (Substitute a newline, Define a newline): New tests.
5308 2005-02-04  Noah Misch  <noah@cs.caltech.edu>
5310         * lib/m4sugar/m4sugar.m4 (m4_re_string, m4_re_word): Revert 2002-03-04.
5311         * tests/local.at (AT_CHECK_M4SUGAR): Add `m4sugar' to keywords.
5312         (AT_CHECK_ENV): Ignore LTLIBOBJS, FC variables, EGREP, FGREP, and SED.
5313         * tests/m4sugar.at (AT_CHECK_M4SUGAR_TEXT, AT_CHECK_M4RE): New macros.
5314         (Standard regular expressions): New test.
5315         (m4_warn, m4_require: circular dependencies, m4_text_wrap): Strip
5316         excess test name quoting.
5317         * tests/semantics.at (AC_CHECK_HEADERS_OLD, AC_CHECK_HEADERS_NEW): Pass
5318         CPPFLAGS to `configure' instead of setting it in `configure'.
5320         * lib/m4sugar/m4sh.m4 (AS_UNAME): Try only /usr/bin/hostinfo, not
5321         any `hostinfo' in $PATH, since hostinfo.exe is a popular file name
5322         on some platforms.
5324         * lib/autoconf/fortran.m4 (AC_LANG(Fortran), AC_FC_SRCEXT):
5325         s/FC_SRCEXT/ac_fc_srcext/; s/FCFLAGS_SRCEXT/ac_fcflags_srcext/.
5327         * tests/local.at (AT_CMP): New macro.
5328         (AT_DATA_AUTOCONF): Do not call AC_PROG_GREP.
5329         (AC_SAVE_STATE): Move environment grep...
5330         (AT_CHECK_ENV): to here.  Filter out `'$''.  Use AT_CMP.
5331         (AT_CONFIG_CMP): New macro.
5332         (AT_CHECK_MACRO): Run `configure' twice with cache and compare results.
5333         * tests/c.at (Extensions): Do not exit early.
5334         * tests/atlocal.in: Inherit $GREP.
5336         * lib/autoconf/c.m4 (_AC_C_STD_TRY): New macro.
5337         (_AC_PROG_CC_C89, _AC_PROG_CC_C99): Use it.
5339         * lib/autoconf/general.m4 (_AC_INIT_COPYRIGHT): Update for 2005.
5340         (AC_COPYRIGHT): Factor header comment portion out and move into...
5341         * lib/m4sugar/m4sh.m4 (AS_COPYRIGHT): This.
5342         * lib/autotest/general.at (AT_COPYRIGHT): New macro.
5343         (AT_INIT): Add Autotest copyright notice.  Display copyright notices in
5344         --version output.
5345         * tests/local.at: Add Autoconf test suite copyright notice.
5346         * doc/autoconf.texi (Writing testsuite.at): Document AT_COPYRIGHT.
5348 2005-02-04  Bruno Haible  <bruno@clisp.org>
5349         and Paul Eggert  <eggert@cs.ucla.edu>
5351         * doc/autoconf.texi (Limitations of Usual Tools): New mkstemp entry.
5353 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
5355         * lib/m4sugar/m4sugar.m4 (m4_re_escape): Escape ?, ^, \, $ too;
5356         this fixes a bug tickled by the AT_CAPTURE_FILE change noted below.
5358         Try not to generated lines of unlimited length, as POSIX places a
5359         2047-byte limit on line length of portable text files.
5360         * lib/autoconf/general.m4 (AC_SUBST, AC_SUBST_FILE):
5361         Use newline as a separator, not space.
5362         * lib/autotest/general.m4 (AT_TESTED, AT_KEYWORDS): Likewise.
5363         (AT_CAPTURE_FILE): Use space-backslash-newline as a separator, not
5364         space.
5366 2005-02-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5368         * lib/m4sugar/m4sh.m4 (_AS_SHELL_FN_WORK): Move func_* to
5369         as_func_*.  Add test to check whether positional parameters
5370         are restored after function return.
5372 2005-02-02  Paul Eggert  <eggert@cs.ucla.edu>
5374         * doc/autoconf.texi (Special Shell Variables): Mention _,
5375         BIN_SH, DUALCASE.  Say that variables other than "status" are safe
5376         if they contain a lower-case letter.  The DUALCASE problem was
5377         reported by Ralf Wildenhues.
5379         * bin/autoconf.as: Don't exit with status 0 after write failure
5380         with --help or --version.
5381         * lib/autoconf/general.m4 (_AC_INIT_HELP, _AC_INIT_VERSION): Likewise.
5382         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Likewise.
5384 2005-02-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5386         * doc/autoconf.texi (Limitations of Usual Tools):
5387         Unicos 9 sed limitations.
5388         * lib/autoconf/fortran.m4 (_AC_PROG_FC): Try cf77 before fort77
5389         to get the option-enhanced interface on older Crays.  Try ftn for
5390         Fortran 95 (newer Crays).
5392 2005-02-01  Paul Eggert  <eggert@cs.ucla.edu>
5394         * man/Makefile.am (.x.1): Go back to the simple solution, but take
5395         care to echo the commands, so the user knows what's going on.
5396         Modified from a suggestion by Stepan Kasal.
5398         * doc/autoconf.texi (autoreconf Invocation): Mention autopoint,
5399         with a cross reference.  Derived from a suggestion by Bruce Korb.
5401 2005-01-31  Paul Eggert  <eggert@cs.ucla.edu>
5403         * doc/autoconf.texi (config.status Invocation): Warn about
5404         discrepancy between CONFIG_SHELL and shell used to invoke 'configure'.
5405         * doc/install.texi (Defining Variables): Likewise.
5406         Based on a proposed patch by Ralf Wildenhues.
5408         * man/Makefile.am (.x.1): Make sure the required generated files
5409         are up to date.  Problem and original solution proposed by Stepan Kasal.
5410         $(dist_man_MANS:.1=-bin-prereq), $(dist_man_MANS:.1=-tests-prereq),
5411         implicit-man-prerequisites): New rules, used by the above.
5413         * doc/make-stds.texi, doc/standards.texi: Sync from gnulib.
5414         * config/config.guess, config/config.sub, config/install-sh: Likewise.
5415         * config/missing, config/texinfo.tex: Likewise.
5417 2005-01-29  Stepan Kasal  <kasal@ucw.cz>
5419         Simplify the implementation of m4_require (a.k.a. AC_REQUIRE).
5420         Update the long comment explaining it.
5422         m4_require no longer writes an ``is required by'' line to the
5423         execution stack.  It contains only one bit of non-redundant
5424         information: that the macro was required, not called.  And even
5425         this bit is useless in most situations: have you ever met a macro
5426         which both calls and requires the same macro?
5428         * lib/m4sugar/m4sugar.m4 (_m4_defun_pro): Don't push a diversion...
5429         (_m4_defun_pro_outer): ... only via this macro, for the outermost
5430           macro.
5431         (_m4_defun_epi, _m4_defun_epi_outer): Complementarily.
5432         (m4_expansion_stack_pop): Remove the misplaced comment.
5433         (m4_require): Don't put the ``is required by'' line to the
5434           execution stack; slightly improve the out-of-a-defun error message.
5435         (_m4_divert_grow): New macro, counter for the temporary diversions.
5436         (_m4_require_call): Use it.
5437         * tests/m4sugar.at (m4_require): Expect output without the
5438           ``is required by'' messages.
5440 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
5442         * doc/autoconf.texi (Limitations of Usual Tools): Recommend X
5443         rather than x for expr.
5445         * lib/autoconf/lang.m4 (_AC_COMPILER_OBJEXT): Avoid subshells when
5446         this is safe.
5447         * lib/autoconf/programs.m4 (AC_PROG_EGREP, AC_PROG_FGREP): Likewise.
5448         * lib/autoconf/specific.m4 (AC_SYS_LONG_FILE_NAMES): Likewise.
5449         * lib/autotest/general.m4 (AT_INIT): Likewise.
5450         * lib/m4sugar/m4sh.m4 (_AS_LINENO_WORKS): Likewise.
5451         * tests/mktests.sh: Likewise.
5453 2005-01-27  Akim Demaille  <akim@epita.fr>
5455         Have autoheader honor --force.
5457         * doc/make-stds.texi, doc/standards.texi: Update from masters.
5458         * lib/Autom4te/Channels.pm, lib/Autom4te/Configure_ac.pm
5459         * lib/Autom4te/FileUtils.pm, lib/Autom4te/XFile.pm: Update
5460         from masters, so that FileUtils.pm's update_file provide --force
5461         support.
5462         * bin/autoheader.in: Pass $force to update_file so that
5463         config.h.in is always recreated when --force.
5465 2005-01-24  Stepan Kasal  <kasal@ucw.cz>
5467         * doc/autoconf.texi (Introduction): Update Peter Simons' address.
5469 2005-01-21  Paul Eggert  <eggert@cs.ucla.edu>
5471         * doc/autoconf.texi (Limitations of Builtins): Clarify that
5472         "if test ! -d foo; ..." is portable.  Suggested by Stepan Kasal.
5474 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
5476         * doc/autoconf.texi (Shell Substitutions): Fix typo in case statement.
5477         Warn about newline stripping in `` and $().  Update Solaris
5478         version to 9.
5479         (Limitations of Builtins): Use expr "X...", not expr "x...", as
5480         X insulates us from future changes to Posix.
5481         (Limitations of Usual Tools): For AS_DIRNAME, warn about newline
5482         stripping.
5484 2005-01-19  Stepan Kasal  <kasal@ucw.cz>
5486         * doc/autoconf.texi (Defining Symbols): Delete the false comment that
5487           you cannot use AC_DEFINE to define macros containing `[' or `]'.
5489 2005-01-13  Paul Eggert  <eggert@cs.ucla.edu>
5491         * doc/autoconf.texi (Limitations of Usual Tools): Document bug
5492         in Solaris 8 join.  Problem reported by Tomohiro Suzuki on
5493         bug-tar mailing list.
5495 2005-01-05  Stepan Kasal  <kasal@ucw.cz>
5497         * lib/m4sugar/m4sugar.m4 (m4_copy): Fix the explanation.
5499 2005-01-05  Paul Eggert  <eggert@cs.ucla.edu>
5501         * lib/autoconf/c.m4 (AC_LANG_INT_SAVE(C)): Declare longval and
5502         ulongval to be static, to avoid unwanted GCC warning.  Problem
5503         reported by Michael Jennings via Daniel Reed; see
5504         <https://bugzilla.redhat.com/beta/show_bug.cgi?id=143852>.
5506 2005-01-05  Alexandre Duret-Lutz  <adl@gnu.org>
5508         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ARGS): Define datarootdir,
5509         docdir, htmldir, dvidir, pdfdir, psdir, and localdir.  Update
5510         datadir, infodir, and mandir.  Adjust argument parsing code.
5511         (_AC_INIT_HELP): Update help text.
5512         * doc/autoconf.texi (Installation Directory Variables): Document
5513         new variables.
5515 2005-01-04  Noah Misch  <noah@cs.caltech.edu>
5517         * lib/autoconf/programs.m4 (AC_PROG_MAKE_SET): If the Make program does
5518         not seem to work, assume it does set $(MAKE).
5519         * doc/autoconf.texi (AC_PROG_MAKE_SET): Update.
5521 2005-01-03  Stepan Kasal  <kasal@ucw.cz>
5523         * lib/m4sugar/m4sh.m4 (AS_REQUIRE): Add a comment about nesting.
5525 2005-01-03  Stepan Kasal  <kasal@ucw.cz>
5527         A cleanup of the diversion support in m4sugar.
5529         * lib/m4sugar/m4sugar.m4 (_m4_divert): A typo in description.
5530         (_m4_divert_n_stack): New macro; the expansion is
5531           <newline>m4_divert_stack, if m4_divert_stack is defined, and void
5532           otherwise.
5533         (m4_divert, m4_divert_push, m4_divert_pop, m4_init): Use it.
5534         (m4_divert_push, m4_divert_pop, _m4_defun_epi): Don't expand the word
5535           stored in _m4_divert_diversion or _m4_divert_dump.
5536         (m4_divert_pop): When the parameter is given, compare the symbolic
5537           name with the last diversion pushed on the stack.  Previously, the
5538           current diversion was compared with the numeric value of the
5539           diversion given as the parameter.
5540         (m4_require): If the macro hasn't been expanded yet, call ...
5541         (_m4_require_call): this new macro.
5543 2005-01-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5545         * lib/autoconf/general.m4 (_AC_INIT_PREPARE, _AC_ARG_VAR_VALIDATE):
5546         Workarounds for documented `case' limitations.
5548 2005-01-03  Paul Eggert  <eggert@cs.ucla.edu>
5550         * doc/autoconf.texi (Limitations of Usual Tools): Warn about
5551         sed 'command1;command2'.  Problem reported by Ralf Wildenhues.
5553 2005-01-02  Paul Eggert  <eggert@cs.ucla.edu>
5555         * bin/autoconf.as, bin/autoheader.in, bin/autom4te.in,
5556         bin/autoreconf.in, bin/autoscan.in, bin/autoupdate.in,
5557         bin/ifnames.in, tests/mktests.sh: Update copyright date to 2005.
5559         Patch from Roger Leigh (with some minor changes) as follows:
5560         * NEWS: New macros AC_PROG_CC_C89, AC_PROG_CC_C99.
5561         Resurrect AC_PROG_CC_STDC.
5562         * doc/autoconf.texi (C Compiler): Add AC_PROG_CC_STDC,
5563         AC_PROG_CC_C89, AC_PROG_CC_C99.
5564         (Obsolete Macros): Remove AC_PROG_CC_STDC; it's no longer obsolete.
5565         * lib/autoconf/c.m4 (_AC_PROG_CC_C89, _AC_PROG_CC_C99, AC_PROG_CC_C89,
5566         AC_PROG_CC_C99): New macros.
5567         (AC_PROG_CC_STDC): Use them.
5568         (_AC_PROG_CC_STDC): Remove.
5569         (AC_C_PROTOTYPES): Use ac_cv_prog_cc_c89, not ac_cv_prog_cc_stdc.
5570         * THANKS: Add Roger Leigh.
5572 2004-12-30  Noah Misch  <noah@cs.caltech.edu>
5574         * bin/autoreconf.in (autoreconf_current_directory):  AM_INIT_AUTOMAKE
5575         signals that the package uses Automake; a `Makefile.am' is typical but
5576         not essential.  Reported by Magnus Therning.
5577         * tests/torture.at (autoreconf.): New banner.
5578         (autoreconf and non-AC configure): Rename to `Non-Autoconf
5579         AC_CONFIG_SUBDIRS'.
5580         (autoreconf an empty directory): Rename to `Empty directory'.
5581         (Unusual Automake input files): New test.
5583 2004-12-30  Noah Misch  <noah@cs.caltech.edu>
5585         * lib/autotest/general.m4 (AT_CAPTURE_FILE): New macro.
5586         (AT_SETUP): Clear AT_capture_files.
5587         (_AT_CHECK): On failure, log each of AT_capture_files.  Fix comment.
5588         (AT_KEYWORDS): Fix comment typo.
5589         * tests/autotest.at (AT_CHECK_AT): Use AT_CAPTURE_FILE.
5590         * tests/local.at (AT_CHECK_CONFIGURE): Use AT_CAPTURE_FILE.
5591         * doc/autoconf.texi (Writing testsuite.at): Document AT_CAPTURE_FILE.
5593 2004-12-29  Albert Chin-A-Young  <china@thewrittenword.com>
5595         * lib/autoconf/programs.m4 (_AC_FEATURE_CHECK_LENGTH):
5596         If the variable to set is already set, set ac_cv_path_$1
5597         to the preset value so caller can assume ac_cv_path_$1
5598         is available.  (trivial change)
5600 2004-12-27  Noah Misch  <noah@cs.caltech.edu>
5602         * BUGS (Minor Problems): Warn about makefile limitations.
5603         * Makefile.am: Find and update `INSTALL' in $(srcdir).
5604         * man/Makefile.am: Find and update manual pages in $(srcdir).
5606 2004-12-24  Eric Blake  <ebb9@byu.net>
5608         * lib/m4sugar/m4sh.m4 (_AS_DETECT_BETTER_SHELL): Test candidate
5609         shells in subshell, to avoid noise from ash.  (trivial change)
5611 2004-12-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5613         * doc/autoconf.texi (Limitations of Builtins) <case>: Mention
5614         problems with SunOS ksh and backslash escaping, Bourne shells and
5615         closing brackets (both within character classes).  Bug reported
5616         against Libtool by Alexander Kurz <alexander.kurz@qsc.de>.
5617         <read>: New entry.  Mention non-availability of -r.
5619 2004-12-21  Akim Demaille  <akim@epita.fr>
5621         * lib/autotest/general.m4 (AT_LINE): Don't add srcdir here, to
5622         avoid cluttering displayed messages.  Rather, prepend srcdir where
5623         AT_LINE is used for log files.
5625 2004-12-21  Stepan Kasal  <kasal@ucw.cz>
5627         * lib/autoconf/status.m4: Quote ``$tmp'' in many places.
5628         * lib/m4sugar/m4sh.m4 (AS_TMPDIR): Fix the comment, as traps are
5629           no longer part of the macro, quote the occurrence of ``$tmp''.
5630         * doc/autoconf.texi (Forbidden Patterns): Typo.
5632 2004-12-21  Akim Demaille  <akim@epita.fr>
5634         * lib/autotest/general.m4 (AT_INIT): Make sure the "ok" etc. are
5635         separated from the test title by forcing a white space.
5637 2004-12-21  Akim Demaille  <akim@epita.fr>
5639         Enable Emacs navigation within testsuite.log files.
5641         * lib/autotest/general.m4 (AT_CLEANUP): Add an hint for Emacs to
5642         use the compilation mode.
5643         (AT_LINE): Point to the srcdir.
5645 2004-12-19  Noah Misch  <noah@cs.caltech.edu>
5647         * tests/Makefile.am (installcheck-local): Use $(bindir).
5648         (check-local, installcheck-local): Pass TESTSUITEFLAGS.
5649         * doc/autoconf.texi (Making testsuite Scripts): Recommend the same
5650         Makefile.am scheme Autoconf now uses.
5652 2004-12-18  Noah Misch  <noah@cs.caltech.edu>
5654         * lib/m4sugar/m4sugar.m4 (m4_qlen, m4_qdelta): New macros.
5655         * lib/autotest/general.m4 (AT_SETUP): Use m4_qdelta.
5657 2004-12-18  Noah Misch  <noah@cs.caltech.edu>
5659         * lib/autotest/general.m4 (_AT_DECIDE_TRACEABLE): New macro.
5660         (_AT_CHECK): Use it.
5661         * lib/m4sugar/m4sh.m4 (AS_ESCAPE_FOR_EXPAND): Remove.
5662         (AS_ESCAPE): Fix comment.
5663         * tests/autotest.at: Adjust section banner comments.
5664         (AT_CHECK_AT): Accept STATUS and STDERR.
5665         (AT_CHECK_AT_TEST): Likewise.
5666         (Invalid brace-enclosed parameter expansion)
5667         (Multiline command from M4 expansion)
5668         (Double-M4-quoted command): New tests.
5670 2004-12-17  Paul Eggert  <eggert@cs.ucla.edu>
5672         * doc/autoconf.texi: Update GNU FDL version from 1.1 to 1.2.
5674 2004-12-17  Akim Demaille  <akim@epita.fr>
5676         * lib/autoconf/general.m4 (AC_SUBST, AC_SUBST_FILES): Pass $1 to
5677         m4_pattern_allow.
5678         Suggested by Alexandre Duret-Lutz.
5679         * doc/autoconf.texi (Setting Output Variables): Catch up.
5681 2004-12-17  Stepan Kasal  <kasal@ucw.cz>
5683         * lib/m4sugar/m4sh.m4 (_AS_TEST_PREPARE): Fix comment.
5685 2004-12-17  Stepan Kasal  <kasal@ucw.cz>
5687         * lib/autoconf/general.m4 (_AC_LIBOBJ): We can use AC_SUBST/2,
5688           remove the comment which said we cannot.
5690 2004-12-17  Stepan Kasal  <kasal@ucw.cz>
5692         Add a specialized check for resolv.h.  Thanks to Gerrit P. Haase,
5693         Reini Urban and Paul Eggert for reporting the dependencies.
5695         * lib/autoconf/headers.m4 (AC_HEADER_RESOLV): New macro.
5696         * doc/autoconf.texi (AC_HEADER_RESOLV): Document it.
5697         (AC_HEADER_STAT): @cvindex{STAT_MACROS_BROKEN}, not @acindex.
5699 2004-12-17  Stepan Kasal  <kasal@ucw.cz>
5701         * bin/autoscan.in: Open autoscan.log only after ``parse_args'';
5702           so that eg. ``autoscan --help'' doesn't truncate it.
5704 2004-12-15  Nicolas Joly  <njoly@pasteur.fr>
5706         * lib/autoconf/programs.m4 (_AC_FEATURE_CHECK_LENGTH): Remove
5707         generated conftest files.
5709 2004-12-13  Noah Misch  <noah@cs.caltech.edu>
5711         * lib/autotest/general.m4 (_AT_CHECK) [--trace]: Do not enable shell
5712         tracing on commands with possibly-escaped newlines.
5713         * doc/autoconf.texi (Writing testsuite.at): Delete documentation of the
5714         discontinued behavior and its implications.
5715         * tests/autotest.at (BS-newline in command, ^BS-newline in command)
5716         (BSx641-newline in command, BS-BS-newline in command)
5717         (BSx640-newline in command, Newline-CODE-BS-newline in command)
5718         (Single-quote-BS-newline in command)
5719         (Single-quote-newline-BS-newline in command): New tests.
5721 2004-12-13  Stepan Kasal  <kasal@ucw.cz>
5723         * lib/m4sugar/m4sh.m4 (AS_EXECUTABLE_P): Use test -f && test -x
5724           on platforms where it works.
5725         (_AS_TEST_PREPARE): Test for ``test -x''.
5726         (_AS_BROKEN_TEST_PREPARE): Nuke.
5728 2004-12-13  Stepan Kasal  <kasal@ucw.cz>
5730         * lib/m4sugar/m4sh.m4 (AS_TMPDIR): Move the trap commands ...
5731         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): ... here;
5732           give only 4-letter prefix to AS_TMPDIR, comment fixed.
5733         * lib/autoconf/programs.m4 (_AC_PATH_PROG_FEATURE_CHECK): Don't
5734           create the temporary directory.
5735         (_AC_FEATURE_CHECK_LENGTH): Work in current directory.
5737 2004-12-12  Kelley Cook  <kcook@gcc.gnu.org>
5739         * bin/autoheader.in: Exit if no AC_CONFIG_HEADERS was found.
5740         (trivial change)
5742 2004-12-12  Alexandre Duret-Lutz  <adl@gnu.org>
5744         * doc/autoconf.texi (Limitations of Usual Tools) <expr (:)>: Typo.
5746 2004-12-11  Noah Misch  <noah@cs.caltech.edu>
5748         * lib/autotest/general.m4 (_AT_CHECK) [--trace]: Rework a shell pattern
5749         to avoid using a negated character class.  Reported by Nicolas Joly.
5750         * tests/local.at (AT_CHECK_SHELL_SYNTAX): Check for similar constructs.
5752 2004-12-10  Paul Eggert  <eggert@cs.ucla.edu>
5754         * man/Makefile.am (autoconf.1, autoheader.1, autom4te.1, autoreconf.1,
5755         autoscan.1, autoupdate.1, ifnames.1, config.guess.1, config.sub.1):
5756         Don't depend on .x file explicitly, since "make" does that for us.
5757         Suggested by Stepan Kasal.
5759         * bin/Makefile.am (MOSTLYCLEANFILES): Renamed from CLEANFILES.
5760         Add *.tmp.
5761         (autoconf, autoheader, autom4te, autoreconf, autoscan, autoupdate,
5762         ifnames): Factor common code.  And they said it couldn't be done!
5764 2004-12-09  Paul Eggert  <eggert@cs.ucla.edu>
5766         * bin/.cvsignore: Add autoconf.in.
5767         * tests/.cvsignore: Add wrapper.in.
5768         * lib/autotest/general.m4: Escape '$' in case pattern.
5770 2004-12-09  Noah Misch  <noah@cs.caltech.edu>
5772         * man/Makefile.am (autoconf.1): Regenerate when `autoconf.as' changes.
5774         * lib/autotest/general.m4 [--trace] (AT_INIT): Do not `set -v'.
5776         * tests/autotest.at: New file.
5777         * tests/suite.at: Include it.
5778         * tests/Makefile.am: Distribute it.
5780         * lib/autotest/general.m4 [--trace] (_AT_CHECK): Do not enable
5781           shell tracing on a command that could contain multiple lines.
5782         * doc/autoconf.text: Document that fact and its implications.
5783         * lib/m4sugar/m4sh.m4 (AS_ESCAPE_FOR_EXPAND): New macro.
5784         * tests/autotest.at (Multiline backquote command substitution,
5785           Multiline parameter expansion, Literal multiline command,
5786           Multiline parenthetical command substitution): Remove XFAIL.
5788 2004-12-09  Paul Eggert  <eggert@cs.ucla.edu>
5790         * doc/autoconf.texi (Libraries): Clarify problems with AC_CHECK_LIB
5791         and suggest AC_SEARCH_LIBS.  Suggested by Noah Misch and Stepan Kasal.
5793 2004-12-08  Noah Misch  <noah@cs.caltech.edu>
5795         * configure.ac (test suite): Cease to generate wrapper scripts.
5796         * configure: Regenerate.
5797         * lib/freeze.mk (MY_AUTOM4TE): Wrap the uninstalled autom4te directly.
5798         (m4f_dependencies): Adjust accordingly.
5799         * tests/Makefile.am (Wrappers): Generate wrapper scripts.
5800         (wrapper.in): Generate it in the build directory.
5801         (MAINTAINERCLEANFILES): Delete wrapper.in.
5802         (CLEANFILES): Add wrapper.in.
5803         * tests/wrapper.as: Move AS_INIT to very top, preserving copyright in
5804         the output.  Replace each $as_me with a @wrap_program@.
5805         * tests/wrapper.in: Delete it; we always build it.
5807         * bin/Makefile.am (autoconf.in): Generate it in the build directory.
5808         (EXTRA_DIST): Remove autoconf.in.
5809         (CLEANFILES): Add autoconf.in.
5810         (autoconf): Find autoconf.in in the build directory.
5811         * bin/autoconf.in: Delete it; we always build it.
5813 2004-12-08  Noah Misch  <noah@cs.caltech.edu>
5815         * lib/autotest/general.m4 (AT_INIT): Replace a `tr' with a `sed'.  Join
5816         PATH members so as to not prepend an empty element.  Move a comment.
5817         * Makefile.am (SUBDIRS): Build in `tests' last.
5818         * tests/Makefile.am (installcheck-local): Add check-local dependencies.
5820 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
5822         * lib/mdate-sh: Don't use "set - x`$ls_command /`", as zsh mishandles
5823         the spaces inside $ls_command.  Problem reported by Loulou Pouchet in
5824         <http://lists.gnu.org/archive/html/autoconf/2004-12/msg00074.html>.
5825         Don't use "set - x"; plain "set x" is enough, and simplifies debugging.
5827 2004-12-07  Stepan Kasal  <kasal@ucw.cz>
5829         * lib/autoconf/functions.m4 (AC_FUNC_GETMNTENT): Fix typo in previous
5830         patch: extra "-l"s.
5832 2004-12-06  Paul Eggert  <eggert@cs.ucla.edu>
5834         * lib/autoconf/functions.m4 (AC_FUNC_GETMNTENT): Check libc before
5835         looking elsewhere for getmntent.  Problem reported by Mark D. Baushke.
5836         * doc/autoconf.texi (Particular Functions): Mention new behavior.
5838 2004-12-03  Stepan Kasal  <kasal@ucw.cz>
5840         * lib/autoconf/general.m4 (AC_DEFINE, AC_DEFINE_UNQUOTED): Factor
5841           out the common code to ...
5842         (_AC_DEFINE_Q): ... a new macro; simplify the condition about the
5843           value of the #define--default to 1, iff the macro was called
5844           with exactly one parameter.
5846 2004-12-02  Paul Eggert  <eggert@cs.ucla.edu>
5848         * lib/autoconf/functions.m4 (AC_FUNC_MEMCMP): Use
5849         "char c = '\200';" rather than "char c = 0x80;" as the
5850         latter doesn't conform to the strict C standard due to
5851         overflow on signed char hosts.
5853         * lib/autoconf/c.m4 (_AC_PROG_CC_STDC): Prefer -qlanglvl=extc89
5854         to -qlanglvl=ansi.  We don't want to disable extensions.
5856 2004-11-29  Paul Eggert  <eggert@cs.ucla.edu>
5858         * doc/autoconf.texi (Particular Programs): @code{$PATH} -> @env{PATH}.
5859         (Using Autotest, testsuite Scripts, Writing testsuite.at):
5860         Reword slightly to avoid some English-language problems noted
5861         by Ralf Wildenhues in:
5862         http://lists.gnu.org/archive/html/autoconf-patches/2004-11/msg00027.html
5864 2004-11-29  Stepan Kasal  <kasal@ucw.cz>
5866         * NEWS: Add ^L above each release.
5868 2004-11-28  Paul Eggert  <eggert@cs.ucla.edu>
5870         Fix documentation problems reported by Russ Boylan in
5871         <http://lists.gnu.org/archive/html/bug-autoconf/2004-11/msg00056.html>,
5872         along with some nearby cruft.
5873         * doc/autoconf.texi (Libtool): Libtool can be used without
5874         Automake (not without Autoconf).
5875         (Introduction): Mention lists.gnu.org.
5876         * BUGS: Don't mention bugs.gnu.org.
5877         Remove mention of ancient libtool compatibility problem.
5878         * NEWS: Mention that bugs.gnu.org is kaput.
5879         * README: Likewise.  Mention where mailing list archives can be found.
5881 2004-11-28  Stepan Kasal  <kasal@ucw.cz>
5883         * lib/m4sugar/m4sh.m4 (AS_HELP_STRING): A typo in the comment.
5885 2004-11-26  Paul Eggert  <eggert@cs.ucla.edu>
5887         * doc/autoconf.texi (Pretty Help Strings): Go back to
5888         single-quoting assignments to cache variables.
5890 2004-11-23  Stepan Kasal  <kasal@ucw.cz>
5892         * doc/autoconf.texi (Pretty Help Strings): Fix quoting issues
5893         with the examples; fix the bug in MY_ARG_WITH example reported
5894         by Alexandre Duret-Lutz.
5895         * lib/autoconf/general.m4 (AC_ARG_ENABLE, AC_ARG_ENABLE): Enable
5896         expansion of $1 in the comment emitted to configure.
5898 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
5900         * doc/autoconf.texi (Pretty Help Strings): Fix typo
5901         in my editing of the previous patch.  Problem reported
5902         by Alexandre Duret-Lutz.
5904 2004-11-22  Stepan Kasal  <kasal@ucw.cz>
5906         * doc/autoconf.texi (Autoconf Language): Explain that
5907         ``descriptions'' may not be double quotes.
5908         (Quotation Rule Of Thumb): Likewise.
5909         (Pretty Help Strings): Likewise; remove the wrong comment;
5910         simplify the examples and improve their quoting.
5912 2004-11-13  Stepan Kasal  <kasal@ucw.cz>
5914         * lib/autoconf/programs.m4 (_AC_FEATURE_CHECK_LENGTH): Don't check
5915         the $1_found variable, don't test whether the file is executable;
5916         Both things are checked ...
5917         (_AC_PATH_PROG_FEATURE_CHECK): ... here; AS_EXECUTABLE_P replaces
5918         the former ``test -f''.
5919         * lib/m4sugar/m4sh.m4 (_AS_TEST_PREPARE): Fix a typo.
5921 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
5923         * doc/autoconf.texi (Limitations of Usual Tools): Avoid cp -r;
5924         use cp -R instead.
5926 2004-11-10  Derek R. Price  <derek@ximbiot.com>
5928         * doc/autoconf.texi (Limitations of Usual Tools): Note `cp -r'
5929         limitations.  Reorder paragraphs for clarity.
5931 2004-10-11  Paul Eggert  <eggert@cs.ucla.edu>
5933         * doc/autoconf.texi: Standardize spelling of "Posix" (as opposed
5934         to "POSIX" or "@acronym{POSIX}"), and similarly for "DOS
5935         variants", "Unix", and some related minor wording fixups.
5937         (Shellology, Special Shell Variables): Document that the Zsh
5938         problem with NULLCMD was fixed in zsh 3.1.6-dev-18.  Thanks
5939         to Alexandre Duret-Lutz for this info.
5941 2004-10-10  Alexandre Duret-Lutz  <adl@gnu.org>
5943         * doc/autoconf.texi (One-Shot Macros): New node.
5945 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
5947         * doc/autoconf.texi (Function Portability): Fix misdescription
5948         of putenv.  Problem reported by Michael Wardle.
5950 2004-09-22  Paul Eggert  <eggert@cs.ucla.edu>
5952         * doc/autoconf.texi (auindex): New macro.
5953         (AU_DEFUN): Use it to fix the bug when the index contained AC_AU_DEFUN.
5954         Problem reported by Stepan Kasal.
5956 2004-09-05  Paul Eggert  <eggert@cs.ucla.edu>
5958         Fix problems reported by Andreas Buening in:
5959         http://lists.gnu.org/archive/html/autoconf-patches/2004-04/msg00004.html
5960         * lib/autoconf/programs.m4 (AC_PROG_MAKE_SET): Set SHELL=/bin/sh
5961         in test makefile.
5962         * lib/autotest/general.m4 (AT_INIT): Don't assume /dev/null is
5963         readable; it's not true in OS/2-emx.
5965 2004-09-04  Paul Eggert  <eggert@cs.ucla.edu>
5967         * lib/autoconf/libs.m4 (_AC_PATH_X_XMKMF): If xmkmf returns
5968         "/usr/include", clear ac_x_includes instead of leaving it as "no"
5969         (trivial change).  Problem and patch reported by Andrew Church in:
5970         http://lists.gnu.org/archive/html/bug-autoconf/2004-04/msg00016.html
5972 2004-09-03  Paul Eggert  <eggert@cs.ucla.edu>
5974         * doc/autoconf.texi: Give AC_DEFINE and AC_DEFINE_UNQUOTED
5975         three args in examples.  Problem reported by Frederik Fouvry in:
5976         http://lists.gnu.org/archive/html/bug-autoconf/2004-09/msg00017.html
5977         Also, fix some minor spacing and punctuation bugs.
5979 2004-09-02  Akim Demaille  <akim@epita.fr>
5981         * doc/autoconf.texi (Limitations of Builtins): Swap "cd" and
5982         "case" to restore ordering.
5983         Reported by Stepan Kasal.
5985 2004-08-26  Akim Demaille  <akim@epita.fr>
5987         * doc/autoconf.texi: Minor typos and stylos.
5989 2004-08-20  Paul Eggert  <eggert@cs.ucla.edu>
5991         * configure.ac (AC_INIT): Bump to 2.59c.
5993 2004-08-20  Paul Eggert  <eggert@cs.ucla.edu>
5995         Version 2.59b.
5997         * README: Add advice about m4 1.4.2.
5999         * Makefile.cfg (wget_files): Remove config.guess, config.sub,
6000         texinfo.tex for now (done by hand now).
6001         * Makefile.maint (wget_files, cvs_files):
6002         Remove ansi2knr.c; nobody uses it.
6003         (ansi2knr.c-url_prefix): Remove.
6004         (cvs-update): Fix test for failure.  I don't know why it ever
6005         worked...
6007         * doc/autoconf.texi: Update URLs, some of which went stale.
6008         Use @uref rather than @href.
6010         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ARGS): Have configure
6011         handle "--" as per POSIX.  Suggested by Paul Pogonyshev.
6013         * config/config.guess, config/config.sub, config/elisp-comp,
6014         config/install-sh, config/mkinstalldirs, config/texinfo.tex,
6015         doc/fdl.texi, doc/standards.texi: Sync with master copy.
6017         * NEWS, TODO, configure.ac, bin/autoscan.in,
6018         bin/autoupdate.in, bin/ifnames.in, doc/autoconf.texi,
6019         doc/install.texi, lib/Autom4te/Configure_ac.pm,
6020         lib/Autom4te/FileUtils.pm, lib/autoconf/general.m4,
6021         lib/autoconf/programs.m4, lib/autoconf/status.m4,
6022         lib/autotest/general.m4, lib/m4sugar/m4sh.m4,
6023         lib/m4sugar/m4sugar.m4, tests/local.at, tests/m4sh.at,
6024         tests/tools.at, tests/torture.at:
6025         Use "file name" rather than "filename" or "path",
6026         to be consistent with the terminology of the GNU coding standards.
6028 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
6030         * lib/autoconf/c.m4 (AC_LANG_BOOL_COMPILE_TRY(C),
6031         AC_C_LONG_DOUBLE): Undo 2004-06-04 change, as it didn't work with
6032         HP-UX 11.23 cc/aCC or Tru64 4.0 cc.  Problem reported by Noah Misch in
6033         <http://lists.gnu.org/archive/html/autoconf/2004-07/msg00004.html>.
6035         More fixes to support spaces in the name of the build directory.
6036         This isn't a complete fix but it's an improvement.
6038         * bin/autoconf.as (autom4te_options): New var.
6039         Use it instead of appending to AUTOM4TE, so that we can allow
6040         spaces in the build directory's absolute name.
6041         * bin/autoheader.in ($autoconf): Allow spaces in file names.
6042         * lib/autotest/general.m4 (AT_INIT, AT_CLEANUP, _AT_CHECK,
6043         AT_CHECK_NOESCAPE): Likewise.
6044         * tests/wrapper.as (testdir, AUTOM4TE_CFG, autom4te_perllibdir,
6045         main program): Likewise.
6047 2004-08-18  Paul Eggert  <eggert@cs.ucla.edu>
6049         * lib/autoconf/general.m4 (_AC_INIT_HELP): Quote $ac_popdir uses.
6050         From Ralf Corsepius in:
6051         http://lists.gnu.org/archive/html/autoconf-patches/2004-08/msg00014.html
6053 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
6055         * doc/autoconf.texi (Function Portability): Document isinf and
6056         and isnan.  From a suggestion by Kevin Ryde.
6058         * lib/Autom4te/General.pm (END): Return correct exit status even
6059         if unlink succeeds and sets $?.  Needed with Solaris 8's perl 5.00503.
6061 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
6063         * tests/torture.at (Deep Package): Use configure.in, not configure.ac,
6064         for compatibility with Automake 1.4.  Reported by J C Fitzgerald in
6065         <http://lists.gnu.org/archive/html/bug-autoconf/2003-08/msg00051.html>.
6067 2004-08-04  Alexandre Duret-Lutz  <adl@gnu.org>
6069         * lib/autoconf/general.m4 (AC_REQUIRE_AUX_FILE): New empty macro.
6070         (AC_CANONICAL_BUILD): Call it to require config.sub and config.guess.
6071         * lib/autoconf/programs.m4 (AC_PROG_INSTALL): Likewise for install-sh.
6072         * doc/autoconf.texi (Input): Document AC_REQUIRE_AUX_FILE.
6073         * lib/autom4te.in (Automake-preselections): Preselect
6074         AC_REQUIRE_AUX_FILE.  Automake 1.10 will trace it.
6076 2004-08-02  Alexandre Duret-Lutz  <adl@gnu.org>
6078         * lib/autom4te.in (Automake-preselections): Preselect
6079         AC_CANONICAL_BUILD and AC_CANONICAL_TARGET.  Automake 1.9.1 will
6080         trace them.
6082 2004-07-29  Paul Eggert  <eggert@cs.ucla.edu>
6084         * lib/m4sugar/m4sh.m4 (_AS_BOURNE_COMPATIBLE): Set BIN_SH, for
6085         Tru64.
6086         * doc/autoconf.texi (Shellology): Mention BIN_SH.
6087         Document problem with "`""`" in pdksh POSIX mode.
6089 2004-07-27  Paul Eggert  <eggert@cs.ucla.edu>
6091         * lib/m4sugar/m4sh.m4 (_AS_BOURNE_COMPATIBLE): Use "set -o posix"
6092         with pdksh, too.  Problem reported by Patrick Welche via
6093         Gary V. Vaughan.
6094         * doc/autoconf.texi (Shellology): Note that set -o posix is
6095         useful for pkdsh, too.
6097 2004-06-24  Paul Eggert  <eggert@cs.ucla.edu>
6099         * lib/m4sugar/m4sh.m4 (_AS_DETECT_BETTER_SHELL): Require
6100         _AS_UNSET_PREPARE, so that we can use $as_unset directly.
6101         Don't fail if ENV or BASH_ENV is readonly.
6102         (AS_SHELL_SANITIZE): Don't fail if ENV, MAIL, MAILPATH, LC_ALL,
6103         etc. are read only.  Problem reported by Ludovic Courtes.
6105 2004-06-23  Noah Misch  <noah@cs.caltech.edu>
6107         * lib/m4sugar/m4sh.m4 (_AS_BOURNE_COMPATIBLE): If the shell is
6108         zsh, disable GLOB_SUBST to avoid backslash handling problems.
6109         (trivial change)
6111 2004-06-04  Paul Eggert  <eggert@cs.ucla.edu>
6113         * doc/autoconf.texi (File System Conventions): Warn about
6114         names like "aux".  Problem reported by Eric Blake.
6116         * lib/autoconf/c.m4 (AC_LANG_BOOL_COMPILE_TRY (C)): Use division
6117         by zero instead of array size, so that we can use any arithmetic
6118         constant expression (instead of requiring an integer constant
6119         expression).  This allows us to test expressions like DBL_MAX <
6120         LDBL_MAX, which didn't conform to the C standard using the old
6121         method.
6122         (AC_C_LONG_DOUBLE): Put back in the tests for LDBL_MAX and LDBL_EPSILON,
6123         now that we can do floating-point tests at compile time.
6125 2004-06-02  Paul Eggert  <eggert@cs.ucla.edu>
6127         * lib/autoconf/c.m4 (AC_C_LONG_DOUBLE): Don't check LDBL_MAX
6128         and LDBL_EPSILON, as the resulting expression isn't an
6129         integer constant expression and violates the C standard.
6130         Problem reported by Nelson H. F. Beebe.  Also, check
6131         for "L" suffix, and check that long double doesn't have
6132         worse range or precision than double, that mixed-mode
6133         arithmetic doesn't generate a diagnostic, that double
6134         constants fit in long double.
6136 2004-06-03  Kevin Ryde  <user42@zip.com.au>
6138         * doc/autoconf.texi (Function Portability): Add notes on free(NULL),
6139         malloc(0) and realloc(NULL,size).
6141         * doc/autoconf.texi (Shell Substitutions): Spelling error reported by
6142         Bob Proulx.
6144 2004-05-31  Paul Eggert  <eggert@cs.ucla.edu>
6146         * lib/autoconf/headers.m4 (HAVE_STDBOOL_H): Detect _Bool bug
6147         in HP aC++/ANSI C B3910B A.05.55 [Dec 04 2003].  Problem reported
6148         by Jim Meyering.
6150 2004-05-26  Paul Eggert  <eggert@cs.ucla.edu>
6152         * doc/autoconf.texi (Limitations of Builtins): Mention that ! COMMAND
6153         can be rewritten using if-then-else.  Suggested by Bruno Haible.
6155 2004-05-25  Paul Eggert  <eggert@cs.ucla.edu>
6157         * doc/autoconf.texi (testsuite Scripts): Fix typo.
6158         Problem reported by Stepan Kasal.
6160 2004-05-24  Paul Eggert  <eggert@cs.ucla.edu>
6162         * tests/Makefile.am (autoconfdir): Fix to match comment (trivial
6163         change).  Patch reported by Ralf Wildenhues in
6164         <http://mail.gnu.org/archive/html/bug-autoconf/2004-05/msg00092.html>.
6166         * lib/autoconf/functions.m4 (AC_FUNC_MBRTOWC): Don't assume that a
6167         function F exists if the compiler and linker let you compile an
6168         expression like (F != 0).  Recent versions of GCC optimize away
6169         the reference to F in that case, since every function address must
6170         be nonzero, so the link succeeds even if F does not exist.
6171         Problem reported by Manu in
6172         <http://mail.gnu.org/archive/html/bug-gnu-utils/2004-05/msg00060.html>.
6174         * doc/autoconf.texi (Systemology): Standardize on the spelling of
6175         "Unix".  Many uses changed.
6176         (Limitations of Builtins): Explain better why the ! command isn't
6177         portable.
6179 2004-05-22  Alexandre Duret-Lutz  <adl@gnu.org>
6181         * lib/autom4te.in (Automake-preselections): Preselect
6182         LT_SUPPORTED_TAG in lieu of AC_LIBTOOL_TAGS.
6184 2004-05-19  Kevin Ryde  <user42@zip.com.au>
6186         * doc/autoconf.texi (Function Portability): Add strerror_r, cross
6187         referencing AC_FUNC_STRERROR_R.
6189         * doc/autoconf.texi (Particular Functions): In AC_FUNC_CLOSEDIR_VOID,
6190         note pessimistic assumption when cross compiling.
6192 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
6194         * doc/autoconf.texi (Limitations of Make): Note that BSD make
6195         (until 2004) invoked subcommands with sh -e, contra POSIX.
6196         Reported by Kevin Ryde.
6198 2004-05-10  Eric Sunshine  <sunshine@sunshineco.com>
6200         * programs.m4 (_AC_PROG_GREP): Fixed bug where PATH argument handed to
6201         _AC_PATH_PROG_FEATURE_CHECK contained leading whitespace (i.e.
6202         "        $PATH:/usr/xpg4/bin"). This resulted in bogus tests, such as
6203         `test -f "        /usr/bin/grep"', which _always_ failed.
6204         (AC_PROG_SED): Ditto bogus PATH fix.
6205         * autoconf.texi (AC_PROG_GREP): Properly document that this macro
6206         requires that grep correctly supports _multiple_ `-e' options, rather
6207         than stating only that grep should accept `-e'.
6209 2004-05-03  Paul Eggert  <eggert@cs.ucla.edu>
6211         Port to C99, which requires that 'exit' be declared.
6213         * lib/autoconf/c.m4 (AC_C_BIGENDIAN): Use AC_INCLUDES_DEFAULT
6214         to ensure that stdlib.h is included.
6215         * lib/autoconf/functions.m4 (_AC_LIBOBJ_ALLOCA, AC_FUNC_SETPGRP,
6216         AC_FUNC_STRTOD, AC_FUNC_SETVBUF_REVERSED, AC_FUNC_FORK, _AC_FUNC_FORK,
6217         _AC_FUNC_VFORK, AC_FUNC_WAIT3): Likewise.
6218         * lib/autoconf/specific.m4 (AC_SYS_RESTARTABLE_SYSCALLS): Likewise.
6219         * lib/autoconf/types.m4 (AC_TYPE_GETGROUPS): Likewise.
6220         * lib/autoconf/headers.m4 (AC_HEADER_STDC): Include <stdlib.h>
6221         when using 'exit' in a test; C99 requires that 'exit' be declared.
6223 2004-05-02  Paul Eggert  <eggert@cs.ucla.edu>
6225         * doc/autoconf.texi (Particular Programs): AC_PROG_GREP
6226         now prefers 'grep' implementations that accept -e.
6227         (Limitations of Usual Tools): Describe problems of traditional
6228         egrep and fgrep with long input lines, and of traditional grep
6229         with -e.
6230         * lib/autoconf/programs.m4 (AC_PROG_GREP): Check for -e, too.
6231         (_AC_PROG_GREP): Assume 3rd arg is properly quoted for the shell.
6232         All callers changed.  Append /usr/xpg4/bin to the PATH, for
6233         Solaris.
6234         (_AC_FEATURE_CHECK_LENGTH): Discard stderr, so we don't bother
6235         the user with complaints about multiple -e options.
6236         * tests/local.at (AC_STATE_SAVE): Use $GREP, not grep.
6237         Define it with AC_PROG_GREP.
6238         * configure.ac (AC_PROG_GREP): Add.
6239         * lib/freeze.mk (GREP): New macro.
6241 2004-05-02  Eric Sunshine  <sunshine@sunshineco.com>
6243         * lib/m4sugar/m4sh.m4 (_AS_DETECT_BETTER_SHELL): Consult $SHELL as
6244         a possible candidate only after all others fail, rather than
6245         consulting it first.  This improves backward compatibility by
6246         better reflecting the way shell selection occurred in previous
6247         versions of Autoconf, and should help to avoid triggering latent
6248         problems in other packages, such as the one in Automake where zsh
6249         is not handled robustly:
6250         http://mail.gnu.org/archive/html/automake/2004-04/msg00095.html
6251         Although it is not Autoconf's responsibility to work around
6252         problems in Automake, it nevertheless makes sense to avoid
6253         introducing unnecessary incompatibilites.
6255 2004-04-22  Albert Chin-A-Young  <china@thewrittenword.com>,
6256             Gary V. Vaughan  <gary@gnu.org>
6258         * lib/autoconf/programs.m4 (_AC_FEATURE_CHECK_LENGTH): Don't guess
6259         how deeply nested we are when a suitable tool is found, set the
6260         ac_path_TOOL_found flag.
6261         (_AC_PATH_PROG_FEATURE_CHECK): Encapsulate knowledge of how deeply
6262         nested we are in this macro.  Break out of all 3 nested loops if
6263         ac_path_TOOL_found is set.
6265 2004-04-21  Gary V. Vaughan  <gary@gnu.org>
6267         * lib/autoconf/programs.m4 (_AC_FEATURE_CHECK_LENGTH): Break out
6268         of the _AS_PATH_WALK loop too if GNU flavor is found.
6270 2004-04-21  Alexandre Duret-Lutz  <adl@gnu.org>
6272         * doc/autoconf.texi (Limitations of Make): Update documentation
6273         for `$<'.  New entry `Long lines', based on a report from Simon
6274         Josefsson.  Augment the documentation for SHELL = @SHELL@ with a
6275         paragraph about DJGPP, based on a mail from Richard Dawe.
6277 2004-04-20  Paul Eggert  <eggert@twinsun.com>
6279         * tests/c.at (C keywords): Don't assume that GCC supports
6280         "restrict" and "inline", as sufficiently-old GCC versions do not
6281         (also, GCC configured to be in pedantic C89 mode does not).
6282         Problem reported by Sumit Pandya in:
6283         http://mail.gnu.org/archive/html/autoconf/2004-04/msg00092.html
6285         * lib/autoconf/c.m4 (_AC_PROG_CC_G, _AC_PROG_CXX_G): Don't
6286         consider -g to work if it generates warnings when plain compiles
6287         don't.  Problem reported by Braden McDaniel in:
6288         http://mail.gnu.org/archive/html/autoconf-patches/2003-07/msg00014.html
6290         * doc/autoconf.texi (Slashes): New section, to document a problem
6291         reported by Jim Meyering in:
6292         http://mail.gnu.org/archive/html/bug-coreutils/2004-02/msg00060.html
6294         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Remove potential
6295         linker output files before linking, to work around IRIX 6 linker bug.
6296         Problem reported by Rainer Orth in:
6297         http://mail.gnu.org/archive/html/autoconf-patches/2004-02/msg00007.html
6299 2004-04-20  Gary V. Vaughan  <gary@gnu.org>
6301         * lib/autoconf/programs.m4 (_AC_FEATURE_CHECK_LENGTH): Make the
6302         best tool so far counter rely on the tool path variable name to
6303         avoid checks for one tool being affected by the results of running
6304         the length check on a previous tool.
6306         * lib/autoconf/programs.m4 (_AC_PROG_GREP): Take an additional
6307         match expression argument, as different greps have different
6308         regular expression flavours.
6309         (AC_PROG_FGREP): Pass 'FGREP'. fgrep treats all match chars as
6310         literals.
6311         (AC_PROG_EGREP): Pass 'EGREP$'.
6312         (AC_PROG_GREP): Pass 'GREP$'.
6314 2004-04-20  Albert Chin-A-Young  <china@thewrittenword.com>
6316         * lib/autoconf/programs.m4 (AC_PROG_GREP): Cache variable
6317         is `ac_cv_path_GREP', not `oc_cv_path_GREP'.
6319 2004-03-29  Paul Eggert  <eggert@twinsun.com>
6321         * doc/autoconf.texi (Particular Headers, Particular Types, Generic
6322         Types, Specific Compiler Characteristics, System Services,
6323         Obsolete Macros): Use 'long int', 'short int', 'unsigned int'
6324         etc. consistently instead of 'long', 'short', 'unsigned' etc.
6325         * lib/autoconf/c.m4 (AC_LANG_INT_SAVE(C), AC_C_BIGENDIAN): Likewise.
6326         * lib/autoconf/functions.m4 (AC_FUNC_MMAP, AC_FUNC_SELECT_ARGTYPES):
6327         Likewise.
6328         * lib/autoconf/headers.m4 (AC_HEADER_SYS_WAIT): Likewise.
6329         * lib/autoconf/types.m4 (AC_TYPE_GETGROUPS, AC_TYPE_SIZE_T,
6330         AC_TYPE_OFF_T): Likewise.
6331         * tests/semantics.at (AC_CHECK_TYPES: backward compatibility):
6332         Likewise.
6334         * tests/foreign.at (Libtool): Create an empty aclocal.m4, to
6335         pacify libtool 1.5.2.  Fix quoting problems in sed command.
6337 2004-03-28  Paul Eggert  <eggert@twinsun.com>
6339         * doc/autoconf.texi (Particular Structures): AC_STRUCT_TIMEZONE
6340         now defines HAVE_DECL_TZNAME if it is declared, when
6341         HAVE_STRUCT_TM_TM_ZONE is not defined.
6342         * lib/autoconf/types.m4 (AC_STRUCT_TIMEZONE): Implement this.
6343         Do not assume atoi.  Rely on HAVE_DECL_TZNAME when testing
6344         for HAVE_TZNAME.
6346 2004-03-28  Steven G. Johnson  <stevenj@fftw.org>
6348         * lib/autoconf/fortran.m4 (_AC_PROG_FC_V_OUTPUT): Corrected
6349         superfluous backslashing of quotes (") in sed expressions;
6350         thanks to Paul Eggert.
6352 2004-03-26  Steven G. Johnson  <stevenj@alum.mit.edu>
6354         * lib/autoconf/fortran.m4 (_AC_PROG_FC): new name of Intel
6355         Fortran compiler is ifort, also added pghpf; thanks to Nelson
6356         H. F. Beebe for the bug report.
6358 2004-03-26  Steven G. Johnson  <stevenj@fftw.org>
6360         * lib/autoconf/fortran.m4 (_AC_PROG_FC_V_OUTPUT): fix for
6361         quoted -cmdline argument in Portland Group compiler (bug
6362         reported by Jeffrey J. Barteet).
6364 2004-03-25  Kevin Ryde  <user42@zip.com.au>
6366         * doc/autoconf.texi (Specifying Names): Move cross_compiling ovindex to
6367         (Run Time): ... here, where it's now mentioned.
6369 2004-03-19  Alexandre Duret-Lutz  <adl@gnu.org>
6371         * doc/autoconf.texi (autom4te Invocation): Language Autoconf
6372         inherits from language Autoconf-without-aclocal-m4.
6373         (Customizing autom4te): Adjust example; the cache must now be
6374         disabled for language Autoconf-without-aclocal-m4.
6376 2004-03-16  Paolo Bonzini  <bonzini@gnu.org>
6377             Nathanael Nerode  <neroden@twcny.rr.com>
6379         * lib/autoconf/programs.m4 (AC_PATH_TOOL, AC_CHECK_TOOL,
6380         AC_CHECK_TOOLS): Warn if a cross-tool is found without
6381         a prefix.
6382         (AC_PATH_TARGET_TOOL, AC_CHECK_TARGET_TOOL,
6383         AC_CHECK_TARGET_TOOLS): New macros.
6384         * doc/autoconf.texi (Generic Programs): Document
6385         (AC_PATH_TARGET_TOOL, AC_CHECK_TARGET_TOOL,
6386         AC_CHECK_TARGET_TOOLS, and warn for future changes
6387         in the behavior of AC_PATH_TOOL, AC_CHECK_TOOL and
6388         AC_CHECK_TOOLS.
6389         (Specifying Names): Document the reason for these future
6390         behavioral changes.
6391         * tests/mktests.sh: Do not generate tests for the
6392         new macros.
6393         * NEWS: Document these changes.
6395         * doc/autoconf.texi: Avoid macros with unbraced arguments,
6396         they make TeX hang up.
6398 2004-03-15  Paul Eggert  <eggert@bogus.example.com>
6400         * NEWS: New macro AC_CHECK_ALIGNOF.
6401         * doc/autoconf.texi (Generic Compiler Characteristics): Document it.
6402         * lib/autoconf/types.m4 (AC_CHECK_SIZEOF): Use long int rather than
6403         int; avoid "a `$1'" since this isn't grammatical if $1 begins with a
6404         vowel.
6405         (AC_CHECK_ALIGNOF): New macro.
6406         * tests/mktests.sh (ac_exclude_list): Exclude AC_CHECK_ALIGNOF.
6407         * tests/semantics.at (AC_CHECK_ALIGNOF): Add tests similar to
6408         those for sizeof.
6410 2004-03-03  Paul Eggert  <eggert@twinsun.com>
6412         * bin/Makefile.am (edit): Don't use $< in a context where
6413         POSIX doesn't require support for it.  Use $@.in instead.
6414         Problem reported by Anthony N. Frasso in
6415         <http://mail.gnu.org/archive/html/autoconf/2004-03/msg00008.html>.
6416         * bin/autoscan.in, bin/autoupdate.in: Add @configure_input@ comment.
6418 2004-02-23  Gary V. Vaughan  <gary@gnu.org>
6420         * bin/autoreconf.in (autoreconf_current_directory): Recognize LT_INIT
6421         from the next generation of Libtool.
6422         * lib/autom4te.in (Autoreconf-preselections): Ditto.
6424 2004-02-20  Alexandre Duret-Lutz  <adl@gnu.org>
6426         * doc/autoconf.texi (Limitations of Usual Tools) <mkdir>: `mkdir -p'
6427         is not always thread-safe.  Report from Nathanael Nerode.
6429 2004-02-18  Paul Eggert  <eggert@twinsun.com>
6431         Fix a dependencies problem, stemming from a Autoconf 2.59 build
6432         problem on QNX reported by Stephen Rasku in
6433         <http://mail.gnu.org/archive/html/bug-autoconf/2004-02/msg00066.html>.
6435         * bin/Makefile.am ($(srcdir)/autoconf.in): Depend on
6436         $(m4sh_m4f_dependencies); this removes a FIXME.
6437         * tests/Makefile.am ($(srcdir)/wrapper.in): Likewise.
6438         (MAINTAINERCLEANFILES): Split into pieces,
6439         one per related section.  Add $(srcdir)/wrapper.in.
6441 2004-02-09  Paul Eggert  <eggert@twinsun.com>
6443         * doc/autoconf.texi (Setting Output Variables): Emphasize that
6444         AC_SUBST provides no portable way to escape literal newlines.
6446         * lib/autoconf/fortran.m4 (_AC_FC_LIBRARY_LDFLAGS): Ignore all
6447         flags of the form -lcrt*.o, not just -lcrt[01].o and -lcrtbegin.o.
6448         Darwin uses -lcrt2.o and there's little point to cataloging all
6449         the system variants.  Partial fix reported by Andreas Waechter in:
6450         http://mail.gnu.org/archive/html/autoconf-patches/2004-02/msg00006.html
6451         for bug reported by Nelson H. F. Beebe in:
6452         http://mail.gnu.org/archive/html/bug-autoconf/2003-12/msg00090.html
6454 2004-02-04  Paolo Bonzini  <bonzini@gnu.org>
6456         * doc/autoconf.texi (AU_DEFUN): Fix English,
6457         suggested by Paul Eggert.
6458         * lib/autoconf/autoupdate.m4: Correct reference to
6459         acobsolete.m4, suggested by Alexandre Duret-Lutz.
6461 2004-02-02  Paolo Bonzini  <bonzini@gnu.org>
6463         * bin/autoupdate.in: Define __file__ so that warnings
6464         refer to the correct file.
6465         * doc/autoconf.texi (AU_DEFUN): Describe more correctly
6466         the behavior of the third argument.
6467         * lib/autoconf/autoupdate.m4 (AU_DEFUN): Describe more
6468         correctly the behavior of the third argument.  Document
6469         what the three macros that AU_DEFUN defines do.  Fix
6470         warning message when the third argument includes $0
6471         (reported by Alexandre Duret-Lutz).
6473 2004-01-30  Paolo Bonzini  <bonzini@gnu.org>
6474             Eric Sunshine  <sunshine@sunshineco.com>
6475             Paul Eggert  <eggert@twinsun.com>
6477         * lib/m4sugar/m4sh.m4 (M4SH-SANITIZE): New diversion.
6478         (AS_INIT): Output shell initialization there. Removed optional
6479         parameter. Expand _AS_SHELL_FN_SPY.
6480         (AS_INIT_WITH_SHELL_FN): Removed.
6481         (_AS_SHELL_FN_SPY): New macro.
6482         (AS_DETECT_REQUIRED, AS_DETECT_SUGGESTED): New
6483         macros.
6484         (AS_SHELL_SANITIZE): Remove loop to find better shell
6485         and documentation for the parameter.
6486         (_AS_DETECT_BETTER_SHELL): Move it here.
6487         (_AS_SHELL_FN_WORK): Remove shell invocation, reformat.
6488         (_AS_RUN): Move it here, support testing with eval.
6489         (AS_REQUIRE_SHELL_FN): Require shell functions when
6490         it is used.
6491         (_AS_LINENO_WORKS): Put around braces, we do not
6492         trigger the bash bug anymore.
6493         * lib/autotest/general.m4: Document M4SH-SANITIZE, do not
6494         use AS_INIT_WITH_SHELL_FN.
6495         * bin/autoconf.in, tests/wrapper.in: Regenerated.
6497 2004-01-30  Paolo Bonzini  <bonzini@gnu.org>
6499         * bin/autoupdate.in: Trace AU_DEFINE instead of AU_DEFUN.
6500         * doc/autoconf.texi: Don't say that the third parameter
6501         is broken.
6502         * lib/autoconf/autoupdate.m4 (AU_DEFINE): New dummy macro.
6503         (AU_DEFUN): Honor the third parameter, create autoupdate
6504         macros with AU_DEFINE.
6505         * lib/autoconf/headers.m4 (AC_USG, AC_MEMORY_H,
6506         AC_DIR_HEADER): Use AU_DEFUN's third parameter.
6507         * lib/autoconf/lang.m4 (AC_LANG_SAVE): Likewise.
6508         * lib/autoconf/programs.m4 (AC_RSH): Likewise.
6509         * lib/autoconf/specific.m4 (AC_HAVE_POUNDBANG,
6510         AC_ARG_ARRAY, AC_CYGWIN, AC_EMXOS2, AC_MINGW32,
6511         AC_XENIX_DIR): Likewise.
6512         * lib/autoconf/types.m4 (AC_INT_16_BITS, AC_LONG_64_BITS,
6513         AC_STRUCT_ST_BLKSIZE, AC_STRUCT_ST_RDEV): Likewise.
6514         * lib/autoconf/status.m4: Remove FIXME.
6515         * tests/local.at (AT_CHECK_AU_MACRO): Ignore stderr, check
6516         that the macro is not present anymore in the updated
6517         configure.ac.
6518         * tests/tools.at (autoupdate AC_LINK_FILES): Ignore stderr
6519         of autoupdate.
6521 2004-01-28  Paul Eggert  <eggert@twinsun.com>
6523         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): Add 2004 to
6524         copyright years.
6525         * lib/autoconf/general.m4 (_AC_INIT_COPYRIGHT): Add 1992 thorugh
6526         2003 (except 1997) to the list of copyright years.  This undoes
6527         the 2003-05-22 change, which removed the older years from the list.
6528         * lib/autoconf/status.m4 (AC_OUTPUT): Update copyright date to 2004.
6530 2004-01-27  Gary V. Vaughan  <gary@gnu.org>
6531             Albert Chin-A-Young  <china@thewrittenword.com>
6533         * lib/autoconf/programs.m4 (AC_PROG_GREP): New macro to test for a
6534         grep or ggrep program in PATH that accepts as long lines as
6535         possible.
6536         * lib/autoconf/programs.m4 (_AC_PROG_GREP): Factor out the core of
6537         AC_PROG_GREP.
6538         (AC_PROG_EGREP, AC_PROG_FGREP): Use it to find best available
6539         egrep and fgrep respectively if $GREP -E/-F don't work.
6540         (_AC_PATH_PROG_FEATURE_CHECK): Factor out the common core of
6541         _AC_PROG_GREP, and AC_PROG_SED.
6542         (_AC_FEATURE_CHECK_LENGTH): New helper macro for finding the
6543         longest input length accepted by a command.
6544         (AC_PROG_SED): Use it.
6545         * doc/autoconf.texi (Particular Programs): Document the changes.
6546         * NEWS: Updated.
6548 2004-01-27  Paul Eggert  <eggert@twinsun.com>
6550         * bin/autoconf.as ($version): Update copyright from 2003 to 2004.
6551         * bin/autoheader.in, bin/autom4te.in, bin/autoreconf.in,
6552         bin/autoscan.in, bin/autoupdate.in, bin/ifnames.in: Likewise.
6553         * lib/autoconf/general.m4 (_AC_INIT_COPYRIGHT): Likewise.
6555         * Makefile.in, aclocal.m4, configure, bin/Makefile.in,
6556         bin/autoconf.in, config/Makefile.in, config/config.guess,
6557         config/config.sub, config/install-sh, config/mdate-sh,
6558         config/mkinstalldirs, config/texinfo.tex, doc/Makefile.in,
6559         lib/Makefile.in, lib/Autom4te/Makefile.in,
6560         lib/autoconf/Makefile.in, lib/autoscan/Makefile.in,
6561         lib/autotest/Makefile.in, lib/emacs/Makefile.in,
6562         lib/m4sugar/Makefile.in, man/Makefile.in, man/autoconf.1,
6563         man/autoheader.1, man/autom4te.1, man/autoreconf.1,
6564         man/autoscan.1, man/autoupdate.1, man/config.guess.1,
6565         man/config.sub.1, man/ifnames.1, tests/Makefile.in,
6566         tests/acc.at, tests/acfortran.at, tests/acfunctions.at,
6567         tests/acgeneral.at, tests/acheaders.at, tests/aclang.at,
6568         tests/aclibs.at, tests/acspecific.at, tests/acstatus.at,
6569         tests/actypes.at: Regenerate and/or sync with original
6570         sources.
6572 2004-01-26  Paul Eggert  <eggert@twinsun.com>
6574         * doc/autoconf.texi (Default Includes): Include <stdint.h> even if
6575         HAVE_INTTYPES_H is defined.  This is needed on Tru64 5.1b with
6576         Compac C V6.5-207 (dtk), which defines uintmax_t in <stdint.h> but
6577         not <inttypes.h>.  Problem reported by Tim Mooney in
6578         <http://mail.gnu.org/archive/html/bug-coreutils/2004-01/msg00147.html>.
6579         * lib/autoconf/headers.m4 (_AC_INCLUDES_DEFAULT_REQUIREMENTS):
6580         Likewise.
6582         * lib/autoconf/programs.m4 (AC_PROG_SED): Use diff, not sed;
6583         otherwise "make check" fails because it forbids cmp (I guess
6584         because cmp treats files as binary on DOS-like systems).
6586         * tests/mktests.sh: Update copyright date to 2004, since some tests
6587         have changed in 2004.
6589 2004-01-23  Gary V. Vaughan  <gary@gnu.org>
6591         * lib/autoconf/programs.m4 (AC_PROG_SED):  New macro to test for a
6592         non-truncating sed or gsed program in PATH.
6593         * tests/acprograms.at: Add it.
6594         * doc/autoconf.texi (Particular Programs): Document it.
6595         * NEWS: Updated.
6597 2004-01-15  Paul Eggert  <eggert@twinsun.com>
6599         * lib/autoconf/c.m4 (_AC_PROG_CC_STDC): Try -std, not -std1, since
6600         -std1 disables some useful extensions on Tru64.  Problem reported
6601         by N. Lichtmaier in
6602         <http://mail.gnu.org/archive/html/autoconf/2004-01/msg00100.html>.
6604 2004-01-14  Paul Eggert  <eggert@twinsun.com>
6606         * doc/autoconf.texi (Programming in M4sh): Document that
6607         AS_MKDIR_P succeeds if the destination is a symbolic link
6608         to an existing directory.
6609         (Limitations of Usual Tools): Note that mkdir -p might not
6610         succeed on symlinks to directories.
6612 2004-01-13  Paul Hilfinger  <hilfinger@CS.Berkeley.EDU>
6614         * lib/autoconf/autoupdate.m4 (AU_DEFUN): Grammar fix in comment.
6615         * bin/autoheader.in: Grammar fix in message.
6616         * lib/m4sugar/m4sh.m4 (AS_MKDIR_P):
6617         Test for dir before calling mkdir -p.  (trivial changes)
6619 2004-01-13  Eric Blake  <ebb9@byu.net>
6621         * doc/autoconf.texi (Obsolete Macros): In AC_TRY_COMPILE and
6622         AC_TRY_LINK, s/AC_LANG_SOURCE/AC_LANG_PROGRAM/.  (trivial change)
6624 2004-01-10  Jim Meyering  <jim@meyering.net>
6626         * doc/autoconf.texi (Running the Preprocessor): Correct grammar.
6628 2004-01-09  Paul Eggert  <eggert@twinsun.com>
6630         * lib/autoconf/general.m4: Fix bug: AC_CHECK_SIZEOF evokes a warning
6631         with `autoconf -Wall,error'.  Bug reported by Eric Blake in:
6632         http://mail.gnu.org/archive/html/autoconf-patches/2004-01/msg00000.html
6633         (_AC_COMPUTE_INT_COMPILE): Invoke _AC_COMPILE_IFELSE, not
6634         AC_COMPILE_IFELSE, since we now assume our caller invokes
6635         AC_LANG_COMPILER_REQUIRE, for symmetry with _AC_COMPUTE_INT_RUN.
6636         (_AC_COMPUTE_INT_RUN): Likewise, for _AC_RUN_IFELSE instead
6637         of AC_RUN_IFELSE; this avoids the warning mentioned above.
6638         (_AC_COMPUTE_INT): Invoke AC_LANG_COMPILER_REQUIRE.
6640 2004-01-07  Paul Eggert  <eggert@twinsun.com>
6642         * lib/autoconf/general.m4 (_AC_LIBOBJS_NORMALIZE): Avoid \$ inside
6643         `"'...'"`, as it's confusing (and I suspect it may not work on
6644         some platforms).  The code was incorrect anyway, as it assumed
6645         that \$ evaluated to itself in that context.  Reported by
6646         Alexandre Duret-Lutz.
6648 2004-01-07  Alexandre Duret-Lutz  <adl@gnu.org>
6650         * lib/autom4te.in (Automake-preselections): Preselect AC_LIBTOOL_TAGS
6651         and _LT_AC_TAGCONFIG.
6653 2004-01-06  Paul Eggert  <eggert@twinsun.com>
6655         * doc/autoconf.texi (One Macro Call): Fix an incorrect
6656         example, and add more examples.  Reported by Eric Sunshine.
6658 2004-01-05  Paul Eggert  <eggert@twinsun.com>
6660         * doc/autoconf.texi (Limitations of Usual Tools):
6661         Remove warning against "rm -fr" introduced yesterday; it
6662         was a false alarm.
6664         * bin/Makefile.am (autoconf, autoheader, autom4te, autoreconf,
6665         autoscan, autoupdate, ifnames): Don't use chmod -w.
6666         * lib/Makefile.am (autom4te.cfg): Likewise.
6667         * doc/autoconf.texi (Limitations of Usual Tools): Warn against
6668         "chmod -w".
6670 2004-01-04  Paul Eggert  <eggert@twinsun.com>
6671             Paolo Bonzini  <bonzini@gnu.org>
6673         * lib/m4sugar/m4sh.m4 (_AS_LINENO_PREPARE): Speed up sed scripts
6674         by doing lineno substitution only on lines containing "$LINENO".
6676 2004-01-04  Paul Eggert  <eggert@twinsun.com>
6678         * lib/autoconf/general.m4 (AC_ARG_PROGRAM):
6679         Use "rm -f" to remove conftest.sed, not plain "rm".
6680         Bug reported by David Relson in
6681         <http://mail.gnu.org/archive/html/autoconf/2004-01/msg00011.html>.
6683         * Makefile.am (autom4te-update):
6684         Replace "rm -rf" and "rm -fr" with "rm -f -r", as POSIX requires.
6685         * Makefile.maint (my-distcheck, do-po-update): Likewise.
6686         * doc/autoconf.texi (Guidelines): Likewise.
6687         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Likewise.
6688         * lib/autoconf/libs.m4 (_AC_PATH_X_XMKMF): Likewise.
6689         * lib/autoconf/specific.m4 (AC_SYS_LONG_FILE_NAMES): Likewise.
6690         * lib/autotest/general.m4 (AT_INIT): Likewise.
6691         * lib/m4sugar/m4sh.m4 (AS_TMPDIR): Likewise.
6692         * tests/Makefile.am (clean-local): Likewise.
6693         * tests/tortue.at (AC_CONFIG_FILES, HEADERS, LINKS and COMMANDS,
6694         srcdir): Likewise.
6695         * doc/autoconf.texi (Limitations of Usual Tools):
6696         Warn against "rm -fr".
6698 2004-01-03  Paul Eggert  <eggert@twinsun.com>
6700         * doc/autoconf.texi (Limitations of Usual Tools): Mention that cc
6701         -c -o might not work.  From a suggestion by Kevin Ryde.
6702         (C Compiler, Generating Sources, Limitations
6703         of Usual Tools, Limitations of Make, Making testsuite Scripts):
6704         Don't put '-o' after non-options, as POSIX doesn't allow this.
6705         Mention that cc's name might be gcc or c89 or whatever.
6707 2004-01-04  Kevin Ryde  <user42@zip.com.au>
6709         * doc/autoconf.texi: Add various further index entries.
6711 2003-12-29  Paul Eggert  <eggert@twinsun.com>
6713         * bin/autoreconf.in (autoreconf_current_directory):
6714         Fix typo: mkdir without umask arg.
6716 2003-12-27  Alexandre Duret-Lutz  <adl@gnu.org>
6718         * doc/autoconf.texi (Limitations of Make) <Automatic rule rewriting>:
6719         Documents OSF1/Tru64 make behavior.  Replace `VPATH = ../src' by
6720         `VPATH = ../pkg/src' in examples to make the OSF1/Tru64 make
6721         explanation clearer.
6723 2003-12-24  Andreas Schwab  <schwab@suse.de>
6725         * doc/autoconf.texi (Default Includes): Fix misspelling of
6726         AC_INCLUDES_DEFAULT.
6728 2003-12-03  Paolo Bonzini  <bonzini@gnu.org>
6730         * configure.ac: Test if sh -n works.
6731         * configure: Regenerate.
6732         * tests/atlocal.in: Store the result here.
6733         * tests/local.at (AT_CHECK_SHELL_SYNTAX): Extracted from
6734         tools.at, looking in atlocal's ac_cv_sh_n_works instead
6735         of explicitly testing.
6736         (AT_CHECK_PERL_SYNTAX): Moved from tools.at.
6737         (AT_CHECK_AUTOCONF): Test for the configure script syntax.
6738         * tests/tools.at (Syntax of the shell scripts): Simplify
6739         using AT_CHECK_SHELL_SYNTAX.
6740         (Syntax of the Perl scripts): Remove definition of
6741         AT_CHECK_PERL_SYNTAX.
6743 2003-12-03  Paolo Bonzini  <bonzini@gnu.org>
6745         * lib/m4sugar/m4sh.m4 (_AS_SHELL_FN_WORK): Redirect
6746         stderr to /dev/null.
6747         * bin/autoconf.in: Regenerate.
6748         * bin/wrapper.in: Regenerate.
6750 2003-11-26  Paolo Bonzini  <bonzini@gnu.org>
6752         * lib/m4sugar/m4sh.m4 (_AS_BOURNE_COMPATIBLE):
6753         Extracted from AS_SHELL_SANITIZE.
6754         (_AS_SHELL_FN_WORK, AS_INIT_WITH_SHELL_FN): New
6755         macros.
6756         (AS_SHELL_SANITIZE): Move reinvocation code from
6757         _AS_LINENO_WORKS, use it to find out if shell
6758         functions work.
6759         (_AS_LINENO_WORKS): Don't find another shell if $LINENO
6760         does not work.
6761         (AS_INIT): Pass parameter down to AS_SHELL_SANITIZE.
6762         (AS_REQUIRE_SHELL_FN): Test that AS_INIT_WITH_SHELL_FN
6763         was called.
6764         * lib/autotest/general.m4: Use AS_INIT_WITH_SHELL_FN.
6765         * bin/autoconf.in: Regenerate.
6766         * tests/wrapper.in: Regenerate.
6767         * tests/tools.at: Test the syntax of tests/autoconf
6768         and tests/testsuite.
6770 2003-11-24  Akim Demaille  <akim@epita.fr>
6772         * config/announce-gen (&print_locations, &print_signatures)
6773         (&sizes): New.
6774         Use them.
6775         No longer rely on Gnus to inline the list of signatures: compute
6776         them on the fly.
6778 2003-11-24  Akim Demaille  <akim@epita.fr>
6780         * doc/autoconf.texi (Particular Programs): AC_PROG_LEX can
6781         override some files.
6782         (Input): AC_CONFIG_AUX_DIR(aux) is a bad idea on DOS.
6783         From Debian Autoconf 2.58.
6785 2003-11-24  Akim Demaille  <akim@epita.fr>
6787         * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): Quote $ac_popdir
6788         uses.
6789         From Debian Autoconf 2.58.
6791 2003-11-24  Paolo Bonzini  <bonzini@gnu.org>
6793         * TODO: Remove already done things.  Update the part about finding
6794         tools for the target.
6796 2003-11-24  Paolo Bonzini  <bonzini@gnu.org>
6798         * lib/autoconf/headers.m4 (AC_USG, AC_MEMORY_H, AC_DIR_HEADER):
6799         Make wording more consistent.
6800         * lib/autoconf/specific.m4 (AC_CYGWIN, AC_EMXOS2, AC_MINGW32):
6801         Explain the transition better.
6802         * lib/autoconf/types.m4 (AC_INT_16_BITS, AC_LONG_64_BITS): Explain
6803         the transition better.
6805 2003-11-24  Paolo Bonzini  <bonzini@gnu.org>
6807         * doc/autoconf.texi (Obsoleting Macros): Don't document the third
6808         parameter of AU_DEFUN.
6809         * lib/autoconf/autoupdate.m4 (AU_DEFINE): Remove.
6810         (AU_DEFUN): Remove the third parameter, it was not used.
6811         Use AC_DEFUN directly, not AU_DEFINE.
6812         * lib/autoconf/status.m4 (AC_LINK_FILES): Move the message into
6813         the expanded body, consistently with other macros such as AC_USG.
6815 2003-11-17  Paul Eggert  <eggert@twinsun.com>
6817         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Put at least 14 bytes
6818         into the initial confdefs.h, to work around a bug in NextStep 3.3
6819         patch 3 reported by Eric Sunshine.
6821 2003-11-15  Kevin Ryde  <user42@zip.com.au>
6823         * doc/autoconf.texi (Using System Type): Revise, showing $host rather
6824         than $target since the latter is not usual, add guidelines on when to
6825         use or not use the system type.
6827 2003-11-12  Derek Price  <derek@ximbiot.com>
6829         * doc/autoconf.texi (Limitations of Usual Tools): Fix what looks like a
6830         typo misrepaired by an auto-spellcheck.
6832 2003-11-12  Akim Demaille  <akim@epita.fr>
6834         * bin/autoreconf.in (&parse_args): Don't call automake with
6835         --force-missing unless it actually supports it.
6836         From Debian #219336.
6838 2003-11-12  Akim Demaille  <akim@epita.fr>
6840         * configure.ac: Bump to 2.59a.
6841         Require 2.59.
6843 2003-11-06  Akim Demaille  <akim@epita.fr>
6845         Version 2.59.
6847 2003-11-05  Alexandre Duret-Lutz  <adl@gnu.org>
6849         * lib/autoconf/status.m4 (_AC_SRCPATHS): Fix use of AS_SET_CATFILE
6850         so that ac_abs_builddir, ac_abs_top_builddir, ac_abs_srcdir,
6851         and ac_abs_top_srcdir are absolute paths.
6852         * lib/m4sugar/m4sh.m4 (AS_SET_CATFILE): Remove misleading comment.
6854 2003-11-05  Akim Demaille  <akim@epita.fr>
6856         * configure.ac: Bump to 2.58a.
6858 2003-11-05  Kevin Ryde  <user42@zip.com.au>
6860         * doc/autoconf.texi (Using Autotest): Avoid @strong{Note: ...}, since
6861         it provokes a warning from makeinfo about looking like a cross
6862         reference in info output.
6864         * doc/autoconf.texi (Function Portability): Add notes on signal
6865         handler return type, as per AC_TYPE_SIGNAL.
6867 2003-11-04  Akim Demaille  <akim@epita.fr>
6869         Version 2.58.
6870         * doc/standards.texi: Update from master.
6872         * tests/mktests.sh (ac_exclude_list): Add AC_FC_FREEFORM.
6874 2003-11-04  Akim Demaille  <akim@epita.fr>
6876         AC_CONFIG_FILE([d1/foo:d2/foo]) triggers error messages when
6877         computing the absolute path to d1 in the source hierarchy: it may
6878         not exist at all.  So don't cd into it.
6879         From Alexandre Duret-Lutz.
6880         http://mail.gnu.org/archive/html/bug-autoconf/2003-10/msg00205.html
6882         * lib/m4sugar/m4sh.m4 (AS_SET_CATFILE): New.
6883         From Paul Eggert, but named after Perl's IO::Spec->catfile.
6884         * doc/autoconf.texi (Programming in M4sh): Document.
6885         * lib/autoconf/status.m4 (_AC_SRCPATHS): Use it.
6887 2003-11-03  Pavel Roskin  <proski@gnu.org>
6889         * doc/autoconf.texi (Generic Structure Checks): Describe
6890         action-if-found and action-if-not-found in AC_CHECK_MEMBERS.
6892 2003-10-31  Akim Demaille  <akim@epita.fr>
6894         * tests/fortran.at (GNU Fortran 77): Don't run FC macros.
6895         (GNU Fortran): New.
6896         * doc/autoconf.texi (Language Choice): Document.
6897         * lib/autoconf/fortran.m4 (AC_FC_SRCEXT, AC_FC_FREEFORM): Assert
6898         the current language is Fortran.
6900 2003-10-31  Akim Demaille  <akim@epita.fr>
6902         * bin/autom4te.in (&freeze): Use a less likely warning separator
6903         than `\n\n', so that `\n\n\n' is valid in warnings.
6904         Reported by Steve Huston.
6906 2003-10-28  Akim Demaille  <akim@epita.fr>
6908         * Makefile.cfg (local_updates, executable-update): Tweak to be
6909         robust to parallel makes.
6910         Suggested by Alexandre Duret-Lutz.
6912 2003-10-27  Akim Demaille  <akim@epita.fr>
6914         * Makefile.cfg (executable-update): New.
6915         (local_updates): Call it.
6917 2003-10-27  Akim Demaille  <akim@epita.fr>
6919         * lib/autoconf/general.m4 (_AC_RUN_IFELSE, _AC_INIT_PREPARE):
6920         Don't remove core.* as it may remove valid user files.
6921         * lib/autoconf/functions.m4 (AC_FUNC_SETVBUF_REVERSED)
6922         (AC_FUNC_UTIME_NULL): Likewise.
6924 2003-10-23  Akim Demaille  <akim@epita.fr>
6926         Version 2.57g.
6927         * config/config.guess, config/config.sub: Upgrade from masters.
6929 2003-10-23  Akim Demaille  <akim@epita.fr>
6931         * lib/autoconf/fortran.m4 (AC_FC_SRCEXT): Functions using
6932         AC_COMPILE_IFELSE that use break skip the clean up.  So do it by
6933         hand...
6935 2003-10-23  Akim Demaille  <akim@epita.fr>
6937         * lib/autoconf/general.m4 (_AC_LINK_IFELSE, _AC_COMPILE_IFELSE):
6938         Don't forget to remove conftest.err.
6940 2003-10-23  Akim Demaille  <akim@epita.fr>
6942         * lib/autoconf/general.m4 (_AC_LIBOBJ): Don't insert twice the
6943         same object file in $LIBOBJS.
6944         Reported by Alexandre Duret-Lutz & Derek Robert Price.
6945         * doc/autoconf.texi (Generic Functions): Adjust.
6947 2003-10-20  Paul Eggert  <eggert@twinsun.com>
6949         * lib/m4sugar/m4sh.m4 (_AS_TR_SH_PREPARE, _AS_TR_CPP_PREPARE):
6950         Use 'eval', so that the resulting configure scripts work even if
6951         the current directory has a weird file name like 'y%s+%pp%;s%@%_%g'.
6953 2003-10-20  Daniel Jacobowitz  <drow@mvista.com>
6955         * lib/autoconf/lang.m4 (AC_LANG_WERROR): New macro.
6956         * lib/autoconf/general.m4 (_AC_COMPILE_IFELSE, _AC_PREPROC_IFELSE)
6957         (_AC_LINK_IFELSE): Check the werror flag.
6958         * doc/autoconf.texi (Generic Compiler Characteristics): Document
6959         AC_LANG_WERROR.
6960         * NEWS: Mention it.
6962 2003-10-20  Daniel Jacobowitz  <drow@mvista.com>
6964         * lib/autoconf/lang.m4 (AC_NO_EXECUTABLES): Override
6965         _AC_COMPILER_EXEEXT to attempt a link.  If linking fails,
6966         override AC_LINK_IFELSE.
6968 2003-10-15  Paul Eggert  <eggert@twinsun.com>
6970         * lib/m4sugar/m4sh.m4 (_AS_UNSET_PREPARE): Work around a bug in
6971         pdksh 5.2.14.  Bug reported by Ralf Corsepius.
6972         * doc/autoconf.texi (Shellology): Mention the Korn shell and pdksh.
6973         Mention /usr/dt/bin/dtksh on Solaris.
6974         (Shell Substitutions): Warn about $((...)).
6975         (Parentheses): New section.
6977 2003-10-15  Kevin Ryde  <user42@zip.com.au>
6979         * doc/autoconf.texi (Function Portability): Add @prindex for exit.
6980         Add putenv and unsetenv.  Add sysconf _SC_PAGE_SIZE.
6982 2003-10-13  Nathanael Nerode  <neroden@gcc.gnu.org>
6984         * lib/autoconf/functions.m4 (AC_FUNC_FORK): Trivial fix for vfork
6985         cross test.
6987 2003-10-11  Steven G. Johnson  <stevenj@alum.mit.edu>
6989         * lib/autoconf/fortran.m4 (_AC_PROG_FC): Use the new official
6990         name for the GNU Fortran 95+ compiler, 'gfortran', not 'g95'.
6992 2003-10-10  Andreas Schwab  <schwab@suse.de>
6994         * bin/autoheader.in: Avoid empty first line in --version and
6995         --help output.
6996         * bin/ifnames.in: Likewise.
6998 2003-10-09  Paul Eggert  <eggert@twinsun.com>
7000         * lib/Autom4te/XFile.pm: Don't assume -j is solo.
7001         Issue a more-informative diagnostic.
7002         Problems reported by Eric Sunshine.
7004 2003-10-08  Steven G. Johnson  <stevenj@alum.mit.edu>
7006         * lib/autoconf/fortran.m4 (_AC_PROG_FC_V_OUTPUT): Omit quoted
7007         -mGLOB_options_string stuff for Intel ifc, which can cause
7008         _AC_FC_LIBRARY_LDFLAGS to fail.  Use (faster) case for
7009         pattern-matching instead of grep.
7011 2003-10-08  Steven G. Johnson  <stevenj@alum.mit.edu>
7013         * doc/autoconf.texi: Document new FC Fortran macros.
7015 2003-10-08  Gary V. Vaughan  <gary@gnu.org>
7017         * lib/autoconf/general.m4 (AC_CONFIG_MACRO_DIR): Stub out a macro
7018         that future autopoint/aclocal/automake/autoreconf will be able
7019         to trace to find where to install local m4 macros.
7020         * doc/autoconf.texi (Input): Document it.
7021         * NEWS: Updated.
7023 2003-10-06  Gary V. Vaughan  <gary@gnu.org>
7025         * lib/autoconf/fortran.m4 (_AC_FC_LIBRARY_LDFLAGS): Add
7026         -lcrtbegin.o to list of ignored flags and fix underquoting of
7027         -lcrt[01].o.
7029 2003-10-04  Steven G. Johnson  <stevenj@ab-initio.mit.edu>
7031         * lib/autoconf/fortran.m4 (_AC_PROG_FC_G): Use language-specific
7032         cache variable instead of $G77 to decide whether to include -O2,
7033         since $G77 is specific to Fortran 77.
7035 2003-10-03  Steven G. Johnson  <stevenj@alum.mit.edu>
7037         * lib/autoconf/fortran.m4 (AC_FC_FREEFORM): Support Absoft "-f
7038         free" flag.  Re-order flags tested into rough order of popularity.
7040 2003-10-03  Steven G. Johnson  <stevenj@alum.mit.edu>
7042         * lib/autoconf/fortran.m4 (AC_PROG_FC): Reverse the order of the
7043         arguments so that it can be used with syntax identical to
7044         AC_PROG_F77, and so that we can more easily decide to
7045         remove/deprecate the DIALECT optional argument in the future if it
7046         proves troublesome.
7047         (AC_FC_FREEFORM): Exit 77 upon failure to fix test suite for
7048         non-freeform-supporting compilers.  Document freeform flags.
7050 2003-10-03  Akim Demaille  <akim@epita.fr>
7052         * configure.ac: Look for emacs, not macs.
7053         Reported by Eric Sunshine.
7055 2003-10-03  Akim Demaille  <akim@epita.fr>
7057         * lib/autom4te.in (Autoreconf-preselections): Trace AC_CONFIG_AUX_DIR.
7058         * bin/autoreconf.in (autoreconf_current_directory): Create the
7059         AUX_DIR if needed, for sake of automake --add-missing etc.
7060         Suggested by Alexandre Duret-Lutz.
7062 2003-10-03  Akim Demaille  <akim@epita.fr>
7064         * configure.ac: Quotation and formatting changes.
7065         (EMACS): Don't set it if it is not recent enough to support
7066         autoconf-mode.el.
7067         From Eric Sunshine.
7069 2003-10-02  Akim Demaille  <akim@epita.fr>
7071         * bin/ifnames.in (&scan_file): Skip C++ comments.
7072         From Jeremy Yallop.
7074 2003-10-01  Pavel Roskin  <proski@gnu.org>
7076         * doc/autoconf.texi (Particular Structure Checks):
7077         Fix misspelling of HAVE_STRUCT_STAT_ST_BLOCKS.
7079 2003-10-01  Akim Demaille  <akim@epita.fr>
7081         Version 2.57f.
7083 2003-09-30  Paul Eggert  <eggert@twinsun.com>
7085         * lib/Autom4te/XFile.pm: Use Errno.
7086         (lock): Ignore ENOLCK errors.  Problem reported Andreas Schwab in
7087         <http://mail.gnu.org/archive/html/bug-autoconf/2003-09/msg00141.html>.
7089 2003-09-30  Akim Demaille  <akim@epita.fr>
7091         * config/announce-gen (&print_news_deltas): Extracted from...
7092         (&print_changelog_deltas): here.
7093         (&news_file): Rename as...
7094         (@news_file): this.
7096 2003-09-30  Nicolas Joly  <njoly@pasteur.fr>
7098         * lib/autoconf/fortran.m4 (_AC_PROG_FC): Remove files which might
7099         have been created when invoking the compiler.
7100         * tests/fortran.at (GNU Fortran 77): Quote $G77.
7102 2003-09-29  Akim Demaille  <akim@epita.fr>
7104         Version 2.57e.
7106         * config/mkinstalldirs: Upgrade.
7108 2003-09-28  Paul Eggert  <eggert@twinsun.com>
7110         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Set DUALCASE=1, for MKS sh.
7111         Problem reported by Lars J. Aas in
7112         <http://mail.gnu.org/archive/html/autoconf/2003-07/msg00042.html>.
7113         (_AS_MKDIR_P_PREPARE): Change "rm -fr ./-p" to the more-conservative
7114         "test -d ./-p && rmdir ./-p".  Suggested by Andreas Schwab in:
7115         http://mail.gnu.org/archive/html/autoconf-patches/2003-09/msg00039.html
7117 2003-09-26  Akim Demaille  <akim@epita.fr>
7119         * lib/autoconf/status.m4 (_AC_OUTPUT_COMMANDS): Make sure the
7120         directory for AC_CONFIG_COMMANDS' first argument exists.
7121         This makes valid the invocation of _AC_SRCPATH that follows.
7122         Reported by Eric Sunshine.
7123         * doc/autoconf.texi (Configuration Commands): Adjust.
7125 2003-09-26  Akim Demaille  <akim@epita.fr>
7127         * bin/autoscan.in (Autom4te::FileUtils): Use it for find_file.
7128         Reported by Ralf Corsepius.
7130 2003-09-26  Akim Demaille  <akim@epita.fr>
7132         * lib/autoconf/general.m4 (AC_HELP_STRING): Don't overquote the
7133         arguments.
7134         Actually, use AU_ALIAS.
7135         From Bruno Haible.
7137 2003-09-26  Paul Eggert  <eggert@twinsun.com>
7139         * lib/m4sugar/m4sh.m4 (_AS_MKDIR_P_PREPARE): If mkdir -p . fails,
7140         rm -fr ./-p to remove junk left behind on NextStep and OpenStep.
7141         Problem reported by Eric Sunshine in:
7142         http://mail.gnu.org/archive/html/autoconf-patches/2002-12/msg00014.html
7144 2003-09-26  Akim Demaille  <akim@epita.fr>
7146         The test suite are sometimes assigning timings incorrectly.
7147         Reported by Henk Krus.
7148         Diagnosed by Nicolas Joly.
7150         * lib/autotest/general.m4 (AT_CLEANUP): Rename AT_help as
7151         AT_help_all.
7152         Instead of making AT_help a sequence of assignments to grow
7153         $at_help_all, just make AT_help_all be the growing contents of
7154         $at_help_all, and make a single assignment in...
7155         (AT_INIT): here.
7156         (at_times_skip): Flip the meaning and rename as...
7157         (at_times_p): this.
7158         (AT_INIT): When summarizing the test that ran, remove
7159         $at_times_file after use, and check it is present before trying to
7160         use it.
7162 2003-09-25  Akim Demaille  <akim@epita.fr>
7164         Version 2.57d.
7166         * bin/Makefile.am (edit): Handle '@configure_input@'.
7167         (autoconf, autoheader, autom4te, autoreconf, autoscan, autoupdate)
7168         (ifnames): chmod -w.
7169         * tests/wrapper.as (AUTOCONF, AUTOM4TE, ): Point to tests/
7170         executables, not bin/ executables!  Otherwise all the magic needed
7171         to find non installed files is turned off.  This caused a failure
7172         of test 40 and 41 that ran aclocal 1.8 which in turn ran autom4te
7173         as found in its environment (sent by tests/autoreconf): pointing
7174         to bin/autom4te that could not find its files.
7175         * tests/mktests.sh: Force the replacement of generated files, for
7176         the sake of "mv" program that are interactive when overwriting a
7177         -w file.
7178         * config/install-sh: Upgrade from CVS Automake.
7180 2003-09-23  Paul Eggert  <eggert@twinsun.com>
7182         * doc/autoconf.texi (Limitations of Builtins): Document test -h
7183         versus test -L issues.
7185 2003-09-23  Daniel Jacobowitz  <drow@mvista.com> and
7186             Paul Eggert  <eggert@twinsun.com>
7188         Trivial change to support GCC's configuration procedure.
7189         * lib/autoconf/c.m4 (AC_PROG_CPP_WERROR): New macro.
7190         * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_MONGREL): Don't warn
7191         about inconsistency if the preprocessor is set to give errors for
7192         any warning.
7193         * doc/autoconf.texi (C Compiler Characteristics): Document this.
7195 2003-09-13  Alexandre Duret-Lutz  <adl@gnu.org>
7197         * Makefile.am (autom4te-update, autom4te_files): Fetch Struct.pm
7198         and XFile.pm from Automake.
7199         * lib/Autom4te/XFile.pm: Update from Automake.
7201 2003-09-12  Akim Demaille  <akim@epita.fr>
7203         Version 2.57c.
7205 2003-09-12  Akim Demaille  <akim@epita.fr>
7207         * config/config.guess, config/config.sub, config/missing,
7208         * lib/Autom4te/Channels.pm, lib/Autom4te/Configure_ac.pm: Update
7209         from masters.
7211 2003-09-12  Akim Demaille  <akim@epita.fr>
7213         * doc/autoconf.texi (Header Portability): Promote linux/types.h,
7214         not asm/types.h.
7216 2003-09-11  Akim Demaille  <akim@epita.fr>
7218         * doc/autoconf.texi (Header Portability): linux/random.h.
7219         From Peter Hendrickson.
7221 2003-09-10  Akim Demaille  <akim@epita.fr>
7223         * tests/mktests.sh (au_exclude_egrep): Make it harder to be
7224         willing to edit the output files.
7226 2003-09-10  Akim Demaille  <akim@epita.fr>
7228         * tests/fortran.at (GNU Fortran 77): Also exercise AC_FC_SRCEXT
7229         and AC_FC_FREEFORM.
7230         * tests/mktests.sh: Skip AC_FC_SRCEXT.
7231         * lib/autoconf/fortran.m4 (AC_FC_SRCEXT, AC_FC_FREEFORM): Likewise.
7233 2003-09-09  Akim Demaille  <akim@epita.fr>
7235         * lib/Autom4te/FileUtils.pm (&update_file): s/cannot not/cannot/g.
7236         Reported by Gary Vaughan.
7237         * bin/autom4te.in (handle_m4): Likewise.
7239 2003-09-09  Akim Demaille  <akim@epita.fr>
7241         * lib/Autom4te/FileUtils.pm (&update_file): Be sure not to leave
7242         trailing files.
7244 2003-09-07  Paul Eggert  <eggert@twinsun.com>
7246         * lib/autoconf/specific.m4 (AC_SYS_RESTARTABLE_SYSCALLS):
7247         Improve the accuracy of the wording about obsolescence.
7248         From a suggestion by Ian Lance Taylor in
7249         <http://mail.gnu.org/archive/html/autoconf/2003-09/msg00044.html>.
7251 2003-09-05  Paul Eggert  <eggert@twinsun.com>
7253         * lib/autoconf/fortran.m4 (AC_FC_FREEFORM): Try -ffree-form too,
7254         for the benefit of g77 3.2.  Fix suggested by Steven G. Johnson.
7256 2003-09-04  Akim Demaille  <akim@epita.fr>
7258         * tests/mktests.sh (ac_exclude_list): Fix the filtering of
7259         AC_FUNC_WAIT3.
7261 2003-09-04  Akim Demaille  <akim@epita.fr>
7263         * bin/autom4te.in: Use &fatal where more appropriate than &error.
7264         (freeze): When exiting, use $exit_code.
7265         * lib/autoconf/fortran.m4: Comment changes.
7267 2003-09-04  Akim Demaille  <akim@epita.fr>
7269         * tests/mktests.sh (ac_exclude_list): Add AC_FC_FUNC.
7271 2003-09-02  Steven G. Johnson  <stevenj@alum.mit.edu>
7273         Add support for newer Fortran dialects.  The F77 interface is
7274         unchanged, and continues to support Fortran 77.  New FC macros
7275         correspond to all the old F77 macros, with output variables FC,
7276         FCFLAGS, and FCLIBS.  AC_PROG_FC defaults to picking the newest
7277         available dialect, but older dialects can be specified.  There are
7278         new macros AC_FC_SRCEXT to set the source extension, and
7279         AC_FC_FREEFORM to accept free-form source files.
7281         * lib/autoconf/c.m4 (_AC_LANG_PREFIX(C), _AC_LANG_PREFIX(C++)):
7282         New macros.
7283         (AC_LANG_PROGRAM(C)): Invoke _AC_LANG_PROGRAM_C_FC_HOOKS if defined.
7284         * lib/autoconf/fortran.m4 (AC_LANG(Fortran), _AC_FORTRAN_ASSERT,
7285         _AC_LANG_ABBREV(Fortran), _AC_LANG_PREFIX(Fortran 77),
7286         _AC_LANG_PREFIX(Fortran), _AC_FC, AC_LANG_SOURCE(Fortran),
7287         AC_LANG_PROGRAM(Fortran), AC_LANG_CALL(Fortran),
7288         AC_LANG_PREPROC(Fortran), AC_LANG_COMPILER(Fortran),
7289         _AC_FC_DIALECT_YEAR, _AC_F95_FC, _AC_F90_FC, _AC_F77_FC,
7290         _AC_PROG_FC, AC_PROG_FC, _AC_PROG_FC_G, _AC_PROG_FC_C_O,
7291         AC_PROG_FC_C_O, _AC_PROG_FC_V_OUTPUT, _AC_PROG_FC_V,
7292         _AC_FC_LIBRARY_LDFLAGS, AC_FC_LIBRARY_LDFLAGS, _AC_FC_DUMMY_MAIN,
7293         AC_FC_DUMMY_MAIN, _AC_FC_MAIN, AC_FC_MAIN, __AC_FC_NAME_MANGLING,
7294         _AC_FC_WRAPPERS, AC_FC_WRAPPERS, _AC_FC_FUNC, AC_FC_FUNC,
7295         AC_FC_SRCEXT, AC_FC_FREEFORM):
7296         New macros.
7297         (AC_PROG_F77, AC_PROG_F77_C_O, AC_F77_LIBRARY_LDFLAGS,
7298         AC_F77_DUMMY_MAIN, AC_F77_MAIN, _AC_F77_NAME_MANGLING,
7299         AC_F77_NAME_MANGLING, AC_F77_WRAPPERS, AC_F77_FUNC):
7300         Rewrite in terms of the above.
7301         (_AC_PROG_F77_G, _AC_PROG_F77_V_OUTPUT, _AC_PROG_F77_V): Remove.
7302         * lib/autoconf/lang.m4 (_AC_LANG_PREFIX): New macro.
7303         * tests/acfortran.at: Test AC_FC_FREEFORM, AC_FC_FUNC,
7304         AC_FC_MAIN, AC_FC_SRCEXT, AC_FC_WRAPPERS, AC_PROG_FC_C_O.
7306 2003-09-02  Paul Eggert  <eggert@twinsun.com>
7308         * doc/autoconf.texi (Limitations of Usual Tools, Limitations of Make):
7309         Document problems with timestamp resolution that 'make', 'cp -p', and
7310         'touch -r' have.
7312 2003-08-27  Akim Demaille  <akim@epita.fr>
7314         * tests/m4sugar.at (cross_warning): Make sure to enable the
7315         output, so that we can track spurious m4sugar output.
7316         * tests/local.at: Require 2.57.
7317         (AT_CHECK_M4SUGAR, AT_CHECK_M4SH): Don't m4_default the arguments that
7318         are defaulted by AT_CHECK anyway.
7319         Use AT_CHECK_AUTOM4TE.
7320         * lib/m4sugar/m4sugar.m4: There should be no output at all: add a
7321         missing dnl.
7323 2003-08-27  Akim Demaille  <akim@epita.fr>
7325         * bin/autoheader.in: Issue the "Using auxiliary..." message only
7326         when -Wobsolete is set.
7327         Set it on by default.
7328         Suggested by Klee Dienes.
7330 2003-08-27  Akim Demaille  <akim@epita.fr>
7332         * doc/autoconf.texi (AC_FUNC_FSEEKO, AC_SYS_LARGEFILE): More
7333         documentation.
7334         From Guido Draheim.
7336 2003-08-26  Akim Demaille  <akim@epita.fr>
7338         * doc/autoconf.texi (Output): Make clear that one can run code
7339         after AC_OUTPUT.
7341 2003-08-25  Akim Demaille  <akim@epita.fr>
7343         * config/announce-gen, GNUmakefile, Makefile.maint: Update from
7344         CVS Bison.
7346 2003-08-25  Alexandre Duret-Lutz  <adl@gnu.org>
7348         * bin/autoreconf.in (parse_args): Do not pass --no-force to
7349         Automake versions prior to 1.8.
7351 2003-08-25  Akim Demaille  <akim@epita.fr>
7353         * doc/autoconf.texi (Header Portability): netinet/if_ether.h.
7354         From Ville Karaila.
7356 2003-08-24  Akim Demaille  <akim@epita.fr>
7358         * configure.ac: Bump to 2.57c.
7360 2003-08-22  Akim Demaille  <akim@epita.fr>
7362         Version 2.57b.
7364         * Makefile.cfg (local-checks-to-skip): New.
7365         * Makefile.maint (local-check): Rename as...
7366         (local-checks-available): this.
7367         (local-check): New.
7369         * Makefile.am (EXTRA_DIST): Add Makefile.cfg.
7370         * configure.ac: Require Automake 1.7.6.
7372 2003-08-22  Akim Demaille  <akim@epita.fr>
7374         Output stack traces in warnings.
7376         * lib/m4sugar/m4sugar.m4 (_m4_warn): New.
7377         Replace the former...
7378         (m4_warn): Pass the call stack to _m4_warn.
7379         * bin/autom4te.in: Adjust to output the call stack.
7380         * tests/m4sugar.at (m4@&t@_warn): Adjust.
7382 2003-08-22  Akim Demaille  <akim@epita.fr>
7384         * lib/Autom4te/Request.pm, lib/Autom4te/C4che.pm: New.
7385         * bin/autom4te.in: Adjust.
7387 2003-08-21  Akim Demaille  <akim@epita.fr>
7389         * lib/Autom4te/General.pm (&file_name_is_absolute): Remove.
7390         (&verbose): Remove.
7391         (&getopt): Adjust the note and verb channels, depending upon
7392         --verbose.
7393         * bin/autoheader.in, bin/autom4te.in, bin/autoscan.in,
7394         * bin/autoupdate.in: Adjust.
7395         Use &verb, not &verbose.
7397 2003-08-21  Akim Demaille  <akim@epita.fr>
7399         * bin/autoheader.in (&parse_args): Use &parse_warnings and
7400         &parse_WARNINGS.
7401         ($help): Use Autom4te::ChannelDefs::usage.
7402         * bin/autoscan.in: Use Autom4te::ChannelDefs.
7403         * lib/Autom4te/General.pm: Don't export error: you don't own it.
7405 2003-08-21  Akim Demaille  <akim@epita.fr>
7407         First stab at preserving warnings between calls to autom4te,
7408         including when the cache is used.
7410         There are still several issues: (i) there are too many runs of m4
7411         (one for include, one for warnings, and some more), (ii) warnings
7412         spreading on several lines are not handled gracefully, (iii) the
7413         code meant to have the call stack display for errors does not work
7414         (its handling should move from m4 to autom4te).
7416         * bin/autom4te.in Autom4te::Channels, Autom4te::ChannelDefs):
7417         Use them.
7418         (@preselect): Add m4_warn.
7419         ($exit_status): Remove, use $exit_code.
7420         ($help): Use Autom4te::ChannelDefs::usage.
7421         (&handle_m4): No longer define the m4_warnings.
7422         At each run, extract and report the warnings.
7423         Always cache the result, including if the exit status is on
7424         failure, since if nothing changes, we should result in the same
7425         failure, hence we can use the cache.
7426         * lib/m4sugar/m4sugar.m4 (m4_warning_ifelse, _m4_warning_ifelse)
7427         (_m4_warning_error_ifelse, __m4_warning_error_ifelse, _m4_warn):
7428         Remove.
7429         (m4_warn): Redefine as a do-nothing: it is its invocation that
7430         matters, as warnings are now reported via traces.
7431         * lib/autoconf/general.m4 (AC_DIAGNOSE): Don't make it a copy of
7432         the contents of m4_warn: make it _call_ m4_warn, so that tracing
7433         the latter reveals calls to the former.
7435         Adjust the tests.
7437         * tests/m4sugar.at (m4@&t@_warn): Use existing warning categories.
7439 2003-08-21  Akim Demaille  <akim@epita.fr>
7441         * bin/autoreconf.pm (Autom4te::Channels, Autom4te::ChannelDefs):
7442         Use them.
7444 2003-08-21  Akim Demaille  <akim@epita.fr>
7446         * lib/Autom4te/FileUtils.pm (&find_file): Walk the @include in
7447         forward order.
7448         * lib/Autom4te/ChannelDefs.pm: Doc typos.
7449         (&parse_warnings): Accept a list of warning requests.
7450         (&usage): Return a string, not a side effect.
7451         (cross): New warning category.
7453 2003-08-21  Akim Demaille  <akim@epita.fr>
7455         * lib/Autom4te/Configure_ac.pm (&find_configure_ac)
7456         (&require_configure_ac): Accept an optional directory argument.
7457         ($configure_ac): Remove.
7458         * lib/Autom4te/General.pm (&find_configure_ac, &canonfile)
7459         (&catfile): Remove.
7460         * bin/autoheader.in, bin/autoreconf.in, bin/autoupdate.in,
7461         * bin/autoscan.in: Adjust.
7463 2003-08-20  Akim Demaille  <akim@epita.fr>
7465         * bin/autoheader.in: Remove duplicate 'use Autom4te::FileUtils'.
7466         Reported by Alexandre Duret-Lutz.
7468 2003-08-20  Akim Demaille  <akim@epita.fr>
7470         * bin/autoupdate.in, bin/autoheader.in, bin/autoreconf.in,
7471         * bin/autom4te: Adjust.
7472         In particular, be Autoconf tools are really silent when properly
7473         working, bind the verbosity of the 'note' channel to $verbose.
7474         * lib/Autom4te/General.pm (&find_file, &mtime, &update_file)
7475         (&xsystem, &contents): Remove, since they are exported by...
7476         * lib/Autom4te/FileUtils.pm: this.
7477         More perldoc.
7478         * lib/Autom4te/General.pm (&up_to_date_p): Move to...
7479         * lib/Autom4te/FileUtils.pm: here.
7481 2003-08-20  Akim Demaille  <akim@epita.fr>
7483         * lib/Autom4te/Channels.pm, lib/Autom4te/ChannelDefs.pm
7484         * lib/Autom4te/Configure_ac.pm, lib/Autom4te/FileUtils.pm: New,
7485         from CVS Automake.
7487 2003-08-20  Akim Demaille  <akim@epita.fr>
7489         * Makefile.am (automake_cvsweb, automake_cvsargs, autom4te_files)
7490         (autom4te-update): New.
7491         * Makefile.cfg (update): Bind autom4te-update.
7493 2003-08-19  Derek Price  <derek@ximbiot.com>
7495         * lib/autotest/general.m4: Comment various HELP_* diversions.
7496         (PARSE_ARGS_BEGIN): New section for option parsing related
7497         initialization.
7498         (AT_ARG_OPTION,AT_ARG_OPTION_ARG,_AT_ARG_OPTION): New macros to define
7499         package specific options and associated help.
7501 2003-08-19  Akim Demaille  <akim@epita.fr>
7503         * config/announce-gen, Makefile.cfg: New.
7504         * Makefile.am: Adjust.
7505         * GNUmakefile, Makefile.maint: Update from CVS Coreutils.
7507 2003-08-19  Alexandre Duret-Lutz  <adl@gnu.org>
7509         * lib/autom4te.in (Automake-preselections): Preselect
7510         AC_CONFIG_LIBOBJ_DIR, AC_CONFIG_LINKS, m4_include,
7511         and m4_sinclude.
7513 2003-08-19  Alexandre Duret-Lutz  <adl@gnu.org>
7515         * lib/autom4te.in (Autoconf): Move all args except aclocal.m4? into ...
7516         (Autoconf-without-aclocal-m4): ... this new language.
7517         * doc/autoconf.texi (autom4te Invocation): Mention
7518         Autoconf-without-aclocal-m4.
7520 2003-08-18  Derek Price  <derek@ximbiot.com>
7522         * doc/autoconf.texi (Writing testsuite.at): Document RUN-IF-FAIL &
7523         RUN-IF-PASS optional arguments.
7525 2003-08-18  Derek Price  <derek@ximbiot.com>
7527         * doc/autoconf.texi (Programming in M4sh): Add doc for AS_IF.
7529 2003-08-16  Derek Price  <derek@ximbiot.com>
7531         * doc/autoconf.texi (Writing testsuite.at): Document defaults for
7532         STDOUT & STDERR arguments.
7534 2003-08-14  Derek Price  <derek@ximbiot.com>
7536         * lib/autotestgeneral.m4 (AT_INIT): Reformat test summary line to print
7537         DESCRIPTION rather than FILE and LINE.  Shorten result to fit in new,
7538         shorter column three.  Add DESCRIPTION to log file content.
7540 2003-08-13  Derek Price  <derek@ximbiot.com>
7542         * lib/autotest/general.m4 (AT_INIT): Correct typo in final status
7543         output.
7545 2003-08-12  Derek Price  <derek@ximbiot.com>
7547         * lib/autotest/general.m4 (AT_CHECK): Use new _AT_CHECK API.
7548         (AT_CHECK_NOESCAPE): Move core functionality to...
7549         (_AT_CHECK): ...this new macro.
7551 2003-08-07  Derek Price  <derek@ximbiot.com>
7553         * lib/autotest/general.m4 (AT_CHECK): Move core functionality...
7554         (AT_CHECK_NOESCAPE): ...to this new macro.
7556 2003-07-31  Paul Eggert  <eggert@twinsun.com>
7558         * lib/m4sugar/m4sh.m4 (_AS_UNSET_PREPARE): Work around a bug
7559         in Bash 2.01.  Problem reported by Brian Gough in
7560         <http://mail.gnu.org/archive/html/bug-autoconf/2003-07/msg00106.html>.
7562 2003-07-25  John W. Eaton  <jwe@bevo.che.wisc.edu>
7564         * lib/autoconf/fortran.m4 (AC_F77_LIBRARY_LDFLAGS): Also ignore
7565         -lcrt1.o, for OS X.  (trivial change)
7567 2003-07-07  Paul Eggert  <eggert@twinsun.com>
7569         * lib/autoconf/c.m4 (AC_C_INLINE): Wrap the '#define inline ...'
7570         inside '#ifndef __cplusplus'.  Problem reported by
7571         Bob Friesenhahn.
7573 2003-07-06  Bill Clarke  <llib@computer.org>
7575         * lib/autoconf/functions.m4 (AC_FUNC_MMAP): Cast pointer to
7576         'long', not 'int', for benefit of Sun's recent C++ compilers
7577         (trivial change).  See:
7578         http://mail.gnu.org/archive/html/autoconf-patches/2003-07/msg00007.html
7579         (This really should be 'intptr_t', not 'long', but that would
7580         take more work.)
7582 2003-06-25  Akim Demaille  <akim@epita.fr>
7584         * lib/Makefile.am (autom4te.cfg): Make it read only.
7585         Depend on Makefile since it contains substitutions.
7586         From Paolo Bonzini.
7587         * lib/autom4te.in (args): Add local.at? for Autotest args.
7588         This change was made on autom4te.cfg which is generated.
7589         Reported by Raja R. Harinath.
7591 2003-06-25  Akim Demaille  <akim@epita.fr>
7593         * doc/autoconf.texi (Header Portability): sys/mount.h.
7594         From Gareth McCaughan.
7596 2003-06-23  Akim Demaille  <akim@epita.fr>
7598         * lib/autotest/general.m4 (AT_INIT): Report a single config.log,
7599         not all of them.  This fixes 1. the fact that when testing
7600         Autoconf there are many many config.log, 2. the incorrect use of
7601         top_srcdir to find config.log.
7602         Don't mix the detailed output of failed test with the summary of
7603         failures.  Rather, append detailed log afterwards.
7605 2003-06-23  Akim Demaille  <akim@epita.fr>
7607         * tests/local.at (AT_CHECK_CONFIGURE): Adjust to the verbose being
7608         always run: output config.log on $at_group_log.
7610 2003-06-23  Akim Demaille  <akim@epita.fr>
7612         * tests/torture.at (#define header templates): Don't use quotes in
7613         C++ comments as it puzzles Emacs' sh font-lock-mode.
7615 2003-06-23  Akim Demaille  <akim@epita.fr>
7617         * tests/mktests.sh (au_exclude_egrep): Fix output copyright notice.
7618         * lib/autom4te.cfg (args): Add local.at? for Autotest args.
7619         * tests/atspecific.m4: Rename as...
7620         * tests/local.at: This.
7621         * tests/suite.at: Move the globals into...
7622         * tests/local.at: here.
7623         * tests/Makefile.am: Adjust.
7624         * doc/autoconf.texi (testsuite Scripts): Adjust.
7626 2003-06-21  Kevin Ryde  <user42@zip.com.au>
7628         * lib/autoconf/c.m4 (_AC_PROG_CC_STDC): Extend test program to get an
7629         error from OSF 4.0 Compaq cc in its default almost-ANSI mode, thereby
7630         ensuring we add -std1 for full-ANSI.
7632         * doc/autoconf.texi (hdrindex): New macro.
7633         Add index entries for portability of various standard header files.
7635 2003-06-20  Akim Demaille  <akim@epita.fr>
7637         * configure.ac: Bump to 2.57b.
7639 2003-06-20  Akim Demaille  <akim@epita.fr>
7641         Version 2.57a.
7643 2003-06-20  Akim Demaille  <akim@epita.fr>
7645         * bin/autom4te.in: Don't rely on $HOME being defined.
7646         Reported by Marc Espie as PR/233.
7648 2003-06-20  Akim Demaille  <akim@epita.fr>
7650         * lib/autotest/general.m4: Use at_times_file only if used.
7651         From Nicolas Joly.
7653 2003-06-20  Akim Demaille  <akim@epita.fr>
7655         * config/config.guess, config/config.sub, config/elisp-comp,
7656         * config/install-sh, config/mkinstalldirs, doc/standards.texi:
7657         Update from masters.
7659 2003-06-11  Paolo Bonzini  <bonzini@gnu.org>
7661         * doc/autoconf.texi (Writing testsuite.at): Document AT_XFAIL_IF
7662         * lib/autotest/general.m4 (AT_XFAIL_IF): New macro.
7663         (TEST_SCRIPT): New diversion.
7664         (AT_SETUP): Divert output to TEST_SCRIPT and move some code...
7665         (AT_CLEANUP): ...to here.  Undivert TEST_SCRIPT.
7666         (AT_INIT): Support for expected failures.
7668 2003-06-02  Akim Demaille  <akim@epita.fr>
7670         * bin/autom4te.in, bin/autoscan.in, bin/autoheader.in: White space
7671         changes.
7672         * lib/Autom4te/General.pm (&backname): Remove, no longer used by
7673         Autoconf nor Automake.
7674         (&contents): New, from Automake.
7675         PODify.
7677 2003-05-28  Paul Eggert  <eggert@twinsun.com>
7679         * NEWS, doc/autoconf.texi (Particular Functions),
7680         lib/autoconf/functions.m4 (AC_FUNC_MKTIME): Check that mktime
7681         is the inverse of localtime.
7683 2003-05-25  Alexandre Duret-Lutz  <adl@gnu.org>
7685         * lib/Autom4te/General.pm (END): Print diagnostics to STDERR.
7686         (handle_exec_errors): New function.  Work around $! being
7687         altered by WEXITSTATUS.
7688         (xqx, xsystem): Use handle_exec_errors.
7690 2003-05-23  Alexandre Duret-Lutz  <adl@gnu.org>
7692         * lib/Autom4te/General.pm (END): Rewrite exit code processing.
7693         Do not call `_exit()', simply modify `$?'.
7694         (xsystem): Reset $! before running system, and check it afterward.
7695         * tests/tools.at (autoupdating AC_PREREQ): Expect exit status
7696         63 for version mismatches.
7698 2003-05-23  Akim Demaille  <akim@epita.fr>
7700         * lib/autoconf/status.m4: Prefer "TAB-SP" to "SP-TAB", because of
7701         Emacs' dangerous whitespace.el behavior (smashing "useless" spaces in
7702         the middle of a line).
7703         * lib/m4sugar/m4sugar.m4: Likewise.
7704         Remove useless spaces in comments.
7706 2003-05-23  Akim Demaille  <akim@epita.fr>
7708         * lib/m4sugar/m4sugar.m4 (m4_version_prereq): Failure causes an
7709         exit 63, so that we (or Automake's "missing") can tell the
7710         difference with a plain failure.
7711         * doc/autoconf.texi (Notices): Adjust.
7713 2003-05-23  Akim Demaille  <akim@epita.fr>
7715         * Makefile.am, bin/Makefile.am, config/Makefile.am,
7716         * doc/Makefile.am, lib/autoconf/Makefile.am, tests/Makefile.am:
7717         White spaces cleanup.
7719 2003-05-22  Jim Meyering  <jim@meyering.net>
7720             Paul Eggert  <eggert@twinsun.com>
7722         * lib/autoconf/c.m4 (_AC_PROG_CXX_EXIT_DECLARATION):
7723         Remove `#include <stdlib.h>' from the list; we should never
7724         make confdefs.h include <stdlib.h> or <cstdlib>, because the
7725         resulting namespace pollution would cause other tests to fail.
7726         Configure scripts run with some older versions of g++ and HP's
7727         aCC would fail due to such an #include.  Problems reported by
7728         Matthew Mueller in <http://bugs.debian.org/120704> and by
7729         Keith Bostic in
7730         <http://mail.gnu.org/archive/html/autoconf/2003-05/msg00063.html>.
7731         In the test, use the test declaration before including <stdlib.h>,
7732         as that's closer to how it'll be used.
7734 2003-05-23  Akim Demaille  <akim@epita.fr>
7736         * doc/autoconf.texi (Header Portability): ucred.h.
7737         From Ian Redfern.
7739 2003-05-22  Paolo Bonzini  <bonzini@gnu.org>
7741         Overhaul Autotest's logging: generate separate log files
7742         in testsuite.dir/NNN/testsuite.log, and append them to
7743         testsuite.log instead of re-running the test verbosely.
7745         * lib/autotest/general.m4 (AT_INIT): Use a single redirected
7746         file descriptor, write 0 to at_status_file instead of setting
7747         at_status=0, initialize some new variables (at_status_file,
7748         at_group_log, at_suite_log, at_tee_pipe).  Remove the cruft
7749         to rerun the tests, instead append the at_group_log to the
7750         at_suite_log when a test fails.
7751         (AT_SETUP): pipe the test case's output into at_tee_pipe,
7752         with the AS_MESSAGE_LOG_FD redirected to stdout.
7753         (AT_CLEANUP): save the output status in $at_status_file
7754         and restore it, redirect the AS_MESSAGE_LOG_FD back to
7755         its original place.
7756         (AT_CHECK): since tests are run with a redirected stdout,
7757         and used to be re-run in verbose mode, turn some $at_verbose
7758         into echo, and don't redirect the output of testing stdout
7759         and stderr.
7761         * lib/autotest/autoconf.texi (testsuite Scripts): Update
7762         the name of the debugging directory and information about
7763         its contents.
7765 2003-05-22  Paolo Bonzini  <bonzini@gnu.org>
7767         * lib/m4sugar/m4sh.m4 (AS_REQUIRE): Actually use the 2nd
7768         parameter.
7770 2003-05-22  Akim Demaille  <akim@epita.fr>
7772         * lib/autoconf/autotest.m4, lib/autoconf/autoupdate.m4
7773         * lib/autoconf/fortran.m4 lib/autoconf/general.m4
7774         * lib/autoconf/headers.m4 lib/autoconf/oldnames.m4
7775         * lib/autoconf/status.m4: Fix and adjust copyright notices.
7777 2003-05-22  Akim Demaille  <akim@epita.fr>
7779         * aclocal.m4, bin/autoconf.as, lib/autoconf/autoconf.m4,
7780         * lib/autoconf/autoheader.m4, lib/autoconf/autoupdate.m4,
7781         * lib/autoconf/c.m4, lib/autoconf/fortran.m4,
7782         * lib/autoconf/general.m4, lib/autoconf/headers.m4,
7783         * lib/autoconf/lang.m4, lib/autoconf/libs.m4,
7784         * lib/autoconf/programs.m4, lib/autoconf/specific.m4,
7785         * lib/autoconf/status.m4, lib/autoconf/types.m4,
7786         * lib/autotest/general.m4, lib/m4sugar/m4sugar.m4,
7787         * tests/atspecific.m4, tests/base.at, tests/compile.at,
7788         * tests/foreign.at, tests/m4sh.at, tests/semantics.at,
7789         * tests/tools.at, tests/torture.at:
7790         Whitespace clean up.
7791         Suggested by Jim Meyering.
7793 2003-05-22  Akim Demaille  <akim@epita.fr>
7795         * lib/autoconf/functions.m4 (AC_FUNC_GETLOADAVG): Restore smashed
7796         ' \t' as '\t ' so that Emacs' whitespace.el keep it.
7797         Reported by Jim Meyering.
7799 2003-05-22  Akim Demaille  <akim@epita.fr>
7801         * doc/autoconf.texi: Replace AC_HELP_STRING AS_HELP_STRING.
7802         Add AC_HELP_STRING  to the obsolete macros section.
7803         Typos.
7804         Use '@.' for sentences that ended in a capital letter.
7805         From Art Haas.
7807 2003-05-22  Akim Demaille  <akim@epita.fr>
7809         * config/config.guess, config/config.sub, config/elisp-comp,
7810         * config/install-sh, config/mdate-sh, config/mkinstalldirs,
7811         * config/texinfo.tex, doc/standards.texi: Update from masters.
7813 2003-05-21  Paolo Bonzini  <bonzini@gnu.org>
7815         * lib/m4sugar/m4sh.m4 (AS_VAR_SET): Escape the RHS before passing
7816         it to eval.
7818 2003-05-21  Akim Demaille  <akim@epita.fr>
7820         * bin/autoupdate.in ($m4): Fix quotation.
7821         Reported by Martin Mokrejs.
7823 2003-05-19  Paul Eggert  <eggert@twinsun.com>
7825         * ChangeLog, ChangeLog.2, THANKS, lib/m4sugar/m4sugar.m4:
7826         Remove non-ASCII characters.
7828 2003-05-18  Paolo Bonzini  <bonzini@gnu.org>
7830         * tests/semantics.at (AC_SEARCH_LIBS): New test.
7831         * tests/semantics.at (AC_CHECK_HEADERS_OLD,
7832         AC_CHECK_HEADERS_NEW): New tests.
7834 2003-05-17  Akim Demaille  <akim@epita.fr>
7836         * lib/autoconf/functions.m4: Use the default includes so that
7837         memcmp be declared before being tested.
7838         Reported by Sander Niemeijer.
7839         (AC_FUNC_ERROR_AT_LINE, AC_FUNC_GETGROUPS, AC_FUNC_STRNLEN): Likewise.
7840         * doc/autoconf.texi (Default Includes): Document
7841         AC_INCLUDES_DEFAULT.
7843 2003-05-17  Akim Demaille  <akim@epita.fr>
7845         * lib/autoconf/specific.m4: Include signal.h and unistd.h.
7846         * doc/autoconf.texi (Obsolete Macros): Adjust.
7847         Reported by Werner LEMBERG and Debian Bug 190886.
7849 2003-05-16  Akim Demaille  <akim@epita.fr>
7851         * lib/m4sugar/m4sh.m4 (_AS_UNSET_PREPARE): s/FOO/as_foo/ to avoid
7852         user name space clashes.
7853         Reported by Bruno Haible.
7855 2003-05-16  Akim Demaille  <akim@epita.fr>
7857         * bin/autoheader.in, bin/autom4te.in, bin/autoreconf.in,
7858         * bin/autoscan.in, bin/autoupdate.in, bin/ifnames.in (BEGIN): Make
7859         them uniform, and more robust to Perl special characters.
7860         Reported by Martin Mokrejs.
7862 2003-05-14  Akim Demaille  <akim@epita.fr>
7864         * tests/foreign.at (Libtool): Skip all Libtools pre 1.4.
7866 2003-05-14  Akim Demaille  <akim@epita.fr>
7868         * doc/autoconf.texi (Header Portability): X11/extensions/scrnsaver.h,
7869         linux/irda.h.
7871 2003-05-12  Akim Demaille  <akim@epita.fr>
7873         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Improve the
7874         message.
7875         From Matthias Andree.
7877 2003-05-07  Alexandre Duret-Lutz  <adl@gnu.org>
7879         * lib/Autom4te/XFile.pm (lock, truncate): Do not pass @_ to flock
7880         and truncate.
7882 2003-05-06  Akim Demaille  <akim@epita.fr>
7884         Don't try to be smart with aclocal 1.8+ because (i) aclocal no
7885         longer updates aclocal.m4 if useless, (ii) if a file m4_included
7886         by aclocal.m4 is changed it might require the importing of another
7887         m4 extension file, i.e., aclocal must be run.
7889         * bin/autoreconf.in (&run_aclocal, $aclocal_supports_force): New.
7890         (&parse_args): Use --force with aclocal if required and supported.
7891         (&autoreconf_current_directory): Use &run_aclocal.
7893 2003-05-06  Akim Demaille  <akim@epita.fr>
7895         Lock autom4te's cache.
7897         * lib/Autom4te/XFile.pm ($me, &name, &lock, &truncate, &seek): New.
7898         * bin/autom4te.in (&Request::save, &Request::load): Use an IO::File
7899         argument instead of a file name, so that the request file remains
7900         open during the whole autom4te run.
7901         ($icache_file): New.
7902         (&freeze): Lock the $icache_file.
7904 2003-04-29  Derek Price  <derek@ximbiot.com>
7906         * lib/autotest/general.m4 (AT_KEYWORDS): Don't use a comma as the
7907         seperator with m4_append_uniq().  It doesn't work.
7908         (AT_CLEANUP): Add `;' to end of at_help_all.
7909         (AT_INIT): Allow --keywords to be specified more than once.  When
7910         grepping $at_help_all for keywords, use the field and keyword
7911         seperators to ensure a complete keyword match.  Alter at_prev handling
7912         to support the new --keywords behavior.
7914 2003-04-27  Karl Berry  <karl@freefriends.org>
7916         * doc/autoconf.texi: Make the dir entries in the autoconf manual
7917         align better with others.  I also made some of the individual
7918         entries on one line, for brevity and to make it easier for me to
7919         sort my dir-example file in the Texinfo distribution :).
7921 2003-04-12  Jim Meyering  <jim@meyering.net>
7923         * NEWS: Mention the new macro.
7924         * lib/autoconf/c.m4 (AC_C_RESTRICT): New macro.
7925         * doc/autoconf.texi (C Compiler): Describe AC_C_RESTRICT.
7926         * tests/c.at: Test AC_C_RESTRICT.
7927         * tests/mktests.sh (ac_exclude_list): Add exclusion for AC_C_RESTRICT.
7929 2003-04-08  Akim Demaille  <akim@epita.fr>
7931         * bin/ifnames.in: Skip C++ comments.
7932         From Jeremy Yallop.
7934 2003-04-08  Akim Demaille  <akim@epita.fr>
7936         * GNUmakefile (SHELL): Don't assume sh is in /bin/.
7937         From Ilya Zakharevich.
7939 2003-04-08  Akim Demaille  <akim@epita.fr>
7941         * doc/autoconf.texi (Particular Headers): Some about sys/socket.h,
7942         net/if.h, stdlib.h.
7944 2003-04-01  Derek Price  <derek@ximbiot.com>
7946         * lib/autoconf/programs.m4 (AC_PROG_INSTALL): Correct syntax error
7947         from Akim's checkin of 2003-03-29.
7949 2003-04-01  Derek Price  <derek@ximbiot.com>
7951         * tests/torture.at (Configuring subdirectories): Add missing
7952         close-quote for Akim's change from 2003-03-28.
7954 2003-04-01  Akim Demaille  <akim@epita.fr>
7956         * doc/autoconf.texi (ac, at, ms): Rename these indexes as...
7957         (AC, AT, MS): these.
7958         (shortindexflag, @acindex, @ahindex, @asindex, @atindex, @msindex):
7959         New.
7960         Use them.
7961         * doc/Makefile.am (CLEANFILES): Adjust.
7962         (TEXI2DVI): Make it --batch.
7964 2003-03-31  Derek Price  <derek@ximbiot.com>
7966         * lib/autotest/general.m4: Revert the checkin from 2003-03-27
7967         which removed the main loop.
7968         Thanks to Akim Demaille.
7970 2003-03-29  Akim Demaille  <akim@epita.fr>
7972         * lib/autoconf/programs.m4 (AC_PROG_INSTALL): Skip OS/2's install,
7973         that starts a GUI.
7974         From Ilya Zakharevich.
7976 2003-03-29  Akim Demaille  <akim@epita.fr>
7978         * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_MONGREL): The
7979         documentation to read is Autoconf's.
7980         Suggested by Paul Eggert.
7982 2003-03-28  Akim Demaille  <akim@epita.fr>
7984         * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_MONGREL): Suggest
7985         reading the section "Present But Cannot Be Compiled" when the
7986         header causes problems.
7988 2003-03-28  Akim Demaille  <akim@epita.fr>
7990         * tests/torture.at (Configuring subdirectories): Require aclocal
7991         1.4, otherwise the test fails, as it does support configure.ac.
7992         This fixes the "test 40 failed" bug reports.
7994 2003-03-28  Akim Demaille  <akim@epita.fr>
7996         * doc/autoconf.texi (C Compiler): `#line' portability.
7997         From Paul Eggert and Nelson H. F. Beebe.
7999 2003-03-27  Derek Price  <derek@ximbiot.com>
8001         * lib/autotest/general.m4: Eliminate main loop and reorganize test
8002         layout in order to allow scripting around test groups.
8004 2003-03-27  Derek Price  <derek@ximbiot.com>
8006         * lib/autotest/general.m4 (PARSE_ARGS,PARSE_ARGS_END,HELP,HELP_MODES,
8007         HELP_TUNING,HELP_OTHER,HELP_END,PREPARE_TESTS,TESTS_END): Define and
8008         use new diversions in preparation for accepting new arguments and
8009         allowing scripting around tests.
8010         (OPTIONS,TAIL): Remove these diversions to make way for the ones above.
8012 2003-03-26  Derek Price  <derek@ximbiot.com>
8014         * lib/autoconf/general.m4 (AC_ARG_VAR): Use AS_HELP_STRING instead of
8015         obsolete AC_HELP_STRING.
8016         (AC_HELP_STRING): AU_DEFUN to...
8017         * lib/m4sugar/m4sh.m4 (AS_HELP_STRING): ...here.
8018         * tests/m4sh.at (AS_HELP_STRING): New test.
8020         * tests/acgeneral.at: Regenerated.
8022 2003-03-26  Derek Price  <derek@ximbiot.com>
8024         * lib/autotest/general.m4: s/DEFAULT/DEFAULTS/ since it makes more
8025         sense.  Verbosify the diversion definitions comment.
8027 2003-03-26  Derek Price  <derek@ximbiot.com>
8029         * lib/autotest/general.m4 (AT_INIT): Remove redundant call to
8030         AS_PREPARE.
8032 2003-03-21  Eric Siegerman  <eric_97@pobox.com>
8034         * doc/autoconf.texi (Present But Cannot Be Compiled):
8035         Grammar fixes and minor rewording. (trivial change)
8037 2003-03-06  Paul Eggert  <eggert@twinsun.com>
8039         Work around a problem noted by Nelson H. F. Beebe with coreutils
8040         4.5.9: Sun c89 (Sun WorkShop 6 update 2 C 5.3 Patch 111679-08
8041         2002/05/09) rejects '#line 32768 "configure"' because the line
8042         number overflows.
8043         * lib/autoconf/c.m4 (AC_LANG_SOURCE(C)): Do not generate
8044         #line directives.
8045         * lib/autoconf/lang.m4 (AC_LANG_SOURCE): Fix comment to match this.
8046         * doc/autoconf.texi (Generating Sources): Document this.
8048 2003-03-01  Richard Dawe  <rich@phekda.freeserve.co.uk>
8050         * tests/atspecific.m4 (AT_CHECK_AUTOM4TE): Normalize
8051         file name for the m4 program, when it has an "exe" file extension.
8052         DJGPP's error messages include the error code in brackets -
8053         remove the error code during normalization.
8055 2003-02-28  Akim Demaille  <akim@epita.fr>
8057         * doc/autoconf.texi (Present But Cannot Be Compiled): New.
8059 2003-02-28  Alexandre Duret-Lutz  <adl@gnu.org>
8061         * doc/autoconf.texi (Limitations of Make): Remove the section
8062         about `$<' in inference rules, it was a bogus interpretation of
8063         an old Automake change.  Discuss NetBSD, FreeBSD, OpenBSD, and
8064         Tru64 make in the "target lookup" section.
8065         (Automake): Automake 1.5+ no longer requires special tools to be
8066         present on the developer's host.
8068 2003-02-26  Richard Dawe  <rich@phekda.freeserve.co.uk>
8070         * bin/autoheader.in (BEGIN): For DJGPP SHELL may not be set
8071         to a shell that can handle redirection or quoting correctly.
8072         Override SHELL with the shell detected by configure.
8073         Use of $^O suggested by Tim van Holder.
8074         * bin/autom4te.in (BEGIN): Likewise.
8075         * bin/autoreconf.in (BEGIN): Likewise.
8076         * bin/autoscan.in (BEGIN): Likewise.
8077         * bin/autoupdate.in (BEGIN): Likewise.
8078         * bin/ifnames.in (BEGIN): Likewise.
8080         * bin/ifnames.in: Add final newline to help and version messages.
8082         * lib/autoconf/programs.m4 (AC_PROG_MAKE_SET): Translate colons,
8083         to cope with DOS-style absolute paths, when constructing
8084         ${ac_make}.
8086         * lib/autoconf/status.m4 (_AC_OUTPUT_HEADERS, _AC_OUTPUT_FILES):
8087         When constructing paths with IFS=:, quote the path. If we're
8088         constructing a DOS-style absolute path, we don't want to split it
8089         on the colon.
8091         * tests/atspecific.m4 (AT_CHECK_CONFIGURE): Fix typo
8092         in description.
8094 2003-02-25  Pavel Roskin  <proski@gnu.org>
8096         * bin/autoheader.in: Add missing newline when printing
8097         suggestion how change AC_DEFINE call.
8099 2003-02-24  Paul Eggert  <eggert@twinsun.com>
8101         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Fix typo in
8102         2002-09-01 patch by replacing "test -n" with "test -z".
8103         This fixes a bug found by Jeff Painter and reported by Tom Epperly in
8104         <http://mail.gnu.org/archive/html/autoconf/2003-02/msg00139.html>.
8106         * doc/autoconf.texi (Shell Substitutions): test -n -> test -z,
8107         to fix a mismatch between example and discussion.
8109 2003-02-24  Kevin Ryde  <user42@zip.com.au>
8111         * doc/autoconf.texi (Limitations of Builtins): Add notes on printf
8112         format starting with "-".
8114 2003-02-20  Alexandre Duret-Lutz  <adl@gnu.org>
8116         * doc/autoconf.texi (Limitations of Make): `foo=bar make -e'
8117         is not portable inside Makefile.
8119 2003-02-20  Akim Demaille  <akim@epita.fr>
8121         * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_MONGREL): When
8122         compiler says yeah, but preproc says nope, compiler is right.
8123         Conversely, prompt the reader to send a bug report to the
8124         maintainers of the package, not of Autoconf.
8126 2003-02-20  Klee Dienes  <kdienes@apple.com>
8128         * bin/autoreconf.in (autoreconf_current_directory): Properly
8129         handle an empty aclocal.m4.
8131 2003-02-20  Akim Demaille  <akim@epita.fr>
8133         * lib/autoconf/general.m4 (AC_PREFIX_PROGRAM): Quote
8134         $ac_prefix_program.
8135         From Larry Jones.
8137 2002-12-23  Paul Eggert  <eggert@twinsun.com>
8139         * lib/autoconf/c.m4 (AC_LANG_FUNC_LINK_TRY(C)): Define $1 to an
8140         innocuous variant befor including <limits.h> or <assert.h>.  This
8141         works around a bug reported by Albert Chin: HP-UX 11i
8142         (and earlier versions) have a <limits.h> that declares
8143         gettimeofday and many other functions.
8145 2002-12-03  Paul Eggert  <eggert@twinsun.com>
8147         Version 2.57.
8149         * NEWS, configure.ac: Update version.
8151         * doc/fdl.texi: Upgrade to FDL version 1.2.
8153         * lib/autoconf/c.m4 (AC_LANG_FUNC_LINK_TRY(C)): Use the function f
8154         nontrivially in main's body, so that f's external declaration is
8155         not optimized away in AIX.  This should fix the bug reported by
8156         Martin Frydl in
8157         <http://mail.gnu.org/pipermail/autoconf/2002-November/014508.html>.
8159         * lib/autoconf/c.m4 (AC_LANG_FUNC_LINK_TRY(C),
8160         _AC_PROG_PREPROC_WORKS_IFELSE): Use <limits.h> if __STDC__ is
8161         defined, to support freestanding compilers.  This should fix the
8162         bug reported by Momchil Velkov in
8163         <http://mail.gnu.org/pipermail/autoconf/2002-November/014490.html>.
8165         * doc/autoconf.texi (Obsolete Macros): Fix typos (insert empty
8166         arg, AC_DEFINE -> AC_DEFINE_UNQUOTED) in documentation for
8167         obsolete AC_CHECK_TYPE.  The missing empty arg was reported
8168         by Simon Josefsson in
8169         <http://mail.gnu.org/pipermail/autoconf-patches/2002-December/008830.html>.
8171         * Makefile.maint (www-gnu): New macro.
8172         (standards.texi-url_prefix, make-stds.texi-url_prefix): Use it, as
8173         the location has moved.
8175 2002-12-02  Martin Frydl  <martin@systinet.com>
8177         * bin/autom4te.in (at_flatten): rewritten to avoid M4 problem when
8178         \(.*\) match is too long and there is something more to be checked.
8179         <http://mail.gnu.org/pipermail/autoconf/2002-November/014524.html>
8181 2002-11-15  Akim Demaille  <akim@epita.fr>
8183         Version 2.56.
8185         * config/install-sh: chmod +x.
8186         From Paul Eggert.
8187         * config/move-if-change: Indenting changes.
8188         * Makefile.am (AUTOMAKE_OPTIONS): Move to...
8189         * configure.ac (AM_INIT_AUTOMAKE): here.
8190         Require 1.7.1.
8192 2002-11-14  Akim Demaille  <akim@epita.fr>
8194         Version 2.55.
8196         * config/config.guess, config/config.sub, config/install-sh:
8197         Update from masters.
8199 2002-11-14  Akim Demaille  <akim@epita.fr>
8201         * Makefile.maint: Sync with Bison, i.e.:
8202         (po-check): Scan .l and .y files instead of the
8203         .c and the .h files that they generate.  This fixes the bug
8204         reported by Tim Van Holder in:
8205         <http://mail.gnu.org/pipermail/bison-patches/2002-November/001352.html>
8206         Look for N_ as well as for _.  Try to avoid matching #define for
8207         N_ and _.
8208         From Paul Eggert.
8210 2002-11-14  Akim Demaille  <akim@epita.fr>
8212         * doc/autoconf.texi (C Compiler): Compiling several files at once.
8213         From Paul Eggert and Albert Chin-A-Young.
8215 2002-11-14  Akim Demaille  <akim@epita.fr>
8217         * doc/autoconf.texi (C Compiler): Solitary backslashes.
8218         From Paul Eggert and Albert Chin-A-Young.
8220 2002-11-14  Kevin Ryde  <user42@zip.com.au>
8222         * lib/autoconf/c.m4 (AC_LANG_FUNC_LINK_TRY(C)): Initialize f=$1 rather
8223         than assigning in main, to avoid HP cc +O3 optimizing it away.
8225 2002-11-12  Peter Eisentraut  <peter_e@gmx.net>
8227         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Add -q
8228         option.  Process --recheck after parsing all options.  Pass -q
8229         option to configure on --recheck.
8230         (AC_OUTPUT): Pass -q from configure to config.status.
8231         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Strip -q from
8232         arguments to record.
8233         * doc/autoconf.texi (config.status Invocation): Document
8234         config.status -q option.
8236 2002-11-07  Alexandre Duret-Lutz  <adl@gnu.org>
8238         * bin/autoscan.in (scan_file): Scan Makefile.am too. Ignore
8239         Makefile.in if Makefile.am exists.
8240         (output): Strip `.am' from Makefiles.  Don't
8241         output AC_CONFIG_FILES if no Makefiles were found.
8243 2002-11-07  Akim Demaille  <akim@epita.fr>
8245         * Makefile.am (cvs_files): Add elisp-comp, mdate-sh.
8246         (local_updates): New.
8247         * Makefile.maint: Update, from CVS Bison.
8248         (local_updates): New.
8250 2002-11-06  Akim Demaille  <akim@epita.fr>
8252         * lib/autoconf/c.m4 (AC_LANG_FUNC_LINK_TRY): Wrap the `f'
8253         declaration in extern "C" too.
8254         Reported by Roberto Bagnara.
8256 2002-11-06  Akim Demaille  <akim@epita.fr>
8258         * tests/torture.at (Configuring subdirectories): Don't use grep
8259         -w.
8260         * doc/autoconf.texi (Limitations of Usual Tools): Grep -w.
8261         Reported by Ezra Peisach.
8263 2002-11-05  Akim Demaille  <akim@epita.fr>
8265         * lib/autoconf/autoheader.m4 (_AH_TEMPLATE_OLD, _AH_VERBATIM_OLD):
8266         Remove.
8267         We _have_ to stop using the old compatibility scheme that tried to
8268         avoid useless backslashes because Libtool 1.4.3 contains a
8269         AC_DEFINE([error_t], [int],
8270         [Define to a type to use for \`error_t' if it is not
8271         otherwise available.])
8272         We _have_ to quote the single quote and backslashes with \.  The
8273         old compatibility scheme saw that ` was backslashed, and therefore
8274         did not quote the single quote.  Hence before this patch, Autoconf
8275         was not compatible with Libtool.
8277 2002-11-04  Paul Eggert  <eggert@twinsun.com>
8279         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Set the following variables,
8280         too: LC_ADDRESS, LC_IDENTIFICATION, LC_MEASUREMENT, LC_MONETARY,
8281         LC_NAME, LC_PAPER, LC_TELEPHONE.
8282         * doc/autoconf.texi (Special Shell Variables): Mention those vars.
8284 2002-11-04  Akim Demaille  <akim@epita.fr>
8286         Version 2.54c.
8288         * Makefile.maint (update, cvs-update, po-update, do-po-update):
8289         New.
8290         * config/texinfo.tex: Update.
8292 2002-11-03  Akim Demaille  <akim@epita.fr>
8294         * bin/autoreconf.in (&autoreconf_current_directory): New, extracted
8295         from...
8296         (&autoreconf): here.
8297         ($help, $make, &parse_args, &autoreconf_current_directory):
8298         Support -m/--make.
8299         * doc/autoconf.texi (autoreconf Invocation): Adjust.
8301 2002-10-31  Bruno Haible  <bruno@clisp.org>
8303         * lib/autoconf/functions.m4 (_AC_FUNC_MALLOC_IF): Change message.
8304         Change name of cache variable to ac_cv_func_malloc_0_nonnull.
8305         (AC_FUNC_MALLOC): Change description of HAVE_MALLOC macro.
8306         (_AC_FUNC_REALLOC_IF): Change message. Change name of cache variable
8307         to ac_cv_func_realloc_0_nonnull.
8308         (AC_FUNC_REALLOC): Change description of HAVE_REALLOC macro.
8310 2002-10-31  Akim Demaille  <akim@epita.fr>
8312         The test suite was no longer checking for trailing envvars and files.
8314         * tests/atspecific.m4 (AC_STATE_SAVE): Don't use quadrigraphs here.
8315         (AT_CHECK_ENV): Make sure the `state-ls.before file exists.
8317 2002-10-31  Akim Demaille  <akim@epita.fr>
8319         * lib/autoconf/programs.m4 (AC_PROG_MAKE_SET): Use and display
8320         `$(MAKE)' instead of '${MAKE}' to emphasize that we refer to the
8321         Make variable, not a shell variable.
8322         Suggested by Bruno Haible.
8324 2002-10-31  Akim Demaille  <akim@epita.fr>
8326         * bin/autom4te.in (load_configuration): Reject #args out of any
8327         language.
8329 2002-10-31  Akim Demaille  <akim@epita.fr>
8331         * lib/autoconf/general.m4 (_AC_MSG_LOG_CONFTEST): New.
8332         (_AC_PREPROC_IFELSE, _AC_COMPILE_IFELSE, _AC_LINK_IFELSE)
8333         (_AC_RUN_IFELSE): Use it.
8334         * lib/autoconf/lang.m4 (_AC_COMPILER_OBJEXT):
8335         (_AC_COMPILER_EXEEXT_DEFAULT): Likewise.
8336         * lib/autoconf/c.m4 (AC_LANG_SOURCE): Don't include confdefs.h,
8337         inline it.
8339 2002-10-30  Akim Demaille  <akim@epita.fr>
8341         * bin/autom4te.in (&parse_args, $help): Support --no-cache.
8342         * doc/autoconf.texi (autom4te Invocation): Adjust.
8343         Suggested by Tim van Holder.
8345 2002-10-29  Paul Eggert  <eggert@twinsun.com>
8347         * doc/autoconf.texi (Particular Functions): AC_FUNC_MALLOC and
8348         AC_FUNC_REALLOC check for compatibility with glibc, not POSIX.
8349         Problem reported by Bruno Haible.
8351 2002-10-29  Akim Demaille  <akim@epita.fr>
8353         * doc/autoconf.texi (Header Templates): Put also in words what the
8354         pictures says to assist free style readers.
8355         (Customizing autom4te): s/--cache=/--cache /.
8357 2002-10-29  Akim Demaille  <akim@epita.fr>
8359         * lib/autoconf/functions.m4 (_AC_FUNC_VFORK): Include stdlib.h and
8360         sys/wait.h.
8361         sparc_address_test returns void.
8362         Use it with an argument, as prototyped.
8363         From Bruno Haible.
8365 2002-10-29  Akim Demaille  <akim@epita.fr>
8367         * doc/autoconf.texi (Subdirectories): Cygnus dirs have
8368         configure.in, not configure.ac.
8369         Reported by Bruno Haible.
8371 2002-10-29  Akim Demaille  <akim@epita.fr>
8373         * tests/torture.at (Deep Package): New test.
8374         (Configuring subdirectories): Don't use a testSubDir as Autotest
8375         now does it itself.
8377 2002-10-29  Akim Demaille  <akim@epita.fr>
8379         * bin/autoreconf.in (&parse_args, $help): Support --warnings.
8380         * doc/autoconf.texi (Invoking autom4te): Rename as...
8381         (autom4te Invocation): this, for consistency with the other nodes.
8383 2002-10-29  Akim Demaille  <akim@epita.fr>
8385         * lib/autom4te.in (Autoconf): s/automate/autom4te/.
8386         Reported by Ralf Corsepius.
8388 2002-10-29  Akim Demaille  <akim@epita.fr>
8390         * lib/m4sugar/m4sh.m4 (_AS_QUOTE): The warning about quoted
8391         characters is a back as an `obsolete' warning now.
8392         Reported by Ralf Corsepius.
8394 2002-10-28  Akim Demaille  <akim@epita.fr>
8396         * configure.ac: Bump to 2.54c.
8398 2002-10-28  Akim Demaille  <akim@epita.fr>
8400         Version 2.54b.
8402         * tests/foreign.at (Libtool): Adjust to broken libtoolize.
8404 2002-10-28  Akim Demaille  <akim@epita.fr>
8406         * tests/atspecific.m4 (AT_CHECK_AUTOM4TE): Be robust to different
8407         m4 executable names, and different GNU M4 version.
8408         Reported by Ezra Peisach and Paul Jarc.
8410 2002-10-27  Akim Demaille  <akim@epita.fr>
8412         * lib/autoconf/functions.m4 (_AC_FUNC_VFORK): Really use
8413         AC_RUN_IFELSE.
8415 2002-10-27  Akim Demaille  <akim@epita.fr>
8417         * doc/autoconf.texi: More AC_MSG_FAILURE promotion.
8418         * lib/autoconf/fortran.m4 (_AC_F77_NAME_MANGLING):
8419         Die when a simple Fortran program cannot be compiled.
8420         * lib/autoconf/lang.m4 (AC_LANG_CALL, AC_LANG_FUNC_LINK_TRY):
8421         Issue a warning if no function is given.
8423 2002-10-27  Akim Demaille  <akim@epita.fr>
8425         * doc/autoconf.texi (Run Time): Document AC_RUN_IFELSE.
8426         Move the documentation of AC_TRY_RUN to...
8427         (Obsolete Macros): here.
8428         Adjust all the old samples still using AC_TRY_RUN to AC_RUN_IFELSE.
8429         (autoconf Invocation): Remove the duplicates with `invoking
8430         autom4te'.
8431         * lib/autoconf/headers.m4 (AC_HEADER_STDC): Don't use AC_TRY_RUN.
8432         * lib/autoconf/c.m4 (AC_C_BIGENDIAN): Likewise.
8434 2002-10-27  Akim Demaille  <akim@epita.fr>
8436         * doc/autoconf.texi (Generating Sources): Document AC_LANG_CALL
8437         and AC_LANG_FUNC_LINK_TRY.
8438         (Examining Libraries): Rename as...
8439         (Running the Linker): this.
8440         Document AC_LINK_IFELSE.
8441         Move the documentation of AC_TRY_LINK and AC_TRY_LINK_FUNC to...
8442         (Obsolete Macros): here.
8443         * lib/autoconf/fortran.m4 (_AC_F77_NAME_MANGLING): Don't use
8444         AC_TRY_LINK_FUNC nor AC_TRY_LINK.
8445         * lib/autoconf/libs.m4 (AC_CHECK_LIB, AC_PATH_XTRA): Likewise.
8446         * lib/autoconf/headers.m4 (AC_USG): Likewise.
8448 2002-10-27  Akim Demaille  <akim@epita.fr>
8450         * lib/autoconf/headers.m4 (AC_HEADER_STDC): Don't use AC_TRY_CPP.
8452         More `check config.log' messages.
8454         * lib/autoconf/general.m4 (AC_MSG_FAILURE): New.
8455         * doc/autoconf.texi (Printing Messages): Document it.
8456         * lib/autoconf/types.m4 (AC_CHECK_SIZEOF): Use it when
8457         appropriate.
8458         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT)
8459         (_AC_COMPILER_EXEEXT_WORKS, _AC_COMPILER_EXEEXT_O)
8460         (_AC_COMPILER_OBJEXT): Likewise.
8461         * lib/autoconf/general.m4 (AC_RUN_IFELSE): Likewise.
8462         * lib/autoconf/fortran.m4 (_AC_LANG_PROGRAM_C_F77_HOOKS):
8463         Likewise.
8464         * lib/autoconf/c.m4 (AC_PROG_CPP, AC_PROG_CC, AC_PROG_CXXCPP):
8465         Likewise.
8467         Deprecate macros with unusual interfaces.
8469         * lib/autoconf/general.m4 (AC_TRY_CPP, AC_TRY_LINK)
8470         (AC_TRY_COMPILE, AC_TRY_RUN): AU_DEFUN'ed.
8472         Document the new ones, and proper style.
8474         * doc/autoconf.texi (Generating Sources): New.
8475         Document AC_LANG_CONFTEST, AC_LANG_SOURCE, AC_LANG_PROGRAM.
8476         (Examining Declarations): Rename as...
8477         (Running the Preprocessor): this.
8478         Document AC_PREPROC_IFELSE.
8479         (Examining Syntax): Rename as...
8480         (Running the Compiler): this.
8481         (AC_FOO_IFELSE vs AC_TRY_FOO): New section.
8482         (Obsolete Macros): Move the definition of AC_TRY_CPP and
8483         AC_TRY_COMPILE here.
8485 2002-10-27  Akim Demaille  <akim@epita.fr>
8487         Move sections around.
8489         * doc/autoconf.texi (Customizing autom4te): Remove a lost
8490         sentence.
8491         Reported by Burno Haible.
8492         (Language Choice): Now the first section of...
8493         (Writing Tests): this section.
8494         Make the introduction less C-centric.
8495         (Guidelines, Test Functions): Move to...
8496         (Writing Test Programs): this new section.
8497         (Test Programs): Merge into...
8498         (Run Time): this.
8500 2002-10-27  Akim Demaille  <akim@epita.fr>
8502         * lib/freeze.mk ($(AUTOM4TE_CFG)): Add a missing dependency on
8503         autom4te.in that resulted in the need for two `make' runs.
8505 2002-10-27  Akim Demaille  <akim@epita.fr>
8507         * configure.ac: Bump to 2.54b.
8509 2002-10-25  Akim Demaille  <akim@epita.fr>
8511         Version 2.54a.
8513         * Makefile.maint: Update from the Coreutils.
8514         (AMTAR): Remove, obsolete.
8515         (automake_repo): Update to redhat.com.
8516         (cvs_file): New.
8517         Adjust to the fact that ansi2knr is now hosted by Automake.
8518         * Makefile.am (cvs_files): Add install-sh and mkinstalldirs.
8519         * config/config.guess, config/mkinstalldirs, config/texinfo.tex:
8520         Update from masters.
8521         * lib/autoscan/Makefile.am (EXTRA_DIST, nodist_autoscanlib_DATA):
8522         autoscan.pre is not to be installed, and autoscan.list is not to
8523         be shipped.
8524         (CLEANFILES): Add autoscan.list.
8525         (autoscan.list): Disable the cache.
8526         * bin/Makefile.am: Include freeze.mk.
8528 2002-10-25  Akim Demaille  <akim@epita.fr>
8530         * bin/autom4te.in (&load_configuration): Take the file as
8531         argument.
8532         (&parse_args): Handle -C, --cache.
8533         ($help): Adjust.
8534         (MAIN): Load ~/.autom4te.cfg and ./.autom4te.cfg.
8535         * lib/autom4te.in (Autoconf): Pass --cache=autom4te.cache.
8536         * doc/autoconf.texi (Invoking autom4te): Document --cache.
8537         Now a subsection of...
8538         (Using autom4te): This new section.
8539         (Customizing autom4te): New.
8540         (autom4te.cache): Adjust.
8542 2002-10-25  Akim Demaille  <akim@epita.fr>
8544         * doc/autoconf.texi (Generic Headers): More information on how to
8545         use AC_CHECK_HEADERS.
8547 2002-10-25  Akim Demaille  <akim@epita.fr>
8549         * bin/autoconf.as, bin/autoconf.in, bin/autoupdate.in ($help):
8550         Space changes.
8552 2002-10-25  Akim Demaille  <akim@epita.fr>
8554         * bin/autoscan.in (output): Output AC_PREREQ.
8555         (%needed_macros): Add AC_PREREQ so that configure.ac without one
8556         be reported.
8558 2002-10-23  Akim Demaille  <akim@epita.fr>
8560         * doc/autoconf.texi (Particular Headers): In AC_HEADER_STDBOOL,
8561         document _Bool.
8563 2002-10-23  Akim Demaille  <akim@epita.fr>
8565         * bin/autom4te.in (handle_traces): Handle @&t@ in traces.
8566         Reported by Peter Eisentraut.
8568 2002-10-23  Akim Demaille  <akim@epita.fr>
8570         * lib/autoconf/headers.m4 (AC_HEADER_STDBOOL): Also look for the
8571         type _Bool.
8572         Fix a typo.
8573         * doc/autoconf.texi (Particular Headers): Adjust according to Paul
8574         Eggert's recommandations.
8576 2002-10-22  Akim Demaille  <akim@epita.fr>
8578         * lib/autoconf/headers.m4 (AC_HEADER_STDBOOL): New, based on CVS
8579         Bison, by Paul Eggert.
8580         * doc/autoconf.texi (Particular Headers): Document it.
8582 2002-10-22  Aaron M. Ucko  <amu@alum.mit.edu>
8584         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Avoid duplicates in
8585         `$ac_configure_args'.
8587 2002-10-22  Akim Demaille  <akim@epita.fr>
8589         * doc/autoconf.texi: Use AC_CONFIG_HEADERS in examples.
8590         (AC_ST_BLKSIZE, AC_ST_RDEV): Directly point to AC_CHECK_MEMBERS.
8591         From Art Haas.
8593 2002-10-22  Akim Demaille  <akim@epita.fr>
8595         Restore the 2002-10-11  Akim Demaille  <akim@epita.fr> patch:
8597         * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_MONGREL)
8598         (AC_CHECK_HEADER, _AC_CHECK_HEADER_NEW,_AC_CHECK_HEADER_OLD): Restore.
8599         (_AC_CHECK_HEADER_NEW): Rename as...
8600         (AC_CHECK_HEADER): this.
8602 2002-10-22  Akim Demaille  <akim@epita.fr>
8604         * doc/autoconf.texi (Limitations of Usual Tools): Remove incorrect
8605         words about HP-UX cmp: it was actually a user-written cmp.
8607 2002-10-22  Akim Demaille  <akim@epita.fr>
8609         * tests/foreign.at (Libtool): Don't check autoconf's stderr: there
8610         are a few warnings.
8611         * lib/autoconf/autoheader.m4 (AH_VERBATIM, _AH_VERBATIM_OLD):
8612         Quote for Perl '' strings, not "".
8613         * bin/autoheader.in: Invoke autoconf to get '' strings, not ""
8614         strings.
8616 2002-10-22  Akim Demaille  <akim@epita.fr>
8618         * lib/m4sugar/m4sh.m4 (_AS_QUOTE): The warning about quoted
8619         characters is a syntax warning now.
8620         (_AS_QUOTE): Accept $2 as list of characters to quote.
8621         * lib/autoconf/autoheader.m4 (AH_VERBATIM, _AH_VERBATIM_OLD):
8622         Quote for Perl, not sh.
8623         * bin/autoheader.in: When $debug, report the file which is
8624         `do'ne.
8625         * tests/tools.at (autom4te, autoheader): Exercise @bar, not merely
8626         `@', to tickle Perl's lists.
8627         Reported by Carlos Velasco.
8629 2002-10-18  Akim Demaille  <akim@epita.fr>
8631         * bin/autom4te.in (handle_m4): Pass --fatal-warning to m4, so that
8632         missing included files _are_ errors.
8633         Thanks to Alexandre Duret-Lutz.
8634         * tests/tools.at (autom4te cache): Adjust.
8635         * tests/atspecific.m4 (AT_CHECK_AUTOM4TE): New.
8636         (AT_CHECK_M4SUGAR): Use it.
8637         * tests/m4sugar.at (m4_warn, m4_require: circular dependencies):
8638         Adjust.
8639         * tests/tools.at (autom4te): Now it does exit 1.
8641 2002-10-17  Akim Demaille  <akim@epita.fr>
8643         * lib/autoconf/general.m4 (AC_CACHE_SAVE): Don't use cmp.
8644         Fixes the `AC_ARG_VAR' test failures.
8645         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES): Don't use cmp.
8646         * lib/freeze.mk (check-forbidden-patterns): New.
8647         * lib/autoconf/Makefile.am, lib/autotest/Makefile.am
8648         * lib/m4sugar/Makefile.am (check-local): Use it to catch `cmp'.
8649         * doc/autoconf.texi (Limitations of Usual Tools): HP-UX' cmp and
8650         /dev/null.
8651         Reported months ago by H. Merijn Brand.
8653 2002-10-17  Akim Demaille  <akim@epita.fr>
8655         * tests/tools.at (autoheader): Put randoms `@' to stress Perl.
8657 2002-10-16  Paul Eggert  <eggert@twinsun.com>
8659         * Makefile.maint (wget_files): Remove ansi2knr.c.
8660         (ansi2knr.c-url_prefix): Remove.
8662 2002-10-16  Akim Demaille  <akim@epita.fr>
8664         Because of caching, some files that no longer exist and are no
8665         longer required can still cause errors.
8666         Reported by Alexandre Duret-Lutz.
8668         * bin/autom4te.in (&parse_args): Do not prepend `--reload-state'
8669         to frozen files in @ARGV, as @ARGV must remain being a list of
8670         files.  Rather, at M4 call sites, use this...
8671         (&files_to_options): New function.
8672         (&freeze): Use &error.
8673         (&up_to_date): If a file that was included according to the cache
8674         is no longer there, then the output is out dated.
8675         (&main): Don't even check whether a file is up to date is anyway
8676         --force is given.
8677         * tests/tools.at (autom4te cache): New.
8679 2002-10-16  Akim Demaille  <akim@epita.fr>
8681         * bin/autoconf.as: Kill dead options.
8682         * bin/autoupdate.in (&parse_args): Kill old options.
8683         * bin/autoreconf.in (&parse_args): Remove dead options.
8684         Factor some code.
8685         (&autoreconf): Report the directories we enter *and leave*, so
8686         that error messages can be easily located, and use GNU Make
8687         format, so that Emacs' compile mode understands us.
8688         * lib/Autom4te/General.pm (&update_file): Use `verbose' to report
8689         if some file was changed instead of `print'.
8690         * bin/autoheader.in: Suggest AC_DEFINE with 3 args when needed.
8691         (&parse_args): Remove the dead options.
8692         * tests/atspecific.m4 (AT_CHECK_AUTOHEADER): Adjust to the new
8693         autoheader's quiet mode.
8694         (AT_CHECK_AUTOUPDATE): Likewise.
8695         * tests/tools.at (autoupdate): Adjust.
8696         * tests/semantics.at (AC_C_BIGENDIAN): Likewise.
8698 2002-10-11  Akim Demaille  <akim@epita.fr>
8700         No longer use CPP to check for the existing of headers: use CC to
8701         check for compilability.
8703         * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_MONGREL)
8704         (AC_CHECK_HEADER, _AC_CHECK_HEADER_OLD): Remove.
8705         (_AC_CHECK_HEADER_NEW): Rename as...
8706         (AC_CHECK_HEADER): this.
8708         * lib/autotest/general.m4 (AT_INIT): Include the failed test
8709         numbers in the Subject suggestion.
8711 2002-10-11  Akim Demaille  <akim@epita.fr>
8713         * lib/autoconf/specific.m4 (AC_DECL_SYS_SIGLIST): Obsolete.
8714         Suggest using AC_CHECK_DECLS instead.
8716 2002-10-11  Akim Demaille  <akim@epita.fr>
8718         * tests/torture.at (AC_ARG_VAR): Have configure report the value
8719         of `precious'.
8721 2002-10-11  Akim Demaille  <akim@epita.fr>
8723         * lib/m4sugar/m4sh.m4 (_AS_PATH_SEPARATOR_PREPARE): Use $$ in the
8724         file name to enable parallel executions.
8725         From Sam Varshavchik.
8727 2002-10-08  Akim Demaille  <akim@epita.fr>
8729         * bin/autoreconf.in (&autoreconf): Run autopoint before the first
8730         aclocal invocation, as Gettext macros might not be visible to
8731         aclocal.
8732         Instead of blindly running autopoint, scan configure.ac (not the
8733         traces) for AM_GNU_GETTEXT_VERSION uses, as autopoint does.
8734         Reported by Paul D. Smith.
8736 2002-10-08  Paul Eggert  <eggert@twinsun.com>
8738         Work around problems found when POSIXLY_CORRECT=1 is set.
8739         None of this seems to have anything to do with POSIX, really,
8740         but it's how Perl getopt works.
8741         * bin/autom4te.in (parse_args): Configure GetOpt with
8742         "permute", too.
8743         * doc/autoconf.texi (Invoking autom4te):
8744         --warning -> --warnings.
8745         * lib/autom4te.in: --warning -> --warnings.
8747 2002-09-28  Akim Demaille  <akim@epita.fr>
8749         * doc/autoconf.texi (autom4te.cache): New section.
8751 2002-09-28  Akim Demaille  <akim@epita.fr>
8753         * lib/autom4te.in (Autoscan-preselections, Autoreconf-preselections)
8754         (Automake-preselections): Update.
8755         * bin/autoreconf.in, bin/autoheader.in: Comment changes.
8757 2002-09-28  Akim Demaille  <akim@epita.fr>
8759         * lib/autoscan/autoscan.pre: Move all the remaining rules to...
8760         * lib/autoconf/c.m4, lib/autoconf/functions.m4,
8761         * lib/autoconf/headers.m4, lib/autoconf/libs.m4,
8762         * lib/autoconf/specific.m4, lib/autoconf/types.m4: here.
8764 2002-09-28  Akim Demaille  <akim@epita.fr>
8766         * tests/torture.at (Configuring subdirectories): Be robust to
8767         users who use config.site to require for a cache: in this case,
8768         the two last configure runs, using two different sets of
8769         arguments, trigger a legitimate error.
8771 2002-09-28  Akim Demaille  <akim@epita.fr>
8773         * tests/m4sh.at (Functions Support, Functions and return Support):
8774         New.
8776 2002-09-28  Akim Demaille  <akim@epita.fr>
8778         * bin/Makefile.am (ETAGS_SH, ETAGS_PERL): Update: ifnames and
8779         autoheader are Perl programs.
8780         (autoconf, autoheader, autoreconf, autoupdate, ifnames, autoscan)
8781         (autom4te): Specify that the sources are in the $srcdir.
8782         * doc/autoconf.texi (Installation Directory Variables): Adjust.
8784 2002-09-28  Akim Demaille  <akim@epita.fr>
8786         * lib/autoscan/autoscan.pre (st_blksize, st_blocks, st_rdev)
8787         (tm_zone): Move their rules to...
8788         * lib/autoconf/types.m4: here, using AN_ macros.
8789         * lib/autoscan/autoscan.pre (AWK, BISON, INSTALL, LEX, LN, MAKE)
8790         (RANLIB, YACC, awk, bison, byacc, flex, gawk, install, lex, ln)
8791         (make, mawk, nawk, ranlib, yacc): Similarly, move to...
8792         * lib/autoconf/programs.m4: here.
8793         * lib/freeze.mk (ETAGS_FOR_M4, ETAGS_FOR_M4SUGAR)
8794         (ETAGS_FOR_AUTOCONF): New.
8795         Use it.
8797 2002-09-28  Akim Demaille  <akim@epita.fr>
8799         * lib/autoconf/autoscan.m4: New file.
8800         * lib/autoconf/autoconf.m4: Include it.
8801         * lib/autoconf/functions.m4: Use AN_FUNCTION for all the functions
8802         that were listed in the original autoscan.list.
8803         * lib/autoconf/headers.m4: Similarly with headers.
8804         * lib/freeze.mk (autoconf_m4f_dependencies): Add autoscan.m4.
8805         (.m4.m4f): Don't pass --prepend-include, since that's done by
8806         tests/autom4te itself.
8807         * lib/autoscan/Makefile.am: Include freeze.mk.
8808         (autoscan.list): New target --this file is no longer a source.
8809         (autoscan.pre): New file.
8811 2002-09-28  Akim Demaille  <akim@epita.fr>
8813         * bin/autoscan.in (@kinds): Make them singular.
8814         Adjust all uses.
8815         (&init_tables): When --debug, report the list of rules to ease
8816         tracking changes in autoscan.list.
8817         * lib/autoscan/autoscan.list (function): Strip comments, sort.
8819 2002-09-28  Akim Demaille  <akim@epita.fr>
8821         * lib/autoscan/functions, lib/autoscan/headers,
8822         * lib/autoscan/identifiers, lib/autoscan/makevars,
8823         * lib/autoscan/programs: Merge into...
8824         * lib/autoscan/autoscan.list: this.
8825         * bin/autoscan.in (&init_tables): Adjust.
8827 2002-09-28  Akim Demaille  <akim@epita.fr>
8829         * lib/autoscan/functions, lib/autoscan/headers,
8830         * lib/autoscan/identifiers, lib/autoscan/makevars,
8831         * lib/autoscan/programs: Make the `kind' explicit, i.e., each
8832         `functions' line is now prefixed with `function:'.
8833         * bin/autoscan.in (&init_tables): Adjust.
8835 2002-09-28  Akim Demaille  <akim@epita.fr>
8837         From now on, autoscan files must always map a macro name to a
8838         word: there is no `default' macro for autoscan.
8840         * bin/autoscan.in (&init_tables): Reject entries with no macro at
8841         all.
8842         * lib/autoscan/functions, lib/autoscan/headers: Make the macro
8843         explicit.
8845 2002-09-28  Akim Demaille  <akim@epita.fr>
8847         * bin/autoscan.in (%c_keywords): Remove.
8848         (&used): Keep only track of the words we might be interested in.
8849         (&output_kind): It is no longer needed to look for non active
8850         checks.
8852 2002-09-27  Akim Demaille  <akim@epita.fr>
8854         * lib/autoconf/functions.m4 (AC_FUNC_MBRTOWC): New, stolen from
8855         jm_FUNC_MBRTOWC, by Paul Eggert, from the Coreutils 4.5.1.
8856         * lib/autoscan/functions: Adjust.
8857         * doc/autoconf.texi (Particular Functions): Adjust.
8859 2002-09-27  Akim Demaille  <akim@epita.fr>
8861         * doc/autoconf.texi (Limitations of Usual Tools): Some about mv
8862         from /tmp.
8863         Thanks to Bill Moseley and Paul Eggert.
8864         * lib/m4sugar/m4sh.m4 (AS_TMPDIR): $2 is the directory into which
8865         the tmpdir must be created.
8866         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Have the tmp
8867         dir be in the build tree, instead of $TMPDIR.
8869 2002-09-27  Akim Demaille  <akim@epita.fr>
8871         * bin/autoscan.in: Improve the comments.
8872         (&parse_args): Drop obsolete undocumented options.
8873         (&output_kind): Output warnings.
8874         * lib/autoscan/functions: (dcgettext): Now trigger AM_GNU_GETTEXT.
8875         (getwd): Trigger a warning.
8877 2002-09-26  Akim Demaille  <akim@epita.fr>
8879         * bin/autoreconf.in: Clarify that -s is meaningless without -i.
8880         Reported by Ralf Corsepius.
8881         * doc/autoconf.texi (autoreconf Invocation): Likewise.
8883 2002-09-26  Akim Demaille  <akim@epita.fr>
8885         Single suffix rules and seperated dependencies are not portable.
8887         * doc/autoconf.texi (Installation Directory Variables): Update.
8888         (Limitations of Make): Some about `Single Suffix Rules and
8889         Separated Dependencies'.
8890         * bin/Makefile.am (autoconf, autoheader, autoreconf, autoupdate)
8891         (ifnames, autoscan, autom4te): Un-factor into several rules.
8893 2002-09-25  Paul Eggert  <eggert@twinsun.com>
8895         * BUGS (Interoperability bugs): New section.  Mention libtool
8896         1.4.2, configure.ac, and AC_CONFIG_AUX_DIR interoperability bug.
8898 2002-09-24  Paul Eggert  <eggert@twinsun.com>
8900         Fix a portability bug reported by Alexandre Duret-Lutz: Solaris 8
8901         make handles suffix-rules differently from GNU make.
8903         * bin/Makefile.am (SUFFIXES, .in): Remove.
8904         (autoconf autoheader autoreconf autoupdate ifnames autoscan autom4te):
8905         Move the body of the old .in rule here.
8907 2002-09-16  Akim Demaille  <akim@epita.fr>
8909         i960 compilers create `b.out' files by default.
8910         Reported by Ralf Corsepius.
8912         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT): Remove b.out files.
8913         (_AC_COMPILER_EXEEXT_DEFAULT): Adjust to b.out.
8915 2002-09-13  Paul Eggert  <eggert@twinsun.com>
8917         * doc/autoconf.texi (Particular Headers): Remove obsolete
8918         reference to `struct timezone' in the description of
8919         AC_HEADER_TIME.
8921 2002-09-13  Akim Demaille  <akim@epita.fr>
8923         Version 2.54.
8925         * config/config.sub, config/config.guess: Update.
8926         * Makefile.maint: Update from bits of the Coreutils 4.5.1.
8927         * Makefile.am: Adjust.
8929 2002-09-13  Akim Demaille  <akim@epita.fr>
8931         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Suggest
8932         reading config.log when the compiler is rejected.
8933         Suggested by Guido Draheim.
8935 2002-09-13  Akim Demaille  <akim@epita.fr>
8937         * bin/autoreconf.in: Don't use Cwd::chdir, since in its internals
8938         (chdir_init) might hang when stat'ing mounted directories.
8939         Reported by Vance Shipley.
8941 2002-09-12  Akim Demaille  <akim@epita.fr>
8943         * bin/autoscan.in (&parse_args): Pass a reference to the lists, not
8944         the lists.
8946 2002-09-12  Akim Demaille  <akim@epita.fr>
8948         * doc/autoconf.texi (Defining Symbols): Present two different
8949         prototypes for AC_DEFINE and AC_DEFINE_UNQUOTED to emphasize the
8950         difference between 1 argument calls, and 2-3 argument calls.
8952 2002-09-12  Peter Eisentraut  <peter_e@gmx.net>
8954         * doc/autoconf.texi: Review grammar and punctuation.
8956 2002-09-11  Paul Eggert  <eggert@twinsun.com>
8958         * doc/autoconf.texi: Fix minor formatting, spelling, and
8959         grammatical typos.
8960         (Defining Symbols): Explain that AC_DEFINE(var) defaults to 1, but
8961         AC_DEFINE(var,,description) does not; and the AC_DEFINE(var) case
8962         is obsolescent.
8964 2002-09-11  Akim Demaille  <akim@epita.fr>
8966         * doc/autoconf.texi (Questions): Rename as...
8967         (FAQ): this.
8968         (Defining Directories): New.
8970 2002-09-09  Akim Demaille  <akim@epita.fr>
8972         * doc/autoconf.texi (Making testsuite Scripts): Update.
8973         Suggested by Nishio Futoshi.
8975 2002-09-09  Koji Arai  <JCA02266@nifty.ne.jp>
8977         * doc/autoconf.texi (Making testsuite Scripts): Use `@@' where a
8978         plain `@' is wanted.
8980 2002-09-09  Akim Demaille  <akim@epita.fr>
8982         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Keep the
8983         `duplicates', since the algorithm was too naive and could keep
8984         `--prefix=1 --prefix=2 --prefix=1' as `--prefix=1 --prefix=2', and
8985         keep `--prefix foo --prefix bar' as `--prefix foo bar'.
8986         Reported by Ralf Corsepius.
8987         * tests/torture.at (Configuring subdirectories): Exercise these
8988         cases.
8990 2002-09-09  Akim Demaille  <akim@epita.fr>
8992         * lib/autoconf/functions.m4 (AC_FUNC_GETLOADAVG): Use $srcdir when
8993         looking for a replacement file.
8994         * lib/autoconf/general.m4 (AC_CHECK_DECLS): Check that the
8995         directory is relative.
8996         * doc/autoconf.texi (Generic Functions): Clarify the replacement
8997         directory definition.
8998         Reported by Andreas Schwab and Jim Meyering.
9000 2002-09-06  Akim Demaille  <akim@epita.fr>
9002         * doc/autoconf.texi (Setting Output Variables): Clarify what
9003         precious variables are.
9004         Suggested by Pontus Skoeld.
9006 2002-09-05  Akim Demaille  <akim@epita.fr>
9008         * bin/Makefile.am (autoconf, autoheader, autoreconf, autoupdate)
9009         (ifnames, autoscan, autom4te): Since we don't only depend on
9010         configure.ac variables (such as VERSION etc.), but also on prefix
9011         and so forth, depend on Makefile, not configure.ac.
9012         Reported by Alexandre Duret-Lutz.
9013         * doc/autoconf.texi (Installation Directory Variables): Adjust.
9015 2002-09-05  Kevin Ryde  <user42@zip.com.au>
9017         * doc/autoconf.texi (Limitations of Make): HP-UX trailing backslashes
9018         doesn't seem to be confined to ia64, just say "some versions".
9020 2002-09-04  Akim Demaille  <akim@epita.fr>
9022         * Makefile.am, doc/Makefile.am: Remove pdf targets, handled by
9023         Automake 1.6c.
9024         * Makefile.am (maintainer-clean-local): Remove.
9025         (MAINTAINERCLEANFILES): Remove COPYING.
9027 2002-09-03  Paul Eggert  <eggert@twinsun.com>
9029         * doc/autoconf.texi (Configuration Commands): Remove obsolete
9030         example for AC_CONFIG_COMMANDS_PRE.  Problem reported by Marcus
9031         Brinkmann.
9033 2002-09-03  Akim Demaille  <akim@epita.fr>
9035         * configure.ac: Bump to 2.53d.
9036         * Makefile.am (AUTOMAKE_OPTIONS): Require 1.6c, i.e., CVS Automake
9037         as of today, on Automake's team suggestion.
9039 2002-09-03  Akim Demaille  <akim@epita.fr>
9041         Version 2.53c.
9043 2002-09-02  Akim Demaille  <akim@epita.fr>
9045         * bin/autom4te.in (parse_args): Don't honor AUTOM4TE_PATH and
9046         SITE_MACRO_DIR.
9047         * configure.ac: Disable SITE_MACRO_DIR.
9049 2002-09-02  Jim Meyering  <meyering@lucent.com>
9051         * doc/autoconf.texi (AC_SYS_POSIX_TERMIOS): Reflect renaming: s/am/ac/,
9052         i.e., change am_cv_sys_posix_termios to ac_cv_sys_posix_termios.
9053         Also, tweak grammar: s/make sure to/be sure to/.
9055 2002-09-02  Paul Eggert  <eggert@twinsun.com>
9057         * doc/autoconf.texi (Limitations of Builtins): Explain why logical
9058         directory names are generally preferable to physical names.
9060 2002-09-02  Akim Demaille  <akim@epita.fr>
9062         * lib/Autom4te/General.pm (&update_file): s/die/error/.
9063         Reported by Raja R. Harinath.
9064         * bin/autoheader.in, bin/autoreconf.in, bin/autoscan.in,
9065         * bin/autoupdate.in: Use error instead of die.
9067 2002-09-01  Paul Eggert  <eggert@twinsun.com>
9069         * tests/mktests.sh (ac_exclude_egrep, au_exclude_egrep): Use
9070         ordinary shell concatenation rather than echo+tr+sed command that
9071         runs afoul of a long-line-related sed bug in Solaris 8.
9073         * bin/autoheader.in (parse_args): --warning -> --warnings.
9075         * bin/autoconf.as: Work even if "ls" outputs "FOO not found" to
9076         stdout, as traditional "ls" does.
9077         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT,
9078         _AC_COMPILER_EXEEXT_O): Likewise.
9079         * doc/autoconf.texi (Limitations of Usual Tools): Add "ls".
9081         * bin/autoconf.as: Add --prepend-include option.  This patch was
9082         applied to bin/autoconf.in in the 2002-07-17 patch by Mark D. Roth,
9083         but bin/autoconf.in is generated automatically from bin/autoconf.as.
9085         * bin/autoconf.in, configure: Regenerate.
9087         * doc/autoconf.texi (Special Shell Variables): Mention
9088         ENV, MAIL, MAILPATH, PS1, PS2, PS4.  Index PWD.
9090         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Unset ENV, MAIL,
9091         MAILPATH and set PS1, PS2, PS4 to default values, to work
9092         around bug in pre-3.0 UWIN ksh reported by Bruce Lilly.
9093         For LC_ALL etc, first try to set to "C" as POSIX requires and as
9094         the Autoconf documentation specifies; fall back to "unset" only if
9095         this fails.  Use a shell for-loop for this rather than an m4 loop,
9096         to shorten the output script.
9098 2002-08-30  Paul Eggert  <eggert@twinsun.com>
9100         * doc/autoconf.texi (Special Shell Variables): Mention POSIX
9101         1003.1-2001's requirements for CDPATH.  Give a simpler workaround
9102         for the CDPATH problem.  Document PWD.
9103         (Limitations of Builtins): Document the problem that "cd $foo" and
9104         "ls $foo" may refer to different directories in shells conforming
9105         to POSIX 1003.1-2001.  Use PS1 rather than CDPATH for "unset"
9106         example, since the old example is now out of date.
9108         * lib/autoconf/general.m4 (_AC_INIT_SRCDIR): Reject FOO if "cd
9109         FOO" and "ls FOO" talk about different directories; this catches
9110         problems when POSIX 1003.1-2001 "cd" fails due to symlink
9111         spaghetti.
9113         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Use AS_UNSET instead
9114         of rolling our own unset.
9115         (_AS_PREPARE): $as_unset CDPATH instead of AS_UNSETting it, since
9116         in practice we needn't worry about CDPATH if unset doesn't work.
9118         * Makefile.in, aclocal.m4, bin/Makefile.in,
9119         config/Makefile.in, doc/Makefile.in, lib/Makefile.in,
9120         lib/Autom4te/Makefile.in, lib/autoconf/Makefile.in,
9121         lib/autoscan/Makefile.in, lib/autotest/Makefile.in,
9122         lib/emacs/Makefile.in, lib/m4sugar/Makefile.in, man/Makefile.in,
9123         tests/Makefile.in: Regenerate with Automake 1.6.3.
9125         * config/config.guess, config/config.sub, config/mkinstalldirs:
9126         Update.
9128         * configure: Regenerate with self.
9130 2002-08-30  Kevin Ryde  <user42@zip.com.au>
9132         * doc/autoconf.texi (Limitations of Usual Tools): Notes on "cc"
9133         default output.
9135 2002-08-29  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
9137         * bin/autom4te.in (Request::load): Correctly test for "do" read
9138         failure.
9140 2002-08-29  Akim Demaille  <akim@epita.fr>
9142         * lib/Autom4te/General.pm (&xqx): New.
9143         (&xsystem): Use WIFEXITED and WEXITSTATUS instead of decoding $? by
9144         hand, which is not portable.
9145         (&error): New.
9146         * bin/autom4te.in: Use them.
9147         Use &error instead of die.
9148         * tests/m4sugar.at (m4_warn, m4_require: circular dependencies):
9149         Adjust.
9151 2002-08-17  Paul Eggert  <eggert@twinsun.com>
9153         * lib/autoconf/fortran.m4 (AC_PROG_F77): Remove fc from the
9154         default list of compilers to try, since it was long ago superseded
9155         by the ksh fc builtin.  Suggested by Steven G. Johnson.
9157 2002-07-31  Alexandre Duret-Lutz  <duret_g@epita.fr>
9159         * doc/autoconf.texi (Invoking autom4te): End the option table,
9160         fixing a bug introduced by the previous patch.
9161         (Limitations of Make): Add a 'target lookup' subentry in the
9162         'VPATH' entry.  Rewrite all `make' occurences as `@command{make}'.
9164 2002-07-29  Mark D. Roth  <roth@feep.net>
9166         * bin/autom4te.in: Remove --include-envvar and --site-macro-subdir
9167         options and use $AUTOM4TE_PATH.
9168         * doc/autoconf.texi: Remove documentation of autom4te
9169         --include-envvar and --site-macro-subdir options and document
9170         use of $AUTOM4TE_PATH.
9171         * lib/autom4te.in: Remove --include-envvar and --site-macro-subdir
9172         arguments from each language section.
9174 2002-07-29  Paul Eggert  <eggert@twinsun.com>
9176         * doc/install.texi: Include copyright symbol in copyright notice.
9178         * Makefile.am (MAKEINFO): Remove; it's a user-specified macro.
9179         Replace with:
9180         (AM_MAKEINFOFLAGS): New macro.
9181         * doc/Makefile.am (MAKEINFO, AM_MAKEINFOFLAGS): Likewise.
9182         * Makefile.am (INSTALL): Use the new macros.
9183         Use -o rather than --output, since "missing" does not grok --output.
9185 2002-07-25  Alexandre Duret-Lutz  <duret_g@epita.fr>
9187         * doc/autoconf.texi (Limitations of Make): Escaped newlines in
9188         comments do not always work. Never trust the exit status of
9189         `make -k'.
9191 2002-07-24  Kevin Ryde  <user42@zip.com.au>
9193         * doc/autoconf.texi (Limitations of Make, Making testsuite Scripts):
9194         Untabify, since tabs are not enjoyed by texi2dvi and makeinfo.
9196 2002-07-23  Paul Eggert  <eggert@twinsun.com>
9198         * lib/m4sugar/m4sh.m4 (_AS_PATH_SEPARATOR_PREPARE):
9199         Use PATH="/nonexistent;.", not PATH=".;.", as FreeBSD ksh2002
9200         apparently treats PATH="nonexistent" as if it contained ".".
9201         Bug reported by Stefan `Sec' Zehl.
9203 2002-07-22  Alexandre Duret-Lutz  <duret_g@epita.fr>
9205         * doc/autoconf.texi (Limitations of Make): Mention the special
9206         handling of the obj/ directory by BSD make.
9208 2002-07-20  Kevin Ryde  <user42@zip.com.au>
9210         * doc/autoconf.texi (Limitations of Make): Add HP-UX IA-64 trailing
9211         backslashes.
9213 2002-07-19  Akim Demaille  <akim@epita.fr>
9215         * doc/autoconf.texi (Function Portability): `exit'.
9216         (Programming in M4sh): Ethymology of M4sh.
9218 2002-07-19  Akim Demaille  <akim@epita.fr>
9220         * doc/autoconf.texi (AC_LIBOBJ vs LIBOBJS): More about $U.
9222 2002-07-18  Akim Demaille  <akim@epita.fr>
9224         Version 2.53b.
9226 2002-07-18  Akim Demaille  <akim@epita.fr>
9228         * config/config.guess, config/config.sub: Update.
9230 2002-07-18  Akim Demaille  <akim@epita.fr>
9232         Handle LIBOBJS and LTLIBOBJS once for all, including Libtool's and
9233         Automake's parts.
9235         * lib/autoconf/general.m4 (_AC_LIBOBJS_NORMALIZE): New.
9236         * lib/autoconf/status.m4 (AC_OUTPUT_COMMANDS_PRE): Call it.
9237         * tests/semantics.at (AC_REPLACE_FUNCS): Adjust.
9239 2002-07-18  Akim Demaille  <akim@epita.fr>,
9240             Alexandre Duret-Lutz  <duret_g@epita.fr>
9242         * lib/autoconf/status.m4 (_AC_OUTPUT_HEADERS): Install
9243         _AC_AM_CONFIG_HEADER_HOOK for Automake 1.7.
9245 2002-07-17  Russ Allbery  <rra@stanford.edu>
9247         * doc/autoconf.texi (Initializing configure): Clarify the
9248         description of the tarname default.
9250 2002-07-17  Andreas Buening  <andreas.buening@nexgo.de>
9252         * lib/autoconf/functions.m4 (AC_FUNC_FORK): Don't set
9253         ac_cv_func_fork_works before running _AC_FUNC_FORK, do it if the
9254         latter was not run.
9256 2002-07-17  Akim Demaille  <akim@epita.fr>
9258         * lib/Autom4te/General.pm (find_file): Browse the directories in
9259         the order they are given.
9261 2002-07-17  Akim Demaille  <akim@epita.fr>
9263         * tests/wrapsh.as, tests/wrappl.as: Merge into...
9264         * tests/wrapper.as: this.
9265         * tests/Makefile.am, configure.ac: Adjust.
9267 2002-07-17  Mark D. Roth  <roth@feep.net>
9269         * configure.ac: Add --enable-site-macro-dir option.
9270         * bin/Makefile.am: Expand @SITE_MACRO_DIR@.
9271         * bin/autom4te.in: Add --prepend-include, --include-envvar, and
9272         --site-macro-subdir options.
9273         * bin/autoconf.in: Add --prepend-include option.
9274         * bin/autoheader.in: Add --prepend-include option.
9275         * bin/autoreconf.in: Add --prepend-include option.
9276         * bin/autoscan.in: Add --prepend-include option.
9277         * bin/autoupdate.in: Add --prepend-include option.
9278         * doc/autoconf.texi: Document use of $AC_MACRO_PATH and site
9279         macro directory, remove note that include path directories are
9280         used in reverse order, and document --prepend-include option.
9281         * lib/autom4te.in: Use --prepend-include instead of --include.
9282         * tests/wrapsh.in: Use --prepend-include instead of --include.
9284 2002-07-17  Akim Demaille  <akim@epita.fr>
9286         * lib/autoconf/general.m4 (_AC_INIT_PACKAGE): `_' is allowed in
9287         tarnames.
9288         * doc/autoconf.texi (Initializing configure): Adjust.
9290 2002-07-17  Akim Demaille  <akim@epita.fr>
9292         * lib/autoconf/functions.m4 (AC_FUNC_REALLOC, _AC_FUNC_REALLOC)
9293         (_AC_FUNC_MALLOC): New.
9294         (AC_FUNC_MALLOC): Use the latter.
9295         Define HAVE_MALLOC to 0 if broken.
9296         * doc/autoconf.texi (Particular Functions): Adjust.
9298 2002-07-16  Akim Demaille  <akim@epita.fr>
9300         * lib/autoconf/c.m4 (AC_C_BACKSLASH_A): New.
9301         * doc/autoconf.texi (C Compiler): Adjust.
9303 2002-07-09  Akim Demaille  <akim@epita.fr>
9305         * doc/autoconf.texi: Properly set the ``header'' part.
9307 2002-07-09  Akim Demaille  <akim@epita.fr>
9309         * doc/autoconf.texi (Systemology): Some about Darwin.
9311 2002-07-09  Alexandre Duret-Lutz  <duret_g@epita.fr>
9313         * lib/autoconf/specific.m4 (AC_CYGWIN, AC_EMXOS2, AC_MINGW32):
9314         Don't use AC_REQUIRE in AU_DEFUN.
9316 2002-07-09  Art Haas  <ahaas@neosoft.com>
9318         * doc/autoconf.texi: Use @enddots{} or @dots{} where appropriate.
9320 2002-07-02  Alexandre Duret-Lutz  <duret_g@epita.fr>
9322         * bin/autoheader.in, bin/autom4te.in, bin/autoreconf.in,
9323         bin/autoupdate.in, bin/ifnames.in, lib/Autom4te/General.pm,
9324         lib/Autom4te/Struct.pm, lib/Autom4te/XFile.pm: Add local variables
9325         so that Emacs setups GNU style for perl-mode and cperl-mode.
9327 2002-06-27  Paul Eggert  <eggert@twinsun.com>
9329         * config/install-sh: Quote $src.  Prefer || to test's -o option,
9330         as per "Limitations of Builtins".
9331         * tests/atspecific.m4 (AT_CHECK_ENV): Likewise, for && vs test -a.
9332         * tests/semantics.at (AC_C_BIGENDIAN): Likewise.
9334         * tests/mktests.sh: Use grep instead of fgrep, as per
9335         "Limitations of Builtins".
9337 2002-06-15  Paul Eggert  <eggert@twinsun.com>
9339         * tests/wrapsh.as (AUTOCONF, AUTOHEADER, AUTOM4TE, AUTOM4TE_CFG,
9340         autom4te_perllibdir): Set to top build dir or src dir as appropriate,
9341         so that we consistently test the just-built programs.
9342         * tests/wrappl.as: Likewise.
9344 2002-06-12  Paul Eggert  <eggert@twinsun.com>
9346         * bin/autoconf.as (AUTOM4TE): Default to a fully qualified path
9347         name, so that symlinks to 'autoconf' work properly.  Bug reported
9348         by Bruno Haible.
9349         * bin/autoheader.in (AUTOM4TE): Likewise.
9350         * bin/autoreconf.in (autoconf, autoheader): Likewise.
9351         * bin/autoscan.in (autom4te): Likewise.
9352         * bin/autoupdate.in (autom4te): Likewise.
9354         * lib/autoconf/functions.m4 (_AC_LIBOBJ_FNMATCH): Also check for
9355         btowc, to fix a portability bug with diffutils-2.8.2/lib/fnmatch.c
9356         on Solaris 2.5.1.
9358 2002-06-11  Andreas Schwab  <schwab@suse.de>
9360         * doc/autoconf.texi: Add more dir entries.
9362 2002-06-10  Alexandre Duret-Lutz  <duret_g@epita.fr>
9364         * bin/autom4te.in ($cache): Don't define using `$me', the name
9365         of the cache should not depend on the name under which autom4te
9366         was installed.
9368 2002-06-07  Akim Demaille  <akim@epita.fr>
9370         * tests/tools.at (autoconf: forbidden tokens, basic)
9371         (autoconf: forbidden tokens, exceptions): Adjust to the change of
9372         words in autom4te.in.
9374 2002-06-07  Peter Eisentraut  <peter_e@gmx.net>
9376         * lib/autoconf/c.m4 (AC_LANG_PROGRAM(C)): Use
9377         _AC_LANG_PROGRAM_C_F77_HOOKS.
9379 2002-06-07  Akim Demaille  <akim@epita.fr>
9381         * lib/autoconf/functions.m4 (AC_REPLACE_FUNC_FNMATCH): Typo,
9382         rename as...
9383         (AC_REPLACE_FNMATCH): this.
9384         * tests/mktests.sh (exclude_list): Exclude AC_REPLACE_FNMATCH,
9385         AC_FUNC_FNMATCH_GNU.
9387 2002-06-07  Akim Demaille  <akim@epita.fr>
9389         * doc/autoconf.texi (Systemology): Point to Tru64 docs, and the
9390         Rosetta Stone for Unix.
9392 2002-06-07  Akim Demaille  <akim@epita.fr>
9394         * bin/autom4te.in (warn_forbidden): When rejecting a token,
9395         suggest m4_pattern_allow.
9396         Suggested by Adam J. Richter.
9398 2002-06-07  Akim Demaille  <akim@epita.fr>
9400         * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS): Initialize
9401         ac_config_libobj_dir.
9402         (AC_CONFIG_LIBOBJ_DIR): New.
9403         * lib/autoconf/functions.m4 (_AC_FUNC_FNMATCH): Split into...
9404         (_AC_FUNC_FNMATCH_IF, _AC_LIBOBJ_FNMATCH): these.
9405         Use ac_config_libobj_dir to find the replacement files.
9406         (AC_FUNC_FNMATCH, AC_FUNC_FNMATCH_GNU): Split into...
9407         (AC_FUNC_FNMATCH, AC_FUNC_FNMATCH_GNU, AC_REPLACE_FNMATCH)
9408         (AC_REPLACE_FNMATCH_GNU): these.
9409         (AC_FUNC_GETLOADAVG): Use ac_config_libobj_dir.
9410         * doc/autoconf.texi (Particular Functions, Generic Functions): Adjust.
9411         * tests/mktests.sh (ac_exclude_list): Don't check
9412         AC_FUNC_GETLOADAVG as it requires getloadavg.c which is not shipped.
9414 2002-06-06  Paul Eggert  <eggert@twinsun.com>
9416         * lib/autoconf/status.m4 (_AC_OUTPUT_LINKS): Fall back on cp
9417         if ln doesn't work.
9418         * NEWS: Likewise.
9419         * doc/autoconf.texi (Configuration Links): Likewise.
9420         (Limitations of Usual Tools): Prefer $(LN_S) to ln -s || ln.
9422 2002-06-05  Paul Eggert  <eggert@twinsun.com>
9424         * config/config.guess, config/config.sub, config/texinfo.tex:
9425         Update from masters.
9427 2002-05-29  Paul Eggert  <eggert@twinsun.com>
9429         * bin/autom4te.in ($m4): Do not assume that egrep and fgrep exist.
9430         * lib/autoconf/c.m4 (AC_C_BIGENDIAN): Likewise.
9431         * lib/autoconf/general.m4 (_AC_RUN_LOG_STDERR, AC_EGREP_CPP):
9432         Likewise.
9433         * lib/autoconf/Makefile.am (check-local): Likewise.
9434         * lib/autoconf/status.m4 (AC_CONFIG_HEADER): Likewise.
9435         * lib/autoconf/types.m4 (commentary only): Likewise.
9436         * lib/autotest/general.m4 (AT_INIT, AT_CHECK): Likewise.
9437         * lib/autotest/Makefile.am (check-local): Likewise.
9438         * lib/m4sugar/Makefile.am (check-local): Likewise.
9439         * tests/atspecific.m4 (AT_CONFIGURE_AC, AT_CHECK_DEFINES): Likewise.
9440         * tests/mktests.sh (egrep): New var; use it instead of plain egrep.
9442         * lib/autoconf/programs.m4 (AC_PROG_EGREP, AC_PROG_FGREP): New macros.
9443         * doc/autoconf.texi (Particular Programs): Document them.
9444         (Limitations of Usual Tools): Warn that egrep and fgrep may not exist.
9445         * NEWS: Likewise.
9447 2002-05-27  Paul Eggert  <eggert@twinsun.com>
9449         * lib/autoconf/types.m4 (AC_TYPE_MBSTATE_T): New macro.
9450         * NEWS, doc/autoconf.texi (Particular Types): Document it.
9451         * lib/autoconf/functions.m4 (_AC_FUNC_FNMATCH): Require it
9452         instead of AC_MBSTATE_T, which never existed.
9454 2002-05-23  Akim Demaille  <akim@epita.fr>
9456         * doc/autoconf.texi (Hosts and Cross-Compilation): Specify the
9457         version of Autoconf that is discussed.
9459 2002-05-22  Paul Eggert  <eggert@twinsun.com>
9461         * lib/autoconf/fortran.m4 (AC_PROG_F77): Remove cf77 and cft77
9462         from the default list of compilers to try.  Suggested by
9463         Kate Hedstrom.
9464         * NEWS: Document the above.
9465         * doc/autoconf.texi (Fortran 77 Compiler): Don't suggest cf77.
9467 2002-05-17  Paul Eggert  <eggert@twinsun.com>
9469         * lib/autoconf/types.m4 (AC_CHECK_MEMBER): Work correctly even if
9470         the member is itself an aggregate.  Bug reported by Sergey Poznyakoff.
9471         This improves on an earlier suggestion by H. Peter Anvin.
9473 2002-05-16  Paul Eggert  <eggert@twinsun.com>
9475         AC_FUNC_FNMATCH now tests only for POSIX compatibility.
9476         AC_FUNC_FNMATCH_GNU also tests for GNU extensions.
9477         Both macros now accept an optional source-dir arg.
9478         New macro AC_GNU_SOURCE to define _GNU_SOURCE.
9480         * NEWS: Document this.
9481         * doc/autoconf.texi (Particular Functions, UNIX Variants): Likewise.
9483         * lib/autoconf/functions.m4 (_AC_FUNC_FNMATCH): New macro.
9484         (AC_FUNC_FNMATCH): Use it.  Test only for POSIX conformance,
9485         not for GNU extensions; this undoes part of the 2000-11-03 change,
9486         reverting to 2.13-compatible behavior.
9487         Add new optional argument DIR.
9488         (AC_FUNC_FNMATCH_GNU): New macro.
9490         * lib/autoconf/specific.m4 (AC_GNU_SOURCE): New macro.
9492 2002-05-08  Paul Eggert  <eggert@twinsun.com>
9494         * lib/autoconf/headers.m4 (AC_HEADER_TIOCGWINSZ):
9495         Don't require AC_SYS_POSIX_TERMIOS.  The test is unnecessary,
9496         and it causes a 'test' syntax error if it fails.
9497         Bug reported by Stephen Gildea.
9499         * lib/autoconf/functions.m4 (AC_FUNC_SETVBUF_REVERSED):
9500         If prototypes are supported, use them to check this at compile-time,
9501         instead of trying to check it at run-time.  If we must do a run-time
9502         check, assume that setvbuf is standard when cross-compiling, as
9503         nonstandard setvbuf occurs only on ancient and unlikely hosts.
9504         Bug reported by Paul D. Smith.
9506         * lib/autoconf/functions.m4 (AC_FUNC_GETLOADAVG): Add optional
9507         argument specifying location of getloadavg.c.  This removes a
9508         FIXME.  This idea was taken from Jim Meyering's implementation in
9509         textutils.
9510         * doc/autoconf.texi (Particular Functions): Document this.
9511         Also, mention HAVE_NLIST_H rather than NLIST_STRUCT, since
9512         that's what the code does; this fixes a bug reported by
9513         Paul D. Smith.
9515 2002-05-03  Akim Demaille  <akim@epita.fr>
9517         * bin/autoreconf.in (autoreconf): Rewrite to use Gettext's
9518         autopoint instead of gettextize.
9519         ($uses_alocal): Rename as...
9520         ($uses_aclocal): this.
9521         * doc/autoconf.texi (autoreconf Invocation): Adjust.
9522         Suggested by Bruno Haible.
9524 2002-05-03  Akim Demaille  <akim@epita.fr>
9526         * lib/m4sugar/m4sugar.m4 (m4_map_sep): New.
9528 2002-04-29  Paul Eggert  <eggert@twinsun.com>
9530         * bin/autoreconf.in (autoreconf): Don't age aclocal.m4's input
9531         files to be 1 second older; just set them to be the same time.
9532         Also, sleep 1 second after the first aclocal, to work around
9533         problems with sub-second time stamps on the input files.
9535 2002-04-29  Thien-Thi Nguyen  <ttn@gnu.org>
9537         * doc/autoconf.texi: Mention "set -e -x" lossage
9538         under node "Limitations of Builtins".
9540 2002-04-29  Akim Demaille  <akim@epita.fr>
9542         * doc/install.texi: Better wording for setting variables when
9543         running configure.
9544         From Christian Cornelssen.
9546 2002-04-29  Akim Demaille  <akim@epita.fr>
9548         * tests/m4sh.at (LINENO): If testsuite itself is rewritten because
9549         of lack of $LINENO support, then the test will compare the $LINENO
9550         in testsuite vs. the lineno in the test file.  This is wrong, of
9551         course.
9552         Be sure to protect it.
9553         Reported by Patrick Welche.
9555 2002-04-25  Akim Demaille  <akim@epita.fr>
9557         * doc/autoconf.texi (Obsolete Macros): Typo.
9558         Reported by Vladimir Volovich.
9560 2002-04-25  Akim Demaille  <akim@epita.fr>
9562         * bin/autoreconf.in (autoreconf): Don't let aclocal.m4 be older
9563         than some of the input files, hence, on the second run of aclocal,
9564         if some of its input are younger, make them older.
9565         Suggested by Paul Eggert.
9567 2002-04-25  Akim Demaille  <akim@epita.fr>
9569         * doc/autoconf.texi (Limitations of Usual Tools): sed and `!'.
9570         Thanks to Paul Eggert.
9572 2002-04-25  Akim Demaille  <akim@epita.fr>
9574         * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS): Let ac_subst_files
9575         and ac_subst_vars be sh variables containing the list of
9576         AC_SUBST_FILES'ed and AC_SUBST'ed identifiers.  Output them in the
9577         DEFAULT diversion.
9578         (_AC_INIT_PREPARE): Use them to log them.
9579         (_AC_SUBST, _AC_SUBST_SED_PROGRAM): Remove.
9580         (AC_SUBST, AC_SUBST_FILE): Instead of buliding the
9581         _AC_SUBST_SED_PROGRAM, store the list of output files/variables in
9582         _AC_SUBST_FILES and _AC_SUBST_VARS.
9583         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES): Adjust.
9585 2002-04-24  Akim Demaille  <akim@epita.fr>
9587         * bin/autoreconf.in (autoreconf): Run automake after autoconf and
9588         autoheader, so that automake does not complain about a missing
9589         config.h.in that was to be created.
9591 2002-04-23  Akim Demaille  <akim@epita.fr>
9593         * bin/autoheader.in (parse_args): --warning takes an argument.
9594         Fixes PR/220.
9596 2002-04-22  Peter Eisentraut  <peter_e@gmx.net>
9598         * lib/autoconf/general.m4 (_AC_RUN_IFELSE): Remove gmon.out
9599         and bb.out when cleaning up.
9601 2002-04-22  Akim Demaille  <akim@epita.fr>
9603         Version 2.53a.
9605 2002-04-22  Akim Demaille  <akim@epita.fr>
9607         * tests/m4sh.at (LINENO): Fix the Zsh skip pattern.
9609 2002-04-22  Akim Demaille  <akim@epita.fr>
9611         * doc/autoconf.texi (Pretty Help Strings): Remove a spurious
9612         comma.
9613         Reported by Gregory Giannoni.
9615 2002-04-22  Akim Demaille  <akim@epita.fr>
9617         * tests/m4sh.at (LINENO): Skip the test if LINENO cannot be unset.
9618         Fixes false failures on Darwin.
9620 2002-04-21  Paul Eggert  <eggert@twinsun.com>
9622         * TODO, bin/autoupdate.in, doc/autoconf.texi,
9623         lib/autoconf/general.m4, lib/autoconf/libs.m4,
9624         lib/autoconf/status.m4, lib/m4sugar/m4sugar.m4, tests/m4sh.at,
9625         tests/tools.at: Minor spelling and grammar fixes.
9627 2002-04-20  Paul Eggert  <eggert@twinsun.com>
9629         * doc/autoconf.texi (Shell Substitutions): Fix typos in yesterday's
9630         ZSH_VERSION fixes.  Bug reported by Raja R Harinath.
9631         * lib/autotest/general.m4 (AT_INIT): Likewise.
9632         * tests/atgeneral.m4 (AT_INIT): Likewise.
9634 2002-04-19  Paul Eggert  <eggert@twinsun.com>
9636         * NEWS, TODO, bin/autom4te.in, bin/autoreconf.in, bin/autoupdate.in,
9637         doc/autoconf.texi, lib/freeze.mk, lib/Autom4te/Struct.pm,
9638         lib/autoconf/autoheader.m4, lib/autoconf/c.m4,
9639         lib/autoconf/functions.m4, lib/autoconf/general.m4,
9640         lib/autoconf/lang.m4, lib/autoconf/libs.m4, lib/autoscan/identifiers,
9641         lib/autotest/general.m4, lib/m4sugar/m4sh.m4, tests/atgeneral.m4,
9642         tests/atspecific.m4, tests/semantics.at, tests/torture.at:
9643         Minor spelling and grammar fixes.
9645         * doc/autoconf.texi: Follow the outline suggested in the GNU
9646         Sample Texts sections of the Texinfo 4.2 manual.  Most
9647         importantly, this makes sure that the copyright notices appear in
9648         all output formats.  You probably need Texinfo 4.2 to generate
9649         the manual now.
9651         Fix some bugs when using "$@" when there might be zero positional
9652         arguments in cases where this matters.
9654         * bin/autoconf.as: Rewrite so that the problem does not come up.
9655         * lib/autoconf/programs.m4 (AC_CHECK_PROG): Likewise.
9656         * lib/autoconf/status.m4 (AC_OUTPUT): Likewise.
9657         * lib/autotest/general.m4 (AT_INIT): Likewise.
9659         * bin/autoheader.in: Use 'case' statement to work around problem.
9660         * bin/auto4mte.in: Likewise.
9661         * bin/autoreconf.in: Likewise.
9662         * bin/autoscan.in: Likewise.
9663         * bin/autoupdate.in: Likewise.
9664         * bin/ifnames.in: Likewise.
9666         * doc/autoconf.texi (Shell Substitutions): Document the problem.
9668         * lib/autotest/general.m4 (AT_INIT):
9669         Use Zsh alias to work around problem.
9670         * tests/atgeneral.m4 (AT_INIT): Likewise.
9672         * tests/c.at: We can't have zero arguments, so remove workaround
9673         that is not portable to Zsh.
9675 2002-04-19  Alexandre Duret-Lutz  <duret_g@epita.fr>
9677         * bin/autoupdate.in (handle_autoconf_macros): Honor AU_DEFUNs
9678         from aclocal.m4 too.
9680 2002-04-12  Akim Demaille  <akim@epita.fr>
9682         * tests/wrappl.as: New, M4sh precursor of wrappl.in.
9684 2002-04-10  Akim Demaille  <akim@epita.fr>
9686         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Install the Zsh
9687         workaround for ${1+"$@"}.
9688         * doc/autoconf.texi (Shell Substitutions): Explain it.
9689         From Oliver Kiddle and Peter Stephenson.
9691         Have M4sh perform minimal shell sanitizing.
9693         * lib/m4sugar/m4sh.at (AS_SHELL_SANITIZE): Split the `_AS_PREPARE_*'
9694         part into...
9695         (_AS_PREPARE): this new macro.
9696         (AS_PREPARE): New.
9697         (AS_INIT): Invoke AS_SHELL_SANITIZE.
9698         * tests/m4sh.at (AT_DATA_LINENO): Use _AS_PREPARE.
9700         Adjust Autoconf and Autotest.
9702         * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS): Don't invoke
9703         AS_SHELL_SANITIZE, AS_INIT did it, but invoke AS_PREPARE.
9704         * lib/autotest/general.m4 (AT_INIT): Likewise.
9705         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS):
9706         Invoke _AS_PREPARE (not AS_PREPARE) in addition to
9707         AS_SHELL_SANITIZE.
9709         Use this M4sh to generate Autoconf's shell scripts.
9711         * tests/wrapsh.as: New, precursor of wrapsh.in.
9712         * tests/Makefile.am: Include lib/freeze.mk to get the dependencies
9713         on Autotest and M4sh.
9714         ($(TESTSUITE)): Use $(autotest_m4f_dependencies).
9715         (wrapsh.in): New target.
9716         * bin/autoconf.as: New, precursor of autoconf.in.
9717         (autoconf.in): New target.
9719 2002-04-09  Alexandre Duret-Lutz  <duret_g@epita.fr>
9721         * doc/autoconf.texi (Limitations of Make): Mention the issue
9722         with indented comments in rules.
9724 2002-04-09  Andreas Schwab  <schwab@suse.de>
9726         * lib/autoconf/status.m4 (_AC_SRCPATHS): Handle empty
9727         ac_top_builddir when setting ac_abs_top_builddir.
9729 2002-04-06  Kevin Ryde  <user42@zip.com.au>
9731         * doc/autoconf.texi (Systemology): Add link to Unix V7 online docs.
9732         (Portable Shell): Cross reference to Systemology.
9734 2002-04-05  Akim Demaille  <akim@epita.fr>
9736         * bin/autoreconf.in (autoreconf): Be sure to accumulate the
9737         directories when descending in a SUBDIRS.
9738         Reported by Ezra Peisach.
9740 2002-04-04  Andreas Schwab  <schwab@suse.de>
9742         * lib/m4sugar/m4sh.m4 (_AS_PATH_WALK): Only simplify if path
9743         contains no literal separators.
9745 2002-04-03  Akim Demaille  <akim@epita.fr>
9747         * lib/autoconf/status.m4 (_AC_CONFIG_FILE, _AC_CONFIG_HEADER)
9748         (_AC_CONFIG_COMMAND, _AC_CONFIG_LINK): New.
9749         Use dnl, not the KILL diversion.
9750         Extracted from...
9751         (AC_CONFIG_FILES, AC_CONFIG_HEADERS, AC_CONFIG_COMMANDS)
9752         (AC_CONFIG_LINKS): here.
9753         Adjust.
9754         Don't use the KILL diversion, as it kills spurious output, which
9755         results in failures being hidden.
9756         Use m4_defn where appropriate.
9757         (AC_CONFIG_IF_MEMBER): Kill the real bug: a spurious parenthesis
9758         after the second argument.
9759         Use m4_defn.
9760         * lib/autom4te.in (Autoconf, Autotest, M4sh): Don't pass --warning
9761         syntax, as it is provided by M4sugar.
9762         * tests/torture.at (Multiple AC_CONFIG_FILES): New.
9764 2002-04-03  Andreas Schwab  <schwab@suse.de>
9766         * lib/m4sugar/m4sugar.m4 (m4_bmatch): Make sure m4_bregexp is not
9767         expanded if $# <= 2.
9769         * bin/autoreconf.in (autoreconf): Run automake after rerunning
9770         aclocal.
9772 2002-04-03  Akim Demaille  <akim@epita.fr>
9774         * lib/autoconf/lang.m4 (_AC_COMPILER_OBJEXT_REJECT)
9775         (_AC_COMPILER_EXEEXT_REJECT): New.
9776         Also recognize *.bb and *.bbg as compilation byproducts.
9777         (_AC_COMPILER_EXEEXT_DEFAULT, _AC_COMPILER_EXEEXT_O)
9778         (_AC_COMPILER_OBJEXT): Use them.
9779         Fixes Debian #138666.
9781 2002-04-02  Peter Eisentraut  <peter_e@gmx.net>
9783         Integrate AC_PROG_CC_STDC into AC_PROG_CC.
9785         * lib/autoconf/c.m4 (AC_PROG_CC_STDC): Rename to _AC_PROG_CC_STDC.
9786         AU_DEFUN old name.  Use _AC_COMPILE_IFELSE.
9787         (AC_PROG_CC): Call _AC_PROG_CC_STDC.
9788         (AC_C_INLINE): Do not require AC_PROG_CC_STDC.
9789         (AC_C_CONST): Same.
9790         (AC_C_INLINE): Same.
9791         (AC_C_PROTOTYPES): Same.  Require AC_PROG_CC instead.
9792         * doc/autoconf.texi, NEWS: Document.
9793         * tests/mktests.sh (au_exclude_list): Add AC_PROG_CC_STDC and
9794         AC_C_CROSS.
9796 2002-04-02  Akim Demaille  <akim@epita.fr>
9798         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Invoke
9799         _AS_MKDIR_P_PREPARE.
9801 2002-03-28  Kevin Ryde  <user42@zip.com.au>
9803         * lib/autoconf/c.m4 (AC_C_INLINE): Test with a typedef return value,
9804         to avoid versions of HP C which don't allow that.
9806 2002-03-27  Paul Eggert  <eggert@twinsun.com>
9808         * lib/m4sugar/m4sh.m4 (_AS_BASENAME_PREPARE): New macro.
9809         (AS_SHELL_SANITIZE): Invoke it.
9810         (AS_BASENAME): AS_REQUIRE it, and use $as_basename.
9812 2002-03-26  Akim Demaille  <akim@epita.fr>
9814         * doc/autoconf.texi (Portable Shell): Add pointers to FAQs.
9816 2002-03-26  Akim Demaille  <akim@epita.fr>
9818         * doc/autoconf.texi (Introduction): The GNATS base moved.
9820 2002-03-25  Paul Eggert  <eggert@twinsun.com>
9822         * tests/m4sh.at: Don't rely on "PATH=test:$PATH test-1" working
9823         as POSIX requires, as it doesn't work with Zsh.
9824         * doc/autoconf.texi (Assignments): Document the problem.
9826 2002-03-25  Alexandre Duret-Lutz  <duret_g@epita.fr>
9828         * doc/autoconf.texi (Limitations of Make): Mention more issue
9829         about VPATH, overriding of macros in sub-makes, and handling of
9830         SHELL.
9832 2002-03-21  Paul Eggert  <eggert@twinsun.com>
9834         * doc/autoconf.texi (Here-Documents): Mention Solaris 8 dtksh
9835         problem with here-document buffer boundaries.
9837         * lib/m4sugar/m4sh.m4 (_AS_LINENO_PREPARE): Unset ENV and BASH_ENV
9838         when reinvoking the shell, to work around problems with installers
9839         who put strange things like "cd" commands in their environments.
9841 2002-03-19  Akim Demaille  <akim@epita.fr>
9843         * tests/semantics.at (AC_C_BIGENDIAN): s/unknow/unknown/.
9844         From Aaron Ucko.
9846 2002-03-19  Akim Demaille  <akim@epita.fr>
9848         * bin/autoscan.in (scan_file): Specify the location in `&used'
9849         invocations.
9850         From Nicolas Joly.
9852 2002-03-19  Akim Demaille  <akim@epita.fr>
9854         * doc/autoconf.texi: Adjust @code/@command, @xref/@ref usage.
9855         From Nishio Futoshi.
9857 2002-03-19  Akim Demaille  <akim@epita.fr>
9859         * lib/m4sugar/m4sugar.m4 (m4_define_default, m4_fst, m4_map): New.
9861 2002-03-18  Paul Eggert  <eggert@twinsun.com>
9863         * doc/autoconf.texi (Programming in M4sh): Add AS_MKDIR_P.
9864         (Limitations of Usual Tools): Add mkdir section.
9866         * lib/m4sugar/m4sh.m4 (_AS_MKDIR_P_PREPARE): New macro.
9867         (AS_MKDIR_P): Require it.  Use mkdir -p if available, falling
9868         back on AS_DIRNAME to compute prefixes otherwise; this is
9869         roughly what mkinstalldirs does.  That way, we need not have
9870         our own filename disassembler.  The old disassembler did not
9871         work with Solaris 8 dtksh, which is ksh Version M-12/28/93d.
9873         * lib/autotest/general.m4 (AT_INIT, AT_CLEANUP):
9874         Create at_test_all by a series of assignments,
9875         not by a single assignment of a long string.  The latter causes ksh
9876         version 11/16/88g to silently misbehave on OpenServer 5.0.6a,
9877         presumably because of a buffer overrun.
9879 2002-03-14  Paul Eggert  <eggert@twinsun.com>
9881         * lib/autotest/general.m4 (at_times_skip):
9882         Renamed from at_times.  Now a boolean.
9883         ksh93 Version M-12/28/93d doesn't like 'x=times; $x'; it
9884         says 'times: not found'.
9886 2002-03-14  Akim Demaille  <akim@epita.fr>
9888         * bin/autoreconf.in (&study_gettextize): New.
9889         (&autoreconf): Handle newest gettextize.
9890         Rerun aclocal if needed.
9891         Suggested by Andreas Schwab.
9893 2002-03-13  Akim Demaille  <akim@epita.fr>
9895         * doc/autoconf.texi (Special Shell Variables): More about IFS.
9897 2002-03-13  Akim Demaille  <akim@epita.fr>
9899         * doc/autoconf.texi (Header Portability): New.
9900         Add information about stdint.h and inttypes.h from Paul Eggert.
9902 2002-03-13  Akim Demaille  <akim@epita.fr>
9904         * doc/autoconf.texi (Limitations of Usual Tools): Some about `cp
9905         -p'.
9906         From Bob Proulx.
9908 2002-03-12  Akim Demaille  <akim@epita.fr>
9910         * lib/m4sugar/m4sh.m4 (AS_BASENAME_EXPR): AS_REQUIRE, not
9911         m4_require.
9913 2002-03-11  Andreas Schwab  <schwab@suse.de>
9915         * configure.ac: Explicitly check for EMACS since AM_PATH_LISPDIR
9916         does not do it if --with-lispdir is given.
9918 2002-03-08  Akim Demaille  <akim@epita.fr>
9920         Version 2.53.
9922 2002-03-08  Akim Demaille  <akim@epita.fr>
9924         * doc/autoconf.texi (Subdirectories): Clarify that the
9925         subdirectory should exist.
9927 2002-03-08  Akim Demaille  <akim@epita.fr>
9929         * Makefile.am (AUTOMAKE_OPTIONS): 1.6.
9931 2002-03-08  Akim Demaille  <akim@epita.fr>
9933         * bin/autom4te.in (&handle_m4): Do not foreach with `$_' as it
9934         aliases the actual variables, and modifications of the former
9935         affect the latter.
9937 2002-03-08  Akim Demaille  <akim@epita.fr>
9939         * bin/autom4te.in (&handle_m4): Protect us from corrupted file
9940         because of C-c: have m4 output in tmp files, then mv them.
9942 2002-03-08  Akim Demaille  <akim@epita.fr>
9944         * bin/autoconf.in, bin/autoheader.in, bin/autom4te.in,
9945         * bin/autoreconf.in, bin/autoscan.in, bin/autoupdate.in,
9946         * bin/ifnames.in: Copyright update.
9948 2002-03-08  Akim Demaille  <akim@epita.fr>
9950         * doc/autoconf.texi (Invoking autom4te): New.
9952 2002-03-05  Akim Demaille  <akim@epita.fr>
9954         * doc/autoconf.texi (Specifying Names): Clarification suggested by
9955         Kevin Ryde.
9957 2002-03-05  Akim Demaille  <akim@epita.fr>
9959         Version 2.52i.
9961 2002-03-04  Akim Demaille  <akim@epita.fr>
9963         * doc/autoconf.texi (AC_LIBOBJ vs. LIBOBJS): New.
9964         * lib/autoconf/general.m4 (AC_INIT): More informative error
9965         message for LIBOBJ.
9967 2002-03-04  Akim Demaille  <akim@epita.fr>
9969         * lib/freeze.mk ($(build_libdir)/m4sugar/version.m4): New, for
9970         parallel builds.
9972 2002-03-04  Akim Demaille  <akim@epita.fr>
9974         * doc/autoconf.texi (Transforming Names): Equality between target
9975         and host is irrelevant.
9976         (Specifying Names, Canonicalizing): Remove all references to the
9977         backward compatibility hooks.  Rather, collect them all into...
9978         (Hosts and Cross-Compilation): this new section.
9979         * doc/install.texi (System Type): Ditto.
9980         * lib/autoconf/general.m4 (AC_CANONICAL_HOST): Explicitly state
9981         that `--host' implies cross-compilation.
9983 2002-03-04  Akim Demaille  <akim@epita.fr>
9985         * doc/autoconf.texi (Evaluation Macros): New.
9986         * lib/m4sugar/m4sugar.m4 (m4_lquote): Remove, it is totally
9987         useless.
9988         (_m4_foreach): Define the variant with immediate evaluation so
9989         that it contains exactly the items, not an expression which
9990         evaluation is the current item.
9991         (m4_re_string, m4_re_word): Don't over quote them.
9993 2002-03-04  Akim Demaille  <akim@epita.fr>
9995         Instead of having stacking `shift's evaluated at the end, let
9996         `foreach' loops immediately evaluate them.
9998         * lib/m4sugar/m4sugar.m4 (m4_quote, m4_dquote): Use $@ rather than
9999         $*.  This is the n-th time I change my mind, but hopefully this is
10000         the last...
10001         (m4_lquote): New.
10002         (m4_text_wrap): Use m4_foreach, which is finally correct _and_
10003         efficient.
10004         (m4_foreach_quoted, m4_car_quoted, _m4_foreach_quoted): Remove, as
10005         it was only a hack for m4_text_wrap.
10006         (m4_car2): Remove, replaced by...
10007         (m4_cdr): New.
10008         (_m4_foreach): Adjust.
10009         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Adjust, and use
10010         m4_bpatsubst for clarification.
10012 2002-03-04  Akim Demaille  <akim@epita.fr>
10014         * doc/autoconf.texi (Changequote is Evil): New.
10016 2002-03-03  Kevin Ryde  <user42@zip.com.au>
10018         * doc/autoconf.texi (Portable Shell): Mention 32-byte #! length limit
10019         on old systems like SunOS.
10021 2002-03-01  Peter Eisentraut  <peter_e@gmx.net>
10023         * lib/autoconf/c.m4, lib/autoconf/fortran.m4,
10024         lib/autoconf/functions.m4, lib/autoconf/general.m4,
10025         lib/autoconf/headers.m4, lib/autoconf/lang.m4,
10026         lib/autoconf/programs.m4, lib/autoconf/status.m4: Improve spelling
10027         of messages.
10029 2002-02-28  Akim Demaille  <akim@epita.fr>
10031         * lib/autotest/general.m4 (AT_INIT): Suggest a title to the
10032         message to be sent.
10034 2002-02-28  Kevin Ryde  <user42@zip.com.au>
10036         * doc/autoconf.texi (Function Portability): Add va_copy and va_list.
10038 2002-02-25  Akim Demaille  <akim@epita.fr>
10040         * lib/autoconf/functions.m4 (AC_FUNC_SETPGRP): Fix the test.
10041         From Akinori Musha.
10043 2002-02-13  Alexandre Duret-Lutz  <duret_g@epita.fr>
10045         * lib/Autom4te/XFile.pm (getline, getlines): New functions,
10046         translate \r\n to \n.
10048 2002-02-07  Akim Demaille  <akim@epita.fr>
10050         Version 2.52h.
10052 2002-02-07  Akim Demaille  <akim@epita.fr>
10054         Fix Autoconf PR/209.
10055         Also reported by Frank Denis.
10057         * lib/m4sugar/m4sh.m4 (_AS_PATH_WALK): Don't over quote.
10059 2002-02-07  Akim Demaille  <akim@epita.fr>
10061         Fix Autoconf PR/207:
10062         AC_PREFIX_PROGRAM fails with dashed program names
10064         * lib/autoconf/general.m4 (AC_PREFIX_PROGRAM): Just use a fresh
10065         variable when looking for the prefix program.
10066         Now it also works for shell variables.
10068 2002-02-07  Akim Demaille  <akim@epita.fr>
10070         * doc/autoconf.texi (Limitations of Builtins): More about
10071         case/esac.
10073 2002-02-06  Akim Demaille  <akim@epita.fr>
10075         * lib/autoconf/status.m4 (_AC_OUTPUT_COMMANDS): Don't output empty
10076         case/esac, some shells don't support it.
10077         Reported by Zack Weinberg.
10078         * tests/torture.at (AC_CONFIG_COMMANDS with empty commands): New.
10080 2002-02-06  Akim Demaille  <akim@epita.fr>
10082         * lib/autotest/general.m4 (AT_INIT): When handling --keywords, be
10083         sure not to introduce newlines in at_groups.
10084         * lib/autotest/Makefile.am (autotest.m4f): Typo.
10086 2002-02-06  Akim Demaille  <akim@epita.fr>
10088         * tests/torture.at (Configuring subdirectories): Skip if aclocal
10089         is not available.
10091 2002-02-05  Paul Eggert  <eggert@twinsun.com>
10093         * doc/autoconf.texi (Specific Compiler Characteristics):
10094         Describe HP-UX cc bug workaround more accurately.
10095         * lib/autoconf/types.m4 (AC_CHECK_SIZEOF): Cast to long,
10096         not unsigned long.
10097         * tests/semantics.at (AC_CHECK_SIZEOF): Check non-GCC
10098         cross-compilers, too.  This undoes some of the most recent change
10099         to this file.
10101 2002-02-05  Akim Demaille  <akim@epita.fr>
10103         * tests/Makefile.am (check_SCRIPTS): Use it, instead of WRAPPERS,
10104         to make sure they are up to date when `check' is run.
10106 2002-02-05  Akim Demaille  <akim@epita.fr>
10108         * doc/autoconf.texi (Making testsuite Scripts): Document
10109         package.m4.
10111 2002-02-05  Akim Demaille  <akim@epita.fr>
10113         * lib/freeze.mk: New.
10115 2002-02-05  Akim Demaille  <akim@epita.fr>
10117         Implement `autom4te --freeze'.
10119         * bin/autom4te.in (&freeze): New.
10120         * lib/autoconf/autoconf.m4, lib/autotest/general.m4,
10121         * lib/m4sugar/m4sh.m4: Don't include files given by autom4te.
10123 2002-02-05  Akim Demaille  <akim@epita.fr>
10125         * bin/autom4te.in (&parse_args): Implement `frozen files are
10126         optional are the sum of the previous files on the command line'.
10127         Also, pass `--reload-state=' on them, so...
10128         (handle_m4): don't.
10129         * lib/autom4te.in (Autotest, Autoconf): Rely on M4sh.
10130         (M4sh): Rely on M4sugar.
10131         (Autotest, M4sh, M4sugar): Use frozen files.
10133 2002-01-31  Akim Demaille  <akim@epita.fr>
10135         * lib/autoconf/general.m4 (_AC_INIT_PACKAGE): Accept $4.
10136         * doc/autoconf.texi (Initializing configure): Adjust.
10138 2002-01-30  Akim Demaille  <akim@epita.fr>
10140         * lib/autoconf/general.m4 (_AC_INIT_PACKAGE): Map non
10141         alphanumeric to `-' instead of `_'.
10143 2002-01-30  Akim Demaille  <akim@epita.fr>
10145         * tests/semantics.at (AC_CHECK_SIZEOF): Split into two tests: one
10146         for plain code, the other for cross-compilation code.  The latter
10147         is now run with GCC only.
10148         * doc/autoconf.texi (Compilers and Preprocessors): New.
10150 2002-01-30  Akim Demaille  <akim@epita.fr>
10152         * lib/autoconf/general.m4 (_AC_INIT_PACKAGE): Support pre-defined
10153         values.
10154         * doc/autoconf.texi (Initializing configure): Explain how to
10155         change AC_INIT default values.
10157 2002-01-29  Akim Demaille  <akim@epita.fr>
10159         * tests/torture.at (Configuring subdirectories): Use configure.in,
10160         so that aclocal 1.4 works.
10161         Reported by Alexandre Duret-Lutz and Larry Schmitt.
10163 2002-01-28  Akim Demaille  <akim@epita.fr>
10165         * doc/autoconf.texi (Writing testsuite.at): AT_CLEANUP no longer
10166         needs an argument.
10168 2002-01-28  Akim Demaille  <akim@epita.fr>
10170         * lib/autotest/general.m4 (AT_INIT): Don't be ridiculous: adjust
10171         AUTOTEST_PATH *after* it was set.
10172         Don't put `.' in the PATH: the user should be precise and `./' if
10173         needed.  In addition, given that the test suite does some `cd', if
10174         `.' is in the path, the `tested programs' sections will report
10175         programs found in the test suite's directory, while during the
10176         tests (performed in their own directory), these programs are no
10177         longer visible.  In other words, the results is confusing and
10178         useless.
10179         * tests/m4sh.at: Adjust: don't rely on `.' being in the PATH.
10181 2002-01-24  Akim Demaille  <akim@epita.fr>
10183         Version 2.52g.
10185 2002-01-24  Akim Demaille  <akim@epita.fr>
10187         * bin/autoheader.in, bin/autoconf.in, bin/autoscan.in,
10188         * doc/autoconf.texi: Finally add Akim as an author.
10190 2002-01-24  Akim Demaille  <akim@epita.fr>
10192         * lib/m4sugar/m4sh.m4 (_AS_LINENO_PREPARE): Use PATH_SEPARATOR.
10193         (_AS_PATH_SEPARATOR_PREPARE): Don't expect $SHELL to be
10194         Bourne. Use /bin/sh.
10195         From Andreas Buening.
10197 2002-01-24  Akim Demaille  <akim@epita.fr>
10199         * config/config.guess, config/config.sub, config/texinfo.tex:
10200         Update from masters.
10202 2002-01-24  Akim Demaille  <akim@epita.fr>
10204         * Makefile.am (AUTOMAKE_OPTIONS): 1.5b.
10205         * config/auxdir.m4, config/cond.m4, config/depend.m4,
10206         * config/init.m4, config/install-sh.m4, config/lispdir.m4,
10207         * config/missing.m4, config/sanity.m4, config/select.m4,
10208         * config/strip.m4: Remove, to ease sync'ing with any version of
10209         Automake.
10211 2002-01-24  Akim Demaille  <akim@epita.fr>
10213         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ARGS)
10214         (_AC_INIT_PREPARE): Support -n as --no-create, as documented.
10215         Reported by Geir Ove Myhr.
10217 2002-01-21  Akim Demaille  <akim@epita.fr>
10219         * lib/autoconf/functions.m4 (AC_FUNC_MMAP): #Undef malloc.
10221 2002-01-21  Akim Demaille  <akim@epita.fr>
10223         * lib/Autom4te/General.pm (getopt): Use a more GNUish error
10224         message on invalid options.
10225         * bin/autom4te.in (parse_args): Don't use
10226         Autoconf::General::getopt with non valid options.
10228 2002-01-17  Jim Meyering  <meyering@lucent.com>
10230         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Initialize
10231         $ac_cv_exeext so we don't use an old, invalid, cached value.
10233 2002-01-11  Akim Demaille  <akim@epita.fr>
10235         * lib/autoconf/functions.m4 (AC_FUNC_STRNLEN): New, from Jim
10236         Meyering.
10237         * doc/autoconf.texi (Function Portability): Document the strnlen
10238         limitation.
10239         (Particular Functions): Document AC_FUNC_STRNLEN.
10240         * lib/autoscan/functions: Adjust.
10242 2002-01-06  Akim Demaille  <akim@epita.fr>
10244         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): Don't create
10245         package.m4, since is really depends upon configure.ac, not
10246         configure.
10247         * doc/autoconf.texi (testsuite Scripts): Adjust.
10248         * tests/Makefile.am (package.m4): New.
10249         EXTRA_DIST it since its a source.
10251 2002-01-06  Akim Demaille  <akim@epita.fr>
10253         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ARGS): Move the AC_SUBST
10254         of PACKAGE_NAME, PACKAGE_TARNAME, PACKAGE_VERSION, PACKAGE_STRING,
10255         and PACKAGE_BUGREPORT from here...
10256         (_AC_INIT_DEFAULTS): to here, since it is unrelated to the
10257         arguments.
10258         (_AC_INIT_PREPARE): AC_DEFINE these symbols.
10259         * lib/autotest/general.m4: Use AT_PACKAGE_*, not PACKAGE_*.
10260         (AT_INIT): No longer catch `^PACKAGE_(BUGREPORT|STRING)$'.
10261         * tests/tools.at (autoheader): Adjust.
10262         * tests/atspecific.m4 (AT_CHECK_DEFINES): Adjust.
10264 2002-01-06  Akim Demaille  <akim@epita.fr>
10266         * bin/autoscan.in (scan_file): Use `&used'.
10268 2002-01-03  Akim Demaille  <akim@epita.fr>
10270         * doc/autoconf.texi (Output): Improved wording regarding use of
10271         AC_OUTPUT.
10272         From Olly Betts.
10274 2001-12-18  Kevin Ryde  <user42@zip.com.au>
10276         * doc/autoconf.texi (Function Portability): Add notes on sscanf
10277         sometimes needing writable input.
10279 2001-12-17  Jim Meyering  <meyering@lucent.com>
10281         * doc/autoconf.texi (New Macros): Tweak wording.
10283 2001-12-14  Akim Demaille  <akim@epita.fr>
10285         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): We cleaning up the
10286         trailing files, don't apply `-rf' to files which might not be
10287         created by configure (core, core.*, and *.core), but just `rm -f'.
10288         Suggested by Jonathan Kamens.
10290 2001-12-14  Aaron M. Ucko  <amu@alum.mit.edu>
10292         * lib/autoconf/general.m4: Avoid duplicates in `$ac_configure_args'.
10294 2001-12-14  Akim Demaille  <akim@epita.fr>
10296         * Makefile.am (MAINTAINERCLEANFILES): Remove configure.
10298 2001-12-13  Peter Eisentraut  <peter_e@gmx.net>
10300         * lib/autoconf/status.m4 (_AC_SRCPATHS): Rename buildpath to
10301         abs_builddir, top_buildpath to abs_top_builddir, srcpath to
10302         abs_srcdir, top_srcpath to abs_top_srcdir.
10303         (_AC_OUTPUT_FILES): Adjust.
10304         * NEWS, doc/autoconf.texi, lib/autoconf/autotest.m4,
10305         * tests/atspecific.m4, tests/autoreconf.in, tests/tools.at,
10306         * tests/wrappl.in, tests/wrapsh.in: Adjust.
10308 2001-12-12  Steven G. Johnson  <stevenj@alum.mit.edu>
10310         * lib/autoconf/fortran.m4 (_AC_PROG_F77_V_OUTPUT): Fix failed
10311         C/Fortran linking on HP/UX, by extracting the Fortran library
10312         search path from the LPATH line in the $F77 -v output.
10314 2001-12-12  Kevin Ryde  <user42@zip.com.au>
10316         * doc/autoconf.texi (File Descriptors): Use a clearer layout for the
10317         forbidden file descriptors table.
10319 2001-11-26  Akim Demaille  <akim@epita.fr>
10321         * bin/autoscan.in (%c_keywords): Build it at top level.
10322         Map to 1 in order to simplify its uses.
10324 2001-11-26  Akim Demaille  <akim@epita.fr>
10326         * bin/autoscan.in (&scan_c_file, &scan_sh_file, &scan_makefile):
10327         Remove $filepath, useless.
10328         (&scan_makefile): Don't remove the $(FOO), ${FOO} and @FOO@
10329         variables, they are really part of the tokens.
10330         Split the input line on spaces and then look for tokens.
10331         Now autoscan ceases to ask for AC_PROG_LEX for the package Bison
10332         because of `lex$U.$(OBJEXT)'.
10333         (&scan_files): Use "@list" instead of join.
10334         * doc/Makefile.am (CLEANFILES): Add *.fns.
10336 2001-11-26  Akim Demaille  <akim@epita.fr>
10338         * tests/autoreconf.in, tests/autom4te.in, tests/autoupdate.in:
10339         Remove, replaced by...
10340         * tests/wrappl.in: Be common for all the Perl executables.
10341         In particular autoscan and autoheader want -I.
10342         * configure.ac: Adjust.
10343         * lib/autoscan/headers: errno.h is portable.
10345 2001-11-26  Akim Demaille  <akim@epita.fr>
10347         * bin/autoscan.in (used): New.
10348         Use it.
10350 2001-11-26  Akim Demaille  <akim@epita.fr>
10352         * bin/autoscan.in (&scan_c_file): Better parsing of CPP
10353         directives.
10354         (&scan_sh_file): Remove a duplicate pattern.
10355         (&check_configure_ac): Use long options.
10356         * lib/autoscan/headers (alloca.h): Check with AC_FUNC_ALLOCA.
10358 2001-11-26  Akim Demaille  <akim@epita.fr>
10360         * bin/autoscan.in (scan_c_file): Fix the handling of C comments.
10361         Before, having a line containing the opening of a multi line
10362         comment made the whole line be ignored.
10364 2001-11-26  Akim Demaille  <akim@epita.fr>
10366         * doc/autoconf.texi (Using an Autotest Test Suite): New.
10367         (testsuite Scripts): Be one of its subsection.
10368         (Autotest Logs): New.
10370 2001-11-26  Akim Demaille  <akim@epita.fr>
10372         Test groups are now run two directories deeper.
10374         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): Replace srcdir,
10375         top_srcdir and top_builddir with at_srcdir, at_top_srcdir and
10376         at_top_builddir.
10377         * lib/autotest/general.m4 (AT_INIT): Compute srcdir,
10378         top_srcdir, builddir and top_builddir.
10379         Use `at_*dir' relatively to the directory containing the
10380         suite, use `*dir' when relatively to the current group dir.
10382 2001-11-25  Joseph S. Myers  <jsm28@cam.ac.uk>
10384         * doc/autoconf.texi, TODO, lib/autoconf/fortran.m4,
10385         lib/autoconf/functions.m4, lib/autoconf/headers.m4,
10386         tests/atgeneral.m4, tests/tools.at, tests/atspecific.m4: Fix
10387         spelling errors.
10389 2001-11-22  Alexandre Duret-Lutz  <duret_g@epita.fr>
10391         * doc/autoconf.texi (Using System Type): Add an example of `case
10392         $host' usage so people quit using `case $target' everywhere.
10394 2001-11-22  Akim Demaille  <akim@epita.fr>
10396         * doc/autoconf.texi (Installation Directory Variables): Englishoes
10397         spotted by Jim Meyering.
10399 2001-11-16  Paul Eggert  <eggert@twinsun.com>
10401         This patch implements a `long double' suggestion by Oliver Kiddle.
10403         * lib/autoconf/c.m4 (AC_LANG_BOOL_COMPILE_TRY(C)): Make the array
10404         static, to catch errors if the value isn't known at compile-time
10405         and the compiler supports dynamic arrays.  Change its name from
10406         `_array_' to `test_array' to avoid potential name clashes.
10407         (AC_C_LONG_DOUBLE): Make it a compile-time test, not a run-time
10408         test.  Do not define HAVE_LONG_DOUBLE if `long double' is no
10409         better than double.  Catch a bug in GCC 2.95.2 x86.
10410         * doc/autoconf.texi (C Compiler): Document the above.
10411         * NEWS: Likewise.
10413 2001-11-13  Akim Demaille  <akim@epita.fr>
10415         * tests/m4sh.at (LINENO): Protect from autom4te's substitution by
10416         hand.
10417         * tests/tools.at: Don't protect dnl, AT_DATA_M4SH does.
10419 2001-11-13  Akim Demaille  <akim@epita.fr>
10421         * lib/autotest/general.m4 (AT_INIT): After having run the test
10422         group, go back to the initial directory, not to at_suite_dir.
10424 2001-11-13  Akim Demaille  <akim@epita.fr>
10426         * tests/atspecific.m4 (AT_DATA_M4SUGAR, AT_DATA_M4SH)
10427         (AT_DATA_AUTOCONF):  Also protect @&t@ from autom4te.
10428         (AT_CHECK_AUTOCONF, AT_CHECK_AUTOHEADER): Pass no --include
10429         option.
10430         (AT_CHECK_CONFIGURE): Use absolute paths.
10431         (_AT_CHECK_AC_MACRO): Create aclocal.m4 with AC_STATE_SAVE in it.
10432         The problem is still the old one: there is no means in M4 (that I
10433         know about) to create a defining macro, because there is no means
10434         to create `$1' etc., therefore, the defining macro ``swallows''
10435         all the arguments meant to the defined macro.
10437 2001-11-13  Akim Demaille  <akim@epita.fr>
10439         * tests/atspecific.m4 (AT_DATA_AUTOCONF): New.
10440         (AT_CONFIGURE_AC): Output the definition of AC_STATE_SAVE in
10441         configure.ac.
10442         * tests/aclocal.m4: Remove, as it is no longer used.
10444 2001-11-13  Akim Demaille  <akim@epita.fr>
10446         * lib/autotest/general.m4: Change `tests?' into `groups?' in
10447         variable names when referring to a single test group, or to
10448         `suite' when referring to the whole test suite.
10449         `at_last_test' is removed: m4 compute at_format itself.
10450         (at_stdout, at_stder1, at_stderr): New variables.
10451         (AT_CHECK): Use them.
10453 2001-11-13  Akim Demaille  <akim@epita.fr>
10455         * lib/autotest/general.m4 (AT_INIT): Be sure to put `.', relative,
10456         in PATH.
10457         Create `testsuite.dir/003/run' instead of `testsuite.003'.
10458         Do it as soon as a test fails, don't wait till the end of the test
10459         suite.
10460         Don't remove $as_me.[0-9]*, since these files no longer exist.
10462 2001-11-13  Akim Demaille  <akim@epita.fr>
10464         * tests/tools.at: Use absolute paths, since we are no longer run
10465         in place.
10467 2001-11-13  Akim Demaille  <akim@epita.fr>
10469         Now that tests are running in their own private dir, there is no
10470         need to list the files to remove at the end of tests groups.
10472         * lib/autotest/general.m4 (_AT_CLEANUP_FILE, AT_CLEANUP_FILES):
10473         (AT_data_files, at_data_files): Remove.
10474         (AT_CLEANUP, AT_DATA): Simplify.
10475         (AT_INIT): Adjust.
10476         Remove the group dir if !debug && !failed.
10477         * tests/atspecific.m4: Adjust.
10479 2001-11-13  Akim Demaille  <akim@epita.fr>
10481         Start a new layout for Autotest: `testsuite' creates
10482         `testsuite.dir' in which the at-check-line etc. files are to be
10483         found, and `testsuite.dir/003' where the test group 3 is run.
10485         * lib/autotest/general.m4 (AT_INIT): at_tests_dir,
10486         at_check_line_file, at_format, at_test_normalized, at_group_dir
10487         are new variables.
10488         Create the directories.
10489         Use absolute paths for at- files.
10490         (AT_CHECK): Adjust.
10492 2001-11-11  Michael Matz  <matz@kde.org>
10494         * m4sugar.m4 (_m4_foreach): Make it linear instead quadratic.
10495         (m4_car2): New.
10496         (m4_car): Properly quote arguments.
10498 2001-11-13  Akim Demaille  <akim@epita.fr>
10500         * tests/aclocal.m4 (AC_STATE_SAVE): s/LIBOBJS/LIB@&t@OBJS/ to cope
10501         with stricter rules on LIBOBJS.
10503 2001-11-12  Paul Eggert  <eggert@twinsun.com>
10505         * lib/autoconf/c.m4 (AC_C_PROTOTYPES): Define __PROTOTYPES too.
10506         * doc/autoconf.texi (C Compiler): AC_C_PROTOTYPES now defines
10507         __PROTOTYPES too.
10509 2001-11-12  Akim Demaille  <akim@epita.fr>
10511         * lib/autoconf/functions.m4 (AC_FUNC_GETMNTENT): Use AC_CHECK_FUNCS.
10513 2001-11-12  Akim Demaille  <akim@epita.fr>
10515         * lib/autoconf/c.m4, lib/autoconf/fortran.m4,
10516         * lib/autoconf/functions.m4, lib/autoconf/general.m4,
10517         * lib/autoconf/headers.m4, lib/autoconf/libs.m4,
10518         * lib/autoconf/programs.m4, lib/autoconf/specific.m4,
10519         * lib/autoconf/types.m4: When invoking AC_DEFINE and friends,
10520         specify to what the macro should be defined (typically to 1).
10522 2001-11-12  Akim Demaille  <akim@epita.fr>
10524         * lib/autoconf/functions.m4 (AC_FUNC_STRTOD): AC_SUBST POW_LIB.
10525         From Jim Meyering.
10527 2001-11-12  Akim Demaille  <akim@epita.fr>
10529         * lib/autoconf/programs.m4 (_AC_PROG_LEX_YYTEXT_DECL): Use
10530         AC_TRY_EVAL to run $LEX, not AC_TRY_COMMAND.  This validates the
10531         definition used by Automake where LEX is +/- "${missing} lex" and
10532         `missing' itself contains variables.
10534 2001-11-12  Akim Demaille  <akim@epita.fr>
10536         * lib/autotest/general.m4 (AT_INIT): Push KILL at the end.
10537         Now that M4sh pushes BODY, the comments were output at the end of
10538         the test suites.
10540 2001-11-08  Akim Demaille  <akim@epita.fr>
10542         * bin/autoreconf.in (&autoreconf): Run aclocal before tracing, so
10543         that we can trace macros from aclocal.m4.
10544         Trace AC_PROG_LIBTOOL, not AM_PROG_LIBTOOL, since the latter is
10545         obsoleted, and redirect to the former anyway.
10546         Reported by Ralf Corsepius.
10548 2001-11-08  Akim Demaille  <akim@epita.fr>
10550         * bin/autoreconf.in (&autoreconf): AC_CONFIG_SUBIDRS are to be
10551         processed only if present.
10552         * tests/torture.at (Configuring subdirectories): Use autoreconf
10553         instead of successive calls to autoconf.
10554         Add a nonexistent subdirectory to exercise the patch above.
10555         Reported by Ralf Corsepius.
10557 2001-11-08  Kevin Ryde  <user42@zip.com.au>
10559         * doc/autoconf.texi (Limitations of Usual Tools): Note HP-UX cc
10560         doesn't accept .S files.
10562 2001-11-07  Akim Demaille  <akim@epita.fr>
10564         * lib/m4sugar/m4sugar.m4 (m4_pattern_forbid): Accepts $2.
10565         * lib/autoconf/general.m4 (AC_INTI): Forbid LIBOBJS.
10566         (_AC_LIBOBJ): s/LIBOBJS/LIB@&t@OBJS/.
10567         * bin/autom4te.in (warn_forbidden): New.
10568         (handle_output): Use it.
10569         Read m4_pattern_forbid with messages.
10571 2001-11-05  Akim Demaille  <akim@epita.fr>
10573         * bin/autom4te.in (--normalize): Remove.
10574         * lib/autom4te.in: Adjust.
10576 2001-11-05  Akim Demaille  <akim@epita.fr>
10578         * tests/Makefile.am (testsuite): Rename this target as...
10579         ($(TESTSUITE)): this.
10580         From Nicolas Joly.
10582 2001-11-05  Alexandre Duret-Lutz  <duret_g@epita.fr>
10584         * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): When removing
10585         the --prefix option, also remove it's argument.
10587 2001-11-05  Akim Demaille  <akim@epita.fr>
10589         * doc/autoconf.texi (testsuite Invocation): Update.
10590         (Writing testsuite.at): Update.
10592 2001-11-03  Akim Demaille  <akim@epita.fr>
10594         * doc/autoconf.texi: s/@code/@command/ where appropriate.
10596 2001-11-03  Akim Demaille  <akim@epita.fr>
10598         * lib/Autom4te/General.pm: (&catfile, &canonfile)
10599         (&file_name_is_absolute): New, wrappers around routines from
10600         File::Spec.
10601         Use and export them.
10602         (&find_configure_ac): Optionally take a directory where to look at.
10603         * bin/autoreconf.in (&parse_args): Trim the configure.ac part of
10604         the arguments.
10605         Default @ARGV to `.', not find_configure_ac.
10606         (&autoreconf): Argument is a directory.
10607         Trace AC_CONFIG_SUBDIRS and schedule the subdirs for autoreconf'ing.
10608         * doc/autoconf.texi (autoreconf Invocation): Update.
10610 2001-11-03  Akim Demaille  <akim@epita.fr>
10612         * lib/Autom4te/General.pm (@export_vars, @export_subs)
10613         (@export_forward_subs): New.
10614         Add basename, dirname, and fileparse.
10615         (@EXPORT): Adjust.
10616         * bin/autoreconf.in (&autoreconf): Fix call to fileparse.
10617         Don't look for aclocal flags if we already know aclocal is not
10618         used.
10619         Move aclocal.m4t only if it exists.
10620         Reported by Ezra Peisach.
10622 2001-11-03  Akim Demaille  <akim@epita.fr>
10624         * bin/autoreconf.in (&parse_args): Work only on the configure.ac
10625         passed on command line, defaulting to ./configure.ac if present.
10626         (&maybe_autoreconf, File::Find): Remove, unused.
10627         (&autoreconf): If autoconf is not used, don't try to trace.
10629 2001-11-02  Akim Demaille  <akim@epita.fr>
10631         * configure.ac: Bump to 2.52g.
10633 2001-11-02  Akim Demaille  <akim@epita.fr>
10635         Version 2.52f.
10637 2001-11-02  Akim Demaille  <akim@epita.fr>
10639         * config/config.guess, config/config.sub, doc/standards.texi:
10640         * config/lispdir.m4: Update from masters.
10641         * configure.ac: Bump to 2.52f.
10643 2001-11-02  Akim Demaille  <akim@epita.fr>
10645         * bin/autoreconf.in (&autoreconf): Set `$aclocal_flags' to ''.
10646         Don't run aclocal when aclocal.m4 is not from aclocal.
10647         From Ezra Peisach.
10648         Don't run libtoolize and gettextize if --install is not given.
10650 2001-11-01  Paul Eggert  <eggert@twinsun.com>
10652         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): _AS_CR_PREPARE needs to
10653         be invoked before _AS_LINENO_PREPARE.
10654         (_AS_LINENO_PREPARE): Use as_cr_digits and as_cr_alnum rather
10655         than character ranges.
10657         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Fix NLS before
10658         invoking AS_BASENAME.  Set the locale variables to 'C' if
10659         possible, as POSIX requires this to get the traditional
10660         behavior.
10661         * doc/autoconf.texi (Special Shell Variables): Describe the above.
10663 2001-10-31  Paul Eggert  <eggert@twinsun.com>
10665         * lib/m4sugar/m4sh.m4 (_AS_LINENO_WORKS): Do not surround body
10666         with {}, as that triggers a bug in Bash 2.05.
10668         (_AS_LINENO_PREPARE): Use Sed rather than
10669         Awk.  Fix the sed prepass to work even if there are multiple
10670         instances of $LINENO on the same line.  Do not substitute for
10671         other variables like $LINENOT.  Do not check file dates; such a
10672         check is unreliable on sufficiently fast machines, and removing
10673         the check makes the code simpler and more reliable.  Check for
10674         output and chmod failures.
10676         * doc/autoconf.texi (Special Shell Variables): Document
10677         the above.
10679 2001-10-31  Akim Demaille  <akim@epita.fr>
10681         * tests/Makefile.am (atconfig): Remove this target, Automake
10682         handles it now.
10684 2001-10-31  Akim Demaille  <akim@epita.fr>
10686         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): Do not
10687         AC_CONFIG_FILES(atlocal) as it means a file atlocal.in *must* be
10688         provided, while it is optional.
10689         * configure.ac: Adjust.
10691 2001-10-26  Paul Eggert  <eggert@twinsun.com>
10693         * NEWS, README, configure.ac, lib/Autom4te/General.pm,
10694           lib/Autom4te/Struct.pm:
10695         Require Perl 5.005_03 instead of just 5.005, as some tests fail
10696         with 5.005_02.
10698         * doc/autoconf.texi (Special Shell Variables): Document some
10699         more LINENO gotchas, particularly with respect to the Awk+Sed hack.
10701         * lib/m4sugar/m4sh.m4 (_AS_LINENO_WORKS): New macro.
10702         (_AS_LINENO_PREPARE): Use it instead of shell eval, since
10703         eval $LINENO is not portable in practice.
10705 2001-10-24  Akim Demaille  <akim@epita.fr>
10707         * lib/Autom4te/General.pm (backname): New.
10709 2001-10-24  Akim Demaille  <akim@epita.fr>
10711         * m4/: Remove, merged into...
10712         * config/: here.
10714 2001-10-23  Tim Van Holder  <tim.van.holder@pandora.be>
10716         * doc/autoconf.texi (Shellology): Mention the problems with bash
10717         2.05's use of ANSI quoting in its `set' builtin.
10719 2001-10-22  Paul Eggert  <eggert@twinsun.com>
10721         * lib/autoconf/functions.m4 (AC_FUNC_STRERROR_R):
10722         Rename ac_cv_func_strerror_r_works to ac_cv_func_strerror_r_char_p,
10723         and rename HAVE_WORKING_STRERROR_R to STRERROR_R_CHAR_P, since
10724         POSIX decided to standardize on the int flavor of strerror_r.
10725         Always do char* test, as there's no reason not to.
10726         Assign to a char* var, to catch strerror_r that returns int*.
10728         * doc/autoconf.texi (Particular Functions):
10729         Document the above changes.  Also, document the fact that
10730         AC_FUNC_STRERROR_R defines HAVE_DECL_STRERROR_R.
10732         * NEWS: Mention HAVE_WORKING_STRERROR_R -> STRERROR_R_CHAR_P.
10734 2001-10-20  Akim Demaille  <akim@epita.fr>
10736         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): The name of
10737         the executable was missing from the log.
10739 2001-10-20  Akim Demaille  <akim@epita.fr>
10741         * lib/Autom4te/General.pm (&update_file): If destination is
10742         unchanged, remove the source.
10743         (&up_to_date_p): Don't be verbose, be debug.
10744         * bin/autoreconf.in: No longer support --m4dir.
10745         (&autoreconf): Display the full path of the configure.ac we are
10746         studying.
10747         Trace it only once.
10748         Be sure to honor --force with gettextize.
10749         Always run aclocal.
10750         * doc/autoconf.texi: Adjust.
10752 2001-10-20  Akim Demaille  <akim@epita.fr>
10754         * bin/autoheader.in ($localdir, $m4, $SIMPLE_BACKUP_SUFFIX):
10755         Remove, dead.
10756         * bin/autoreconf.in (&autoreconf): Do not run gettextize when
10757         `intl' is already present, as it refuses unless --force.
10758         (&parse_args): Use -I, --include instead of the old Autoconf
10759         options.
10760         ($localdir, $autoconf_dir): Remove.
10761         (@include): New.
10762         (&maybe_autoreconf): New, to preserve $_ for File::Find.
10764 2001-10-19  Jens Petersen  <petersen@redhat.com>
10766         * lib/autoconf/programs.m4 (AC_PROG_AWK): Prefer gawk to mawk.
10767         * doc/autoconf.texi (Particular Programs): Likewise.
10769 2001-10-19  Akim Demaille  <akim@epita.fr>
10771         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES): Name the generated
10772         file in @configure_input@.
10773         Don't mention `automatically' in addition to `generated'.
10774         * tests/torture.at (#define header templates): Adjust.
10776 2001-10-19  Akim Demaille  <akim@epita.fr>
10778         * lib/emacs/autoconf-mode.el, lib/emacs/autotest-mode.el: In a
10779         comment, explain how to install automatic mode selection.
10780         From Russ Allbery.
10782 2001-10-19  Ezra Peisach  <epeisach@zif.mit.edu>
10784         * bin/autoreconf.in (autoreconf): Display the path to the
10785         configure.ac being studied.
10787 2001-10-18  Paul Eggert  <eggert@twinsun.com>
10789         * lib/autoconf/types.m4 (AC_CHECK_SIZEOF): Cast sizeof to unsigned
10790         long, to work around a bug in the HP C compiler version HP92453-01
10791         B.11.11.23709.GP.
10793         * lib/m4sugar/m4sh.m4 (AS_DIRNAME): Use 'dirname' if that works.
10794         (AS_BASENAME_EXPR): New macro.
10795         (AS_BASENAME_SED): Do not assume GNU sed semantics.
10796         (AS_BASENAME): Use 'basename' if that works; then try 'expr';
10797         and fall back on 'sed' only if the other two fail.  This makes
10798         AS_BASENAME act more like AS_DIRNAME.
10799         (as_me): Shell-quote the argument of AS_BASENAME, in case $0
10800         contains white space.
10801         * lib/autoconf/general.m4 (_AC_INIT_SRCDIR):
10802         Use AS_DIRNAME, since I think it's now DOS-friendly.
10803         * tests/m4sh.at (DIRNAME_TEST): New arg $3.
10804         Allow "dirname //FOO" to return either / or //, as POSIX allows
10805         either behavior.
10807 2001-10-10  Akim Demaille  <akim@epita.fr>
10809         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Recognize
10810         `a_out.exe' for OpenVMS 7.1, DEC C 5.5 compiler, via GNV.
10811         From Eric Sharkey.
10813 2001-10-10  Akim Demaille  <akim@epita.fr>
10815         * lib/m4sugar/m4sh.m4 (_AS_ECHO_N_PREPARE): m4_defun, not
10816         m4_define, since...
10817         (_AS_ECHO_N): AS_REQUIREs it.
10819 2001-10-10  Akim Demaille  <akim@epita.fr>
10821         * lib/autoconf/general.m4 (_AC_INCLUDES_DEFAULT_REQUIREMENTS)
10822         (AC_INCLUDES_DEFAULT): Move to...
10823         * lib/autoconf/headers.m4: here.
10824         * lib/autoconf/types.m4: Comment changes.
10825         * doc/autoconf.texi: Specify where the default includes are used
10826         in the macro prototypes.
10828 2001-10-09  Akim Demaille  <akim@epita.fr>
10830         * lib/autoconf/autoconf.m4 (m4_patsubst, m4_regexp): New
10831         transition code.
10833 2001-10-08  Akim Demaille  <akim@epita.fr>
10835         * bin/autoreconf.in (&autoreconf): Remove debugging code.
10836         (&parse_args): Pass verbosity/debugging options to subtools when
10837         --debug, not when --verbose.
10838         * lib/autom4te.in (Autoreconf-preselections): New.
10839         (Autoconf): Use it.
10841 2001-10-08  Akim Demaille  <akim@epita.fr>
10843         * bin/autoreconf.in (autoreconf): Run libtoolize when appropriate.
10845 2001-10-08  Akim Demaille  <akim@epita.fr>
10847         * doc/autoconf.texi (autoreconf Invocation): Adjust.
10848         * bin/autoreconf.in (autoreconf): Run gettextize when appropriate.
10850 2001-10-08  Akim Demaille  <akim@epita.fr>
10852         * tests/tools.at (AT_CHECK_PERL_SYNTAX): Check autoreconf.
10853         (Syntax of the shell scripts): Don't.
10854         * bin/autoheader.in, bin/autom4te.in, bin/autoreconf.in: Don't
10855         bother with $force since...
10856         * lib/Autom4te/General.pm: does.
10858 2001-10-08  Akim Demaille  <akim@epita.fr>
10860         * bin/autoreconf.in: Rewrite in Perl.
10861         * configure.ac: Adjust.
10862         * lib/Autom4te/General.pm (&up_to_date_p): New.
10863         * bin/autom4te.in (&up_to_date_p): Use it.
10864         Rename as...
10865         (&up_to_date): this.
10867 2001-10-08  Akim Demaille  <akim@epita.fr>
10869         * lib/m4sugar/m4sugar.m4 (m4_case, m4_bmatch, m4_normalize)
10870         (m4_list_cmp): Use $0 to reinvoke yourself.
10871         (m4_patsubsts): New.
10872         (m4_strip, m4_version_unletter): Use it.
10873         * tests/atspecific.m4 (AT_DATA_M4SUGAR, AT_DATA_M4SH): Likewise.
10875 2001-10-08  Akim Demaille  <akim@epita.fr>
10877         * lib/autoconf/autoconf.m4, lib/autoconf/general.m4,
10878         * lib/autoconf/libs.m4, lib/autoconf/status.m4,
10879         * lib/autoconf/types.m4, lib/autotest/general.m4,
10880         * lib/m4sugar/m4sh.m4, lib/m4sugar/m4sugar.m4, tests/atspecific.m4,
10881         * tests/torture.at: Rename m4_regexp, m4_patsubst, and m4_match to
10882         m4_bregexp, m4_bpatsubst, and m4_bmatch.
10883         * doc/autoconf.texi (Redefined M4 Macros): Adjust.
10885 2001-10-08  Akim Demaille  <akim@epita.fr>
10887         * lib/m4sugar/m4sh.m4: Use AS_REQUIRE.
10889 2001-10-08  Akim Demaille  <akim@epita.fr>
10891         * lib/m4sugar/m4sh.m4 (AS_DIRNAME_EXPR): Use AS_REQUIRE.
10892         * tests/tools.at (AT_DATA_FORBIDDEN): Rename/move/duplicate to...
10893         * tests/atspecific.m4 (AT_DATA_M4SUGAR, AT_DATA_M4SH): here.
10894         * tests/tools.at, tests/m4sh.at: Use it.
10895         * tests/m4sh.at: Don't rely on Autoconf macros.
10896         (DIRNAME_TEST): Also exercise the expr variant.
10897         * tests/m4sugar.at, tests/atspecific.m4 (AT_CHECK_M4SUGAR): The
10898         preferred M4sugar extension is now `.4s'.
10899         * tests/README: Remove.
10901 2001-10-08  Akim Demaille  <akim@epita.fr>
10903         * lib/m4sugar/m4sugar.m4 (m4_provide_ifelse): Rename as...
10904         (m4_provide_if): this.
10905         * lib/m4sugar/m4sh.m4 (AS_REQUIRE): New.
10906         * lib/autoconf/general.m4 (AS_DEFUN, AC_DEFUN_ONCE, AC_BEFORE)
10907         (AC_REQUIRE, AC_PROVIDE, AC_PROVIDE_IFELSE): Be exact copy of the
10908         M4sugar peer, i.e., drop the `AC_PROVIDE_$1' broken marker.
10910 2001-10-08  Akim Demaille  <akim@epita.fr>
10912         Use `add-log-current-defun-function' for ChangeLog creation.
10913         Suggested by Tom Tromey.
10915         * lib/emacs/autotest-mode.el (autotest-mode-map): New.
10916         (autotest-mode): Adjust.
10917         * lib/emacs/autoconf-mode.el (autoconf-mode-map): Modernize, map
10918         'comment-region onto `C-c ;'.
10919         Comments are `#', not `dnl'.
10920         (autoconf-current-defun): New.
10921         (autoconf-font-lock-keywords): Recognize `m4_defun'.
10923 2001-10-08  Akim Demaille  <akim@epita.fr>
10925         * lib/autoconf/general.m4 (_m4_divert(BODY)): Move to...
10926         * lib/m4sugar/m4sh.m4: here.
10927         (AS_INIT): Push the BODY diversion, set the #! /bin/sh line.
10928         * lib/autoconf/general.m4 (AC_PLAIN_SCRIPT) : Remove.
10929         (AT_INIT): Replace AC_PLAIN_SCRIPT with AS_INIT invocation,
10930         include handle the m4_pattern_*, no longer push the
10931         BODY diversion nor set the /bin/sh line, AS_INIT does it.
10932         * lib/autotest/general.m4 (AT_INIT): Likewise.
10933         * tests/base.at: Adjust the tests to use AS_INIT.
10934         * tests/tools.at (AT_DATA_FORBIDDEN): New.
10935         (autoconf: forbidden tokens): Adjust to work on M4sh instead of
10936         Autoconf.
10938 2001-10-07  Paul Eggert  <eggert@twinsun.com>
10940         * doc/autoconf.texi (config.status Invocation):
10941         CONFIG_SHELL defaults to a shell that supports LINENO if available.
10943         * lib/m4sugar/m4sh.m4 (_AS_LINENO_PREPARE): If the current
10944         shell does not support LINENO, and if CONFIG_SHELL is unset or
10945         empty, and if we can find a shell that does support LINENO,
10946         then set CONFIG_SHELL to that shell and then re-execute
10947         ourselves with CONFIG_SHELL.
10949 2001-10-05  Paul Eggert  <eggert@twinsun.com>
10951         * tests/Makefile.am (clean-local): Don't invoke $(TESTSUITE) if it
10952         doesn't exist.  Remove *.tmp, as a .tmp file is created during the
10953         build of $(TESTSUITE).
10955 2001-10-05  Akim Demaille  <akim@epita.fr>
10957         * lib/m4sugar/m4sh.m4 (_AS_LINENO_PREPARE): Look in the path
10958         iff we are a bareword.
10959         Reported by Raja R Harinath.
10961 2001-10-05  Akim Demaille  <akim@epita.fr>
10963         * tests/m4sh.at (LINENO): New.
10964         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Be sure to set
10965         PATH_SEPARATOR before using it.
10966         Fix the absolute path case/esac pattern.
10967         Provide $0 as fallback for as_myself.
10968         Reported by Raja R Harinath.
10970 2001-10-05  Akim Demaille  <akim@epita.fr>
10972         * Makefile.am, config/Makefile.am, lib/emacs/Makefile.am,
10973         * m4/Makefile.am, man/Makefile.am: Add/adjust MAINTAINERCLEANFILES.
10975 2001-10-05  Akim Demaille  <akim@epita.fr>
10977         * lib/m4sugar/m4sh.m4 (_AS_LINENO_PREPARE): New, extracted from...
10978         (AS_SHELL_SANITIZE): here.  Use it.
10979         (_AS_LINENO_PREPARE): Preserve the exit status of $0.lineno.
10980         From Paul Eggert.
10982 2001-10-04  Akim Demaille  <akim@epita.fr>
10984         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Use a portable
10985         combination of Awk and sed to replace $LINENO.
10987 2001-10-02  Paul Eggert  <eggert@twinsun.com>
10989         * doc/autoconf.texi (Limitations of Builtins): You can't use
10990         "source"; it's not portable.  Remove confusing and
10991         somewhat-incorrect example involving "." and "/".
10993         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): "source" -> ".", for
10994         compatibility with POSIX shells.
10996 2001-10-02  Akim Demaille  <akim@epita.fr>
10998         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Just source 40.lineno
10999         instead of exec'ing to preserve $0 and $@.
11001 2001-10-01  Akim Demaille  <akim@epita.fr>
11003         * tests/testsuite (AT_INIT) <at_pass_list>: New.
11004         Don't run twice the same test.
11006 2001-10-01  Akim Demaille  <akim@epita.fr>
11008         * lib/autotest/general.m4 (AT_INIT) <--help>: Catch up with reality.
11009         No longer output the list of tests.
11010         <--list>: New option.
11011         <--full-help>: Remove.
11012         Complete the short/long options duality.
11013         Various small adjustments.
11015 2001-10-01  Akim Demaille  <akim@epita.fr>
11017         * doc/autoconf.texi: Use @kbd for user input.
11018         Always use `$' as shell prompt.
11020 2001-09-30  Paul Eggert  <eggert@twinsun.com>
11022         * lib/autoconf/status.m4 (AC_OUTPUT_MAKE_DEFS):
11023         Don't use nested parenthesization.  This patch was originally
11024         suggested to bug-autoconf by Philippe De Muyter on 2000-05-28,
11025         but somehow it didn't get incorporated then.
11026         * doc/autoconf.texi (Limitations of Usual Tools):
11027         Clarify remark about sed and nested parenthesization.
11029         * lib/autoconf/types.m4 (AC_CHECK_SIZEOF):
11030         Report an error if the size cannot be determined even though
11031         the type exists.
11032         * lib/autoconf/general.m4 (_AC_COMPUTE_INT_COMPILE):
11033         Check for `expr' arithmetic overflow, and for compilation failure,
11034         and invoke a new argument $4 if either is discovered.
11035         This makes _AC_COMPUTE_INT_COMPILE more like _AC_COMPUTE_INT_RUN.
11036         (_AC_COMPUTE_INT): Pass IF-FAILS arg to _AC_COMPUTE_INT_COMPILE.
11038 2001-09-28  Akim Demaille  <akim@epita.fr>
11040         * lib/emacs/autoconf-mode.el, lib/emacs/autotest-mode.el: New.
11041         * m4/lispdir.m4: New.
11042         * aclocal.m4, configure.ac: Adjust.
11044 2001-09-28  Akim Demaille  <akim@epita.fr>
11046         * lib/autotest/general.m4 (AT_VICTIMS): Rename as...
11047         (AT_TESTED): this.
11048         (AT_INIT): More the wrapped section to where it will be expanded.
11049         Output `AT_tested' only when existing.
11050         Catch unexpanded PACKAGE_STRING and PACKAGE_BUGREPORT.
11052 2001-09-27  Akim Demaille  <akim@epita.fr>
11054         Fix the passing of $? to ACTION-IF-FAILED in AC_TRY_RUN, that
11055         generates too many bug reports.
11057         * lib/autoconf/general.m4 (_AC_RUN_IFELSE): Pass the right exit
11058         status when executing the ACTION-IF-FALSE.
11059         * tests/base.at (AC_TRY_*): Rename as...
11060         (AC_TRY_COMMAND): this.
11061         (AC_RUN_IFELSE): New.
11062         * tests/compile.at (Extensions, C keywords)
11063         (AC_PROG_CPP requires AC_PROG_CC, GNU Fortran 77)
11064         (Broken/missing compilers, AC_PROG_CPP with warnings)
11065         (AC_PROG_CPP without warnings, AC_PROG_CPP via CC): Move to...
11066         * tests/c.at (Extensions, C keywords)
11067         (Broken/missing compilers, AC_PROG_CPP with warnings)
11068         (AC_PROG_CPP without warnings, AC_PROG_CPP via CC)
11069         (AC_PROG_CPP requires AC_PROG_CC): here and...
11070         * tests/fortran.at (GNU Fortran 77): there.
11071         * doc/autoconf.texi (autoconf Invocation): Fix the example:
11072         AC_TRY_RUN is about compilation, not shell commands.
11073         (Test Programs): AC_TRY_RUN works as used to be advertised.
11075 2001-09-27  Akim Demaille  <akim@epita.fr>
11077         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Fix bugs spotted by
11078         Raja R Harinath:
11079         Be sure to detect when $LINENO always returns the same value.
11080         Look for the original script, basename($0) is certainly not
11081         enough.
11082         Pass the CLI arguments to `$as_me.lineno'.
11084 2001-09-25  Akim Demaille  <akim@epita.fr>
11086         * lib/autotest/general.m4 (AT_INIT): Dump the whole config.log.
11087         Be sure the close and reopen the LOG fd before and after using tee
11088         to extend the log.
11089         <at_tests_pattern>: Adjust to the new format of at_help_all.
11091 2001-09-23  Akim Demaille  <akim@epita.fr>
11093         * bin/autom4te.in (parse_args): There can be several invocations
11094         of --language now.
11096 2001-09-23  Akim Demaille  <akim@epita.fr>
11098         * doc/autoconf.texi (Top): Wrap in @ifnottex.
11100 2001-09-23  Akim Demaille  <akim@epita.fr>
11102         * lib/autoconf/status.m4 (_AC_SRCPATHS): Compute and provide
11103         ac_buildpath, ac_top_buildpath, ac_srcpath, and ac_top_srcpath.
11104         (_AC_OUTPUT_FILES): Also substitute srcpath, top_srcpath,
11105         builddir, buildpath, top_builddir, and top_buildpath.
11106         (_AC_OUTPUT_SUBDIRS): Compute the dir variables *before* changing
11107         the current directory.
11108         * lib/autoconf/general.m4 (_AC_INIT_HELP): Compute the dir
11109         variables *before* changing the current directory.
11110         Skip nonexistent dirs.
11111         * doc/autoconf.texi (Preset Output Variables): Document these
11112         variables.
11114         * lib/autotest/general.m4: Do not reset AT_victims.
11115         Don't compute at_srcdir nor at_top_srcdir.
11117         * tests/tools.at: Hence use top_srcdir.
11119         * tests/Makefile.am, tests/autoconf, tests/autoheader,
11120         * tests/autom4te, tests/autoreconf, tests/autoupdate, tests/ifnames:
11121         Remove.
11122         * tests/autoreconf.in, tests/wrappl.in, tests/autom4te.in,
11123         * tests/wrapsh.in, tests/autoupdate.in: New.
11124         * tests/Makefile.am (DISTCLEANFILES, EXTRA_DIST): Adjust.
11125         * configure.ac: Build the position independent wrappers.
11127         * man/Makefile.am: Now that test wrappers are position
11128         independent, use them and drop dark envvar magic.
11130 2001-09-23  Akim Demaille  <akim@epita.fr>
11132         * doc/autoconf.texi (Common Shell Constructs): Rename as...
11133         (Programming in M4sh): this.
11134         Promote to @section.
11136 2001-09-23  Akim Demaille  <akim@epita.fr>
11138         * lib/autotest/general.m4 (AT_INIT): Dump config.log last.
11139         Pass $at_debug_args to the rerun test suite.
11140         * lib/m4sugar/Makefile.am (DISTCLEANFILES): New.
11141         * bin/Makefile.am (ETAGS_SH): Don't use characters ranges.
11142         From Paul Eggert.
11144 2001-09-23  Akim Demaille  <akim@epita.fr>
11146         * bin/autom4te.in (@my_warning): Remove, handled by `autom4te.cfg'.
11148 2001-09-23  Akim Demaille  <akim@epita.fr>
11150         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Fix shell
11151         over-escaping.
11153 2001-09-23  Akim Demaille  <akim@epita.fr>
11155         * lib/Autom4te/General.pm (&debug): New.
11156         * bin/autom4te.in ($language): Move to...
11157         (parse_args): here.
11158         Handle --language in languages.
11159         * lib/autom4te.in (Automake-selections, Autoheader-selections)
11160         (Autoscan-selections): New.
11161         (Autoconf): Adjust.
11163 2001-09-23  Tim Van Holder  <tim.van.holder@pandora.be>
11165         * m4/auxdir.m4, m4/cond.m4, m4/depend.m4, m4/init.m4,
11166         * m4/install-sh.m4, m4/missing.m4, m4/sanity.m4, m4/strip.m4: Updated
11167         to match current versions from CVS Automake.
11169 2001-09-23  Alexandre Duret-Lutz  <duret_g@epita.fr>
11171         * doc/autoconf.texi (Special Shell Variables): Add pdksh output
11172         for $LINENO.
11174 2001-09-22  Akim Demaille  <akim@epita.fr>
11176         * lib/autoconf/autotest.m4: Create `package.m4'.
11177         * tests/Makefile.am (package.m4): Remove.
11179 2001-09-22  Akim Demaille  <akim@epita.fr>
11181         Rely on `$LINENO' when possible instead of `__oline__'.
11183         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Provide some form of
11184         `$LINENO' support replacement when not supported.
11185         (_AS_CR_PREPARE, _AS_TR_CPP_PREPARE, _AS_TR_SH_PREPARE): Invoke
11186         them explicitly to be sure they are not output before this section
11187         (via m4_require).  Cosmetic only.
11188         * lib/autoconf/c.m4, lib/autoconf/general.m4,
11189         * lib/autoconf/programs.m4: Replace all the occurrences of
11190         `__oline__' with `$LINENO'.
11191         * doc/autoconf.texi (Special Shell Variables): Document LINENO.
11193 2001-09-21  Tim Van Holder  <tim.van.holder@pandora.be>
11195         * lib/autoconf/functions.m4 (_AC_FUNC_FORK): Replaceded an 8-bit
11196         character (u: -> ue) in a code comment.
11197         (AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK): Only run 'ln -s' if we know
11198         it works.
11200 2001-09-21  Akim Demaille  <akim@epita.fr>
11202         * Makefile.maint (AUTOM4TE): Neutralize autom4te.
11203         Suggested by Jim Meyering.
11205 2001-09-20  Tim Van Holder  <tim.van.holder@pandora.be>
11207         * lib/autoconf/programs.m4: Use extensions listed in
11208         $ac_executable_extensions when looking for programs.
11210 2001-09-20  Tim Van Holder  <tim.van.holder@pandora.be>
11212         * lib/autoconf/general.m4: Fix a small Englisho.
11213         * lib/autoconf/status.m4: Fix a small typo.  Handle DOS paths when
11214         setting up ac_dir_suffix and ac_top_builddir.
11215         * lib/m4sugar/m4sh.m4: Default CDPATH to $PATH_SEPARATOR, not ':'.
11217 2001-09-20  Tim Van Holder  <tim.van.holder@pandora.be>
11219         * doc/autoconf.texi (File System Conventions): Clarify the use of
11220         PATH_SEPARATOR.
11221         (Special Shell Variables[PATH_SEPARATOR]): Ditto.
11222         (Special Shell Variables[CDPATH]): Mention that $PATH_SEPRATOR should
11223         be used instead of ':'.
11224         * lib/autotest/general.m4: Replace occurrences of ':' in
11225         AUTOTEST_PATH with $PATH_SEPARATOR at test suite startup.
11227 2001-09-20  Tim Van Holder  <tim.van.holder@pandora.be>
11229         * tests/atgeneral.m4: Add basic support for test ranges (e.g. 7-34) as
11230         arguments.  Fixed a typo.
11232 2001-09-20  Tim Van Holder  <tim.van.holder@pandora.be>
11234         * man/Makefile.am (.x.1): Use @PATH_SEPARATOR@, not ':' to set up
11235         $PATH.  Also set AUTOM4TE_CFG, so we can process autom4te properly.
11237 2001-09-20  Tim Van Holder  <tim.van.holder@pandora.be>
11239         * bin/autoscan.in: Add 'exec-perl-if-not-run-by-perl'.
11240         * bin/autoupdate.in: Ditto.
11241         * bin/autoheader.in: Reworded a few comments.
11242         * bin/autoconf.in: Reworded help text for a few options.
11243         * bin/autoheader.in, bin/autom4te.in, bin/autoreconf.in,
11244         * bin/autoscan.in, bin/autoupdate.in: Ditto.
11246 2001-09-20  Tim Van Holder  <tim.van.holder@pandora.be>
11248         * lib/Autom4te/XFile.pm (open): Simplified the error message (we
11249         already have $file).  Set output files to binary mode (helps avoid
11250         CR issues on DOSish systems).
11252 2001-09-19  Akim Demaille  <akim@epita.fr>
11254         * lib/autotest/general.m4: Englishoes.
11255         From Tim Van Holder and Alexey Mahotkin.
11257 2001-09-18  Paul Eggert  <eggert@twinsun.com>
11259         * doc/autoconf.texi (Common Shell Constructs): New node,
11260         documenting AS_DIRNAME.
11261         (Limitations of Usual Tools): Refer to it when discussing dirname.
11262         Also, update discussion of POSIX standard to reflect latest draft.
11264         * lib/autoconf/c.m4:
11265         (AC_LANG_INT_SAVE(C)): Also support negative values, down to LONG_MIN.
11267         * lib/autoconf/general.m4 (_AC_COMPUTE_INT_COMPILE):
11268         Do not pass a first argument with leading '-'
11269         to expr, by parenthesizing initial integers that might be negative.
11271         * doc/autoconf.texi (Particular Functions): AC_FUNC_GETPGRP
11272         now merely checks whether it is an error to pass an argument
11273         to getpgrp.
11275         * lib/autoconf/functions.m4 (_AC_FUNC_GETPGRP_TEST): Remove.
11276         (AC_FUNC_GETPGRP): Don't bother with a runtime test.  Just check
11277         whether it is a (compile-time) error to pass an argument to
11278         getpgrp.  This simpler test supports the revised documentation,
11279         and is all that AC_FUNC_GETPGRP's users really need.
11281 2001-09-18  Akim Demaille  <akim@epita.fr>
11283         * doc/autoconf.texi (Limitations of Make) <$<>: New.
11285 2001-09-18  Akim Demaille  <akim@epita.fr>
11287         * doc/autoconf.texi (Limitations of Usual Tools) <find>: More about
11288         `{}'.
11289         * lib/autotest/general.m4 (AT_INIT): Adjust.
11291 2001-09-18  Paul Wagland  <paul@wagland.net>
11293         * tests/m4sh.at: Ensure that AS_DIRNAME handles '/', '//' and '///'
11294         correctly.
11295         Add test for AS_BASENAME.
11296         * lib/m4sugar/m4sh.m4: Fix AS_BASENAME so that it passes the previous
11297         added test. It now correctly handles /1/2/3/, returning '3' not ''.
11298         Added AS_BASENAME_SED to make the interface the same as AS_DIRNAME.
11299         * tests/base.at: Fixed the expected responses. The old ones were
11300         one line out...
11301         * lib/autoconf/general.m4: Fixed AC_PREFIX_PROGRAM, it now behaves as
11302         the documentation claims it should (and how it behaved in 2.13).
11304 2001-09-18  Akim Demaille  <akim@epita.fr>
11306         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): No INIT-CMDS in
11307         the AC_CONFIG_COMMANDS invocation.
11308         This also solves the name clash problems.
11309         Don't set the package's ID.
11310         * lib/m4sugar/Makefile.am (version.m4): Revamp.
11311         No longer to be shipped.
11312         (version.in): Remove.
11313         * lib/m4sugar/m4sugar.m4, lib/autoconf/general.m4,
11314         * lib/autoconf/status.m4: Adjust.
11315         Use `m4_PACKAGE_STRING'.
11316         * lib/autotest/general.m4 (AT_INIT): N-th signature change: now
11317         the only optional argument is the name of the test suite.
11318         Expect `package.m4' to define the package signature.
11319         * lib/autom4te.in (Autotest): Add `package.m4?'.
11320         * tests/Makefile.am (package.m4): New.
11321         * tests/suite.at: ifnames is a victim.
11323 2001-09-18  Akim Demaille  <akim@epita.fr>
11325         * lib/autom4te.in (Autoconf): Preselect AM_CONDITIONAL,
11326         AC_LIBSOURCE, AC_CONFIG_FILES.
11327         * lib/autotest/general.m4 (AT_INIT): Don't abort when a tested
11328         program version string doesn't match the package's.
11329         * lib/autoconf/general.m4 (AC_CACHE_VAL): Reestablish the space
11330         after `(cached)'.
11332 2001-09-17  Paul Eggert  <eggert@twinsun.com>
11334         * lib/autoconf/c.m4: (AC_LANG_INT_SAVE(C)):
11335         Allow expression to return any value that can fit into unsigned long
11336         (not int, as before).  Check for output errors.
11338 2001-09-17  Bruno Haible  <haible@ilog.fr>
11340         * lib/autoconf/c.m4: (AC_LANG_INT_SAVE(C)):
11341         Always include <stdio.h> and <stdlib.h>. Evaluate
11342         the expression in an extra function before these includes. Call
11343         fprintf "%d" only after ensuring the argument is of type 'int'.
11344         Reported by Wayne Chapeskie <waynec@spinnaker.com>.
11346 2001-09-17  Paul Eggert  <eggert@twinsun.com>
11348         Fix bug reported by Paul Townsend on AIX 4.3.3.0 with CFLAGS=-O4
11349         or CFLAGS=-O5.  In that case, the linker has a relaxed view of
11350         fatal errors, and AC_CHECK_LIB causes it to include libraries even
11351         when they don't exist.
11353         * lib/autoconf/headers.m4 (AC_HEADER_DIRENT): Use AC_SEARCH_LIBS,
11354         not AC_CHECK_LIB, so that we don't use -ldir or -lx if we don't
11355         need it.
11357         * lib/autoconf/specific.m4 (AC_ISC_POSIX): Replace the old, crufty
11358         version with the version used by fileutils 4.1, except use
11359         AC_SEARCH_LIBS, not AC_CHECK_LIB, so that we don't use -lcposix if
11360         we don't need it.
11362         * doc/autoconf.texi (AC_ISC_POSIX): Describe new behavior.
11364 2001-09-13  Akim Demaille  <akim@epita.fr>
11366         * tests/base.at, tests/m4sh.at: Be sure to issue the bangshe line
11367         _first_.
11368         Reported by Gerrit P. Haase.
11370 2001-09-13  Akim Demaille  <akim@epita.fr>
11372         * lib/autotest/general.m4 (AT_INIT): Reset `AT_victims' so that
11373         m4_defn'ing is valid.
11375 2001-09-13  Akim Demaille  <akim@epita.fr>
11377         * lib/m4sugar/m4sugar.m4 (m4_append_uniq): New.
11378         * lib/autotest/general.m4 (AT_VICTIMS, AT_KEYWORDS, _AT_CLEANUP_FILE):
11379         Use it.
11381 2001-09-13  Akim Demaille  <akim@epita.fr>
11383         * lib/m4sugar/m4sugar.m4 (_AS_QUOTE_IFELSE, _AS_BOX_INDIR): Use
11384         m4_match.
11385         (m4_re_escape): New.
11386         * lib/autoconf/status.m4 (AC_CONFIG_IF_MEMBER): Use it.
11387         * lib/autoconf/general.m4 (AC_CACHE_SAVE): Use m4_match.
11388         * lib/autoconf/status.m4 (AC_CONFIG_IF_MEMBER, AC_CONFIG_LINKS):
11389         Likewise.
11390         * lib/autoconf/types.m4 (_AC_CHECK_TYPE_REPLACEMENT_TYPE_P)
11391         (_AC_CHECK_TYPE_MAYBE_TYPE_P, AC_CHECK_MEMBER): Likewise.
11392         * lib/autotest/general.m4 (AT_INIT): Rename AT_TESTS_ALL as
11393         AT_tests_all for consistency.
11394         Set at_victims.
11395         (AT_VICTIMS): Similar to AT_KEYWORDS.
11396         (_AT_CLEANUP_FILE_IF): Use m4_match and m4_re_escape.
11398 2001-09-13  Akim Demaille  <akim@epita.fr>
11400         * lib/autotest/general.m4 (AT_INIT): Fix stupid bugs.
11402 2001-09-13  Akim Demaille  <akim@epita.fr>
11404         * lib/autotest/general.m4 (AT_INIT): Create and remove
11405         `$as_me.[0-9]+' instead of `debug-[0-9]+.sh', so that multiple
11406         test suites can cohabit.
11408 2001-09-13  Akim Demaille  <akim@epita.fr>
11410         * tests/mktests.sh: Don't output banners for empty test files.
11412 2001-09-13  Akim Demaille  <akim@epita.fr>
11414         Test suites can be run independently of configure.
11416         * lib/m4sugar/m4sh.m4 (_AS_ECHO, _AS_ECHO_N_PREPARE): New.
11417         * lib/autoconf/programs.m4 (_AC_PROG_ECHO): Remove.
11418         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Adjust: AC_SUBST
11419         ECHO_N etc.
11420         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): Don't ask for at_n
11421         and at_c.
11422         * lib/autotest/general.m4: Use ECHO_*.
11424 2001-09-13  Akim Demaille  <akim@epita.fr>
11426         * bin/ifnames.in: Rewrite in Perl.
11427         * configure.ac: Don't look for AWK.
11428         * tests/tools.at (AWK portability): Remove.
11429         (Syntax of the shell scripts): Don't check ifnames.
11430         (AT_CHECK_PERL_SYNTAX): New.
11431         (Syntax of the Perl scripts): Check ifnames.
11432         * tests/ifnames: New.
11434 2001-09-13  Akim Demaille  <akim@epita.fr>
11436         * lib/autotest/general.m4 (AT_INIT): Let --keywords also match
11437         test group titles.
11438         * tests/atspecific.m4 (AT_CHECK_AU_MACRO): AT_KEYWORDS(autoupdate).
11439         Remove all the other keywords.
11441 2001-09-10  Akim Demaille  <akim@epita.fr>
11443         * lib/autotest/general.m4 (AT_INIT): Remove the diversion HELP and
11444         SETUP: no longer used.
11445         Support -k, --keywords.
11446         <at_help>: Be `no', `short', or `long'.
11447         <at_help_all>: New variable.
11448         (AT_KEYWORDS): New.
11449         (AT_CLEANUP_FILE_IFELSE, AT_CLEANUP_FILE): Rename as...
11450         (_AT_CLEANUP_FILE_IF, _AT_CLEANUP_FILE): these.
11451         (_AT_CLEANUP_FILE_IF): Simplify the regexp.
11452         (AT_SETUP): Reset AT_line, AT_keywords, AT_description.
11453         No longer fill the HELP diversion.
11454         (AT_CLEANUP): Use them.
11455         * lib/m4sugar/m4sugar.m4 (m4_append): Support a separator.
11456         (m4_list_append): Remove.
11458         Spread a few keywords in the Autoconf test suite.
11460 2001-09-10  Akim Demaille  <akim@epita.fr>
11462         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): Don't pass
11463         PATH_SEPARATOR, let M4sh compute it.
11464         * lib/m4sugar/m4sh.m4 (_AS_PATH_SEPARATOR_PREPARE): New.
11465         * lib/autoconf/programs.m4 (AC_SHELL_PATH_WALK): Use PATH_SEPARATOR.
11466         Move to...
11467         * lib/m4sugar/m4sh.m4 (_AS_PATH_WALK): Here.
11468         Simplify when the path is not a literal.
11469         (AS_UNAME): Use it to report PATH.
11470         * lib/autoconf/general.m4 (_AC_INIT_PREPARE_FS_SEPARATORS): Remove.
11471         (_AC_INIT_DEFAULTS): AC_SUBST PATH_SEPARATOR.
11472         * lib/autoconf/programs.m4 (AC_PROG_INSTALL): Use _AS_PATH_WALK.
11473         * lib/autotest/general.m4 (AT_INIT): Use _AS_PATH_WALK to
11474         normalize the path, and to look for victims.
11475         * tests/semantics.at (AC_PATH_PROG & AC_PATH_PROGS)
11476         (AC_CHECK_PROG & AC_CHECK_PROGS): Use PATH_SEPARATOR.
11478 2001-09-07  Akim Demaille  <akim@epita.fr>
11480         * bin/autom4te.in (&handle_m4): `< /dev/null' so that GNU M4 1.5
11481         doesn't neutralize SIGINT, making autoconf etc. non interruptible.
11482         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): Move the package
11483         related variables into `at_package_*'.
11484         * lib/autotest/general.m4 (AT_VICTIMS): New.
11485         (AT_INIT): Adjust for stand-alone/embedded test suites.
11486         (AS_MESSAGE_LOG_FD): Define and use it.
11487         * tests/suite.at (AT_VICTIMS): Use it.
11488         * tests/tools.at (autoupdating AC_PREREQ): Don't depend upon
11489         at_version.
11491 2001-09-07  Akim Demaille  <akim@epita.fr>
11493         Move toward possibly stand-alone test suites.
11495         * lib/autotest/general.m4: Stop displaying srcdir everywhere as,
11496         in addition, it introduces useless differences in logs.
11497         (AT_INIT): Let atconfig and atlocal be both optional.
11498         Adjust PATH computation.
11499         * lib/m4sugar/m4sh.m4 (AS_UNAME): More readable display of PATH.
11501 2001-09-07  Akim Demaille  <akim@epita.fr>
11503         * lib/autoconf/Makefile.am (autoconf.m4f): Depends upon
11504         m4sugar/version.m4.
11506 2001-09-05  Akim Demaille  <akim@epita.fr>
11508         * lib/autoconf/c.m4 (AC_LANG_BOOL_COMPILE_TRY(C)): Use `_array_'
11509         to avoid GCC warnings.
11510         From Uwe Seimet.
11512 2001-09-05  Akim Demaille  <akim@epita.fr>
11514         * bin/autom4te.in: --language is -l, not -s.
11516 2001-09-05  Akim Demaille  <akim@epita.fr>
11518         Be ready to handle filenames as stupid as `dnl.at', for if even
11519         the maintainer is dumb enough to do that...
11521         * lib/autotest/general.m4 (AT_SETUP, AT_LINE): Demonstrates your
11522         excellence in M4 quotation: consider `__file__' is active.
11524         And BTW, when invoking m4, pass the --include in the right order:
11525         the wrong one.
11527         * bin/autom4te.in, bin/autoupdate.in: Use reverse when kingtal to
11528         4m.
11530 2001-09-05  Akim Demaille  <akim@epita.fr>
11532         * lib/Autom4te/XFile.pm: New lib file.
11533         * bin/autoupdate.in, bin/autoscan.pl, bin/autom4te.in,
11534         * bin/autoheader.in: Use it.
11536 2001-09-05  Akim Demaille  <akim@epita.fr>
11538         * bin/autoupdate.in (&handle_m4_macros) <unm4.m4>: Undefine iff
11539         defined.
11541 2001-09-05  Akim Demaille  <akim@epita.fr>
11543         * lib/Autom4te/General.pm (&getopt): Work around the `-' Getopt bug.
11544         * bin/autoheader.in, bin/autoupdate.in (&parse_args): Adjust.
11546         * bin/autoscan.in: Use `getopt' and `find_files' etc.
11547         Add -I, --include support.
11548         * doc/autoconf.texi (autoscan Invocation): Adjust.
11550 2001-09-05  Akim Demaille  <akim@epita.fr>
11552         CVS GNU M4 doesn't like `undefine(undefined)'.
11554         * bin/autoupdate.in (&handle_m4_macros, &handle_autoconf_macros):
11555         New, extracted from main.
11556         Use IO::File wherever possible.
11557         (input.m4): Be constant, use -I instead of hard coding $tmp.
11558         Therefore be a quoted heredoc.
11559         Don't invoke `_au_disable', since ac was not loaded, but just
11560         `unm4.m4'.
11562 2001-08-31  Akim Demaille  <akim@epita.fr>
11564         Version 2.52d.
11566 2001-08-31  Akim Demaille  <akim@epita.fr>
11568         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Fix the
11569         previous patch.
11570         * tests/atspecific.m4 (AT_CHECK_AUTOHEADER): Can create `config.hin~'.
11572 2001-08-31  Akim Demaille  <akim@epita.fr>
11574         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): DU 5.0 has
11575         serious problems handling heredocs in heredocs.
11576         Reported by Nicolas Joly.
11578 2001-08-31  Akim Demaille  <akim@epita.fr>
11580         * doc/autoconf.texi: Don't promote non `m4_*' M4 macros.
11581         (Making testsuite Scripts): Update.
11583 2001-08-31  Akim Demaille  <akim@epita.fr>
11585         * lib/Makefile.am (CLEANFILES): Add autom4te.cfg.
11587 2001-08-31  Akim Demaille  <akim@epita.fr>
11589         * doc/autoconf.texi (Quadrigraphs): Document `@&t@'.
11590         (testsuite Scripts): There is no such thing as `atconfig.in'.
11591         And actually one diagram is missing: test suite runtime.
11593 2001-08-31  Akim Demaille  <akim@epita.fr>
11595         * lib/Autom4te/General.pm (&find_file): Browse the includes in the
11596         inverse order.
11598 2001-08-31  Akim Demaille  <akim@epita.fr>
11600         * bin/autoupdate.in (@include): `installcheck' revealed the path
11601         to m4sugar was lacking!
11603 2001-08-31  Akim Demaille  <akim@epita.fr>
11605         * man/Makefile.am (.x.1): We really have to pass
11606         autom4te_perllibdir.
11608 2001-08-31  Akim Demaille  <akim@epita.fr>
11610         * lib/autotest/general.m4 (AT_INIT): Don't pass all the args to
11611         debug scripts, in particular passing explicitly listed tests to
11612         run is stupid.
11614 2001-08-31  Akim Demaille  <akim@epita.fr>
11616         * bin/autom4te.in (&parse_args): Strip `.' from `@include'.
11617         * bin/autoupdate.in: Use --include, -I, and --force, -f, too.
11618         Use directly autom4te, not autoconf.
11619         * tests/autoupdate: $top_srcdir/lib is needed too for melt files.
11621 2001-08-31  Akim Demaille  <akim@epita.fr>
11623         * tests/semantics.at (AC_C_BIGENDIAN): Missing eol.
11624         * bin/autoheader.in (%symbol): Strip arguments of macros.
11626 2001-08-31  Akim Demaille  <akim@epita.fr>
11628         * doc/autoconf.texi: Catch up -I, --include changes.
11630 2001-08-31  Akim Demaille  <akim@epita.fr>
11632         * bin/autom4te.in (&parse_args): Die on unknown languages.
11633         * bin/autoheader.in: Run directly autom4te --mode=autoconf, no
11634         need for autoconf.
11635         Promote --include over --macrodir and other obsolete options.
11637 2001-08-31  Akim Demaille  <akim@epita.fr>
11639         * lib/Autom4te/General.pm ($version, $help, &getopt): New.
11640         * bin/autoupdate.in, bin/autoheader.in, bin/autom4te.in: Use them.
11641         * bin/autom4te.in ($autoconf): Pass --force.
11642         `print $out' doesn't print `$_' but `$out'.
11643         * tests/tools.at (Syntax of the Perl scripts): Pass the lib dir.
11644         (autoheader): Pass --force since the test suite goes too fast for
11645         the time stamps.
11646         Adjust to the new autoheader messages.
11648 2001-08-31  Akim Demaille  <akim@epita.fr>
11650         * bin/autoheader.in: Handle the acconfig.h etc. junk files.
11651         Check the completeness of the #template.
11652         * lib/Autom4te/General.pm (&update_file): s/remove/unlink/.
11653         * tests/semantics.at (AC_C_BIGENDIAN): Adjust AT_CHECK_AUTOHEADER
11654         invocation.
11656 2001-08-31  Akim Demaille  <akim@epita.fr>
11658         * lib/Autom4te/General.pm (&find_file, &update_file): New.
11659         * bin/autoupdate.in, bin/autoheader.in: Adjust.
11660         Drop AC_MACRODIR dead for real.
11661         * tests/atspecific.m4 (AT_CHECK_AUTOHEADER): Now autoheader says
11662         `autoheader: `config.hin' is created'.
11663         * tests/tools.at (Syntax of the Perl scripts): Check autoheader.
11665 2001-08-31  Akim Demaille  <akim@epita.fr>
11667         * bin/autoheader.in: Rewrite in Perl.
11668         * tests/autoheader: Adjust.
11670 2001-08-31  Akim Demaille  <akim@epita.fr>
11672         * bin/autoconf.in (--include, -I): New option.
11673         Map --localdir, --autoconf-dir onto it.
11674         Forward autom4te's options instead of interpreting them.
11675         * bin/autoconf.in, bin/autoheader.in (AC_MACRODIR, autoconf_dir):
11676         There is no such envvar since the inception of autom4te.cfg.
11677         * bin/autom4te.in (&parse_args): Uniquify `@include'.
11678         * bin/autoupdate.in: Adjust, and perform more control.
11679         * tests/atspecific.m4 (AT_CHECK_AUTOCONF): Adjust.
11680         * tests/autoconf: Dittowise.
11682 2001-08-31  Akim Demaille  <akim@epita.fr>
11684         * bin/autoconf.in: Don't bother with `acsite.m4' and `aclocal.m4'.
11685         * bin/autom4te.in (&find_file): Support `FILE?' standing for
11686         optionally `FILE'.
11687         Use -e, not -f, since /dev/null for instance is OK.
11688         (&parse_args): Adjust.
11689         * lib/autom4te.in (Autoconf): Add `acsite.m4?' and `aclocal.m4?'.
11691 2001-08-31  Akim Demaille  <akim@epita.fr>
11693         * configure.ac: Also find tested executables in bin.
11694         * bin/autoconf.in, bin/autoheader.in, bin/autoreconf.in,
11695         * bin/autoscan.in, autoupdate.in: Use exclusively the name of the
11696         installed peer executables, only PATH is allowed to resolve it.
11697         Pass `autoconf_dir' via options, not via invisible envvars.
11698         * lib/Autom4te/General.pm (&find_peer): Remove.
11699         * lib/autotest/general.m4 (AT_INIT): `AUTOTEST_PATH=a:b' gives
11700         `abuild:asrc:bbuild:bsrc', not `abuild:bbuild:asrc:bsrc'.
11701         * man/Makefile.am: Let help2man rely on PATH instead of trying to
11702         find the executables for it.
11703         * tests/Makefile.am: Major cleanup.  Too lazy to document...
11704         * tests/atlocal.in: Remove all the obscure envvar manipulations.
11705         We only need PERL.
11706         * tests/atspecific.m4, tests/tools.at: Passing --localdir is
11707         indeed related to running the test suite, while passing
11708         --autoconf-dir and others is related to running non installed
11709         Autoconf executables.  So don't do that, leave it to...
11710         * tests/autoconf, tests/autoheader, tests/autom4te, tests/autoupdate,
11711         * tests/autoscan: New.
11712         * tests/atspecific.m4 (AT_CHECK_M4SUGAR, AT_CHECK_M4SH): Don't
11713         refer to library files: rely on --language.
11715 2001-08-29  Akim Demaille  <akim@epita.fr>
11717         * bin/autom4te.in, lib/autom4te.in, bin/autoconf.in:
11718         s/--set/--language/.
11720 2001-08-29  Akim Demaille  <akim@epita.fr>
11722         * doc/autoconf.texi: Strip the @nodes.
11723         Suggested by Paul Eggert.
11724         (Initializing configure): Typo.
11726 2001-08-29  Akim Demaille  <akim@epita.fr>
11728         * bin/autom4te.in (&handle_output): s/@__@/@&t@/.
11729         Suggested by Paul Eggert.
11731 2001-08-29  Akim Demaille  <akim@epita.fr>
11733         * Makefile.maint (do-po-update): Wget refuses to overwrite files:
11734         download in a tmp dir.
11736 2001-08-29  Akim Demaille  <akim@epita.fr>
11738         * lib/autotest/general.m4: s/AT-devnull/devnull/ since there are
11739         case insensitive OSes out there :(
11740         From Tim Van Holder.
11742 2001-08-29  Akim Demaille  <akim@epita.fr>
11744         * lib/autom4te.in: New.
11745         * lib/Makefile.am (edit, autom4te.cfg): New.
11746         * bin/autom4te.in (BEGIN): Simplify.
11747         Rely on `AC_MACRODIR' in addition of `autom4te_perllibdir'.
11748         (&load_configuration): New.  Use it.
11749         (&parse_args): Support --mode, --set, and --melt.
11750         * bin/autoconf.in: Simplify and adjust.
11751         * tests/Makefile.am (AUTOMAKE): Use --set.
11752         * tests/atlocal.in: Adjust.
11753         * BUGS: distcheck and check are weak.
11755 2001-08-29  Akim Demaille  <akim@epita.fr>
11757         * lib/autotest/general.m4: Use
11758                 foo=`(command) 2>/dev/null`
11759         not
11760                 foo=`command` 2>/dev/null
11761         (at-devnull): Rename as...
11762         (AT-devnull): this.
11763         (--clean): Remove AT-* files too.
11764         * doc/autoconf.texi (Limitations of Usual Tools): Document `date'.
11765         Reported by Nicolas Joly.
11767 2001-08-28  Akim Demaille  <akim@epita.fr>
11769         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Don't use single
11770         quotes inside single quotes.
11771         Reported by Nicolas Joly.
11773 2001-08-28  Kevin Ryde  <user42@zip.com.au>
11775         * doc/autoconf.texi (Function Portability): Mention C right shifts.
11777 2001-08-27  Tim Van Holder  <tim.van.holder@pandora.be>
11779         * lib/autotest/general.m4: Reword some messages.
11780         (AT_INIT): Check for the `times' builtin before using it.
11781         Support test ranges as arguments to the testsuite.
11782         Have -e imply -d as the help text suggested.
11784 2001-08-27  Akim Demaille  <akim@epita.fr>
11786         * Makefile.maint: Formatting changes.
11787         (do-po-update, po-update, cvs-update, update): New targets.
11788         (AMTAR): Remove.
11790 2001-08-27  Akim Demaille  <akim@epita.fr>
11792         * lib/autotest/general.m4 (AT_INIT) <at_cmd_line>: Remove.
11793         <at_cmd_line>: New.
11794         Pass it to debug-*.sh scripts.
11795         <AUTOTEST_PATH>: May contain absolute dir names.
11797 2001-08-27  Akim Demaille  <akim@epita.fr>
11799         * lib/autotest/general.m4 (AT_INIT): Log the command line.
11800         Support `VAR=VAL' as arguments.
11801         Compute PATH _after_ the options processing, so that AUTOTEST_PATH
11802         may be set via the command line.
11804 2001-08-27  Akim Demaille  <akim@epita.fr>
11806         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): $2 defaults to $1.
11807         * lib/autotest/autotest.m4 (AT_INIT): Expand AUTOTEST_PATH into
11808         first the build dirs, then the src dirs.
11809         * configure.ac (AC_CONFIG_TESTDIR): Adjust.
11811 2001-08-27  Akim Demaille  <akim@epita.fr>
11813         * lib/autotest/general.m4 (AT_INIT): Output the definition of
11814         at_data_files earlier.
11815         (--clean, -c): New option.
11816         * tests/Makefile.am: Use this option.
11818 2001-08-27  Akim Demaille  <akim@epita.fr>
11820         * lib/autoconf/status.m4 (_AC_SRCPATHS): Rename `ac_dots' as
11821         `ac_top_builddir' to mimic Automake's vocabulary, which much more
11822         readable.
11823         Adjust callers.
11824         * doc/autoconf.texi (Configuration Actions): Document the vars
11825         available in commands.
11826         Emphasize the risks of collisions in init-cmds.
11828 2001-08-27  Akim Demaille  <akim@epita.fr>
11830         * doc/autoconf.texi (Input) <AC_INIT>: Move to..
11831         (Initializing configure): this new node.
11833 2001-08-27  Akim Demaille  <akim@epita.fr>
11835         * Makefile.am (EXTRA_DIST): INSTALL.txt is a dead hack.
11837 2001-08-27  Akim Demaille  <akim@epita.fr>
11839         * m4/atconfig.m4 (AT_CONFIG): Remove, replaced by...
11840         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): this.
11841         New file.
11842         * m4/Makefile.am (EXTRA_DIST): Oops, adjust...
11844 2001-08-27  Akim Demaille  <akim@epita.fr>
11846         * lib/autoconf/general.m4 (AU_DEFINE, AU_DEFUN, AU_ALIAS): Move
11847         to...
11848         * lib/autoconf/autoheader.m4: this new file.
11849         * lib/autoconf/general.m4 (AH_OUTPUT, AH_VERBATIM)
11850         (_AH_VERBATIM_OLD, AH_TEMPLATE, _AH_TEMPLATE_OLD, AH_TOP, AH_BOTTOM):
11851         Move to...
11852         * lib/autoconf/autoupdate.m4: this new file.
11854 2001-08-27  Akim Demaille  <akim@epita.fr>
11856         * lib/autoconf/status.m4 (_AC_SRCPATHS): New.
11857         (_AC_OUTPUT_LINKS, _AC_OUTPUT_FILES, _AC_OUTPUT_SUBDIRS): Use it.
11858         Standardize the var names (ac_sub_srcdir -> ac_srcdir, ac_subdir
11859         -> ac_dir).
11860         (_AC_OUTPUT_HEADERS): AS_DIRNAME always return a dir name.
11861         * lib/autoconf/general.m4 (_AC_INIT_HELP): Ditto.
11863 2001-08-27  Akim Demaille  <akim@epita.fr>
11865         * lib/autoconf/autoconf.m4 (AC_CONFIG_COMMANDS)
11866         (AC_CONFIG_COMMANDS_POST, AC_CONFIG_COMMANDS_PRE, AC_CONFIG_FILES)
11867         (AC_CONFIG_HEADER, AC_CONFIG_HEADERS, AC_CONFIG_IF_MEMBER)
11868         (AC_CONFIG_LINKS, AC_CONFIG_SUBDIRS, AC_FILE_DEPENDENCY_TRACE)
11869         (AC_LINK_FILES, AC_LIST_COMMANDS, AC_LIST_COMMANDS_COMMANDS)
11870         (AC_LIST_FILES, AC_LIST_FILES_COMMANDS, AC_LIST_HEADERS)
11871         (AC_LIST_HEADERS_COMMANDS, AC_LIST_LINKS, AC_LIST_LINKS_COMMANDS)
11872         (AC_OUTPUT, AC_OUTPUT_COMMANDS, AC_OUTPUT_COMMANDS_POST)
11873         (AC_OUTPUT_COMMANDS_PRE, AC_OUTPUT_MAKE_DEFS)
11874         (_AC_CONFIG_COMMANDS_INIT, _AC_CONFIG_DEPENDENCIES)
11875         (_AC_CONFIG_DEPENDENCY, _AC_CONFIG_UNIQUE, _AC_LINK_FILES_CNT)
11876         (_AC_LIST_SUBDIRS, _AC_OUTPUT_COMMANDS, _AC_OUTPUT_COMMANDS_CNT)
11877         (_AC_OUTPUT_COMMANDS_INIT, _AC_OUTPUT_CONFIG_STATUS)
11878         (_AC_OUTPUT_FILES, _AC_OUTPUT_HEADERS, _AC_OUTPUT_LINKS)
11879         (_AC_OUTPUT_SUBDIRS): Move to...
11880         * lib/autoconf/status.m4: this new file.
11881         * lib/autoconf/general.m4, lib/autoconf/Makefile.am: Adjust.
11882         * tests/Makefile.am, tests/suite.at: Adjust.
11884 2001-08-27  Akim Demaille  <akim@epita.fr>
11886         Automake 1.5.
11888         * Makefile.am (AUTOMAKE_OPTIONS): Add 1.5 and dist-bzip2.
11889         (AMTAR): Help automake define it.
11890         (INSTALL, install-data-hook): The INSTALL.txt trick is no longer
11891         needed, 1.5 can have a macro and a target with the same name.
11892         * m4/auxdir.m4, m4/cond.m4, m4/depend.m4, m4/install-sh.m4,
11893         * m4/strip.m4: New.
11894         * m4/init.m4, m4/sanity.m4: Update.
11895         * doc/Makefile.am (CLEANFILES): 1.5 knows the texi2dvi files.
11896         * lib/autoconf/Makefile.am, lib/autotest/Makefile.am,
11897         * lib/m4sugar/Makefile.am, lib/autoscan/Makefile.am,
11898         * lib/Autom4te/Makefile.am, man/Makefile.am: Use dist/nodist.
11900 2001-08-27  Akim Demaille  <akim@epita.fr>
11902         Provide a mean to ``AC_PREREQ'' for M4sugar, M4sh and Autotest.
11904         * lib/autoconf/version.in: Remove.
11905         * lib/m4sugar/version.in: New.
11906         * lib/m4sugar/m4sugar.m4 (m4_acversion, m4_version_prereq): New.
11907         Adjust callers.
11908         * bin/autoupdate.in: Distinguish M4sugar vs. Autoconf macros by
11909         the name of the directory they're in, instead of the filename,
11910         since version.m4 is now in m4sugar, but m4_acversion must not be
11911         classified as an Autoconf macro.
11912         ($input_m4): Don't qualify the path to m4sugar.
11913         Rather, pass autoconf_dir to m4.
11914         * tests/Makefile.am (testsuite): Remove -I top_srcdir, unneeded.
11915         * tests/suite.at: Require 2.52c.
11917 2001-08-27  Akim Demaille  <akim@epita.fr>
11919         testsuite.log should include config.log.
11921         * lib/autotest/autotest.m4: New.
11922         * lib/autotest/general.m4, tests/atspecific.m4: Adjust.
11923         * tests/suite.at : Adjust.
11924         (AT_INIT): Log config.log.
11925         * lib/m4sugar/m4sugar.m4 (m4_text_box): New.
11926         * lib/m4sugar/m4sh.m4 (_AS_BOX_LITERAL): Adjust.
11927         * lib/autoconf/general.m4 (_AC_INIT_CONFIG_LOG): Use them.
11928         (_AC_INIT_PREPARE): Fix the incredibly messy and buggy completion
11929         of config.log on traps.
11930         (_AC_OUTPUT_CONFIG_STATUS): Use AS_BOX.
11931         Use consistently `_ACEOF' for configure's here docs, and `_CSEOF'
11932         for config.status'.
11933         Open the log as soon as possible.
11934         Use the same log introduction as configure's.
11936 2001-08-22  Paul Eggert  <eggert@twinsun.com>
11938         * doc/autoconf.texi (Indices): New node.
11939         Move indices out of the top level menu and into this submenu.
11941 2001-08-22  Akim Demaille  <akim@epita.fr>
11943         * lib/autoconf/programs.m4 (_AC_PROG_LEX_YYTEXT_DECL): Use
11944         AC_TRY_COMMAND.
11945         (AC_DECL_YYTEXT): Fix the previous patch: it points to AC_PROG_LEX.
11947 2001-08-22  Akim Demaille  <akim@epita.fr>
11949         * lib/autoconf/general.m4 (AC_SHELL_PATH_WALK, AC_CHECK_PROG)
11950         (AC_CHECK_PROGS, AC_PATH_PROG, AC_PATH_PROGS, AC_CHECK_TOOL_PREFIX)
11951         (AC_PATH_TOOL, AC_CHECK_TOOL, AC_CHECK_TOOLS): Move to...
11952         * lib/autoconf/programs.m4: here.
11953         * lib/autoconf/specific.m4 (_AC_PROG_ECHO, AC_PROG_MAKE_SET)
11954         (AC_PROG_RANLIB, AC_PROG_YACC, AC_PROG_LEX, _AC_DECL_YYTEXT)
11955         (AC_PROG_INSTALL, AC_PROG_LN_S, AC_RSH): Move to...
11956         * lib/autoconf/programs.m4: here.
11957         (_AC_DECL_YYTEXT): Rename as...
11958         (_AC_PROG_LEX_YYTEXT_DECL): this.
11959         * lib/autoconf/autoconf.m4, lib/autoconf/Makefile.am
11960         * tests/Makefile.am, tests/suite.am: Adjust.
11962 2001-08-22  Akim Demaille  <akim@epita.fr>
11964         * lib/autoconf/general.m4 (AC_LIST_MEMBER_OF, AC_LINKER_OPTION):
11965         Move to...
11966         * lib/autoconf/fortran.m4 (_AC_LIST_MEMBER_IF, _AC_LINKER_OPTION):
11967         here.
11968         * lib/autoconf/general.m4 (AC_TRY_LINK_FUNC): Move to...
11969         * lib/autoconf/functions.m4: here.
11970         * lib/autoconf/general.m4 (AC_SEARCH_LIBS, AC_CHECK_LIB)
11971         (AH_CHECK_LIB): Move to...
11972         * lib/autoconf/libs: this new file.
11973         * lib/autoconf/specific.m4 (_AC_PATH_X_XMKMF, _AC_PATH_X_DIRECT)
11974         (_AC_PATH_X, AC_PATH_X, AC_PATH_XTRA): Move to...
11975         * lib/autoconf/libs.m4: here.
11976         * lib/autoconf/autoconf.m4, lib/autoconf/Makefile.am: Adjust.
11978 2001-08-22  Akim Demaille  <akim@epita.fr>
11980         * lib/m4sugar/m4sh.m4 (AS_MKDIR_P): Fail if fails.
11981         * lib/autoconf/general.m4 (_AC_OUTPUT_SUBDIRS): Adjust.
11982         (AC_SITE_LOAD): Better logging of config.site.
11984 2001-08-20  Akim Demaille  <akim@epita.fr>
11986         * configure.ac (AT_CONFIG): Fix the path.
11987         * m4/atconfig.m4 (AT_CONFIG): Don't use EOF but ATEOF so that 2.52
11988         can be used.
11990 2001-08-20  Alexandre Duret-Lutz  <duret_g@epita.fr>
11992         * lib/autoconf/c.m4 (AC_C_BIGENDIAN): Prepare the cross-compile
11993         program with AC_LANG_PROGRAM before feeding it to
11994         AC_COMPILE_IFELSE.  Cleanup grep usage.
11996 2001-08-20  Akim Demaille  <akim@epita.fr>
11998         * ChangeLog, ChangeLog.0, ChangeLog.1, ChangeLog.2, AUTHORS, BUGS,
11999         * NEWS, README, README-alpha, TODO, tests/README: This package is
12000         `Autoconf', not `autoconf' (the executable).
12002 2001-08-20  Akim Demaille  <akim@epita.fr>
12004         Info readers seem to need `Index' in the index node title :(
12006         * doc/autoconf.texi: Reverse the 2001-08-15 change which
12007         simplified index node names.
12009 2001-08-20  Akim Demaille  <akim@epita.fr>
12011         * lib/autoconf/general.m4 (_AC_INIT_PACKAGE): Warn if the
12012         arguments are not literals.
12013         * doc/autoconf.texi (Input) <AC_INIT>: Arguments must be literals.
12014         Specify the output variables, and macros defined.
12016 2001-08-20  Akim Demaille  <akim@epita.fr>
12018         * doc/autoconf.texi (Examining Declarations) <AC_TRY_CPP>:
12019         (Examining Syntax) <AC_TRY_COMPILE>
12020         (Examining Libraries) <AC_TRY_LINK>
12021         (Test Programs) <AC_TRY_RUN>: These macros double quote some of
12022         their arguments.
12023         Reported by Werner Lemberg.
12025 2001-08-20  Akim Demaille  <akim@epita.fr>
12027         * lib/autotest/general.m4 (AT_INIT): Compute top_builddir,
12028         top_srcdir and srcdir from at_topbuild_2_topsrc and at_testdir.
12029         Load atlocal late enough to dump it in the log.
12030         * m4/atconfig.m4 (AT_CONFIG): Pass them to atconfig.
12032 2001-08-20  Akim Demaille  <akim@epita.fr>
12034         * tests/torture.at (Configuring subdirectories): New test.
12035         * lib/autoconf/general.m4 (_AC_INIT_SRCDIR): Say what you are
12036         looking for.
12037         * m4/atconfig.m4: Be sure the let $[0] be expandable.
12038         (top_srcdir): Fix its computation.
12040 2001-08-20  Akim Demaille  <akim@epita.fr>
12042         * lib/autoconf/general.m4 (_AC_OUTPUT_COMMANDS): Say what you do.
12043         * m4/atconfig.m4 (AT_CONFIG): $1 is now the directory where the
12044         test suite lives.
12045         Create `atconfig' automagically.
12046         Configure atlocal.in if present.
12047         * tests/atconfig.in: Remove.
12048         * tests/atlocal.in: New.
12049         * tests/Makefile.am: Adjust.
12051 2001-08-20  Akim Demaille  <akim@epita.fr>
12053         Huh!?!?!  There are still some user EOF tags used, which prevents
12054         their use in AC_CONFIG_COMMANDS for instance...
12056         * lib/autoconf/general.m4, lib/autoconf/specific.m4,
12057         * lib/autotest/general.m4: Rename the EOF tags as `_ACEOF',
12058         `_CSEOF', or `_ATEOF', as appropriate.
12059         * lib/m4sugar/Makefile.am, lib/autoconf/Makefile.am,
12060         * lib/autotest/Makefile.am (check-local): Enforce this constraint.
12062 2001-08-20  Akim Demaille  <akim@epita.fr>
12064         * tests/base.at, tests/m4sh.at, tests/m4sugar.at,
12065         * tests/semantics.at, tests/tools.at, tests/torture.at:
12066         s/^AT_DATA\(([^][]+),/AT_DATA([$1],/.
12068 2001-08-20  Akim Demaille  <akim@epita.fr>
12070         Autotest invokes M4sh's initialization.
12072         * lib/autotest/general.m4: Adjust the diversion names.
12073         (AT_INIT): Run AS_INIT.
12074         Use the BINSH diversion to invoke /bin/sh.
12075         * tests/base.at, tests/m4sh.at, tests/m4sugar.at, tests/tools.at:
12076         * tests/torture.at: Respect M4sugar and M4sh macro name spaces.
12078 2001-08-20  Akim Demaille  <akim@epita.fr>
12080         Let M4sh have its own diversions.
12082         * lib/autoconf/general.m4 (_m4_divert(BINSH), _m4_divert(REVISION))
12083         (_m4_divert(NOTICE)): Rename as...
12084         * lib/m4sugar/m4msh.m4 (_m4_divert(BINSH), _m4_divert(HEADER-REVISION))
12085         (_m4_divert(HEADER-COMMENT)): these.
12086         (_m4_divert(HEADER-COPYRIGHT), _m4_divert(HEADER-COPYRIGHT)): New.
12087         (_m4_divert(NOTICE)): New, for Libtool.
12088         * lib/autoconf/general.m4 (_m4_divert(PREPARE)): Remove, replaced
12089         long ago with `_m4_divert(GROW)'.
12090         (AC_COPYRIGHT, AC_REVISION, _AC_INIT_NOTICE): Adjust.
12092 2001-08-20  Akim Demaille  <akim@epita.fr>
12094         * tests/base.at, tests/compile.at, tests/foreign.at,
12095         * tests/m4sh.at, tests/m4sugar.at, tests/mktests.sh,
12096         * tests/semantics.at, tests/suite.at, tests/tools.at,
12097         * tests/torture.at: Ask Autotest mode, not Autoconf mode.
12099 2001-08-20  Akim Demaille  <akim@epita.fr>
12101         * bin/autom4te.in (handle_output): Handle @__@.
12103 2001-08-20  Akim Demaille  <akim@epita.fr>
12105         * lib/autoconf/autoconf.m4, lib/autoconf/oldnames.m4,
12106         * lib/autotest/general.m4: Adjust the license.
12108 2001-08-17  Paul Eggert  <eggert@twinsun.com>
12110         * doc/autoconf.texi (Function Portability): Mention snprintf,
12111         following up on a suggestion by Kevin Ryde.
12113 2001-08-17  Akim Demaille  <akim@epita.fr>
12115         * doc/install.texi, doc/autoconf.texi: Use `autoconf', not
12116         `autoconf_manual', as texinfo.tex 2001-06-21.10 chokes on it.
12118 2001-08-17  Akim Demaille  <akim@epita.fr>
12120         * lib/autotest/general.m4 (AT_INIT): Refer to `$as_me.log', not
12121         `$0.log' as for projects where testsuite is in src, we'd have
12122         testsuite.log created in src.
12124 2001-08-17  Akim Demaille  <akim@epita.fr>
12126         * bin/autom4te.in (&parse_args): Recognize --normalize.
12128 2001-08-17  Akim Demaille  <akim@epita.fr>
12130         Start implementing the AC_CHECK_HEADER transition scheme.
12132         * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_NEW)
12133         (_AC_CHECK_HEADER_OLD, _AC_CHECK_HEADER_MONGREL): New.
12134         (AC_CHECK_HEADER): Use them.
12136 2001-08-17  Akim Demaille  <akim@epita.fr>
12138         * doc/autoconf.texi: Work around Texinfo buglets.
12139         (Transformation Rules): One example is enough, users are expected
12140         to have their brains on. And BTW, use DESTDIR.
12141         (dvar): New macro.  Use it.
12143 2001-08-17  Akim Demaille  <akim@epita.fr>
12145         * doc/autoconf.texi (Writing testsuite.at) <AT_CHECK>: Complete.
12146         * lib/autotest/general.m4 (AT_INIT): Use the relative dir when
12147         looking for ChangeLogs.
12149 2001-08-17  Akim Demaille  <akim@epita.fr>
12151         * bin/autom4te.in: --normalize is a new option.
12152         * bin/autoconf.in: Use it.
12154 2001-08-17  Akim Demaille  <akim@epita.fr>
12156         * bin/Makefile.am, lib/Autom4te/Makefile.am, lib/autoconf/Makefile.am
12157         * lib/autotest/Makefile.am, lib/m4sugar/Makefile.am: Add TAGS support.
12159 2001-08-16  Paul Eggert  <eggert@twinsun.com>
12161         * doc/autoconf.texi, doc/install.texi: Put copyright notice at
12162         start, not at end.
12164 2001-08-15  Akim Demaille  <akim@epita.fr>
12166         * doc/Makefile.am (fu): New index, can't use fn because of defmac.
12167         Use it.
12169 2001-08-15  Akim Demaille  <akim@epita.fr>
12171         * doc/autoconf.texi (pr): New index.
12172         (prindex, findex): Use, merge, and output them.
12173         (Environment Variable Index, Output Variable Index)
12174         (Preprocessor Symbol Index, Autoconf Macro Index, M4 Macro Index)
12175         (Autotest Macro Index): Rename as...
12176         (Environment Variables, Output Variables,Preprocessor Symbols)
12177         (Autoconf Macros, M4 Macros, Autotest Macros): these.
12178         * doc/install.texi: Use @command.
12179         (Environment Variables): Rename as...
12180         (Defining Variables): this.
12182 2001-08-15  Akim Demaille  <akim@epita.fr>
12184         * doc/autoconf.texi (Function Portability): sprintf's return
12185         value.
12186         From Kevin Ryde.
12188 2001-08-15  Akim Demaille  <akim@epita.fr>
12190         * Makefile.maint (CVS): New.
12191         (local-check): Run changelog-check. last.
12192         (alpha): Don't depend upon local-check, since...
12193         (cvs-dist): depends upon it.
12195 2001-08-15  Tim Van Holder  <tim.van.holder@pandora.be>
12197         * tests/Makefile.am: Use a clean-local rule to remove
12198         autom4te.cache (it's a directory, not a file.
12199         * Makefile.am: Ditto (but maintainer-clean-local).
12201 2001-08-15  Akim Demaille  <akim@epita.fr>
12203         * bin/autom4te.in (@m4_warning): New.
12204         (&handle_m4): Use it.
12205         * tests/m4sugar.at (m4_warn): Pass `-f' to autom4te to ensure the
12206         warnings are issued at each run.
12207         * tests/atspecific.m4 (AT_CHECK_M4SUGAR, AT_CHECK_M4SH): M4sugar
12208         is in the src tree.
12210 2001-08-15  Akim Demaille  <akim@epita.fr>
12212         * tests/atspecific.m4 (AT_CHECK_AUTOUPDATE): Perl is now required:
12213         don't waste time running `autoupdate --version' works.
12214         * tests/tools.at (autoupdating AC_PREREQ): Likewise.
12216 2001-08-13  Akim Demaille  <akim@epita.fr>
12218         * doc/autoconf.texi (ma): Rename this index as...
12219         (ac): this.
12221 2001-08-13  Akim Demaille  <akim@epita.fr>
12223         * Makefile.am: Remove dead code and dead comments.
12224         (pdf, html): New targets.
12225         * doc/autoconf.texi (Using Autotest): New chapter.
12226         * doc/Makefile.am (pdf): New targets.
12227         (CLEANFILES): Adjust.
12229 2001-08-13  Akim Demaille  <akim@epita.fr>
12231         * lib/autotest/general.m4 (AT_INIT): Log the start/stop dates and
12232         duration of the test suite.
12234 2001-08-12  Alexandre Duret-Lutz  <duret_g@epita.fr>
12236         * tests/semantics.at (AC_C_BIGENDIAN): Explicitelly save and load
12237         endianness for comparison instead of relying on AT_CHECK_ENV.
12239 2001-08-11  Paul Eggert  <eggert@twinsun.com>
12241         * doc/autoconf.texi, doc/install.texi: Add a copyright notice
12242         to the INSTALL file.
12244 2001-08-11  Paul Eggert  <eggert@twinsun.com>
12246         * NEWS: The autoconf manual now is distributed under the terms
12247         of the GNU Free Documentation License.
12249         * doc/autoconf.texi: Switch from old style copyright notice to FDL.
12250         Add an appendix "Copying This Manual" for the FDL.
12252         * doc/fdl.texi: New file, from
12253         <http://www.gnu.org/licenses/fdl.texi>.
12255         * doc/Makefile.am (autoconf_TEXINFOS): Add fdl.texi.
12257 2001-08-10  Paul Eggert  <eggert@twinsun.com>
12259         * AUTHORS, BUGS, ChangeLog, ChangeLog.0, ChangeLog.1,
12260         ChangeLog.2, GNUmakefile, Makefile.maint, NEWS, README,
12261         README-alpha, TODO, configure.ac, lib/autoconf/Makefile.am,
12262         m4/atconfig.m4, m4/init.m4, m4/m4.m4, m4/missing.m4,
12263         m4/sanity.m4, tests/README, tests/aclocal.m4,
12264         tests/atspecific.m4, tests/base.at, tests/compile.at,
12265         tests/foreign.at, tests/m4sh.at, tests/m4sugar.at,
12266         tests/semantics.at, tests/suite.at, tests/tools.at,
12267         tests/torture.at: Add copyright notice.
12269         * tests/mktests.sh: Update year in copyright notice.
12271 2001-08-12  Alexandre Duret-Lutz  <duret_g@epita.fr>
12273         * tests/semantics.at (AC_C_BIGENDIAN): New test.
12275 2001-08-11  Alexandre Duret-Lutz  <duret_g@epita.fr>
12277         * lib/autoconf/c.m4 (AC_C_BIGENDIAN): Handle ACTION-IF-TRUE,
12278         ACTION-IF-FALSE, and ACTION-IF-UNKNOWN.
12279         * doc/autoconf.texi (C Compiler Characteristics): Update
12280         documentation for AC_C_BIGENDIAN.
12282 2001-08-11  Alexandre Duret-Lutz  <duret_g@epita.fr>
12284         * lib/autoconf/c.m4 (AC_C_BIGENDIAN): Guess endianness by grep'ing
12285         magic values from an object file when cross-compiling.
12286         Based on code by Guido Draheim <Guido.Draheim@gmx.de>.
12288 2001-08-10  Akim Demaille  <akim@epita.fr>
12290         * bin/autom4te.in (&handle_output): Don't use `grep' with side
12291         effects.
12292         Suggested by Russ Allbery.
12294 2001-08-10  Ralf Corsepius  <corsepiu@faw.uni-ulm.de>
12296         * lib/autoconf/general.m4 (_AC_OUTPUT_SUBDIRS): Propagate the
12297         current $prefix to the sub-configures.
12299 2001-08-09  Tim Van Holder  <tim.van.holder@pandora.be>
12301         * lib/autoconf/lang.m4: Ignore *.xSYM when looking for an executable
12302         extension (needed on BeOS).  Reported by Guido van Rossum.
12304 2001-08-09  Akim Demaille  <akim@epita.fr>
12306         * bin/autom4te.in ($icache): Load it only if older than autom4te.
12308 2001-08-07  Akim Demaille  <akim@epita.fr>
12310         * lib/autotest/general.m4 (AT_INIT): All the `at-*' are to be
12311         removed.
12312         (at-setup-line): Huh?  Be a variable `at_setup_line', not a file.
12313         No need to remove the files before and after the each test, before
12314         each test and at the end of the suite is enough.
12315         Display only the children `times', not the shell's.
12316         If the test failed or was skipped, at-times is not available.
12318 2001-08-07  Akim Demaille  <akim@epita.fr>
12320         Always produce testsuite.log, including when there are no
12321         failures.  This helps getting information on skipped tests, and
12322         duration of the tests.  Err, implement the latter btw.
12324         * lib/autotest/general.m4 (AT_INIT): Set up fd 6 for the log.
12325         Dump information on the first run of each test.
12326         (AT_CLEANUP): Create `at-times' containing the duration of the
12327         test group.
12329 2001-08-07  Akim Demaille  <akim@epita.fr>
12331         The use of `dumpstat' revealed that `len' was used although it
12332         should not.  m4_text_wrap was using it, but in the Autoconf world
12333         where it is legal.  Hence (i) test M4sh in its own world, not
12334         Autoconf's, and (ii), ahem, fix the bug :)
12336         * lib/autotest/general.m4: Be sure the set good quotes, as tracing
12337         does not like `' instead of [].
12338         (AT_INIT): Forbid `^_?AT_'.
12339         And don't output such tokens.
12340         * tests/Makefile.am (CLEANFILES): Add `script', `script.s4g',
12341         `script.as', and `autom4te.cache'.
12342         Remove `empty' and `macro' which are no longer used.
12343         * tests/atspecific.m4 (AT_CHECK_M4SUGAR, AT_CHECK_M4SH): New.
12344         * tests/m4sugar.at: Use it.
12345         * lib/m4sugar/m4sugar.m4: Use `m4_len' not `len'.
12347 2001-08-07  Akim Demaille  <akim@epita.fr>
12349         * bin/autoconf.in, bin/autoheader.in: --force, -f is a new option.
12351 2001-08-07  Alexandre Duret-Lutz  <duret_g@epita.fr>
12353         * bin/autom4te.in (handle_output): Typo in quadrigraph substitution.
12355 2001-08-04  Akim Demaille  <akim@epita.fr>
12357         * lib/autoconf/functions.m4 (AC_FUNC_ALLOCA, AC_FUNC_ERROR_AT_LINE)
12358         (AC_FUNC_FSEEKO, AC_FUNC_OBSTACK): Use AC_LANG_IFELSE, not
12359         AC_TRY_LINK.
12360         * lib/autoconf/headers.m4 (AC_HEADER_MAJOR): Likewise.
12361         * lib/autoconf/fortran.m4 (_AC_LANG_PROGRAM_C_F77_HOOKS)
12362         (AC_F77_MAIN): Likewise.
12364 2001-08-04  Akim Demaille  <akim@epita.fr>
12366         Don't rely on M4sugar outputting the patterns in files, since we
12367         might process the output _without_ running m4, hence without these
12368         files.
12370         * lib/m4sugar/m4sugar.m4 (m4_init): No need for `m4_tmpdir'.
12371         * bin/autom4te.in (@Request::includes): Remove, unused.
12372         (@Request::source): Rename as...
12373         (@Request::input): this.
12374         (@preselect): Add `m4_pattern_forbid' and `m4_pattern_allow'.
12375         (&handle_output): Fetch the patterns from the traces.
12376         `$forbidden' and `$allowed' are constant: use m//o.
12377         (&handle_m4): M4sugar no longer wants `m4_tmpdir'.
12378         (m4_pattern_forbid, m4_pattern_allow): Adjust for tracing only.
12380 2001-08-04  Akim Demaille  <akim@epita.fr>
12382         `autoconf && autoheader' is sped up.  Now, speed up `autoheader &&
12383         autoconf', i.e., in addition to caching traces, cache the output.
12385         * bin/autom4te.in (Request::cache): Rename as...
12386         (Request::id): this.
12387         ($cache, $icache, $tcache, $ocache): New.
12388         (&handle_m4): Save M4 output in the cache instead of $tmp.
12389         (&handle_output): Adjust.
12390         (&up_to_date_p): Check that the output cache is up to date too.
12391         (top level): Run `&handle_m4' iff force or the cache is invalid.
12392         Run `&handle_output' if the output cache is more recent.
12394 2001-08-04  Akim Demaille  <akim@epita.fr>
12396         * bin/autom4te.in ($force): New.
12397         (&parse_args, &print_usage): -f, --force is a new option.
12398         (&handle_output): CPP directives might have spaces after `#'.
12399         (&parse_args): The first file only can be frozen.
12401 2001-08-04  Akim Demaille  <akim@epita.fr>
12403         Don't let autom4te compute the `include' traces several times:
12404         first check that the trace cache file is up to date, and then
12405         compare its timestamp with that of the output.
12407         * bin/autom4te.in, bin/autoupdate.in, bin/autoscan.in: Normalize
12408         the preamble.  Don't require 5.005 as Autom4te::General does it,
12409         and better yet (use `use', not `require'!).
12410         * lib/Autom4te/Struct.pm: Rename the last occurrences of
12411         Class::Struct as Autom4te::Struct.
12412         * lib/Autom4te/General.pm (File::stat): Use it.
12413         (&mtime): New, export it.
12414         * bin/autom4te.in: Use it.
12415         Declare `$req' is invalid if it is outdated.
12416         Don't declare it valid before saving it if something went wrong.
12418 2001-08-04  Akim Demaille  <akim@epita.fr>
12420         Autom4te shall not encode Autoconf data, and preselecting traces
12421         must be proposed to the users.
12423         * bin/autom4te.in (@required_trace): Remove.
12424         (@preselect): New.
12425         (&parse_args, &print_usage): -p, --preselect is a new option.
12426         (&up_to_date_p): Adjust.
12427         * bin/autoconf.in: Preselect some Autoconf macros.
12429 2001-08-04  Akim Demaille  <akim@epita.fr>
12431         * tests/tools.at (autoconf --trace: user macros): Check traces on
12432         macros invoked without arguments, and macros invoked with multiple
12433         lines arguments.
12435 2001-08-03  Alexandre Duret-Lutz  <duret_g@epita.fr>
12437         * bin/autom4te.in (handle_traces): Fix rewriting of traces without
12438         arguments.
12440 2001-08-03  Akim Demaille  <akim@epita.fr>
12442         * bin/autoconf.in ($@): Work around the usual sh bug.
12443         From Nicolas Joly.
12445 2001-08-03  Akim Demaille  <akim@epita.fr>
12447         Clean up the handling of the M4 builtins tracing exception.
12449         * bin/autom4te.in (Request::request): Don't complete M4 builtins
12450         trace requests.
12451         (@m4_builtins): Rename as...
12452         (@m4_builtin): this.
12453         (%m4_builtin_alternate_name): New.
12454         (&parse_args): Complete the trace requests with alternate names.
12455         (&handle_traces): Hence no longer do it here.
12456         (&trace_requests): Remove, unused.
12458 2001-08-03  Akim Demaille  <akim@epita.fr>
12460         * doc/autoconf.texi (Redefined M4 Macros): Document m4_exit,
12461         m4_if, and m4_wrap.
12463 2001-08-03  Akim Demaille  <akim@epita.fr>
12465         * lib/m4sugar/m4sugar.m4 (m4_init): Also forbid `_m4_*' tokens.
12466         (m4_divert_pop): Dump the whole diversion stack when a diversion
12467         mismatch happens.
12468         * bin/autom4te.in (&handle_output): Remember of the first
12469         occurrence of a possibly undefined macro, not the last.
12470         Complain about the possibly undefined macros in the same order as
12471         the appear in the output.
12472         * lib/autoconf/Makefile.am (autoconf.m4f): List its dependencies.
12473         * tests/tools.at (autoconf: forbidden tokens, basic)
12474         (autoconf: forbidden tokens, exceptions): No longer sort
12475         autoconf's stderr, as it is now deterministic.
12476         Check that `dnl' is caught.
12478 2001-08-01  Akim Demaille  <akim@epita.fr>
12480         * configure.ac: Bump to 2.52c.
12482 2001-08-01  Akim Demaille  <akim@epita.fr>
12484         Version 2.52b.
12486         * lib/Autom4te/Makefile.am (perllibdir): s/Autoconf/Autom4te/.
12488 2001-08-01  Akim Demaille  <akim@epita.fr>
12490         Version 2.52a.
12492 2001-08-01  Akim Demaille  <akim@epita.fr>
12494         * lib/Autom4te/General.pm: Use `carp' and `croak', not `warn' and
12495         `die'.
12496         (&END): New.
12497         * bin/autoconf.in, bin/autom4te.in, bin/autoupdate.in: Remove your
12498         `END', as `Autom4te::General::END' will be triggered.
12499         * bin/autoupdate.in, bin/autoscan.in: Improve error messages accuracy.
12500         * bin/autoupdate.in (File::Compare, File::Copy): Use them instead of
12501         system to run `mv', `rm', and `cmp'.
12503 2001-08-01  Akim Demaille  <akim@epita.fr>
12505         * lib/Autom4te/General.pm (&unique): New.
12506         * bin/autoscan.in (&output): Use it to issue trace requests once.
12508 2001-08-01  Akim Demaille  <akim@epita.fr>
12510         * lib/Autom4te/General.pm: New.
12511         * bin/autom4te.in (Autom4te::General): Use it.
12512         ($me, $tmp, $verbose, $debug, &mktmpdir, &verbose, &xsystem)
12513         (&find_configure_ac, &find_slave): Remove.
12514         * bin/autoscan.in: Likewise.
12515         * bin/autoupdate.in: Likewise.
12517 2001-08-01  Akim Demaille  <akim@epita.fr>
12519         * autoconf.in, autom4te.in, autoscan.in, ifnames.in,
12520         * autoheader.in, autoreconf.in, autoupdate.in: Move to...
12521         * bin: here, new directory.
12522         * lib/Autoconf: Rename as...
12523         * lib/Autom4te: this, to please case insensitive junkie OSes.
12525 2001-08-01  Akim Demaille  <akim@epita.fr>
12527         * autom4te.in ($m4): Handle the --nesting-limit.
12528         * autoconf.in (M4): Remove.
12530 2001-08-01  Akim Demaille  <akim@epita.fr>
12532         * autoconf.in ($AWK): Remove, no longer used.
12533         * test/tools.at: Use AT_CHECK_AUTOCONF.
12534         (AWK portability): Remove, for autoconf no longer uses AWK.
12535         (Syntax of the Perl scripts): New.
12536         * configure.ac: autoconf no longer needs an AWK with a good
12537         regexp engine.
12538         Use a static test on AC_PACKAGE_VERSION.
12539         * autom4te.in (&up_to_date_p): Output depends on the arguments.
12540         * lib/autoconf/Makefile.am: Ship version.m4, maintainer file.
12541         * tests/atconfig.in (PERL): New.
12543 2001-08-01  Akim Demaille  <akim@epita.fr>
12545         * lib/autoconf/lang.m4 (AC_LANG(C), AC_LANG_C, _AC_LANG_ABBREV(C))
12546         (AC_LANG(C++), AC_LANG_CPLUSPLUS, _AC_LANG_ABBREV(C++))
12547         (AC_LANG_SOURCE(C), AC_LANG_PROGRAM(C), AC_LANG_CALL(C))
12548         (AC_LANG_FUNC_LINK_TRY(C), AC_LANG_BOOL_COMPILE_TRY(C))
12549         (AC_LANG_INT_SAVE(C), _AC_ARG_VAR_CPPFLAGS, _AC_ARG_VAR_LDFLAGS)
12550         (AC_LANG_PREPROC(C), _AC_PROG_PREPROC_WORKS_IFELSE, AC_PROG_CPP)
12551         (AC_LANG_COMPILER(C), ac_cv_prog_gcc, AC_PROG_CC, _AC_PROG_CC_G)
12552         (AC_PROG_GCC_TRADITIONAL, AC_PROG_CC_C_O, AC_LANG_PREPROC(C++))
12553         (AC_PROG_CXXCPP, AC_LANG_COMPILER(C++), ac_cv_prog_gxx)
12554         (AC_PROG_CXX, _AC_PROG_CXX_G, _AC_PROG_CXX_EXIT_DECLARATION)
12555         (AC_PROG_CC_STDC, AC_C_CROSS, AC_C_CHAR_UNSIGNED, AC_C_LONG_DOUBLE)
12556         (AC_C_BIGENDIAN, AC_C_INLINE, AC_C_CONST, AC_C_VOLATILE)
12557         (AC_C_STRINGIZE, AC_C_PROTOTYPES): Move to...
12558         * lib/autoconf/c.m4: here, new file.
12560         * lib/autoconf/lang.m4 (AC_LANG(Fortran 77), AC_LANG_FORTRAN77)
12561         (_AC_LANG_ABBREV(Fortran 77), AC_LANG_SOURCE(Fortran 77))
12562         (AC_LANG_PROGRAM(Fortran 77), AC_LANG_CALL(Fortran 77))
12563         (AC_LANG_PREPROC(Fortran 77), AC_LANG_COMPILER(Fortran 77))
12564         (ac_cv_prog_g77, AC_PROG_F77, _AC_PROG_F77_G, AC_PROG_F77_C_O)
12565         (_AC_PROG_F77_V_OUTPUT, _AC_PROG_F77_V, AC_F77_LIBRARY_LDFLAGS)
12566         (AC_F77_DUMMY_MAIN, _AC_LANG_PROGRAM_C_F77_HOOKS, AC_F77_MAIN)
12567         (_AC_F77_NAME_MANGLING, AC_F77_NAME_MANGLING, AC_F77_WRAPPERS)
12568         (AC_F77_FUNC): Move to...
12569         * lib/autoconf/fortran.m4: here, new file.
12571 2001-08-01  Akim Demaille  <akim@epita.fr>
12573         * acfunctions.m4: Rename as...
12574         * lib/autoconf/functions.m4: this.
12575         * acgeneral.m4: Rename as...
12576         * lib/autoconf/general.m4: this.
12577         * acheaders.m4: Rename as...
12578         * lib/autoconf/headers.m4: this.
12579         * aclang.m4: Rename as...
12580         * lib/autoconf/lang.m4: this.
12581         * acoldnames.m4: Rename as...
12582         * lib/autoconf/oldnames.m4: this.
12583         * acspecific.m4: Rename as...
12584         * lib/autoconf/specific.m4: this.
12585         * actypes.m4: Rename as...
12586         * lib/autoconf/types.m4: this.
12587         * autoconf.m4: Rename as...
12588         * lib/autoconf/autoconf.m4: this.
12590         * m4sugar.m4: Rename as...
12591         * lib/m4sugar/m4sugar.m4: this.
12592         * m4sh.m4: Rename as...
12593         * lib/m4sugar/m4sh.m4: this.
12595         * tests/atgeneral.m4: Rename as...
12596         * lib/autotest/general.m4: this.
12598         * acfunctions: Rename as...
12599         * lib/autoscan/functions: this.
12600         * acheaders: Rename as...
12601         * lib/autoscan/headers: this.
12602         * acidentifiers: Rename as...
12603         * lib/autoscan/identifiers: this.
12604         * aclibraries: Rename as...
12605         * lib/autoscan/libraries: this.
12606         * acmakevars: Rename as...
12607         * lib/autoscan/makevars: this.
12608         * acprograms: Rename as...
12609         * lib/autoscan/programs: this.
12611 2001-08-01  Akim Demaille  <akim@epita.fr>
12613         * doc/autoconf.texi: Moving/deleting open files is not portable.
12614         Portability issues for `.' (source), and more information about sed.
12616 2001-07-25  Steven G. Johnson  <stevenj@alum.mit.edu>
12618         * aclang.m4 (AC_F77_LIBRARY_LDFLAGS): Ignore -libmil (on Solaris),
12619         which has a special meaning and is not a reference to libibmil.a.
12620         Reported by Matteo Frigo.
12622 2001-07-25  Pavel Roskin  <proski@gnu.org>
12624         * autom4te.in (mktmpdir): Strip trailing newline from mktemp
12625         output.
12627 2001-07-25  Akim Demaille  <akim@epita.fr>
12629         * autoconf.in: Try to define the variables before using them.
12630         * autom4te.in ($perllibdir): Use `$autom4te_perllibdir' as envvar
12631         instead of `$perllibdir'.
12632         * tests/atconfig.in ($autom4te_perllibdir): Export it.
12634 2001-07-25  Akim Demaille  <akim@epita.fr>
12636         * autoconf.in (ac_LF_and_DOT): Remove, unused.
12638 2001-07-24  Akim Demaille  <akim@epita.fr>
12640         Let autoconf use autom4te for traces.
12642         * autoconf.in ($task, task trace): Remove, merely pass --trace to
12643         autom4te.
12644         * autoheader.in: Don't pass `-' to autoconf, rather, a tmp file.
12645         (Because I found no way for autom4te to accept `-').
12646         * autom4te.in (&Request::request): Beware of M4 builtins.
12647         (END): Don't try to remove the content of an empty dir.
12648         (&parse_args): Default is `$f:$l:$n:$%', not `$f:$l:$n:$*'.
12649         (&handle_output): Set a default value to `$forbidden'.
12650         * autoupdate.in (&verbose, &xsystem): New, from autom4te.in.
12651         ($autoconf): Pass --debug and --verbose.
12652         * tests/atspecific.m4 (AT_CHECK_AUTOCONF): Clean up autom4te's
12653         cache.
12655 2001-07-24  Akim Demaille  <akim@epita.fr>
12657         Let autoconf use autom4te to create configure.
12659         * autoconf.in ($automate): New var.
12660         (task script): Use autom4te.
12661         * autom4te.in (File::Spec): Use it.
12662         (&find_file): New.
12663         (&parse_args): --warning is -W, not -w.
12664         Find the top level files.
12665         (&handle_m4): Pass the warnings flags.
12666         Don't report verbosely m4's failures, unless requested.
12667         (&handle_output): Don't complain for forbidden tokens in comments.
12668         Be sure to report all the forbidden tokens within a single line.
12669         (&trace_format_to_m4): Preserve `$_'.
12670         (&handle_traces): Sort the output macros.
12671         (&up_to_date_p): Find the files before trying to get its time stamp.
12673 2001-07-24  Akim Demaille  <akim@epita.fr>
12675         * Makefile.am: Ship, build and install Autom4te.
12676         (SUBDIRS): Add lib.
12677         * lib/Autoconf/Struct.pm: New, from Automake 1.5.
12678         * configure.in: Require Perl.
12679         * man/autom4te.in: New.
12681 2001-07-19  Paul Eggert  <eggert@twinsun.com>
12683         * doc/autoconf.texi (Cache Checkpointing): Use AC_MSG_ERROR in
12684         example, rather than (exit 1); exit (which isn't portable).
12686 2001-07-18  Akim Demaille  <akim@epita.fr>
12688         Version 2.52.
12690 2001-07-18  Akim Demaille  <akim@epita.fr>
12692         The C-Fortran 77 hooks are available only once AC_F77_DUMMY_MAIN
12693         was run, while they are needed also when it is expanded.
12694         Reported by Nicolas Joly.
12696         * aclang.m4 (AC_F77_DUMMY_MAIN): Define _AC_LANG_PROGRAM_C_F77_HOOKS.
12697         (AC_LANG_PROGRAM(C)): Use it instead of depending upon
12698         AC_F77_DUMMY_MAIN being expanded.
12700 2001-07-18  Akim Demaille  <akim@epita.fr>
12702         * configure.in: Bump to 2.51a.
12704 2001-07-17  Akim Demaille  <akim@epita.fr>
12706         Version 2.51.
12708 2001-07-17  Akim Demaille  <akim@epita.fr>
12710         * aclang.m4 (AC_F77_DUMMY_MAIN): Let the interface be more
12711         Autoconfy: $1 = action-if-found, $2 = action-if-not-found.
12713 2001-07-17  Akim Demaille  <akim@epita.fr>
12715         The runtime test for AC_FUNC_GETPGRP fails when prototypes are
12716         used.  Well, then use the prototypes when you can, and runtime as
12717         a last resort.
12718         Reported by Artur Frysiak
12720         * acfunctions.m4 (_AC_FUNC_GETPGRP_TEST): New.
12721         (AC_FUNC_GETPGRP): Use it.
12722         First try to compile with 0-ary or 1-ary calls.
12724 2001-07-17  Akim Demaille  <akim@epita.fr>
12726         * actypes.m4 (_AC_CHECK_TYPE_REPLACEMENT_TYPE_P): `foo_t' is a
12727         replacement type.
12728         From Paul Eggert.
12730 2001-07-17  Akim Demaille  <akim@epita.fr>
12732         * Makefile.maint: Sync. with cppi 1.10.
12734 2001-07-17  Akim Demaille  <akim@epita.fr>
12736         * aclang.m4 (AC_LANG_PROGRAM(C)): Output F77_DUMMY_MAIN only when
12737         AC_F77_DUMMY_MAIN has been run.
12738         From Pavel Roskin and Steven G. Johnson.
12740 2001-07-17  Akim Demaille  <akim@epita.fr>
12742         * configure.in: Rename as...
12743         * configure.ac: this.
12745 2001-07-17  Akim Demaille  <akim@epita.fr>
12747         * Makefile.am (INSTALL.txt): Don't use $@ and $< in non suffix
12748         rules.
12749         From Marc Espie.
12750         * Makefile.maint (release-archive-dir): Rename as...
12751         (release_archive_dir): this, so that it can be specialized in
12752         Makefile.
12754 2001-07-14  Akim Demaille  <akim@epita.fr>
12756         * configure.in: Bump to 2.50d.
12758 2001-07-14  Akim Demaille  <akim@epita.fr>
12760         Version 2.50c.
12761         * Makefile.maint (alpha): Typo.
12763 2001-07-14  Akim Demaille  <akim@epita.fr>
12765         * doc/autoconf.texi (Limitations of Make): Macro names and underscore.
12767 2001-07-14  Akim Demaille  <akim@epita.fr>
12769         * config/config.guess, config/config.sub, config/texinfo.tex
12770         * doc/standards.texi, doc/make-stds.texi: Update.
12772 2001-07-14  Akim Demaille  <akim@epita.fr>
12774         * Makefile.maint (cvs-check, cvs-tag-check, cvs-diff-check): New.
12776 2001-07-14  Akim Demaille  <akim@epita.fr>
12778         * Makefile.maint (maintainer-check): Rename as...
12779         (maintainer-distcheck): this.
12780         (changelog-check, static-check): New.
12781         Use them.
12783 2001-07-14  Kevin Ryde  <user42@zip.com.au>
12785         * doc/autoconf.texi (C++ Compilers Characteristics): Last resort
12786         for CXX is g++, not gcc.
12788 2001-07-14  Akim Demaille  <akim@epita.fr>
12790         * doc/autoconf.texi (Files): New subsection.
12792 2001-07-14  Akim Demaille  <akim@epita.fr>
12794         * doc/autoconf.texi (C Compiler, Fortran 77 Compiler): Be subsections
12795         of...
12796         (Generic Compiler Characteristics): this.
12797         (C++ Compiler): New subsection.
12799 2001-07-14  Akim Demaille  <akim@epita.fr>
12801         * autoscan.in: Use IO::File.
12802         Adjust all the routines to use it.
12803         ($log): New file (autoscan.log).
12804         (output): Dump detailed logs into $log, and a shortened version to
12805         stderr.
12806         (&scan_makefile): Refine the regexp catching tokens in the code.
12807         * doc/autoconf.texi (autoscan Invocation): Document `autoscan.log'
12808         and the `configure.ac' checking feature.
12810 2001-07-12  Akim Demaille  <akim@epita.fr>
12812         For some AWK, such as on HPUX 11, `xfoo' does not match `foo|^bar'.
12813         Reported by Michael Elizabeth Chastain.
12815         * autoconf.in: Refuse such AWK.
12816         * configure.in: Likewise.
12817         * Makefile.am (acversion.m4): Do not use move-if-change this file
12818         has dependencies.
12819         * doc/autoconf.texi (Fortran 77 Compiler): Some typos.
12821 2001-07-10  Jens Petersen  <petersen@redhat.com>
12823         * autoscan.in (&scan_makefile): Improve programs regexp to parse
12824         things like "g++", "file.c" and "some-conf" as tokens.
12825         (&scan_file): Match C++ files extensions.
12826         If the filename extension is C++ then ask for c++.
12828 2001-07-05  Steven G. Johnson  <stevenj@alum.mit.edu>
12830         * aclang.m4 (AC_F77_DUMMY_MAIN): Use AC_TRY_LINK, not
12831         AC_TRY_LINK_FUNC, to check whether defining a dummy
12832         main-like routine is needed for linking with F77 libs.
12834 2001-07-05  Pavel Roskin  <proski@gnu.org>
12836         * aclocal.m4 (_AC_PROG_CXX_EXIT_DECLARATION): Remove conftest*
12837         after using break.
12838         (_AC_PROG_F77_V_OUTPUT): Remove conftest*, not conftest.* after
12839         linking.
12841 2001-07-05  Akim Demaille  <akim@epita.fr>
12843         * Makefile.am (move_if_change): New.  Use it instead of `mv'.
12844         (acversion.m4): Name it `$(srcdir)/acversion.m4' to ease broken
12845         Makes' lives.
12846         Reported by Nicolas Joly.
12848 2001-07-04  Akim Demaille  <akim@epita.fr>
12850         * acgeneral.m4 (_AC_RUN_IFELSE): Remove conftest.o when cleaning
12851         up.
12852         * acfunctions.m4 (AC_FUNC_WAIT3): Use `break' to silent some
12853         warnings from compilers.
12854         * aclang.m4 (_AC_LANG_COMPILER_GNU): Log the version information
12855         for all the compilers, not only GNU.  Hence move from here...
12856         (AC_PROG_CC, AC_PROG_CXX, AC_PROG_F77): to here.
12858 2001-07-04  Akim Demaille  <akim@epita.fr>
12860         * acfunctions.m4 (AC_FUNC_STRTOD, AC_FUNC_STRERROR_R)
12861         (AC_FUNC_STRCOLL, AC_FUNC_WAIT3): Use AC_RUN_IFELSE and
12862         AC_COMPILE_IFELSE.
12864 2001-07-04  Akim Demaille  <akim@epita.fr>
12866         * acgeneral.m4 (_AC_INCLUDES_DEFAULT_REQUIREMENTS): Actually apply
12867         the ``strings.h'' change claimed below.
12869 2001-07-04  Akim Demaille  <akim@epita.fr>
12871         * aclang.m4 (_AC_LANG_COMPILER_GNU): s/-dumpspecs/-v/.
12873 2001-07-04  Akim Demaille  <akim@epita.fr>
12875         * acgeneral.m4 (_AC_INCLUDES_DEFAULT_REQUIREMENTS): Include
12876         strings.h if usable with string.h.
12877         Suggested by Paul Eggert.
12879 2001-07-04  Akim Demaille  <akim@epita.fr>
12881         * autoscan.in (&scan_file): Skip FILE if there is FILE.in.
12882         From Jens Petersen.
12884 2001-07-03  Akim Demaille  <akim@epita.fr>
12886         * acgeneral.m4 (_AC_OUTPUT_CONFIG_STATUS): Specify CONFIG_FILES
12887         etc. in the log.
12889 2001-07-03  Akim Demaille  <akim@epita.fr>
12891         * acheaders.m4 (AC_CHECK_HEADER): When INCLUDES are set, use the
12892         compiler, not the preprocessor.
12893         * acgeneral.m4 (_AC_INCLUDES_DEFAULT_REQUIREMENTS): No longer use
12894         dedicated code to check for inttypes.h, as AC_CHECK_HEADERS does
12895         the right thing.
12896         * Makefile.am (.m4.m4f): Emphasize M4 error messages and fail
12897         earlier if there are.
12899 2001-07-03  Akim Demaille  <akim@epita.fr>
12901         * autoscan.in ($initfile): Remove.
12902         (&find_file): Rename as...
12903         (&scan_file): this.
12904         Immediately scan the current file, instead of gathering them, and
12905         later having them handled by &scan_files.
12906         (&scan_files): Merely invoke Find::File.
12907         Adjust.
12909 2001-07-02  Akim Demaille  <akim@epita.fr>
12911         * autoscan.in: Formatting changes, matching the invocation order.
12912         (File::Find): Use it instead of Perl 4's `find.pl'.
12913         (&wanted): Rename as...
12914         (&find_file): this.
12916 2001-07-01  Pavel Roskin  <proski@gnu.org>
12918         * aclang.m4 (AC_F77_DUMMY_MAIN): Remove conftest* after using
12919         break in the argument to AC_TRY_LINK_FUNC.
12920         (AC_F77_MAIN): Remove conftest* after using break in the
12921         argument to AC_TRY_LINK.
12923 2001-07-01  Steven G. Johnson  <stevenj@alum.mit.edu>
12925         Add alternate 'main' routine detection for linking C/C++ with Fortran,
12926         fixing link failures for e.g. AC_F77_WRAPPERS on NetBSD.
12928         * aclang.m4 (AC_F77_DUMMY_MAIN): New macro to detect whether a
12929         dummy alternate main is required even if the user provides her own
12930         'main'.
12931         (AC_F77_MAIN): New macro to detect whether it is possible to
12932         provide an alternate 'main' function name, using the 'main' from
12933         the Fortran libraries.
12934         (AC_LANG_PROGRAM(C)): Use F77_DUMMY_MAIN, if it is defined, so that
12935         cross-language link tests can be performed successfully.
12936         (_AC_F77_NAME_MANGLING): Require AC_F77_DUMMY_MAIN.  Also put $FLIBS
12937         after $LIBS, for consistency; this should be the general rule since
12938         the user may want to link to Fortran libraries that require $FLIBS.
12939         * doc/autoconf.texi: Document AC_F77_DUMMY_MAIN and AC_F77_MAIN.
12941 2001-06-29  Pavel Roskin  <proski@gnu.org>
12943         * atgeneral.m4 (AT_CHECK): Add a newline to the end of
12944         at-stdout and at-stderr instead of removing the newline
12945         from the echo output, which is not guaranteed to work.
12947 2001-06-28  Jens Petersen  <petersen@redhat.com>
12949         * aclang.m4 (_AC_PROG_CXX_EXIT_DECLARATION): Only add declaration to
12950         confdefs.h when non-zero.
12952 2001-06-28  Akim Demaille  <akim@epita.fr>
12954         * configure.in: Bump to 2.50c.
12956 2001-06-26  Akim Demaille  <akim@epita.fr>
12958         Version 2.50b.
12960 2001-06-26  Akim Demaille  <akim@epita.fr>
12962         Version 2.50a.
12964 2001-06-25  Pavel Roskin  <proski@gnu.org>
12966         * tests/atspecific.m4 (AT_CHECK_MACRO): Accept one more
12967         argument, AUTOCONF-FLAGS.
12968         * tests/mktests.sh (update_exclude_list): Add
12969         AC_SYS_RESTARTABLE_SYSCALLS and AC_FUNC_WAIT3.
12970         * tests/semantics.at: Test AC_SYS_RESTARTABLE_SYSCALLS and
12971         AC_FUNC_WAIT3 with "-W no-obsolete".
12973 2001-06-25  Akim Demaille  <akim@epita.fr>
12975         * tests/foreign.at (libtool): Fix the `libtoolize --version' decoding.
12977 2001-06-25  Akim Demaille  <akim@epita.fr>
12979         * autoscan.in (%macro): Now maps from word to list of macros.
12980         (&init_tables): Die when a word which is already handled by
12981         explicit macros is mapped to the default macro.
12982         (&print_unique): Remove, inlined in...
12983         (&output_kind): here.
12984         (File::Basename): Use it.
12985         (&output): Sort the CONFIG_FILES.
12986         * acheaders: Normalize.
12987         * acfunctions: Likewise.
12989 2001-06-25  Akim Demaille  <akim@epita.fr>
12991         * aclang.m4 (_AC_LANG_COMPILER_GNU): If GNU, dump the compiler
12992         characteristics in the logs.
12993         Suggested by Mo DeJong.
12995 2001-06-24  Akim Demaille  <akim@epita.fr>
12997         * acfunctions.m4 (AM_FUNC_ERROR_AT_LINE, AM_FUNC_FNMATCH)
12998         (AM_FUNC_MKTIME, AM_FUNC_OBSTACK, AM_FUNC_STRTOD): Reactivated.
12999         * doc/autoconf.texi (Autoconf 2.13): New section.
13001 2001-06-24  Akim Demaille  <akim@epita.fr>
13003         * autoconf.in (Task traces): Separate the error messages from the
13004         traces to improve robustness.
13006 2001-06-23  Akim Demaille  <akim@epita.fr>
13008         * tests/torture.at (AC_ARG_VAR): Make it a single test instead of
13009         three as failures are unlikely, and speed matters.
13011 2001-06-23  Akim Demaille  <akim@epita.fr>
13013         * doc/autoconf.texi (Redefined M4 Macros): New.
13015 2001-06-23  Akim Demaille  <akim@epita.fr>
13017         * acgeneral.m4 (_AC_INCLUDES_DEFAULT_REQUIREMENTS): Consider
13018         inttypes.h is missing if it conflicts with sys/types.h, as on IRIX
13019         5.3.
13021 2001-06-23  Paolo Bonzini  <bonzini@gnu.org>
13023         * acgeneral.m4 (_AC_OUTPUT_CONFIG_STATUS): Defer parsing of
13024         config.status targets to after the evaluation of the INIT-CMDS.
13025         Double quote config.status targets (used to be single quoted).
13027 2001-06-23  Akim Demaille  <akim@epita.fr>
13029         * tests/torture.at (CONFIG_FILES, HEADERS, LINKS and COMMANDS):
13030         Check the content of the created file.
13031         Check the ./config.status command line invocation.
13033 2001-06-23  Akim Demaille  <akim@epita.fr>
13035         * tests/foreign.at (Libtool): Reject prehistoric versions.
13037 2001-06-23  Akim Demaille  <akim@epita.fr>
13039         * aclang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Try to be robust to
13040         preexisting files matching a.*.
13042 2001-06-23  Akim Demaille  <akim@epita.fr>
13044         * acgeneral.m4 (_AC_ARG_VAR_VALIDATE): Output error messages on
13045         stderr.
13046         * doc/autoconf.texi (AC_ARG_VAR): Update.
13048 2001-06-21  Akim Demaille  <akim@epita.fr>
13050         * acgeneral.m4 (_AC_ARG_VAR_VALIDATE): Die instead of warning when
13051         precious variables have changed.
13052         * tests/torture.at (AC_ARG_VAR): Adjust.
13054 2001-06-21  Akim Demaille  <akim@epita.fr>
13056         ./configure --program-suffix=foo produces `transform=s,$$,foo,;',
13057         but some sed choke on multiple `;', and other tools (e.g.,
13058         Automake), include the separator themselves.
13060         * acgeneral.m4 (AC_ARG_VAR): Be sure not to leave extra `;'.
13062 2001-06-19  Tim Van Holder  <tim.van.holder@pandora.be>
13064         * doc/autoconf.texi (Functions Portability): Rename as...
13065         (Function Portability): this.
13066         (Function Portability): Document potential problems with unlink().
13068 2001-06-19  Paul Eggert  <eggert@twinsun.com>
13070         * NEWS, doc/autoconf.texi: Document quadrigraphs.
13072 2001-06-18  Akim Demaille  <akim@epita.fr>
13074         * acfunctions.m4 (AC_FUNC_FORK): Fix typos.
13076 2001-06-18  Ruediger Kuhlmann  <info@ruediger-kuhlmann.de>
13078         * acfunctions.m4: (AC_FUNC_VFORK) rename as...
13079         (_AC_FUNC_VFORK): this.
13080         Remove AC_DEFINEs and don't guess cross-compilation values.
13081         (_AC_FUNC_FORK): New, check whether fork() isn't just a stub.
13082         (AC_FUNC_FORK): New, use _AC_FUNC_VFORK and _AC_FUNC_FORK to
13083         define HAVE_WORKING_FORK, HAVE_WORKING_VFORK; and vfork to fork if
13084         vfork doesn't work.
13085         Guess values if cross-compiling, but warn.
13086         * acfunctions: Add AC_FUNC_FORK.
13087         * doc/autoconf.texi: Document AC_FUNC_FORK. Give example to define
13088         and vfork appropriately.
13090 2001-06-18  Akim Demaille  <akim@epita.fr>
13092         * doc/autoconf.texi (Functions Portability): New section.
13094 2001-06-18  Akim Demaille  <akim@epita.fr>
13096         * autoconf.in (M4): Pass --nesting-limit=1024, unless already set
13097         in $M4.
13098         Suggested by Andreas Schwab.
13100 2001-06-18  Akim Demaille  <akim@epita.fr>
13102         * acfunctions.m4 (AC_FUNC_CHOWN, AC_FUNC_CLOSEDIR_VOID)
13103         (AC_FUNC_GETPGRP, AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK)
13104         (AC_FUNC_MMAP, AC_FUNC_SELECT_ARGTYPES, _AC_FUNC_STAT)
13105         (AC_FUNC_UTIME_NULL): Use AC_INCLUDES_DEFAULT.
13106         Don't use AC_TRY_RUN, which double quotes, prefer AC_RUN_IFELSE,
13107         and either AC_LANG_SOURCE or AC_LANG_PROGRAM.
13108         (AC_FUNC_CLOSEDIR_VOID): Protect C++ from `int closedir ();' (or
13109         the converse).
13111 2001-06-18  Akim Demaille  <akim@epita.fr>
13113         * doc/autoconf.texi (ms): New index.
13114         (Macro Index): Rename as...
13115         (Autoconf Macro Index): this.
13116         (M4 Macro Index): New appendix.
13117         (Programming in M4): New chapter.
13118         Define M4sugar, M4sh, m4_pattern_forbid, and m4_pattern_allow.
13119         (Quoting): Rename as...
13120         (M$ Quotation): this.
13121         Be part of `Programming in M4).
13123 2001-06-18  Nicolas Joly  <njoly@pasteur.fr>
13125         * tests/torture.at (AC_ARG_VAR): Set variables and export them
13126         in separate statements for compatibility with Tru64 v5.1.
13128 2001-06-17  Akim Demaille  <akim@epita.fr>
13130         * acgeneral.m4 (_AC_ARG_VAR_VALIDATE): Be sure to cache the
13131         current values of the precious variables, not the previously
13132         cached values.
13133         Pass precious variables which are set to config.status.
13134         * doc/autoconf.texi (Setting Output Variables): Document AC_ARG_VAR.
13135         * tests/torture.at (AC_ARG_VAR): New.
13137 2001-06-15  Paul Eggert  <eggert@twinsun.com>
13139         * doc/autoconf.texi: Move AC_FUNC_WAIT3 and
13140         AC_SYS_RESTARTABLE_SYSCALLS to the obsolete section,
13141         and explain why and how to replace them.
13142         * acfunctions.m4 (AC_FUNC_WAIT3): Warn as obsolete.
13143         * acspecific.m4 (AC_SYS_RESTARTABLE_SYSCALLS): Likewise.
13145 2001-06-15  Akim Demaille  <akim@epita.fr>
13147         `build_alias', `host_alias', and `target_alias' are not AC_SUBST'd.
13148         Reported by Bruno Haible.
13150         * acgeneral.m4 (AC_ARG_VAR): Move the AC_SUBST, from here...
13151          (_AC_ARG_VAR_PRECIOUS): to here.
13153 2001-06-15  Pavel Roskin  <proski@gnu.org>
13155         * acheaders.m4 (_AC_CHECK_HEADER_DIRENT): Instead of defining
13156         an unused pointer use cast to this type and `if' statement to
13157         avoid warnings from the compiler.
13158         (AC_HEADER_TIME): Likewise.
13159         * actypes.m4 (AC_CHECK_MEMBER): s/foo/ac_aggr/. Use the member
13160         in `if' statement to avoid warnings from the compiler. Declare
13161         ac_aggr static to avoid the need to initialize it.
13163 2001-06-14  Akim Demaille  <akim@epita.fr>
13165         * doc/autoconf.texi (Portable Shell): Move to follow `Writing
13166         Macros'.
13168 2001-06-13  Akim Demaille  <akim@epita.fr>
13170         * m4/missing.m4, config/missing: Updated to Automake 1.4g's.
13171         Suggested by Alexander Mai.
13173 2001-06-13  Akim Demaille  <akim@epita.fr>
13175         * acgeneral.m4 (_AC_INCLUDES_DEFAULT_REQUIREMENTS): Guard
13176         sys/types.h and sys/stat.h, and check for them.
13178 2001-06-13  Akim Demaille  <akim@epita.fr>
13180         * acheaders.m4 (AC_CHECK_HEADER, AC_CHECK_HEADERS): Support $4 =
13181         INCLUDES.
13183 2001-06-12  Maciej W. Rozycki  <macro@ds2.pg.gda.pl>
13185         * acspecific.m4 (AC_PATH_XTRA): Check if linking against libX11
13186         succeeds and only try adding libdnet upon a failure.
13188 2001-06-12  Akim Demaille  <akim@epita.fr>
13190         * autoscan.in (&output_kind): Output the comment only if it exists.
13191         (%kind_comment): Add entry for `programs'.
13192         (&output_programs): Use &output_kind.
13193         (&output_functions, &output_identifiers, &output_headers)
13194         (&output_programs): Inline, and remove.
13196 2001-06-12  Akim Demaille  <akim@epita.fr>
13198         * autoscan.in (%kind_comment): New.
13199         (output_kind): New.
13200         (output_functions, output_identifiers, output_headers): Use it.
13202 2001-06-12  Akim Demaille  <akim@epita.fr>
13204         * autoscan.in (&print_unique): Take `$kind' and `$word' as
13205         arguments, to factor indirections into `%macro' and `%used'.
13206         (%generic_macro): Fix a typo.
13208 2001-06-12  Akim Demaille  <akim@epita.fr>
13210         * aclibraries: New.
13211         * autoscan.in (@kinds): Add `libraries'.
13212         Use `@kinds' instead of hard coded lists.
13213         (%programs, %headers, %identifiers, %makevars, %libraries, %functions):
13214         Remove, replaced by...
13215         (%used): this.
13217 2001-06-12  Akim Demaille  <akim@epita.fr>
13219         * autoscan.in (%functions_macros %headers_macros)
13220         (%identifiers_macros %programs_macros %makevars_macros): Remove,
13221         replaced by...
13222         (%macro): New.
13224 2001-06-11  Raja R Harinath  <harinath@cs.umn.edu>
13226         * aclang.m4 (AC_NO_EXECUTABLES): Override
13227         _AC_COMPILER_EXEEXT_WORKS, not _AC_LANG_COMPILER_WORKS.
13229 2001-06-11  Akim Demaille  <akim@epita.fr>
13231         * aclang.m4 (AC_NO_EXECUTABLES): Define the macros with their
13232         trailing new line.
13233         Reported by Andreas Schwab.
13235 2001-06-11  Akim Demaille  <akim@epita.fr>
13237         * Makefile.am, Makefile.maint: Typos.
13239 2001-06-09  Akim Demaille  <akim@epita.fr>
13241         * doc/autoconf.texi (Here-Documents): New section, gathering
13242         documentation about here-documents.
13243         Use `href', not `uref', and other changes.
13245 2001-06-09  Akim Demaille  <akim@epita.fr>
13247         * doc/autoconf.texi (Portable Shell Programming): Promoted as a
13248         chapter.
13250 2001-06-09  Akim Demaille  <akim@epita.fr>
13252         * doc/autoconf.texi (Limitations of Builtins): Complete the
13253         description of the here-docs penalties with Alexandre Oliva's
13254         explanations.
13256 2001-06-01  Paul Eggert  <eggert@twinsun.com>
13258         * doc/autoconf.texi: Talk about here documents and speedups.
13259         Do not use "echo" on arbitrary strings.
13260         Spell "here-documents" consistently with the standard.
13262 2001-06-09  Akim Demaille  <akim@epita.fr>
13264         * doc/autoconf.texi (Concept Index): Introduce it.
13265         Regenerate the menus.
13267 2001-06-09  Akim Demaille  <akim@epita.fr>
13269         * Makefile.maint, GNUmakefile: New, from Jim Meyering.
13270         * config/prev-version.txt: New.
13271         * config/move-if-change: New, for GNU libc.
13273 2001-06-06  Pavel Roskin  <proski@gnu.org>
13275         * tests/atgeneral.m4 (AT_INIT): Remove "/bin/sh" after $SHELL.
13277 2001-06-06  Akim Demaille  <akim@epita.fr>
13279         * acgeneral.m4 (AC_CHECK_LIB): Fix the cache var name to work
13280         properly when $1 is not a literal.
13281         Fixes PR Autoconf/187, reported by Bram Moolenaar.
13283 2001-06-06  Akim Demaille  <akim@epita.fr>
13285         Invoking AC_COPYRIGHT before AC_INIT fails.
13287         * Makefile.am (.m4.m4f): Pass --fatal-warnings to m4.
13288         * acgeneral.m4 (_m4_divert(VERSION_FSF))
13289         (_m4_divert(VERSION_USER)): New.
13290         (AC_COPYRIGHT): $2 is the diversion to use.
13291         (_AC_INIT_COPYRIGHT): Use the FSF diversion.
13292         (AC_INIT): Remove dead comments as now it's commutative.
13294 2001-06-06  Akim Demaille  <akim@epita.fr>
13296         * tests/semantics.at (AC_CHECK_LIB): Strengthen to reflect
13297         PR autoconf/187.
13299 2001-06-05  Akim Demaille  <akim@epita.fr>
13301         * acgeneral.m4 (_AC_INIT_PARSE_ARGS): `prefix' and `exec_prefix'
13302         can be empty.
13303         `*dir' variables cannot be NONE.
13304         Reported by Mark Kettenis.
13306 2001-06-05  Paul Eggert  <eggert@twinsun.com>
13308         * doc/autoconf.texi: Fix references to Solaris and SunOS versions.
13310 2001-06-04  Akim Demaille  <akim@epita.fr>
13312         * acgeneral.m4 (AC_VAR_SET, AC_VAR_GET, AC_VAR_TEST_SET)
13313         (AC_VAR_SET_IFELSE, AC_VAR_PUSHDEF and AC_VAR_POPDEF, AC_TR_CPP)
13314         (AC_TR_SH): Move as...
13315         * m4sh.m4 (AS_VAR_SET, AS_VAR_GET, AS_VAR_TEST_SET)
13316         (AS_VAR_SET_IF, AC_VAR_PUSHDEF, AS_VAR_POPDEF, AS_TR_CPP)
13317         (AS_TR_SH): these.
13318         (_AS_TR_PREPARE, _AS_CR_PREPARE, _AS_TR_CPP_PREPARE)
13319         (_AS_TR_SH_PREPARE): New.
13320         (AS_SHELL_SANITIZE): Invoke _AS_TR_PREPARE.
13321         * tests/aclocal.m4 (AC_STATE_SAVE): `as_' vars can be modified.
13323 2001-06-02  Akim Demaille  <akim@epita.fr>
13325         * Makefile.am (.m4.m4f): Pass the options first.
13326         Fixes PR autoconf/182.
13328 2001-06-02  Nathan Sidwell  <nathan@codesourcery.com>
13330         GNU getopt, when POSIXLY_CORRECT does not permute options and
13331         arguments.  So pass the options first.
13332         Fixes PR autoconf/184.
13334         * autoconf.sh (m4_prefiles, m4f_prefiles): New variables.
13335         (run_m4): Remove files.
13336         (run_m4f): Remove.
13337         Update remainder of script to use them.
13338         (for warning in): Do not use a literal comma as it will not be
13339         split by IFS.
13341 2001-06-02  Christian Marquardt  <marq@gfz-potsdam.de>
13343         * aclang.m4 (AC_PROG_F77): Add Fujitsu's "frt" to the list of
13344         Fortran compilers to check.
13345         (_AC_PROG_F77_V): Add '-###' as a possible option to print
13346         information on library and object files.
13347         (AC_PROG_CXX): Add Fujitsu's "FCC" to the list of C++ compilers
13348         to check.
13350 2001-06-02  Akim Demaille  <akim@epita.fr>
13352         * autom4te.in (Request::@request): Declare with `vars', not `my',
13353         as it prevents updates via `do FILENAME'.
13355 2001-06-02  Akim Demaille  <akim@epita.fr>
13357         * configure.in (standards_texi): Remove, dead code.
13359 2001-06-02  Akim Demaille  <akim@epita.fr>
13361         * autom4te.in: New.
13363 2001-06-02  Pavel Roskin  <proski@gnu.org>
13365         * acgeneral.m4 (_AC_INIT_PREPARE): Don't rely on $? in the traps
13366         for signals other than 0 - exit with code 1.
13367         * m4sh.m4 (AS_TMPDIR): Likewise.
13368         * autoconf.in: Likewise. Also don't rely on exit == exit $?.
13369         * autoheader.in: Likewise.
13370         * autoreconf.in: Likewise.
13371         * tests/torture.at (Signal handling): New test for the above.
13373 2001-06-01  Akim Demaille  <akim@epita.fr>
13375         * m4sugar.m4 (m4_defn, m4_undefine, m4_popdef): Clarify the error
13376         message.
13378 2001-05-31  Akim Demaille  <akim@epita.fr>
13380         * acfunctions, acheaders, acidentifiers, acmakevars, acprograms:
13381         Add copyright and comments.
13382         * acheaders: Add stdint.h.
13383         Suggested by Paul Eggert.
13385 2001-05-31  Akim Demaille  <akim@epita.fr>
13387         * atgeneral.m4 (AT_INIT): Use $SHELL.
13388         * atspecific.m4 (AT_CHECK_DEFINES): Skip HAVE_STDINT_H.
13390 2001-05-31  Akim Demaille  <akim@epita.fr>
13392         * acgeneral.m4 (_AC_INCLUDES_DEFAULT_REQUIREMENTS): Include
13393         stdint.h.
13394         From Paul Eggert and Lars Hecking.
13396 2001-05-31  Akim Demaille  <akim@epita.fr>
13398         * tests/base.at: Adjust line numbers in error messages.
13400 2001-05-31  Akim Demaille  <akim@epita.fr>
13402         * tests/base.at, tests/m4sh.at: When using AC_PLAIN_SCRIPT be sure
13403         to emit the bangshe line.
13404         Reported by David Carter.
13406 2001-05-30  Steven G. Johnson  <stevenj@alum.mit.edu>
13408         * aclang.m4 (AC_PROG_F77): Add Compaq's "fort" to the list of
13409         Fortran (95) compilers to check.
13411 2001-05-29  Alexandre Duret-Lutz  <duret_g@epita.fr>
13413         * doc/autoconf.texi (Introduction, Pointers): Update the Autoconf
13414         Macro Archive URL.
13416 2001-05-23  Pavel Roskin  <proski@gnu.org>
13418         * aclang.m4 (AC_PROG_CPP): Use `break' instead of `break 2' since
13419         _AC_PROG_PREPROC_WORKS_IFELSE expands arguments outside the loop.
13420         (AC_PROG_CXXCPP): Likewise.
13422 2001-05-22  Akim Demaille  <akim@epita.fr>
13424         * config: New directory.
13425         * configure.in: AC_CONFIG_AUX_DIR it.
13426         * tests/atspecific.m4 (AT_CONFIGURE_AC): Adjust.
13428 2001-05-22  Akim Demaille  <akim@epita.fr>
13430         * autoconf.in, autoreconf.in, autoheader.in, autoscan.in, ifnames.in,
13431         * autoupdate.in: Specify the Emacs mode.
13432         * acversion.m4.in: Rename as...
13433         * acversion.m4: this.
13434         * tests/Makefile.am (CLEANFILES): More garbage.
13436 2001-05-22  Akim Demaille  <akim@epita.fr>
13438         * autoconf.sh, autoreconf.sh, autoheader.sh, autoscan.pl, ifnames.sh:
13439         Rename as...
13440         * autoconf.in, autoreconf.in, autoheader.in, autoscan.in, ifnames.in:
13441         these.
13443 2001-05-21  Akim Demaille  <akim@epita.fr>
13445         * configure.in: Bump to 2.50a.
13448         -----
13450         Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007 Free
13451         Software Foundation, Inc.
13453         This file is part of GNU Autoconf.
13455         GNU Autoconf is free software; you can redistribute it and/or modify
13456         it under the terms of the GNU General Public License as published by
13457         the Free Software Foundation; either version 2, or (at your option)
13458         any later version.
13460         GNU Autoconf is distributed in the hope that it will be useful,
13461         but WITHOUT ANY WARRANTY; without even the implied warranty of
13462         MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13463         GNU General Public License for more details.
13465         You should have received a copy of the GNU General Public License
13466         along with autoconf; see the file COPYING.  If not, write to
13467         the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
13468         Boston, MA 02110-1301, USA.