docs: link to GNU Coding Standards in intro
[autoconf.git] / ChangeLog
blobc874eabe5ce72604a094f67486222737a166d494
1 2010-09-08  Eric Blake  <eblake@redhat.com>
3         docs: link to GNU Coding Standards in intro
4         * doc/autoconf.texi (Introduction): Actually link to the
5         standards.  Make other references consistent.
7         docs: mention traditional awk limitation
8         * doc/autoconf.texi (Limitations of Usual Tools) <awk>: Mention
9         that traditional awk lacks ENVIRON.  Add reference to awk manual.
10         (Particular Programs) <AC_PROG_AWK>: Add reference to awk section.
11         Reported by Ralf Wildenhues.
13 2010-09-07  Eric Blake  <eblake@redhat.com>
15         docs: mention bash vs. POSIXLY_CORRECT
16         * doc/autoconf.texi (Special Shell Variables) <POSIXLY_CORRECT>:
17         Document bash behavior.
18         * THANKS: Update.
19         Reported by Dustin J. Mitchell, via bug-gnulib list.
21         docs: enhance recommendations on test usage
22         * doc/autoconf.texi (Limitations of Builtins) <test (strings)>:
23         Mention yet another Solaris issue.
24         Reported by Stefano Lattarini.
26 2010-08-30  Eric Blake  <eblake@redhat.com>
28         tests: avoid trashing /
29         * tests/torture.at (AC_CONFIG_COMMANDS with temporary directory):
30         Use a relative path, rather than risking issues with /.
31         Reported by Ralf Wildenhues.
33         docs: mention Solaris here-docs vs. ${a-"b c"}
34         * doc/autoconf.texi (Shell Substitutions) <${var:=value}>:
35         Document problem of "" within here-docs.
36         Reported by Ralf Wildenhues.
38         fortran: always avoid AC_LANG_CONFTEST warning
39         * lib/autoconf/lang.m4 (AC_LANG_CONFTEST()): Make the default
40         match the fact that the default AC_LANG_SOURCE does not inline
41         confdefs.h in the first place.
42         * lib/autoconf/fortran.m4 (AC_FC_FREEFORM, AC_FC_FIXEDFORM)
43         (AC_FC_LINE_LENGTH, __AC_FC_NAME_MANGLING): Revert previous use of
44         AC_LANG_DEFINES_PROVIDED.
45         Suggested by Ralf Wildenhues.
47         config.status: minimize use of $tmp
48         * lib/autoconf/status.m4 (_AC_OUTPUT_MAIN_LOOP)
49         (_AC_OUTPUT_FILES_PREPARE, _AC_OUTPUT_FILE)
50         (_AC_OUTPUT_HEADERS_PREPARE, _AC_OUTPUT_HEADER): Use $ac_tmp
51         internally, while preserving $tmp for existing users.
52         * tests/torture.at (AC_CONFIG_COMMANDS with temporary directory):
53         New test, that $tmp is available but not essential.
55         docs: avoid use of $tmp outside of config.status use
56         * doc/autoconf.texi (Polymorphic Variables, Shell Substitutions):
57         Use $var or $t instead.
58         (Limitations of Usual Tools): Use $dir instead.
59         (Initialization Macros) <AS_TMPDIR>: Make good on the NEWS
60         regarding AS_TMPDIR being documented as consuming $tmp.
61         Suggested by Ralf Wildenhues.
63 2010-08-29  Paul Eggert  <eggert@cs.ucla.edu>
65         AC_PROG_YACC: fix comment re what "yacc" stands for
66         * lib/autoconf/programs.m4 (AC_PROG_YACC): YACC stands for
67         "Yet Another Compiler Compiler", not "Yet Another C Compiler".
68         Problem reported by Chris Long in
69         <http://lists.gnu.org/archive/html/bug-autoconf/2010-08/msg00134.html>.
71 2010-08-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
73         Avoid long lines in testsuite script.
74         * lib/autotest/general.m4 (AT_INIT): Remove definition of
75         AT_groups_all.  Initialize at_groups from at_help_all, with
76         newlines instead of spaces separating test groups numbers.
77         Adjust all code to newlines.
78         * NEWS: Update.
79         * tests/autotest.at (Huge testsuite): New test.
81         Try to update config.cache atomically; respect symlinks.
82         * lib/autoconf/general.m4 (AC_CACHE_SAVE): Use `mv -f' to update
83         the cache file if it is a regular file and not a symlink.  Move
84         first to temporary name in the target directory if not in the
85         current directory for atomicity across mount points.
86         * tests/base.at (AC_CACHE_CHECK): Try symlinked cache file.
87         * doc/autoconf.texi (Cache Files): Leftover temporary cache
88         files may be deleted by the user.
89         * NEWS: Update.
91 2010-08-27  Eric Blake  <eblake@redhat.com>
93         m4sh: protect LINENO against stray macro
94         * lib/m4sugar/m4sh.m4 (_AS_LINENO_PREPARE): Double quote entire
95         sed script, to avoid issue uncovered by automake testsuite where
96         'b' was an m4 macro that broke execution on dash.
97         Reported by Stefano Lattarini.
99         m4sh: assume ${a:-b} support
100         * tests/m4sh.at (Null variable substitution): New test.
101         * doc/autoconf.texi (Shell Substitutions) <${var:-value}>: Mention
102         that m4sh guarantees support.
103         (Limitations of Usual Tools) <mktemp>: Use it.
104         * lib/m4sugar/m4sh.m4 (AS_LINENO_POP, AS_VAR_IF, AS_TMPDIR):
105         Exploit use of colon for smaller files.
107 2010-08-26  Eric Blake  <eblake@redhat.com>
109         docs: document m4_define_default
110         * doc/autoconf.texi (Conditional constructs) <m4_define_default>:
111         Document it, since gnulib wants to use it.
112         * NEWS: Mention this.
114         autoconf: warn if AC_*_IFELSE lacks complete program
115         * lib/autoconf/lang.m4 (AC_LANG_DEFINES_PROVIDED): New macro.
116         (AC_LANG_SOURCE): Call it.
117         (AC_LANG_CONFTEST): Add warning if new macro is not called.
118         * lib/autoconf/c.m4 (_AC_LANG_OPENMP): Add missing AC_LANG_SOURCE.
119         * lib/autoconf/fortran.m4 (AC_FC_FREEFORM, AC_FC_FIXEDFORM)
120         (AC_FC_LINE_LENGTH, __AC_FC_NAME_MANGLING): Intentionally bypass
121         AC_LANG_SOURCE.
122         * lib/autoconf/programs.m4 (_AC_PROG_LEX_YYTEXT_DECL): Likewise.
123         * tests/compile.at (AC_COMPILE_IFELSE): New test.
124         * doc/autoconf.texi (Generating Sources) <AC_LANG_CONFTEST>:
125         Document new warning.
126         <AC_LANG_DEFINES_PROVIDED>: Document new macro.
127         <AC_LANG_SOURCE>: Document use of new macro.
128         * NEWS: Document the improvement.
129         Suggested by Bruno Haible.
131         autoconf: fix regression in AC_FUNC_SELECT_ARGTYPES
132         * lib/autoconf/functions.m4 (AC_FUNC_SELECT_ARGTYPES): Fix
133         quoting; regression from yesteray leaked '' into default value.
134         Reported by Ralf Wildenhues.
136         docs: mention another issue with variable expansion
137         In particular, see http://austingroupbugs.net/view.php?id=221
138         and http://austingroupbugs.net/view.php?id=255.
139         * doc/autoconf.texi (Shell Substitutions) <${var+value}>: New
140         subsection.
141         <${var=literal}>: Tweak wording.  Add mention of an ambiguity
142         allowed by POSIX.
143         * tests/torture.at (Substitute and define special characters):
144         Make test more robust; here, the outer "" is in a here-doc, and
145         does not violate the quoting rules of thumb just documented.
147 2010-08-25  Eric Blake  <eblake@redhat.com>
149         m4sh: revert incorrect mix of "${a='b'}"
150         * bin/autoconf.as: Revert leak of literal '' into assignment.
151         * tests/tools.at (autom4te preselections): Likewise.
153         m4sh: revert regression in AS_TMPDIR
154         * lib/m4sugar/m4sh.m4 (AS_TMPDIR): The previous patch trying to
155         rename $tmp to $as_tmp was wrong; config.status relies on it.
157         m4sh: reduce size of AS_VAR_TEST_SET
158         * lib/m4sugar/m4sh.m4 (AS_VAR_TEST_SET): Make more compact.
160         tests: improve some shell assumption testing
161         * tests/m4sh.at (Functions Support, Functions and return Support)
162         (Negated classes in globbing): Update comments.
163         (AS@&t@_VAR basics): Test comparison to empty string.
165         docs: mention cost of globbing during variable expansion
166         * doc/autoconf.texi (Shell Substitutions) <${var=literal}>:
167         Recommend quoting substitutions that might trigger globbing.
168         (Limitations of Builtins) <:>: Likewise.
169         * bin/autoconf.as: Follow our own advice.
170         * lib/autoconf/functions.m4 (AC_FUNC_SELECT_ARGTYPES): Likewise.
171         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ARGS): Likewise.
172         * lib/autoconf/status.m4 (AC_OUTPUT): Likewise.
173         * lib/autotest/general.m4 (_AT_FINISH): Likewise.
174         * lib/m4sugar/m4sh.m4 (AS_TMPDIR): Likewise.
175         * tests/autotest.at (parallel autotest and signal handling):
176         Likewise.
177         * tests/c.at (AC_OPENMP and C, AC_OPENMP and C++): Likewise.
178         * tests/foreign.at (shtool): Likewise.
179         * tests/fortran.at: Likewise.
180         * tests/tools.at (autom4te preselections): Likewise.
181         * tests/torture.at (VPATH): Likewise.
183         m4sh: fix some namespace safety issues
184         * lib/m4sugar/m4sh.m4 (_AS_SHELL_SANITIZE): Avoid problems if
185         as_myself is inherited from environment.
186         (AS_TMPDIR): Be namespace clean.
188 2010-08-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
190         tests: fix AC_CACHE_CHECK to skip with bad shells.
191         * tests/base.at (AC_CACHE_CHECK): Skip test with malformed
192         config.site file if the shell does not report syntax errors
193         from a sourced file.  Fixes test failure on AIX and FreeBSD.
194         Report from Rainer Tammer.
196 2010-08-24  Paul Eggert  <eggert@cs.ucla.edu>
198         AC_HEADER_STDBOOL: avoid spurious failure with modern xlc
199         * lib/autoconf/headers.m4 (AC_HEADER_STDBOOL): Move the "bool e =
200         &s;" test into the main program, as C99 might plausibly be
201         interpreted as not requiring support for this construction in
202         static initializers.  Remove the "#if defined __xlc__" stuff, as
203         the bug is not present in recent xlc implementations, and they
204         reject the test for other (valid) reasons.  People using ancient
205         xlc versions, if any, are suggested to update to fixed versions.
206         Reported by Ralf Wildenhues in the thread starting at:
207         http://lists.gnu.org/archive/html/bug-autoconf/2010-08/msg00103.html
209 2010-08-24  Eric Blake  <eblake@redhat.com>
211         AC_FUNC_GETLOADAVG: don't define SVR4 on cygwin
212         * lib/autoconf/functions.m4 (_AC_LIBOBJ_GETLOADAVG): Only define
213         SVR4 when -lkvm is required.
214         * THANKS: Update.
215         Reported by Yaakov Selkowitz.
217 2010-08-23  Eric Blake  <eblake@redhat.com>
219         AC_HEADER_STDBOOL: avoid spurious clang failure
220         * lib/autoconf/headers.m4 (AC_HEADER_STDBOOL): Drop gcc (and by
221         extension clang) check in favor of a gnulib test.  Force failure,
222         rather than merely testing for a compiler extension.
223         * THANKS: Update.
224         Reported by Anders Kaseorg.
226 2010-08-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
228         doc: AIX sed dislikes indented comments.
229         * doc/autoconf.texi (Limitations of Usual Tools) <sed>: Update.
231 2010-08-19  Stefano Lattarini  <stefano.lattarini@gmail.com>
233         Fix autoreconf docs w.r.t. AUTOM4TE environment variable.
234         * doc/autoconf.texi (Using autoreconf to Update configure
235         Scripts): List `AUTOM4TE' among the environment variables
236         honored by autoreconf.
237         * bin/autoreconf.in ($help): Likewise.
239 2010-08-17  Eric Blake  <eblake@redhat.com>
241         doc: improve AS_VAR_IF details
242         * doc/autoconf.texi (Polymorphic Variables) <AS_VAR_IF>: Make it
243         clear that user must supply quotes as needed.
244         * THANKS: Update.
245         Suggested by Randall Cotton.
247 2010-08-16  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
249         Fix Autotest --errexit to exit after XPASSing tests.
250         * lib/autotest/general.m4 (AT_INIT) <at_fn_group_postprocess>:
251         Exit after an unexpected passing test if $at_errexit.
252         * tests/autotest.at (errexit): Also try tests that xpass, skip,
253         xfail, or fail hard.
255 2010-08-14  Eric Blake  <eblake@redhat.com>
257         AC_INIT: allow bugreport to contain '?'
258         * lib/autoconf/general.m4 (_AC_INIT_PACKAGE): Relax check.
259         * tests/base.at (AC_INIT with unusual version strings): Enhance
260         test.
261         * doc/autoconf.texi (Initializing configure): Document this.
262         * NEWS: Likewise.
263         * THANKS: Update.
264         Reported by Yavor Doganov and others.
266 2010-08-10  Peter Rosin  <peda@lysator.liu.se>
268         Keep testsuite files on unexpected pass.
269         * lib/autotest/general.m4 (AT_INIT) <at_fn_group_postprocess>:
270         Don't cleanup the group directory when a test unexpectedly passes.
271         * tests/autotest.at (Cleanup): Check that an unexpected pass leaves
272         the test group directory intact.
274 2010-08-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
276         Skip AC_FC_SRCEXT([f90]) tests with a Fortran 77 compiler in $FC.
277         * tests/fortran.at (AC_FC_FREEFORM with AC_FC_SRCEXT)
278         (AC_FC_FIXEDFORM with AC_FC_SRCEXT): Skip if the compiler cannot
279         handle files with .f90 extension.
280         Report by Luke Dalessandro.
282         Fix testsuite failures with typical m4-x.y.z program suffix.
283         * tests/local.at (AT_CHECK_M4): Normalize hyphens and digits
284         after the `m4' program name.
285         * THANKS: Update.
286         Report by Luke Dalessandro.
288 2010-08-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
290         Fix description of AC_CONFIG_TESTDIR to not mention atconfig.in.
291         * doc/autoconf.texi (Making testsuite Scripts): atconfig is not
292         created from an input template.
294 2010-08-05  Bruno Haible  <bruno@clisp.org>
295         and Eric Blake  <eblake@redhat.com>
297         AC_FUNC_ALLOCA: modernize
298         * lib/autoconf/functions.m4 (AC_FUNC_ALLOCA): Assume that alloca's
299         return type is 'void *', not 'char *'.  Supply C89 prototype.
300         Reported by Thomas Klausner.
302 2010-08-04  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
304         Fix testsuite failure due to bugs in third-party aclocal macros.
305         * tests/torture.at (Non-literal AC_CONFIG_SUBDIRS): Create a
306         hand-written aclocal.m4 file, so the -Werror test doesn't fail
307         over aclocal warnings about errors in third-party macro files.
308         Simplify test accordingly, calling autoreconf throughout.
309         Report by Bob Friesenhahn.
311         Fix AC_LANG_SOURCE and AC_LANG_PROGRAM tests.
312         * tests/compile.at (AC_LANG_SOURCE example)
313         (AC_LANG_PROGRAM example): Fix broken sed script for
314         extracting the interesting part of the conftest.c file.
315         Fixes test failure on Haiku.
316         * THANKS: Update.
317         Report by Scott McCreary.
319 2010-08-03  Eric Blake  <eblake@redhat.com>
321         docs: mention bash bug with word splitting
322         * doc/autoconf.texi (Shell Substitutions): Document bash bug, and
323         zsh default behavior difference.
324         Reported by Ralf Wildenhues.
326         docs: mention ksh bug with function syntax
327         * doc/autoconf.texi (Shell Functions): Document ksh93 limitation.
329 2010-08-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
331         Fix typo in Autotest color test, for dash testsuite failure.
332         * tests/autotest.at (colored test results): Use exit not
333         Exit.  Fixes test failure with dash 0.5.4.
335 2010-08-02  Eric Blake  <eblake@redhat.com>
337         docs: track recent copyright assignment
338         * AUTHORS: Add Peter Rosin.
340 2010-08-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
342         Add testsuite exposure for last-minute fix in 2.67.
343         * tests/autotest.at (parallel args but non-working mkfifo):
344         New test, to expose the failure v2.66-23-g991183c avoided.
346         Ensure unnamed test group categories are separated from previous.
347         * doc/autoconf.texi (Writing Testsuites) <AT_BANNER>: Update
348         description.
349         * lib/autotest/general.m4 (AT_INIT) <at_fn_banner>: Set banner
350         to single space, not empty line, once printed.  For empty
351         banners, print a single empty line to separate them from a
352         previous test group category.
353         * tests/autotest.at (Banners): Insert another test group; adjust
354         tests accordingly.  Extend test to cover semantic change.
355         * NEWS: Update.
357 2010-07-31  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
359         Fix typos in perlpod docs.
360         * lib/Autom4te/ChannelDefs.pm, lib/Autom4te/Channels.pm,
361         lib/Autom4te/General.pm: Fix typos and spacing in perlpod
362         documentation and in comments.
364 2010-07-29  Eric Blake  <eblake@redhat.com>
366         docs: mention ksh file descriptor limitation
367         * doc/autoconf.texi (File Descriptors): Document issue with fd 10
368         and above.
369         Reported by Ralf Wildenhues.
371         docs: mention cd limitation
372         * doc/autoconf.texi (Limitations of Builtins) <cd>: Document
373         issues with empty argument.
375 2010-07-29  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
377         Add missing index entries to manual.
378         * doc/autoconf.texi (Fortran Compiler, Language Choice): Add
379         index entries for AC_FC_DUMMY_MAIN, AC_LANG; reformat entry for
380         AC_LANG_ASSERT.
382 2010-07-21  Eric Blake  <eblake@redhat.com>
384         Release Version 2.67.
385         * NEWS: Mention the release.
387         Prepare for release.
388         * maint.mk (PREV_VERSION_REGEXP): New macro, missed when
389         backporting update-NEWS_hash from gnulib.
390         * cfg.mk (old_NEWS_hash): Correctly generate.
391         * build-aux/gendocs.sh: Temporarily break sync from upstream, to
392         avoid including spurious directories in info source tarball.
394         Avoid spurious testsuite failures.
395         * doc/autoconf.texi (Generating Sources): Don't mix gcc '-E' and
396         '-o -', since the former already implies stdout, while the latter
397         creates -.exe on cygwin.
398         * tests/compile.at (AC_LANG_SOURCE example)
399         (AC_LANG_PROGRAM example): Likewise.  Also prevent any config.site
400         interference.
402         Partially revert previous patch.
403         * lib/autotest/general.m4 (AT_INIT) <serial testing>: Changing
404         at_jobs here breaks output if -j2 was requested but shell is
405         insufficient to support parallel testing.
406         Reported by Ralf Wildenhues.
408         Minor testsuite size reduction.
409         * lib/autotest/general.m4 (AT_INIT) <serial testing>: Ensure
410         at_jobs is 1.
411         (AT_SETUP, AT_CLEANUP): Factor initialization code...
412         (AT_INIT) <at_fn_group_banner>: ...into new function.
413         Based in part on suggestion by Ralf Wildenhues.
415 2010-07-20  Eric Blake  <eblake@redhat.com>
417         Close job control fd before running tests.
418         * doc/autoconf.texi (File Descriptors): Clarify limitations.
419         * lib/autotest/general.m4 (AT_CLEANUP): Avoid leaking job control
420         fifo fd to user tests.
421         (AT_INIT): Delete comment, now that close is done elsewhere.
422         Suggested by Ralf Wildenhues.
424 2010-07-20 Paul Eggert  <eggert@cs.ucla.edu>
425         and Eric Blake  <eblake@redhat.com>
427         Plug race in parallel autotest.
428         * lib/autotest/general.m4 (AT_INIT) <Fifo job dispatcher>: Track
429         two fds to fifo in parent, to avoid race where parent can see EOF
430         before child opens fifo.  Avoid any atomicity problems with tokens
431         larger than one byte.
432         * NEWS: Document the bug fix.
434 2010-07-20  Eric Blake  <eblake@redhat.com>
436         Another empty argument through expr workaround.
437         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Detect empty
438         arguments.  Reject empty file argument.
439         * tests/torture.at (AC_CONFIG_FILES, HEADERS, LINKS and COMMANDS):
440         Check for missing argument.
442         Also reject ' and newline from AC_INIT strings.
443         * lib/autoconf/general.m4 (_AC_INIT_LITERAL): Reject a couple more
444         problematic characters.
445         * tests/base.at (AC_INIT with unusual version strings): Enhance
446         test.
447         * doc/autoconf.texi (Initializing configure) <AC_INIT>: Further
448         clarifications, and clean up wording about use of m4_esyscmd.
449         * NEWS: Update previous news entry.
450         Suggested by Paolo Bonzini.
452 2010-07-20  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
454         Let autoreconf pass warning flags to new-enough aclocal.
455         * bin/autoreconf.in ($aclocal_supports_warnings)
456         ($automake_supports_warnings): New globals.
457         (parse_args): Set and use them.  Be sure to invoke `aclocal
458         --help' and `automake --help' just once each.
459         * NEWS: Update.
460         Prompted by report from Bruno Haible.
462         Fix parsing of empty variable settings on the command line.
463         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ARGS): Work around
464         expr bug returning 0 instead of the empty string.
465         * lib/autotest/general.m4 (AT_INIT): Likewise.
467         Fix typo in the manual.
468         * doc/autoconf.texi (AC_ACT_IFELSE vs AC_TRY_ACT): Fix typo.
470 2010-07-19  Eric Blake  <eblake@redhat.com>
472         Fix up AC_INIT vs. " issues, and document it.
473         * doc/autoconf.texi (Initializing configure): Improve
474         documentation on argument restrictions.
475         * NEWS: Tweak information.
476         * lib/autoconf/general.m4 (_AC_INIT_GENERAL): New macro, that also
477         rejects literal ".
478         (_AC_INIT_PACKAGE): Use it to plug hole in last patch.
479         * tests/base.at (AC_INIT with unusual version strings): Enhance
480         test.
482 2010-07-19  Eric Blake  <eblake@redhat.com>
483         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
485         Relax AC_INIT requirements for PACKAGE and VERSION strings again.
486         * lib/m4sugar/m4sh.m4 (AS_LITERAL_HEREDOC_IF): New macro.
487         (_AS_LITERAL_HEREDOC_IF, _AS_LITERAL_HEREDOC_IF_YES)
488         (_AS_LITERAL_HEREDOC_IF_NO): New helper macros.
489         * lib/autoconf/general.m4 (_AC_INIT_PACKAGE): Use
490         AS_LITERAL_HEREDOC_IF for PACKAGE and VERSION strings.
491         * tests/base.at (AC_INIT with unusual version strings): New test.
492         * tests/m4sh.at (AS@&t@_LITERAL_IF): Extend test.
493         * NEWS: Update.
495 2010-07-19  Eric Blake  <eblake@redhat.com>
497         Fix testsuite failures from previous patch.
498         * lib/autoconf/c.m4 (_AC_PROG_PREPROC_WORKS_IFELSE): Also remove
499         conftest.i when preprocessor tests break out of a loop.
501 2010-07-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
503         Allow inspecting AC_PREPROC_IFELSE output in true branch.
504         * lib/autoconf/general.m4 (_AC_PREPROC_IFELSE_BODY): Redirect
505         preprocessor output to conftest.i rather than /dev/null.
506         (_AC_PREPROC_IFELSE): Remove conftest.i in the postprocessing.
507         * tests/compile.at (Order of user actions and cleanup): Extend
508         test in the ACTION-IF-TRUE branch.
509         * doc/autoconf.texi (Running the Preprocessor): Document new
510         feature.
511         * NEWS: Update.
513         Fix AC_FC_LIBRARY_LDFLAGS detection for BlueGene xlf -qipa.
514         * lib/autoconf/fortran.m4 (_AC_FC_LIBRARY_LDFLAGS): Ignore
515         '-link', added spuriously when -qipa is used with the XL
516         Fortran compilers on BlueGene.
518         manual: compiler flags -D and -L should not be followed by space
519         * doc/autoconf.texi (Preset Output Variables): Remove space
520         between -D and -L flags and their arguments, traditional cpp
521         implementations like Solaris 10, IRIX 6.5, OSF Tru64 5.1D,
522         AIX 5.3 do not accept it.
524 2010-07-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
526         Fix comment typo in the manual.
527         * doc/autoconf.texi (Generic Compiler Characteristics): Refer
528         to the right test in the example marker comment.
529         Spotted by Eric Blake.
531 2010-07-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
533         New Fortran macro AC_FC_LINE_LENGTH.
534         * lib/autoconf/fortran.m4 (AC_FC_LINE_LENGTH): New macro.
535         * doc/autoconf.texi (Fortran Compiler): Document it.
536         * tests/fortran.at (AC_FC_LINE_LENGTH): New test.
537         * NEWS: Update.
539         Fix wording about AC_CONFIG_SUBDIRS warning.
540         * doc/autoconf.texi (Subdirectories): We warn, not error, about
541         nonexistent config subdirs, but only at configure run time.
543 2010-07-10  Eric Blake  <eblake@redhat.com>
544         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
546         Fix regression of AC_CHECK_SIZEOF on pointer types.
547         * lib/autoconf/types.m4 (AC_CHECK_SIZEOF): Translate `*' to `p'
548         when checking literal-ness of the type, for pointer types.
549         * lib/m4sugar/m4sh.m4 (_AS_TR_SH): Also consider `*' as literal.
550         (_AS_TR_CPP): Likewise.
551         * tests/semantics.at (AC_CHECK_ALIGNOF struct): When checking
552         for numeric answer, be sure to not allow variable references.
553         (AC_CHECK_SIZEOF struct): Likewise.  Also, test the
554         `AC_CHECK_SIZEOF([int *])' example from the manual.
555         * doc/autoconf.texi (Generic Compiler Characteristics): Add
556         example marker.
557         * NEWS: Update.
558         Reports by Nishio Futoshi and Roberto Bagnara.
560 2010-07-08  Eric Blake  <eblake@redhat.com>
561         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
563         Fix regression of AC_CONFIG_SUBDIRS with multiple arguments.
564         * lib/autoconf/status.m4 (AC_CONFIG_SUBDIRS): Do not assume the
565         argument is a single word.
566         * tests/torture.at (Deep Package): Extend test to cover this.
567         (Non-literal AC_CONFIG_SUBDIRS): New test.
568         * doc/autoconf.texi (Subdirectories): Add example marker.
569         * NEWS: Update.
570         Report by Bruno Haible.
572 2010-07-04  Stefano Lattarini  <stefano.lattarini@gmail.com>
574         Fix minor copy&paste leftover in m4sh tests.
575         * tests/m4sh.at (AS@&t@_TR_SH and AS@&t@_TR_CPP): Remove
576         useless variables assignements ($var, $vAr, $VAR).
578 2010-07-04  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
580         Fix testsuite to not trigger Solaris sh for bug.
581         * tests/torture.at (Torturing config.status)
582         (Substitute a 2000-byte string)
583         (Substitute and define special characters)
584         (Substitute a newline): Quote first argument in for list so
585         that it does not look like an assignment.
587 2010-07-02  Eric Blake  <eblake@redhat.com>
589         Post-release administrivia.
590         * maint.mk (NEWS_hash): Define.
591         * NEWS: Add header line for next release.
592         * .prev-version: Record previous version.
593         * cfg.mk (old_NEWS_hash): Auto-update.
595         Release Version 2.66.
596         * NEWS: Mention the release.
598 2010-07-02  Eric Blake  <eblake@redhat.com>
600         Pick up some maint.mk improvements from gnulib.
601         * configure.ac (AM_INIT_AUTOMAKE): Require 1.11, and build xz
602         archives by default now.
603         * maint.mk (gzip_rsyncable): Avoid non-portable echo.
604         (VC-tag): Depend on gpg_key_ID.
605         (PREV_VERSION): Don't parse error as version.
606         (announcement): Populate email addresses with defaults.
607         (emit_upload_commands, web-manual): Reflect changes in scripts.
608         (update-NEWS-hash, emit-commit-log, release-prep): New macros.
609         * cfg.mk (announcement_Cc_, announcement_mail_headers_): Override
610         defaults.
611         * HACKING: Modernize a bit.
613         Resync upstream files.
614         * GNUmakefile: Run 'make fetch'.
615         * build-aux/announce-gen: Likewise.
616         * build-aux/config.guess: Likewise.
617         * build-aux/config.sub: Likewise.
618         * build-aux/gendocs.sh: Likewise.
619         * build-aux/git-version-gen: Likewise.
620         * build-aux/gnupload: Likewise.
621         * build-aux/texinfo.tex: Likewise.
622         * build-aux/vc-list-files: Likewise.
623         * doc/gendocs_template: Likewise.
624         * doc/gnu-oids.texi: Likewise.
625         * doc/make-stds.texi: Likewise.
626         * doc/standards.texi: Likewise.
627         * lib/Autom4te/Channels.pm: Likewise.
628         * lib/Autom4te/Configure_ac.pm: Likewise.
629         * lib/Autom4te/FileUtils.pm: Likewise.
630         * lib/Autom4te/XFile.pm: Likewise.
632         Make AS_TR_SH and AS_TR_CPP similar.
633         * lib/m4sugar/m4sh.m4 (_AS_TR_CPP_LITERAL): Avoid underquoting.
634         (_AS_TR_CPP_INDIR): Handle all polymorphic variables.
635         * tests/m4sh.at (AS@&t@_TR_SH and AS@&t@_TR_CPP): New test.
636         * NEWS: Document the fix.
637         Reported by Bruno Haible.
639         Reduce startup cost of autotest.
640         * lib/autotest/general.m4 (_AT_FINISH) <banners>: Rather than
641         doing a recursive find, limit ourselves to top ChangeLog only.
642         Reported by Ralf Wildenhues.
644 2010-07-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
646         New macro AC_FC_FIXEDFORM, improved AC_FC_FREEFORM, coverage.
647         * lib/autoconf/fortran.m4 (_AC_FC_DIALECT_YEAR): Fix typo in
648         comment.
649         (AC_FC_FREEFORM): Update list of known options for Sun, HP,
650         Lahey/Fujitsu Fortran compilers.  Use M4 quoting consistently.
651         (AC_FC_FIXEDFORM): New macro.
652         * tests/fortran.at (AC_FC_DUMMY_MAIN usage, AC_FC_MAIN usage):
653         Use AC_FC_FIXEDFORM, to avoid testsuite failure with FC=xlf95.
654         (AC_FC_FREEFORM with AC_FC_SRCEXT, AC_FC_FIXEDFORM)
655         (AC_FC_FIXEDFORM with AC_FC_SRCEXT): New tests.
656         * tests/mktests.sh: No need to exclude AC_FC_FREEFORM, it uses
657         AC_LANG_PUSH/AC_LANG_POP.
658         * doc/autoconf.texi (Fortran Compiler): Document it.
659         * NEWS: Update.
661 2010-07-02  Eric Blake  <eblake@redhat.com>
663         Optimize AS_BOX.
664         * lib/m4sugar/m4sh.m4 (AS_BOX): Use less m4 time.
665         (_AS_BOX_LITERAL): Use fewer forks in the common case.
666         * doc/autoconf.texi (Common Shell Constructs) <AS_BOX>: Document
667         the macro.
668         * NEWS: Mention it.
670         Use new AS_LITERAL_IF argument when appropriate.
671         * lib/m4sugar/m4sh.m4 (AS_VAR_SET): Reduce m4 overhead.
672         (AS_VAR_IF, AS_VAR_TEST_SET): Provide shorter variant for simple
673         references.
674         Suggested by Bruno Haible.
676         Add tests for AS_BOX.
677         * tests/m4sugar.at (m4@&t@_text_box): New test.
678         * tests/m4sh.at (AS@&t@_BOX): Likewise.
679         * lib/m4sugar/m4sugar.m4 (m4_text_box): Support comma.
680         * doc/autoconf.texi (Text processing Macros) <m4_text_box>:
681         Document further limitations.
683         Add optional argument to AS_LITERAL_IF.
684         * lib/m4sugar/m4sh.m4 (_AS_LITERAL_IF): Rewrite to generate macro
685         name, without using m4_cond.
686         (_AS_LITERAL_IF_, _AS_LITERAL_IF_YES, _AS_LITERAL_IF_NO): New
687         helpers.
688         (AS_LITERAL_IF, AS_LITERAL_WORD_IF, _AS_TR_SH, _AS_TR_CPP)
689         (_AS_VAR_PUSHDEF): Adjust callers.
690         * lib/autoconf/types.m4 (AC_CHECK_ALIGNOF): Relax restrictions on
691         invalid bytes, since this allows inline struct layouts.
692         (_AC_CHECK_ALIGNOF): New helper macro.
693         * tests/m4sh.at (AS@&t@_LITERAL_IF): Update test.
694         * doc/autoconf.texi (Polymorphic Variables) <AS_LITERAL_IF>:
695         Update documentation.
697         Use AS_LITERAL_WORD_IF as appropriate.
698         * lib/autoconf/autoheader.m4 (AH_VERBATIM): Use new macro.
699         * lib/autoconf/general.m4 (AC_REQUIRE_AUX_FILE, AC_CACHE_VAL)
700         (AS_CACHE_CHECK, AC_DEFINE_TRACE, _AC_LIBOBJ): Likewise.
701         * lib/autoconf/libs.m4 (AC_CHECK_LIB): Likewise.
702         * lib/autoconf/status.m4 (AC_CONFIG_SUBDIRS): Likewise.
703         * lib/m4sugar/m4sh.m4 (AS_UNSET, AS_VAR_COPY, AS_VAR_GET)
704         (AS_VAR_IF, AS_VAR_SET, AS_VAR_TEST_SET): Likewise.
706         Add AS_LITERAL_WORD_IF.
707         * lib/m4sugar/m4sh.m4 (_AS_LITERAL_IF): Also reject shell quoting
708         characters as non-literal, and provide way to reject space.
709         (AS_LITERAL_WORD_IF): New macro.
710         * doc/autoconf.texi (Polymorphic Variables) <AS_LITERAL_IF>:
711         Document new macro.  Fix example to match reality.
712         * NEWS: Document change and new macro.
713         * tests/m4sh.at (AS@&t@_LITERAL_IF): Update test.
715         Optimize AC_DEFINE.
716         * lib/autoconf/general.m4 (_AC_DEFINE_Q): Avoid overhead of
717         AS_LITERAL_IF.
719 2010-07-02  Stefano Lattarini  <stefano.lattarini@gmail.com>
720         and Eric Blake  <eblake@redhat.com>
722         Describe a Solaris /bin/sh bug w.r.t. for loops.
723         * doc/autoconf.texi (Limitations of Shell Builtins) <for>:
724         Document a bug of the 'for' builtin in Solaris /bin/sh, w.r.t.
725         tokens seeming variable assignment in the list of arguments.
727 2010-06-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
729         Improve VPATH handling in config.status for non-Automake projects.
730         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE): Be sure not
731         to remove references to a subdir of srcdir.  Fix treatment of
732         multiple colon-separated VPATH entries.
733         * tests/torture.at (VPATH): New test.
734         Report by Keith Marshall.
736         Further improve docs about nested double-quotes and backquotes.
737         * doc/autoconf.texi (Shellology): Remove anchor for pdksh.
738         Move quoting bug example to ...
739         (Shell Substitutions): ... here.  Document which behavior is
740         specified by Posix.
742         Coverage for Fortran compiler macros.
743         * tests/fortran.at (AC_OPENMP and Fortran 77)
744         (AC_OPENMP and Fortran): Simplify, using AT_CHECK_CONFIGURE.
745         (AC_F77_DUMMY_MAIN usage, AC_FC_DUMMY_MAIN usage)
746         (AC_F77_MAIN usage, AC_FC_MAIN usage, AC_F77_FUNC usage)
747         (AC_FC_FUNC usage, AC_FC_SRCEXT usage, AC_FC_FREEFORM): New
748         tests.
749         * doc/autoconf.texi (Fortran Compiler): Use GNU coding style
750         on C code snippets.  Add markers for tested examples.
751         Suggest AC_FC_FREEFORM for source file extensions which the
752         compiler might not natively support but which are accepted
753         with help from AC_FC_SRCEXT.  Suggest AC_CONFIG_HEADERS for
754         setups using one of the AC_*MAIN macros.
756         Accept any nonzero exit status upon config.status write failure.
757         * tests/torture.at (AC_CONFIG_FILES, HEADERS, LINKS and COMMANDS):
758         Normalize nonzero status to 1 for writing to /dev/full, for HP-UX
759         11.31 cat which exits 2.
761         Fix testsuite failure with Tru64 preprocessor.
762         * tests/compile.at (Order of user actions and cleanup): Add
763         incomplete comment to provoke failure with Tru64/OSF 5.1 cc
764         preprocessor.
766 2010-06-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
767         and Eric Blake  <eblake@redhat.com>
769         Further clarification on sed -e portability.
770         * doc/autoconf.texi (Limitations of Usual Tools) <sed>: Clarify
771         more about sed -e and Posix limitations.
773 2010-06-22  Bruno Haible  <bruno@clisp.org>
775         Document how to use literal newlines in makefile rules.
776         * doc/autoconf.texi (Newlines in Make Rules): New section.
778         Document how to write comments in makefile rules.
779         * doc/autoconf.texi (Comments in Make Rules): Mention a workaround
780         syntax.
782 2010-06-22  Ben Pfaff  <blp@cs.stanford.edu>
784         Document how to propogate variables to submakes.
785         * doc/autoconf.texi: Describe technique used by Automake to
786         propagate variables to submakes in more detail.
788 2010-06-22  Peter Johansson  <trojkan@gmail.com>  (tiny change)
790         Be consistent in doc example.
791         * doc/autoconf.texi: (Polymorphic Variables) be consistent in code
792         example and output
794 2010-06-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
796         Add comments for vim syntax highlighting.
797         * doc/autoconf.texi: Restore font-lock in some examples using
798         $$, for vim.
800         Formatting cleanups for optional arguments.
801         * doc/autoconf.texi (Configuration Actions, Help Formatting)
802         (External Software): Use @r{} for brackets denoting optional
803         arguments, where @ovar is not safe to use.
805         Clarify nested double-quotes and backquotes shell issues.
806         * doc/autoconf.texi (Shellology): New anchor for pdksh.
807         (Shell Substitutions): Link to it for escaped double-quotes
808         within double-quoted backquotes; add ksh example for unescaped
809         inner double-quotes problem.
811         Mention Tru64 5.1 fgrep limitation with emtpy patterns.
812         * doc/autoconf.texi (Limitations of Usual Tools): Update.
814         Overhaul the manual, esp. the Autotest chapter.
815         * doc/autoconf.texi (Installation Directory Variables):
816         Replace some uses of @var with @code.
817         (Special Shell Variables): Fix misordered paragraph about IFS.
818         (Writing Testsuites): Include paragraph following AT_TESTED in
819         the macro definition.
820         (testsuite Invocation): Failed tests are not rerun.
821         (testsuite Scripts, Autotest Logs, testsuite Invocation)
822         (Making testsuite Scripts): Minor edits for consistency and
823         language.
825 2010-06-18  Bruno Haible  <bruno@clisp.org>
827         Document sed -e limitation.
828         * doc/autoconf.texi (Limitations of Usual Tools): Mention portability
829         problem of sed -e option with script fragments.
831 2010-06-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
833         Document, test, and fix AT_ARG_OPTION, AT_ARG_OPTION_ARG.
834         * lib/autotest/general.m4 (_AT_ARG_OPTION): Fix translation of
835         hyphens to underscores when turning option names to variables.
836         Avoid macro name concatenation garbage with trailing `dnl'.
837         (AT_ARG_OPTION, AT_ARG_OPTION_ARG): Overhaul macro description.
838         The OPTIONS are space-separated, not comma-separated.  The
839         negative form of AT_ARG_OPTION is prefixed with `--no-'.
840         * tests/autotest.at (AT@&t@_ARG_OPTION, AT@&t@_ARG_OPTION_ARG):
841         New tests.
842         * NEWS: Update.
843         * doc/autoconf.texi (Writing Testsuites): Document AT_ARG_OPTION
844         and AT_ARG_OPTION_ARG.
845         (testsuite Invocation): Call the thingies passed to the
846         testsuite options, not arguments.  Note that the testsuite
847         author may add further package-specific options.
849         Autotest: enable colored test results.
850         * lib/autotest/general.m4 (HELP_TUNING_BEGIN): New diversion.
851         (HELP_TUNING, HELP_OTHER, HELP_END): Bump diversion numbers.
852         (AT_INIT): Accept
853         --color and --color=never|auto|always.  If desired, colorize
854         test results and testsuite summary on standard output.
855         [HELP_TUNING]: Divert content instead to ...
856         [HELP_TUNING_BEGIN]: ... this diversion, m4_wrapped until the
857         end, when we know whether AT_COLOR_TESTS has been specified.
858         (AT_COLOR_TESTS): New macro, set the default for color to auto.
859         * doc/autoconf.texi (Writing Testsuites): Document it.
860         (testsuite Invocation): Document --color* options.
861         * tests/local.at: Call AT_COLOR_TESTS for Autoconf's testsuite.
862         * tests/autotest.at (color test results): New test, mirroring
863         color.test from Automake.
864         * NEWS: Update.
866 2010-06-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
868         Avoid texinfo bug with backslashes in macro arguments.
869         * doc/autoconf.texi (Text processing Macros)
870         (Common Shell Constructs): Do not use @dvar with backslashes.
872 2010-06-14  Eric Blake  <eblake@redhat.com>
874         Make CONFIG_SITE handling more robust.
875         * lib/autoconf/general.m4 (AC_SITE_LOAD): Avoid leading - and path
876         search, and check for failure to load.
877         * tests/base.at (AC_CACHE_CHECK): Enhance test.
878         * doc/autoconf.texi (Site Defaults): Mention that CONFIG_SITE
879         works best as an absolute path.
880         * NEWS: Document the semantic change.
882 2010-03-13  Bruno Haible  <bruno@clisp.org>
883         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
885         Allow plus signs in AC_ARG_ENABLE and AC_ARG_WITH.
886         * doc/autoconf.texi (External Software): Mention that AC_ARG_WITH
887         accepts packages with a + sign in it.
888         (Package Options): Likewise for AC_ARG_ENABLE.
889         * lib/autoconf/general.m4 (_AC_ENABLE_IF): Also replace '+' with '_'.
890         * tests/base.at (AC_ARG_ENABLE and AC_ARG_WITH): New test.
891         * NEWS: Update.
893 2010-06-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
895         Autotest: simplify logic to compute test group result.
896         * lib/autotest/general.m4 (AT_INIT): Compactify result
897         computation logic.
899         New Autotest testsuite option --recheck.
900         * lib/autotest/general.m4 (AT_INIT): New variable $at_recheck.
901         Escape hyphen in $at_dir early.  Accept command line switch
902         --recheck.  Set $at_suite_log early, based on --directory
903         switch; with --recheck, include the list of FAILed and XPASSed
904         tests from old testsuite.log file in $at_groups.  Document
905         --recheck in --help output.
906         * tests/autotest.at (recheck): New test.
907         * doc/autoconf.texi (testsuite Invocation): Document --recheck.
908         * NEWS: Update.
910 2010-06-14  Karl Berry  <karl@freefriends.org>  (tiny change)
912         Clarify comment about old system.
913         * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS): Prefer GNU/Linux,
914         and note that bug has long since been fixed.
916 2010-06-08  Eric Blake  <eblake@redhat.com>
918         Run libtool test with modern libtool.
919         * tests/foreign.at (Libtool): Request that libtoolize install
920         auxiliary files.  Assume libtool 2.x is modern.
922 2010-06-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
924         Coverage and doc fixes for AC_LANG_SOURCE and AC_LANG_PROGRAM.
925         * tests/compile.at (AC_LANG_SOURCE, AC_LANG_SOURCE(C++))
926         (AC_LANG_SOURCE example, AC_LANG_PROGRAM example): New tests.
927         * doc/autoconf.texi (Generating Sources): Add markers for tested
928         examples; update quoting, and update AC_INIT usage to also set
929         optional URL arguments.  Mention that the examples require gcc.
930         Prompted by report from Brian J. Murrell.
932         Make AS_SET_CATFILE polymorphic, and add testsuite coverage.
933         * lib/m4sugar/m4sh.m4 (AS_SET_CATFILE): Use AS_VAR_SET to set
934         the variable.
935         * tests/m4sh.at (AS@&t@_SET_CATFILE): New test.
936         * doc/autoconf.texi (Common Shell Constructs): Document that
937         AS_SET_CATFILE is polymorphic in its VAR argument now.
938         * NEWS: Update.
940         Testsuite coverage for AC_COPYRIGHT and AT_COPYRIGHT.
941         * tests/autotest.at (AT@&t@_COPYRIGHT): New test.
942         * tests/base.at (AC@&t@_COPYRIGHT): Likewise.
944         Testsuite coverage for __file__ and __line__.
945         * tests/m4sugar.at (__file__ and __line__): New test.
947         Testsuite coverage for AC_CACHE_VAL and caching semantics.
948         * tests/base.at (AC_CACHE_CHECK): Extend test.
949         (AC_CACHE_LOAD): New test.
950         * tests/torture.at (Configuring subdirectories): Also test
951         --config-cache with AC_CONFIG_SUBDIRS.
952         * doc/autoconf.texi (Caching Results): Annotate code snippets
953         which are tested in the test suite.
954         (Cache Files): Documented cache variables may be used on the
955         configure command line to override individual entries in the
956         cache file.
958         Clarify OpenBSD sh errexit issue with compound commands.
959         * doc/autoconf.texi (Limitations of Builtins): Only the last
960         command in a compound list is problematic.
961         Tested on OpenBSD 4.4.
963 2010-06-07  Eric Blake  <eblake@redhat.com>
965         Properly quote AC_PREREQ during autoupdate.
966         * lib/autoconf/general.m4 (AC_PREREQ): Follow consistent quoting
967         style for AC_PREREQ.
968         * tests/tools.at (autoupdating AC_PREREQ): Update expected
969         results.
970         Reported by NightStrike.
972 2010-06-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
974         Documentation and tests for the AC_CHECK_DECL change.
975         * lib/autoconf/general.m4 (_AC_CHECK_DECL_BODY): Squash trailing
976         spaces in as_decl_name.
977         (_AC_CHECK_DECLS): Likewise for the define.
978         * tests/semantics.at (AC_CHECK_DECLS): Extend test.
979         * doc/autoconf.texi (Generic Declarations): Update.
980         * NEWS: Update.
982 2010-06-01  Joern Rennecke  <joern.rennecke@embecosm.com>  (tiny change)
984         Generalize AC_CHECK_DECL for C++: allow optional arguments.
985         * general.m4 (_AC_CHECK_DECL_BODY): Process trailing function
986         argument types as arguments to use for C++.
987         (_AC_CHECK_DECLS): Filter out trailing function argument types
988         when generating the HAVE_DECL_* macro.
990 2010-05-25  Stefano Lattarini  <stefano.lattarini@gmail.com>
991             Eric Blake  <eblake@redhat.com>
993         Don't expose AC_{COMPILE,LINK}_IFELSE internals in documentation.
994         * doc/autoconf.texi (Runtime) <AC_LINK_IFELSE>: Suggest to use
995         `conftest$EXEEXT' rather than `conftest$ac_exeext' to acces the
996         just-linked program file.
997         (Runtime) <AC_COMPILE_IFELSE>: Suggest to use `conftest.$OBJEXT'
998         rather than `conftest.$ac_object' to access the just-compiled
999         object file.  Also, refer to the object file as "just-compiled"
1000         rather than "just-linked".
1002 2010-05-20  Eric Blake  <eblake@redhat.com>
1004         Mention another line-counting alternative.
1005         * doc/autoconf.texi (Limitations of Usual Tools) <grep>: Mention
1006         how to use sed to count lines.
1007         Suggested by Paolo Bonzini.
1009 2010-05-12  Eric Blake  <eblake@redhat.com>
1011         Document the grep workaround.
1012         * doc/autoconf.texi (Limitations of Usual Tools) <grep>: Document
1013         the bug.
1015 2010-05-12  Mark Hessling  <mark@rexx.org>  (tiny change)
1017         Work around QNX4 grep bug.
1018         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE): Count ^
1019         rather than $ to avoid QNX4 grep bug.
1020         * THANKS: Update.
1022 2010-05-11  David Reiss  <dreiss@facebook.com>  (tiny change)
1024         Improve Erlang documentation.
1025         * doc/autoconf.texi (Erlang Libraries): Document actual default
1026         values.
1027         * THANKS: Update.
1029 2010-05-11  Eric Blake  <eblake@redhat.com>
1031         Fix typo in previous patch.
1032         * doc/autoconf.texi (File Descriptors): Add end '.
1033         Reported by Ralf Wildenhues.
1035         Mention how to silence program probes.
1036         * doc/autoconf.texi (File Descriptors): Document how to silence a
1037         program probe.
1039 2010-04-26  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1041         Error and warning message formatting cleanups.
1042         * doc/autoconf.texi (Autoconf Language, Generic Structures):
1043         Do not capitalize the first word in error messages, do not end
1044         them with a period.
1045         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ARGS, AC_MSG_FAILURE):
1046         Likewise.
1047         * lib/autoconf/status.m4 (_AC_OUTPUT_FILE): Likewise.
1048         * lib/autotest/general.m4 (AT_INIT, at_fn_group_prepare):
1049         Likewise.
1050         * m4/m4.m4 (AC_PROG_GNU_M4): Likewise.
1051         * tests/base.at (AC_TRY_COMMAND): Likewise.
1052         * tests/torture.at (datarootdir workaround): Adjust expected
1053         message.
1055         Fix placing of ellipses in English text.
1056         * lib/autoconf/general.m4 (_AC_INIT_HELP): Be sure to add a
1057         space before `...' in natural language text.
1058         * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_MONGREL_BODY):
1059         Likewise.
1060         * lib/autoconf/libs.m4 (_AC_PATH_X_XMKMF): Likewise.
1061         * lib/autoconf/programs.m4 (AC_PROG_MAKE_SET): Likewise.
1062         * tests/suite.at: Likewise.
1063         * tests/torture.at (@%:@define header templates): Likewise.
1065         Ensure autotest tests have an atconfig file, for testsuite -v.
1066         * tests/autotest.at (AT_CHECK_AT_PREP): Create a default
1067         atconfig file in the directory of the testsuite.
1068         (AT_CHECK_AT_TITLE): Also check that `./micro-suite -v' output
1069         does not contain empty $at_srcdir expansion.
1070         (srcdir propagation): Remove the atconfig file generated by
1071         AT_CHECK_AT_PREP.  Check each suite invocation for $at_srcdir
1072         expansion.
1074         Fix autotest testsuite -v output to print test group title.
1075         * lib/autotest/general.m4 (AT_CLEANUP): Actually print test
1076         title in verbose output.  Fixes AUTOCONF-2.57-101-gc102ed8
1077         regression.
1078         * tests/autotest.at (AT_CHECK_AT_TITLE): Amend macro to check
1079         for test title in -v output.
1081 2010-04-26  Eric Blake  <eblake@redhat.com>
1083         Clarify octal escapes with tr.
1084         * doc/autoconf.texi (Limitations of Usual Tools): Carriage return
1085         is portable in octal, but not newline.
1087 2010-04-22  Joel James Adamson  <joel@chondestes.bio.unc.edu>  (tiny change)
1089         Add a paragraph to FAQ on Debugging configure scripts.
1090         * doc/autoconf.texi (Debugging): Mention inspecting config.log.
1091         * THANKS: Update.
1093 2010-04-21  Mike Frysinger  <vapier@gentoo.org>  (tiny change)
1095         Fix typo in doc example.
1096         * doc/autoconf.texi (Subdirectories): Fix typo.
1098 2010-04-05  Eric Blake  <eblake@redhat.com>
1100         Fix m4_cr_all for EBCDIC.
1101         * lib/m4sugar/m4sugar.m4 (m4_cr_all): Swap * and $, so that we
1102         don't end up with $* in EBCDIC.
1103         * NEWS: Document the fix.
1104         * THANKS: Update.
1105         Reported by Steve Goetze.
1107 2010-03-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1109         Do not use @acronym in the manual.
1110         * doc/autoconf.texi: Remove all usage of @acronym.
1111         Suggested by Karl Berry.
1113         Do not use @sc in the manual.
1114         * doc/autoconf.texi: Remove all usage of @sc in the manual.
1115         Suggested by Karl Berry.
1117 2010-03-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1119         Fix wrong comment in testsuite.
1120         * tests/m4sugar.at (m4@&t@_warn): Remove copy&pasted comment.
1122         Formatting cleanups in macro comments.
1123         * lib/autoconf/c.m4, lib/autoconf/erlang.m4,
1124         lib/autoconf/fortran.m4, lib/autoconf/functions.m4,
1125         lib/autoconf/general.m4, lib/autoconf/lang.m4,
1126         lib/autoconf/programs.m4, lib/autoconf/specific.m4,
1127         lib/autoconf/status.m4, lib/autoconf/types.m4,
1128         lib/autotest/general.m4, lib/autotest/specific.m4,
1129         lib/m4sugar/m4sh.m4, lib/m4sugar/m4sugar.m4,
1130         tests/autotest.at, tests/local.at, tests/m4sh.at,
1131         tests/semantics.at, tests/tools.at, tests/torture.at: Fix macro
1132         comment format.
1134 2010-03-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1136         manual: index strings containing colon in non-info outputs.
1137         * doc/autoconf.texi (Quadrigraphs, Shell Substitutions): Produce
1138         index entries for concepts containing a colon in output formats
1139         other than info.
1141         Update copyright years for files generated by mktests.sh.
1142         * tests/mktests.sh: Update copyright years for generated files.
1144 2010-03-04  Eric Blake  <eblake@redhat.com>
1146         Document AC_LANG_CONFTEST semantic change.
1147         * doc/autoconf.texi (Generating Sources) <AC_LANG_CONFTEST>:
1148         Enhance documentation, to show that semantic change in 2.63b was
1149         intentional.
1150         * THANKS: Update.
1151         Reported by Brian J. Murrell, analyzed by Ralf Wildenhues.
1153 2010-03-04  Peter Johansson  <trojkan@gmail.com>  (tiny change)
1155         Autoconf Macro Archive URL has changed.
1156         * doc/autoconf.texi (Introduction, Coding Style, Defining
1157         Directories): The Autoconf Macro Archive is officially `GNU'.
1158         Update URL.
1160 2010-03-02  Eric Blake  <eblake@redhat.com>
1162         Fix shell code in AS_TR_SH documentation.
1163         * doc/autoconf.texi (Common Shell Constructs) <AS_TR_SH>: Fix
1164         example to expand to valid shell code.
1165         Reported by Ralf Wildenhues.
1167         Improve documentation on AC_{COMPILE,LINK}_IFELSE.
1168         * doc/autoconf.texi (Running the Compiler): Mention that the
1169         object file is available after a successful compile.
1170         (Running the Linker): Likewise for the linker output.
1171         Suggested by Paolo Bonzini.
1173         Fix typo in docs.
1174         * doc/autoconf.texi (Conditional constructs) <m4_ifblank>: Fix
1175         typo.
1177 2010-03-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1179         Fix AS_ERROR for FreeBSD sh.
1180         * lib/m4sugar/m4sh.m4 (_AS_ERROR_PREPARE): Rewrite as_fn_error
1181         to take additional first argument STATUS instead of transporting
1182         $? across shell function entry, which does not work with FreeBSD
1183         sh.  Shift all other arguments by one, adjust.
1184         (AS_ERROR): Pass EXIT-STATUS, defaulting to $?, to as_fn_error.
1185         Report by Václav Haisman.
1187         Fix `autom4te cache creation' testsuite failure on FreeBSD.
1188         * tests/tools.at (autom4te cache creation): Normalize exit
1189         status of failed redirection to 1, may be 2 with FreeBSD sh.
1190         * THANKS: Update.
1191         Report by Václav Haisman.
1193         Fix Autotest tracing of shell pipelines for FreeBSD sh.
1194         * lib/autotest/general.m4 (_AT_DECIDE_TRACEABLE): Do not trace
1195         commands that contain [^|]|[^|], a likely shell pipeline.
1196         * tests/local.at (_AT_CHECK_ENV): Turn off tracing for egrep |
1197         grep pipeline.
1198         * doc/autoconf.texi (File Descriptors): Document limitation.
1199         * tests/autotest.at (Trace output): New test.
1201 2010-03-01  Eric Blake  <eblake@redhat.com>
1203         Update file flow diagram to mention Automake.
1204         * doc/autoconf.texi (Making configure Scripts): Avoid confusion
1205         with listing Makefile.in twice on one line.  Add a diagram showing
1206         how automake fits into the picture.
1207         Reported by santilín.
1209 2010-02-26  Eric Blake  <eblake@redhat.com>
1211         Optimize AC_REPLACE_FUNCS.
1212         * lib/autoconf/functions.m4 (_AC_REPLACE_FUNC): New helper macro.
1213         (AC_REPLACE_FUNCS): Use it to reduce forks when checking for
1214         replacements, by using literal rather than shell variable.
1216         Document how to safely override CFLAGS default.
1217         * doc/autoconf.texi (C Compiler) <AC_PROG_CC>: Document a way to
1218         change the default CFLAGS.
1219         (C++ Compiler) <AC_PROG_CXX>: Likewise, for CXXFLAGS.
1220         Reported by Monty Taylor; wording suggested by Paolo Bonzini.
1222         Document that Autoconf relies on IFS.
1223         * doc/autoconf.texi (Special Shell Variables) <IFS>: Add details
1224         about use of IFS within configure script.
1225         * THANKS: Update.
1226         Reported by Arkadiusz Miskiewicz.
1228         Recommend latest m4 release.
1229         * README: Bump recommendation to m4 1.4.14 (minimum remains
1230         1.4.6).
1231         * doc/autoconf.texi (Introduction): Likewise.
1232         * m4/m4.m4 (AC_PROG_GNU_M4): Likewise.
1234 2010-02-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1236         Fix testsuite failures due to setting of $U.
1237         * tests/local.at (_AT_CHECK_ENV): Ignore setting of $U.
1239 2010-02-10  Eric Blake  <ebb9@byu.net>
1241         Avoid $U if it is not initialized.
1242         * lib/autoconf/general.m4 (_AC_LIBOBJS_NORMALIZE): Ensure $U is
1243         set if automake did not define it.
1244         * THANKS: Update.
1245         Reported by Heiko Schlichting, via Julien Élie.
1247 2010-01-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1249         Fix substitution of carriage return on Darwin.
1250         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE): Set
1251         ac_cs_awk_cr to '\\r', so that sed portably expands this to '\r'
1252         rather than a literal carriage return, to fix substitution on
1253         Darwin.  Regression introduced in 2.63b.
1254         Report by Peter O'Gorman.
1256 2010-01-21  Dmitry V. Levin <ldv@altlinux.org>
1258         Fix test failure when a shell uses $TMPDIR for here-documents.
1259         * tests/tools.at (autotools and whitespace in file names): Create
1260         $TMPDIR before potential use like in other whitespace tests.
1262 2010-01-20  Paolo Bonzini  <bonzini@gnu.org>
1264         Add recommendation on (not) unsetting IFS.
1265         * doc/autoconf.texi (Special shell variables): Explain why it's
1266         better not to unset IFS.
1268 2010-01-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1270         config.status: consistent exit status with nonexistent config file input.
1271         * lib/autoconf/status.m4 (_AC_OUTPUT_MAIN_LOOP): Ensure we
1272         exit with status 1 rather than with that of 'false', for
1273         reproducibility.
1274         (AC_OUTPUT): Ensure to exit 1 in case of config.status failure.
1275         * tests/torture.at (Missing templates): Also test code path
1276         for $srcdir != '.'.
1277         Report by Tim Rice.
1279 2010-01-13  Eric Blake  <ebb9@byu.net>
1281         Fix previous example.
1282         * doc/autoconf.texi (Here-Documents): Touch up the example to
1283         match output to sample command line.
1285         Document here-doc pitfall.
1286         * doc/autoconf.texi (Here-Documents): Mention problem with <<-
1287         operator.
1288         Reported by Jim Meyering.
1290 2010-01-12  Eric Blake  <ebb9@byu.net>
1292         Typo fix in earlier commit.
1293         * doc/autoconf.texi (Autoconf Language): Fix typo.
1295 2010-01-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1297         Allow AC_FUNC_MKTIME to work with C++.
1298         * lib/autoconf/functions.m4 (AC_FUNC_MKTIME): ANSIfy KnR function
1299         definitions.  Use `const char*' for character literals; cast them
1300         to `char*' for putenv.
1302 2010-01-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1304         Export AUTOM4TE in tests/atlocal.in, for aclocal.
1305         * tests/atlocal.in: Set and export $AUTOM4TE, for aclocal.
1306         Report by Tim Rice.
1308 2010-01-08  Eric Blake  <ebb9@byu.net>
1310         Make autotest example act better with automake.
1311         * doc/autoconf.texi (Making testsuite Scripts): Rely on automake
1312         feature for recommended autotest snippet, following our own use.
1314         Clarify language on handling of opening parenthesis.
1315         * doc/autoconf.texi (Autoconf Language): Give an example of
1316         improper argument passing.
1317         * THANKS: Update.
1318         Reported by Juan Carlos Hurtado.
1320 2010-01-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1322         Don't fail autom4te preselection test due to different Automake.
1323         * tests/tools.at (autom4te preselections): If the cache test
1324         fails, extract the Automake version from the toplevel
1325         Makefile.in file of the source tree; skip, rather than fail
1326         the test group if the automake program has a different version.
1327         * THANKS: Update.
1328         Report by Dieter Jurzitza, fix suggested by Eric Blake.
1330 2010-01-06  Peter Breitenlohner  <peb@mppmu.mpg.de>
1331             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1333         Fix AC_CONFIG_LINKS to generated files when srcdir is absolute.
1334         * lib/autoconf/status.m4 (_AC_OUTPUT_LINK): Check $ac_source,
1335         not $srcdir, for being relative or absolute.
1336         * tests/torture.at (AC_CONFIG_LINKS): New test.
1337         (AC_CONFIG_LINKS and identical files): Extend test, avoid some
1338         forks.
1339         Report, patch and testcase example by Peter Breitenlohner.
1341 2010-01-05  Eric Blake  <ebb9@byu.net>
1343         Improve release automation.
1344         * maint.mk (gnulib_dir, gnulib-version, bootstrap-tools)
1345         (announcement): Copy from latest gnulib maint.mk.
1346         * cfg.mk (announce_gen, gpg_key_ID): Delete.
1347         (bootstrap-tools): Override the default.
1349         Update upstream files.
1350         * GNUmakefile: Update via 'make fetch'.
1351         * build-aux/announce-gen: Likewise.
1352         * build-aux/config.guess: Likewise.
1353         * build-aux/config.sub: Likewise.
1354         * build-aux/gendocs.sh: Likewise.
1355         * build-aux/gnupload: Likewise.
1356         * build-aux/move-if-change: Likewise.
1357         * build-aux/update-copyright: Likewise.
1358         * build-aux/vc-list-files: Likewise.
1359         * doc/standards.texi: Likewise.
1360         * cfg.mk (update-copyright-env): Enforce wrap column.
1362         Update copyright year.
1363         All files changed to add 2010, via 'make update-copyright'.
1365 2009-12-31  Bruno Haible  <bruno@clisp.org>
1367         Improve documentation on Solaris tr bugs.
1368         * doc/autoconf.texi (Limitations of Usual Tools) <tr>: Refine
1369         description of NUL handling by Solaris tr.
1371 2009-12-31  Eric Blake  <ebb9@byu.net>
1373         Another tr tweak.
1374         * doc/autoconf.texi (Limitations of Usual Tools) <tr>: Clarify
1375         previous commit.
1376         Reported by Ralf Wildenhues.
1378 2009-12-29  Eric Blake  <ebb9@byu.net>
1380         Improve documentation on tr portability.
1381         * doc/autoconf.texi (Limitations of Usual Tools) <tr>: Refine
1382         description of NUL handling.  Document set size issue.
1383         Reported by Bruno Haible.
1385         Fix comment in AC_CHECK_DECLS.
1386         * lib/autoconf/general.m4 (AC_CHECK_DECL): Document the includes
1387         argument to the shell function.
1389 2009-12-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1391         Add testsuite exposure for shtool usage.
1392         * tests/foreign.at (shtool): New test.
1393         Report by Dmitry Grebeniuk.
1395 2009-12-12  Eric Blake  <ebb9@byu.net>
1397         Improve wording about m4 quote characters.
1398         * doc/autoconf.texi (Autoconf Language): Autoconf quote characters
1399         come from m4sugar, not raw m4.
1400         (Active Characters): Mention that it is m4sugar which changes
1401         quotes from `' to [].
1402         * THANKS: Update.
1403         Suggested by Josef Vukovic.
1405 2009-12-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1407         Revert "Improve AC_CONFIG_AUX_DIRS a bit." to fix shtool usage.
1408         * lib/autoconf/general.m4 (AC_CONFIG_AUX_DIRS): Revert test for
1409         shtool as install script.  Regression introduced in 2.64.
1410         * NEWS, THANKS: Update.
1411         Report by Dmitry Grebeniuk.
1412         This reverts commit 93d9386de9c1320afed43f1337ac5ddb2d2dcbb4.
1414 2009-12-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1416         Fix NEWS description for AC_FUNC_MMAP entry.
1417         * NEWS: Update.
1419         Fix 2.65 AC_TYPE_INT*_T macro body text regression.
1420         * lib/autoconf/types.m4 (_AC_TYPE_INT_BODY): Move helper enum
1421         definition to prologue section, to avoid syntax error.
1422         * NEWS, THANKS: Update.
1423         Report by Pierre Ynard.
1425 2009-12-09  Paolo Bonzini  <bonzini@gnu.org>
1427         Fix `recursion' test failure.
1428         * tests/m4sugar.at (recursion): Use empty diversion, not 0.
1430 2009-12-05  Stefano Lattarini  <stefano.lattarini@gmail.com>
1431             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1433         Document Solaris/Heirloom sh set -e issue with command substitutions.
1434         * doc/autoconf.texi (Limitations of Builtins): Fix typos `set -d'
1435         in previous example.  Document failure to honor && lists with set -e
1436         and a command substitution in the failing command.
1437         Report and initial patch by Stefano Lattarini against Automake.
1439 2009-12-04  Eric Blake  <ebb9@byu.net>
1441         Warn if using unnamed diversion.
1442         * lib/m4sugar/m4sugar.m4 (_m4_divert, m4_divert_push): Add
1443         optional parameter, which controls warning.
1444         (m4_divert_pop, m4_cleardivert, m4_divert_require)
1445         (_m4_require_call): Adjust callers.
1446         * lib/m4sugar/m4sh.m4 (AS_REQUIRE): Likewise.
1447         * tests/m4sh.at (AT_DATA_LINENO): Avoid triggering the warning.
1448         * tests/m4sugar.at (AT_CHECK_M4SUGAR_TEXT, m4@&t@_append)
1449         (m4@&t@_text_wrap, recursion): Likewise.
1450         (m4@&t@_warn, m4@&t@_divert_stack): Adjust expected output.
1451         * tests/tools.at (autom4te and whitespace in file names)
1452         (autoconf: the empty token): Avoid triggering the warning.
1453         (autoconf: AC_PRESERVE_HELP_ORDER): New test.
1454         * tests/mktests.sh (ac_exclude_list): Retire prior test.
1455         * NEWS: Document the warning.
1456         * doc/autoconf.texi (Redefined M4 Macros) <m4_divert>,
1457         <m4_undivert>: Make even more explicit that using these directly
1458         is discouraged.
1459         (Diversion support): Further warn against improper diversion
1460         changes.
1461         <m4_divert_text>: Give an example of proper use.
1462         Reported by Mike Frysinger.
1464 2009-11-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1466         manual: AC_SEARCH_LIBS also prepends to LIBS.
1467         * doc/autoconf.texi (Libraries): Document that AC_SEARCH_LIBS
1468         prepends to LIBS, just like AC_CHECK_LIB.
1470 2009-11-27  Paolo Bonzini  <bonzini@gnu.org>
1472         Bump m4.m4 serial number.
1473         * m4/m4: Bump serial number to 10.
1475 2009-11-27  Harald van Dijk  <truedfx@gentoo.org>
1477         Fix m4 detection test on dash.
1478         * m4/m4 (AC_PROG_GNU_M4): Use AS_ECHO.
1480 2009-11-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1482         Fix AC_FUNC_MMAP regression with C++ compiler in 2.65.
1483         * lib/autoconf/functions.m4 (AC_FUNC_MMAP): Use const char*
1484         for the constant string.  Cast void* to char* for assignment.
1485         * NEWS, THANKS: Update.
1486         Report by Michal Čihař.
1488         Add pgfortran to list of Fortran 95+ compilers.
1489         * lib/autoconf/fortran.m4 (_AC_F95_FC): Add pgfortran before
1490         pgf95.
1491         Based on report by Jeff Squyres.
1493 2009-11-22  Bruno Haible  <bruno@clisp.org>
1495         Fix failure of test 35 when the user has a .autom4te.cfg file.
1496         * tests/tools.at (autom4te cache creation): Skip the test if the
1497         user has a .autom4te.cfg file.
1499 2009-11-21  Eric Blake  <ebb9@byu.net>
1501         Release Version 2.65.
1502         * NEWS: Mention the release.
1504         Prepare for release.
1505         * build-aux/announce-gen: Sync from upstream.
1506         * build-aux/config.guess: Likewise.
1507         * build-aux/config.sub: Likewise.
1508         * cfg.mk (gnu_rel_host, url_dir_list): Move...
1509         * maint.mk: ...here, copying ideas from gnulib.
1510         (major): Rename...
1511         (stable): ...to this, copying gnulib.
1512         * HACKING (release): Document changes in process.
1514         Avoid spurious newline in traced macros.
1515         * bin/autoreconf.in (tracing): Drop newline before parsing traced
1516         arguments; regression from 2009-11-14.
1518 2009-11-20  Eric Blake  <ebb9@byu.net>
1520         Allow absolute names in AT_TESTED.
1521         * lib/autotest/general.m4 (AT_INIT) <PREPARE_TESTS>: Check for
1522         absolute names before path walk.
1523         * THANKS: Update.
1524         Suggested by Allan Clark.
1526 2009-11-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1528         Fix AC_CONFIG_SUBDIRS tracing in autoreconf.
1529         * bin/autoreconf.in (autoreconf_current_directory): Collapse
1530         newlines in the autoconf trace output, similar to how automake
1531         invokes autoconf, so that newlines do not matter in the argument
1532         to AC_CONFIG_SUBDIRS.
1533         * tests/torture.at (Deep Package): Expose this issue in the
1534         test.
1535         * THANKS: Update.
1536         Report by Nathan Schulte.
1538 2009-11-09  Eric Blake  <ebb9@byu.net>
1540         Fix AC_FUNC_MMAP for cygwin.
1541         * lib/autoconf/functions.m4 (AC_FUNC_MMAP): Make the test more
1542         portable: Actually check for <sys/param.h>, and only use MAP_FIXED
1543         on an address previously returned from mmap.
1544         * THANKS: Update.
1545         Reported by Corinna Vinschen.
1547 2009-11-04  Eric Blake  <ebb9@byu.net>
1549         Redocument AS_DIRNAME, even with its flaws.
1550         * doc/autoconf.texi (Common Shell Constructs) <AS_DIRNAME>:
1551         Restore documenatation, since dirname mentions it.
1552         Reported by Peter Johansson.
1554         Update upstream files.
1555         * build-aux/announce-gen: Synchronize from upstream.
1556         * build-aux/config.guess: Likewise.
1557         * build-aux/config.sub: Likewise.
1558         * build-aux/gendocs.sh: Likewise.
1559         * build-aux/git-version-gen: Likewise.
1560         * build-aux/texinfo.tex: Likewise.
1561         * build-aux/update-copyright: Likewise.
1562         * doc/standards.texi: Likewise.
1563         * lib/Autom4te/Channels.pm: Likewise.
1564         * lib/Autom4te/Configure_ac.pm: Likewise.
1565         * lib/Autom4te/FileUtils.pm: Likewise.
1566         * lib/Autom4te/Struct.pm: Likewise.
1567         * lib/Autom4te/XFile.pm: Likewise.
1569 2009-11-04  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1571         Coverage for autom4te cache creation issues.
1572         * tests/tools.at (autom4te cache creation): New test.
1574 2009-11-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1576         Fix testsuite failures with SHELL=zsh.
1577         * tests/statesave.m4 (AC_STATE_SAVE): Ignore argv and ARGC when
1578         comparing configure variables.
1580 2009-11-03  Eric Blake  <ebb9@byu.net>
1581         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1583         Update NEWS for recent fixes.
1584         * NEWS: Add some entries.
1586 2009-10-31  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1588         Micro-optimization of config.status substitution.
1589         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE): No need to
1590         concatenate an empty second string, when we have exactly 148
1591         characters to substitute.
1592         * tests/torture.at (Substitute a 2000-byte string): Add test
1593         exposure for runs of backslashes near the 148 character limit.
1595         Fix testsuite failure on AIX 4.3.3.
1596         * lib/autoconf/general.m4 (_AC_RUN_LOG_LIMIT): Remove conftest.err
1597         also if it is empty.
1599         Fix testsuite failure on IRIX and AIX.
1600         * tests/torture.at (Substitute and define special characters):
1601         Double the backslash before the double-quote in
1602         AC_DEFINE_UNQUOTED, as documented for here-documents.
1604 2009-10-31  Eric Blake  <ebb9@byu.net>
1606         Fix cross-manual link to gcc.
1607         * doc/autoconf.texi (Portable C and C++): Provide uref rather than
1608         xref when building for html.
1609         Reported via Karl Berry.
1611         Update authors.
1612         * AUTHORS: Document recent copyright assignments.
1614 2009-10-31  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1616         Fix AC_OPENMP configure message for non-C compilers.
1617         * lib/autoconf/lang.m4 (AC_LANG_DEFINE): Accept as additional
1618         fourth arg the compiler variable name, defined in _AC_CC($1).
1619         (_AC_CC): New language dispatch macro.
1620         * lib/autoconf/erlang.m4 (AC_LANG(Erlang)): Adjust.
1621         * lib/autoconf/fortran.m4 (AC_LANG(Fortran 77), AC_LANG(Fortran)):
1622         Likewise.
1623         * lib/autoconf/c.m4 (AC_LANG(C), AC_LANG(C++))
1624         (AC_LANG(Objective C), AC_LANG(Objective C++)): Likewise.
1625         (AC_OPENMP): Use _AC_CC instead of $CC.
1627         Do not fail OpenMP tests on systems without aclocal.
1628         * tests/c.at (AC_OPENMP and C, AC_OPENMP and C++): Override
1629         `ACLOCAL=true' for autoreconf, the tests don't need aclocal.
1630         * tests/fortran.at (AC_OPENMP and Fortran 77)
1631         (AC_OPENMP and Fortran): Likewise.
1633 2009-10-31  Bruno Haible  <bruno@clisp.org>
1634             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1636         Improve cache variable documentation.
1637         * doc/autoconf.texi (AC_PROG_AWK, AC_PROG_GREP, AC_PROG_EGREP,
1638         AC_PROG_FGREP, AC_PROG_INSTALL, AC_PROG_MKDIR_P, AC_PROG_LEX,
1639         AC_PROG_YACC, AC_CHECK_PROG, AC_CHECK_PROGS, AC_PATH_PROG,
1640         AC_PATH_PROGS): Don't suggest to use the cache variable, only to
1641         override it, or preferably, a non-cache variable associated with
1642         the test.
1643         (AC_PROG_SED): Likewise. Fix name of cache variable.
1644         (AC_FUNC_GETMNTENT): Fix name cache variable.
1645         (AC_FUNC_LSTAT): Fix typo.
1647 2009-10-31  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1649         Fix AC_OPENMP for Fortran (F77 and FC).
1650         * lib/autoconf/fortran.m4 (AC_LANG_FUNC_LINK_TRY(Fortran): New.
1651         * tests/c.at (AC_C_RESTRICT and C++, AC_OPENMP and C)
1652         (AC_OPENMP and C++): New tests.
1653         * tests/fortran.at (AC_OPENMP and Fortran 77)
1654         (AC_OPENMP and Fortran): New tests.
1655         * THANKS: Update.
1656         Report by Bart Oldeman.
1658         Perl coverage convenience targets.
1659         * Makefile.am (PERL_COVERAGE_DB, PERL_COVERAGE_FLAGS)
1660         (PERL_COVER): New variables.
1661         (check-coverage, check-coverage-run, check-coverage-report)
1662         (clean-coverage): New phony targets.
1663         (clean-local): Depend on clean-coverage.
1665 2009-10-28  Eric Blake  <ebb9@byu.net>
1667         Fix corner cases in AS_LITERAL_IF and AS_TR_SH.
1668         * lib/m4sugar/m4sh.m4 (AS_LITERAL_IF): Fix bug with unbalanced
1669         parens.  Move guts...
1670         (_AS_LITERAL_IF): into new helper.
1671         (AS_TR_SH, AS_TR_CPP): Fix bugs with expansion of wrong macro.
1672         Move guts...
1673         (_AS_TR_SH, _AS_TR_SH_LITERAL, _AS_TR_SH_INDIR, _AS_TR_CPP)
1674         (_AS_TR_CPP_LITERAL, _AS_TR_CPP_INDIR): ...into new helpers.
1675         (AS_VAR_PUSHDEF): Hoist m4_require, by moving guts...
1676         (_AS_VAR_PUSHDEF): ...into new helper.
1677         * tests/m4sh.at (AS@&t@_LITERAL_IF): Enhance test.
1679         Minor optimizations to m4sh.
1680         * lib/m4sugar/m4sh.m4 (AS_VAR_IF, AS_IDENTIFIER_IF)
1681         (AS_LITERAL_IF): Parse fewer bytes during expansion, by visiting
1682         if-true and if-false arguments only once.
1684         Optimize m4_escape for common case.
1685         * lib/m4sugar/m4sugar.m4 (m4_escape): Don't use regex if string is
1686         already sane, by copying from AS_LITERAL_IF.  Move guts...
1687         (_m4_escape): ...into new helper.
1689         Fix m4_text_wrap handling of quoted whitespace.
1690         * lib/m4sugar/m4sugar.m4 (m4_escape): New macro.
1691         (m4_text_wrap): Use it to avoid issues with embedded [ and ].
1692         * tests/m4sugar.at (m4@&t@_text_wrap): Test it.
1693         * NEWS: Document this.
1694         * doc/autoconf.texi (Text processing Macros) <m4_escape>:
1695         Likewise.
1696         Reported by Mike Frysinger.
1698 2009-10-27  Eric Blake  <ebb9@byu.net>
1700         Mention another feature of AC_RUN_IFELSE.
1701         * doc/autoconf.texi (Runtime) <AC_RUN_IFELSE>: Mention that
1702         compiled test program still exists during if-true branch.
1703         * THANKS: Update.
1704         Reported by Stefano Lattarini, suggestion by Ralf Wildenhues.
1706 2009-10-26  Paolo Bonzini  <bonzini@gnu.org>
1708         Pass Autom4te path down to programs that autoreconf invokes.
1709         * bin/autoreconf.in (autom4te): New variable.  Export its value
1710         as $ENV{'AUTOM4TE'}.  Suggested by Peter Johansson.
1711         * THANKS: Update.
1713 2009-10-20  Eric Blake  <ebb9@byu.net>
1715         Fix AC_TYPE_UINT64_T on Tru64 with gcc 3.4.4.
1716         * lib/autoconf/types.m4 (_AC_TYPE_UNSIGNED_INT_BODY)
1717         (_AC_TYPE_INT_BODY): Avoid undefined behavior of attempting shift
1718         wider than type.
1719         * NEWS: Document this.
1720         Reported by Rainer Orth.
1722 2009-10-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1724         Fix a couple of index entries in the manual.
1725         * doc/autoconf.texi (Polymorphic Variables): Fix index entries
1726         for AS_VAR_APPEND, AS_VAR_ARITH.
1728 2009-10-15  Eric Blake  <ebb9@byu.net>
1730         Fix typos in INSTALL.
1731         * doc/install.texi (Basic Installation, Installation Names): Fix
1732         typos in last patch.
1733         Repored by Ralf Wildenhues.
1735         Improve INSTALL wording.
1736         * doc/install.texi (Basic Installation): Clarify installcheck
1737         behavior.
1738         (Installation Names): Mention that --prefix only overrides
1739         directory locations not specified on the command line.  Prefer
1740         /alternate/directory over /path/to.  Remove a sentence targeted to
1741         the developer, not the user.
1742         * THANKS: Update.
1743         Suggested by Alfred M. Szmidt.
1745 2009-10-15  Peter Breitenlohner  <peb@mppmu.mpg.de>
1747         Fix typos in documentation.
1748         * doc/autoconf.texi (Cache Variable Index): Fix typo.
1749         (Libraries) <AC_SEARCH_LIBS>: Mention 'none required' result.
1751 2009-10-09  Bruno Haible  <bruno@clisp.org>
1752             Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
1754         Recommend `sh -n' debugging, and public result variables for macros.
1755         * doc/autoconf.texi (Debugging): Recommend to use "bash -n
1756         configure".  Recommend the use of result variables as an
1757         alternative to run-if-true/run-if-false parameters.
1759 2009-10-05  Bruno Haible  <bruno@clisp.org>
1761         * doc/autoconf.texi (Particular Functions): Swap sections about
1762         AC_FUNC_MBRTOWC and AC_FUNC_MEMCMP.
1764 2009-10-01  Paolo Bonzini  <bonzini@gnu.org>
1766         Unconditionally check for junk ./--version after mkdir search loop.
1767         * lib/autoconf/programs.m4 (AC_PROG_MKDIR_P): Always check for
1768         presence of ./--version.  Reported by Eric Blake.
1770 2009-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1772         Clarify documentation about Solaris sed quantifier restriction.
1773         * doc/autoconf.texi (Limitations of Usual Tools) <sed>: '*' does
1774         not work after subexpressions, \{M,N\} only after one-character
1775         expressions.  From GCC PR 38923.
1777 2009-09-21  Eric Blake  <ebb9@byu.net>
1779         Fit configure output in 80 columns.
1780         * lib/autoconf/functions.m4
1781         (AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK): Shorten message.
1783 2009-09-18  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1785         Use consistent notation for cache variables.
1786         * doc/autoconf.texi (Generic Programs): Remove `$' before
1787         variable name.
1789         Documentation of specific and general cache variables.
1790         * doc/autoconf.texi (Default Includes, Alternative Programs)
1791         (Particular Programs, Generic Programs, Files, Libraries)
1792         (Function Portability, Particular Functions, Generic Functions)
1793         (Particular Headers, Generic Headers, Declarations)
1794         (Generic Declarations, Particular Structures, Particular Types)
1795         (Specific Compiler Characteristics)
1796         (Generic Compiler Characteristics, C Compiler, System Services):
1797         Document lots of cache variables.
1798         * NEWS: Update.
1799         Suggested by Bruno Haible.
1801         New cache variable index in the manual.
1802         * doc/autoconf.texi: Define new index `CA' for cache variables.
1803         (caindex): New macro.
1804         (Cache Variable Index): New appendix node.
1805         (Top, Indices): Adjust menus.
1806         (Cache Variable Names, Site Defaults): Adjust text.
1807         * doc/Makefile.am (CLEANFILES): Add files generated for CA index.
1809         New FAQ node: Debugging.
1810         * doc/autoconf.texi (Debugging): New node.
1811         (Top, FAQ): Adjust menus.
1812         Report by Bruno Haible.
1814         Document AM_MAKEFLAGS workaround to the macro override problem.
1815         * doc/autoconf.texi (Macros and Submakes): Automake makefiles
1816         provide AM_MAKEFLAGS to help with overriding macros in submake
1817         invocations.
1818         Prompted by bug report from Bruno Haible.
1820 2009-09-15  Peter Breitenlohner  <peb@mppmu.mpg.de>
1822         Implement and document Objective C++ support.
1823         * lib/autoconf/c.m4 (AC_LANG(Objective C++), AC_LANG_OBJCXX)
1824         (AC_LANG_PREPROC(Objective C++), AC_PROG_OBJCXXCPP)
1825         (AC_LANG_COMPILER(Objective C++), AC_PROG_OBJCXX)
1826         (_AC_PROG_OBJCXX_G): New macros.
1827         (_AC_ARG_VAR_CPPFLAGS, _AC_ARG_VAR_LDFLAGS)
1828         (_AC_ARG_VAR_LIBS): Adjusted.
1829         * doc/autoconf.texi (Objective C++ Compiler): New node.
1830         (Preset Output Variables): Document OBJCXXFLAGS.
1831         (Language Choice): Document `Objective C++' language.
1832         * NEWS: Updated.
1833         * tests/local.at (AT_CHECK_ENV): Ignore AC_SUBSTed Objective C++
1834         related variables.
1836 2009-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1838         Work around DJGPP shell function return bug with command substitutions.
1839         DJGPP bash 2.04 has a bug in that `return $ac_retval' done in a
1840         shell function which also contains a command substitution causes
1841         the shell to barf.  For more details and a fix see:
1842         <http://www.delorie.com/djgpp/mail-archives/browse.cgi?p=djgpp-workers/2009/09/09/03:35:08>
1843         Possible workaround include putting the `return' in a subshell
1844         or calling another function to set the status.
1845         * lib/autoconf/general.m4 (_AC_PREPROC_IFELSE_BODY)
1846         (_AC_COMPILE_IFELSE_BODY, _AC_LINK_IFELSE_BODY)
1847         (_AC_RUN_IFELSE_BODY, _AC_COMPUTE_INT_BODY): Use AS_SET_STATUS
1848         instead of `return'.
1849         * doc/autoconf.texi (Common Shell Constructs, Shell Functions):
1850         Document the issue.
1851         * THANKS: Update.
1852         Report by Rugxulo and Reuben Thomas.
1854         DJGPP fix: Do not redirect standard input in configure scripts.
1855         * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS): If $DJGPP is
1856         nonempty, do not dup fd 0 to AS_ORIGINAL_STDIN_FD, do not close
1857         fd 0.
1859 2009-09-14  Eric Blake  <ebb9@byu.net>
1861         Quote result of m4_toupper and m4_tolower.
1862         * lib/m4sugar/m4sugar.m4 (m4_tolower, m4_toupper): Quote result.
1863         * lib/autotest/general.m4 (AT_KEYWORDS): Adjust caller.
1864         * tests/m4sugar.at (m4@&t@_toupper and m4@&t@_tolower): New test.
1865         * NEWS: Document this.
1866         * THANKS: Update.
1867         Reported by Sam Steingold.
1869 2009-09-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1871         DJGPP fix: remove both conftest and conftest.exe.
1872         The DJGPP compiler may create both `a.out' and `a.exe' without -o,
1873         and both `conftest' and `conftest.exe' with `-o conftest', but not
1874         with `-o conftest.exe'.
1875         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_O): Also remove
1876         `conftest' without $ac_exeext suffix.
1878         DJGPP fix: do not try to source /dev/null as cache or site file.
1879         * lib/autoconf/general.m4 (AC_SITE_LOAD, AC_CACHE_LOAD): Do not
1880         load the cache or site file if it is `/dev/null', as DJGPP treats
1881         it as a regular file, but the shell then warns about it later.
1882         Fixes several test suite failures on DJGPP.
1884         testsuite: pass $configure_options to configure invocations.
1885         * tests/local.at (AT_CHECK_CONFIGURE): Add $configure_options
1886         to configure command line.
1887         * tests/autotest.at, tests/base.at, tests/c.at, tests/torture.at:
1888         Likewise for each configure invocation.
1889         * README-hacking: Document configure_options.
1891         testsuite: improve Erlang tests portability, overridability.
1892         * tests/autotest.at (Erlang Eunit unit tests): Use "no" as
1893         value-if-not-found for Erlang tools.
1894         * tests/erlang.at: Likewise.  Also, use AS_EXIT instead of plain
1895         exit.
1897 2009-09-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1899         * bin/autoupdate.in: Fix typos in comments.
1901         Improve autotest testsuite summary message.
1902         * lib/autotest/general.m4 (AT_INIT): Hint at the toplevel log
1903         only if not $at_debug_p.  Always hint at the per-test output.
1905         Four new autoupdate tests, expected failures.
1906         * tests/tools.at (autoupdating macros recursively)
1907         (autoupdating with m4@&t@_pushdef, autoupdating with AC_REQUIRE)
1908         (autoupdating with complex quoting): New tests.
1910         Fix description of AC_CHECK_LIB regarding other deplibs.
1911         * doc/autoconf.texi (Libraries): Library linking may not fail
1912         even without missing additional libs.
1914 2009-09-12  Eric Blake  <ebb9@byu.net>
1916         Track recent copyright assignments.
1917         * AUTHORS: Update.
1919         Improve documentation on quoting.
1920         * doc/autoconf.texi (Autoconf Language): Clarify quoting example.
1921         * THANKS: Update.
1922         Reported by santilín.
1924 2009-09-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1926         New config.status option --config.
1927         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Implement
1928         --config.
1929         * doc/autoconf.texi (config.status Invocation): Document it.
1930         * NEWS: Update.
1931         * tests/torture.at (configure invocation): Test it.
1932         Suggested several times, by several people, in the past.
1934 2009-09-10  Eric Blake  <ebb9@byu.net>
1936         Document that AS_INIT is automatically used.
1937         * doc/autoconf.texi (Initialization Macros) <AS_INIT>: Add words
1938         to clarify that only bare-bones scripts need a direct AS_INIT.
1939         Suggested by Reuben Thomas.
1941         Clarify portability pitfall of test.
1942         * doc/autoconf.texi (Limitations of Builtins) <test>: Give more
1943         reasons why -a and -o are not portable.
1944         Reported by Reuben Thomas.
1946 2009-09-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1948         Document sed limitation with escaped metacharacters.
1949         * doc/autoconf.texi (Limitations of Usual Tools) <sed>: Use `%'
1950         rather than `/' as delimiter in an example `s' command.
1951         Document inconsistent treatment of escaped metacharacters.
1952         * THANKS: Update.
1953         Report by Dave Korn, with additional input from Paolo Bonzini
1954         and Eric Blake.
1956         Document temporary directory `$tmp' for use in config.status.
1957         * doc/autoconf.texi (Configuration Actions): Document `$tmp'.
1958         * NEWS: Update.
1960 2009-09-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1962         Update License to GPLv3+ including new Autoconf Exception.
1963         * NEWS, README: Update licensing information.
1964         * COPYING.EXCEPTION: New file.
1965         * Makefile.am (EXTRA_DIST): Distribute it.
1966         * cfg.mk (autom4te-update): Remove copyright change warning.
1967         * lib/autoconf/autoconf.m4, lib/autoconf/autoheader.m4,
1968         lib/autoconf/autoscan.m4, lib/autoconf/autotest.m4,
1969         lib/autoconf/autoupdate.m4, lib/autoconf/c.m4,
1970         lib/autoconf/erlang.m4, lib/autoconf/fortran.m4,
1971         lib/autoconf/functions.m4, lib/autoconf/general.m4,
1972         lib/autoconf/headers.m4, lib/autoconf/lang.m4,
1973         lib/autoconf/libs.m4, lib/autoconf/oldnames.m4,
1974         lib/autoconf/programs.m4, lib/autoconf/specific.m4,
1975         lib/autoconf/status.m4, lib/autoconf/types.m4,
1976         lib/autotest/autotest.m4, lib/autotest/general.m4,
1977         lib/autotest/specific.m4, lib/m4sugar/foreach.m4,
1978         lib/m4sugar/m4sh.m4, lib/m4sugar/m4sugar.m4: Update exception
1979         statement, bump to GPLv3.
1980         * bin/autoconf.as, bin/autoheader.in, bin/autom4te.in,
1981         bin/autoreconf.in, bin/autoscan.in, bin/autoupdate.in,
1982         bin/ifnames.in: Bump to GPLv3+, adjust --version output
1983         to reflect the GPLv3+ and the Autoconf Exception.
1984         * lib/Autom4te/C4che.pm, lib/Autom4te/ChannelDefs.pm,
1985         lib/Autom4te/General.pm, lib/Autom4te/Request.pm,
1986         lib/autom4te.in, lib/autoscan/autoscan.pre,
1987         lib/emacs/autoconf-mode.el, lib/emacs/autotest-mode.el,
1988         lib/freeze.mk, tests/atlocal.in, tests/autoscan.at,
1989         tests/autotest.at, tests/base.at, tests/c.at,
1990         tests/compile.at, tests/erlang.at, tests/foreign.at,
1991         tests/fortran.at, tests/local.at, tests/m4sh.at,
1992         tests/m4sugar.at, tests/mktests.sh, tests/semantics.at,
1993         tests/statesave.m4, tests/suite.at, tests/tools.at,
1994         tests/torture.at, tests/wrapper.as: Bump to GPLv3+.
1996         Allow to work on systems without Fcntl::flock implementation.
1997         * configure.ac (PERL_FLOCK): New substitution variable with test
1998         whether Fcntl::flock is implemented by the system.
1999         * bin/Makefile.am (edit): Substitute @PERL_FLOCK@.
2000         * bin/autom4te.in: Call XFile::lock only if flock is
2001         implemented.
2003 2009-09-04  Reuben Thomas <rrt@sc3d.org>  (tiny change)
2005         Mention the Autoconf archive.
2006         * doc/autoconf.texi (Coding Style): Add a link.
2008 2009-08-30  Bruno Haible  <bruno@clisp.org>
2010         Document another Solaris tr pitfall.
2011         * doc/autoconf.texi (Limitations of Usual Tools) <tr>: Mention
2012         that Solaris /usr/bin/tr does not only have problems with
2013         replacing NUL bytes but discards all NUL bytes from the input.
2015 2009-09-04  Eric Blake  <ebb9@byu.net>
2017         Improve wording about what goes before AC_INIT.
2018         * doc/autoconf.texi (Initializing configure): Update wording.
2019         (Versioning) <AC_PREREQ>: Remove misleading text, to match
2020         autoscan's behavior.
2021         * THANKS: Update.
2022         Reported by NightStrike, with input from Ralf Wildenhues.
2024 2009-09-04  Thomas Jahns  <jahns@dkrz.de>  (tiny change)
2026         Fix illegal tab character in Fortran source.
2027         * lib/autoconf/fortran.m4 (AC_FC_SRCEXT): Change TAB back to
2028         multiple spaces; regression introduced 2008-10-23.
2029         * NEWS: Mention this.
2030         * THANKS: Update.
2032 2009-08-22  Romain Lenglet  <romain.lenglet@laposte.net>
2034         Fix AT_CHECK_EUNIT for versions of Erlang/OTP without init:stop/1.
2035         * lib/autotest/specific.m4 (AT_CHECK_EUNIT): Support older
2036         versions of Erlang/OTP with an erlang:stop() function that doesn't
2037         take arguments.
2039 2009-08-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2041         Drop unneeded line in Eunit test.
2042         * tests/autotest.at (Erlang Eunit unit tests): Do not copy
2043         install-sh.
2045         Fix build dependencies for Erlang macro files.
2046         * lib/freeze.mk (autotest_m4f_dependencies): Add
2047         $(src_libdir)/autotest/specific.m4.
2048         * tests/Makefile.am (AUTOCONF_FILES): Add erlang.m4.
2050 2009-09-19  Paolo Bonzini  <bonzini@gnu.org>
2052         Use a separate program to test whether the compiler works.
2053         * lib/autoconf/erlang.m4 (_AC_LANG_NULL_PROGRAM(Erlang)): New.
2054         * lib/autoconf/lang.m4 (AC_LANG_DEFINE): Copy _AC_LANG_NULL_PROGRAM.
2055         (_AC_LANG_NULL_PROGRAM(), _AC_LANG_NULL_PROGRAM): New.
2056         (_AC_COMPILER_EXEEXT_DEFAULT): Print here "whether the xyz compiler
2057         works", before exiting.
2058         (_AC_COMPILER_EXEEXT_WORKS): Merge into _AC_COMPILER_EXEEXT_CROSS,
2059         remove the "whether the xyz compiler works" message, use
2060         conftest$ac_cv_exeext instead of $ac_file.
2061         (_AC_COMPILER_EXEEXT): Try _AC_COMPILER_EXEEXT_DEFAULT using
2062         the null program, and clean conftest.out only after
2063         _AC_COMPILER_EXEEXT_CROSS.
2064         (AC_NO_EXECUTABLES): Use _AC_LANG_NULL_PROGRAM.
2065         (_AC_COMPILER_OBJEXT): Use _AC_LANG_NULL_PROGRAM.
2067 2009-08-18  Bruno Haible  <bruno@clisp.org>
2069         Document Solaris tr range and NUL limitations.
2070         * doc/autoconf.texi (Limitations of Usual Tools): Mention that
2071         Solaris /usr/bin/tr does not support ranges, nor the '\0' octal
2072         escape.
2074 2009-08-14  Eric Blake  <ebb9@byu.net>
2076         Simplify version control metadata.
2077         * .cvsignore: Delete.
2078         * bin/.cvsignore: Likewise.
2079         * config/.cvsignore: Likewise.
2080         * doc/.cvsignore: Likewise.
2081         * lib/.cvsignore: Likewise.
2082         * lib/autoconf/.cvsignore: Likewise.
2083         * lib/Autom4te/.cvsignore: Likewise.
2084         * lib/autoscan/.cvsignore: Likewise.
2085         * lib/autotest/.cvsignore: Likewise.
2086         * lib/emacs/.cvsignore: Likewise.
2087         * lib/m4sugar/.cvsignore: Likewise.
2088         * man/.cvsignore: Likewise.
2089         * tests/.cvsignore: Likewise.
2090         * bin/.gitignore: Likewise.
2091         * build-aux/.gitignore: Likewise.
2092         * config/.gitignore: Likewise.
2093         * doc/.gitignore: Likewise.
2094         * lib/.gitignore: Likewise.
2095         * lib/autoconf/.gitignore: Likewise.
2096         * lib/Autom4te/.gitignore: Likewise.
2097         * lib/autoscan/.gitignore: Likewise.
2098         * lib/autotest/.gitignore: Likewise.
2099         * lib/emacs/.gitignore: Likewise.
2100         * lib/m4sugar/.gitignore: Likewise.
2101         * man/.gitignore: Likewise.
2102         * tests/.gitignore: Likewise.
2103         * .gitignore: Consolidate all rules into one file.
2105         Normalize remaining copyright lines.
2106         * BUGS: Reformat copyright line, using UPDATE_COPYRIGHT_FORCE.
2107         * NEWS: Likewise.
2108         * README-hacking: Likewise.
2109         * TODO: Likewise.
2110         * lib/Autom4te/ChannelDefs.pm: Likewise.
2111         * lib/autoconf/fortran.m4: Likewise.
2112         * lib/autoconf/general.m4: Likewise.
2113         * lib/autoconf/lang.m4: Likewise.
2114         * lib/autotest/general.m4: Likewise.
2115         * maint.mk: Likewise.
2116         * tests/compile.at: Likewise.
2118         Improve copyright updating.
2119         * build-aux/update-copyright: Resynchronize from upstream.
2120         * maint.mk (update-copyright): Simplify based on gnulib.
2121         (update-copyright-env): New variable.
2122         * cfg.mk (update-copyright-exclude-regexp): Delete.
2123         (update-copyright-env): New override.
2124         * .x-update-copyright: New file.
2125         * lib/Autom4te/Makefile.am: Add copyright.
2126         * lib/Autom4te/Channels.pm: Revert copyright update to upstream
2127         file.
2128         * lib/Autom4te/Configure_ac.pm: Likewise.
2129         * lib/Autom4te/FileUtils.pm: Likewise.
2130         * lib/Autom4te/Struct.pm: Likewise.
2131         * lib/Autom4te/XFile.pm: Likewise.
2133         Update copyright.
2134         * AUTHORS: Include 2009 in copyright.
2135         * lib/Autom4te/C4che.pm: Likewise.
2136         * lib/Autom4te/Channels.pm: Likewise.
2137         * lib/Autom4te/Configure_ac.pm: Likewise.
2138         * lib/Autom4te/FileUtils.pm: Likewise.
2139         * lib/Autom4te/General.pm: Likewise.
2140         * lib/Autom4te/Request.pm: Likewise.
2141         * lib/Autom4te/Struct.pm: Likewise.
2142         * lib/autoconf/Makefile.am: Likewise.
2143         * lib/autoconf/autoconf.m4: Likewise.
2144         * lib/autoconf/autoscan.m4: Likewise.
2145         * lib/autoconf/autoupdate.m4: Likewise.
2146         * lib/autoconf/functions.m4: Likewise.
2147         * lib/autoconf/libs.m4: Likewise.
2148         * lib/autoconf/oldnames.m4: Likewise.
2149         * lib/autoconf/types.m4: Likewise.
2150         * lib/autoscan/Makefile.am: Likewise.
2151         * lib/autoscan/autoscan.pre: Likewise.
2152         * lib/autotest/Makefile.am: Likewise.
2153         * lib/autotest/autotest.m4: Likewise.
2154         * lib/emacs/autoconf-mode.el: Likewise.
2155         * lib/emacs/autotest-mode.el: Likewise.
2156         * lib/freeze.mk: Likewise.
2157         * lib/m4sugar/foreach.m4: Likewise.
2158         * man/Makefile.am: Likewise.
2159         * tests/atlocal.in: Likewise.
2160         * tests/autoscan.at: Likewise.
2161         * tests/foreign.at: Likewise.
2162         * tests/fortran.at: Likewise.
2163         * tests/mktests.sh: Likewise.
2164         * tests/semantics.at: Likewise.
2165         * tests/suite.at: Likewise.
2166         * tests/wrapper.as: Likewise.
2168         Prepare to bulk update copyright years.
2169         * build-aux/update-copyright: New file.
2170         * cfg.mk (gnulib-update): Sync it from gnulib.
2171         (update-copyright-exclude-regexp): New variable.
2172         (web-manual): Move...
2173         * maint.mk (web-manual): ...here, to match gnulib.
2174         (update-copyright): New target, copied from gnulib's
2175         maint.mk (it would be nice to sync this file...).
2176         (build_aux): New macro.
2177         (VC_LIST, emit_upload_commands): Use it.
2178         * build-aux/texinfo.tex: Resynchronize from upstream.
2179         * lib/autoconf/general.m4 (_AC_COPYRIGHT_YEARS): Reformat to meet
2180         expected pattern.
2181         * lib/autotest/general.m4 (_AT_COPYRIGHT_YEARS): Likewise.
2183 2009-08-12  Paolo Bonzini  <bonzini@gnu.org>
2185         Fix testsuite log capturing for tests 183 and 186.
2186         * tests/autotest.at (AT_CHECK_AT_PREP): Prepend AT_dir to
2187         testsuite log file for AT_CAPTURE_FILE.
2189 2009-08-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2191         Ensure we do not regress with AC_CHECK_MEMBERS.
2192         * tests/semantics.at (AC_CHECK_MEMBERS): Expose the recent
2193         AC_CHECK_MEMBERS fix.
2194         (AC_CHECK_MEMBER): New test group.
2196 2009-08-10  Jeff Squyres  <jsquyres@cisco.com>  (tiny change)
2198         Fix typo in AC_REQUIRE description.
2199         * doc/autoconf.texi (Prerequisite macros): Fix typo.
2201 2009-08-10  Paolo Bonzini  <bonzini@gnu.org>
2203         Fix description of the macro generated by AC_CHECK_MEMBERS.
2204         * lib/autoconf/types.m4 (_AC_CHECK_MEMBERS): Fix regex
2205         replacement.  Reported by Bruno Haible.
2207 2009-08-07  Romain Lenglet  <romain.lenglet@laposte.net>
2209         * lib/autoconf/erlang.m4 (AC_LANG(Erlang)): Make AC_RUN_IFELSE
2210         fail if the test module doesn't compile.
2212 2009-08-02  Paolo Bonzini  <bonzini@gnu.org>
2214         Use exit code to detect no occurrences with grep.
2215         * tests/autotest.at (Erlang Eunit unit tests): Fix grep invocation.
2217 2009-08-01  Romain Lenglet  <romain.lenglet@laposte.net>
2218             Paolo Bonzini  <bonzini@gnu.org>
2220         * lib/autotest/specific.m4 (AT_CHECK_EUNIT): New file.
2221         * lib/autotest/Makefile.am (dist_autotestlib_DATA): Add specific.m4.
2222         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): Add definitions of
2223         variables used by AT_CHECK_EUNIT macro: ERL, ERLC, ERLCFLAGS.
2224         * tests/autotest.at (Erlang Eunit unit tests): Add test for macro
2225         AT_CHECK_EUNIT.
2226         * doc/autoconf.texi (Writing Testsuites): Document macro
2227         AT_CHECK_EUNIT.
2228         * NEWS: Mention macro AT_CHECK_EUNIT.
2230 2009-07-30  Paolo Bonzini  <bonzini@gnu.org>
2231             Joel E. Denny  <jdenny@clemson.edu>
2233         Clarify comparison of echo, printf, and AS_ECHO*.
2234         * doc/autoconf.texi (Limitations of Builtins): In echo's entry,
2235         give a reason why printf is better than echo.  In printf's
2236         entry, cross-reference echo's entry.
2238 2009-07-30  Paolo Bonzini  <bonzini@gnu.org>
2240         Add back AH_CHECK_HEADERS.
2241         * lib/autoconf/general.m4 (AH_CHECK_HEADERS): New.
2242         * NEWS: Create new section.
2244 2009-07-29  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2246         testsuite: avoid bogus hostname match from inner test logs.
2247         * tests/autotest.at (Hard fail): Check more restrictively for
2248         passed tests, so that hostnames recorded in the log file do not
2249         wrongly match.
2250         Report by Ludovic Courtès.
2252 2009-07-26  Eric Blake  <ebb9@byu.net>
2254         Release Version 2.64.
2255         * NEWS: Mention the release.
2256         * README: This release is stable.
2257         * HACKING (release): Use dist-xz, not dist-lzma.
2259         Document some optional features in INSTALL.
2260         * doc/install.texi (Basic Installation): Mention that INSTALL is
2261         generic, and that not all packages implement all features.
2262         Mention 'make distcheck' for maintainers, and 'make installcheck'
2263         for users.  Mention the GNU Coding Standards.
2264         (Installation Names): Mention DESTDIR vs. 'make prefix= install'
2265         as ways to alter the configuration, with caveats of each.  Move
2266         --program-prefix discussion...
2267         (Optional Features): ...here.  Mention --enable-silent-rules and
2268         use of make V=0.
2270         Basic improvements to INSTALL.
2271         * doc/install.texi (Basic Installation): Use better markup.
2272         (Multiple Architectures): Introduce the term VPATH.
2273         (Installation Names): Mention that --prefix must be absolute.
2274         * doc/autoconf.texi (Preset Output Variables)
2275         (Installation Directory Variables): Consistently refer to GNU
2276         Coding Standards.
2278         Update some upstream files.
2279         * build-aux/config.guess: Resynchronize from upstream.
2280         * build-aux/config.sub: Likewise.
2281         * build-aux/texinfo.tex: Likewise.
2282         * build-aux/vc-list-files: Likewise.
2283         * doc/standards.texi: Likewise.
2285 2009-07-25  Eric Blake  <ebb9@byu.net>
2287         Recognize new m4sugar keywords.
2288         * lib/emacs/autoconf-mode.el (autoconf-current-defun): Recognize
2289         m4_define_default, m4_defun_init, m4_defun_once.
2290         (autoconf-font-lock-keywords):  Likewise.
2292         Require m4 1.4.6, and fix testsuite to support this version.
2293         * m4/m4.m4 (AC_PROG_GNU_M4): Reject m4 1.4.5, now that we use
2294         regexp it can't handle.
2295         * NEWS: Mention minimum version bump.
2296         * README: Likewise.
2297         * README-hacking: Likewise.
2298         * doc/autoconf.texi (Introduction, Why GNU M4): Likewise.
2299         * tests/tools.at (autom4te --trace and whitespace): Update test so
2300         still work with older m4 line numbers.
2301         * tests/m4sugar.at (m4@&t@_require: nested): Likewise.
2302         Reported by Ralf Wildenhues.
2304 2009-07-25  Bruno Haible  <bruno@clisp.org>
2306         Clarify autom4te debugging tips.
2307         * doc/autoconf.texi (Debugging via autom4te): Fix example from
2308         previous commit, and add clarification.
2310 2009-07-25  Eric Blake  <ebb9@byu.net>
2312         Document some autom4te debugging tips.
2313         * doc/autoconf.texi (Debugging via autom4te): New node.
2314         Suggested by Bruno Haible.
2316         Fix font-lock.
2317         * configure.ac (ac_cv_unsupported_fs_chars): Make editing easier.
2319         Let autoheader see through m4 macros in AC_DEFINE.
2320         * lib/autoconf/general.m4 (AC_DEFINE_TRACE): Expand macro before
2321         tracing its name.
2322         * lib/autoconf/autoheader.m4 (AH_VERBATIM, AH_TEMPLATE): Likewise,
2323         for using the macro in a template file.
2324         * tests/tools.at (autoheader and macros): New test.
2325         * NEWS: Mention this.
2326         Reported by Bruno Haible.
2328         Improve NEWS wording.
2329         * NEWS: Use more accurate statement.
2330         Suggestedy by Ralf Wildenhues.
2332 2009-07-24  Eric Blake  <ebb9@byu.net>
2334         Fix AS_EXIT for FreeBSD sh.
2335         * lib/m4sugar/m4sh.m4 (AS_EXIT): Always supply an argument to the
2336         shell function, since $? is not reliable on function entry.
2337         (_AS_EXIT_PREPARE): Simplify to assume argument.
2338         Reported by Ralf Wildenhues.
2340 2009-07-23  Eric Blake  <ebb9@byu.net>
2342         Run more tests under Solaris.
2343         * tests/local.at (AT_CHECK_AUTOCONF): Don't skip entire test
2344         group when passing over syntax checks.
2346 2009-07-23  Romain Lenglet  <romain.lenglet@laposte.net>
2348         Clean up temporary files generated by Erlang macros.
2349         * lib/autoconf/erlang.m4 (AC_ERLANG_CHECK_LIB)
2350         (AC_ERLANG_SUBST_ROOT_DIR, AC_ERLANG_SUBST_LIB_DIR)
2351         (AC_ERLANG_SUBST_ERTS_VER): Delete conftest.out; renamed
2352         erlang_cv_* cache variables into ac_cv_erlang_*.
2353         * lib/autoconf/general.m4 (AC_RUN_IFELSE): Delete conftest.beam
2354         files generated by Erlang compiler.
2355         * tests/local.at (AT_CHECK_ENV): Ignore variables defined by
2356         Erlang macros.
2357         * tests/erlang.at (AT_SETUP_ERLANG): Delete; replace all uses by
2358         AT_CHECK_MACRO.
2359         * tests/Makefile.am (AUTOCONF_FILES): Revert previous addition of
2360         generated Erlang tests; they are all hand-tested.
2362         Add autotests for Erlang macros.
2363         * tests/erlang.at: Added tests for all macros in erlang.m4.
2364         * tests/Makefile.am (TESTSUITE_HAND_AT, AUTOCONF_FILES): Added
2365         erlang.at.
2366         * tests/suite.at: Likewise.
2367         * tests/compile.at (AC_LANG, AC_LANG_PUSH & AC_LANG_POP): Added
2368         test for extension of Erlang files.
2369         (Multiple languages): Use correct m4 quoting.
2370         * NEWS: Mention this.
2372 2009-07-22  Eric Blake  <ebb9@byu.net>
2374         Fix test of autom4te from stdin.
2375         * tests/tools.at (autom4te cache locking): Make stdin request
2376         explicit, so that --force is properly used.
2378 2009-07-16  Eric Blake  <ebb9@byu.net>
2380         Don't hide leading space in autom4te --trace output.
2381         * bin/autom4te.in (handle_traces): Don't flatten leading and
2382         trailing space, since tracing spacing bugs can be useful.
2383         * tests/tools.at (autom4te --trace and whitespace): New test.
2385 2009-07-13  Eric Blake  <ebb9@byu.net>
2387         Document that $srcdir can be used during configure.
2388         * doc/autoconf.texi (Preset Output Variables): Add a paragraph.
2389         * THANKS: Update.
2390         Reported by Monty Taylor.
2392 2009-07-13  Eric Blake  <ebb9@byu.net>
2394         Disable asynchronous job notification for parallel tests.
2395         * lib/autotest/general.m4 (AT_INIT) <Driver loop>: Turn off notify
2396         mode, since zsh leaves it on after 'emulate sh'.
2397         * doc/autoconf.texi (Limitations of Builtins) <set>: Document that
2398         job control options are not portable.
2400         Guarantee that exit status trumps output matching.
2401         * doc/autoconf.texi (Writing Testsuites) <AT_CHECK>: Document this
2402         better.
2403         * tests/autotest.at (Skip, parallel skip): Enhance tests.
2405         Fix nits in recent patches.
2406         * configure.ac (ac_cv_dir_trailing_space): Avoid $status, for
2407         zsh.
2408         * doc/autoconf.texi (Writing Testsuites) <AT_FAIL_IF, AT_SKIP_IF>:
2409         Tweak wording.
2410         (Introduction): Recommend m4 1.4.13.
2411         * README: Likewise.
2412         * m4/m4.m4 (AC_PROG_GNU_M4): Likewise.  Use long option --gnu
2413         rather than -g.
2415 2009-07-13  Paolo Bonzini  <bonzini@gnu.org>
2417         Introduce AT_SKIP_IF and AT_FAIL_IF
2418         * NEWS: Mention AT_SKIP_IF and AT_FAIL_IF.
2419         * doc/autoconf.texi (Autotest): Document them.
2420         * lib/autotest/general.m4 (_AT_LINE_ESCAPED, AT_SKIP_IF,
2421         AT_FAIL_IF, _AT_CHECK_EXIT): New.
2422         (AT_CHECK): Use _AT_LINE_ESCAPED.
2423         * tests/autotest.at: Add tests for AT_SKIP_IF and AT_FAIL_IF.
2424         Use AT_SKIP_IF.
2425         * tests/local.at: Use AT_SKIP_IF.
2427 2009-07-13  Paolo Bonzini  <bonzini@gnu.org>
2429         Use m4 -g when available.
2430         * m4/m4.m4: Unset POSIXLY_CORRECT during first test.  Test for -g.
2431         Warn user if he has POSIXLY_CORRECT set but -g is not supported.
2432         * bin/Makefile.am: Substitute @M4_GNU@ into generated files.
2433         * bin/autom4te.in: Pass @M4_GNU@ to m4.
2435 2009-07-13  Eric Blake  <ebb9@byu.net>
2437         Fix previous patch.
2438         * lib/autotest/general.m4 (at_fn_check_prepare_notrace): Use
2439         proper m4 quoting.
2440         (_AT_DECIDE_TRACEABLE): Likewise.
2442 2009-07-13  Paolo Bonzini  <bonzini@gnu.org>
2444         * lib/autotest/general.m4 (at_fn_check_prepare_notrace): Use
2445         $at_trace_echo.  Add new REASON argument.
2446         (at_fn_check_prepare_trace): Do not call at_fn_check_prepare_notrace.
2447         Use $at_check_filter_trace.
2448         (at_fn_check_prepare_dynamic): Use at_fn_check_prepare_notrace.
2449         (at_traceon): Initialize to ':'.
2450         (at_traceoff): Remove, use 'set +x' instead throughout.
2451         (at_check_filter_trace, at_trace_echo): New shell variables.
2452         Initialize them if tracing is requested.
2453         (_AT_DECIDE_TRACEABLE): Adjust call to at_fn_check_prepare_notrace.
2455 2009-07-12  Paolo Bonzini  <bonzini@gnu.org>
2457         Move atlocal feature tests to configure
2458         * configure.ac: Test for unsupported characters in files and
2459         directories here...
2460         * tests/atlocal.in: ... and not here.
2462 2009-07-09  Eric Blake  <ebb9@byu.net>
2464         Fix test typo.
2465         * tests/m4sh.at (AS@&t@_INIT_GENERATED): Close fd, rather than
2466         creating file named -.
2468         Fix testsuite under dash.
2469         * tests/m4sh.at (LINENO stack, AS@&t@_BASENAME, AS@&t@_DIRNAME)
2470         (AS@&t@_ECHO and AS@&t@_ECHO_N, AS@&t@_EXIT, AS@&t@_MKDIR_P)
2471         (AS@&t@_VERSION_COMPARE, as_me, Negated classes in globbing)
2472         (Functions Support, Functions and return Support)
2473         (Nested AS@&t@_REQUIRE_SHELL_FN, Nested AS@&t@_REQUIRE)
2474         (AS@&t@_REQUIRE_SHELL_FN and m4@&t@_require, AS@&t@_HELP_STRING)
2475         (AS@&t@_IF and AS@&t@_CASE, AS@&t@_FOR, AS@&t@_LITERAL_IF)
2476         (AS@&t@_VAR basics, AS@&t@_VAR_APPEND, AS@&t@_VAR_ARITH)
2477         (AS@&t@_INIT cleanup, AS@&t@_INIT_GENERATED, AS@&t@_MESSAGE_FD)
2478         (_AS@&t@_CLEAN_DIR, ECHO_C): Allow testing different CONFIG_SHELL
2479         options during the testsuite run.
2480         Reported by Ralf Wildenhues.
2482 2009-07-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2484         Ignore messages on stderr when testing for the zsh issue.
2485         * tests/autotest.at (AT_SKIP_PARALLEL_TESTS): Ignore stderr.
2487 2009-07-07  Eric Blake  <ebb9@byu.net>
2489         Skip parallel tests when zsh 'set -m' fails.
2490         * tests/autotest.at (AT_SKIP_PARALLEL_TESTS): Skip test if set -m
2491         is not supported.
2492         Reported by Ralf Wildenhues.
2494         Make parallel testsuite more portable.
2495         * lib/autotest/general.m4 (AT_INIT) <AT_JOB_FIFO_FD>: Avoid <>;
2496         instead open write descriptor in each group and read descriptor in
2497         main driver.
2498         * tests/autotest.at (AT_SKIP_PARALLEL_TESTS): Relax condition.
2500 2009-07-03  Eric Blake  <ebb9@byu.net>
2502         Avoid syntax error in ash.
2503         * lib/autotest/general.m4 (AT_INIT) <driver loop>: Avoid syntax
2504         errors on shells that don't recognize <>.
2505         * tests/autotest.at (AT_SKIP_PARALLEL_TESTS): Also skip parallel
2506         tests for this reason.   Skip based on the shell to be tested,
2507         not the shell driving the testsuite.
2508         (parallel syntax error): Rearrange similar to previous patch.
2509         (parallel test execution): Defer skip until after serial tests.
2511 2009-07-02  Eric Blake  <ebb9@byu.net>
2513         Skip test on shells that can't catch syntax failure.
2514         * tests/autotest.at (Syntax error): Skip test if shell aborts on
2515         syntax error (AIX ksh88) or doesn't detect it (zsh).
2516         * doc/autoconf.texi (Limitations of Builtins) <.>: Mention these
2517         limitations.
2518         Reported by Ralf Wildenhues.
2520 2009-06-30  Jan Madzik  <jmadzik@gmail.com>  (tiny change)
2521             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2523         Avoid AIX 6.1 ksh88 ECHO_C command substitution bug.
2524         * lib/m4sugar/m4sh.m4 (_AS_ECHO_N_PREPARE): Ensure more than
2525         one character is output with `\c'; reset echo output state
2526         if buggy ksh was detected, and set ECHO_T instead of ECHO_C.
2527         * doc/autoconf.texi (Limitations of Builtins): Document it.
2528         * tests/m4sh.at (ECHO_C): New test.
2529         * THANKS: Update.
2531 2009-06-27  William Pursell  <bill.pursell@gmail.com>  (tiny change)
2533         Fix grammaro in documenation.
2534         * doc/autoconf.texi (Guidelines): Fix grammaro.
2536 2009-06-17  Eric Blake  <ebb9@byu.net>
2538         Fix AC_CHECK_HEADER infloop for gcc.
2539         * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_NEW)
2540         (_AC_CHECK_HEADER_OLD): Give up on AU_DEFUN, and manually warn
2541         about obsoletion, to avoid infinite loop in gcc.
2542         Reported by Ralf Wildenhues.
2544 2009-06-15  Eric Blake  <ebb9@byu.net>
2546         Add m4_copy_force, m4_rename_force.
2547         * lib/m4sugar/m4sugar.m4 (m4_copy_force, m4_rename_force): New
2548         macros.
2549         * tests/m4sugar.at (m4@&t@_defn): Test them.
2550         * doc/autoconf.texi (Redefined M4 Macros) <m4_copy>: Document
2551         them.
2552         * NEWS: Likewise.
2553         Suggested by Ralf Wildenhues.
2555         Reinstate _AC_CHECK_HEADER_OLD for gcc.
2556         * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_NEW)
2557         (_AC_CHECK_HEADER_OLD): Provide autoupdate versions, since gcc and
2558         others used these undocumented macros.
2559         Reported by Ralf Wildenhues.
2561 2009-06-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2563         Fix concurrent autom4te.cache directory creation race.
2564         * bin/autom4te.in: Do not error out if another `autom4te'
2565         instance created the cache directory before we could.
2567 2009-06-11  Steven G. Johnson  <stevenj@alum.mit.edu>
2568         and Eric Blake  <ebb9@byu.net>
2570         Create a file in test program when detecting cross-compilation.
2571         * lib/autoconf/lang.m4 (_AC_LANG_IO_PROGRAM): New macro, returns
2572         program that creates a file.
2573         (_AC_COMPILER_EXEEXT,_AC_COMPILER_EXEEXT_WORKS): Call new macro
2574         and document why it's needed to robustly detect cross-compiling.
2575         (AC_LANG_DEFINE): Copy implementation across similar languages.
2576         * lib/autoconf/c.m4 (_AC_LANG_IO_PROGRAM(C)): Implement new macro.
2577         * lib/autoconf/fortran.m4 (_AC_LANG_IO_PROGRAM(Fortran 77)):
2578         Likewise.
2579         * lib/autoconf/erlang.m4 (_AC_LANG_IO_PROGRAM(Erlang)): Likewise.
2581 2009-06-11  Eric Blake  <ebb9@byu.net>
2583         Simplify AC_LANG(Fortran).
2584         * lib/autoconf/fortran.m4 (AC_LANG(Fortran)): Borrow from Fortran
2585         77, which requires reordering portions of the file.
2586         (AC_LANG_PROGRAM(Fortran), AC_LANG_CALL(Fortran)): Now defined
2587         automatically.
2589         Clarify m4_copy semantics.
2590         * doc/autoconf.texi (Redefined M4 Macros) <m4_copy>: Update
2591         documentation.
2592         * tests/m4sugar.at (m4@&t@_defn): Enhance test.
2594 2009-06-06  Eric Blake  <ebb9@byu.net>
2596         Improve documentation on trap pitfalls.
2597         * doc/autoconf.texi (Limitations of Builtins) <trap>: Mention new
2598         Posix 2008 requirement on trap, and dash bug in implementing it.
2599         Mention various shell bugs with traps defined inside subshells.
2600         Mention older bash limitation with single-command exit trap.
2601         <set>: Mention another 'set -e' limitation.
2602         Reported by Jens Schmidt.
2604 2009-06-06  Jim Meyering  <meyering@redhat.com>
2606         Improve testsuite --help
2607         * lib/autotest/general.m4: Correct the example in ./testsuite --help.
2608         Improve wording.
2610 2009-06-06  Eric Blake  <ebb9@byu.net>
2612         Document fallback behavior of AC_PROG_LEX.
2613         * doc/autoconf.texi (Particular Programs) <AC_PROG_LEX>: Mention
2614         why fallback is :, and that a --version check must be used to
2615         determine whether flex was found.
2616         Reported by Patrick Welche.
2618 2009-05-28  Jim Meyering  <meyering@redhat.com>
2620         Fix syntax errors in autoconf.texi.
2621         * doc/autoconf.texi (Erlang Libraries): @-escape curly braces
2622         in example code.
2624 2009-05-28  Romain Lenglet  <romain.lenglet@laposte.net>
2626         New AC_ERLANG_SUBST_ERTS_VER macro.
2627         * lib/autoconf/erlang.m4: Add macro AC_ERLANG_SUBST_ERTS_VER.
2628         * doc/autoconf.texi (Erlang Libraries): Document
2629         AC_ERLANG_SUBST_ERTS_VER.
2630         * NEWS: Likewise.
2631         * AUTHORS: Update Romain Lenglet's email address.
2632         * THANKS: Update.
2633         Suggested by Ruslan Babayev.
2635 2009-05-26  Eric Blake  <ebb9@byu.net>
2637         Sanitize more problematic environment variables.
2638         * doc/autoconf.texi (Environment Variable Index): Add more
2639         entries, particularly for precious variables and known culprit
2640         variables.  Needed to avoid overfull vbox.
2641         (Special Shell Variables) <CLICOLOR_FORCE, GREP_OPTIONS>: Add
2642         variables known to cause misbehavior.
2643         * lib/m4sugar/m4sh.m4 (_AS_DETECT_BETTER_SHELL): Unset variables
2644         known to cause problems.
2645         * THANKS: Update.
2646         Based on reports from Ilya Bobir and Joey Mingrone.
2648 2009-05-21  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2650         Document VPATH = $(variable) issue in VPATH chapter.
2651         * doc/autoconf.texi (Variables listed in VPATH): New node.
2652         (Top, VPATH and Make): Adjust menus.
2653         (Build Directories): Refer to it.
2654         Prompted by report from Bruno Haible.
2656 2009-05-19  Eric Blake  <ebb9@byu.net>
2658         Update uses of all-permissive license.
2659         * ChangeLog: Relicense under GPL.
2660         * ChangeLog.0: Likewise.
2661         * ChangeLog.1: Likewise.
2662         * ChangeLog.2: Likewise.
2663         * THANKS: Likewise.
2664         * m4/m4.m4: Use latest wording of FSF all-permissive license.
2665         * m4/make-case.m4: Likewise.
2666         * doc/install.texi: Likewise.
2667         * tests/statesave.m4: Relicense to match rest of testsuite; this
2668         file does not need all-permissive license since it is not designed
2669         for reuse by other packages.
2670         * BUGS: Relicense under all-permissive license.
2671         * HACKING: Likewise.
2672         * NEWS: Likewise.
2673         * README: Likewise.
2674         * README-alpha: Likewise.
2675         * README-hacking: Likewise.
2676         * TODO: Likewise.
2678         Update some upstream files.
2679         * build-aux/config.guess: Resynchronize from upstream.
2680         * build-aux/gnupload: Likewise.
2681         * build-aux/vc-list-files: Likewise.
2682         * build-aux/texinfo.tex: Likewise.
2683         * doc/gendocs_template: Likewise.
2685         Don't mention undocumented interface in NEWS.
2686         * NEWS: Correct earlier entry about AS_FOR.
2688 2009-05-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2690         New manual section `Parallel Make'.
2691         * doc/autoconf.texi (Parallel Make): New node, document NetBSD
2692         `make -jN' quirks.
2693         (Top, Portable Make): Adjust menus.
2695 2009-05-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2697         testsuite: skip `Multiple languages' test without C++ compiler.
2698         * tests/compile.at (Multiple languages): Skip test on systems
2699         without a C++ compiler.
2700         Report by Jim Meyering.
2702 2009-05-13  Eric Blake  <ebb9@byu.net>
2704         Document zsh bug with empty commands.
2705         * doc/autoconf.texi (Special Shell Variables) <?>: Add mention of
2706         more problems with $?.
2708 2009-05-11  Patrick Welche  <prlw1@cam.ac.uk>  (tiny change)
2710         Also try X11R7 when looking for X11 files, for NetBSD.
2711         * lib/autoconf/libs.m4 (_AC_PATH_X_DIRECT): Also try directories
2712         with X11R7 in the name.
2714 2009-05-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2716         Limit stderr logging for C compiler version.
2717         * lib/autoconf/general.m4 (_AC_RUN_LOG_LIMIT, _AC_DO_LIMIT): New
2718         internal macros, equivalent to _AC_RUN_LOG and _AC_DO, but with
2719         an optional additional argument to limit the number of lines of
2720         stderr output logged, defaulting to 10.
2721         * lib/autoconf/c.m4 (AC_PROG_CC, AC_PROG_CXX, AC_PROG_OBJC): Use
2722         _AC_DO_LIMIT for capturing compiler version output.  Also test
2723         -qversion, for the IBM xlc compiler.
2724         * lib/autoconf/fortran.m4 (_AC_PROG_FC): Likewise.
2725         * THANKS: Update.
2726         Report by Christian Rössel and John R. Cary against Libtool.
2728 2009-04-24  Eric Blake  <ebb9@byu.net>
2730         Fix quoting of m4 macros in AT_CHECK.
2731         * lib/autotest/general.m4 (AT_CHECK): Expand prior to adding
2732         escapes, to avoid shell syntax errors caused by late macro
2733         expansion.
2734         * NEWS: Document this change.
2735         * tests/autotest.at (Metacharacters in command from M4 expansion):
2736         New test.
2738         manual: Use consistent spelling of here-document.
2739         * doc/autoconf.texi (Defining Symbols, Programming in M4sh)
2740         (Common Shell Constructs, Macro Names, Writing Testsuites): Fix
2741         spelling.
2742         Reported by Ralf Wildenhues.
2744         Make AT_CHECK_UNQUOTED more like AC_DEFINE_UNQUOTED.
2745         * lib/autotest/general.m4 (AT_CHECK_NOESCAPE): Keep older,
2746         undocumented semantics, where unbalanced " cannot be used in the
2747         stdout/stderr argument.
2748         (AT_CHECK_UNQUOTED): Treat " in stdout/stderr as a literal, since
2749         the text is used in double-quoted context.
2750         * tests/autotest.at (unquoted output): New test.
2751         * doc/autoconf.texi (Writing Testsuites) <AT_CHECK>: Mention which
2752         shell expansions are handled.
2754         Rename AT_CHECK_NOESCAPE to AT_CHECK_UNQUOTED.
2755         * lib/autotest/general.m4 (AT_CHECK_NOESCAPE): Deprecate, in favor
2756         of new spelling...
2757         (AT_CHECK_UNQUOTED): ...for consistency with AC_DEFINE_UNQUOTED.
2758         * doc/autoconf.texi (Writing Testsuites) <AT_CHECK>: Document the
2759         rename.
2760         * NEWS: Likewise.
2761         * tests/autotest.at (Binary output, Cleanup): Adjust tests.
2762         * tests/torture.at (AC_CONFIG_FILES, HEADERS, LINKS and COMMANDS):
2763         Likewise.
2764         Reported by Ralf Wildenhues.
2766 2009-04-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2768         New test to ensure autom4te cache file locking works.
2769         * tests/tools.at (autom4te cache locking): New test.
2770         Report by Eric Blake.
2772 2009-04-22  Paolo Bonzini  <bonzini@gnu.org>
2774         manual: another grammar improvement.
2775         * doc/autoconf.texi (Fortran Compiler): Avoid dependency on
2776         pronunciation of `FCFLAGS_f90'.
2778 2009-04-23  Eric Blake  <ebb9@byu.net>
2780         Change FOO placeholder to use @var{text} instead.
2781         * doc/autoconf.texi (Configuration Actions): Rename AC_CONFIG_FOOS
2782         to AC_CONFIG_@var{ITEMS}.
2783         * doc/autoconf.texi (config.status Invocation): Likewise.
2784         (AC_FOO_IFELSE vs AC_TRY_FOO): Rename node...
2785         (AC_ACT_IFELSE vs AC_TRY_ACT): ...to this.
2787 2009-04-22  Eric Blake  <ebb9@byu.net>
2789         Add m4_argn.
2790         * lib/m4sugar/m4sugar.m4 (m4_argn): New macro.
2791         * NEWS: Document it.
2792         * doc/autoconf.texi (Looping constructs) <m4_argn>: Likewise.
2793         <m4_car, m4_cdr>: Improve documentation.
2794         * tests/m4sugar.at (m4 lists): New test.
2796 2009-04-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2798         Improve description of AC_PROG_CC_C89 and AC_PROG_CC_C99.
2799         * doc/autoconf.texi (C Compiler): Document that AC_PROG_CC_C89
2800         and AC_PROG_CC_C99 prefer extended over strict conformance modes.
2801         Report by Vincent Lefèvre.
2803 2009-04-21  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2805         Revert bogus change in last commit.
2806         * doc/autoconf.texi (Initialization Macros): Revert change.
2807         Spotted by Eric Blake.
2809         manual: fix trivial grammar errors.
2810         * doc/autoconf.texi (Fortran Compiler, Initialization Macros)
2811         (Limitations of Usual Tools, Pretty Help Strings)
2812         (config.status Invocation): Fix `a' vs. `an' errors.
2813         Report by Eric Blake.
2815 2009-04-21  Eric Blake  <ebb9@byu.net>
2817         Shuffle maintainer-specific rules.
2818         * Makefile.am (maintainer-check-tests): Delete.
2819         (autom4te-update): Move...
2820         * cfg.mk (autom4te-update): ...here.
2821         (fetch): Depend on autom4te-update.  Split...
2822         (gnulib-update): ...into new rule.  Import move-if-change from
2823         gnulib.
2824         * maint.mk (maintainer-distcheck): Absorb former maintainer-check
2825         rule.
2826         * build-aux/move-if-change: New file, undistributed.
2827         * .gitattributes: Handle new upstream file.
2828         * .gitignore: Ignore maintainer cruft.
2829         * HACKING: Update maintainer instructions.
2830         * build-aux/config.guess: Update from upstream.
2831         * build-aux/config.sub: Likewise.
2832         * build-aux/gendocs.sh: Likewise.
2833         * build-aux/texinfo.tex: Likewise.
2834         * doc/gendocs_template: Likewise.
2835         * doc/standards.texi: Likewise.
2837 2009-04-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2839         Sync autom4te perl modules from Automake.
2840         * lib/Autom4te/Channels.pm: Sync from Automake.
2841         * lib/Autom4te/FileUtils.pm: Likewise.
2842         * lib/Autom4te/XFile.pm: Likewise.
2844         Adjust channel definitions for new Automake `ordered' flag.
2845         * lib/Autom4te/ChannelDefs.pm (Autom4te::ChannelDefs): Set
2846         `ordered' flag to zero for channels `fatal', `automake', and
2847         `verb'.  This has currently no effect on actual semantics but
2848         avoids a consistency check needed for Automake's usage of the
2849         Channels.pm code.
2851         manual: clarify m4_if synopsis.
2852         * doc/autoconf.texi (Redefined M4 Macros): Rewrite synopsis of
2853         m4_if in the presence of more than three arguments.
2855         Improve and clarify `config.status' usage documentation.
2856         * doc/autoconf.texi (config.status Invocation): Fix markup in
2857         synopsis.  Use `tag' instead of `file' notation for the
2858         non-option arguments, to be consistent with the documentation
2859         of the AC_CONFIG_* macros.
2860         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Likewise,
2861         use `tag' notation for non-option arguments.
2862         Report by John Calcote.
2864 2009-04-15  Eric Blake  <ebb9@byu.net>
2866         Test that autotest handles binary output.
2867         * tests/autotest.at (Binary output): New test.
2868         Suggested by Ralf Wildenhues.
2870         Add stdout-nolog and ignore-nolog to AT_CHECK.
2871         * lib/autotest/general.m4 (AT_DIFF_STDERR(stderr-nolog))
2872         (AT_DIFF_STDERR(ignore-nolog), AT_DIFF_STDOUT(stdout-nolog))
2873         (AT_DIFF_STDOUT(ignore-nolog)): New macros.
2874         * tests/autotest.at (Logging): New test.
2875         * doc/autoconf.texi (Writing Testsuites) <AT_CHECK>: Document the
2876         new logging actions.
2877         * NEWS: Likewise.
2878         Reported by Ralf Wildenhues.
2880         Teach AT_CHECK about hard failures.
2881         * lib/autotest/general.m4 (AT_INIT) <at_fn_check_skip>
2882         <at_fn_check_status, at_fn_group_postprocess>: Handle hard
2883         failures.
2884         * doc/autoconf.texi (Writing Testsuites) <AT_CHECK>: Document
2885         AT_CHECK_NOESCAPE and exit status 99.
2886         * NEWS: Likewise.
2887         * tests/autotest.at (Hard fail, Cleanup): New tests.
2889 2009-04-14  Eric Blake  <ebb9@byu.net>
2891         Fix yesterday's regression in AS_IF.
2892         * lib/m4sugar/m4sh.m4 (_AS_IF_ELSE): Don't corrupt $? in else
2893         branch; it is up to the user to avoid syntax errors.
2894         * tests/m4sh.at (AS@&t@_IF and AS@&t@_CASE): Adjust test.
2896 2009-04-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2898         Add traces for AM_SILENT_RULES.
2899         * lib/autom4te.in (Automake-preselections): Trace
2900         AM_SILENT_RULES.
2902 2009-04-13  Eric Blake  <ebb9@byu.net>
2904         Improve documentation related to expanded-before-required.
2905         * doc/autoconf.texi (Expanded Before Required): Add a case study.
2906         (Running the Compiler) <AC_COMPILE_IFELSE>: Remind users that
2907         running a compile test will AC_REQUIRE the compiler check.
2908         (Macro Definitions) <AC_DEFUN>: Contrast AC_DEFUN and m4_define.
2909         (C Compiler) <AC_PROG_CC>: Mention the fact that only first
2910         invocation of this macro checks for $EXEEXT, and that many other
2911         macros use it via AC_REQUIRE.
2912         Reported by Andreas Schwab.
2914         Mention latest rules about make and set -e.
2915         * doc/autoconf.texi (Failure in Make Rules): Posix is now clear
2916         that make must use set -e.
2917         (Limitations of Builtins) <set>: Clarify more about set -e
2918         behavior.
2920         Improve documentation about if exit status.
2921         * doc/autoconf.texi (Limitations of Builtins) <if>: Mention that
2922         exit status bugs don't affect modern targets.
2923         Reported by Andreas Schwab.
2925         Add cross-reference to new macros.
2926         * doc/autoconf.texi (Text processing Macros) <m4_normalize>
2927         <m4_strip>: Reference the new m4_ifblank.
2928         Suggested by Mike Frysinger.
2930         Make AS_IF, AS_CASE, and AS_FOR more robust to blank arguments.
2931         * lib/m4sugar/m4sh.m4 (_AS_CASE, _AS_CASE_DEFAULT, AS_FOR, _AS_IF)
2932         (_AS_IF_ELSE, AS_IF): Avoid syntax error on blank argument,
2933         including a macro with an empty expansion.
2934         * NEWS: Mention this.
2935         * tests/m4sh.at (AS@&t@_IF and AS@&t@_CASE, AS@&t@_FOR): Update
2936         tests.
2937         Reported by Mike Frysinger.
2939         Add m4_blank and friends.
2940         * lib/m4sugar/m4sugar.m4 (m4_blank, m4_nblank, m4_default_nblank)
2941         (m4_default_nblank_quoted): New macros.
2942         * NEWS: Document them.
2943         * doc/autoconf.texi (Conditional constructs): Likewise.
2944         * tests/m4sugar.at (m4sugar shorthand conditionals): New test.
2945         Suggested by Mike Frysinger.
2947 2009-04-13  Eric Blake  <ebb9@byu.net>
2949         Finish upgrade to GFDL 1.3.
2950         * doc/autoconf.texi (copying): Use correct license; comment change
2951         was missed on 2008-11-04.
2953 2009-04-10  Eric Blake  <ebb9@byu.net>
2955         Test parallel handling of syntax error.
2956         * tests/autotest.at (parallel syntax error): New test.
2957         Suggested by Ralf Wildenhues.
2959 2009-04-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2961         Document awk and config.status line length limitations.
2962         * doc/autoconf.texi (Configuration Actions): The input to
2963         config.status should have reasonable line length.
2964         (Limitations of Usual Tools): Document IRIX, HP-UX awk input
2965         line length limit.
2966         Report by Bruno Haible.
2968         Skip `Multiple languages' test if CC is a C++ compiler.
2969         * tests/compile.at (Multiple languages): Before starting the
2970         test proper, build and run a configure script that tests the
2971         C compiler only, and skips the test if this is found to be a
2972         C++ compiler.
2973         Report by Eric Blake.
2975         Note that AC_DEFUN is needed for aclocal.
2976         * doc/autoconf.texi (Coding Style): Public third-party macros
2977         should be AC_DEFUN'ed.
2978         Report by John Calcote.
2980 2009-04-10  Eric Blake  <ebb9@byu.net>
2982         Add undocumented _AS_CLEAN_DIR.
2983         * lib/m4sugar/m4sh.m4 (_AS_CLEAN_DIR): New macro; fixes m4 quoting
2984         in previous patch.
2985         * lib/autotest/general.m4 (AT_INIT) <at_fn_group_prepare>: Use new
2986         macro.
2987         * tests/m4sh.at (_AS@&t@_CLEAN_DIR): New test.
2988         Reported by Ralf Wildenhues.
2990 2009-04-09  Eric Blake  <ebb9@byu.net>
2992         Avoid problems caused by deleting in-use directory.
2993         * lib/autotest/general.m4 (AT_INIT) <at_fn_group_prepare>: Only
2994         remove the contents of $at_group_dir, not the directory itself.
2996         Fix regression in empty test.
2997         * lib/autotest/general.m4 (AT_SETUP): Prep AT_ingroup for fallback
2998         use in empty test.  Fixes regression introduced 2009-04-06.
2999         (_AT_CHECK): Undo fallback when a test is not empty.
3000         (AT_CLEANUP): Expand AT_ingroup before deleting.
3002 2009-04-09  Paolo Bonzini  <bonzini@gnu.org>
3004         Make a less conservative cross-compilation guess for AC_FUNC_UTIME_NULL.
3005         * lib/autoconf/functions.m4 (AC_FUNC_UTIME_NULL): Assume
3006         not crosscompiling to an obsolete system.
3008 2009-04-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3010         Automake relies on the undocumented `_AC_COMPILER_EXEEXT' macro.
3011         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT): Document that
3012         Automake relies on this macro.
3014 2009-04-06  Eric Blake  <ebb9@byu.net>
3016         Reduce testsuite size.
3017         * tests/statesave.m4: New file.
3018         * tests/Makefile.am (EXTRA_DIST): Distribute it.
3019         * tests/local.at (AT_CONFIGURE_AC): Reuse file, rather than
3020         repeating inline definition of AC_STATE_SAVE.
3021         (AT_CHECK_ENV): Factor code...
3022         (_AT_CHECK_ENV): ...into shell function.
3023         * tests/m4sh.at (AT_DATA_LINENO): Avoid churn in testsuite.
3025         Handle shell comments in AT_CHECK.
3026         * lib/autotest/general.m4 (_AT_DECIDE_TRACEABLE): Handle # in
3027         test correctly.  Latent bug in handling shell comment was first
3028         fixed 2008-11-20, but regressed two patches later.
3029         * tests/autotest.at (Shell comment in command): New test.
3030         * NEWS: Document the fix.
3032         Hard fail any test with syntax errors.
3033         * lib/autotest/general.m4 (AT_INIT) <at_fn_group_postprocess>:
3034         Guarantee test failure on syntax error, rather than inheriting
3035         status from previous test.
3036         * tests/autotest.at (Syntax error): New test.
3038 2009-03-31  Eric Blake  <ebb9@byu.net>
3040         Beta Release Version 2.63b.
3041         * NEWS: Mention the release.
3042         * README: Clarify that this is a beta release.
3043         * build-aux/texinfo.tex: Synchronize from upstream.
3044         * .x-sc_trailing_blank: Exempt more upstream files.
3046 2009-03-30  Eric Blake  <ebb9@byu.net>
3048         Fix testsuite failures under zsh.
3049         * tests/local.at (AT_CHECK_ENV): Exempt $argv and $ARGC, which are
3050         set by zsh -c 'emulate sh'.
3051         Reported by Ralf Wildenhues.
3053         For now, skip parallel tests under less-tested shells.
3054         * tests/autotest.at (AT_CHECK_AT): Add pre-test argument.
3055         (Tested programs, Startup error messages, AT_CHECK_AT_TITLE)
3056         (Fallacy, Skip, errexit, Long test source lines)
3057         (Debugging a successful test, Debugging script and environment)
3058         (Debugging a failed test, Using atlocal)
3059         (Choosing where testsuite is run): Adjust callers.
3060         (AT_SKIP_PARALLEL_TESTS): New macro, to skip parallel tests except
3061         under zsh, bash, or when TEST_PARALLEL_AUTOTEST is defined.  Makes
3062         it easier to avoid testsuite hangs for users with dash or other
3063         less-tested shell.
3064         (parallel test execution, parallel truth, parallel fallacy)
3065         (parallel skip, parallel errexit)
3066         (parallel autotest and signal handling): Use it.
3067         * BUGS: Mention this.
3069 2009-03-24  Andris Pavenis  <andris.pavenis@iki.fi>  (tiny change)
3071         Fix awk substitution of carriage returns on DJGPP.
3072         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE): Fix typo in
3073         generation of ac_cs_awk_cr.
3074         * THANKS: Update.
3076 2009-03-24  Aaron W. LaFramboise  <aaronenvelope277@aaronwl.com>  (tiny change)
3078         Work around cygwin bash igncr mode.
3079         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE): Fall back to
3080         bash carriage returns if ac_cr lost \r from ``.
3081         * THANKS: Update.
3082         Suggested by Eric Blake.
3084 2009-03-24  Eric Blake  <ebb9@byu.net>
3086         Fix underquoted example in manual.
3087         * doc/autoconf.texi (Common Shell Constructs) <AS_TR_CPP>:
3088         Properly m4-quote #.
3089         * THANKS: Update spelling.
3090         Reported by Matěj Týč.
3092 2009-03-18  Eric Blake  <ebb9@byu.net>
3094         Manual: mention more expr pitfalls.
3095         * doc/autoconf.texi (Limitations of Usual Tools) <expr (:)>:
3096         Mention HP-UX limitation, and $ ambiguity.
3097         * THANKS: Update.
3098         Reported by Jens Schmidt, in http://bugs.debian.org/466990.
3100 2009-03-17  Jim Meyering  <meyering@redhat.com>
3102         Manual: fix a typo.
3103         * lib/m4sugar/m4sh.m4: s/are/is/ => "there is no indirection"
3105 2009-03-17  Eric Blake  <ebb9@byu.net>
3107         Use test consistently in examples.
3108         * doc/autoconf.texi (Subdirectories, Caching Results)
3109         (Common Shell Constructs, Prerequisite Macros, Coding Style)
3110         (Changed Results, Particular Programs, Defining Symbols):
3111         Protect against arbitrary user strings.
3112         (Multiple Cases): Mention why $fstype does not need protection.
3113         Reported by Reuben Thomas.
3115         Improve confusing section names.
3116         * doc/autoconf.texi (Specifying Names): Rename node...
3117         (Specifying Target Triplets): ...to this.
3118         (Generic Programs): Adjust references.
3119         * doc/install.texi (System Type): Touch up formatting.
3120         * THANKS: Update.
3121         Reported by Tim Freeman, in http://bugs.debian.org/312873.
3123         Remove historical inaccuracy.
3124         * doc/autoconf.texi (Portable Shell): Don't perpetuate myth about
3125         #!/bin/sh needing a space.
3126         Reported by Reuben Thomas.
3128         Recommend AS_HELP_STRING more prominently.
3129         * doc/autoconf.texi (External Software): Reduce mention of
3130         hand-written help strings.
3131         Reported by Reuben Thomas.
3133 2009-03-16  Eric Blake  <ebb9@byu.net>
3135         Fix 'make pdf'.
3136         * doc/autoconf.texi (Balancing Parentheses): Fix usage of
3137         @itemize.
3138         Reported by Ralf Wildenhues, fix suggested by Karl Berry.
3140 2009-03-14  Eric Blake  <ebb9@byu.net>
3142         Resync upstream files.
3143         * GNUmakefile: Run 'make fetch'.
3144         * build-aux/announce-gen: Likewise.
3145         * build-aux/config.guess: Likewise.
3146         * build-aux/config.sub: Likewise.
3147         * build-aux/gnupload: Likewise.
3148         * build-aux/texinfo.tex: Likewise.
3149         * build-aux/vc-list-files: Likewise.
3150         * doc/gnu-oids.texi: Likewise.
3151         * doc/standards.texi: Likewise.
3153 2009-03-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3155         New test for SunStudio `restrict' handling.
3156         * tests/c.at (AC_C_RESTRICT and C++): New test.
3157         Prompted by bug report from Rolf Vandevaart.
3159 2009-03-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3161         Manual: testsuite depends on package.m4.
3162         * doc/autoconf.texi (Making testsuite Scripts): In the example
3163         makefile snippet, $(TESTSUITE) depends on $(srcdir)/package.m4.
3165 2009-03-02  Allan Caffee  <allan.caffee@gmail.com>  (tiny change)
3167         Fix a typo in comment for AS_LITERAL_IF.
3168         * lib/m4sugar/m4sh.m4 (AS_LITERAL_IF): Update a comment that fell
3169         out of date when this function was moved/renamed in 59ecd766.
3170         * THANKS: Update.
3172 2009-03-02  Eric Blake  <ebb9@byu.net>
3174         Improve wording for AS_ESCAPE.
3175         * doc/autoconf.texi (Common Shell Constructs) <AS_ESCAPE>: Touch
3176         up documentation.
3177         * lib/m4sugar/m4sh.m4 (_AS_ESCAPE): Fix comment typos.
3178         Reported by Ralf Wildenhues.
3180 2009-02-24  Eric Blake  <ebb9@byu.net>
3182         Use pkgdatadir consistently.
3183         * bin/Makefile.am (edit): Substitute pkgdatadir, not datadir.
3184         * lib/Makefile.am (edit): Likewise.
3185         * lib/autom4te.in (Autoconf-without-aclocal-m4, Autotest, M4sh)
3186         (M4sugar): Use @pkgdatadir@, not @datadir@.
3187         * bin/autoheader.in ($datadir): Likewise.
3188         * bin/autom4te.in ($datadir): Likewise.
3189         * bin/autoreconf.in ($datadir): Likewise.
3190         * bin/autoscan.in ($datadir): Likewise.
3191         * bin/autoupdate.in ($datadir): Likewise.
3192         * bin/ifnames.in ($datadir): Likewise.
3193         * doc/autoconf.texi (Installation Directory Variables): Update
3194         example to be consistent; focus on $(bindir) as an autoconf
3195         variable, and mention that $(pkgdatadir) comes from automake.
3196         Reported by Reuben Thomas.
3198 2009-02-19  Eric Blake  <ebb9@byu.net>
3200         Use m4_translit more efficiently in AS_ESCAPE.
3201         * lib/m4sugar/m4sh.m4 (_AS_ESCAPE): Alter API to take first byte
3202         of set separately from rest.
3203         (AS_ESCAPE, _AS_QUOTE_MODERN, AS_TR_SH, AS_VAR_GET): Adjust
3204         callers.
3205         * lib/autoconf/autoheader.m4 (AH_VERBATIM): Avoid duplicate
3206         characters in translit request.
3207         * doc/autoconf.texi (Common Shell Constructs) <AS_ESCAPE>:
3208         Document the macro.
3209         * NEWS: Likewise.
3211         Mention recently documented macros.
3212         * NEWS: Update list of new documentation.
3214 2009-02-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3216         Add index for config.site.
3217         * doc/autoconf.texi (Site Defaults): Add index for config.site.
3218         * THANKS: Update.
3219         Report by Stephen P. Schaefer.
3221 2009-02-12  Eric Blake  <ebb9@byu.net>
3223         Fix m4_set speed regression introduced 2008-12-18.
3224         * lib/m4sugar/m4sugar.m4 (_m4_stack_reverse): Alter API to avoid
3225         creating larger argument on each iteration.
3226         (m4_stack_foreach_sep, m4_stack_foreach_sep_lifo)
3227         (_m4_set_contents_2): Adjust all four-argument callers.
3229 2009-02-05  Eric Blake  <ebb9@byu.net>
3231         Mention new AC_DEFUN_ONCE clients.
3232         * NEWS: Mention recent semantic changes.
3233         Reported by Ralf Wildenhues.
3235 2009-02-03  Eric Blake  <ebb9@byu.net>
3237         Use AC_DEFUN_ONCE for some one-shot AC_PROG macros.
3238         * lib/autoconf/programs.m4 (AC_PROG_MKDIR_P): Switch to
3239         AC_DEFUN_ONCE, since this is a one-shot macro.
3240         (AC_PROG_INSTALL): Likewise.
3242 2009-02-03  Eric Blake  <ebb9@byu.net>
3244         Mention that packagers should not pre-set CFLAGS.
3245         * doc/autoconf.texi (Preset Output Variables) <CFLAGS>: Copy
3246         advice given by automake on handling variables reserved by GNU
3247         Coding Standards.
3248         Reported by Karl Berry.
3250         Document lib64 in config.site.
3251         * doc/autoconf.texi (Site Defaults): Fix typo in FHS sample file.
3252         Mention use of lib64.
3253         * THANKS: Update.
3254         Reported by Tom Browder, with help from Peter Breitenlohner.
3256 2009-01-28  Eric Blake  <ebb9@byu.net>
3258         Use AC_DEFUN_ONCE for uncontroversial one-shot macros.
3259         * lib/autoconf/headers.m4 (AC_HEADER_ASSERT): Switch to
3260         AC_DEFUN_ONCE, since this is a one-shot macro.
3261         * lib/autoconf/specific.m4 (AC_USE_SYSTEM_EXTENSIONS): Likewise.
3262         * lib/autoconf/general.m4 (AC_CANONICAL_BUILD)
3263         (AC_CANONICAL_HOST, AC_CANONICAL_TARGET): Likewise.
3265 2009-01-28  Eric Blake  <ebb9@byu.net>
3267         Reduce blank lines in AC_DEFUN_ONCE macros.
3268         * lib/m4sugar/m4sugar.m4 (m4_defun_once): Avoid redundant blank
3269         line when a defun_once macro is required.
3270         (_m4_defun_once): New helper macro, for less memory use.
3271         * tests/m4sugar.at (m4@&t@_require: nested): Adjust test.
3273         Silence another false positive expand-before-require.
3274         * lib/m4sugar/m4sugar.m4 (_m4_defun_pro_outer)
3275         (_m4_defun_epi_outer, _m4_require_call, m4_provide): Track name
3276         that caused a diversion change, not just diversion number.
3277         (m4_require): Factor...
3278         (_m4_require_check): ...into new macro, which also checks whether
3279         diversion that performed the expansion has been collected.
3280         * tests/m4sugar.at (m4@&t@_require: nested): Enhance test.
3281         Reported by Ralf Wildenhues.
3283 2009-01-28  Eric Blake  <ebb9@byu.net>
3285         Fix AC_C_RESTRICT for Sun Studio 12 C++.
3286         * lib/autoconf/c.m4 (AC_C_RESTRICT): Newer Sun Studio C provides
3287         __restrict__ rather than _Restrict, which still trips up Sun
3288         Studio 12 C++.
3289         * THANKS: Update.
3290         Reported by Rolf Vandevaart.
3292 2009-01-28  Eric Blake  <ebb9@byu.net>
3294         Fix years in copyright notices.
3295         * lib/m4sugar/m4sugar.m4 (m4_copyright_condense): New macro,
3296         undocumented for now.
3297         * lib/m4sugar/Makefile.am (version.m4): Add m4_PACKAGE_YEAR,
3298         m4_PACKAGE_URL.
3299         (RELEASE_YEAR): New macro, copied from bin/Makefile.am.
3300         * lib/autoconf/general.m4 (_AC_COPYRIGHT_YEARS): New macro.
3301         (AC_COPYRIGHT): Add undocumented third parameter.
3302         (_AC_INIT_COPYRIGHT): Avoid need to bump copyright years.
3303         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Likewise.
3304         * lib/autotest/general.m4 (AT_INIT): Likewise.
3305         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): Likewise.
3306         (AT_COPYRIGHT): Add undocumented third parameter.
3307         * tests/local.at (AT_COPYRIGHT): Don't add an extra copyright
3308         parameter; the generic copyright given by autotest is sufficient
3309         since we are the package that owns autotest.
3311 2009-01-27  Eric Blake  <ebb9@byu.net>
3313         Use URLs in --help output, part 3: testsuite.
3314         * doc/autoconf.texi (Writing Testsuites): Mention autotest
3315         namespace.
3316         (Writing Testsuites) <AT_INIT>: Mention mandatory macros.
3317         (Making testsuite Scripts): Document AT_PACKAGE_URL.
3318         * tests/Makefile.am (package.m4): Follow our own advice.
3319         * lib/autotest/general.m4 (AT_INIT): Give the user a hint about
3320         package.m4.  Enhance --help output.
3321         (_AT_COPYRIGHT_YEARS): New macro, to make copyright bump easier.
3323         Use URLs in --help output, part 2: configure.
3324         * lib/autoconf/general.m4 (_AC_INIT_COPYRIGHT): Bump copyright
3325         date.
3326         (_AC_INIT_PACKAGE): Support optional URL parameter, mapped to
3327         AC_PACKAGE_URL.
3328         (_AC_INIT_DEFAULTS, _AC_INIT_PREPARE): Substitute it.
3329         (_AC_INIT_HELP): Use it in './configure --help' output.
3330         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Likewise, for
3331         './config.status --help'.  Bump copyright date.
3332         * doc/autoconf.texi (Initializing configure) <AC_INIT>: Document
3333         new parameter.
3334         * NEWS: Likewise.
3335         * tests/tools.at (autoheader): Adjust test.
3336         * tests/torture.at (@%:@define header templates)
3337         (Torturing config.status): Likewise.
3339         Use URLs in --help output, part 1: autoconf executables.
3340         * bin/autoconf.as (usage): Make output consistent with recent
3341         change in gnulib version-etc module.
3342         * bin/autoheader.in ($help): Likewise.
3343         * bin/autom4te.in ($help): Likewise.
3344         * bin/autoreconf.in ($help): Likewise.
3345         * bin/autoscan.in ($help): Likewise.
3346         * bin/autoupdate.in ($help): Likewise.
3347         * bin/ifnames.in ($help): Likewise.
3349 2009-01-27  Peter Breitenlohner  <peb@mppmu.mpg.de>  (tiny change)
3351         Quote traced macros passed from autom4te to M4.
3352         * bin/autom4te (handle_m4): Apply shell_quote to macro names.
3353         * tests/tools.at (autom4te --trace and unusual macro names): New
3354         test.
3355         * THANKS: Update.
3357 2009-01-26  Eric Blake  <ebb9@byu.net>
3359         Improve AC_DEFUN_ONCE semantics.
3360         * lib/m4sugar/m4sugar.m4 (m4_defun_once): Rewrite to be no-op,
3361         rather than warning, on second use, and make sure first use never
3362         occurs out of order.
3363         * tests/m4sugar.at (m4@&t@_require: one-shot initialization):
3364         Enhance test.
3365         * tests/base.at (AC_REQUIRE & AC_DEFUN_ONCE: [Require, expand],
3366         (AC_REQUIRE & AC_DEFUN_ONCE: [Expand, require]): Adjust tests.
3367         * NEWS: Document this.
3368         * doc/autoconf.texi (Macro Definitions) <AC_DEFUN>: Mention
3369         AC_DEFUN_ONCE.
3370         (Prerequisite Macros) <AC_REQUIRE>: Likewise.
3371         (Expanded Before Required): Likewise.
3372         (One-Shot Macros) <AC_DEFUN_ONCE>: Document new semantics.
3373         Reported by Bruno Haible, with suggestion by Paolo Bonzini.
3375 2009-01-24  Eric Blake  <ebb9@byu.net>
3377         Fix typos in recent patches.
3378         * lib/m4sugar/m4sugar.m4: Improve m4_defun comments.
3379         * doc/autoconf.texi (Expanded Before Required): Fix typos.
3380         Reported by Ralf Wildenhues.
3382         Revert change to AC_DIR_HEADER.
3383         * lib/autoconf/headers.m4 (AC_DIR_HEADER): Explicitly expanding
3384         AC_HEADER_DIRENT no longer triggers a warning, and helps the user
3385         who decides they don't need the obsolete AC_FUNC_CLOSEDIR_VOID.
3386         Reported by Paolo Bonzini.
3388 2009-01-22  Eric Blake  <ebb9@byu.net>
3390         Silence a false positive expand-before-require case.
3391         * lib/m4sugar/m4sugar.m4 (m4_provide): Track the diversion in
3392         which a macro was provided.
3393         (m4_require): Compare diversion numbers, rather than m4_require
3394         nesting, when determining direct requires.
3395         * tests/m4sugar.at (m4@&t@_require: nested): Test it.
3396         Reported by Ralf Wildenhues, affecting Libtool.
3398 2009-01-21  Eric Blake  <ebb9@byu.net>
3400         Fix out-of-order expansion with expand-before-require.
3401         * lib/m4sugar/m4sugar.m4 (m4_require): Redundantly expand a
3402         required macro when issuing expand-before-require warning.
3403         * doc/autoconf.texi (Prerequisite Macros): Adjust documentation.
3404         (Expanded Before Required): New node.
3405         * tests/m4sugar.at (m4@&t@_require: nested): Adjust test.
3406         * NEWS: Mention this fix.
3407         Suggested by Bruno Haible.
3409         Warn if macro is provided before indirectly required.
3410         * lib/m4sugar/m4sugar.m4 (m4_provide): Track the set of all macros
3411         provided since last outermost defun.
3412         (_m4_defun_pro_outer): Empty the set.
3413         (_m4_require_call): Distinguish between direct and indirect
3414         requires, and remove required macros from the set.
3415         (m4_require): Check the set, in order to warn.
3416         * tests/m4sugar.at (m4@&t@_require: nested): Remove xfail, and add
3417         test case for direct requires.
3419 2009-01-20  Eric Blake  <ebb9@byu.net>
3421         Clean up some bugs caught by preliminary dependency validation.
3422         * lib/autoconf/headers.m4 (AC_DIR_HEADER): Don't invoke
3423         AC_HEADER_DIRENT, since AC_FUNC_CLOSEDIR_VOID requires it.
3424         * lib/m4sugar/m4sh.m4 (_AS_DETECT_BETTER_SHELL)
3425         (_AS_SHELL_SANITIZE): Fix quoting bugs.
3427 2009-01-19  Eric Blake  <ebb9@byu.net>
3429         Improve AC_REQUIRE documentation.
3430         * doc/autoconf.texi (Macro Definitions) <AC_DEFUN>: Add @defmac,
3431         and mention interaction with AC_REQUIRE.
3432         (Prerequisite Macros) <AC_REQUIRE>: Give more detail on user
3433         ordering constraint bug, and how to fix it.
3434         * tests/m4sugar.at (m4@&t@_require: nested): New test.
3436         Speed up m4_require.
3437         * lib/m4sugar/m4sugar.m4 (_m4_divert_dump): Change semantics to
3438         always be defined, as either empty or a number.
3439         (_m4_defun_pro_outer, _m4_defun_epi_outer): Treat _m4_divert_dump
3440         as a stack, rather than a one-shot macro.
3441         (_m4_require_call): Expect third argument to be pre-expanded.
3442         (m4_divert_require, m4_require): Adjust clients accordingly.
3443         * lib/m4sugar/m4sh.m4 (AS_REQUIRE): Likewise.
3445 2009-01-17  Eric Blake  <ebb9@byu.net>
3447         Avoid underfull hbox.
3448         * doc/autoconf.texi (Installation Directory Variables): Reword to
3449         fit on line.
3451 2009-01-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3453         Ignore `set -e'-related failure of NetBSD sh.
3454         * tests/m4sh.at (AS@&t@_EXIT): Skip test if (NetBSD) shell
3455         fails to finish EXIT trap after set -e.
3457 2009-01-06  Eric Blake  <ebb9@byu.net>
3459         Maintainer cleanups.
3460         * cfg.mk (web-manual): Use new feature of gendocs.
3461         (fetch): Fetch gendocs.
3462         * Makefile.am (EXTRA_DIST): Distribute new file.
3463         * doc/Makefile.am (EXTRA_DIST): Likewise.
3464         * .gitattributes: Ignore whitespace in upstream files.
3465         * HACKING (Other web updates): Update Free Software Directory
3466         instructions.
3467         (Upload): No longer mention xdelta.
3468         * maint.mk (xd-delta): Likewise.
3469         * build-aux/gendocs.sh: New upstream file.
3470         * doc/gendocs_template: Likewise.
3471         * build-aux/announce-gen: Resync from upstream.
3472         * build-aux/config.guess: Likewise.
3473         * build-aux/config.sub: Likewise.
3474         * build-aux/gnupload: Likewise.
3475         * build-aux/texinfo.tex: Likewise.
3477 2008-12-30  Eric Blake  <ebb9@byu.net>
3479         Make it easier to track diversion bugs.
3480         * lib/m4sugar/m4sugar.m4 (_m4_divert_raw, _m4_undivert): New
3481         internal macros, which are easier to trace than m4_builtin.
3482         (m4_cleardivert, m4_divert, m4_divert_push, m4_divert_pop)
3483         (m4_undivert): Use them.
3484         (_m4_require_call): Likewise.  Use fewer macros.
3485         * lib/autotest/general.m4 (_AT_DECIDE_TRACEABLE): Fix typo.
3487 2008-12-26  Bruno Haible  <bruno@clisp.org>
3489         Improve multiarch detection.
3490         * lib/autoconf/c.m4 (AC_C_BIGENDIAN): Make detection of options
3491         indicating a universal build more reliable.
3493 2008-12-28  William Pursell  <bill.pursell@gmail.com>  (tiny change)
3495         Use AS_CASE in documented example.
3496         * doc/autoconf.texi (Using the System Type): Use AS_CASE in
3497         example instead of raw case.
3499 2008-12-23  Eric Blake  <ebb9@byu.net>
3501         Make m4_dumpdef more useful with M4 1.6.
3502         * lib/m4sugar/m4sugar.m4 (_m4_dumpdef): New macro.
3503         (m4_init): Install it for new enough m4.
3504         * tests/m4sugar.at (m4@&t@_dumpdef): Enhance test.
3505         * doc/autoconf.texi (Redefined M4 Macros) <m4_dumpdef>: Mention
3506         lack of sorting.
3508 2008-12-24  Bruno Haible  <bruno@clisp.org>
3510         Improve INSTALL for HP-UX.
3511         * doc/install.texi (Particular Systems): For HP-UX, also recommend
3512         -D_XOPEN_SOURCE=500. Needed for the declaration of mbstate_t on
3513         HP-UX 11.11.
3515 2008-12-22  Bruno Haible  <bruno@clisp.org>
3517         Improve INSTALL for Haiku.
3518         * doc/install.texi (Particular Systems): Add a recommendation
3519         which prefix to use on Haiku.
3521 2008-12-19  Eric Blake  <ebb9@byu.net>
3523         Fix typo in previous commit.
3524         * doc/autoconf.texi (Set manipulation Macros) <m4_set_map_sep>:
3525         Fix typo.
3527         Document some recently added macros.
3528         * lib/m4sugar/m4sugar.m4 (m4_map_args_w): Add optional sep
3529         parameter.
3530         * doc/autoconf.texi (Looping constructs) <m4_map_args_sep>
3531         <m4_map_args_w, m4_stack_foreach, m4_stack_foreach_sep>: Document
3532         new macros.
3533         (Set manipulation Macros) <m4_set_map_sep>: Likewise.
3534         * tests/m4sugar.at (m4@&t@_stack, M4 loops): Enhance tests.
3535         * NEWS: Document new macros.
3537 2008-12-18  Eric Blake  <ebb9@byu.net>
3539         Fix separator in m4_stack_foreach_sep.
3540         * lib/m4sugar/m4sugar.m4 (_m4_stack_reverse): Separate separator
3541         from prefix.
3542         * tests/m4sugar.at (m4@&t@_stack): Enhance test.
3544 2008-12-18  Eric Blake  <ebb9@byu.net>
3546         Mention limitation of M4 1.4.x on builtin tokens.
3547         * doc/autoconf.texi (Redefined M4 Macros) <m4_dumpdef>: Document
3548         ramification of M4 1.4.x's inability to pass builtin tokens
3549         through text macros.
3550         (Evaluation Macros) <m4_curry>: Likewise.
3551         * tests/m4sugar.at (m4@&t@_defn): Enhance test.
3552         * NEWS: Mention subtle change in m4_dumpdef semantics.
3554         Document m4_version_prereq.
3555         * doc/autoconf.texi (Number processing Macros)
3556         <m4_version_prereq>: Add documentation.
3557         * NEWS: Mention it.
3558         Reported by Bruno Haible.
3560 2008-12-10  Jim Meyering  <meyering@redhat.com>
3562         AC_HEADER_ASSERT: don't say assertions are disabled when they're not
3563         * lib/autoconf/headers.m4 (AC_HEADER_ASSERT): Do not make configure
3564         report "checking whether to enable assertions... no", when they are
3565         in fact enabled.  This is solely a bug in the output of configure.
3566         In spite of saying "no", NDEBUG was not defined in that case.
3567         Also, as noted by Eric Blake, leave assertions enabled upon
3568         --enable-assert=INVALID.
3570 2008-12-09  Eric Blake  <ebb9@byu.net>
3572         Fix m4_location inside m4_wrap with m4 1.4.5.
3573         * lib/m4sugar/m4sugar.m4 (m4_undefine): Redefine m4_location
3574         inside wrapped text if older m4 is detected.
3575         Reported by William Pursell.
3577 2008-12-08  William Pursell  <bill.pursell@gmail.com>  (tiny change)
3578         and Eric Blake  <ebb9@byu.net>
3580         Fix AC_HEADER_ASSERT w.r.t. --enable-assert.
3581         * lib/autoconf/headers.m4 (AC_HEADER_ASSERT): Honor --enable-assert,
3582         rather than treating it as a synonym for --disable-assert.
3583         * NEWS: Document the fix.
3585 2008-12-06  William Pursell  <bill.pursell@gmail.com>  (tiny change)
3587         Fix AC_HEADER_ASSERT to honor --enable-assert, rather than
3588         treat --enable-assert and --disable-assert equivalently.
3589         * lib/autoconf/headers.m4 (AC_HEADER_ASSERT): Check value of $enableval.
3591 2008-12-05  William Pursell  <bill.pursell@gmail.com>  (tiny change)
3593         Fix some typos and grammatical errors in documentation.
3594         * doc/autoconf.texi: Clean up some bad use of English.
3596 2008-12-03  Eric Blake  <ebb9@byu.net>
3598         Improve AC_STATE_SAVE.
3599         * tests/local.at (AC_STATE_SAVE): Avoid ls -1, and use one less
3600         process by hoisting the uniqueness check into sed.
3601         * doc/autoconf.texi (Limitations of Usual Tools) <ls>: Mention
3602         MacOS bug.
3604 2008-12-02  Eric Blake  <ebb9@byu.net>
3606         Avoid MacOS readdir bug in testsuite.
3607         * tests/local.at (AC_STATE_SAVE): Avoid spurious failures due to
3608         duplicated ls entries.
3609         * THANKS: Update.
3610         Reported by Bruce Dugan and others.
3612 2008-11-29  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3614         * lib/autotest/general.m4 (AT_JOB_FIFO_FD): Hide zsh 4.3.4
3615         error messages about `set -m'.
3617 2008-11-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3619         Fix a couple of test failures with dash.
3620         * tests/autotest.at (AT_CHECK_AT_TITLE_CHAR): Normalize
3621         exit status of `cd'.
3622         * tests/m4sh.at (AS_MESSAGE_LOG_FD): Remove script before
3623         regeneration, to avoid timing effects.
3625 2008-11-25  Eric Blake  <ebb9@byu.net>
3627         Add m4_cleardivert.
3628         * lib/m4sugar/m4sugar.m4 (m4_cleardivert): New macro.
3629         * lib/autotest/general.m4 (AT_INIT): Use it.
3630         * lib/autoconf/general.m4 (_AC_INIT_NOTICE): Likewise.
3631         * tests/m4sugar.at (m4@&t@_divert_stack): Test it.
3632         * doc/autoconf.texi (Diversion support) <m4_cleardivert>: Document
3633         it.
3634         * NEWS: Likewise.
3635         Suggested by Paolo Bonzini.
3637         Add safety check for m4_expand vs. diversions.
3638         * lib/m4sugar/m4sugar.m4 (m4_expand): Make more robust against
3639         diverted text.
3640         * doc/autoconf.texi (Evaluation Macros) <m4_expand>: Document new
3641         safety check.
3643 2008-11-24  Eric Blake  <ebb9@byu.net>
3645         Fix typo in AS_MESSAGE_LOG_FD patch.
3646         * lib/m4sugar/m4sh.m4 (AS_ERROR): Check correct condition.
3648 2008-11-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3650         More reliable signal handling in Autotest.
3651         * lib/autotest/general.m4 (Driver loop): Rewrite signal handler.
3652         Start parallel jobs in their own process group, enabling job
3653         control in the shell if possible, for better signal handling.
3654         Deal with INT, TERM, and HUP in the testsuite driver.  In the
3655         parallel driver, propagate TSTP to jobs either as TSTP or as
3656         STOP (to avoid fork bombs with ksh).
3657         Inside the job processes, add PIPE handler to write back the
3658         job token, so the master process does not hang.
3659         Disable the parallel driver if job control is not provided or if
3660         trap does not understand signal names.
3661         * tests/autotest.at (parallel autotest and signals): New test,
3662         exercises INT, TERM, and PIPE, serial and parallel, with and
3663         without `make' in the loop.
3664         Kudos to Richard Stevens for writing APUE.
3666 2008-11-22  Eric Blake  <ebb9@byu.net>
3668         Fix testsuite failure on Solaris.
3669         * tests/torture.at (AT_CHECK_CONFIG_CREATION_NOWRITE): Normalize
3670         failure status to 1.
3672 2008-11-21  Eric Blake  <ebb9@byu.net>
3674         Clean up AS_MESSAGE_LOG_FD usage.
3675         * lib/m4sugar/m4sh.m4 (AS_MESSAGE_FD, AS_MESSAGE_LOG_FD)
3676         (AS_ORIGINAL_STDIN_FD): Provide default M4sh values.
3677         (_AS_ECHO_LOG, AS_MESSAGE, _AS_ERROR_PREPARE, AS_ERROR): Simplify
3678         usage.
3679         (AS_INIT_GENERATED): Don't shuffle an unchanged AS_MESSAGE_FD.
3680         * tests/m4sh.at (AS@&t@_INIT_GENERATED): Update test.
3681         (AS@&t@_MESSAGE_FD): New test.
3682         * doc/autoconf.texi (Initialization Macros) <AS_INIT_GENERATED>:
3683         Give more details about fd manipulation.
3684         (File Descriptor Macros): Describe M4sh defaults for the fds.
3686 2008-11-21  Eric Blake  <ebb9@byu.net>
3688         Use shell function for AS_ERROR.
3689         * lib/m4sugar/m4sh.m4 (_AS_ERROR_PREPARE): New macro, defining a
3690         new shell function.
3691         (AS_ERROR): Use it.
3692         (_AS_LINENO_PREPARE): Break circular dependency.
3693         (AS_PREPARE, _AS_PREPARE): Initialize for child scripts.
3695 2008-11-21  Eric Blake  <ebb9@byu.net>
3697         Fix typos in recent testsuite improvements.
3698         * lib/autotest/general.m4 (AT_INIT) <at_fn_check_prepare_dynamic>:
3699         Fix typo.
3700         * NEWS: Clarify the potential impact to users.
3701         * tests/autotest.at (AT_DATA_AUTOTEST): New macro, patterned after
3702         AT_DATA_M4SUGAR.
3703         (AT_CHECK_AT_PREP, AT_CHECK_AT_TITLE): Use it.
3704         (unusual file names): Test that the recent echo fix does not
3705         regress.  Fix quoting bug that made the test a no-op.
3706         Reported by Paolo Bonzini and Ralf Wildenhues.
3708 2008-11-21  Eric Blake  <ebb9@byu.net>
3710         Use modern m4sh constructs in autoconf.
3711         * bin/autoconf.as (exit_missing_arg, getopt): Use AS_ERROR, rather
3712         than AS_EXIT.
3714         Change the semantics of AS_EXIT without argument.
3715         * lib/m4sugar/m4sh.m4 (_AS_EXIT_PREPARE): When defaulting, use $?
3716         even if it is 0.
3717         (AS_ERROR): Guarantee non-zero status.
3718         * bin/autoconf.as (exit_missing_arg, getopt): Revert prior change;
3719         we want non-zero status.
3720         * tests/m4sh.at (AS@&t@_EXIT): Update test accordingly.
3721         * doc/autoconf.texi (Common Shell Constructs) <AS_EXIT>: Update
3722         the documentation.
3723         <AS_SET_STATUS>: Don't overly restrict implementation.
3724         (Printing Messages) <AC_MSG_ERROR>: Describe better default.
3725         Suggestions by Paolo Bonzini and Ralf Wildenhues.
3727 2008-11-21  Eric Blake  <ebb9@byu.net>
3729         Add @anchors within Builtins and Usual Tools lists.
3730         * doc/autoconf.texi (Limitations of Builtins)
3731         (Limitatations of Usual Tools): Add anchors for tools called out
3732         by name.  Adjust callers to narrow in on tool of interest.
3734         Move case statement style discussion to m4 quoting section.
3735         * doc/autoconf.texi (Limitations of Builtins): Move comparison of
3736         quoting styles...
3737         (Balancing Parentheses): ...to this new node.
3738         Suggested by Ralf Wildenhues.
3740 2008-11-20  Eric Blake  <ebb9@byu.net>
3742         Factor more common code out of AT_CHECK into shell function.
3743         * lib/autotest/general.m4 (_AT_CHECK): Avoid echo bug if AT_LINE
3744         starts with -.  Move preparations...
3745         (AT_INIT) <at_fn_check_prepare_trace>
3746         <at_fn_check_prepare_notrace, at_fn_check_prepare_dynamic>:
3747         ...into these new shell functions.
3748         <at_fn_check_newline>: Inline into only caller.
3749         (_AT_DECIDE_TRACEABLE): Use them to condense testsuite size.
3751 2008-11-20  Eric Blake  <ebb9@byu.net>
3753         Handle version numbers as decimal, even if they start with 0.
3754         * lib/m4sugar/m4sugar.m4 (_m4_version_unletter): Avoid
3755         interpreting leading zeros as octal.
3757 2008-11-20  Eric Blake  <ebb9@byu.net>
3759         Speed up AT_CHECK.
3760         * lib/autotest/general.m4 (AT_CHECK, AT_CHECK_UNQUOTED): Expand
3761         third and fourth arguments once.
3762         (_AT_CHECK): Don't re-expand expected output.  Rearrange code for
3763         fewer scans of arguments.
3764         (AT_CHECK): Update caller.
3765         (AT_INIT) <at_fn_filter_trace>: Drop parameter.
3766         * tests/m4sugar.at (m4@&t@_split): Protect test with
3767         quadrigraphs.
3769         Fix XFAIL related to AT_CHECK.
3770         * lib/autotest/general.m4 (AT_CHECK, AT_CHECK_UNQUOTED): Expand
3771         first argument once.
3772         (_AT_CHECK): Don't re-expand commands.
3773         * tests/autotest.at (Multiline command from M4 expansion): Remove
3774         XFAIL.
3775         * tests/tools.at (autoupdating AU_ALIAS): Quote unbalanced paren.
3776         * NEWS: Document the fallout.
3778 2008-11-20  Eric Blake  <ebb9@byu.net>
3780         Reduce forks in AC_DEFINE.
3781         * lib/autoconf/general.m4 (_AC_DEFINE_Q_PRINT): New macro.
3782         (_AC_DEFINE_Q): Use it to avoid forks for all AC_DEFINE and most
3783         AC_DEFINE_UNQUOTED.
3784         * lib/autoconf/fortran.m4 (_AC_FC_WRAPPERS): Properly quote #.
3785         * tests/torture.at (Substitute and define special characters):
3786         (Define to a 2000-byte string): Enhance tests to cover
3787         AC_DEFINE_UNQUOTED.
3788         (@%:@define header templates): Enhance test to cover #.
3790 2008-11-20  Eric Blake  <ebb9@byu.net>
3792         Improve m4_expand robustness, part 2.
3793         * lib/m4sugar/m4sugar.m4 (m4_expand): Support unterminated
3794         comments, by wrapping old implementation...
3795         (_m4_expand): ...as this, and renaming old core...
3796         (_m4_expand_): ...to this.
3797         (m4_text_box): Use lighter-weight _m4_expand.
3798         * lib/m4sugar/m4sh.m4 (_AS_DETECT_EXPAND)
3799         (_AS_DETECT_BETTER_SHELL, AS_FUNCTION_DESCRIBE): Likewise.
3800         * lib/autotest/general.m4 (AT_KEYWORDS): Likewise.
3801         * tests/m4sugar.at (m4@&t@_expand): Enhance test.
3802         * tests/autotest.at (AT_CHECK_AT_TITLE_CHAR): Likewise.
3803         * doc/autoconf.texi (Evaluation Macros) <m4_expand>: Mention new
3804         functionality.
3806         Improve m4_expand robustness, part 1.
3807         * lib/m4sugar/m4sugar.m4 (_m4_expand): Tolerate unquoted
3808         unbalanced `)'.
3809         * tests/m4sugar.at (m4@&t@_expand): New test.
3811 2008-11-20  Eric Blake  <ebb9@byu.net>
3813         Add m4_chomp, m4_esyscmd_s.
3814         * lib/m4sugar/m4sugar.m4 (m4_esyscmd_e, m4_chomp, m4_chomp_all):
3815         New macros.
3816         * doc/autoconf.texi (Redefined M4 Macros) <m4_esyscmd_s>: Document
3817         them.
3818         (Text processing Macros) <m4_chomp>: Likewise.
3819         * NEWS: Likewise.
3820         * tests/m4sugar.at (m4@&t@_esyscmd_s): New test.
3822         Remove _m4_index.
3823         * lib/m4sugar/m4sugar.m4 (_m4_index): Delete; it is more efficient
3824         to make callers guarantee a match.
3825         (m4_init): Adjust caller.
3826         * lib/autoconf/status.m4 (_AC_CONFIG_COMPUTE_DEST): Likewise.
3827         * lib/autoconf/general.m4 (_AC_DEFINE_Q): Likewise.
3829         Describe different hacks for balancing ')' in case statements.
3830         * doc/autoconf.texi (Limitations of Builtins) <case>: Add an
3831         exposition on various quoting styles.
3833 2008-11-20  Eric Blake  <ebb9@byu.net>
3835         Speed up _AS_QUOTE.
3836         * lib/m4sugar/m4sh.m4 (_AS_QUOTE_IFELSE): Inline into...
3837         (_AS_QUOTE): ...here, delete unused second paramenter, and factor
3838         choice into...
3839         (_AS_QUOTE_MODERN, _AS_QUOTE_OLD): ...new helpers.
3841 2008-11-20  Alfred G. de Wijn  <dwijn@iluvatar.eu.org>  (tiny change)
3843         For consistency, make temporary variable match language name.
3844         * lib/autoconf/fortran.m4 (_AC_PROG_FC_G, _AC_PROG_FC_V_OUTPUT):
3845         Match the save/test variables' names to the FFLAGS/FCFLAGS being
3846         saved.
3847         * THANKS: Update.
3849 2008-11-19  Eric Blake  <ebb9@byu.net>
3851         Improve testsuite generation.
3852         * tests/local.at (AT_DATA_M4SUGAR, AT_DATA_M4SH)
3853         (AT_DATA_AUTOCONF): Escape all quadrigraphs, not just @&t@.  Use
3854         fewer macros.
3856 2008-11-18  Eric Blake  <ebb9@byu.net>
3858         Use fn for shell functions, func for autoconf CHECK_FUNCS.
3859         * lib/autoconf/functions.m4 (AC_CHECK_FUNC): Abbreviate shell
3860         function names.
3861         * lib/autoconf/general.m4 (_AC_PREPROC_IFELSE)
3862         (_AC_COMPILE_IFELSE, _AC_LINK_IFELSE, _AC_RUN_IFELSE)
3863         (AC_CHECK_DECL, AC_COMPUTE_INT): Likewise.
3864         * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_MONGREL)
3865         (_AC_CHECK_HEADER_COMPILE, _AC_CHECK_HEADER_PREPROC): Likewise.
3866         * lib/autoconf/types.m4 (_AC_CHECK_TYPE_NEW, _AC_TYPE_INT)
3867         (_AC_TYPE_UNSIGNED_INT, AC_CHECK_MEMBER): Likewise.
3868         * lib/autotest/general.m4 (AT_INIT): Likewise.
3869         * lib/m4sugar/m4sh.m4 (_AS_SHELL_FN_WORK, _AS_EXIT_PREPARE)
3870         (AS_EXIT, AS_SET_STATUS, _AS_UNSET_PREPARE, _AS_MKDIR_P)
3871         (_AS_MKDIR_P_PREPARE, _AS_VAR_APPEND_PREPARE, AS_VAR_APPEND)
3872         (_AS_VAR_ARITH_PREPARE, AS_VAR_ARITH): Likewise.
3873         * doc/autoconf.texi (Shell Functions): Likewise.
3875 2008-11-18  Eric Blake  <ebb9@byu.net>
3877         Alter default value of AS_EXIT.
3878         * lib/m4sugar/m4sh.m4 (_AS_EXIT_PREPARE): Let as_func_exit
3879         parameter be optional.
3880         (AS_EXIT): Use it to make better default.
3881         (_AS_DETECT_BETTER_SHELL): Use new default.
3882         * bin/autoconf.as (exit_missing_arg, getopt): Likewise.
3883         * lib/autoconf/status.m4 (AC_OUTPUT): Likewise.
3884         * tests/m4sh.at (AS@&t@_EXIT): Update test.
3885         * doc/autoconf.texi (Common Shell Constructs) <AS_EXIT>: Mention
3886         new default behavior.
3887         (Limitations of Builtins) <trap>: Adjust to use new default.
3888         * NEWS: Mention the semantic change.
3889         Suggested by Ralf Wildenhues.
3891         Update example to match actual Tru64 behavior.
3892         * doc/autoconf.texi (Limitations of Builtins) <trap>: Correct
3893         the example.
3894         Reported by Ralf Wildenhues.
3896         Add AS_SET_STATUS, make AS_EXIT more efficient.
3897         * lib/m4sugar/m4sh.m4 (_AS_EXIT_PREPARE, AS_SET_STATUS): New
3898         macros.
3899         (AS_EXIT): Rewrite to avoid forks.
3900         (_AS_SHELL_SANITIZE): Avoid AS_EXIT prior to shell functions.
3901         (AS_PREPARE, _AS_PREPARE): Add new preparation.
3902         * doc/autoconf.texi (Common Shell Constructs) <AS_SET_STATUS>:
3903         Document.
3904         * NEWS: Mention new macro.
3905         * tests/m4sh.at (AS@&t@_EXIT): New test.
3906         (BASENAME_TEST): Sort.
3908         Document Tru64 bug with 'set -e'.
3909         * doc/autoconf.texi (Limitations of Builtins) <trap>: Mention a
3910         bug in mixing 'set -e' with 'trap .. 0'.
3911         Reported by Ralf Wildenhues.
3913         Document a Solaris /bin/sh bug with 'set -e'.
3914         * doc/autoconf.texi (Shell Functions): Mention the bug.
3916 2008-11-17  Eric Blake  <ebb9@byu.net>
3918         Detect empty list in AS_FOR.
3919         * lib/m4sugar/m4sh.m4 (AS_FOR): Handle iteration over $@
3920         properly.
3921         * tests/m4sh.at (AS@&t@_FOR): Enhance test to catch it.
3922         Reported by Paolo Bonzini.
3924 2008-11-16  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3926         Use a different workaround for an automake quirk.
3927         * tests/Makefile.am (AUTOMAKE_OPTIONS): Remove.
3928         (distclean_generic): New helper variable, to fool automake.
3929         ($(distclean_generic)): Depend on clean-local, to prevent
3930         the race in the two rules with accessing and removing
3931         $(TESTSUITE).
3932         Report by Eric Blake.
3934         * lib/m4sugar/m4sh.m4 (_AS_VAR_ARITH_PREPARE): Simplify, avoid
3935         unbalanced parentheses from last change.
3936         Spotted by Eric Blake, fix suggested by Paolo Bonzini.
3938         Fix exit status of expr version of as_func_arith.
3939         * lib/m4sugar/m4sh.m4 (_AS_VAR_ARITH_PREPARE): Count an exit
3940         status of 1 of expr also as success, to avoid failure if the
3941         computation result is zero.  Fixes test failures with IRIX sh,
3942         where the expr variant of as_func_arith is used.
3944         Do not use read-only variable $status.
3945         * tests/compile.at (AC_RUN_IFELSE): Use $estatus instead of
3946         $status, for zsh.
3948 2008-11-15  Eric Blake  <ebb9@byu.net>
3950         Use the new AS_FOR function.
3951         * lib/autoconf/functions.m4 (AC_CHECK_FUNCS): Use new
3952         abstraction for cleaner code.
3953         * lib/autoconf/headers.m4 (AC_CHECK_HEADERS): Likewise.
3955         Add AS_FOR, undocumented for now.
3956         * lib/m4sugar/m4sh.m4 (AS_FOR): New macro.
3957         * tests/m4sh.at (AS@&t@_FOR): New test.
3958         Suggested by Paolo Bonzini.
3960 2008-11-13  Eric Blake  <ebb9@byu.net>
3962         Optimize single-argument loop.
3963         * lib/autoconf/functions.m4 (AC_CHECK_FUNCS): Avoid forks when
3964         loop only has one argument.
3965         * lib/autoconf/headers.m4 (AC_CHECK_HEADERS): Likewise.
3967 2008-11-13  Eric Blake  <ebb9@byu.net>
3969         Fix AS_ESCAPE usage bugs.
3970         * lib/m4sugar/m4sh.m4 (_AS_VAR_APPEND_PREPARE)
3971         (_AS_VAR_ARITH_PREPARE): Expand macros prior to adding shell
3972         escapes.
3973         (AS_TR_SH, AS_VAR_GET): Use _AS_ESCAPE for speed.
3974         * doc/autoconf.texi (Polymorphic Variables) <AS_VAR_SET>: Document
3975         caveat due to conditional AS_ESCAPE.
3976         * tests/m4sh.at (AS@&t@_VAR basics): Enhance test.
3978 2008-11-12  Eric Blake  <ebb9@byu.net>
3980         Whitespace reduction in configure.
3981         * lib/autoconf/autoheader.m4 (AH_VERBATIM): Avoid empty lines.
3982         * lib/autoconf/general.m4 (_AC_INIT_PREPARE, AC_CHECK_FILES):
3983         Likewise.
3984         (_AC_DEFINE_Q): Restore empty line, since some clients in the wild
3985         depend on it.
3987 2008-11-12  Eric Blake  <ebb9@byu.net>
3989         Make M4sh, not autoconf, guarantee sane $SHELL.
3990         * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS): Move setting of
3991         SHELL...
3992         * lib/m4sugar/m4sh.m4 (_AS_DETECT_BETTER_SHELL): ...to here.
3993         * doc/autoconf.texi (Initialization Macros): Document the effect
3994         on SHELL.
3995         * tests/m4sh.at (AS@&t@_INIT_GENERATED): New test.
3996         Reported by Ralf Wildenhues.
3998 2008-11-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4000         Wrap keywords in `testsuite --list' output.
4001         * lib/autotest/general.m4 (AT_INIT): Rewrite --list awk script,
4002         avoid lint warnings from gawk, wrap keyword lists to stay below
4003         80 characters per line if possible.
4004         * tests/autotest.at (Keyword wrapping): New test.
4006         * tests/local.at (AT_COPYRIGHT): Bump copyright years.
4008         * doc/autoconf.texi (Conditional constructs, Macro Names): Fix
4009         typos.
4011 2008-11-10  Eric Blake  <ebb9@byu.net>
4013         Work around <=m4-1.4.9 bug in m4_format.
4014         * lib/m4sugar/m4sugar.m4 (_m4_index): New internal macro.
4015         (m4_init): Only use it in older m4.
4016         * lib/autoconf/general.m4 (_AC_DEFINE_Q): Use it to avoid
4017         m4_format bug in older m4.
4018         * lib/autoconf/status.m4 (_AC_CONFIG_COMPUTE_DEST): Likewise.
4019         Reported by Bob Proulx.
4021 2008-11-10  Eric Blake  <ebb9@byu.net>
4023         Match upstream standards.texi.
4024         * doc/standards.texi: Resync from upstream.
4025         * doc/fdl-1.3.texi: Rename...
4026         * doc/fdl.texi: ...to this.
4027         * doc/Makefile.am (autoconf_TEXINFOS, standards_TEXINFOS): Update
4028         users.
4029         * doc/autoconf.texi (GNU Free Documentation License): Likewise.
4030         * cfg.mk (fetch): Likewise.
4032         Yet more FDL 1.3 fallout.
4033         * NEWS: Mention manual license change.
4035 2008-11-10  Eric Blake  <ebb9@byu.net>
4037         Avoid some regex uses.
4038         * lib/autoconf/general.m4 (_AC_DEFINE_Q): Use m4_format rather
4039         than m4_bpatsubst to grab string prefix.
4040         * lib/autoconf/status.m4 (_AC_CONFIG_REGISTER)
4041         (_AC_CONFIG_REGISTER_DEST, AC_CONFIG_SUBDIRS): Likewise.
4042         (_AC_FILE_DEPENDENCY_TRACE_COLON): Use m4_translit instead of
4043         m4_bpatsubst to change bytes.
4044         (_AC_CONFIG_DEPENDENCY_DEFAULT): Use m4_index rather than
4045         m4_bmatch to find byte.
4046         (_AC_CONFIG_COMPUTE_DEST): New helper macro.
4048         Use more efficient macros in AC_CONFIG_SUBDIRS.
4049         * lib/autoconf/status.m4 (_AC_CONFIG_FOOS, AC_CONFIG_SUBDIRS): Use
4050         m4_map_args_w.
4051         (_AC_OUTPUT_FILE): Use m4_map_args_sep and m4_map_args.
4052         (_AC_OUTPUT_FILE_ADJUST_DIR): New helper macro.
4054         Use more efficient macros in AC_CHECK_FILES and AC_CHECK_DECLS.
4055         * lib/autoconf/general.m4 (AC_CHECK_FILES): Use m4_map_args_w,
4056         and avoid typo.
4057         (AC_CHECK_DECLS, AC_CHECK_DECLS_ONCE): Use m4_map_args_sep.
4058         (_AC_CHECK_FILES, _AC_CHECK_DECLS, _AC_CHECK_DECL_ONCE): New
4059         helper macros.
4060         (AC_LIBSOURCES): Use m4_map_args.
4062         Use more efficient macros in AC_CHECK_TYPES.
4063         * lib/autoconf/types.m4 (AC_CHECK_TYPES, AC_CHECK_MEMBERS): Use
4064         m4_map_args_sep.
4065         (_AC_CHECK_TYPES, _AC_CHECK_MEMBERS): New helper macros.
4067         Use more efficient macros in AC_CHECK_HEADERS.
4068         * lib/autoconf/headers.m4 (AH_CHECK_HEADERS)
4069         (AH_CHECK_HEADERS_DIRENT): Rename...
4070         (_AH_CHECK_HEADER, _AH_CHECK_HEADER_DIRENT): ...and take only one
4071         argument, rather than a list.
4072         (AC_CHECK_HEADERS, AC_CHECK_HEADERS_ONCE):
4073         Adjust callers to use m4_map_args_w.
4074         (AC_HEADER_DIRENT): Adjust caller to use m4_map_args.
4075         (_AC_CHECK_HEADER_ONCE): New helper macro.
4077         Use more efficient macros in AC_CHECK_FUNCS.
4078         * lib/autoconf/functions.m4 (_AH_CHECK_FUNCS): Rename...
4079         (_AH_CHECK_FUNC): ...and take only one argument, rather than a
4080         list.
4081         (AC_CHECK_FUNCS, AC_CHECK_FUNCS_ONCE): Adjust callers to use
4082         m4_map_args_w.
4083         (_AC_CHECK_FUNC_ONCE): New helper macro.
4084         (AC_REPLACE_FUNCS): Use m4_map_args_w.
4086         Use more efficient macro in AT_INIT.
4087         * lib/autotest/general.m4 (AT_INIT): Use m4_map_args.
4089 2008-11-10  Eric Blake  <ebb9@byu.net>
4091         More FDL 1.3 fallout.
4092         * cfg.mk (fetch): Add gnu-oids.texi, drop fdl.texi.
4093         * doc/Makefile.am (standards_TEXINFOS): Reflect upstream
4094         dependency changes.
4095         * doc/fdl.texi: Delete.
4096         * doc/gnu-oids.texi: New upstream file.
4097         * doc/standards.texi: Resync from upstream.
4098         * doc/make-stds.texi: Likewise.
4099         * build-aux/announce-gen: Likewise.
4100         * build-aux/texinfo.tex: Likewise.
4102 2008-11-10  Clinton Roy  <clinton.roy@gmail.com>  (tiny change)
4104         Pass autoreconf -I to aclocal -I
4105         * bin/autoreconf.in (parse_args): Pass --include to aclocal.
4106         * doc/autoconf.texi (autoreconf Invocation): Updates for above.
4107         * NEWS: Document it.
4108         * THANKS: Update.
4110 2008-11-10  Eric Blake  <ebb9@byu.net>
4112         Try 'print -r --' as a non-forking variant of 'printf %s\\n'.
4113         * lib/m4sugar/m4sh.m4 (_AS_ECHO_PREPARE): Cater to Solaris ksh.
4114         * doc/autoconf.texi (Limitations of Builtins) <printf>: Document
4115         the print workaround.
4116         Idea by Paolo Bonzini.
4118 2008-11-10  Eric Blake  <ebb9@byu.net>
4120         Provide a section on all tools allowed in GNU Coding Standards.
4121         * doc/autoconf.texi (Limitations of Builtins) <read>: Sort.
4122         <wait>: Add section.
4123         (Limitations of Usual Tools) <awk>: Make table entry consistent.
4124         <chgrp, mkfifo, rmdir, sleep, sort, tar> Add sections.
4126 2008-11-09  Paolo Bonzini  <bonzini@gnu.org>
4128         Balance parentheses in _AC_CACHE_DUMP.
4129         * lib/autoconf/general.m4 (_AC_CACHE_DUMP): Balance parentheses
4130         without introducing \).
4132 2008-11-07  Eric Blake  <ebb9@byu.net>
4134         Further doc updates for AC_CHECK_HEADER change.
4135         * doc/autoconf.texi (Generic Headers) <AC_CHECK_HEADER>: Mention
4136         new default, and make it more obvious that using [-] is generally
4137         broken.
4139 2008-11-07  Eric Blake  <ebb9@byu.net>
4141         * ChangeLog: Enforce UTF-8 encoding.
4143 2008-11-06  Eric Blake  <ebb9@byu.net>
4145         Skip preprocessor check in AC_CHECK_HEADERS_ONCE.
4146         * lib/autoconf/headers.m4 (_AC_HEADERS_EXPANSION): Provide fourth
4147         argument to speed up check.
4149 2008-11-06  Eric Blake  <ebb9@byu.net>
4151         Speed up AC_CHECK_TYPE.
4152         * lib/autoconf/types.m4 (AC_CHECK_TYPE): Factor out $@, and avoid
4153         regex when enough arguments are present.
4155 2008-11-06  Paolo Bonzini  <bonzini@gnu.org>
4157         Remove three forks per _AC_RUN_LOG_STDERR in the common case.
4158         * lib/autoconf/general.m4 (_AC_RUN_LOG_STDERR): Avoid grep/rm/cat
4159         sequence when the program's stderr was empty, while providing a
4160         conftest.err file even in that case.
4161         (_AC_CACHE_DUMP): Fix mismatched parenthesis.
4163 2008-11-06  Paolo Bonzini  <bonzini@gnu.org>
4165         Change `present but cannot be compiled' behavior to use compiler result.
4166         * NEWS: Document it.
4167         * doc/autoconf.texi (Present But Cannot Be Compiled): Document it.
4168         * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_MONGREL): Implement it
4169         and adjust warning.
4170         * tests/semantics.at (AC_CHECK_HEADERS): Test new semantics.
4172 2008-11-05  Eric Blake  <ebb9@byu.net>
4174         Add m4_map_args_w.
4175         * lib/m4sugar/m4sugar.m4 (m4_map_args_w): New macro, undocumented
4176         for now.
4177         (_m4_split): Allow user control over separator.
4178         (m4_split): Adjust caller.
4179         (m4_foreach_w, m4_append_uniq_w, _m4_text_wrap): Rewrite to use
4180         m4_map_args_w.
4181         * tests/m4sugar.at (m4@&t@_append): Augment test keywords.
4182         (M4 loops): Test new interface.
4184         Use m4_set_map_sep in more places.
4185         * lib/m4sugar/m4sugar.m4 (m4_set_difference, m4_set_intersection)
4186         (m4_set_union): Use m4_set_map_sep rather than m4_set_foreach.
4187         * doc/autoconf.texi (Set manipulation Macros) <m4_set_map>:
4188         Enhance documentation.
4189         <m4_set_foreach>: Mention faster alternative.
4190         (Looping constructs) <m4_foreach>: Likewise.
4192         Unify m4_set_foreach and m4_set_map.
4193         * lib/m4sugar/m4sugar.m4 (m4_set_map_sep): New macro, undocumented
4194         for now.
4195         (m4_set_contents, m4_set_foreach, m4_set_list, m4_set_listc)
4196         (m4_set_map): Adjust callers.
4198         Use _m4_foreach in more places.
4199         * lib/m4sugar/foreach.m4 (m4_dquote_elt, m4_join, m4_joinall)
4200         (_m4_minmax, m4_set_add_all): Use _m4_foreach instead of
4201         m4_foreach.
4202         * lib/m4sugar/m4sugar.m4 (_m4_joinall): Use m4_map_args_sep
4203         instead of m4_foreach or m4_map_args.
4205         Unify _m4_foreach and _m4_map.
4206         * lib/m4sugar/m4sugar.m4 (_m4_map): Delete, merged with...
4207         (_m4_foreach): ...this.
4208         (m4_foreach, m4_map, m4_mapall, m4_map_sep, _m4_mapall_sep)
4209         (m4_map_args, m4_map_args_sep): Adjust callers.
4210         * lib/m4sugar/foreach.m4 (_m4_map): Rename...
4211         (_m4_foreach): ...to this, overwriting old definition.
4213 2008-11-04  Eric Blake  <ebb9@byu.net>
4215         Add m4_map_args_sep, undocumented for now.
4216         * lib/m4sugar/m4sugar.m4 (m4_map_args_sep): New macro.
4217         (_m4_map): Change API to cover more of m4_map*.
4218         * lib/m4sugar/foreach.m4 (_m4_map): Adjust to new API.
4219         (m4_map_args): Delete.
4220         * tests/m4sugar.at (m4@&t@_map_args and m4@&t@_curry): Enhance
4221         test.
4223         Improve m4_for performance.
4224         * lib/m4sugar/m4sugar.m4 (_m4_for): Alter API to make it easier to
4225         avoid m4_define by some clients.
4226         (m4_for): Adjust caller.
4227         * lib/m4sugar/foreach.m4 (_m4_foreach, m4_case, m4_bmatch)
4228         (_m4_cond, _m4_bpatsubsts, _m4_shiftn, m4_do, m4_reverse)
4229         (_m4_map, m4_map_args, m4_map_args_pair, _m4_list_pad)
4230         (_m4_list_cmp): Likewise.
4232 2008-11-04  Eric Blake  <ebb9@byu.net>
4234         Adjust expected output.
4235         * tests/torture.at (Missing templates): Reflect added quoting.
4236         Detected by Bob Proulx's buildbot.
4238         Reject arguments with leading =.
4239         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ARGS): Detect case of
4240         missing variable name, with fewer forks.  Quote invalid arguments
4241         in message, in case they include spaces.
4242         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS)
4243         (_AC_OUTPUT_MAIN_LOOP): Quote invalid arguments.
4244         * lib/autotest/general.m4 (AT_INIT): Likewise.
4245         * tests/base.at (configure arguments): Test this.
4246         Reported by Jeff Squyres.
4248 2008-11-04  Eric Blake  <ebb9@byu.net>
4250         Upgrade to FDL 1.3.
4251         * cfg.mk (fetch): Add fdl-1.3.texi.
4252         * .gitattributes: Likewise.
4253         * doc/autoconf.texi (GNU Free Documentation License): Point to new
4254         upstream version.
4255         * doc/Makefile.am (autoconf_TEXINFOS): Likewise.
4256         (standards_TEXINFOS): Mention current dependence on older license.
4257         * doc/fdl-1.3.texi: New upstream file.
4258         * GNUmakefile: Resync from upstream.
4259         * build-aux/announce-gen: Likewise.
4260         * build-aux/texinfo.tex: Likewise.
4262 2008-11-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4264         Point at AM_SUBST_NOTMAKE.
4265         * doc/autoconf.texi (Setting Output Variables): Add cross
4266         reference to new Automake macro AM_SUBST_NOTMAKE.
4268 2008-11-03  Paolo Bonzini  <bonzini@gnu.org>
4270         Eliminate a fork per invocation of AC_LANG_CONFTEST.
4271         * lib/autoconf/c.m4 (AC_LANG_CONFTEST(C)): Define instead of
4272         AC_LANG_SOURCE(C).
4273         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Add a comment at the
4274         top of confdefs.h, which also works around cpp deficiencies.
4275         * lib/autoconf/lang.m4 (AC_LANG_DEFINE): Define AC_LANG_CONFTEST(xyz)
4276         (AC_LANG_CONFTEST): Dispatch based on _AC_LANG.
4277         (AC_LANG_CONFTEST()): New.
4279 2008-11-03  Paolo Bonzini  <bonzini@gnu.org>
4281         Reorganize definition of languages.
4282         * lib/autoconf/c.m4 (AC_LANG(C), AC_LANG(C++), AC_LANG(Objective C),
4283         _AC_LANG_ABBREV(C), _AC_LANG_ABBREV(C++), _AC_LANG_ABBREV(Objective C),
4284         _AC_LANG_PREFIX(C), _AC_LANG_PREFIX(C++), _AC_LANG_PREFIX(Objective C)):
4285         Replace definitions with usage of AC_LANG_DEFINE.
4286         (Sections 2b, 2c): Delete.
4287         (Sections 1b, 1c): Move after section 2a.
4288         * lib/autoconf/erlang.m4 (AC_LANG(Erlang), _AC_LANG_ABBREV(Erlang),
4289         _AC_LANG_PREFIX(Erlang), AC_LANG_SOURCE(Erlang)): Replace definitions
4290         with usage of AC_LANG_DEFINE.
4291         (AC_LANG_ERLANG): Define using AU_DEFUN.
4292         * lib/autoconf/fortran.m4 (AC_LANG(Fortran), AC_LANG(Fortran 77),
4293         _AC_LANG_ABBREV(Fortran), _AC_LANG_ABBREV(Fortran 77),
4294         _AC_LANG_PREFIX(Fortran), _AC_LANG_PREFIX(Fortran 77),
4295         _AC_LANG_SOURCE(Fortran), AC_LANG_SOURCE(Fortran 77)): Replace
4296         definitions with usage of AC_LANG_DEFINE.
4297         * lib/autoconf/lang.m4 (AC_LANG_DEFINE, AC_LANG_SOURCE()): New.
4299 2008-11-03  Paolo Bonzini  <bonzini@gnu.org>
4301         Use preprocessor in cpp tests.
4302         * tests/c.at (CPP tests): Use AC_CHECK_HEADERS(..., [-]).
4304 2008-10-31  Paolo Bonzini  <bonzini@gnu.org>
4306         Rename _AC_CHECK_HEADER_OLD and _AC_CHECK_HEADER_NEW.
4307         * lib/autoconf/headers.m4 (AC_CHECK_HEADER): Adjust naming.
4308         (_AC_CHECK_HEADER_PREPROC_BODY): New name of _AC_CHECK_HEADER_OLD_BODY.
4309         (_AC_CHECK_HEADER_COMPILE_BODY): New name of _AC_CHECK_HEADER_NEW_BODY.
4310         (_AC_CHECK_HEADER_PREPROC): New name of _AC_CHECK_HEADER_OLD.
4311         (_AC_CHECK_HEADER_COMPILE): New name of _AC_CHECK_HEADER_NEW.
4312         * tests/semantics.at (AC_CHECK_HEADERS_OLD, AC_CHECK_HEADER_NEW):
4313         Give better name.
4315 2008-10-31  Eric Blake  <ebb9@byu.net>
4317         Support multiple undiverts and dumpdefs at once.
4318         * lib/m4sugar/m4sugar.m4 (m4_dumpdefs, m4_undivert): Allow extra
4319         arguments.
4320         * doc/autoconf.texi (Redefined M4 Macros) <m4_dumpdef>,
4321         <m4_undivert>: Document argument list change.
4322         * tests/m4sugar.at (m4@&t@_divert_stack, m4@&t@_dumpdef): Test
4323         them.
4325         Simplify diversion stack handling.
4326         * lib/m4sugar/m4sugar.m4 (m4_divert_stack): Use fewer macros, and
4327         avoid extra newlines.
4328         (m4_divert_stack_push): Compute location here, rather than caller.
4329         (m4_divert_push): Update caller.
4330         (m4_divert): Likewise, and also adjust current diversion name.
4331         (m4_divert_pop): Simplify rule that diversion stack must never go
4332         empty.
4333         (_m4_require_call): Bypass diversion stack when collecting
4334         required macro text.
4335         (m4_init): Set current diversion without requiring m4_init.
4336         * lib/m4sugar/m4sh.m4 (AS_INIT): Avoid too many pops.
4337         * lib/autotest/general.m4 (AT_INIT): Likewise.
4338         * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS): Schedule wrapped
4339         text to run prior to m4sugar cleanup.
4340         * doc/autoconf.texi (Text processing Macros) <m4_newline>: Mention
4341         optional argument.
4342         (Conditional constructs) <m4_ifvaln, m4_n>: Mention use of dnl.
4343         * NEWS: Undo blurb about m4_divert.
4344         * tests/m4sugar.at (m4@&t@_divert_stack): New test.
4346         Simplify expansion stack handling.
4347         * lib/m4sugar/m4sugar.m4 (m4_expansion_stack): Use fewer macros;
4348         always output 'top level'.
4349         (_m4_expansion_stack_entry): New macro, to format the string only
4350         when needed.
4351         (m4_expansion_stack_push): Only push a macro name.
4352         (m4_warn, _m4_defun_pro): Update callers.
4353         (m4_expansion_stack_pop, m4_expansion_stack_dump): Delete.
4354         (_m4_defun_epi, m4_fatal): Inline the calls.
4355         * tests/m4sugar.at (m4@&t@_expansion_stack): New test.
4357 2008-10-30  Eric Blake  <ebb9@byu.net>
4359         Better documentation of AC_CHECK_HEADER's fourth argument.
4360         * doc/autoconf.texi (Generic Headers) <AC_CHECK_HEADER>: Mention
4361         how to suppress compiler or preprocessor header check.
4362         Reported by Jeff Squyres.
4364 2008-10-30  Eric Blake  <ebb9@byu.net>
4366         Fix LINENO testsuite failure.
4367         * tests/m4sh.at (AT_DATA_LINENO): Use AS_LINENO_PREPARE, not
4368         undocumented _AS_PREPARE, and move unset earlier in script.
4370         Update LINENO documentation.
4371         * doc/autoconf.texi (Initialization Macros) <AS_INIT_GENERATED>:
4372         (Special Shell Variables) <LINENO>: Mention that LINENO support in
4373         child scripts may be broken.  Modernize example.
4375 2008-10-30  Paolo Bonzini  <bonzini@gnu.org>
4377         Do not check for $LINENO in generated scripts.
4378         * lib/m4sugar/m4sh.m4 (_AS_PREPARE): Do not call _AS_LINENO_PREPARE,
4379         and explain why.
4381 2008-10-30  Eric Blake  <ebb9@byu.net>
4383         Don't check for non-POSIX extensions in suggested tests.
4384         * lib/m4sugar/m4sh.m4 (_AS_VAR_APPEND_WORKS): Remove suggestion;
4385         we still use += if available, but should not reject shells (like
4386         dash) that don't provide it.
4387         (_AS_DETECT_SUGGESTED): Document a policy for m4sh.
4388         Reported by Paolo Bonzini.
4390 2008-10-30  Paolo Bonzini  <bonzini@gnu.org>
4392         Pass CONFIG_SHELL down to generated scripts, and re-export SHELL.
4393         * lib/m4sugar/m4sh.m4 (_AS_DETECT_BETTER_SHELL): If proceeding
4394         with a given CONFIG_SHELL, move it to SHELL.
4395         (AS_INIT_GENERATED): Re-export SHELL.
4397 2008-10-30  Eric Blake  <ebb9@byu.net>
4399         Work around Solaris /bin/sh case bug.
4400         * lib/m4sugar/m4sh.m4 (_AS_CASE, _AS_CASE_DEFAULT): Always provide
4401         a non-empty command list.
4402         (AS_CASE): Always guarantee that a case will match.
4403         * doc/autoconf.texi (Limitations of Builtins) <case>: Document the
4404         Solaris bug, and mention AS_CASE.
4406 2008-10-30  Paolo Bonzini  <bonzini@gnu.org>
4408         Require _AS_CR_PREPARE where appropriate.
4409         * lib/m4sugar/m4sh.m4 (_AS_PREPARE): Call _AS_CR_PREPARE.
4410         (AS_PREPARE): Require _AS_CR_PREPARE.
4412         Avoid walking the entire PATH when looking for a better shell.
4413         * lib/m4sugar/m4sh.m4 (_AS_SHELL_SANITIZE): Test shell characteristics
4414         as the PATH is walked.
4416         Add third argument to _AS_PATH_WALK
4417         * lib/m4sugar/m4sh.m4 (_AS_SHELL_SANITIZE): Do not call _AS_CR_PREPARE.
4418         (_AS_PATH_WALK): Add third optional argument.
4420         Trim down the length of the shell function test.
4421         * lib/m4sugar/m4sh.m4 (_AS_SHELL_FN_WORK): Condense.
4423 2008-10-29  Eric Blake  <ebb9@byu.net>
4425         Fix LINENO detection to work around bash and pdksh limitations.
4426         * lib/m4sugar/m4sh.m4 (_AS_LINENO_WORKS): Enhance the test, so
4427         that we can choose which of two tests to trust.
4428         (_AS_RUN): Set flag when alternate shell is running.
4429         (_AS_DETECT_EXPAND): New macro.
4430         (_AS_DETECT_BETTER_SHELL): Use it to massage LINENO tests.
4432 2008-10-29  Eric Blake  <ebb9@byu.net>
4434         Mention proper fix for zsh users.
4435         * lib/m4sugar/m4sh.m4 (_AS_DETECT_BETTER_SHELL): Recommend zsh
4436         version known to work.
4437         Suggested by Paolo Bonzini.
4439         Document current beta-quality status.
4440         * configure.ac: Reflect fact that change to git-version-gen
4441         produces -, but not always a letter, on non-release builds.
4442         * BUGS: Mention known issues.
4443         * lib/m4sugar/m4sh.m4 (_AS_DETECT_BETTER_SHELL): Ask for help in
4444         debugging platforms with deficient shells.
4446 2008-10-29  Eric Blake  <ebb9@byu.net>
4448         Alter signature of AS_INIT_GENERATED.
4449         * lib/m4sugar/m4sh.m4 (AS_INIT_GENERATED): Add parameters, and
4450         manage here-doc and chmod in place.  This also allows future
4451         changes for optimizing the child via diversion/m4_wrap magic.
4452         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Update
4453         caller.
4454         * doc/autoconf.texi (Initialization Macros) <AS_INIT_GENERATED>:
4455         Update the documentation.
4457 2008-10-29  Eric Blake  <ebb9@byu.net>
4459         Use _m4_stack_reverse in m4_set.
4460         * lib/m4sugar/m4sugar.m4 (_m4_set_contents_1)
4461         (_m4_set_contents_2): Rewrite to share _m4_stack_reverse
4462         implementation.
4463         (m4_set_contents, m4_set_foreach, m4_set_list, m4_set_listc)
4464         (m4_set_map): Adjust callers to new API.
4466         Add m4_stack_foreach_sep.
4467         * lib/m4sugar/m4sugar.m4 (m4_stack_foreach_sep)
4468         (m4_stack_foreach_sep_lifo): New macros.
4469         (_m4_stack_reverse): Adjust prototype, to support it.
4470         (m4_copy): Use fewer macros.
4471         * tests/m4sugar.at (m4@&t@_stack_foreach): Rename...
4472         (m4@&t@_stack): ...and add m4_stack_foreach_sep tests.
4474 2008-10-29  Bruno Haible  <bruno@clisp.org>
4476         Mention Sun WorkShop 6.2 OpenMP bug.
4477         * doc/autoconf.texi (AC_OPENMP): Document portability pitfall.
4479 2008-10-29  Paolo Bonzini  <bonzini@gnu.org>
4481         Rewrite handling of diversion and expansion stack.
4482         * NEWS: Document stricter requirement on m4_init.
4483         * lib/m4sugar/m4sugar.m4 (m4_divert_stack): New, replacing
4484         _m4_divert_n_stack.
4485         (_m4_divert_stack_push): New.
4486         (m4_divert): Use _m4_divert_stack_push and replace m4_define with
4487         m4_popdef.
4488         (m4_divert_push): Use _m4_divert_stack_push.
4489         (m4_divert_pop): Use m4_divert_stack instead of _m4_divert_n_stack,
4490         pop _m4_divert_stack instead of m4_divert_stack.
4491         (m4_expansion_stack): New.  Update comment above it.
4492         (m4_expansion_stack_push, m4_expansion_stack_pop): Work on
4493         _m4_expansion_stack instead of m4_expansion_stack.
4494         (m4_expansion_stack_dump): Check presence of _m4_expansion_stack
4495         instead of m4_expansion_stack.  Use m4_expansion_stack's expansion
4496         instead of the definition, and compensate for the trailing newline
4497         in the expansion.
4498         (m4_warn, _m4_defun_pro, _m4_defun_epi): Check presence of
4499         _m4_expansion_stack instead of m4_expansion_stack.
4500         (m4_newline): Expand first argument after the newline.
4501         (m4_init): Use m4_divert_stack instead of _m4_divert_n_stack,
4502         * tests/m4sugar.at (m4_append, m4_text_wrap): Invoke m4_init.
4503         * tests/tools.at (whitespace in file names, the empty token): Likewise.
4505 2008-10-28  Eric Blake  <ebb9@byu.net>
4507         Reduce forks while searching for better shell.
4508         * lib/m4sugar/m4sh.m4 (_AS_DETECT_REQUIRED)
4509         (_AS_DETECT_SUGGESTED): No need to provide extra subshell; _AS_RUN
4510         already does the job.
4511         (_AS_DETECT_BETTER_SHELL): Simplify AS_EXIT when not run in a trap
4512         0 context.
4514         Undo needless efforts to protect $2 in $2_t.
4515         * lib/autoconf/types.m4 (_AC_TYPE_INT_BODY)
4516         (_AC_TYPE_UNSIGNED_INT_BODY): Reduce extra quoting.
4518 2008-10-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4520         Fix parallel test execution output lossage.
4521         * lib/autotest/general.m4 (_AT_CHECK): Truncate files to hold
4522         standard output and standard error before the test, use append
4523         mode for writing.
4524         * THANKS: Update.
4525         Caught by Bob Proulx' build daemons, analysis and suggested fix
4526         by Stéphane Chazelas.
4528 2008-10-28  Eric Blake  <ebb9@byu.net>
4530         Use m4_map_args in more places.
4531         * lib/m4sugar/m4sugar.m4 (m4_defn, m4_dumpdef, m4_popdef)
4532         (m4_undefine, m4_combine): Use m4_map_args, rather than
4533         m4_foreach.
4535 2008-10-28  Eric Blake  <ebb9@byu.net>
4537         Override m4 1.4.x dumpdef, as it breaks autom4te.
4538         * lib/m4sugar/m4sugar.m4 (m4_dumpdef): New implementation.
4539         (m4_copy): Formatting touchup.
4540         * doc/autoconf.texi (Redefined M4 Macros) <m4_dumpdef>: Mention
4541         semantic differences as well as m4_dumpdefs.
4542         * NEWS: Likewise.
4543         * tests/m4sugar.at (m4@&t@_dumpdef): New test.
4545 2008-10-28  Eric Blake  <ebb9@byu.net>
4547         Allow m4sugar to be used without autom4te, such as in bison.
4548         * lib/m4sugar/m4sugar.m4 (m4_text_wrap, m4_qlen): Document that
4549         alternate escape sequences can be used.
4550         (m4_text_box): Likewise.  Don't output quadrigraphs.
4551         (m4_qdelta): Delete unused macro.
4553 2008-10-28  Paolo Bonzini  <bonzini@gnu.org>
4555         Add m4_stack_foreach and m4_stack_foreach_lifo.
4556         * lib/m4sugar/m4sugar.m4 (_m4_stack_reverse): New from _m4_copy.
4557         (m4_stack_foreach, m4_stack_foreach_lifo): New.
4558         (m4_copy): Use m4_stack_foreach and m4_curry.
4559         (_m4_dumpdefs_down, _m4_dumpdefs_up): Remove.
4560         (m4_dumpdefs): Rewrite using m4_stack_foreach_lifo.
4561         * tests/m4sugar.at (m4_stack_foreach): New test.
4563 2008-10-28  Paolo Bonzini  <bonzini@gnu.org>
4565         use a shell function for AC_TYPE_INTx_T
4566         * lib/autoconf/types.m4 (_AC_TYPE_INT_BODY, _AC_TYPE_UNSIGNED_INT_BODY):
4567         New.
4568         (_AC_TYPE_INT, _AC_TYPE_UNSIGNED_INT): Define and use a shell function.
4570 2008-10-28  Paolo Bonzini  <bonzini@gnu.org>
4572         * lib/autoconf/general.m4 (AC_CHECK_DECL): Fix AS_ESCAPE usage.
4573         * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_MONGREL,
4574         _AC_CHECK_HEADER_NEW): Likewise.
4575         * lib/autoconf/types.m4 (_AC_CHECK_TYPE_NEW, AC_CHECK_MEMBER): Likewise.
4577 2008-10-28  Paolo Bonzini  <bonzini@gnu.org>
4579         * lib/autoconf/types.m4 (_AC_CHECK_MEMBER_BODY): New.
4580         (AC_CHECK_MEMBER): Define and use a shell function.
4582 2008-10-27  Eric Blake  <ebb9@byu.net>
4584         Prefer m4_fatal over AC_FATAL.
4585         * lib/autoconf/types.m4 (AC_CHECK_SIZEOF, AC_CHECK_ALIGNOF)
4586         (AC_CHECK_MEMBER): Use non-obsolete macro name.
4587         * lib/autoconf/fortran.m4 (_AC_LIST_MEMBER_IF): Likewise.
4588         * lib/autoconf/general.m4 (AC_REQUIRE_AUX_FILE, AC_SUBST):
4589         Likewise.
4590         * lib/autoconf/lang.m4 (_AC_LANG_DISPATCH): Likewise.
4591         * lib/autoconf/status.m4 (_AC_CONFIG_DEPENDENCY_DEFAULT)
4592         (_AC_CONFIG_UNIQUE, _AC_CONFIG_REGISTER_DEST): Likewise.
4594 2008-10-27  Eric Blake  <ebb9@byu.net>
4596         Avoid raw carriage return in scripts.
4597         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE): Generate CR
4598         via tr, rather than with literal byte.
4599         * THANKS: Update.
4600         Reported by Steven R. Loomis; patch suggested by Thomas Dickey.
4602 2008-10-27  Eric Blake  <ebb9@byu.net>
4604         Use AS_VAR_ARITH.
4605         * lib/autotest/general.m4 (at_func_arith): Delete; replace all
4606         clients with AS_VAR_ARITH instead.
4607         * lib/autoconf/general.m4 (_AC_COMPUTE_INT_COMPILE): Use new
4608         macro.
4609         * lib/autoconf/programs.m4 (_AC_FEATURE_CHECK_LENGTH): Likewise.
4610         * tests/torture.at (Torturing config.status): Likewise.
4611         * tests/tools.at (autom4te --force): Likewise.
4613         Add AS_VAR_ARITH.
4614         * lib/m4sugar/m4sh.m4 (_AS_VAR_ARITH_PREPARE, _AS_VAR_ARITH_WORKS)
4615         (AS_VAR_ARITH): New macros.
4616         (_AS_PREPARE, AS_PREPARE): Emit preparation.
4617         * tests/m4sh.at (AS@&t@_VAR_ARITH): New test.
4618         * doc/autoconf.texi (Polymorphic Variables) <AS_VAR_ARITH>:
4619         Document new macro.
4620         (Limitations of Usual Tools) <expr>: Mention portability problem
4621         if first argument starts with -.
4622         (Shell Substitutions) <$((expression))>: Mention it.
4623         * NEWS: Likewise.
4625 2008-10-27  Eric Blake  <ebb9@byu.net>
4627         Use read, rather than `cat`, for safe one-line files.
4628         * lib/autotest/general.m4 (AT_CLEANUP): Avoid a fork, since it is
4629         known that the file has only one line and no \.
4630         * lib/autoconf/general.m4 (_AC_COMPUTE_INT_RUN): Likewise.
4632 2008-10-27  Paolo Bonzini  <bonzini@gnu.org>
4634         * lib/autoconf/general.m4 (_AC_COMPUTE_INT_COMPILE,
4635         _AC_COMPUTE_INT_RUN): Add IF-SUCCESS argument.
4636         (_AC_COMPUTE_INT_BODY): New.
4637         (AC_COMPUTE_INT): Define and use a shell function.
4639 2008-10-27  Paolo Bonzini  <bonzini@gnu.org>
4641         * lib/autoconf/types.m4 (_AC_CHECK_TYPE_NEW_BODY): Extract
4642         test body here.  Move head comment of _AC_CHECK_TYPE_NEW here.
4643         (_AC_CHECK_TYPE_NEW): Define a shell function and call it.
4645 2008-10-27  Paolo Bonzini  <bonzini@gnu.org>
4647         * lib/autoconf/general.m4 (_AC_CHECK_DECL_BODY): New.
4648         (AC_CHECK_DECL): Use a shell function.
4650 2008-10-27  Paolo Bonzini  <bonzini@gnu.org>
4652         * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_OLD,
4653         _AC_CHECK_HEADER_NEW): Use a shell function.
4655 2008-10-25  Eric Blake  <ebb9@byu.net>
4657         Track recent copyright assignments.
4658         * AUTHORS: Update.
4660 2008-10-25  Paolo Bonzini  <bonzini@gnu.org>
4661         and Eric Blake  <ebb9@byu.net>
4663         Use a shell function for _AC_CHECK_HEADER_MONGREL.
4664         * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_MONGREL_BODY): New
4665         macro.
4666         (_AC_CHECK_HEADER_MONGREL): Use a shell function.
4668 2008-10-25  Eric Blake  <ebb9@byu.net>
4670         Simplify _AS_PREPARE handling of functions.
4671         * lib/m4sugar/m4sh.m4 (AS_REQUIRE_SHELL_FN): Factor...
4672         (_AS_REQUIRE_SHELL_FN): ...into new helper macro.
4673         (_AS_PREPARE): Temporarily redefine AS_REQUIRE_SHELL_FN to make
4674         this task easier.
4675         (_AS_LINENO_PREPARE): Make more efficient.
4676         (_AS_MKDIR_P_PREPARE): Simplify use in _AS_PREPARE.
4677         (_AS_UNSET_PREPARE): Avoid blank newline.
4678         (AS_INIT): Emit as_func_unset alongside other functions.
4680 2008-10-25  Eric Blake  <ebb9@byu.net>
4682         Document AS_EXIT.
4683         * doc/autoconf.texi (Common Shell Constructs) <AS_EXIT>: Document
4684         this macro.
4685         (Limitations of Builtins): Mention AS_EXIT.
4686         * NEWS: Mention it.
4688         Use AS_EXIT in autoconf.as.
4689         * bin/autoconf.as: Consistently use AS_EXIT.
4691 2008-10-24  Eric Blake  <ebb9@byu.net>
4693         Fix m4 underquoting in AC_PROG_INSTALL.
4694         * lib/autoconf/programs.m4 (AC_PROG_INSTALL): Produce accurate
4695         character ranges.
4697         Speed up AC_CHECK_HEADER.
4698         * lib/autoconf/headers.m4 (AC_CHECK_HEADER): Factor out $@.
4700 2008-10-24  Paolo Bonzini  <bonzini@gnu.org>
4701         and Eric Blake  <ebb9@byu.net>
4703         Use a shell function for AC_CHECK_FUNC.
4704         * lib/autoconf/functions.m4 (_AC_CHECK_FUNC_BODY): New macro.
4705         (AC_CHECK_FUNC): Use a shell function.
4706         * lib/autoconf/c.m4 (AC_LANG_SOURCE(C)): Reduce number of forks.
4708 2008-10-24  Eric Blake  <ebb9@byu.net>
4710         Work around fact that gnulib-tool doesn't use m4_copy.
4711         * lib/autoconf/general.m4 (AC_LIBOBJ, AC_LIBSOURCES): Defun, not
4712         define, so that an initial location is present, to account for
4713         fact that gnulib-tool pushes another AC_DEFUN'd macro on top.
4715         Make m4_defun_init more robust.
4716         * lib/m4sugar/m4sugar.m4 (m4_defun_init): Handle indirect macro
4717         names, and correct number of arguments.
4718         (m4_copy): Also set up location of the copy.
4719         (m4_defun): When copied, use current macro name, not original.
4720         * tests/m4sugar.at (m4@&t@_require: one-shot initialization):
4721         Update test.
4723         Optimize clients of AS_REQUIRE.
4724         * lib/m4sugar/m4sugar.m4 (m4_defun): Add undocumented third
4725         argument.
4726         (m4_defun_init): New undocumented macro.
4727         * lib/m4sugar/m4sh.m4 (_AS_ECHO_LOG, AS_MESSAGE, AS_BASENAME)
4728         (_AS_DIRNAME_EXPR, AS_DIRNAME, AS_ECHO, AS_ECHO_N, AS_TEST_X)
4729         (AS_LN_S, AS_MKDIR_P, _AS_PATH_WALK, AS_VERSION_COMPARE)
4730         (AS_TR_SH, AS_TR_CPP, AS_VAR_APPEND, AS_VAR_PUSHDEF): Use it to
4731         simplify these macros once the one-shot initialization is
4732         complete.
4733         * tests/m4sugar.at (m4@&t@_require: one-shot initialization): New
4734         test.
4736         Improve m4_copy.
4737         * lib/m4sugar/m4sugar.m4 (m4_copy): Add second implementation for
4738         public use.
4739         (_m4_copy): New macro, which preserves pushdef stacks.
4740         (_m4_defun_pro_outer): Bypass it, for speed.
4741         (m4_init): Bypass new implementation, since it breaks on m4_defn.
4742         * bin/autoupdate.in (handle_autoconf_macros): Likewise.
4743         * lib/autoconf/general.m4 (AC_PREREQ): Undefine before redefining,
4744         now that m4_copy checks this.
4745         * doc/autoconf.texi (Redefined M4 Macros) <m4_copy>: Document
4746         this, as well as m4_rename.
4747         * lib/autoconf/autoconf.m4 (m4_copy): Temporarily redefine when
4748         renaming builtins, since it breaks on m4_ifdef.
4749         * NEWS: Likewise.
4750         * tests/m4sugar.at (m4@&t@_defn): Enhance test.
4752 2008-10-24  Eric Blake  <ebb9@byu.net>
4754         AC_FUNC_GETGROUPS: Revert regression.
4755         * lib/autoconf/functions.m4 (AC_FUNC_GETGROUPS): Only set
4756         ac_cv_func_getgroups_works=no when it is not available.
4758 2008-10-23  Eric Blake  <ebb9@byu.net>
4760         Whitespace cleanup.
4761         * lib/autoconf/fortran.m4: Consistently use tabs.
4763 2008-10-23  Chikama Masaki  <masaki.chikama@gmail.com>  (tiny change)
4765         For gfortran on sh, ignore -little.
4766         * lib/autoconf/fortran.m4 (_AC_FC_LIBRARY_LDFLAGS): Add -little to
4767         list of ignored arguments.
4768         * THANKS: Update.
4770 2008-10-23  Paolo Bonzini  <bonzinI@gnu.org>
4772         Eliminate empty lines after AC_*_IFELSE.
4773         * lib/autoconf/general.m4 (_AC_PREPROC_IFELSE, _AC_COMPILE_IFELSE,
4774         _AC_LINK_IFELSE, _AC_RUN_IFELSE): Add a dnl at end.
4776 2008-10-23  Paolo Bonzini  <bonzinI@gnu.org>
4778         Avoid a fork in _AC_RUN_LOG and _AC_RUN_LOG_STDERR
4779         * lib/autoconf/general.m4 (_AC_RUN_LOG, _AC_RUN_LOG_STDERR):
4780         Return a boolean status code based on $ac_status.
4782 2008-10-23  Paolo Bonzini  <bonzinI@gnu.org>
4784         Ensure actions can look at conftest* files.
4785         * lib/autoconf/general.m4 (_AC_PREPROC_IFELSE_BODY,
4786         _AC_COMPILE_IFELSE_BODY, _AC_LINK_IFELSE_BODY, _AC_RUN_IFELSE_BODY):
4787         Move rm commands, except IPA files and Apple debug symbols...
4788         (_AC_PREPROC_IFELSE, _AC_COMPILE_IFELSE, _AC_LINK_IFELSE,
4789         _AC_RUN_IFELSE): ...in here.
4790         * tests/compile.at: Add regression test.
4792 2008-10-23  Eric Blake  <ebb9@byu.net>
4794         Remove excess dnl from m4sh.
4795         * lib/m4sugar/m4sh.m4 (_AS_DETECT_BETTER_SHELL, _AS_PREPARE)
4796         (_AS_SHELL_FN_WORK, _AS_SHELL_SANITIZE, AS_IF, _AS_ECHO_LOG)
4797         (AS_MESSAGE, AS_ERROR, AS_BASENAME, _AS_BASENAME_PREPARE)
4798         (_AS_DIRNAME_EXPR, AS_DIRNAME, _AS_DIRNAME_PREPARE, AS_ECHO)
4799         (AS_ECHO_N, AS_TEST_X, AS_EXECUTABLE_P, _AS_ME_PREPARE)
4800         (_AS_LINENO_PREPARE, AS_LN_S, AS_MKDIR_P, _AS_PATH_WALK)
4801         (AS_SET_CATFILE, AS_HELP_STRING, AS_TMPDIR, AS_VERSION_COMPARE)
4802         (_AS_TR_SH_PREPARE, AS_TR_SH, _AS_TR_CPP_PREPARE, AS_TR_CPP)
4803         (_AS_TR_PREPARE, AS_VAR_APPEND, AS_VAR_PUSHDEF)
4804         (AS_INIT_GENERATED): Use fewer dnl in m4sh macro bodies.
4806 2008-10-23  Paolo Bonzini  <bonzini@gnu.org>
4807         and Eric Blake  <ebb9@byu.net>
4809         Use a shell function for _AC_RUN_IFELSE.
4810         * lib/autoconf/general.m4 (_AC_RUN_IFELSE_BODY): New macro.
4811         (_AC_RUN_IFELSE): Use a shell function.
4812         (_AC_RUN_LOG): Avoid subshell for logging.
4814 2008-10-23  Eric Blake  <ebb9@byu.net>
4816         Formatting tweak: balance () with m4sh case statements.
4817         * lib/m4sugar/m4sh.m4 (_AS_DETECT_BETTER_SHELL)
4818         (_AS_SHELL_SANITIZE, _AS_ECHO_N_PREPARE, _AS_ECHO_PREPARE)
4819         (AS_SET_CATFILE, _AS_TEST_PREPARE): Add strategic shell comments.
4820         (_AS_CASE, _AS_CASE_DEFAULT, AS_CASE): Rearrange newlines, to
4821         allow output of strategic shell comments.
4822         (AS_VERSION_COMPARE): Use AS_CASE.
4823         * tests/m4sh.at (AS@&t@_IF and AS@&t@_CASE): Enhance test.
4825 2008-10-22  Jim Meyering  <meyering@redhat.com>
4827         AC_FUNC_GETGROUPS: always define $ac_cv_func_getgroups_works
4828         * lib/autoconf/functions.m4 (AC_FUNC_GETGROUPS): Always define
4829         the shell variable, $ac_cv_func_getgroups_works.  Otherwise, if
4830         it is set to "yes" in the environment and configure is run on
4831         a system like mingw that lacks the getgroups function, it would
4832         mistakenly define HAVE_GETGROUPS.  Reported by Simon Josefsson in
4833         <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/15354>.
4835 2008-10-22  Paolo Bonzini  <bonzini@gnu.org>
4836         and Eric Blake  <ebb9@byu.net>
4838         Use a shell function for _AC_LINK_IFELSE.
4839         * lib/autoconf/general.m4 (_AC_LINK_IFELSE_BODY): New macro.
4840         (_AC_LINK_IFELSE): Use a shell function.
4842 2008-10-22  Eric Blake  <ebb9@byu.net>
4844         Fix autoconf logging commands.
4845         * lib/autoconf/general.m4 (AC_MSG_RESULT_UNQUOTED, _AC_EVAL)
4846         (_AC_EVAL_STDERR, AC_RUN_LOG): Respect as_lineno.
4847         (_AC_DO_ECHO): Likewise, and use fewer dnl.
4848         (_AC_RUN_LOG_STDERR): Avoid subshell for logging.
4850 2008-10-22  Eric Blake  <ebb9@byu.net>
4852         Fix testsuite failure.
4853         * tests/mktests.sh (ac_exclude_list): Don't generate test for
4854         AC_REQUIRE_SHELL_FN.
4856 2008-10-21  Eric Blake  <ebb9@byu.net>
4858         Improve wording related to automake and autotest.
4859         * doc/autoconf.texi (Making testsuite Scripts): Clarify wording in
4860         relation to automake.  Mention dependency on package.m4.
4861         Consolidate examples.  Define AUTOM4TE.
4862         * THANKS: Update.
4863         Reported by William Pursell.
4865 2008-10-21  Eric Blake  <ebb9@byu.net>
4867         Allow AS_VAR_SET_IF in shell lists.
4868         * lib/m4sugar/m4sh.m4 (AS_VAR_SET_IF): Allow continuation of
4869         line.
4870         * lib/autoconf/general.m4 (AC_CACHE_VAL): Supply newline no longer
4871         provided by AS_VAR_SET_IF.
4872         * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_MONGREL): Adjust
4873         clients.
4874         * lib/autoconf/libs.m4 (AC_SEARCH_LIBS): Likewise.
4875         * tests/m4sh.at (AS@&t@_VAR basics): Enhance test.
4877         Allow AS_VAR_IF in shell lists.
4878         * lib/m4sugar/m4sh.m4 (AS_VAR_IF): Allow continuation of line.
4879         * lib/autoconf/functions.m4 (AC_CHECK_FUNC): Adjust clients.
4880         * lib/autoconf/general.m4 (AC_CHECK_FILE, AC_CHECK_DECL):
4881         Likewise.
4882         * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_MONGREL)
4883         (_AC_CHECK_HEADER_NEW, _AC_CHECK_HEADER_OLD)
4884         (_AC_CHECK_HEADER_DIRENT): Likewise.
4885         * lib/autoconf/libs.m4 (AC_CHECK_LIB): Likewise.
4886         * lib/autoconf/types.m4 (_AC_CHECK_TYPE_NEW, AC_CHECK_MEMBER):
4887         Likewise.
4888         * tests/m4sh.at (AS@&t@_VAR basics): Enhance test.
4890         Allow AS_CASE in shell lists.
4891         * lib/m4sugar/m4sh.m4 (AS_CASE): Always execute test, in case of
4892         side effects.  Allow continuation of script on same line as esac.
4893         * lib/autoconf/c.m4 (AC_PROG_CC_STDC): Adjust client.
4894         * tests/m4sh.at (AS@&t@_IF and AS@&t@_CASE): Enhance test.
4895         * NEWS: Document the subtle change.
4897         Allow AS_IF in shell lists.
4898         * lib/m4sugar/m4sh.m4 (AS_IF): Always execute test, in case of
4899         side effects.  Allow continuation of script on same line as fi.
4900         (_AS_DETECT_BETTER_SHELL): Adjust clients.
4901         (AS_VAR_IF, AS_VAR_SET_IF): For now, supply newline no longer
4902         given by AS_IF.
4903         * lib/autoconf/c.m4 (_AC_PROG_PREPROC_WORKS_IFELSE): Likewise.
4904         * lib/autoconf/general.m4 (_AC_ENABLE_IF): Likewise.
4905         (AC_EGREP_CPP, _AC_RUN_IFELSE): Adjust client.
4906         * lib/autoconf/libs.m4 (AC_SEARCH_LIBS): Likewise.
4907         * doc/autoconf.texi (Common Shell Constructs) <AS_IF>: Fix typo.
4908         (Polymorphic Variables): Move mention of dnl to the only two
4909         AS_VAR functions that need it.
4911 2008-10-21  Paolo Bonzini  <bonzini@gnu.org>
4912         and Eric Blake  <ebb9@byu.net>
4914         Use a shell function for _AC_COMPILE_IFELSE.
4915         * lib/autoconf/general.m4 (_AC_COMPILE_IFELSE_BODY): New macro.
4916         (_AC_COMPILE_IFELSE): Use a shell function.
4918 2008-10-21  Eric Blake  <ebb9@byu.net>
4920         Use AS_VAR_APPEND.
4921         * lib/autoconf/functions.m4 (AC_CHECK_FUNCS_ONCE): Use new macro.
4922         * lib/autoconf/general.m4 (_AC_INIT_PREPARE)
4923         (_AC_LIBOBJS_NORMALIZE): Likewise.
4924         * lib/autoconf/headers.m4 (AC_CHECK_HEADERS_ONCE): Likewise.
4925         * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS)
4926         (_AC_OUTPUT_CONFIG_STATUS, _AC_OUTPUT_MAIN_LOOP): Likewise.
4927         * lib/autotest/general.m4 (AT_INIT): Likewise.
4929         Add AS_VAR_APPEND.
4930         * lib/m4sugar/m4sh.m4 (_AS_VAR_APPEND_PREPARE)
4931         (_AS_VAR_APPEND_WORKS, AS_VAR_APPEND): New macros.
4932         (AS_PREPARE, _AS_PREPARE): Emit preparation.
4933         * tests/m4sh.at (AS@&t@_VAR_APPEND): New test.
4934         * doc/autoconf.texi (Polymorphic Variables) <AS_VAR_APPEND>:
4935         Document new macro.
4936         <AS_VAR_SET>: Mention ramification of `""` rules.
4937         * NEWS: Mention new macro.
4939 2008-10-21  Paolo Bonzini  <bonzini@gnu.org>
4940         and Eric Blake  <ebb9@byu.net>
4942         Use a shell function for _AC_PREPROC_IFELSE.
4943         * lib/autoconf/general.m4 (_AC_PREPROC_IFELSE_BODY): New macro.
4944         (_AC_PREPROC_IFELSE): Use a shell function.
4945         * lib/m4sugar/m4sh.m4 (AS_REQUIRE): Factor for faster execution.
4946         (AS_REQUIRE_SHELL_FN): Bypass AS_REQUIRE if function has already
4947         been provided.
4949 2008-10-21  Eric Blake  <ebb9@byu.net>
4951         Add banners to generated files.
4952         * lib/m4sugar/m4sh.m4 (_AS_SHELL_SANITIZE): Use m4_text_box for
4953         existing banner.
4954         (AS_INIT): Add new banners at strategic points.
4955         * lib/autoconf/general.m4 (AC_INIT): Alter banner location, and
4956         make consistent with other banners.
4957         * lib/autotest/general.m4 (AT_INIT): Make banners consistent.
4959 2008-10-20  Paolo Bonzini  <bonzini@gnu.org>
4961         Add AC_REQUIRE_SHELL_FN and the SHELL_FN diversion.
4962         * lib/autoconf/general.m4 (AC_REQUIRE_SHELL_FN): New.
4963         (m4_divert(SHELL_FN)): New.
4965 2008-10-20  Eric Blake  <ebb9@byu.net>
4967         Avoid unportable use of echo in testsuite.
4968         * tests/m4sh.at (AS@&t@_VAR basics): Use AS_ECHO, since string
4969         contains backslash.
4971 2008-10-18  Paolo Bonzini  <bonzini@gnu.org>
4973         Make sure that nested AS_REQUIRE do not lose the desired diversion.
4974         * lib/m4sugar/m4sh.m4 (AS_REQUIRE): Expand _m4_divert_desired before
4975         passing it to m4_divert_require, so that its content is not used
4976         anymore.
4977         * tests/m4sh.at (Nested AS_REQUIRE): New testcase.
4979 2008-10-18  Eric Blake  <ebb9@byu.net>
4981         Document bugs in { } handling.
4982         * doc/autoconf.texi (Limitations of Builtins): Mention bug on
4983         empty list.
4985         Fix some testsuite failures introduced two days ago.
4986         * tests/m4sh.at (Nested AS@&t@_REQUIRE_SHELL_FN)
4987         (AS@&t@_REQUIRE_SHELL_FN and m4@&t@_require): Adjust to changed
4988         API.
4989         Reported by Ralf Wildenhues.
4991 2008-10-18  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4993         Show how to extract single substitutions from config.status.
4994         * doc/autoconf.texi (config.status Invocation): Show example
4995         using `--file=-'.
4997 2008-10-17  Eric Blake  <ebb9@byu.net>
4999         Add m4_curry.
5000         * lib/m4sugar/m4sugar.m4 (m4_curry, _m4_curry): New macros.
5001         * tests/m4sugar.at (m4@&t@_map_args): Rename...
5002         (m4@&t@_map_args and m4@&t@_curry): ...and add currying tests.
5003         * doc/autoconf.texi (Looping constructs) <m4_map_args>: Document
5004         currying as a way to add parameters.
5005         (Evaluation Macros) <m4_curry>: Document the new macro.
5006         * NEWS: Likewise.
5008         Improve suggested test filtering.
5009         * lib/m4sugar/m4sh.m4 (_AS_DETECT_SUGGESTED_PRUNE): New macro,
5010         extracted from...
5011         (_AS_DETECT_BETTER_SHELL): ...here, to use faster API.  No need to
5012         check for an empty required set.
5014         Add m4_set_map.
5015         * lib/m4sugar/m4sugar.m4 (m4_set_foreach): New macro.
5016         * tests/m4sugar.at (m4@&t@_set): Enhance test.
5017         * doc/autoconf.texi (Set manipulation Macros) <m4_set_map>:
5018         Document it.
5019         * NEWS: Likewise.
5021         Document m4_map_args.
5022         * lib/m4sugar/m4sugar.m4 (m4_transform, m4_transform_pair):
5023         Rename...
5024         (m4_map_args, m4_map_args_pair): ...to these names, and document.
5025         (m4_version_unletter): Use the interface.
5026         * lib/m4sugar/foreach.m4 (m4_map_args, m4_map_args_pair)
5027         (_m4_map_args_, _m4_map_args_pair_, _m4_map_args_pair_end):
5028         Perform same renames.
5029         * lib/m4sugar/m4sh.m4 (AS_CASE, AS_IF): Adjust callers.
5030         * tests/m4sugar.at (m4@&t@_map_args): New test.
5031         (recursion): Adjust caller.
5032         * tests/m4sh.at (AS@&t@_IF and AS@&t@_CASE): Likewise.
5033         * doc/autoconf.texi (Looping constructs) <m4_map_args>: Document
5034         this interface.
5035         * NEWS: Mention the new macros.
5037 2008-10-17  Eric Blake  <ebb9@byu.net>
5039         Reduce vertical whitespace in configure.
5040         * lib/autoconf/general.m4 (AC_INIT): Silence newline output during
5041         m4 side effect initializations.
5042         * lib/m4sugar/m4sh.m4 (AS_PREPARE): Likewise.
5044 2008-10-17  Eric Blake  <ebb9@byu.net>
5046         Document AS_VAR interfaces.
5047         * doc/autoconf.texi (Programming in M4sh): M4sh is now prime-time.
5048         (Polymorphic Variables): New node.
5049         * NEWS: Update accordingly.
5051         Test AS_VAR interfaces.
5052         * tests/m4sh.at (AS@&t@_VAR): New test.
5053         * lib/m4sugar/m4sh.m4 (AS_VAR_PUSHDEF): Force expansion of
5054         _AS_TR_SH_PREPARE at top level, rather than argument collection.
5055         (AS_TR_SH): Support command substitution.
5057         Add AS_VAR_COPY.
5058         * lib/m4sugar/m4sh.m4 (AS_VAR_COPY): New macro.
5059         (AS_VAR_IF): Use it, instead of the broken AS_VAR_GET.
5060         * lib/autoconf/general.m4 (AC_CACHE_CHECK): Likewise.
5061         * lib/autoconf/libs.m4 (AC_SEARCH_LIBS): Likewise.
5062         * lib/autotest/general.m4 (_AT_FINISH): Likewise.
5064         Sort AS_VAR_* interfaces.
5065         * lib/m4sugar/m4sh.m4 (AS_VAR_GET): Reduce output to one line.
5066         (AS_VAR_TEST_SET, AS_VAR_SET, AS_VAR_SET_IF, AS_VAR_POPDEF): Sort,
5067         no code changes.
5069 2008-10-16  Eric Blake  <ebb9@byu.net>
5071         Allow comments before functions emitted by m4sh.
5072         * lib/m4sugar/m4sh.m4 (AS_REQUIRE_SHELL_FN): Add comment
5073         argument.  Supply closing comment, to ease readability.
5074         (_AS_MKDIR_P_PREPARE): Adjust caller.
5075         (_AS_UNSET_PREPARE): Add comment.
5077         Add AS_FUNCTION_DESCRIBE.
5078         * lib/m4sugar/m4sh.m4 (AS_FUNCTION_DESCRIBE): New macro.
5079         * lib/autotest/general.m4 (AT_INIT): Use it.
5081 2008-10-16  Eric Blake  <ebb9@byu.net>
5083         Speed up m4_qlen with caching.
5084         * lib/m4sugar/m4sugar.m4 (_m4_qlen): Renamed from old m4_qlen.
5085         (m4_qlen): Cache results for speed.
5087 2008-10-16  Paolo Bonzini  <bonzini@gnu.org>
5089         Add a testcase using more then one language.
5090         * tests/compile.at (Multiple languages): New test.
5092 2008-10-16  Paolo Bonzini  <bonzini@gnu.org>
5094         Fix Libtool's config.lt test.
5095         * lib/m4sugar/m4sh.m4 (_AS_PREPARE): Disable AS_REQUIRE while
5096         expanding it.
5098 2008-10-15  Eric Blake  <ebb9@byu.net>
5100         Break circular require chain in _AS_LINENO_PREPARE.
5101         * lib/m4sugar/m4sh.m4 (_AS_LINENO_PREPARE): Ensure that logging is
5102         disabled when reporting LINENO failure, since logging requires
5103         LINENO.
5104         * doc/autoconf.texi (Initialization Macros): Recommend m4_pushdef,
5105         not m4_rename, since the latter is undocumented.
5106         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Avoid
5107         m4_rename, as it does not yet handle pushdef stacks.
5108         Reported by Ralf Wildenhues.
5110 2008-10-15  Eric Blake  <ebb9@byu.net>
5112         Cleanups to previous patches.
5113         * doc/autoconf.texi (Portable Shell): Minor edits.
5114         (Limitations of Builtins): Touch up wording.
5115         * lib/m4sugar/m4sh.m4 (AS_LINENO_PUSH): Nuke trailing whitespace.
5116         (_AS_SHELL_SANITIZE): Wrap comments less than 80 columns.
5118 2008-10-15  Paolo Bonzini  <bonzini@gnu.org>
5120         Updates to shell portability documentation.
5121         * doc/autoconf.texi: Updates all references to "Portable Shell" and
5122         "Limitations of Builtins" to use three-argument commands.
5123         (Programming in M4sh): Document AS_ECHO, AS_ECHO_N, AS_UNSET.
5124         (Portable Shell): Move here discussion about "Where is the POSIX
5125         shell?"  Mention that M4sh provides a SVR2 shell and takes care
5126         of unsetting variables if necessary.  Talk about M4sh and not only
5127         Autoconf-generated scripts.
5128         (Special Shell Variables): Talk about M4sh and not only
5129         Autoconf-generated scripts.  Don't talk about things that Autoconf
5130         does not do.  Mention problems of $LINENO with shell functions.
5131         (Limitations of Builtins).  Mention AS_ECHO and AS_ECHO_N.  Move
5132         discussion of eval bugs before discussion on proper use of eval.
5133         Mention AS_IF.  Reword why not to use "shift N".  Mention "foo=;
5134         unset foo" trick.  Include M4sh code that unsets MAIL for Bash 2.01.
5135         * NEWS: Update list of documented M4sh macros.
5137 2008-10-15  Paolo Bonzini  <bonzini@gnu.org>
5139         Assume a (possibly buggy) `unset' is present after a
5140         `better shell' was found.
5141         * lib/autoconf/general.m4 (_AC_CACHE_DUMP): Use AS_UNSET.
5142         * lib/autoconf/programs.m4 (AC_PROG_SED): Use AS_UNSET.
5143         * lib/m4sugar/m4sh.m4 (_AS_UNSET_PREPARE): Provide $as_unset as an
5144         alias for AS_UNSET, for backwards compatibility.
5145         (_AS_DETECT_BETTER_SHELL): Set BASH_ENV and ENV to /dev/null in case
5146         the shell does not support unset.
5147         (_AS_SHELL_SANITIZE): Work around Bash 2.01 bugs.  Unset BASH_ENV.
5148         (AS_INIT, _AS_PREPARE, AS_PREPARE): Call it.
5149         (AS_UNSET): Assume it is there but it might fail if the variable is
5150         not set.  Use it throughout instead of $as_unset.
5152 2008-10-15  Paolo Bonzini  <bonzini@gnu.org>
5154         Turn AS_SHELL_SANITIZE into a for-Libtool-only wrapper.
5155         * lib/m4sugar/m4sh.m4 (_AS_DETECT_REQUIRED, _AS_DETECT_SUGGESTED): Remove
5156         m4_require of _AS_DETECT_BETTER_SHELL.
5157         (_AS_CLEANUP): Add it here.
5158         (_AS_DETECT_BETTER_SHELL): Just expand the test instead of appending it
5159         to _AS_CLEANUP.
5160         (_AS_SHELL_SANITIZE): New name of the old AS_SHELL_SANITIZE macro.
5161         (AS_SHELL_SANITIZE): New macro hacking around Libtool misuse.
5162         (AS_PREPARE): Use _AS_SHELL_SANITIZE.
5163         (AS_INIT): Add m4_provide of itself.
5165 2008-10-15  Paolo Bonzini  <bonzini@gnu.org>
5167         Use "test x$foo = xyes" to avoid upsetting Libtool's sh.test.
5168         * lib/m4sugar/m4sh.m4 (_AS_DETECT_BETTER_SHELL, _AS_SHELL_FN_WORK): Use
5169         "test x$foo = xyes".
5171 2008-10-15  Paolo Bonzini  <bonzini@gnu.org>
5173         Trim down the size of the better-shell test.
5174         * lib/m4sugar/m4sh.at (_AT_DETECT_BETTER_SHELL): Store the common
5175         snippets into shell variables.
5176         (_AS_RUN): Rewrite.
5178 2008-10-15  Paolo Bonzini  <bonzini@gnu.org>
5180         Support a stack of LINENO values for AS_MESSAGE.
5181         * lib/m4sugar/m4sh.m4 (_AS_ECHO_LOG): If defined, use $as_lineno as
5182         the line number emitted to the log file.
5183         (AS_LINENO_PUSH, AS_LINENO_POP): New.
5184         * tests/m4sh.at (LINENO Stack): New test.
5186 2008-10-14  Eric Blake  <ebb9@byu.net>
5188         Correct previous patch.
5189         * doc/autoconf.texi (Shell Functions): Bash obeys Posix, after
5190         all.
5192         Document shell function environment pitfall.
5193         * doc/autoconf.texi (Shell Functions): Document bugs in bash,
5194         Solaris /bin/sh.
5196 2008-10-14  Paolo Bonzini  <bonzini@gnu.org>
5198         Use m4_require to implement AS_REQUIRE.
5199         * lib/m4sugar/m4sugar.m4 (_m4_require_call): Accept a third argument.
5200         (m4_require): Pass it.
5201         (m4_divert_require): New.
5202         * lib/m4sugar/m4sh.m4 (AS_REQUIRE): Rewrite using m4_divert_require.
5203         Remove comment about differences with m4_require.
5204         * tests/m4sh.at (AS_REQUIRE_SHELL_FN and m4_require): Update to test
5205         the expected behavior.
5206         (Nested AS_REQUIRE_SHELL_FN): New test.
5208 2008-10-13  Paolo Bonzini  <bonzini@gnu.org>
5210         Test AS_LINENO_PREPARE.
5211         * tests/m4sh.at: Use documented AS_LINENO_PREPARE.
5213 2008-10-13  Paolo Bonzini  <bonzini@gnu.org>
5215         Test AS_ME_PREPARE.
5216         * tests/m4sh.at (as_me): New test.
5218 2008-10-13  Paolo Bonzini  <bonzini@gnu.org>
5220         Add and document AS_INIT_GENERATED.
5221         * lib/m4sugar/m4sh.m4 (AS_INIT_GENERATED): New.
5222         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Use it.
5223         * doc/autoconf.texi (Initialization macros): Document it.
5225 2008-10-13  Eric Blake  <ebb9@byu.net>
5227         Use consistent shell function style.
5228         * lib/m4sugar/m4sh.m4 (_AS_PREPARE, AS_REQUIRE_SHELL_FN)
5229         (_AS_SHELL_FN_WORK): Imitate GNU Coding Standards for C
5230         functions.
5232 2008-10-13  Paolo Bonzini  <bonzini@gnu.org>
5234         * lib/m4sugar/m4sh.m4 (_AS_LINENO_PREPARE): Place names of
5235         contributors under m4 rather than shell comments.
5237 2008-10-10  Paolo Bonzini  <bonzini@gnu.org>
5239         * lib/m4sugar/m4sh.m4 (AS_ME_PREPARE, AS_LINENO_PREPARE): New.
5240         * doc/autoconf.texi (Initialization macros): Document them.
5241         (Portable Shell): Refer to AS_LINENO_PREPARE.
5242         * NEWS: Mention them.
5244         * bin/autoconf.as: Invoke AS_ME_PREPARE.
5245         * lib/autotest/general.m4: Likewise.
5247 2008-10-10  Paolo Bonzini  <bonzini@gnu.org>
5249         * doc/autoconf.texi (Programming in M4sh): Make its own chapter.
5251 2008-10-10  Eric Blake  <ebb9@byu.net>
5253         Fix _AS_MKDIR_P usage.
5254         * lib/m4sugar/m4sh.m4 (_AS_MKDIR_P): Correct documentation to
5255         match implementation.
5256         (_AS_PREPARE, _AS_MKDIR_P_PREPARE): Adjust callers.
5257         * doc/autoconf.texi (Programming in M4sh) <AS_MKDIR_P>: Tweak
5258         wording to better match behavior.
5260 2008-10-10  Paolo Bonzini  <bonzini@gnu.org>
5262         * doc/autoconf.texi: Be less wary of shell functions.
5263         * NEWS: Document the increased use of shell functions.
5265 2008-10-10  Paolo Bonzini  <bonzini@gnu.org>
5267         * m4sugar/m4sh.m4 (_AS_MKDIR_P): New, from AS_MKDIR_P.  Adjust
5268         meaning of as_mkdir_p to be `false' or a full `mkdir -p' command.
5269         (AS_MKDIR_P): Just dispatch to as_func_mkdir_p.
5270         (_AS_PREPARE): Define shell functions.
5271         (_AS_MKDIR_P_PREPARE): Set as_mkdir_p according to the above change.
5272         Define shell functions.
5274 2008-10-09  Eric Blake  <ebb9@byu.net>
5276         Only prepare $as_me if it will be used.
5277         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Avoid unconditional
5278         preparation.
5279         (_AS_ECHO_LOG): Depend on $LINENO preparation.
5280         (AS_MESSAGE): Depend on $as_me preparation.
5281         (AS_TMPDIR): Use AS_ERROR, rather than a hand-rolled copy.
5283 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
5285         * m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Delay setting as_me
5286         until the M4SH-INIT diversion using _AS_ME_PREPARE.
5287         (_AS_PREPARE): Invoke _AS_EXPR_PREPARE before _AS_BASENAME_PREPARE
5288         and _AS_DIRNAME_PREPARE, and _AS_BASENAME_PREPARE and _AS_ME_PREPARE
5289         before _AS_LINENO_PREPARE.
5290         (AS_PREPARE): Include all the AS_REQUIREs manually.
5291         (_AS_ME_PREPARE): New.
5292         (_AS_LINENO_PREPARE): Use m4_defun.
5294 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
5296         * m4sugar/m4sh.m4 (_AS_BASENAME_EXPR, _AS_DIRNAME_EXPR): Do not
5297         require _AS_EXPR_PREPARE.
5298         (_AS_BASENAME_PREPARE, _AS_DIRNAME_PREPARE): Do it here.
5299         (_AS_PREPARE): Add _AS_BASENAME_PREPARE.
5301 2008-10-08  Eric Blake  <ebb9@byu.net>
5303         Resync from gnulib.
5304         * cfg.mk (cvs_executable_files, cvs_files): Rewrite...
5305         (fetch): ...into new target.
5306         (executable-update): Delete, now that it is unused.
5307         * maint.mk (update, local_updates, cvs_files, gnulib_repo)
5308         (wget-update, cvs-update): Likewise.
5309         * HACKING (Update the foreign files): Document new procedure.
5310         * GNUmakefile: Resync from upstream, via new 'make fetch'.
5311         * build-aux/config.guess: Likewise.
5313 2008-10-08  Paolo Bonzini  <bonzini@gnu.org>
5315         * lib/m4sugar/m4sh.m4 (_AS_SHELL_FN_SPY): Remove.
5316         (AS_INIT): Do not call it.
5318 2008-10-08  Paolo Bonzini  <bonzini@gnu.org>
5320         * lib/m4sugar/m4sh.m4 (_AS_DETECT_BETTER_SHELL): Expand
5321         _AS_UNSET_PREPARE in M4SH-SANITIZE.
5323 2008-10-08  Eric Blake  <ebb9@byu.net>
5325         Avoid repeating required shell tests in suggested set.
5326         * lib/m4sugar/m4sh.m4 (_AS_DETECT_REQUIRED, _AS_DETECT_SUGGESTED):
5327         Use m4_set, rather than m4_expand_once/m4_append.
5328         (_AS_DETECT_SUGGESTED): Adjust to new storage layout, and filter
5329         required tests out of suggested tests.
5330         Reported by Paolo Bonzini.
5332 2008-10-08  Paolo Bonzini  <bonzini@gnu.org>
5334         Add m4sh keyword to all m4sh.at tests.
5335         * tests/m4sh.at: Add m4sh keyword to all tests.  Fix comment
5336         pastos.
5338 2008-10-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5340         Document AS_VERSION_COMPARE.
5341         * doc/autoconf.texi (Programming in M4sh): Document
5342         AS_VERSION_COMPARE.
5343         * NEWS: Update.
5345         Do not write to testsuite log fd before initialization.
5346         * lib/autotest/general.m4 (AS_MESSAGE_LOG_FD, AT_JOB_FIFO_FD):
5347         Define fds only when initializing the log fd so early error
5348         messages do not try to write to it.
5349         * tests/autotest.at (Startup error messages): New test.
5350         * NEWS: Document this 2.63 regression.
5352 2008-10-07  Eric Blake  <ebb9@byu.net>
5354         Ensure _AS_CLEANUP is defined.
5355         * lib/m4sugar/m4sh.m4 (_AS_CLEANUP): Give initial definition.
5356         * tests/m4sh.at (AS@&t@_INIT cleanup): Expose the need for this.
5358         Improve m4sh maintainability.
5359         * lib/m4sugar/m4sh.m4: Sort macros for sanitizing the shell; no
5360         code change.
5362         Fix m4 quoting in previous patch.
5363         * lib/m4sugar/m4sh.m4 (AS_REQUIRE_SHELL_FN): Determine diversion
5364         name prior to invoking AS_REQUIRE.
5365         Reported by Ralf Wildenhues.
5367 2008-09-18  Paolo Bonzini  <bonzini@gnu.org>
5368         and Eric Blake  <ebb9@byu.net>
5370         Add a separate diversion for shell functions.
5371         * lib/m4sugar/m4sh.m4 (M4SH-INIT-FN): New diversion.
5372         (AS_REQUIRE): Accept diversion parameter.
5373         (AS_REQUIRE_SHELL_FN): Use it.
5375 2008-10-06  Eric Blake  <ebb9@byu.net>
5377         Add m4_default_quoted.
5378         * lib/m4sugar/m4sugar.m4 (m4_default_quoted): New macro.
5379         (m4_for, m4_expand_once, m4_text_wrap, m4_text_box): Use it.
5380         * doc/autoconf.texi (Conditional constructs): Document it.
5381         * NEWS: Likewise.
5383         Fix build with case-insensitive make, again.
5384         * Makefile.am (pkgdata_DATA): Protect by MAKE_CASE_SENSITIVE.
5385         Reported via Keith Marshall, originally by newthinker in
5386         <http://thread.gmane.org/gmane.comp.gnu.mingw.user/27725>.
5388 2008-10-06  Bruno Haible  <bruno@clisp.org>
5390         Warn about /usr/ucb on Solaris.
5391         * doc/install.texi (Particular Systems): Recommend putting
5392         /usr/ucb late in PATH, if at all.
5394 2008-10-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5396         Fix more testsuite hang corner cases.
5397         * lib/autotest/general.m4: Use the serial code path if no test
5398         is to be run.
5399         * tests/autotest.at (parallel test execution): Test -j and -jN
5400         with `-k notmatched'.
5402 2008-10-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5404         Fix hang with `testsuite -k notmatched'.
5405         * lib/autotest/general.m4: Do not reset $at_jobs if it is equal
5406         to one.  Fixes hang with `-k notmatched'.
5408 2008-10-02  Eric Blake  <ebb9@byu.net>
5410         Document more binary file portability traps.
5411         * doc/autoconf.texi (Limitations of Usual Tools) <sed>: Remind
5412         reader that NUL and sed don't always mix.
5413         <tr>: Mention Solaris /usr/ucb/tr bug with \0.
5415 2008-10-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5417         Implement parallel Autotest test execution: testsuite --jobs.
5418         * lib/autotest/general.m4 (AT_JOB_FIFO_FD): New macro.
5419         (AT_INIT): <at_jobs>: New variable.
5420         Accept -j, -jN, --jobs[=N], document them in --help output.
5421         Implement parallel driver loop using a FIFO, enabled with --jobs
5422         and if mkfifo works; otherwise, fall back to sequential loop.
5423         (AT_SETUP): Store, do not output summary progress line if
5424         parallel.
5425         * tests/autotest.at (parallel test execution, parallel truth)
5426         (parallel fallacy, parallel skip): New tests.
5427         * doc/autoconf.texi (testsuite Invocation): Document -j, --jobs,
5428         the mkfifo requirement, and that --errexit may cause concurrent
5429         jobs to finish.
5430         * NEWS: Update.
5432 2008-09-20  Eric Blake  <ebb9@byu.net>
5434         Fix sample isinf definition.
5435         * doc/autoconf.texi (Function Portability) <isinf>: Filter out NaN
5436         first.
5437         * THANKS: Update.
5438         Reported by David Cournapeau.
5440 2008-09-16  Eric Blake  <ebb9@byu.net>
5442         Fix Erlang regression, introduced 2006-11-17.
5443         * lib/autoconf/erlang.m4 (AC_LANG(Erlang)): Avoid M4 comment
5444         caused by underquoting.
5445         * NEWS: Mention this fix.
5446         * THANKS: Update.
5447         Reported by BJ Terry.
5449 2008-09-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5451         * lib/autoconf/general.m4 (AC_CONFIG_AUX_DIRS): Improve a bit.
5453         Mention Solaris sh ':' redirection bug.
5454         * doc/autoconf.texi (File Descriptors): Redirecting ':'
5455         in a loop causes bogus optimization with Solaris sh.
5457 2008-09-10  Eric Blake  <ebb9@byu.net>
5459         Avoid testsuite bug when autom4te cache is disabled by user.
5460         * tests/tools.at (autoconf: forbidden tokens, basic): Enable
5461         cache, even if user normally disabled it.
5462         Reported by Bruno Haible.
5464         Avoid testsuite bug in presence of verbose config.site.
5465         * tests/base.at (Input/Output): Nullify config.site during test.
5466         Reported by Bob Friesenhahn.
5468 2008-09-09  Eric Blake  <ebb9@byu.net>
5470         Release Version 2.63.
5471         * NEWS: Mention the release.
5473         Formatting tweaks to the manual.
5474         * doc/autoconf.texi (Introduction, Systemology)
5475         (File System Conventions, Portable C and C++)
5476         (Floating Point Portability): Allow URLs to split as needed.
5477         (Indices): Add entries, to work around texinfo bug on indices that
5478         start too close to a page break.
5479         (Particular Functions): Mention ftello.
5480         (Introduction, Language Choice): Use @enddots at sentence end.
5482         Resync from gnulib.
5483         * cfg.mk (cvs_executable_files, cvs_files): Update list of files,
5484         although for now, they are still manually sync'd.
5485         * build-aux/gnupload: Update.
5486         * build-aux/config.sub: Likewise.
5487         * GNUmakefile: Likewise.
5489 2008-09-06  Eric Blake  <ebb9@byu.net>
5491         Mention that Automake already supports VPATH.
5492         * doc/autoconf.texi (Build Directories): Details in this section
5493         only apply to users avoiding automake.
5494         * THANKS: Update.
5495         Reported by Matej Tyc.
5497         Relax tone when warning about cross-compiler names.
5498         * lib/autoconf/programs.m4 (_AC_TOOL_WARN): Support cross-compiles
5499         with poorly named tools; the issue has been reported too many
5500         times in the last four years to pull support.
5501         * doc/autoconf.texi (Specifying Names, Generic Programs): Update
5502         documentation accordingly.
5503         * THANKS: Update.
5504         Reported by Josef Tran and others, wording suggested by Ralf
5505         Wildenhues.
5507 2008-09-01  Eric Blake  <ebb9@byu.net>
5509         Improve AC_C_BIGENDIAN.
5510         * doc/autoconf.texi (C Compiler) <AC_C_BIGENDIAN>: Mention that
5511         universal builds require a config header.
5512         * lib/autoconf/c.m4 (AC_C_BIGENDIAN): Enhance comments.  Check
5513         AH_HEADER at the last possible moment, so that users can use
5514         AC_CONFIG_HEADER after this macro.
5515         Reported by Stepan Kasal.
5517         Fix manual date information.
5518         * doc/autoconf.tex: UPDATED refers to the day the manual was
5519         built, not the release date of Autoconf.
5520         Based on a bison patch by Akim Demaille.
5522 2008-08-27  Eric Blake  <ebb9@byu.net>
5524         Fix off-by-one bug in _m4_shiftn.
5525         * lib/m4sugar/foreach.m4 (_m4_shiftn): Handle case when shifting
5526         all arguments.
5527         * tests/m4sugar.at (M4 loops): Test it.
5528         Reported by Akim Demaille.
5530 2008-08-26  Eric Blake  <ebb9@byu.net>
5532         Improve INSTALL formatting.
5533         * doc/install.texi [!autoconf]: Ensure first paragraphs are
5534         indented like all others in a plain text rendering.
5535         * Makefile.am ($(srcdir)/INSTALL): Ensure plaintext formatting.
5536         Reported by Bruno Haible.
5538 2008-08-26  Stepan Kasal  <skasal@redhat.com>
5540         Check for case sensitive make.
5541         * m4/make-check.m4 (AC_PROG_MAKE_CASE_SENSITIVE): New macro,...
5542         * configure.ac: ... called here.
5543         * Makefile.am ($(abs_srcdir)/INSTALL, INSTALL): Return to...
5544         ($(srcdir)/INSTALL): ...this, but enclose the rule in
5545         "if MAKE_CASE_SENSITIVE".
5547 2008-08-26  Eric Blake  <ebb9@byu.net>
5549         Update invocation documentation.
5550         * doc/autoconf.texi (autoscan Invocation): Mention --debug.
5551         (autoreconf Invocation): Mention -v.
5552         (autom4te Invocation): Tie --freeze to -F, not -f.
5553         (autoupdate Invocation): Mention --prepend-include.
5554         * doc/install.texi (configure Invocation): Mention --help=short,
5555         --help=recursive, -n/--no-create, --prefix.  Avoid TABs.
5556         * bin/autoscan.in ($help): Omit space before `...'.
5557         * bin/ifnames.in ($help): Likewise.
5558         * bin/autoconf.as (Usage): Likewise.
5559         * bin/autoreconf.in ($help): Likewise.
5560         * bin/autoheader.in ($help): Likewise.
5561         * bin/autom4te.in ($help): Likewise.
5562         * bin/autoupdate.in ($help): Likewise.
5563         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Use
5564         `[OPTION]...', rather than `[OPTIONS]'.  Mention --silent.  Indent
5565         --file correctly.
5567         Don't let frozen __m4_version__ break downgrade to m4 1.4.x.
5568         * bin/autom4te.in: Adjust comments, now that we rely on 1.4.5+.
5569         (files_to_options): Avoid inheriting __m4_version__ from frozen
5570         file if current M4 does not support it.
5572 2008-08-25  Eric Blake  <ebb9@byu.net>
5574         Adjust to recent m4 1.6 change to support m4_debugmode(d).
5575         * lib/m4sugar/m4sugar.m4 (m4_defn, m4_popdef, m4_undefine): Move
5576         freeze-time decision of using faster 1.6 implementation...
5577         (m4_init): ...to a runtime decision, and add use of new debugmode
5578         flag.
5580 2008-08-22  Peter O'Gorman  <pogma@thewrittenword.com>
5582         Limit AC_C_BIGENDIAN univeral checks to Mac OS X.
5583         * lib/autoconf/c.m4 (AC_C_BIGENDIAN): Limit the check to
5584         __APPLE_CC__ with possible -arch flags.
5585         * NEWS: Document it.
5587 2008-08-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5589         * NEWS: Fix typo.
5591 2008-08-22  Eric Blake  <ebb9@byu.net>
5593         * TODO: Add an item for additional m4sugar looping constructs.
5594         Suggested by Ralf Wildenhues.
5596         Add reminder to keep dual implementations in sync.
5597         * lib/m4sugar/m4sugar.m4: Add comments.
5598         * lib/m4sugar/foreach.m4: Likewise.
5599         Suggested by Ralf Wildenhues.
5601 2008-08-22  Peter Eisentraut  <peter_e@gmx.net>  (tiny change)
5603         Format warning and error messages to match GCS.
5604         * lib/autoconf/general.m4 (_AC_INIT_DIRCHECK)
5605         (_AC_INIT_PARSE_ARGS, _AC_CACHE_DUMP): Start warning and error
5606         messages with a lowercase letter, end them without punctuation.
5607         * lib/autoconf/lang.m4 (AC_NO_EXECUTABLES): Likewise.
5608         * lib/autoconf/libs.m4 (AC_PATH_X): Likewise.
5609         * lib/autoconf/status.m4 (AC_OUTPUT, _AC_OUTPUT_MAIN_LOOP):
5610         Likewise.
5611         * tests/fortran.at (GNU Fortran): Likewise.
5612         * tests/torture.at (Deep Package): Likewise.
5614 2008-08-21  Eric Blake  <ebb9@byu.net>
5616         Avoid extra side effects in m4sugar list expansion.
5617         * lib/m4sugar/m4sugar.m4 (m4_mapall_sep, m4_list_cmp): Wrap
5618         around...
5619         (_m4_mapall_sep, _m4_list_cmp_raw): ...new helpers, to avoid
5620         duplicate side effects.
5621         (m4_version_compare): Adjust caller.
5622         * lib/m4sugar/foreach.m4 (m4_list_cmp): Rename...
5623         (_m4_list_cmp_raw): ...to match m4sugar.
5624         * doc/autoconf.texi (Looping constructs): Document the behavior of
5625         side effects.
5626         * tests/m4sugar.at (M4 loops, m4@&t@_map, m4@&t@_version_compare):
5627         Ensure only one side effect.
5628         (recursion): Fix test typo.
5629         Reported by Ralf Wildenhues.
5631 2008-08-21  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5633         * TODO: Add item for compiler default flags.
5634         Suggested by Bruno Haible.
5636         * tests/m4sh.at (AS_IF and AS_CASE): Set the expansion limit
5637         back to 1000.
5639 2008-08-21  Eric Blake  <ebb9@byu.net>
5641         Formatting improvements.
5642         * doc/autoconf.texi: Use @file and @command, rather than @code,
5643         where appropriate.
5645         Document another make bug.
5646         * doc/autoconf.texi (The Make Macro SHELL): Mention bug in BSD
5647         make, GNU make <= 3.80.
5649         Tweak wording about SHELL in Makefile.
5650         * doc/autoconf.texi (The Make Macro SHELL): Stronger wording on
5651         the importance of proper SHELL settings.
5652         Reported by Bruno Haible, in
5653         http://lists.gnu.org/archive/html/bug-libtool/2008-04/msg00029.html.
5655 2008-08-20  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5657         Avoid timestamp races for updated input.
5658         * tests/m4sh.at (AS_IF and AS_CASE): Use `autom4te --force' for
5659         second script.
5660         * tests/tools.at (autotools and whitespace in file names): Add
5661         --force for repeated invocations.
5663 2008-08-20  Bruno Haible  <bruno@clisp.org>
5665         Add section to INSTALL about particular systems.
5666         * doc/install.texi (Particular systems): New node.
5667         * doc/autoconf.texi: Adjust menus.
5669 2008-08-19  Bruno Haible  <bruno@clisp.org>
5670         and Peter O'Gorman  <peter@pogma.com>
5672         Mention universal binaries in INSTALL.
5673         * doc/install.texi (Compiling For Multiple Architectures): Explain
5674         how to create universal binaries on MacOS X.
5676 2008-08-19  Jim Meyering  <jim@meyering.net>
5677             Eric Blake  <ebb9@byu.net>
5678             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5680         Avoid shell parse errors after interrupt due to empty ``.
5681         * doc/autoconf.texi (Shell Substitutions): Document the issue.
5682         * lib/m4sugar/m4sh.m4 (AS_VAR_IF): New function.
5683         * lib/autoconf/functions.m4 (AC_CHECK_FUNC): Use it in place of
5684         "test AS_VAR_GET([...]) = yes"
5685         * lib/autoconf/general.m4 (AC_CHECK_FILE, AC_CHECK_DECL): Likewise.
5686         * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_MONGREL): Likewise.
5687         (_AC_CHECK_HEADER_NEW, _AC_CHECK_HEADER_OLD): Likewise.
5688         (_AC_CHECK_HEADER_DIRENT): Likewise.
5689         * lib/autoconf/libs.m4 (AC_CHECK_LIB): Likewise.
5690         * lib/autoconf/types.m4 (_AC_CHECK_TYPE_NEW, AC_CHECK_MEMBER): Likewise.
5691         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE): Use
5692         temporary variable to work around the issue.
5693         * tests/foreign.at (Libtool): Quote result of command
5694         substitution.
5696 2008-08-18  Eric Blake  <ebb9@byu.net>
5698         Test m4_transform without tickling shell bugs.
5699         * tests/m4sh.at (AS@&t@_IF and AS@&t@_CASE): Relax test to
5700         something more manageable.
5701         * tests/m4sugar.at (recursion): Move stress test of
5702         m4_transform_pair here.
5703         Reported by Ralf Wildenhues.
5705         Let 'git diff' give better context for doc updates.
5706         * .gitattributes (*.texi*): Add new entry.
5707         * README-hacking: Mention how to use it.
5708         Inspired by a coreutils patch by Jim Meyering.
5710 2008-08-15  Eric Blake  <ebb9@byu.net>
5712         Fix m4_map regression from 2007-10-16.
5713         * lib/m4sugar/m4sugar.m4 (_m4_apply): New macro.
5714         (m4_map): Ignore empty sublists.  For a list consisting of only an
5715         empty sublist, this restores 2.61 behavior of being a no-op.
5716         (m4_map_sep): Likewise, and expand separator.
5717         (m4_mapall, m4_mapall_sep): New macros, to regain 2.62 behavior.
5718         (_m4_map): Rewrite, to be common base for all four variants.
5719         * lib/m4sugar/foreach.m4 (_m4_map): Adjust to new prototype.
5720         * tests/m4sugar.at (m4@&t@_map): Add tests.
5721         * doc/autoconf.texi (Looping constructs) <m4_map>: Document new
5722         macros, and mention ramifications of expanded separator.
5723         * NEWS: Mention the change.
5725 2008-08-14  Eric Blake  <ebb9@byu.net>
5727         Implement m4_transform_pair, to speed up AS_IF.
5728         * lib/m4sugar/m4sugar.m4 (m4_transform, m4_transform_pair): New
5729         macros, undocumented for now.
5730         * lib/m4sugar/foreach.m4 (m4_transform, m4_transform_pair): Also
5731         the m4 1.4.x counterparts.
5732         * lib/m4sugar/m4sh.m4 (AS_IF, AS_CASE): Use it.
5733         * tests/m4sh.at (AS@&t@_IF and AS@&t@_CASE): Test it.
5735 2008-08-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5737         * lib/autoconf/programs.m4 (AC_PATH_TARGET_TOOL)
5738         (AC_CHECK_TARGET_TOOL, AC_CHECK_TARGET_TOOLS): Require, do not
5739         warn about previous AC_CANONICAL_TARGET.
5740         (AC_CHECK_TARGET_TOOL): Add missing `$' making the macro
5741         unusable in the non-cross-compiling case.
5742         * NEWS, THANKS: Update.
5743         Report by Dave Erickson.
5745 2008-08-12  Eric Blake  <ebb9@byu.net>
5747         Optimize m4_bmatch.
5748         * lib/m4sugar/foreach.m4 (m4_bmatch): Provide linear
5749         implementation for m4 1.4.x.
5750         * tests/m4sugar.at (m4@&t@_bmatch): New test.
5751         (recursion): Test the linear nature.
5752         * NEWS: Document the fix.
5754         Fix m4_cond corner case.
5755         * lib/m4sugar/foreach.m4 (_m4_cond): Ensure alternate
5756         implementation allows concatenation with subsequent text.
5757         * tests/m4sugar.at (m4@&t@_cond): Enhance test.
5759         Add test for m4_cond.
5760         * tests/m4sugar.at (m4@&t@_cond): New test.
5761         Reported by Ralf Wildenhues.
5763 2008-08-06  Eric Blake  <ebb9@byu.net>
5765         Fix autoheader 2.62 regression on AC_DEFINE([__EXTENSIONS__]).
5766         * lib/autoconf/specific.m4 (AC_USE_SYSTEM_EXTENSIONS): Use a
5767         unique key for the AH_VERBATIM.
5768         * tests/c.at (AC_USE_SYSTEM_EXTENSIONS): New test.
5769         * NEWS: Mention the fix.
5770         Reported by Andreas Schwab, analyzed by Stepan Kasal.
5772         Add linear m4_cond for m4 1.4.x.
5773         * lib/m4sugar/m4sugar.m4 (m4_cond): Split into...
5774         (_m4_cond): ...this, for fewer macros per iteration.
5775         * lib/m4sugar/foreach.m4 (_m4_cond): New implementation.
5776         * tests/m4sugar.at (recursion): Test it.
5777         * NEWS: Document the linear guarantee.
5779         Speed up diversion handling.
5780         * lib/m4sugar/m4sugar.m4 (m4_divert, m4_divert_push)
5781         (m4_divert_pop, m4_divert_text): Avoid dnl for fewer macro
5782         expansions.
5784         AC_C_CHAR_UNSIGNED is not strictly necessary.
5785         * doc/autoconf.texi (C Compiler) <AC_C_CHAR_UNSIGNED>: Mention a
5786         portable alternative to this macro.
5787         * THANKS: Update.
5788         Reported by Hallvard B Furuseth.
5790         Update some files from upstream.
5791         * GNUmakefile: Update.
5792         * build-aux/announce-gen: Likewise.
5793         * build-aux/config.guess: Likewise.
5794         * build-aux/config.sub: Likewise.
5795         * build-aux/git-version-gen: Likewise.
5796         * build-aux/texinfo.tex: Likewise.
5797         * build-aux/vc-list-files: Likewise.
5798         * doc/make-stds.texi: Likewise.
5799         * doc/standards.texi: Likewise.
5801 2008-08-04  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5803         Fix AC_CONFIG_FILES([$var]) 2.62 regression.
5804         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Flatten
5805         whitespace in $ac_config_files and $ac_config_headers.
5806         * tests/torture.at (Parameterized AC_CONFIG_FILES): New test.
5807         Report by Andreas Schwab and Per Øyvind Karlsen.
5808         * THANKS: Update.
5810 2008-07-30  Eric Blake  <ebb9@byu.net>
5812         Fix bugs in previous version of m4_bpatsubsts.
5813         * lib/m4sugar/foreach.m4 (_m4_bpatsubsts): Don't expand $1, and
5814         allow concatenation with subsequent text.
5815         * tests/m4sugar.at (m4@&t@_bpatsubsts): Enhance test.
5817 2008-07-29  Eric Blake  <ebb9@byu.net>
5819         Add linear m4_bpatsubsts for m4 1.4.x.
5820         * lib/m4sugar/m4sugar.m4 (m4_bpatsubsts): Match documentation
5821         about anchors, even for only one substitution.
5822         * lib/m4sugar/foreach.m4 (_m4_bpatsubsts): New implementation.
5823         * doc/autoconf.texi (Conditional constructs) <m4_bpatsubsts>:
5824         Clarify behavior with regard to quoting.
5825         * tests/m4sugar.at (recursion): Test scaling of m4_bpatsubsts.
5826         (m4@&t@_bpatsubsts): New test.
5827         * NEWS: Document the linear guarantee.
5829         Tweak m4_do semantics.
5830         * lib/m4sugar/m4sugar.m4 (m4_do): Don't concat final argument with
5831         subsequent text.
5832         * lib/m4sugar/foreach.m4 (m4_do): Don't concat intermediate
5833         arguments, and avoid infinite loop.
5834         * doc/autoconf.texi (Evaluation Macros) <m4_do>: Document the
5835         behavior.
5836         * tests/m4sugar.at (m4@&t@_do): New test.
5838         Optimize m4_for.
5839         * lib/m4sugar/m4sugar.m4 (m4_for): Use fewer macros.
5840         (_m4_for): Take additional parameter, for fewer m4_indir calls.
5841         * lib/m4sugar/foreach.m4 (_m4_foreach, _m4_shiftn, m4_do)
5842         (m4_reverse, _m4_list_pad, _m4_list_cmp): Adjust all callers.
5843         * doc/autoconf.texi (Looping constructs) <m4_for>: Document subtle
5844         semantic change caused by the optimization.
5845         * tests/m4sugar.at (M4 loops): Test the new semantics.
5847         One more m4_list_cmp tweak.
5848         * lib/m4sugar/m4sugar.m4 (_m4_list_cmp_1): Don't defer shift.
5849         * lib/m4sugar/foreach.m4 (m4_list_cmp): Fix comment.
5850         * tests/m4sugar.at (recursion): Test both directions of list
5851         disparity.
5853         Add m4_reverse, and improve m4_list_cmp.
5854         * lib/m4sugar/m4sugar.m4 (m4_reverse): New macro.
5855         (m4_list_cmp): Rewrite to give linear behavior with M4 1.6 on an
5856         m4_reverse'd list.
5857         * lib/m4sugar/foreach.m4 (m4_reverse): Add the M4 1.4.x
5858         counterpart.
5859         * tests/m4sugar.at (recursion): Test it.
5860         * doc/autoconf.texi (Evaluation Macros) <m4_reverse>: Document
5861         it.
5862         (Text processing Macros) <m4_append>: Cross-reference to m4_set.
5863         * NEWS: Mention new macro.
5865 2008-07-28  Eric Blake  <ebb9@byu.net>
5867         Avoid _m4_shiftn for m4 1.6 speedup.
5868         * lib/m4sugar/m4sugar.m4 (m4_foreach, _m4_foreach, m4_map)
5869         (_m4_map, m4_map_sep): Rewrite recursion to use one less m4_if.
5870         * lib/m4sugar/foreach.m4 (_m4_map): Accomodate changed signature.
5872         Implement O(n) unique element set creation.
5873         * lib/m4sugar/m4sugar.m4 (m4_set_add, m4_set_add_all)
5874         (m4_set_contains, m4_set_contents, m4_set_delete)
5875         (m4_set_difference, m4_set_dump, m4_set_empty, m4_set_foreach)
5876         (m4_set_intersection, m4_set_list, m4_set_listc, m4_set_remove)
5877         (m4_set_size, m4_set_union): New macros.
5878         * lib/m4sugar/foreach.m4 (m4_set_add_all): Add O(n) fallback for
5879         m4 1.4.x.
5880         * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS, AC_SUBST): Use
5881         new m4_set API for the set most likely to be large.
5882         * doc/autoconf.texi (Set manipulation Macros): New node.
5883         * NEWS: Mention new macros.
5884         * tests/m4sugar.at (m4@&t@_set): New test.
5886 2008-07-25  Eric Blake  <ebb9@byu.net>
5888         Avoid infinite aclocal loop.
5889         * lib/m4sugar/m4sugar.m4 (m4_init): Bypass m4_include tracing, so
5890         that aclocal doesn't insist on finding m4sugar/foreach.m4.
5892         Provide O(n) replacement macros for M4 1.4.x.
5893         * lib/m4sugar/foreach.m4: New file.
5894         (m4_foreach, m4_case, _m4_shiftn, m4_do, m4_dquote_elt, _m4_map)
5895         (m4_join, m4_joinall, m4_list_cmp, _m4_minmax): Replace m4sugar
5896         macros based on $@ recursion [fast on M4 1.6, but quadratic on M4
5897         1.4.x] with versions based on m4_for/m4_foreach [slow on 1.6, but
5898         linear on 1.4.x].
5899         * lib/m4sugar/m4sugar.m4 (m4_init): Dynamically load new file if
5900         older M4 is assumed.
5901         (m4_map_sep): Optimize.
5902         (m4_max, m4_min): Refactor, by adding...
5903         (_m4_max, _m4_min, _m4_minmax): ...more efficient helpers.
5904         (m4_defn, m4_popdef, m4_undefine): Use foreach recursion.
5905         * lib/m4sugar/Makefile.am (dist_m4sugarlib_DATA): Distribute new
5906         file.
5907         * tests/m4sugar.at (M4 loops): Add a stress test that takes
5908         forever if m4_foreach and friends are quadratic.
5909         * NEWS: Mention this.
5911 2008-07-21  Eric Blake  <ebb9@byu.net>
5913         Ignore undefined macros, necessary with m4 1.6.
5914         * bin/autoupdate.in (_au___undefine): New macro,...
5915         (_au__undefine): ...wrapped by ifdef to silence m4 warnings.
5916         Reported by Ralf Wildenhues.
5918         Resync with gnulib.
5919         * GNUmakefile: Grab from upstream, to fix issue where 'make
5920         install' would allow installation of stale version string.
5922 2008-07-19  Eric Blake  <ebb9@byu.net>
5924         Support multiple arguments to m4_defn, m4_popdef, and m4_undefine.
5925         * lib/m4sugar/m4sugar.m4 (m4_defn, m4_popdef, m4_undefine): Loop
5926         through all variables, per POSIX and newer m4.
5927         (_m4_text_wrap): Exploit the looping capabilities.
5928         * tests/m4sugar.at (m4@&t@_defn): Test this.
5929         * NEWS: Document it.
5930         * doc/autoconf.texi (Redefined M4 Macros) <m4_defn, m4_popdef>
5931         <m4_undefine>: Likewise.
5933         Reduce overhead of m4_builtin([defn]).
5934         * lib/m4sugar/m4sugar.m4 (_m4_defn, _m4_popdef, _m4_undefine): New
5935         internal macros, which are slightly more efficient than
5936         m4_builtin([defn]) and company.
5937         (m4_defn, m4_popdef, m4_undefine, m4_warn, m4_ifset)
5938         (_m4_dumpdefs_up, _m4_dumpdefs_down, _m4_wrap, m4_for)
5939         (_m4_divert_n_stack, m4_divert_pop, m4_expansion_stack_push)
5940         (m4_expansion_stack_dump, _m4_defun_pro, _m4_defun_epi)
5941         (_m4_defun_epi_outer, _m4_require_call, m4_combine, m4_append)
5942         (_m4_append_uniq, m4_append_uniq_w, _m4_text_wrap, m4_text_box)
5943         (m4_version_prereq): Use them.
5945         Use warnings from m4 when available.
5946         * lib/m4sugar/m4sugar.m4 (m4_defn, m4_popdef, m4_undefine): Don't
5947         define slower wrapper if m4 will warn on our behalf; key off of
5948         __m4_version__, added alongside the new warnings in m4 1.6.
5949         * tests/m4sugar.at (m4@&t@_defn): New test.
5951 2008-07-18  Eric Blake  <ebb9@byu.net>
5953         Add m4_joinall.
5954         * lib/m4sugar/m4sugar.m4 (m4_joinall, _m4_joinall): New macros.
5955         * tests/m4sugar.at (m4@&t@_join): Test them.
5956         * doc/autoconf.texi (Text processing Macros) <m4_join>: Document
5957         m4_joinall.
5958         * NEWS: Likewise.
5960 2008-07-17  Stepan Kasal  <skasal@redhat.com>
5961         and Eric Blake  <ebb9@byu.net>
5963         Improve documentation of config.h.in template rules.
5964         * doc/autoconf.texi (Header Templates): Mention rules on comments
5965         and whitespace, and that the user cannot rely on #undef to survive
5966         through config.status.
5968 2008-07-16  Eric Blake  <ebb9@byu.net>
5970         Revert m4_prepend; it is less efficient, and unused by bison.
5971         * lib/m4sugar/m4sugar.m4 (m4_prepend, m4_prepend_uniq)
5972         (m4_prepend_uniq_w): Delete addition from 2008-07-11.
5973         (_m4_grow_uniq_1): Rename back...
5974         (_m4_append_uniq): ...to this.
5975         * NEWS: Revert NEWS blurb.
5976         * doc/autoconf.texi (Text processing Macros) <m4_prepend>: Delete.
5977         * tests/m4sugar.at (m4@&t@_prepend): Delete.
5979 2008-07-15  Eric Blake  <ebb9@byu.net>
5981         Avoid failure if version.m4 is omitted but m4_PACKAGE_* unused.
5982         * lib/m4sugar/m4sugar.m4 (m4_version_compare): Provide alternate
5983         definition for non-Autoconf clients of m4sugar.
5985 2008-07-14  Eric Blake  <ebb9@byu.net>
5987         Tighten bound of potential speed of m4_append.
5988         * doc/autoconf.texi (Text processing Macros) <m4_append>
5989         <m4_prepend>: If m4 is fixed, m4_append can be linear rather than
5990         O(n log n).
5991         * lib/m4sugar/m4sugar.m4 (m4_append, m4_append_uniq): Fix comments.
5992         Analysis by Bruno Haible.
5994 2008-07-11  Eric Blake  <ebb9@byu.net>
5996         Inherit improvements from bison's fork of m4sugar.
5997         * lib/m4sugar/m4sugar.m4 (m4_PACKAGE_VERSION): Ignore failure to
5998         find version.texi, since bison does not provide it.
5999         (m4_prepend): Add new macro, from bison.
6000         (m4_prepend_uniq, m4_prepend_uniq_w): Add new macros, for
6001         completeness.
6002         (_m4_append_uniq): Rename...
6003         (_m4_grow_uniq_1): ...to this to share implementation, and
6004         optimize initial assignment.
6005         (m4_append_uniq_w): Adjust caller.
6006         * NEWS: Document new macros.
6007         * doc/autoconf.texi (Text processing Macros) <m4_append>: Mention
6008         speed consideration.
6009         <m4_prepend>: Document the new prepend variants.
6010         * tests/m4sugar.at (m4@&t@_prepend): New test.
6012         Work around M4 1.6 warning on undefined macros.
6013         * lib/m4sugar/m4sugar.m4 (changeword, symbols): Don't rename if
6014         not already available as builtins.
6016 2008-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6018         * doc/autoconf.texi (@dvar): Remove trailing newline.
6019         (@ovar): Likewise.  Fix macro documentation.
6021 2008-07-02  Stepan Kasal  <skasal@redhat.com>
6023         Add quotes to the header of autoscan-generated source.
6024         * bin/autoscan.in: Add quotes to AC_PREREQ and AC_INIT.
6026 2008-06-28  Andreas Schwab  <schwab@suse.de>
6028         * doc/autoconf.texi (autoscan Invocation): Fix spacing.
6029         (autoconf Invocation): Likewise.
6030         (autoreconf Invocation): Likewise.
6031         (autoheader Invocation): Likewise.
6032         (autom4te Invocation): Likewise.
6034 2008-06-19  Eric Blake  <ebb9@byu.net>
6036         Add comment explaining recent patch.
6037         * lib/autotest/general.m4 (AT_INIT) <at_pass_list>: Explain choice
6038         of * vs. ? globbing.
6040 2008-06-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6042         * lib/autoconf/status.m4 (_AC_OUTPUT_LINK): Do not warn when not
6043         linking a file to itself.
6044         Report by Bruno Haible.
6046 2008-06-19  Eric Blake  <ebb9@byu.net>
6048         Resync with gnulib.
6049         * GNUmakefile: Grab from upstream, to fix VPATH 'make dist' bug.
6050         Reported by Stepan Kasal.
6052 2008-06-18  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6054         Reorganize autotest files, factorize for parallel execution.
6055         * lib/autotest/general.m4 (AS_MESSAGE_LOG_FD): Move definition
6056         earlier in the file.
6057         (AT_INIT): Create line number cache in
6058         $at_suite_dir/at-source-lines.
6059         <at_helper_dir>: New directory at-groups below $at_suite_dir.
6060         Add comment explaining the new directory structure.
6061         (at_func_group_prepare, at_func_group_postprocess): New shell
6062         functions to factorize per-test group work.  Keep the actual
6063         test execution outside of a shell function in order to avoid
6064         zsh 4.x exit status bugs.
6065         <at_check_line_file, at_status_file, at_stdout, at_stder1>
6066         <at_stderr, at_test_source>: Turn these into per-group files
6067         below $at_helper_dir.  Also store test results there in files
6068         named pass, fail, xpass, xfail, skip.  Let the parent collect
6069         results from $at_helper_dir.  Adjust summary statistics
6070         computation and result output.
6072 2008-06-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6074         Fix '#undef variable /* comment */' transform in config headers.
6075         * lib/autoconf/status.m4 (_AC_OUTPUT_HEADERS_PREPARE): For
6076         undefined preprocessor macros that are followed by a comment
6077         in the header template, do not create nested comments in the
6078         output.
6079         * tests/torture.at (@%:@define header templates): Extend test.
6080         * NEWS: Update.
6081         Report by Karsten Hopp <karsten@redhat.com>.
6083 2008-06-09  Eric Blake  <ebb9@byu.net>
6085         Mark AC_TYPE_SIGNAL as obsolete.
6086         * lib/autoconf/types.m4 (AC_TYPE_SIGNAL): Switch to AU_DEFUN.
6087         * doc/autoconf.texi (Function Portability): Update documentation.
6088         (Particular Types): Move AC_TYPE_SIGNAL...
6089         (Obsolete Macros): ...here, and mention why.
6090         * NEWS: Mention the change.
6092         Allow lib64 as a default X library location.
6093         * lib/autoconf/libs.m4 (_AC_PATH_X_XMKMF): Add lib64.
6094         * NEWS: Mention the change.
6095         * THANKS: Update.
6096         Reported by Brad Walker.
6098 2008-06-05  Eric Blake  <ebb9@byu.net>
6100         Fix regression in AT_KEYWORDS([Macro]), from 2007-10-18.
6101         * lib/autotest/general.m4 (AT_KEYWORDS): Expand argument prior to
6102         converting it to lower case.
6103         * tests/autotest.at (Keywords and ranges): Test this.
6104         * NEWS: Document the fix.
6105         * THANKS: Update.
6106         Reported via Karsten Hopp, by Jochen Schmitt in
6107         https://bugzilla.redhat.com/show_bug.cgi?id=449973
6109 2008-06-03  Eric Blake  <ebb9@byu.net>
6111         Fix 'make dist' regression from 2008-05-08.
6112         * Makefile.am (INSTALL): Add rule, to accomodate 'make dist' after
6113         GNUmakefile's _autoconf rule removes INSTALL.
6115 2008-05-27  Eric Blake  <ebb9@byu.net>
6117         Document Solaris /bin/sh redirection pitfall.
6118         * doc/autoconf.texi (File Descriptors): Mention redirection bug.
6120 2008-05-14  Eric Blake  <ebb9@byu.net>
6122         Improve documentation of ! issues.
6123         * doc/autoconf.texi (Limitations of Builtins) <!>: Touch up.
6124         Reported by Noah Misch.
6126         Document some FreeBSD shell bugs.
6127         * doc/autoconf.texi (Limitations of Builtins) <!>: Mention ! issue
6128         in compound pipe commands.
6129         <export>: Mention difference of exporting an undefined variable.
6130         (Shell Functions): Mention loss of $? in entry to shell functions.
6131         Extracted from the git mailing list.
6133 2008-05-13  Stepan Kasal  <kasal@ucw.cz>
6135         Work around MSYS and Cygwin bugs when dealing with trailing space.
6136         * tests/atlocal.in (func_sanitize_dir_name): Let atlocal succeed,
6137         even when platform bugs are tickled.
6138         Reported by Keith Marshall and Eric Blake.
6140 2008-05-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6142         Let AC_MSG_FAILURE report pwd.
6143         * lib/autoconf/general.m4 (_AC_ARG_VAR_VALIDATE, AC_MSG_FAILURE):
6144         Output $ac_pwd along with fatal failure.
6145         * tests/torture.at (Deep Package): Extend test.
6146         Reported numerous times against GCC, and probably other packages.
6148 2008-05-12  Eric Blake  <ebb9@byu.net>
6150         Enforce --help and --version compliance.
6151         * configure.ac (AM_INIT_AUTOMAKE): Add std-options option.
6153 2008-05-08  Keith Marshall  <keithmarshall@users.sourceforge.net>  (tiny change)
6155         Avoid case-insensitive `make install' vs. `INSTALL' conflict.
6156         * Makefile.am ($(srcdir)/INSTALL): Replace all references...
6157         ($(abs_srcdir)/INSTALL): ...with this.
6159 2008-05-06  Eric Blake  <ebb9@byu.net>
6161         Fix typo.
6162         * doc/autoconf.texi (Shell Substitutions): Drop at_ prefix.
6164         Avoid overfull \hbox.
6165         * doc/autoconf.texi (Versioning): Reword to fit line size.
6167         Document $(( )) pitfalls.
6168         * doc/autoconf.texi (Shell Substitutions): Mention octal
6169         vs. decimal.  Mention autotest's at_func_arith.
6171         Improve behavior of './testsuite 01'.
6172         * lib/autotest/general.m4 (AT_INIT) <at_func_validate_ranges>:
6173         Alter usage to eval its arguments, in order to normalize away
6174         leading zero.  All callers updated.
6175         * tests/autotest.at (Keywords and ranges): Test range
6176         normalization with leading 0.
6178 2008-04-26  Eric Blake  <ebb9@byu.net>
6180         Mention Solaris /usr/ucb/tr pitfall.
6181         * doc/autoconf.texi (Limitations of Usual Tools) <tr>: Add section.
6182         Reported by Bruno Haible and Jim Meyering.
6184 2008-04-24  Eric Blake  <ebb9@byu.net>
6186         Mention m4sugar's internal quote strings.
6187         * doc/autoconf.texi (Quadrigraphs): Mention alternate quote used
6188         in m4sugar, and how to still output it literally.
6189         * tests/m4sugar.at (m4@&t@_split): And test it.
6190         Reported by Joel E. Denny.
6192 2008-04-23  Eric Blake  <ebb9@byu.net>
6194         Allow unbalanced () in m4_expand.
6195         * lib/m4sugar/m4sugar.m4 (m4_expand, _m4_expand): Use more complex
6196         quotes.
6197         (m4_noquote, _m4_split): Use consistent complex quote.
6198         * tests/autotest.at (Left paren, Right paren): Test this.
6199         (Parentheses): Ensure new quadrigraphs still work.
6200         (AT_CHECK_AT_TITLE_CHAR): All title char tests exercise m4_expand.
6201         * NEWS: Mention the fix.
6202         * doc/autoconf.texi (Quadrigraphs): Revert mention of macros that
6203         require quadrigraphs for ().
6204         (Evaluation Macros) <m4_expand>: Relax the restriction against
6205         unbalanced ().
6206         (Pretty Help Strings) <AS_HELP_STRING>: Likewise.
6207         (Writing Testsuites) <AT_SETUP>: Likewise.
6208         Reported by Joel E. Denny, fix suggested by Noah Misch.
6210 2008-04-22  Eric Blake  <ebb9@byu.net>
6212         Support unbalanced () in AT_SETUP by adding two new quadrigraphs.
6213         * bin/autom4te.in (handle_output): Substitute @{:@ and @:}@.
6214         (handle_traces): Likewise.
6215         * lib/m4sugar/m4sugar.m4 (m4_qlen): Account for new quadrigraphs.
6216         * tests/autotest.at (AT_CHECK_AT_TITLE_CHAR): Add new tests.
6217         * doc/autoconf.texi (Quadrigraphs): Document them.
6218         (Evaluation Macros) <m4_expand>: Enhance documentation.
6219         (Text processing Macros) <m4_text_box>: Document cases where
6220         quadrigraphs can help for problemetic unbalanced parentheses.
6221         (Pretty Help Strings) <AS_HELP_STRING>: Likewise.
6222         (Writing Testsuites) <AT_SETUP>: Likewise.
6223         (Limitations of Builtins) <case>: Consolidate text on unbalanced
6224         parentheses, and add an example of creative comments.
6225         * NEWS: Document the addition.
6226         Reported by Joel E. Denny.
6228 2008-04-16  Eric Blake  <ebb9@byu.net>
6230         Document pdksh exec behavior.
6231         * doc/autoconf.texi (Limitations of Builtins) <exec>: New
6232         subsection.
6233         Discovered by Jim Meyering.
6235 2008-04-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6237         * tests/autotest.at (AT_CHECK_AT): Allow to pass additional
6238         arguments to the inner suite.
6239         (errexit, input from stdin): New tests.
6241 2008-04-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6243         * NEWS: Post-release update.
6245 2008-04-10  Eric Blake  <ebb9@byu.net>
6247         AC_AUTOCONF_VERSION might contain arbitrary macro names.
6248         * doc/autoconf.texi (Versioning): Mention problem with expansion.
6249         * tests/tools.at (autoconf: AC_AUTOCONF_VERSION): Adjust test.
6251 2008-04-09  Slava Sysoltsev <Viatcheslav.Sysoltsev@h-d-gmbh.de>  (tiny change)
6253         Flush buffered output before exit.
6254         * bin/autom4te.in (handle_output): Explicitly close file.
6255         * THANKS: Update.
6256         See http://lists.gnu.org/archive/html/autoconf/2008-04/msg00026.html.
6258 2008-04-08  Eric Blake  <ebb9@byu.net>
6260         Generate web docs for 2.62.
6261         * doc/autoconf.texi (Evaluation Macros): Fix typo.
6262         (Notices): Use recommended means to escape RCS keyword.
6263         * cfg.mk (gnulib_dir): New macro.
6264         (web-manual): New target.
6266 2008-04-05  Eric Blake  <ebb9@byu.net>
6268         Release Version 2.62.
6269         * NEWS: Mention the release.
6271 2008-04-04  Stepan Kasal  <kasal@ucw.cz>
6272         and Eric Blake  <ebb9@byu.net>
6274         Return back to GPLv2+, until the text of the exceptions is
6275         finalized, reverting the change from 2007-07-03 and the first
6276         part of the change from 2007-07-20.
6277         * COPYING: Revert to GPLv2.
6278         * COPYINGv3: New file, since some auxiliary build tools, used for
6279         building autoconf and not installed, are GPLv3.
6280         * Makefile.am (EXTRA_DIST): Distribute COPYINGv3.
6281         * NEWS: Remove mention of GPLv3.
6282         * README: Clarify situation regarding GPLv3.
6284 2008-04-05  Eric Blake  <ebb9@byu.net>
6286         Prepare for release.
6287         * maint.mk (announcement): Avoid deleted option.
6288         * cfg.mk (release_archive_dir): Use default.
6289         * build-aux/gnupload: New file, from automake/gnulib.
6290         * Makefile.am (EXTRA_DIST): Distribute it.
6291         * .x-sc_two_space_separator_in_usage: New file, to exempt gnupload
6292         from syntax check.
6294 2008-04-05  Jim Meyering  <meyering@redhat.com>
6295         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6297         Work around CR EOL markers on OS/2 (www.ecomstation.com Ecs v2 rc4)
6298         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE): When CR
6299         is the EOL marker, skip a step that would remove and translate
6300         carriage return bytes.
6301         * THANKS: Update.
6302         Reported by Elbert Pol.
6304 2008-04-05  Eric Blake  <ebb9@byu.net>
6306         Avoid some autoreconf -Wall warnings.
6307         * configure.ac: Use proper quoting, to be a good example.
6308         (PACKAGE_NAME): Remove setting covered by autoconf.
6309         (AM_INIT_AUTOMAKE): Bump automake requirement, for html rules.
6310         * doc/Makefile.am (TEXI2DVI): Remove settings covered by
6311         automake.
6312         (html, autoconf_1.html, standards_1.html): Likewise.
6313         (TEXI2HTML, TEXI2HTML_FLAGS): Remove unused macros.
6314         * Makefile.am (html): Likewise.
6315         * doc/autoconf.texi (Quoting and Parameters): Add missing section
6316         name.
6317         * tests/Makefile.am (AUTOMAKE_OPTIONS): Intentionally ignore
6318         warning about our override, until Automake is fixed.
6319         * README-hacking: Document minimum requirements for bootstrap.
6321 2008-04-03  Eric Blake  <ebb9@byu.net>
6323         Fix version number generation in man pages.
6324         * Makefile.am (EXTRA_DIST): Distribute .version.
6325         (.version): New rule.
6326         * man/Makefile.am (common_dep): Depend on .version, not
6327         configure.ac.
6328         (.x.1): Use package name for version string.
6329         * GNUmakefile [!_have-Makefile]: Sync from upstream, again.
6330         * build-aux/git-version-gen: Sync from upstream.
6332         More maintainer tweaks: pass 'make maintainer-distcheck'.
6333         * GNUmakefile (_is-dist-target): Sync from upstream.
6334         * build-aux/vc-list-files: Sync from upstream, yet again.
6335         * tests/atlocal.in (unsupported_fs_chars): Always remove tdir.
6336         * tests/Makefile.am (EXTRA_DIST): Don't distribute the built
6337         package.m4.
6338         * lib/autoconf/general.m4 (_AC_INIT_COPYRIGHT): Bump year.
6340         Fix VPATH 'make syntax-check'.
6341         * maint.mk (VC_LIST, VC_LIST_EXCEPT, sc_changelog)
6342         (sc_prohibit_jm_in_m4, makefile-check): Support VPATH.
6343         (author_mark_check): Avoid error message.
6344         * build-aux/vc-list-files: Sync from upstream again.
6345         * build-aux/texinfo.tex: Likewise.
6347         Sync files from upstream, and pass 'make syntax-check'.
6348         * config/announce-gen: Move...
6349         * build-aux/announce-gen: ...here, and sync from gnulib.
6350         * Makefile.am (EXTRA_DIST): Adjust accordingly.
6351         * cfg.mk (announce_gen): Likewise.
6352         (prev_version_file): Delete, relying on default in maint.mk.
6353         (gpg_key_ID): New macro.
6354         (url_dir_list): Rewrite to match coreutils.
6355         * config/prev-version.txt: Move...
6356         * .prev-version: ...here, and adjust to 2.61.
6357         * build-aux/vc-list-files: Sync from coreutils.
6358         * maint.mk: Resynchronize with coreutils, where possible.
6359         (ME): Remove $(srcdir) from definition.
6360         (CVS): Delete.
6361         (GIT, VC, VC-tag): New macros.
6362         (CVS_LIST, CVS_LIST_EXCEPT): Rename...
6363         (VC_LIST, VC_LIST_EXCEPT): ...to this.
6364         (cvs-tag-check): Delete.
6365         (cvs-diff-check): Rename...
6366         (vc-diff-check): ...to this.
6367         (sc_file_system): Allow FHS acronym.
6368         * doc/autoconf.texi (Particular Functions): Recommend
6369         unconditional <config.h>.
6370         * build-aux/config.guess: Sync from upstream (manually).
6371         * build-aux/config.sub: Likewise.
6372         * build-aux/texinfo.tex: Likewise.
6373         * doc/make-stds.texi: Likewise.
6374         * doc/standards.texi: Likewise.
6375         * .gitattributes: Ignore whitespace problems in upstream files.
6377 2008-04-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6379         * doc/autoconf.texi (Limitations of Usual Tools): Mention awk %u
6380         bug on HP-UX/IA.
6381         Report by Peter O'Gorman.
6383 2008-04-02  Eric Blake  <ebb9@byu.net>
6385         Recommend the just-released M4 1.4.11.
6386         * NEWS: Update recommendation.
6387         * README: Likewise.
6388         * doc/autoconf.texi (Introduction): Likewise.
6389         * m4/m4.m4 (AC_PROG_GNU_M4): Likewise.
6391 2008-04-01  Eric Blake  <ebb9@byu.net>
6393         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Bump
6394         copyright year.
6396 2008-03-28  Peter O'Gorman  <peter@pogma.com>
6398         Find X11 on Mac OS X too.
6399         * lib/autoconf/libs.m4 (_AC_PATH_X_DIRECT,_AC_PATH_X_XMKMF):
6400         Check for libX11 with extensions dylib la and dll too.
6401         * THANKS: Update.
6402         Reported by Martin Costabel.
6404 2008-03-28  Eric Blake  <ebb9@byu.net>
6406         Update TODO based on completed tasks.
6407         * TODO (AC_PROG_INSTALL takes multiple files): Done.
6408         (AC_GNU_SOURCE deprecation): Done, see AC_USE_SYSTEM_EXTENSIONS.
6409         (AC_COMPILE_IFELSE documentation): Done.
6410         (Tracing builtins): Done, now that we require M4 1.4.5.
6411         (AC_PROG_CC_POSIX suggestion, providing header files)
6412         (AC_TYPE_SIGNAL): Not needed; gnulib's approach is better.
6413         (cache consistency): Done with precious variables.
6415 2008-03-26  Eric Blake  <ebb9@byu.net>
6417         Document --trace=macro:format in --help output.
6418         * bin/autom4te.in (help): Mention optional trace format.
6419         * bin/autoconf.as (usage): Likewise.
6421         * doc/autoconf.texi (Limitations of Usual Tools) <sed>: Fix
6422         typos in last patch.
6423         Reported by Ralf Wildenhues.
6425 2008-03-26  Jim Meyering  <meyering@redhat.com>
6427         Fix texinfo syntax error.
6428         * doc/autoconf.texi (Limitations of Usual Tools): s/@kbd {/@kbd{/
6430 2008-03-26  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6432         Warn, not fail on whitespace-only precious variable differences.
6433         * lib/autoconf/general.m4 (_AC_ARG_VAR_VALIDATE): Output
6434         precious variable differences less ambiguous with `ugly-quotes'.
6435         If their settings differ only in whitespace, do not fail, but
6436         reuse the old value.
6437         * tests/torture.at (AT_CHECK_AC_ARG_VAR): Extend macro to allow
6438         an optional status and expected-warning argument.  Fix m4
6439         quotation for initial value.
6440         (AC_ARG_VAR): Also test for whitespace-only differences, and
6441         that the old value is retained in this case.
6442         * doc/autoconf.texi (Setting Output Variables): Document this.
6443         * NEWS: Update.
6444         Report and initial patch by Paolo Bonzini.
6446 2008-03-26  Eric Blake  <ebb9@byu.net>
6448         Document busybox sed bug.
6449         * doc/autoconf.texi (Limitations of Usual Tools) <sed>: Mention
6450         restrictions when using back-references.
6451         Reported by Vincent Lefevre:
6452         <http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/13013>.
6454         Document Automake interaction with AC_CONFIG_MACRO_DIR.
6455         * doc/autoconf.texi (Input): Mention ACLOCAL_AMFLAGS for automake
6456         users.
6457         * THANKS: Update.
6458         Reported by Chris Pickett.
6460 2008-03-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6462         * tests/autotest.at (Using atlocal): Quote instances of `pwd`.
6464         * tests/local.at (AT_CHECK_M4): Factorize warning output
6465         normalization.
6466         Suggested by Eric Blake.
6468 2008-03-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6470         Fix .exe-related test failure on MinGW.
6471         * tests/local.at (AT_CHECK_M4): Normalize `/bin/m4.exe' correctly
6472         for comparing warning output.
6474         Fix Fortran testsuite failures with gfortran 4.3.
6475         * lib/autoconf/fortran.m4 (_AC_PROG_FC_V_OUTPUT): When scanning
6476         verbose compiler output, skip lines that set variables; gfortran
6477         4.3 sets LIBRARY_PATH, COMPILER_PATH, COLLECT_GCC_OPTIONS.
6478         * THANKS: Update.
6479         Report by Vincent Lefèvre.
6481 2008-03-21  Eric Blake  <ebb9@byu.net>
6483         * GNUmakefile: Resynchronize with gnulib.
6485         Document more uses of $cross_compiling.
6486         * doc/autoconf.texi (Runtime): Document that a temporary override
6487         is permissible.
6488         * THANKS: Update.
6489         Reported by Ineiev, example by Ralf Wildenhues.
6491         Don't swallow $1 in textual local variables.
6492         * lib/m4sugar/m4sugar.m4 (m4_combine): Don't use overquoting and
6493         expansion of text arguments, as that swallows $1.
6494         (m4_text_wrap): Likewise, by splitting out...
6495         (_m4_text_wrap): ...new helper macro.  Also, allow arbitrary
6496         expression for width.
6497         * tests/m4sugar.at (m4@&t@_text_wrap): Test this.
6498         (m4@&t@_combine): Likewise.
6500 2008-03-21  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6502         Avoid leftover files on Leopard.
6503         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT): Remove a.out.dSYM
6504         directory created on darwin.
6505         (AC_NO_EXECUTABLES): Likewise; also remove objects which may be
6506         left over from a broken link.
6507         * tests/c.at (AC_NO_EXECUTABLES (working linker))
6508         (AC_NO_EXECUTABLES (broken linker)): New tests.
6509         Report by Gary V. Vaughan.
6511         * lib/autom4te.in (Automake-preselections): Trace
6512         _AM_COND_IF, _AM_COND_ELSE, _AM_COND_ENDIF.
6514 2008-03-20  Eric Blake  <ebb9@byu.net>
6516         Kill more CVS references.
6517         * README-cvs: Delete.  See README-hacking instead.
6518         * README-hacking: Update wording, based on older file.
6519         * BUGS: Remove CVS mention.
6521 2008-03-20  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6523         * tests/tools.at (autotools and whitespace in file names): Skip
6524         if aclocal is not present.
6526 2008-03-20  Eric Blake  <ebb9@byu.net>
6528         Sync GNUmakefile with gnulib.
6529         * GNUmakefile (Makefile.cfg): Rename...
6530         (cfg.mk): ...to this, and make optional.
6531         (GNUmakefile.cfg): Delete, redundant with cfg.mk.
6532         (Makefile.maint): Rename...
6533         (maint.mk): ...to this.
6534         (all) [!_have-Makefile]: Rename...
6535         (abort-due-to-no-makefile): ...to this, and invoke via
6536         .DEFAULT_GOAL to pick up all targets.
6537         * Makefile.cfg: Rename...
6538         * cfg.mk: ...to this.
6539         * Makefile.maint: Rename...
6540         * maint.mk ...to this.
6541         (ME): Reflect name change.
6542         (makefile-check, m4-check, author_mark_check, msg): Use $(ME)
6543         rather than hard-coded name.
6544         * GNUmakefile.cfg: Delete; move rules into cfg.mk.
6545         * Makefile.am (EXTRA_DIST): Reflect file name changes.
6546         * .x-sc_prohibit_atoi_atof: Likewise.
6547         * lib/freeze.mk: Likewise.
6549 2008-03-19  Stepan Kasal  <kasal@ucw.cz>
6551         * doc/autoconf.texi (Introduction): Improve the paraphrase of
6552         Henry Spencer's quotation.
6554 2008-03-19  Eric Blake  <ebb9@byu.net>
6556         AC_CONFIG_HEADERS replaced AC_CONFIG_HEADER.
6557         * bin/autoscan.in (output): Avoid obsolete spelling.
6558         * tests/local.at (AC_STATE_SAVE): Update usage.
6559         * THANKS: Update.
6560         Reported by John Calcote.
6562         Emphasize that ease of configure triumphs over ease of autoconf.
6563         * doc/autoconf.texi (Introduction): Expand on primary
6564         vs. secondary goal of autoconf.
6565         * THANKS: Update.
6566         Inspired by Paul Smith.
6568 2008-03-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6570         * lib/Autom4te/FileUtils.pm (handle_exec_errors): New argument
6571         $hint, show if the executing program does not exist.
6572         (xsystem_hint): New function, like xsystem but allows to pass
6573         a hint.
6574         * bin/autoreconf.in: Use xsystem_hint for spawning autopoint and
6575         libtoolize.
6576         Report by Bruce Korb.
6578 2008-03-14  Stepan Kasal  <kasal@ucw.cz>
6580         * lib/Autom4te/ChannelDefs.pm, tests/fortran.at,
6581         tests/mktests.sh, tests/wrapper.as: Fix typos.
6583 2008-03-12  Eric Blake  <ebb9@byu.net>
6585         Fix yesterday's regression in m4_wrap([$1]).
6586         * lib/m4sugar/m4sugar.m4 (_m4_wrap): Don't directly invoke wrapped
6587         text, since it may contain text that looks like parameters.
6588         * tests/m4sh.at (AS@&t@_INIT cleanup): Enhance test.
6590 2008-03-11  Eric Blake  <ebb9@byu.net>
6592         Improve error messages for common testsuite bugs.
6593         * lib/autotest/general.m4 (_AT_DEFINE_INIT, _AT_DEFINE_SETUP): New
6594         macros for defining order-enforced macros.
6595         (AT_INIT, AT_SETUP, AT_CLEANUP, AT_BANNER, AT_XFAIL_IF)
6596         (AT_CAPTURE_FILE, AT_DATA, AT_CHECK, AT_CHECK_NOESCAPE): Add error
6597         messages when order violations are detected.
6598         * tests/autotest.at (AT_CHECK_AT_SYNTAX): New helper macro.
6599         (AT_SETUP without AT_INIT, AT_BANNER without AT_INIT)
6600         (AT_CLEANUP without AT_INIT, Missing AT_CLEANUP)
6601         (AT_CHECK without AT_SETUP, AT_DATA without AT_SETUP)
6602         (AT_XFAIL_IF without AT_DATA, AT_KEYWORDS without AT_SETUP,
6603         (AT_CLEANUP without AT_SETUP, AT_BANNER inside AT_SETUP)
6604         (AT_SETUP inside AT_SETUP, Multiple AT_INIT)
6605         (Banner-only test suite): New tests.
6606         Reported by Christopher Hulbert.
6608         Tweak m4_wrap to force FIFO or LIFO semantics.
6609         * lib/m4sugar/m4sugar.m4 (m4_wrap): Override M4 implementation.
6610         (m4_wrap_lifo, _m4_wrap): New macros.
6611         * lib/m4sugar/m4sh.m4 (AS_INIT): Combine all cleanup into known
6612         order, prior to m4sugar's.
6613         (_AS_DETECT_BETTER_SHELL): Use cleanup parameter, rather than
6614         m4_wrap.
6615         * lib/autotest/general.m4 (AT_INIT): Combine all cleanup into
6616         known order, prior to m4sh's.
6617         * doc/autoconf.texi (Diagnostic Macros) <m4_fatal>: Document
6618         argument.
6619         (Redefined M4 Macros) <m4_wrap>: Rewrite documentation to match
6620         new behavior.
6621         * tests/m4sh.at (AS_INIT cleanup): New test.
6622         * NEWS: Document the change.
6624 2008-03-10  Eric Blake  <ebb9@byu.net>
6626         Encode nested autotest data.
6627         * tests/autotest.at (AT_CHECK_AT_PREP): Avoid raw AT_ in output.
6628         (unusual file names): Likewise.
6629         (m4_pattern_allow): Remove loophole, to make it easier to catch
6630         poorly written tests.
6632         Factor some autotest tests.
6633         * tests/autotest.at (AT_CHECK_AT_PREP): New macro, to factor out
6634         common initialization.
6635         (AT_CHECK_AT, Banners, Keywords and ranges, srcdir propagation)
6636         (whitespace in absolute testdir, unusual file names): Use it.
6638 2008-03-06  Eric Blake  <ebb9@byu.net>
6640         Minor documentation fix.
6641         * doc/autoconf.texi (Evaluation Macros): Fix typo.
6643 2008-03-04  Eric Blake  <ebb9@byu.net>
6645         Make AT_CHECK act like a simple command.
6646         * lib/autotest/general.m4 (_AT_CHECK): Wrap commands in {;}.
6647         * tests/torture.at (AT_CHECK_CONFIG_CREATION_NOWRITE): Test it.
6649 2008-03-04  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6651         On MinGW, substitution of CR and 0xFF fails.
6652         * tests/torture.at (Substitute and define special characters):
6653         MinGW awk cannot handle 0xFF, and on MinGW, the test does the
6654         wrong thing for CR.
6656 2008-03-04  Eric Blake  <ebb9@byu.net>
6658         Pull in recent maintainer improvements from coreutils.
6659         * GNUmakefile (_is-dist-target): 'make distclean' should not
6660         trigger autoreconf.
6661         (_dummy): Change directories before removing autom4te.cache.
6662         (check dist distcheck install) [!_have-Makefile]: Provide nicer
6663         diagnostics.
6664         * configure.ac (AC_CONFIG_LINKS): Copy GNUmakefile into VPATH
6665         builds, after initial bootstrap.
6666         * Makefile.am (distclean-local): Work around current automake bug.
6667         * Makefile.maint (ME): Allow VPATH usage.
6669         Use git-merge-changelog when available.
6670         * .gitattributes: New file.
6671         * README-hacking: Document use of git-merge-changelog.
6673         Work around cygwin bug.
6674         * tests/atlocal.in (unsupported_fs_chars): Avoid cygwin bug where
6675         "touch 't\'" creates regular file 't'.
6677         Ignore tests that require read-only directories under root.
6678         * tests/torture.at (AT_CHECK_CONFIG_CREATION_NOWRITE): Skip
6679         no-write portion if user has root-like privileges.
6681 2008-03-04  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6683         * lib/autotest/general.m4 (AT_INIT): Fix detection of '-C -'.
6685 2008-03-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6687         autoreconf -m now honors $MAKE.
6688         * bin/autoreconf.in ($run_make): Renamed from ...
6689         ($make): ... this.  Use now as command to run `make',
6690         overridden by $MAKE.  Document this in --help output.
6691         * doc/autoconf.texi (autoreconf Invocation): Document
6692         all environment variables honored by autoreconf.
6693         * NEWS: Update.
6694         Report by Paul Eggert.
6696 2008-03-03  Eric Blake  <ebb9@byu.net>
6698         Documentation improvements.
6699         * doc/autoconf.texi (Looping constructs): s/recurses/repeats/.
6700         (Evaluation Macros): Drop `1' suffix from metasyntax variable name
6701         that preceeds @dots.  Improve wording.
6702         (Text processing Macros): Drop `1' suffix from metasyntax variable
6703         name that preceeds @dots.
6704         (Number processing Macros): Drop `1' suffix from metasyntax
6705         variable name that preceeds @dots.  Improve wording.
6706         * lib/m4sugar/m4sugar.m4 (m4_cmp): Comment wording fix.
6707         Suggested by Ralf Wildenhues.
6709 2008-03-02  Jim Meyering  <meyering@redhat.com>
6711         Don't infloop upon "make dist".
6712         * GNUmakefile: Merge from coreutils.
6713         * Makefile.am (dist-hook): Inject .tarball-version into tarball,
6714         not .version.
6715         * configure.ac (AC_INIT): Use .tarball-version, not .version.
6716         * build-aux/git-version-gen: Update from gnulib.
6718 2008-03-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6720         * tests/torture.at (AC_CONFIG_FILES, HEADERS, LINKS and COMMANDS):
6721         Before using /dev/full, check that it is a writable character
6722         special device.
6723         Report by Benoit Sigoure and Eric Blake.
6725         Actually test that @configure_input@ is expanded correctly.
6726         * tests/torture.at (AC_CONFIG_FILES, HEADERS, LINKS and COMMANDS):
6727         Actually check generated file contents for the name of the
6728         generated file, using AC_PROG_FGREP and $FGREP.
6730 2008-03-01  Benoit Sigoure  <tsuna@lrde.epita.fr>
6732         Be nice with file systems that don't handle unusual characters.
6733         * tests/atlocal.in (func_sanitize_file_name)
6734         (func_sanitize_dir_name): New shell functions.
6735         * tests/tools.at (autom4te and whitespace in file names)
6736         (autotools and whitespace in file names): Use them.
6737         * tests/torture.at (AC_CONFIG_FILES, HEADERS, LINKS and COMMANDS):
6738         Cover more potentially problemtic file names.  Use the new
6739         functions.
6741         Properly handle funny file names for headers in config.status.
6742         The test suite did not cover this bug because the code was not
6743         quoting properly the arguments of `rm -f' (which "fails" silently)
6744         as well as the arguments of `diff' (whose output was redirected to
6745         /dev/null so we couldn't see its error message).
6746         * lib/autoconf/status.m4 (_AC_OUTPUT_HEADER): Properly quote the
6747         file names passed to `rm' and `diff'.
6748         * tests/torture.at (AC_CONFIG_FILES, HEADERS, LINKS and COMMANDS):
6749         Add a regression test.
6751 2008-03-01  Benoit Sigoure  <tsuna@lrde.epita.fr>
6752         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6754         Properly expand @configure_input@ in config.status.
6755         * lib/autoconf/status.m4 (_AC_OUTPUT_FILE, _AC_OUTPUT_MAIN_LOOP):
6756         Escape the backslashes and ampersands in $configure_input before
6757         using it in the sed replacement string to expand @configure_input@.
6758         Report by Eric Blake and Patrick Welche.
6760 2008-03-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6762         Ignore errors from ./run on w32.
6763         * tests/autotest.at (whitespace in absolute testdir):
6764         Ignore stderr for `./run' which fails to remove the
6765         busy test directory on w32.
6767 2008-02-22  Eric Blake  <ebb9@byu.net>
6769         Improve documentation for writing autotest suites.
6770         * doc/autoconf.texi (Writing Testsuites) <AT_CHECK>: Mention that
6771         checks must live inside a test group.
6772         Reported by Christopher Hulbert.
6774 2008-02-21  Eric Blake  <ebb9@byu.net>
6776         Sync git-version-gen from upstream.
6777         * build-aux/git-version-gen: Pull from gnulib.
6778         * configure.ac (AC_INIT): Adjust to new calling convention.
6780 2008-02-12  Eric Blake  <ebb9@byu.net>
6782         Avoid trailing space in config.h with AC_DEFINE([var], []).
6783         * lib/autoconf/general.m4 (_AC_DEFINE_Q): Explicitly mark empty
6784         defines with a comment.
6786 2008-02-08  Eric Blake  <ebb9@byu.net>
6788         Fix texinfo typos in previous patch.
6789         * doc/autoconf.texi (Site Defaults): s/[{}]/@&/g.
6790         Reported by Ralf Wildenhues.
6792         Describe a config.site that can be used for FHS compliance.
6793         * doc/autoconf.texi (Site Defaults): Fix typo.  Add new example
6794         for FHS.
6795         * THANKS: Update.
6796         Reported by Jules Colding and Ralf Wildenhues.
6798 2008-02-02  Eric Blake  <ebb9@byu.net>
6800         * doc/autoconf.texi (Limitations of Usual Tools) <grep>: Fix typo.
6802 2008-02-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6804         * lib/autotest/general.m4 (AT_INIT): Fix --clean to work
6805         again, broken since introduction of `-C dir'.
6806         * tests/autotest.at (Choosing where testsuite is run): Test it.
6808 2008-01-30  Paul Eggert  <eggert@cs.ucla.edu>
6810         * doc/autoconf.texi: Update Back-Cover text to reflect new GNU wording.
6812 2008-01-29  Eric Blake  <ebb9@byu.net>
6814         Fix more autotest regressions.
6815         * lib/autotest/general.m4 (AT_LINE): Fix regression from
6816         2007-10-04 when file name is `dnl'.
6817         (AT_INIT) <PREPARE_TESTS>: Move command-line assignments...
6818         <TESTS_BEGIN>: ...to this new diversion, to fix regression from
6819         yesterday in libtool's testsuite.
6820         (_AT_ARG_OPTION): Detect write failure.
6821         * doc/autoconf.texi (Diversion support): Document PREPARE_TESTS to
6822         make libtool's use kosher.  Document m4_init.
6823         (Programming in M4sh): Document AS_INIT.
6824         (Writing Testsuites): Document limitation of AT_DATA file name.
6825         * tests/autotest.at (unusual file names): New test.
6826         (Banners, Keywords and ranges): Use correct shell.
6828         More corner cases in testsuite VAR=VALUE handling.
6829         * lib/autotest/general.m4 (AT_INIT) <PREPARE_TESTS): Fix quoting
6830         bug.
6831         <PARSE_ARGS_END>: Also detect leading digits in assignments.
6832         * tests/autotest.at (Using atlocal): Enhance test to catch last
6833         bug.
6835         * doc/autoconf.texi (Limitations of Builtins) <.>: Mention bash
6836         bug.
6838 2008-01-28  Eric Blake  <ebb9@byu.net>
6840         Fix regression in handling VAR=VALUE arguments to testsuite.
6841         * lib/autotest/general.m4 (AT_INIT) <PARSE_ARGS_END>: Detect
6842         leading = as invalid.  Defer use of command-line variable
6843         assignments...
6844         <PREPARE_TESTS>: ...here, after atconfig has been sourced.  Fix
6845         regression in sourcing files.
6846         * tests/autotest.at (Using atlocal): New test to catch this.
6847         (Debugging a successful test, Choosing where testsuite is run):
6848         Use correct shell.
6849         Reported by Ralf Wildenhues.
6851         Document grep peculiarity.
6852         * doc/autoconf.texi (Limitations of Usual Tools) <grep>: Document
6853         BSD behavior on binary input.
6855         Minor testsuite improvements.
6856         * lib/autotest/general.m4 (AT_INIT) <PREPARE_TESTS>: Use fewer
6857         forks when sanitizing PATH.  Always output machine information,
6858         not just when atconfig was located.
6860         Add 'testsuite -C dir'.
6861         * lib/autotest/general.m4 (_AT_ARG_OPTION): Move missing argument
6862         detection...
6863         (AT_INIT) <PARSE_ARGS_END>: ...here, since -k always takes
6864         argument.
6865         <DEFAULTS>: Delay computation of variables based on $at_dir...
6866         <PREPARE_TESTS>: ...to here, since -C can change $at_dir.
6867         <TESTS>: Re-invoke via absolute name, since -C may be in effect.
6868         <PARSE_ARGS>: Parse new option.
6869         <HELP_TUNING>: Document it.
6870         * tests/autotest.at (Choosing where testsuite is run): New test
6871         for this feature.
6872         (Keywords and ranges): Add test for missing -k argument.
6873         * NEWS: Document this.
6874         * doc/autoconf.texi (testsuite Invocation): Likewise.
6876 2008-01-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6878         * build-aux/config.guess, build-aux/config.sub,
6879         build-aux/texinfo.tex: Sync from gnulib.
6880         * doc/fdl.texi, doc/make-stds.texi, doc/standards.texi:
6881         Likewise.
6883 2008-01-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6885         * doc/autoconf.texi (Particular Programs): Do not mention the
6886         Autoconf version in which the AC_PROG_INSTALL change was done.
6887         Suggested by Paul Eggert.
6889 2008-01-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6891         Fix --help=recursive with multiple AC_CONFIG_SUBDIRS.
6892         * lib/autoconf/general.m4 (_AC_INIT_HELP): If, for recursive help
6893         mode, we change to the source directory, also set $ac_pwd so we
6894         do not go back to the build tree for the next config subdir.
6895         * tests/torture.at (Deep Package): Extend test to contain two
6896         config subdirs on the top level.
6898         Fix parallel `maintainer-check'.
6899         * Makefile.am (maintainer-check-tests): Depend on `all'.
6900         Use `$(MAKE) $(AM_MAKEFLAGS)' instead of plain `make'.
6901         * tests/Makefile.am (maintainer-check-c++, maintainer-check-posix):
6902         Likewise.
6903         (maintainer-check): Serialize the testsuite runs.
6905         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ENABLE2): Accept `+'
6906         in feature string for --enable/--with.  Convert to underscore
6907         for variable name.
6909         * lib/autoconf/programs.m4 (AC_PROG_INSTALL): Require that
6910         `install -c file1 file2 dir' works.
6911         * doc/autoconf.texi (Particular Programs): Document this.
6912         * NEWS: Update.
6914 2008-01-21  Eric Blake  <ebb9@byu.net>
6916         Improve documentation about default include directives.
6917         * doc/autoconf.texi (Generic Headers, Generic Declarations)
6918         (Generic Structures, Generic Types)
6919         (Generic Compiler Characteristics): Add links to
6920         AC_INCLUDES_DEFAULT.
6921         Reported by Reuben Thomas.
6923 2008-01-15  Eric Blake  <ebb9@byu.net>
6925         * lib/m4sugar/m4sugar.m4 (m4_qlen): Use fewer macros.
6927 2008-01-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6929         * tests/Makefile.am (noinst_SCRIPTS): Renamed from
6930         check_SCRIPTS.  Building the wrappers for `all' allows help2man
6931         to use them for the manpages.
6932         Report by Benoit Sigoure.
6934         * bin/autoreconf.in: Discard stderr for $autoconf/$aclocal --help.
6936 2007-12-16  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6938         Fix some write failure cases in Autotest.
6939         * lib/autotest/general.m4 (AT_INIT): Do not exit successfully
6940         upon write failures for --help, --version, --list.
6941         Guard against write failures for intermediate created scripts.
6942         <at_func_create_debugging_script>: Do not make the debugging
6943         script executable if it is not complete.
6945 2007-12-12  Eric Blake  <ebb9@byu.net>
6947         Fix thinko in earlier patch - m4_join isn't defined yet.
6948         * lib/m4sugar/m4sugar.m4 (m4_expansion_stack_push, _m4_defun_pro)
6949         (_m4_defun_pro_outer, _m4_defun_epi, _m4_defun_epi_outer)
6950         (m4_require): Use m4_do, not m4_join.
6952         Fix some whitespace tests on cygwin.
6953         * tests/tools.at (autom4te and whitespace in file names): Restore
6954         font-lock.  Create $TMPDIR before it might be used.
6956         Fix spurious testsuite failure with M4 1.4.11.
6957         * tests/local.at (AT_CHECK_M4): Cater to new m4 error message.
6959         Optimize AC_REQUIRE.
6960         * lib/m4sugar/m4sugar.m4 (m4_expansion_stack_push, _m4_defun_pro)
6961         (_m4_defun_pro_outer, _m4_defun_epi, _m4_defun_epi_outer)
6962         (m4_require): Avoid extra macro calls.
6964 2007-12-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6966         * tests/torture.at (srcdir): Fix quoting.
6968         Do not pass top_srcdir to configure scripts in testsuite.
6969         * tests/autotest.at (srcdir propagation): Copy install-sh to
6970         source tree.
6971         (my only test): Drop setting of `top_srcdir'.
6972         * tests/base.at (Input/Output): Likewise.
6973         * tests/local.at (AT_CONFIGURE_AC): Copy install-sh,
6974         config.guess, and config.sub to test source tree.
6975         Drop AC_CONFIG_AUX_DIR setting.
6976         (AT_CHECK_CONFIGURE): Drop setting of `top_srcdir'.
6977         * tests/torture.at (Substitute a 2000-byte string): Drop
6978         AC_CONFIG_AUX_DIR setting, copy install-sh to test source tree.
6979         (Substitute a newline, datarootdir workaround): Likewise.
6980         (Define a newline): Adjust for linenumber changes in configure.ac.
6981         * tests/foreign.at (Libtool): Adjust comment to reflect changes.
6983         * tests/semantics.at (AC_PATH_PROGS_FEATURE_CHECK): Skip test
6984         if `pwd` contains whitespace.
6986         Quote $abs_top_srcdir in tests.
6987         * tests/local.at (AT_CHECK_PERL_SYNTAX): Likewise.
6988         * tests/tools.at (Syntax of the shell scripts): Likewise.
6990         * tests/m4sh.at (LINENO): Quote $0.
6992         Fix testsuite program wrapper for whitespace in `pwd`.
6993         The problem here is that the usual mantra is that command
6994         variables can contain arguments, thus we cannot just escape
6995         $AUTOCONF, $AUTOM4TE etc.  The compromise is to put the
6996         $top_builddir/tests directory early in $PATH, so that the
6997         wrappers are found by their plain name.
6998         * tests/wrapper.as: Put $testdir early in $PATH.
6999         (AUTOCONF, AUTOHEADER, AUTOM4TE): Set to plain command names.
7001         Proper config.status --file/--header and $srcdir escaping.
7002         * lib/autoconf/status.m4 (_AC_OUTPUT_MAIN_LOOP): Quote special
7003         characters in $ac_file_inputs.
7004         (_AC_OUTPUT_FILE, _AC_OUTPUT_HEADER): eval $ac_file_inputs
7005         accordingly.
7006         * tests/torture.at (datarootdir workaround): Adjust.
7007         (AC_CONFIG_FILES, HEADERS, LINKS and COMMANDS): Extend test.
7009         Fix Autotest for whitespace in `pwd`.
7010         * lib/autotest/general.m4 (AT_INIT)
7011         <at_func_create_debugging_script, Driver Loop>:
7012         Quote $at_group_dir.
7013         * tests/autotest.at (whitespace in absolute testdir): New test.
7015         * lib/autom4te.in: Quote @datadir@.
7017         Proper file name escaping in Autoconf programs and Perl modules.
7018         This includes escaping of characters special to the shell
7019         as well as special to Perl, e.g., leading `<' or `>'.
7020         For example, when $file starts with `>', `open ">$file"'
7021         wrongly tries to append to a different file.
7022         * bin/autoconf.as: Fix quoting for autom4te options.
7023         * lib/Autom4te/General.pm (shell_quote): New function, taken
7024         from coreutils, written by Jim Meyering.
7025         (mktmpdir): Use it.
7026         * bin/autom4te.in (files_to_options, handle_m4): Use shell_quote
7027         and open_quote.
7028         * bin/autoreconf.in (parse_args): Likewise.
7029         * bin/autoscan.in (main): Likewise.
7030         * bin/autoupdate.in (main): Likewise.
7031         * bin/autoheader.in: Likewise, fixing old insufficient escaping.
7032         * bin/ifnames.in: Likewise, XFile usage fixes.
7033         * tests/tools.at (autom4te and whitespace in file names): Extend
7034         test.  Test twice, with special characters allowed on w32, and the
7035         rest.  Test leading and trailing whitespace, for `open_quote'.
7036         (autotools and whitespace in file names): New, analogous test.
7037         Reported by Paul Eggert and Benoit Sigoure, additional suggestions
7038         by Russ Allbery and Eric Blake.
7040         Sync from Automake.
7041         * lib/Autom4te/Channels.pm, lib/Autom4te/Configure_ac.pm,
7042         lib/Autom4te/Struct.pm, lib/Autom4te/XFile.pm: Likewise.
7043         * lib/Autom4te/FileUtils.pm (open_quote): New function.
7044         (update_file, contents): Use it.
7046         * Makefile.am (autom4te-update): Rewrite for git.
7048 2007-12-04  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7050         * doc/autoconf.texi (autom4te Invocation, Autom4te Cache): Fix typos.
7052         Fix copyright years.
7053         * Makefile.am, doc/install.texi, lib/autoconf/fortran.m4,
7054         lib/autoconf/lang.m4, lib/freeze.mk: Likewise.
7056 2007-12-04  Eric Blake  <ebb9@byu.net>
7058         Manually resync with gnulib, since 'make cvs-update' no longer works.
7059         * build-aux/config.guess: New upstream version.
7060         * build-aux/config.sub: Likewise.
7062         When using older automake, don't downgrade build-aux/texinfo.tex.
7063         * configure.ac (AM_INIT_AUTOMAKE): Add no-texinfo.tex option.
7064         * doc/Makefile.am (TEXINFO_TEX): Add.
7066 2007-11-27  Paul Eggert  <eggert@cs.ucla.edu>
7068         Fix AC_C_BIGENDIAN bug caused by new awk method of substitution.
7069         * lib/autoconf/c.m4 (AC_C_BIGENDIAN): Don't comment out the
7070         #undef as this runs afoul of our new way of creating config.h.
7071         Problem reported by Jim Meyering in
7072         <http://lists.gnu.org/archive/html/autoconf-patches/2007-11/msg00164.html>.
7074 2007-11-26  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7076         Fix autom4te for unusual characters in input file names.
7077         * bin/autom4te.in (files_to_options): Quote active characters
7078         for the shell.
7079         * tests/tools.at (autom4te and white space in file names):
7080         New test.
7082         * doc/autoconf.texi (Limitations of Usual Tools) <awk>:
7083         Document that Tru64 awk always splits $0.
7085 2007-11-24  Stepan Kasal  <kasal@ucw.cz>
7087         * lib/autotest/general.m4 (AT_INIT): Do not extract the
7088         `#AT_STOP_...' line at the end of each test.
7090 2007-11-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7092         * lib/autotest/general.m4 (AT_INIT): For awk line number
7093         extraction script, ensure `$at_group' has a defined value
7094         even for the empty set, and properly quote its usage inside
7095         the awk script.
7097 2007-11-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7099         * doc/autoconf.texi (Shell Functions): New chapter.  Document
7100         IRIX sh $0 issue in functions, move content from ...
7101         (Portable Shell): ... here.
7102         (Shell Script Compiler): Note that shell functions are not
7103         totally unportable any more.
7105 2007-11-22  Stepan Kasal  <kasal@ucw.cz>
7106         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7108         * lib/autotest/general.m4 (AT_INIT): Exit awk script after
7109         extracting the line numbers of the last needed test.
7111 2007-11-20  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7113         * lib/autotest/general.m4 (AT_INIT) <at_func_create_debugging_script>:
7114         Fix quoting.
7116 2007-11-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7118         Fix IRIX testsuite debugging failures: $0 in functions.
7119         * lib/autotest/general.m4 (AT_INIT) <at_func_create_debugging_script>:
7120         Do not use $0 inside a function, as IRIX sh will set that to the
7121         function name rather than the script invocation name.
7123 2007-11-19  Paolo Bonzini  <bonzini@gnu.org>
7124         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7126         * lib/autotest/general.m4 (at_func_test): Use cached line numbers
7127         to extract test scripts.
7128         (AT_INIT): Extract and cache test script line numbers.
7130 2007-11-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7132         * lib/autotest/general.m4: Revert 2007-11-15 patch and
7133         subsequent fixups; the awk -> here-document conversion trashes
7134         performance too much with AIX sh.
7136 2007-11-18  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7138         * tests/local.at: Do not test m4, perl with AT_TESTED.
7140         Diagnose and guard against write errors dealing with config.status.
7141         The general idea is this: all write failures from `configure'
7142         writing `config.status' are indicated by $ac_write_error, which
7143         is only checked at the end.  This is safe because config.status
7144         code is not executed before the file is complete.  Other write
7145         failures, be they inside config.status, or in sub shell/awk
7146         scripts spawned from configure or config.status, typically need
7147         earlier checking, as their results are used right afterwards.
7148         * lib/autoconf/status.m4 (AC_OUTPUT): Initialize `ac_write_fail'
7149         before writing config.status, check afterwards.
7150         (_AC_OUTPUT_FILES_PREPARE, _AC_OUTPUT_FILE)
7151         (_AC_OUTPUT_HEADERS_PREPARE,_AC_OUTPUT_CONFIG_STATUS):
7152         Set `ac_write_error' for write failures to config.status.  Barf
7153         upon write failures to temporary files.
7154         Adjust note about closing and reopening the here-document.
7155         (_AC_OUTPUT_HEADER, _AC_OUTPUT_LINK, _AC_OUTPUT_COMMAND)
7156         (_AC_OUTPUT_MAIN_LOOP): Likewise, adjust note about closing and
7157         reopening the here-document.
7158         * tests/torture.at (AC_CONFIG_FILES, HEADERS, LINKS and COMMANDS):
7159         Ensure `ac_write_error' does not escape into config.status.
7160         Also, add a couple of code paths not yet exercised in the test
7161         suite: a config file with input from stdin, and a config header
7162         output to stdout.
7163         Suggestion for catching write errors by Bruno Haible.
7165 2007-11-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7167         Avoid error with Tru64 awk and testsuite lines with many words.
7168         * lib/autotest/general.m4 (AT_INIT): In the awk script that
7169         reads the testsuite, set the field separator to an unusual value,
7170         in order to not run over the limit of 199 fields.  Tru64 4.0D awk
7171         even splits the input if $i, i>0, was never accessed in the script.
7173         Revert 2007-10-17 change.
7174         * TODO: Multiline args in config files and headers mean something
7175         different and are not fixed, see
7176         <http://lists.gnu.org/archive/html/autoconf-patches/2007-05/msg00017.html>
7177         Report by Stepan Kasal.
7179         * doc/autoconf.texi (Generic Programs): Fix typo.
7181 2007-11-16  Stepan Kasal  <kasal@ucw.cz>
7183         AC_*_TOOL does not canonicalize the prefix
7184         * doc/autoconf.texi (Generic Programs): Do not say that
7185         the *_TOOL macros canonicalize, they simply use the `host_alias'.
7187 2007-11-16  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7189         Diagnose write errors in config.status instantiations.
7190         * lib/autoconf/status.m4 (_AC_OUTPUT_FILE)
7191         (_AC_OUTPUT_HEADER, _AC_OUTPUT_MAIN_LOOP): Bail out
7192         on write errors.
7193         * tests/torture.at (AC_CONFIG_FILES, HEADERS, LINKS and COMMANDS):
7194         Extend test to also check for some write error failures, using...
7195         <AT_CHECK_CONFIG_CREATION_NOWRITE>: ...this new macro.
7196         Report by Bruno Haible.
7198         Indentation fixups.
7199         * lib/autotest/general.m4 (AT_INIT) <at_func_log_failure>: Fix
7200         indentation.
7201         (_AT_CHECK): Use less indentation, to save space.
7203 2007-11-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7205         Add witness macro for @top_build_prefix@ substitution.
7206         * lib/autoconf/status.m4 (_AC_HAVE_TOP_BUILD_PREFIX): New macro.
7207         (_AC_OUTPUT_FILE): Mention it here.
7209 2007-11-15  Paolo Bonzini  <bonzini@gnu.org>
7210         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7212         * lib/autotest/general.m4 (at_func_test): Remove.
7213         (AT_INIT): Pre-extract test groups into separate files.
7214         (AT_CLEANUP): Source pre-extracted file instead of calling at_func_test.
7215         Remove at-test-source files together with the $at_group_dir.
7216         * tests/autotest.at (Long test source lines): New test.
7218 2007-11-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7220         Shell functions and variables may share a namespace.
7221         * doc/autoconf.texi (Portable Shell): Mention Solaris sh
7222         limitation.
7224 2007-11-14  Paul Eggert  <eggert@cs.ucla.edu>
7226         * lib/autoconf/types.m4 (_AC_TYPE_LONG_LONG_SNIPPET): Make comment match
7227         gnulib.
7229 2007-11-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7231         * lib/autoconf/status.m4: Fix a couple of comment typos.
7233         * lib/m4sugar/m4sh.m4 (AS_TMPDIR): Use $as_me, not $me.
7235 2007-11-13  Jim Meyering  <meyering@redhat.com>
7237         Clean up the rule to create "expr".
7238         * tests/Makefile.am (expr): Don't redirect directly to target.
7239         Redirect just once, not for each echo statement.
7240         Use $@, not literal "expr".
7242 2007-11-13  Paul Eggert  <eggert@cs.ucla.edu>
7244         Don't worry about preprocessor when testing long long.
7245         See: http://lists.gnu.org/archive/html/bug-gnulib/2007-11/msg00075.html
7246         * doc/autoconf.texi (Preprocessor Arithmetic): New section.
7247         (AC_TYPE_LONG_LONG_INT, AC_TYPE_UNSIGNED_LONG_LONG_INT):
7248         These no longer check for preprocessor flaws.
7249         * lib/autoconf/types.m4 (_AC_TYPE_LONG_LONG_SNIPPET):
7250         Do not check for preprocessor flaws.
7252 2007-11-13  Jim Meyering  <meyering@redhat.com>
7254         Adapt dependencies, now that a version change doesn't modify configure.ac
7255         * GNUmakefile: Remove "make clean" kludge.
7256         * lib/m4sugar/Makefile.am (version.m4): Depend on Makefile, not
7257         configure.ac.
7258         Don't redirect directly to target.
7259         Use $@, not literal "version.m4".
7261 2007-11-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7263         * doc/autoconf.texi (Making testsuite Scripts): Document
7264         ":;{" shorthand as in previous patch.
7266 2007-11-12  Paul Eggert  <eggert@cs.ucla.edu>
7268         * doc/autoconf.texi (Limitations of Builtins): Document problem
7269         with { ... } a bit more clearly.  Suggest ":;{" as a shorthand
7270         for the workaround.
7271         * lib/m4sugar/Makefile.am (version.m4): Detect 'echo' failure.
7272         Use ":;{" shorthand.
7273         * tests/Makefile.am ($(srcdir)/package.m4): Likewise.
7275 2007-11-12  Jim Meyering  <meyering@redhat.com>
7277         Add more non-srcdir build support.
7278         * GNUmakefile (dummy): Split a long line.
7279         Add -v option to autoreconf invocation.
7281         Remove the autoreconf-provided INSTALL, so that we regenerate it.
7282         * GNUmakefile (dummy): Remove INSTALL.
7284         Remove racy commands to build scripts in bin/ and tests/.
7285         * man/Makefile.am (.x.1): Now that scripts in bin/ and tests/
7286         are guaranteed to be built, remove the rules that tried to build
7287         them.  Before, with a parallel build, these rules could lead to
7288         two processes writing tests/wrapper.in concurrently.
7290         Build in man/ only *after* building in bin/ and tests/.
7291         * Makefile.am (SUBDIRS): The man-page-creation process runs $(MAKE)
7292         in both bin/ and tests/.
7294         Accommodate non-srcdir build-from-checkout.
7295         * build-aux/git-version-gen: Require an additional parameter: $srcdir.
7296         Use git's --git-dir=$srcdir/.git option.
7297         Add quotes, in case tarball_version_file contains shell meta-characters.
7298         * GNUmakefile (_curr-ver): Pass $(srcdir) to git-version-gen.
7299         * configure.ac: Pass "." to git-version-gen.
7301         Avoid spurious test failures due to version skew.
7302         * GNUmakefile (dummy): Run $(MAKE) clean after autoreconf -i.
7304 2007-11-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7306         Avoid warnings about conftest.dSYM directories on Mac OS X Leopard.
7307         * lib/autoconf/general.m4 (_AC_LINK_IFELSE, _AC_RUN_IFELSE):
7308         Remove conftest.dSYM directory.
7309         * lib/autoconf/fortran.m4 (_AC_PROG_FC_V_OUTPUT)
7310         (_AC_LANG_PROGRAM_C_, _AC_FC_MAIN, __AC_FC_NAME_MANGLING):
7311         Remove `conftest.*' recursively.
7312         * lib/autoconf/lang.m4 (AC_LINK_IFELSE): Likewise.
7313         * lib/autoconf/specific.m4 (_AC_SYS_LARGEFILE_MACRO_VALUE):
7314         Likewise.
7315         (_AC_COMPILER_OBJEXT_REJECT): Reject *.dSYM.
7316         * THANKS: Update.
7317         Report and analysis by Jeff Squyres and Peter O'Gorman.
7319 2007-11-12  Benoit Sigoure  <tsuna@lrde.epita.fr>
7321         Fix typos in variable names.
7322         * tests/semantics.at (test for AC_CHECK_LIB): s/at_m/ac_m/.
7324 2007-11-11  Benoit Sigoure  <tsuna@lrde.epita.fr>
7326         Document that $((expression)) is not portable.
7327         * doc/autoconf.texi (Shell Substitutions): Here.
7329 2007-11-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7331         Ignore configure --help* errors due to LINENO-impaired shells.
7332         * tests/torture.at (Configuring subdirectories, Deep Package):
7333         In the --help* tests in read-only trees, make `.' temporarily
7334         writable again for the `stderr' file, and ignore errors due to
7335         the attempt to write configure.lineno.
7336         Report by Patrick Welche.
7338 2007-11-10  Jim Meyering  <meyering@redhat.com>
7340         Generate package.m4 in build-dir, not srcdir.
7341         * tests/Makefile.am (package.m4): Adjust target.
7342         Don't redirect directly to $@.
7343         (CLEANFILES): Add package.m4.
7344         ($(TESTSUITE)): Depend on just-built package.m4, not the one
7345         in $(srcdir).
7346         When running $(AUTOTEST), search "." before searching $(srcdir).
7348         Avoid a race condition that would make parallel "distclean" fail.
7349         * tests/Makefile.am (distclean-generic): Replace the default,
7350         automake-provided rule with an identical one, but with an additional
7351         dependency on distclean-local.  Simply adding the dependency would
7352         cause automake not to emit the rule at all.
7353         * BUGS: Building with -jN works, now.
7355         Distribute git-version-gen.
7356         * Makefile.am (EXTRA_DIST): Add build-aux/git-version-gen,
7357         since GNUmakefile is distributed, and requires it for dist* rules.
7359         Remove two more generated files from version control.
7360         * INSTALL: Remove generated file.
7361         * lib/autoscan/autoscan.list: Remove generated file.
7363 2007-11-09  Paul Eggert  <eggert@cs.ucla.edu>
7365         * GNUmakefile (PATH): Remove stray apostrophes; they become
7366         part of PATH, which isn't wanted here.
7368 2007-11-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7370         New config files output variable `top_build_prefix'.
7371         * lib/autoconf/status.m4 (_AC_OUTPUT_FILE): Substitute
7372         `top_build_prefix'.
7373         * doc/autoconf.texi (Preset Output Variables): Document it.
7374         * NEWS: Update.
7375         Report by Bob Friesenhahn.
7377         Avoid expr for arithmetic evaluation if the shell accepts $((...)).
7378         * lib/autotest/general.m4 (AT_INIT) <at_func_arith>: New
7379         function, to parametrize arithmetic with expr vs. the shell.
7380         Use it where possible.
7381         Suggestion by Benoit Sigoure.
7383 2007-11-03  Benoit Sigoure  <tsuna@lrde.epita.fr>
7385         Adjust the documentation of autotest WRT atlocal.
7386         * doc/autoconf.texi (Making testsuite Scripts): It is not necessary,
7387         when using Automake, to write a rule to produce atlocal, since it's
7388         an AC_CONFIG_FILES.  Mention that atlocal.in needs to be
7389         distributed, not atconfig.in.
7391 2007-11-04  Eric Blake  <ebb9@byu.net>
7393         Update list information.
7394         * README: Mention new autoconf-commit list.
7395         * doc/autoconf.texi (Introduction): Mention autoconf-commit list.
7397 2007-11-04  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7399         * lib/autoconf/functions.m4 (_AC_FUNC_MALLOC_IF): Fix comment typo.
7401         * lib/m4sugar/Makefile.am (version.m4): Another bash bug workaround.
7403         * build-aux/.gitignore: Ignore mkinstalldirs.
7405         * doc/autoconf.texi (autoreconf Invocation): Fix an underfull line.
7407 2007-11-03  Jim Meyering  <meyering@redhat.com>
7409         s/-/./ in snapshot version string: 2.61a-256-8b556 -> 2.61a.256-8b556
7410         * build-aux/git-version-gen: This syncs from coreutils.
7412         Adjust the build procedure so "make check" works reliably.
7413         * README-hacking: Include an extra step between "make" and
7414         "make check" to ensure that the latter passes.
7416         Use just-built tools, when possible.
7417         * GNUmakefile (PATH): Set and export here, ...
7418         (dummy): ... rather than here.
7420 2007-11-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7421         and Andreas Schwab  <schwab@suse.de>
7423         * tests/Makefile.am ($(srcdir)/package.m4): Work around bash
7424         exit status bug.
7426 2007-11-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7428         * configure.ac (AC_PREREQ): Require version 2.60, for
7429         AC_PROG_SED, AC_PROG_GREP.
7431 2007-11-02  Benoit Sigoure  <tsuna@lrde.epita.fr>
7432         and Jim Meyering  <meyering@redhat.com>
7433         and Andreas Schwab <schwab@suse.de>
7434         and Eric Blake  <ebb9@byu.net>
7436         Document a bug in GNU Bash with compound commands and redirections.
7437         * doc/autoconf.texi (Limitations of Builtins): Mention that GNU
7438         Bash doesn't properly set $? when `{ ... } >/bad' fails, and give
7439         workaround.
7441 2007-11-03  Eric Blake  <ebb9@byu.net>
7443         Support m4 1.4.5 in testsuite.
7444         * tests/torture.at (Define a newline): Exclude line numbers in
7445         error message.
7446         Reported by Ralf Wildenhues.
7448 2007-11-03  Jim Meyering  <meyering@redhat.com>
7450         Remove automake-provided files from version control.
7451         * build-aux/elisp-comp: Remove file.
7452         * build-aux/install-sh: Remove file.
7453         * build-aux/missing: Remove file.
7454         * build-aux/mdate-sh: Remove file.
7455         * build-aux/.gitignore: New file.
7456         Suggestion from Ralf Wildenhues.
7458 2007-11-03  Eric Blake  <ebb9@byu.net>
7460         Adjust version comparison to account for git snapshot numbers.
7461         * lib/m4sugar/m4sugar.m4 (_m4_version_unletter): Also treat - as a
7462         component separator.
7463         * doc/autoconf.texi (Number processing Macros)
7464         <m4_version_compare>: Document this change.
7465         * tests/m4sugar.at (m4@&t@_version_compare): Test it.
7467 2007-10-30  Bruno Haible  <bruno@clisp.org>
7469         * lib/autoconf/types.m4 (_AC_TYPE_LONG_LONG_SNIPPET): New macro,
7470         extracted from AC_TYPE_LONG_LONG_INT and AC_TYPE_UNSIGNED_LONG_LONG_INT.
7471         (AC_TYPE_LONG_LONG_INT, AC_TYPE_UNSIGNED_LONG_LONG_INT): Use it.
7472         Fixes problem with Sun C 5.[0-8] in 32-bit mode, reported in
7473         <http://lists.gnu.org/archive/html/autoconf-patches/2007-10/msg00210.html>
7474         Suggested by Paul Eggert.
7476 2007-10-28  Jim Meyering  <meyering@redhat.com>
7478         * README-hacking: Autoconf, Automake, and Perl are required to build.
7479         List Gzip and Tar separately.  Suggested by Ralf Wildenhues.
7481 2007-10-28  Jim Meyering  <meyering@redhat.com>
7483         README-hacking: Recommend running autoreconf -vi.
7484         * GNUmakefile (dummy): Use autoreconf -i, with appropriate PATH,
7485         so that we use just-built tools when they're available.
7486         Suggestions from Ralf Wildenhues.
7488 2007-10-28  Jim Meyering  <meyering@redhat.com>
7490         Make inter-release --version output more useful.
7492         Now, each unofficial build has a version "number" like 2.61a-19-58dd,
7493         which indicates that it is built using the 19th change set
7494         (in _some_ repository) following the "v2.61a" tag, and that 58dd
7495         is a prefix of the commit SHA1.
7496         * build-aux/git-version-gen: New file.
7497         * configure.ac: Run it to set the version.
7498         (AM_INIT_AUTOMAKE): Don't check NEWS here.
7499         * Makefile.am (dist-hook): Arrange so that .version appears only
7500         in distribution tarballs, never in a checked-out repository.
7501         * .gitignore: Add .version here, too.  Just in case.
7502         * tests/Makefile.am ($(srcdir)/package.m4): Depend on Makefile,
7503         not configure.ac, now that the version number changes automatically.
7505         Ensure that $(VERSION) is up to date for dist-related targets.
7506         * GNUmakefile: Arrange to rerun autoconf, if the version reported by
7507         git-version-gen doesn't match $(VERSION), but only for dist targets.
7509 2007-10-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7511         Fix `Deep Package' failure with a configure script early in PATH
7512         * tests/torture.at (Deep Package): Add `.' early in PATH.
7513         Report by Jim Meyering.
7515 2007-10-27  Jim Meyering  <meyering@redhat.com>
7517         Remove all generated files from version control.
7518         * aclocal.m4: Remove.
7519         * configure: Remove.
7520         * Makefile.in: Remove, along with all other Makefile.in in subdirs.
7521         * .gitignore: Add aclocal.m4, configure and Makefile.in.  Sort.
7522         * README-hacking: New file: how to build from just-checked-out sources.
7524 2007-10-23  Eric Blake  <ebb9@byu.net>
7526         Improve corner case of m4_expand.
7527         * lib/m4sugar/m4sugar.m4 (m4_expand, _m4_expand): Rewrite more
7528         efficiently.
7529         * tests/m4sh.at (AS@&t@_HELP_STRING): Test overquoted comma.
7530         * doc/autoconf.texi (Evaluation Macros) <m4_expand>: Update
7531         documentation.
7533 2007-10-23  Paul Eggert  <eggert@cs.ucla.edu>
7535         * doc/make-stds.texi: Update from gnulib.
7537 2007-10-22  Paul Eggert  <eggert@cs.ucla.edu>
7538         and Eric Blake  <ebb9@byu.net>
7540         * lib/autoconf/c.m4 (AC_C_RESTRICT): Work around Sun C++ compatibility
7541         problem reported by Bruno Haible in
7542         <http://lists.gnu.org/archive/html/bug-autoconf/2007-10/msg00027.html>.
7544 2007-10-22  Eric Blake  <ebb9@byu.net>
7546         * doc/autoconf.texi (Particular Types): Mention bug in HP-UX 11.00
7547         preprocessor.
7549 2007-10-22  Paul Eggert  <eggert@cs.ucla.edu>
7551         Don't check for bug in HP-UX 11.00 cpp.
7552         * lib/autoconf/types.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT):
7553         Use -1ull rather than -1u, since that causes problems with gnulib; see
7554         <http://lists.gnu.org/archive/html/bug-gnulib/2007-10/msg00329.html>.
7556 2007-10-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7558         * tests/autotest.at (Backquote command substitution)
7559         (Multiline backquote command substitution)
7560         (Parenthetical command substitution)
7561         (Multiline parenthetical command substitution): Fix typos in
7562         test names.
7564 2007-10-21  Eric Blake  <ebb9@byu.net>
7566         * configure: Regenerate.
7568 2007-10-21  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7570         Fix config status generation with Tru64 ksh.
7571         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE): Fix
7572         escaping of backslash in here-documents.
7574         Fix `Deep Package' test failure on FreeBSD.
7575         * tests/torture.at (Deep Package): Do not add `.' to $PATH
7576         unnecessarily.  Do not try running `/bin/sh configure' with a
7577         configure script to be found in $PATH, if the shell does not do
7578         this resolution.  Fixes test failure on FreeBSD.
7580         Fix config header generation with AIX awk.
7581         * lib/autoconf/status.m4 (_AC_OUTPUT_HEADERS_PREPARE): In awk
7582         script, use helper array D_is_set, as `" 0"' does not evaluate
7583         to true for AIX awk.
7585 2007-10-21  Eric Blake  <ebb9@byu.net>
7587         * tests/autotest.at (Banners): Reinstate test, with typo
7588         corrected.
7590 2007-10-20  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7592         * lib/autotest/general.m4 (Defaults): Validate input ranges ...
7593         <at_func_validate_ranges>: ... using this new function.
7594         * tests/autotest.at (Keywords and ranges): Test invalid ranges.
7595         Test --list with ranges and keywords.
7596         (Banners): Remove one now-failing test.
7598 2007-10-20  Eric Blake  <ebb9@byu.net>
7600         Fix testsuite --list subset.
7601         * lib/autotest/general.m4 (AT_INIT) <at_list_p>: Swap newlines
7602         back to spaces, before listing subset of tests.
7603         Reported by Ralf Wildenhues.
7605 2007-10-19  Eric Blake  <ebb9@byu.net>
7607         s/parenthesis/parentheses/ where appropriate.
7608         * doc/autoconf.texi: Fix typos.
7609         * lib/m4sugar/m4sugar.m4: Likewise.
7610         Reported by Ralf Wildenhues.
7612         Document m4_expand limitation.
7613         * lib/m4sugar/m4sugar.m4 (m4_expand): Mention problem with
7614         unbalanced parse.
7615         * doc/autoconf.texi (Pretty Help Strings, Evaluation Macros)
7616         (Writing Testsuites): Mention limitations inherited from
7617         m4_expand.
7619         Improve AT_BANNER handling.
7620         * lib/autotest/general.m4 (BANNERS): New named diversion.
7621         (TESTS_END): Diversion no longer used.
7622         (AT_INIT) <at_func_banner, BANNERS>: Factor all banners into a
7623         shell function, which prints only as needed, using an associative
7624         array of banner text from a special diversion.
7625         <PARSE_ARGS_END>: No longer need awk to find banners.
7626         <TESTS>: Banners are no longer processed by main driver loop, so
7627         we no longer need case statement.
7628         (AT_BANNER): Rewrite to populate new diversion.
7629         (AT_SETUP): Each test invokes its own banner.  No output is needed
7630         to the TESTS diversion.
7631         * doc/autoconf.texi (Writing Testsuites): Document slight
7632         semantics change.
7633         * tests/autotest.at (AT_BANNERS): Enhance test.
7634         * NEWS: Document AT_BANNER.
7636         Document and test AT_BANNER.
7637         * doc/autoconf.texi (Writing Testsuites): Document AT_BANNER.
7638         * tests/autotest.at (AT_CHECK_EGREP): Share between tests.
7639         (AT_CHECK_BANNERS): New test.
7641         Doc touchups.
7642         * doc/autoconf.texi (Text processing Macros) <m4_strip>
7643         <m4_text_wrap>: Clarify and fix typos.
7645 2007-10-18  Eric Blake  <ebb9@byu.net>
7647         Ignore `make dist' changelogs in testsuite.log.
7648         * lib/autotest/general.m4 (AT_INIT) <ChangeLogs>: Prune
7649         directories matching AT_PACKAGE_TARNAME-*.
7651         Fix AT_TESTED, AT_KEYWORDS.
7652         * lib/m4sugar/m4sugar.m4 (m4_append_uniq): Warn if separator
7653         occurs in string, as duplicates may be added.
7654         (_m4_append_uniq): New helper macro.
7655         (m4_append_uniq_w): New macro.
7656         * lib/autotest/general.m4 (AT_TESTED, AT_KEYWORDS): Fix
7657         duplication bug by using new macro.
7658         (AT_INIT) <at_tested>: Restore newline separators.  Invoke tested
7659         programs with stdin redirected, so programs that don't
7660         understand --version won't try to behave interactively.
7661         * tests/autotest.at (Tested programs): Catch this bug.
7662         * tests/m4sugar.at (m4@&t@_append): Test new macro.
7663         * tests/local.at (AT_TESTED): Add m4, perl.
7664         * doc/autoconf.texi (Text processing Macros): Document
7665         m4_append_uniq_w, and update text on m4_append.
7666         * NEWS: Document the addition.
7668 2007-10-17  Eric Blake  <ebb9@byu.net>
7670         Function cleanup.
7671         * lib/autotest/general.m4 (_AT_CREATE_DEBUGGING_SCRIPT): Convert
7672         from m4 macro...
7673         (AT_INIT) <at_func_create_debugging_script>: ...to shell
7674         function.
7675         (AT_INIT): Defer function declarations until after --help,
7676         --version.  Format functions consistently, trying to fit in 80
7677         columns.
7678         (TEST_FUNCTIONS): Based on recent changes, rename...
7679         (TEST_GROUPS): ...to this.
7681         Reject FreeBSD m4.
7682         * m4/m4.m4 (AC_PROG_GNU_M4): Also check for frozen file support.
7683         * configure: Regenerate.
7684         Reported by Bob Friesenhahn.
7686         Test recent additions.
7687         * tests/m4sugar.at (m4@&t@_map, m4@&t@_combine)
7688         (m4@&t_max and m4@&t_min): New tests.
7689         * doc/autoconf.texi (Evaluation Macros) <m4_apply>: Enhance
7690         description.
7692 2007-10-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7694         * TODO: multiline args in config files and headers work now.
7696         Autotest: do not use shell functions for individual tests.
7697         * lib/autotest/general.m4 (AT_INIT) <at_func_test>: Merely
7698         extract the source test source, do not invoke it.
7699         (AT_SETUP, AT_CLEANUP): Source test code outside shell function.
7700         * tests/autotest.at (Fallacy): Actually let the inner suite fail,
7701         expect exit status of 1.
7702         * tests/autotest.at (Skip): New test, for bogus zsh exit status.
7704         * lib/autotest/general.m4 (at_func_test): Fix test extraction
7705         script.
7707 2007-10-17  Eric Blake  <ebb9@byu.net>
7709         Fix m4_combine for empty suffix list.
7710         * lib/m4sugar/m4sugar.m4 (m4_combine): Check for suffix list.
7711         * doc/autoconf.texi (Text processing Macros): Document this.
7713         Add m4_combine, based on Libtool's lt_combine.
7714         * lib/m4sugar/m4sugar.m4 (m4_combine): New macro.
7715         * doc/autoconf.texi (Text processing Macros): Document it.
7716         * NEWS: Likewise.
7718 2007-10-16  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7720         Fix `configure --help=recursive' in unconfigured/read-only trees.
7721         * lib/m4sugar/m4sh.m4 (_AS_LN_S_PREPARE): Avoid errors when `.'
7722         is not writable, use 'cp -p' in this case, in the hope that it
7723         will not actually be needed.  Still try removing files, in case
7724         of other write errors.
7725         * lib/autoconf/general.m4 (_AC_INIT_SRCDIR): For ac_confdir,
7726         use $as_myself, not $0.
7727         (_AC_INIT_HELP): For --help=recursive, if the subdir does not
7728         exist, try again in the the source tree.  This change assumes
7729         that the subpackage configure script is capable of running
7730         --help=recursive in the source tree.
7731         * tests/torture.at (Configuring subdirectories, Deep Package):
7732         Adjust tests to expose both issues, also try invocation as
7733         `sh configure ...' and plain `configure ...' with PATH adjusted.
7734         * NEWS, THANKS: Update.
7735         Report by Hans Ulrich Niedermann.
7737 2007-10-16  Paul Eggert  <eggert@cs.ucla.edu>
7739         Check for 64-bit int errors in HP-UX 10.20 preprocessor.
7740         Problem reported by H.Merijn Brand in
7741         <http://lists.gnu.org/archive/html/bug-tar/2007-10/msg00018.html>.
7742         * lib/autoconf/types.m4 (AC_TYPE_LONG_LONG_INT):
7743         (AC_TYPE_UNSIGNED_LONG_LONG_INT):
7744         Check that preprocessor handles 64-bit ints, too.
7746 2007-10-16  Eric Blake  <ebb9@byu.net>
7748         m4_map is a looping construct.
7749         * lib/m4sugar/m4sugar.m4 (m4_map, _m4_map, m4_map_sep): Move.
7751         Fix m4_map, and add some more utility macros.
7752         * lib/m4sugar/m4sugar.m4 (m4_apply, m4_count, m4_dquote_elt)
7753         (m4_echo, m4_make_list): New documented macros.
7754         (_m4_quote, _m4_shift2): New helper macros.
7755         (m4_map): Change semantics to allow calling macro without
7756         arguments.
7757         (m4_map_sep): Likewise.  Also change semantics to quote separator,
7758         to match m4_join and m4_append.
7759         (m4_version_unletter): Fix use of m4_map.
7760         * doc/autoconf.texi (Evaluation Macros): Document m4_apply,
7761         m4_count, m4_dquote_elt, m4_echo, m4_make_list.
7762         (Text processing Macros): Mention m4_dquote as a faster
7763         alternative to joining with commas.
7764         (Looping constructs): Document m4_map, m4_map_sep.
7765         * NEWS: Mention new macros.
7767         A few more m4sugar improvements, to benefit libtool.
7768         * lib/m4sugar/m4sugar.m4 (m4_bpatsubsts, _m4_shiftn): Reduce size
7769         of expansion by avoiding extra uses of $@.
7770         (m4_shiftn): Avoid extra dnl, and forbid shifting by 0.
7771         (_m4_cdr): New helper macro.
7772         (_m4_map, m4_map_sep): Use it to reduce size of expansion.
7773         (_m4_shift3): New helper macro.
7774         (_m4_foreach): Swap argument order, and use new macro to reduce
7775         size of expansion.
7776         * doc/autoconf.texi (Looping constructs) <m4_shiftn>: Mention that
7777         count must be positive.
7779         * doc/autoconf.texi (Evaluation Macros) <m4_expand>: Fix typo.
7780         Reported by Ralf Wildenhues.
7782 2007-10-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7784         * doc/autoconf.texi (Portable Shell): Improve description of zsh
7785         4.x function subshell bug with exit and trap.
7787 2007-10-15  Eric Blake  <ebb9@byu.net>
7789         Enhance AS_HELP_STRING.
7790         * lib/m4sugar/m4sugar.m4 (m4_text_wrap): Don't expand arguments,
7791         and reduce number of expansions.
7792         * lib/m4sugar/m4sh.m4 (AS_HELP_STRING): Rework to use m4_expand,
7793         and to take indent and wrap column numbers.
7794         * tests/m4sh.at (AS@&t@_HELP_STRING): Update the test.
7795         * doc/autoconf.texi (Pretty Help Strings): Document details about
7796         arguments.
7797         (Text processing Macros): Minor tweaks.
7798         * NEWS: Document this change.
7800         Fix 2007-10-03 regression with AT_SETUP([a, b]).
7801         * lib/m4sugar/m4sugar.m4 (m4_expand): New macro.
7802         (m4_text_box): Use it.
7803         * lib/autotest/general.m4 (AT_SETUP): Use it.
7804         * lib/m4sugar/m4sh.m4 (_AS_RUN): Use it.
7805         * tests/autotest.at (AT_CHECK_AT_TITLE_CHAR): Test this.
7806         * NEWS: Revert caveat about semantics change on comma.
7807         * doc/autoconf.texi (Evaluation Macros): Document m4_expand.
7809 2007-10-13  Eric Blake  <ebb9@byu.net>
7811         Change m4_join to match libtool's ltsugar semantics.
7812         * lib/m4sugar/m4sugar.m4 (m4_join): Just define this, not defun.
7813         Ignore empty arguments, using...
7814         (_m4_join): ...this new helper.
7815         * tests/m4sugar.at (m4@&t@_join): New test.
7816         * doc/autoconf.texi (Text processing Macros): Document new
7817         semantics of m4_join.
7819         Make AC_PREREQ faster and more robust.
7820         * lib/m4sugar/m4sugar.m4 (m4_ignore, m4_unquote): New macros.
7821         (m4_version_prereq): Inline constant expansions.
7822         (m4_list_cmp): Reduce number of expansions, by avoiding m4_case.
7823         Rewrite in terms of [] list, not () list.
7824         (_m4_list_cmp, _m4_version_unletter): New helper macros.
7825         (m4_version_unletter): Write wrapper around new implementation to
7826         preserve old semantics.
7827         (m4_version_compare): Pass correct type of list, and avoid
7828         overhead of flattening expressions too early.
7829         (m4_do): Move to be near other quoting macros.
7830         (m4_max, m4_min): Always result in decimal output.
7831         * doc/autoconf.texi (Looping constructs): Add m4_car, m4_cdr.
7832         Move m4_do...
7833         (Evaluation Macros): ...here.  Add m4_ignore, m4_unquote.
7834         (Text processing Macros): Move m4_version_compare...
7835         (Number processing Macros): ...to this new node; document m4_cmp,
7836         m4_list_cmp, m4_sign, m4_max, m4_min.
7837         * tests/m4sugar.at (m4@&t@_version_compare): Enhance test, to pick
7838         up on bugs fixed by this patch.
7839         * NEWS: Document new macros.
7841 2007-10-12  Eric Blake  <ebb9@byu.net>
7843         * doc/autoconf.texi (Text processing Macros): Fix bad merge.
7844         (Reporting Messages): Fix underfull hbox.
7846         Some more m4sugar documentation.
7847         * lib/m4sugar/m4sugar.m4: Clean up macro order.
7848         * doc/autoconf.texi (Programming in M4): Lighten the warning on
7849         using m4sugar; it is stabilizing and useful.
7850         (Redefined M4 Macros): Touch up wording on M4 builtins; sort.  Add
7851         m4_divert, m4_undivert, __file__, __line__, __oline__.
7852         (Diagnostics): New node, documenting m4_assert, m4_errprintn,
7853         m4_fatal, m4_location, m4_warn.
7854         (Diversion support): New node, documenting m4_divert_push,
7855         m4_divert_pop, m4_divert_text, m4_divert_once.
7856         (Text processing Macros): Sort.  Add m4_flatten, m4_join,
7857         m4_newline, m4_strip, m4_text_box, m4_text_wrap.
7858         (Reporting Messages): Mark AC_DIAGNOSE, AC_WARNING, and AC_FATAL
7859         as obsolescent.
7860         (Printing Messages): Change cross-reference.
7862         Document interaction of recent m4_append change with Libtool HEAD.
7863         * lib/m4sugar/m4sugar.m4 (m4_append): Document semantics change.
7864         (m4_append_uniq): Add new parameters, based on lt_append_uniq.
7865         * tests/m4sugar.at (m4@&t@_append): New test.
7866         * NEWS: Document semantics change.
7867         * doc/autoconf.texi (Text processing Macros): Likewise.
7869         s/AC_VERSION/AC_AUTOCONF_VERSION/.
7870         * doc/autoconf.texi (Versioning): Change the name.
7871         * NEWS: Likewise.
7872         * lib/autoconf/general.m4 (AC_AUTOCONF_VERSION): Likewise.
7873         * tests/tools.at (autoconf: AC_AUTOCONF_VERSION): Likewise.
7874         Suggested by Ralf Wildenhues.
7876         Namespace cleanup.
7877         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE)
7878         (_AC_OUTPUT_HEADERS_PREPARE): Convert here-doc delimiters into
7879         autoconf namespace.
7880         * doc/autoconf.texi (Programming in M4sugar, Forbidden Patterns)
7881         (Programming in M4sh, Macro Names): Beef up description of
7882         namespaces reserved for autoconf.
7883         * configure: Regenerate.
7885 2007-10-12  Eric Blake  <ebb9@byu.net>
7886         and Paolo Bonzini  <bonzini@gnu.org>
7888         Speed up execution of subset of testsuite.
7889         * lib/autotest/general.m4 (TEST_FUNCTIONS): New diversion.
7890         (AT_INIT) <at_func_test>: New shell function.
7891         (AT_INIT) <at_myself>: New variable, set to absolute $as_myself.
7892         (AT_INIT) <at_test_source> New variable, names file that holds
7893         current test function definition.
7894         (AT_SETUP): Start the shell function at_func_test_#, into the
7895         TEST_FUNCTIONS diversion.
7896         (AT_CLEANUP): End the shell function.  Simplify the TESTS
7897         diversion to invoke the function.
7899 2007-10-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7901         * .gitignore: Ignore tags and TAGS files.
7903 2007-10-11  Eric Blake  <ebb9@byu.net>
7905         Config header generation followup.
7906         * lib/autoconf/general.m4 (_AC_DEFINE_Q): Check for raw newlines,
7907         which won't work with the preprocessor nor with the awk
7908         implementation.
7909         * tests/torture.at (Define a newline): Test raw newline detection,
7910         removing the XFAIL.
7911         * doc/autoconf.texi (Defining Symbols): Document recent change to
7912         allow backslash-newline.
7913         * THANKS: Update.
7915 2007-10-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7917         * lib/autotest/general.m4: Put function braces in separate line.
7919 2007-10-10  Eric Blake  <ebb9@byu.net>
7921         Avoid some overhead from m4_defn and m4_popdef.
7922         * lib/m4sugar/m4sugar.m4 (m4_defn, m4_popdef, m4_undefine): Only
7923         pass on first argument, since we are documented that way.
7924         (m4_for, m4_append_uniq, m4_text_wrap): Optimize out defined-ness
7925         check where it is safe to do so.
7926         (m4_append): Likewise, and quote the separator.
7927         (m4_text_box): Likewise, and avoid regex, also be robust to
7928         expansion and quadrigraphs.
7930         Another AC_DEFINE speedup.
7931         * lib/autoconf/general.m4 (AC_DEFINE_TRACE): Move parameter
7932         elision...
7933         (_AC_DEFINE_Q): ...here, and only do it once.
7934         * lib/autoconf/functions.m4 (AC_CHECK_FUNCS): Avoid overquoting.
7935         * lib/m4sugar/m4sh.m4 (AS_LITERAL_IF): Fix m4_defn overquoting
7936         introduced 2007-10-05.
7938         Whitespace cleanup.
7939         * lib/autoconf/general.m4: Use consistent indentation.
7940         * configure: Regenerate.
7942         * NEWS: Announce recent round of speed optimizations.
7944 2007-10-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7946         * NEWS: Announce shell function usage in Autotest.
7948 2007-10-10  Eric Blake  <ebb9@byu.net>
7949         and Paul Eggert  <eggert@cs.ucla.edu>
7951         Reduce number of forks at startup.
7952         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Speed up NLS
7953         sanitization.
7954         * configure: Regenerate.
7956 2007-10-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7957         and Paul Eggert  <eggert@cs.ucla.edu>
7959         Use awk for config header generation.
7960         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE): Fix comments.
7961         (_AC_OUTPUT_HEADERS_PREPARE): New macro.  Rewrite of the config
7962         header machinery for use with awk and placement outside the main
7963         config.status instantiation loop.  Retain multi-line defines
7964         through backslash-newline combinations, do not split the script
7965         any more.
7966         (_AC_OUTPUT_HEADER): Simplify accordingly, use $AWK.
7967         (_AC_OUTPUT_MAIN_LOOP): Call _AC_OUTPUT_HEADERS_PREPARE if
7968         needed.
7969         (AC_OUTPUT_MAKE_DEFS): Remove backslash-newline combinations
7970         from define values.
7971         * NEWS: Update.
7972         * tests/torture.at (#define header templates): Extend test by
7973         several more cases: white space before and after `#', macros
7974         with parameters in config.hin and as defines, multi-line macro
7975         values.
7976         (Torturing config.status): Use a define value twice the length
7977         in order to exercise the awk literal string limit.
7978         (Substitute and define special characters): Also try special
7979         delimiter, to exercise the special-case code.
7980         Suggestion by Eric Lemings.
7982 2007-10-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7984         * tests/local.at (AT_COPYRIGHT): Bump copyright years.
7986 2007-10-09  Eric Blake  <ebb9@byu.net>
7988         Improve header of bin/autoconf.
7989         * lib/m4sugar/m4sh.m4 (AS_INIT): Add a 'generated from' notice.
7990         * lib/autoconf/general.m4 (_AC_INIT_NOTICE): Override new notice
7991         from M4sh.
7992         * bin/autoconf.as: Put copyright up front in generated file.
7994         * bin/autoconf.as (exit_missing_arg): Font-lock tweak.
7996 2007-10-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7998         * doc/install.texi (Basic Installation): Document `uninstall'.
7999         * INSTALL: Regenerate.
8000         Suggestion by Roberto Bagnara.
8002 2007-10-08  Paul Eggert  <eggert@cs.ucla.edu>
8004         * doc/autoconf.texi (Limitations of Usual Tools): V7 awk had 'index'.
8006         Adjust doc. to match latest gnulib.
8007         * build-aux/texinfo.tex: Sync from gnulib.
8008         * doc/standards.texi: Likewise.
8009         * doc/autoconf.texi (Copying This Manual): Rename to "GNU Free
8010         Documentation License" and remove the subsection.  This simplifies
8011         the manual a bit and is more like what other GNU projects do
8012         nowadays.
8014 2007-10-08  Eric Blake  <ebb9@byu.net>
8016         Use recent changes.
8017         * configure: Regenerate.
8019         Fix regression in m4_text_wrap from 2007-10-05.
8020         * lib/m4sugar/m4sugar.m4 (m4_max, m4_min): New macros.
8021         (m4_sign): Sort.
8022         (m4_text_wrap): Fix off-by-one error in rewrite from m4_for to
8023         m4_format.
8024         * lib/autotest/general.m4 (AT_SETUP): Avoid negative width.
8025         * tests/autotest.at (Long test title, Longer test title): Test
8026         this fix, beyond what AS_HELP_STRING already tests.
8028         Avoid m4 warnings on bad m4_format usage.
8029         * lib/m4sugar/m4sugar.m4 (m4_text_wrap): Use %*s, in case width
8030         evaulates to 0.
8031         * lib/autotest/general.m4 (AT_SETUP): Likewise; also ensure that
8032         enough arguments are provided.
8034 2007-10-06  Paolo Bonzini  <bonzini@gnu.org>
8036         * doc/autoconf.texi (Shell portability): Document shell function
8037         portability.
8039 2007-10-06  Paolo Bonzini  <bonzini@gnu.org>
8041         * lib/autotest/general.m4 (AT_INIT): Add at_func_diff_devnull,
8042         at_func_check_skip, at_func_check_status, at_func_filter_trace,
8043         at_func_log_failure shell functions.  Use test -s to avoid
8044         useless diff invocations.
8045         (at_func_check_newline): Renamed from at_check_newline.
8046         (AT_SETUP): Define AT_captured_files to empty.
8047         (AT_DIFF_STDERR(*), AT_DIFF_STDOUT(*)): New, extracted from _AT_CHECK.
8048         (_AT_CHECK): Replace m4_case with m4_ifdef/m4_indir.  Use all
8049         the shell functions.
8051 2007-10-05  Paul Eggert  <eggert@cs.ucla.edu>
8053         Don't assume "." is writeable, for commands like "autoconf --version".
8054         * lib/m4sugar/m4sh.m4 (_AS_PATH_SEPARATOR_PREPARE): Use a
8055         different heuristic instead, one that doesn't rely on creating
8056         files.
8058         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ARGS): Handle "///"
8059         correctly.
8061 2007-10-05  Jim Meyering  <meyering@redhat.com>
8063         Avoid makeinfo warnings.
8064         * doc/autoconf.texi (Redefined M4 Macros): Add a `,' after @xref.
8065         (Looping constructs): Add ` ' after @defmac'd name, m4_do.
8067 2007-10-05  Eric Blake  <ebb9@byu.net>
8069         Resolve Python issue 1676135 regarding configure directory args.
8070         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ARGS): Strip trailing
8071         slashes from directory arguments.
8072         * tests/base.at (configure directories): New test.
8073         * doc/autoconf.texi (Installation Directory Variables): Document
8074         the change.
8075         * NEWS: Likewise.
8076         * THANKS: Update.
8077         Reported by Björn Lindqvist.
8079         Provide better short-circuiting operation.
8080         * lib/m4sugar/m4sugar.m4 (m4_cond, m4_newline): New macros.
8081         (m4_text_wrap): Use it.  Also avoid useless m4_for.
8082         * lib/m4sugar/m4sh.m4 (_AS_QUOTE_IFELSE, AS_LITERAL_IF): Use
8083         new macro.
8084         (_AS_IDENTIFIER_IF): Likewise, and fix bug when $1 is [,].
8085         * lib/autotest/general.m4 (_AT_DECIDE_TRACEABLE): Use new macros
8086         to avoid regexps.
8087         * doc/autoconf.texi (Redefined M4 Macros): Expand m4_if
8088         documentation.  Sort m4_mkstemp, m4_undefine.  Move m4_ifndef...
8089         (Conditional constructs): ...here, to new section.  Also document
8090         m4_cond, m4_ifval, m4_n, m4_ifvaln, m4_ifset, m4_case, m4_bmatch,
8091         m4_bpatsubsts, and m4_default.
8092         (Looping constructs): Document m4_shiftn, m4_shift2, m4_shift3,
8093         m4_do.
8095 2007-10-04  Eric Blake  <ebb9@byu.net>
8097         Fix recent testsuite failures.
8098         * lib/autotest/general.m4 (AT_INIT, AT_SETUP): Double-quote text
8099         that must not be re-expanded after AS_ESCAPE.
8100         * lib/m4sugar/m4sh.m4 (_AS_IDENTIFIER_IF): Don't expand $1 when
8101         checking if it is an identifier.
8103         Whitespace cleanup.
8104         * lib/autotest/general.m4 (_AT_CREATE_DEBUGGING_SCRIPT): Avoid
8105         leading whitespace, as it caused space-tab in testsuite.
8106         (AT_INIT): Avoid trailing newlines in testsuite.
8108         One more round of m4_foreach_w speedups.
8109         * lib/m4sugar/m4sugar.m4 (m4_flatten): Only use regex if newline
8110         is present.
8111         (_m4_split): Avoid useless expansions inside definition.  Move
8112         argument defaulting...
8113         (m4_split): ...here.  Change alternate quote to something less
8114         likely to appear in $1.  Also, special case space as regexp...
8115         (m4_foreach_w): ...to avoid regexp on single-term list.
8116         (m4_default, m4_defn, m4_popdef, m4_undefine, _m4_foreach): Avoid
8117         useless expansions inside definition.
8118         * tests/m4sugar.at (m4@&t@_split): Add tests.
8120 2007-10-04  Paolo Bonzini  <bonzini@gnu.org>
8122         * general.m4 (AT_INIT): Add at_check_newline function.
8123         (_AT_DECIDE_TRACEABLE): Include at_traceon test, use shell function.
8124         (_AT_CHECK): Don't use at_trace_this.
8126 2007-10-04  Paolo Bonzini  <bonzini@gnu.org>
8128         Fix previous commit.
8129         * lib/autotest/general.m4 (AT_LINE): Fix regex.
8131 2007-10-04  Eric Blake  <ebb9@byu.net>
8133         Speed up building testsuites.
8134         * lib/autotest/general.m4 (AT_LINE): Only use regex when file
8135         changed since last time.  Use simpler regex.
8137 2007-10-03  Eric Blake  <ebb9@byu.net>
8139         Optimize checking for identifiers.
8140         * lib/m4sugar/m4sh.m4 (AS_IDENTIFIER_IF, _AS_IDENTIFIER_IF): New
8141         macros, more efficient than regex on m4_re_word.
8142         * lib/autoconf/general.m4 (AC_SUBST, AC_DEFINE_TRACE_LITERAL):
8143         Rewrite in terms of new macro.  As a side-effect, AC_DEFINE can
8144         now use @&t@.
8145         * configure: Regenerate.
8147         Remove some XFAILs, and make AT_SETUP output line up.
8148         * lib/autotest/general.m4 (AT_SETUP): Only expand description
8149         once; thereafter, use its expansion, properly quoted.
8150         * tests/autotest.at (AT_CHECK_AT_TITLE): Also check macro
8151         expansion with arguments, and check for aligned output.
8152         (AT_CHECK_AT_TITLE_CHAR): Remove XFAILs for tests that now pass.
8153         Add a test for macros with parameters.
8154         * NEWS: Document the semantics change.
8155         * tests/base.at: Fix test titles containing commas.
8156         * tests/compile.at: Likewise.
8157         * tests/tools.at: Likewise.
8158         * tests/torture.at: Likewise.
8160         Another round of regex avoidance.
8161         * lib/m4sugar/m4sugar.m4 (m4_cr_alnum, m4_cr_all)
8162         (_m4_define_cr_not, m4_cr_not_letters, m4_cr_not_LETTERS)
8163         (m4_cr_not_Letters, m4_cr_not_digits, m4_cr_not_alnum)
8164         (m4_cr_not_symbols1, m4_cr_not_symbols2): New macros, implementing
8165         character ranges useful in m4_translit.
8166         (m4_toupper, m4_tolower): Optimize the constant portion of
8167         definition.
8168         * lib/m4sugar/m4sh.m4 (AS_LITERAL_IF): Also reject @S|@ because it
8169         creates $, and reject [] thanks to AS_TR_SH rewrite.
8170         (AS_TR_SH, AS_TR_CPP): Use just translit, not bpatsubst.
8171         (AS_ESCAPE): Factor...
8172         (_AS_ESCAPE): ...into new macro, with second argument required.
8173         Avoid regex in common case.
8174         (_AS_QUOTE): Use new macro.
8176         Whitespace cleanup.
8177         * lib/autoconf/types.m4: Avoid space-tab.
8178         * lib/m4sugar/m4sh.m4: Use tab consistently.
8180 2007-10-03  Paul Eggert  <eggert@cs.ucla.edu>
8182         * lib/m4sugar/m4sugar.m4 (m4_shift2, m4_shift3): New macros.
8183         (m4_shiftn): Remove no-longer-needed optimization.  Perhaps we
8184         should remove m4_shiftn entirely?
8185         (m4_case, b4_bmatch, m4_map_sep, m4_bpatsubsts, m4_join):
8186         Prefer m4_shift2 and m4_shift3 to m4_shiftn.
8187         * lib/autoconf/lang.m4 (_AC_LANG_DISPATCH): Likewise.
8188         * lib/m4sugar/m4sh.m4 (AS_CASE, AS_IF): Likewise.
8189         * tests/autotest.at (AT_CHECK_AT_TEST): Likewise.
8191 2007-10-03  Eric Blake  <ebb9@byu.net>
8193         Comment touchups.
8194         * lib/m4sugar/m4sugar.m4: Grammar fixes in comments.
8196 2007-10-02  Eric Blake  <ebb9@byu.net>
8198         Optimize appending text.
8199         * lib/m4sugar/m4sugar.m4 (m4_append_uniq): Use index, not regular
8200         expressions.
8202         Optimize recursion.
8203         * lib/m4sugar/m4sugar.m4 (m4_shiftn): This macro is called in a
8204         lot of hot spots; optimize it for 2 and 3 shifts.
8206         Optimize AC_PREREQ and other m4sugar numerics.
8207         * lib/m4sugar/m4sugar.m4 (m4_sign): Write with m4_eval.
8208         (m4_cmp): Compare arbitrary expressions, without overflow.
8209         (m4_version_unletter): Also recognize capital letters.
8210         (m4_version_compare): Avoid regex when splitting version number
8211         string.
8213 2007-10-01  Eric Blake  <ebb9@byu.net>
8215         Once again, reject IRIX m4.
8216         * m4/m4.m4 (AC_PROG_GNU_M4): Use indir builtin to root out non-GNU
8217         implementations that ignore --trace.
8218         * configure: Regenerate.
8219         Reported by Ralf Wildenhues.
8221         Fix regression in AC_DEFINE([macro(with_arg)]).
8222         * lib/autoconf/general.m4 (AC_DEFINE_TRACE): Don't chop off close
8223         quotes with a careless m4_substr.
8225 2007-09-30  Eric Blake  <ebb9@byu.net>
8227         Allow nameless iteration.
8228         * lib/m4sugar/m4sugar.m4 (m4_for, _m4_for): Access variable
8229         indirectly.
8230         * tests/m4sugar.at (myvar): Test this.
8232 2007-09-29  Eric Blake  <ebb9@byu.net>
8234         Speed optimization: avoid m4 regex when other algorithms work.
8235         * lib/m4sugar/m4sh.m4 (AS_LITERAL_IF): Rewrite without regex.
8236         (_AS_QUOTE_IFELSE): Likewise.
8237         * lib/m4sugar/m4sugar.m4 (m4_strip): Reduce from 3 to 2 regex.
8238         (m4_bpatsubsts): Split...
8239         (_m4_bpatsubsts): ...so that recursion can avoid patsubst on empty
8240         regex.
8241         (_m4_divert()): Define, to avoid m4 warning on `m4_divert'.
8242         (m4_qlen): Optimize on short strings, to avoid regex.
8243         (m4_sign): Avoid regex, and fix bug with `01' and `-0'.
8244         * lib/autoconf/general.m4 (AC_CACHE_VAL): Rewrite without regex.
8245         (AC_DEFINE_TRACE): Likewise.
8247 2007-09-28  Eric Blake  <ebb9@byu.net>
8249         Oops - my earlier 'optimization' caused a regression.
8250         * tests/local.at (AT_CHECK_M4): Fix typo.
8252 2007-09-27  Eric Blake  <ebb9@byu.net>
8253         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8255         Catch even more common AC_CACHE_VAL mistakes.
8256         * lib/autoconf/general.m4 (AC_CACHE_VAL): Warn if cache variable
8257         lacks '_cv_', or if AC_SUBST appears in body.
8258         * tests/base.at (AC_CACHE_CHECK): Test this change.
8260 2007-09-27  Stepan Kasal  <kasal@ucw.cz>
8261         and Eric Blake  <ebb9@byu.net>
8263         Autotest no longer caters to Ultrix redirection limitation.
8264         * doc/autoconf.texi (Writing testsuite.at): Remove the
8265         limitation that the first parameter of AT_CHECK cannot
8266         contain redirection.
8267         (File Descriptors): Mention that Ultrix limitation is no longer a
8268         show-stopper in modern code.
8269         * tests/local.at (AT_CHECK_M4): Fix for cases when the fourth
8270         parameter is `stderr' or `experr'.  Optimize if it was `ignore'.
8271         * lib/autotest/general.m4 (AT_CHECK): Update comment.
8273 2007-09-27  Eric Blake  <ebb9@byu.net>
8275         Squelch changeword in m4sugar.
8276         * lib/m4sugar/m4sugar.m4 (changeword): Disable this experimental
8277         feature of m4 1.4.x.
8279         Configure whitespace touchups.
8280         * lib/autoconf/general.m4 (_AC_INIT_HELP): Fix alignment of
8281         installation directories, and avoid TAB, in configure --help
8282         output.
8283         * configure.ac: Avoid extra trailing newline.
8284         * lib/m4sugar/m4sh.m4 (_AS_DETECT_BETTER_SHELL): Avoid space-tab.
8285         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Avoid TAB in
8286         config.status --help output.
8287         * configure: Regenerate.
8289         Fix underquotation in AS_HELP_STRING.
8290         * lib/m4sugar/m4sh.m4 (AS_HELP_STRING): Don't underquote lhs
8291         argument.
8292         * lib/m4sugar/m4sugar.m4 (m4_text_wrap): Don't underquote
8293         first-prefix argument.
8294         * tests/m4sh.at (AS@&t@_HELP_STRING): Test this fix.
8295         * NEWS: Document AS_HELP_STRING fix.
8297         Autotest formatting touchups.
8298         * lib/autotest/general.m4 (HELP_TUNING): Avoid TAB in terminal
8299         output.
8300         (PATH): Simplify computation of new PATH.
8302 2007-09-26  Eric Blake  <ebb9@byu.net>
8304         Fix testsuite breakage in last patch.
8305         * tests/autotest.at (AT_CHECK_AT_TITLE): Properly quote the
8306         font-lock fix.
8307         * tests/torture.at (@%:@define header templates): Rename, so that
8308         output lines up correctly.
8310         More font-lock happiness.
8311         * tests/autotest.at (AT_CHECK_AT_TITLE_CHAR): Clean up font
8312         confusion.
8314 2007-09-25  Eric Blake  <ebb9@byu.net>
8316         Typo fixes.
8317         * lib/autoconf/general.m4 (AC_SUBST): Fix typo in comment.
8318         * lib/m4sugar/m4sh.m4 (AS_VAR_PUSHDEF): Likewise.
8320         Improve documentation of M4 parameter expansion.
8321         * doc/autoconf.texi (Quoting and Parameters): New section.
8322         (Quotation and Nested Macros): Improve wording.
8324         Improve C99 detection.
8325         * lib/autoconf/c.m4 (_AC_PROG_CC_C99): Add support for HP cc, and
8326         avoid deprecation warning with icc.
8327         * THANKS: Update.
8328         Reported by Ted Bullock.
8330 2007-09-24  Jim Meyering  <jim@meyering.net>
8332         Whenever possible, use the vertical bar as sed delimiter.
8333         * lib/autoconf/functions.m4 (GETLOADAVG_LIBS) [AC_FUNC_GETLOADAVG]:
8334         Use "|", not "!".
8335         * lib/autoconf/status.m4 (_AC_SRCDIRS) [ac_top_builddir_sub]:
8336         [ac_dir_suffix]: Use "|", not "," as sed delimiter.
8337         * tests/mktests.sh (as_me): Likewise.
8338         * lib/freeze.mk (check-forbidden-patterns): Likewise.
8339         * lib/autoconf/fortran.m4 (_AC_PROG_FC_V_OUTPUT): Likewise.
8340         * configure: Regenerate.
8341         * doc/autoconf.texi (Shell Substitutions): Use "|", not "," in examples.
8342         * lib/autotest/general.m4 (AT_INIT): Use "|", not "&" as sed delimiter
8343         in the : -> $PATH_SEPARATOR transformation of $AUTOTEST_PATH.
8344         This is fine, as long as $PATH_SEPARATOR doesn't contain "|".
8346 2007-09-22  Jim Meyering  <jim@meyering.net>
8348         Add a comment.
8349         * lib/autoconf/headers.m4 (HAVE_STDBOOL_H): Document the
8350         2004-05-31 change also with a comment in the code.
8352 2007-09-20  Eric Blake  <ebb9@byu.net>
8354         More contribution housekeeping.
8355         * THANKS: Sort.
8356         * AUTHORS: Sort, reflect recent assignment from Helge Deller.
8358         Ignore additional files, when copying cross-repository.
8359         * .gitignore: Ignore CVS directories, emacs edits.
8360         * .cvsignore: Ignore .git directory, emacs edits.
8362 2007-09-15  Eric Blake  <ebb9@byu.net>
8364         Provide AC_VERSION, not m4_AUTOCONF_VERSION.
8365         * doc/autoconf.texi (Text processing Macros): Remove mention of
8366         m4_AUTOCONF_VERSION, and leave m4_PACKAGE_VERSION undocumented
8367         once again.
8368         (Notices): Move AC_PREREQ...
8369         (Versioning): ...to this new section, alongside the new AC_VERSION
8370         alias for the undocumented m4_PACKAGE_VERSION.
8371         * lib/m4sugar/m4sugar.m4 (m4_AUTOCONF_VERSION): Revert change.
8372         * lib/autoconf/general.m4 (AC_VERSION): New macro.
8373         * NEWS: Update to match this rename.
8374         * tests/m4sugar.at (m4@&t@_version_compare): Remove tests of
8375         m4_PACKAGE_VERSION.
8376         * tests/tools.at (autoconf: AC_VERSION): New test.
8377         Suggested by Paolo Bonzini and Benoit Sigoure.
8379 2007-09-14  Eric Blake  <ebb9@byu.net>
8381         Prepare for conversion to git.
8382         * doc/.cvsignore: Avoid multiple listings on one line.
8383         * bin/.cvsignore: Likewise.
8384         * .gitignore, bin/.gitignore, config/.gitignore, doc/.gitignore,
8385         lib/.gitignore, lib/Autom4te/.gitignore, lib/autoconf/.gitignore,
8386         lib/autoscan/.gitignore, lib/autotest/.gitignore,
8387         lib/emacs/.gitignore, lib/m4sugar/.gitignore, man/.gitignore,
8388         tests/.gitignore: New files, identical to .cvsignore counterpart.
8390 2007-09-13  Eric Blake  <ebb9@byu.net>
8392         Editing eye-candy.
8393         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE): Restore
8394         font-lock balance.
8395         * lib/m4sugar/m4sh.m4 (AS_MKDIR_P): Likewise.
8396         * lib/autoconf/general.m4 (_AC_DO_ECHO): Likewise.
8397         * configure: Regenerate.
8399         Clean up 'make dist' of previous patch.
8400         * tests/Makefile.am (EXTRA_DIST): Distribute mktests.stamp.
8401         (CLEANFILES): Don't clean the stamp, since we distribute the
8402         generated files pre-built.
8403         (MAINTAINERCLEANFILES): Clean it here instead.
8404         * tests/Makefile.in: Regenerate.
8406         Avoid parallel 'make check' issue.
8407         * tests/Makefile.am (mktests.stamp): New witness.
8408         (TESTSUITE_GENERATED_AT): Use it.
8409         (CLEANFILES): Clean the witness.
8410         * tests/.cvsignore (mktests.stamp): Ignore the witness.
8412         Document another awk pitfall.
8413         * doc/autoconf.texi (Limitations of Usual Tools) <awk>: Document
8414         limitation of field variables in END.
8415         Reported by Gary V. Vaughan.
8417         * AUTHORS: Add missing entries.
8419 2007-09-12  Eric Blake  <ebb9@byu.net>
8421         Publish m4_ifndef, m4_version_compare, m4_AUTOCONF_VERSION.
8422         * doc/autoconf.texi (Text processing Macros): Document
8423         m4_version_compare, m4_AUTOCONF_VERSION, m4_PACKAGE_VERSION.
8424         (Redefined M4 Macros): Document m4_ifndef.
8425         * lib/m4sugar/m4sugar.m4 (m4_AUTOCONF_VERSION): New macro; we
8426         can't obsolete m4_PACKAGE_VERSION at this time since Autoconf 1.10
8427         used it while it was undocumented.
8428         * NEWS: Document this change.
8429         * lib/m4sugar/Makefile.am (version.m4): Update copyright dates.
8430         * lib/m4sugar/Makefile.in: Regenerate.
8431         * tests/m4sugar.at (m4@&t@_version_compare): New test.
8432         Reported by Bruno Haible.
8434         * doc/autoconf.texi (Generic Compiler Characteristics): Add
8435         missing index entries.
8437 2007-09-11  Eric Blake  <ebb9@byu.net>
8439         Centralize all system extensions checks.
8440         * lib/autoconf/specific.m4 (AC_USE_SYSTEM_EXTENSIONS): Inline code
8441         from AC_AIX, AC_GNU_SOURCE, AC_MINIX.  Add Interix support.
8442         (AC_AIX, AC_GNU_SOURCE, AC_MINIX): Obsolete, and point to
8443         AC_USE_SYSTEM_EXTENSIONS.
8444         (AC_ISC_POSIX): Obsolete, and point to AC_SEARCH_LIBS.
8445         (AC_XENIX_DIR, AC_IRIX_SUN): Promote proper quoting in AU_DEFUN.
8446         * doc/autoconf.texi (Posix Variants): Reword this section,
8447         emphasizing that AC_USE_SYSTEM_EXTENSIONS is the preferred method,
8448         rather than a series of system-specific checks.
8449         (Obsolete Macros): Add AC_AIX, AC_GNU_SOURCE, AC_ISC_POSIX,
8450         AC_MINIX.
8451         * NEWS: Document this change.
8452         * THANKS: Update.
8453         Reported by Martin Koeppe.
8455 2007-09-08  Eric Blake  <ebb9@byu.net>
8457         Clean up obsolete macros references.
8458         * doc/autoconf.texi: Add anchors to support better
8459         cross-referencing.
8460         (Particular Structures): Move obsolete macros descriptions...
8461         (External Software): Likewise.
8462         (Package Options): Likewise.
8463         (Obsolete Macros): ...to here.  Add cross-references to
8464         documentation on replacements.
8465         * NEWS: Mention that these macros have been obsolete for a while
8466         now: AC_STRUCT_ST_BLKSIZE AC_STRUCT_ST_RDEV AC_WITH AC_ENABLE.
8468         Improve M4 path searching during configure.
8469         * lib/autoconf/programs.m4 (AC_PATH_PROGS_FEATURE_CHECK): New
8470         macro.
8471         (_AC_PATH_PROG_FEATURE_CHECK): Rename...
8472         (_AC_PATH_PROGS_FEATURE_CHECK): ...to this, add defaulted action
8473         parameter, and kill side effects.
8474         (_AC_PROG_GREP, AC_PROG_SED): Adjust callers.
8475         (_AC_FEATURE_CHECK_LENGTH): Kill extra whitespace.
8476         * m4/m4.m4 (AC_PROG_GNU_M4): Don't stop searching until working m4
8477         is found.
8478         (AC_PATH_PROGS_FEATURE_CHECK): Add backwards compatibility hack to
8479         allow bootstrapping with autoconf 2.61.
8480         * configure.ac (M4): AC_PROG_GNU_M4 now exits on failure.
8481         * configure: Regenerate.
8482         * doc/autoconf.texi (Generic Programs): Document new macro.
8483         * tests/mktests.sh (au_exclude_script): Exclude auto-testing new
8484         macro.
8485         * tests/semantics.at (AC_PATH_PROGS_FEATURE_CHECK): New test.
8486         * NEWS: Document the change.
8487         * THANKS: Update.
8488         Reported by Hans Aberg.
8490         * doc/autoconf.texi (Generic Programs): Fix typo.
8492 2007-09-06  Eric Blake  <ebb9@byu.net>
8494         * doc/autoconf.texi (Generic Programs): Use $PATH_SEPARATOR, not
8495         :, and make it clear that optional @var{path} defaults to $PATH.
8496         (Erlang Compiler and Interpreter): Likewise.
8498         Texinfo cleanup.
8499         * doc/autoconf.texi: Avoid lines > 80 columns when possible.
8500         Reword some paragraphs to avoid overfull, underfull hbox
8501         warnings.  Add index entries to avoid overfull vbox warnings.
8503 2007-09-05  Eric Blake  <ebb9@byu.net>
8505         * NEWS: Adjust wording for AC_CONFIG_LINKS.
8506         Reported by Ralf Wildenhues.
8508 2007-09-03  Eric Blake  <ebb9@byu.net>
8510         * NEWS: Document fixes that have been applied since 2.61a.
8512         Housekeeping.
8513         * THANKS: Update, and convert to UTF-8 encoding.
8514         * AUTHORS: Likewise.
8516 2007-08-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8518         * lib/autoconf/general.m4 (AC_SITE_LOAD): Guard against file
8519         names beginning with `-' again.
8521 2007-08-22  Stepan Kasal  <kasal@ucw.cz>
8522             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8524         * doc/autoconf.texi (Defining Directories): Mention
8525         AM_CPPFLAGS, as the way to modify CPPFLAGS when using Automake.
8527 2007-08-21  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8529         * lib/autoconf/general.m4 (AC_SITE_LOAD): Do not overwrite "$@"
8530         here, this macro is expanded by AC_INIT.  Fixes 2.60 regression.
8531         * tests/base.at (configure arguments): New test.
8532         * THANKS: Update.
8533         Report by Olaf Lenz.
8535         * lib/autoconf/general.m4 (_AC_ENABLE_IF): Expand macro
8536         arguments in comment.
8537         Report by Vincent Torri <vtorri at univ minus evry dot fr>.
8539 2007-08-20  Benoit Sigoure  <tsuna@lrde.epita.fr>
8541         * doc/autoconf.texi (File System Conventions): Index the proper
8542         way of detecting absolute file names.
8544 2007-08-20  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8546         * build-aux/config.guess, build-aux/config.sub,
8547         build-aux/elisp-comp, build-aux/install-sh, build-aux/mdate-sh,
8548         build-aux/missing, build-aux/texinfo.tex, doc/fdl.texi,
8549         doc/make-stds.texi, doc/standards.texi: Sync from gnulib.
8550         * doc/autoconf.texi (GNU Free Documentation License): Adjust for
8551         sectioning change in fdl.texi.
8553         * bin/autoconf.as: Update --version output to match current GCS.
8554         * bin/autoheader.in: Likewise.
8555         * bin/autom4te.in: Likewise.
8556         * bin/autoreconf.in: Likewise.
8557         * bin/autoscan.in: Likewise.
8558         * bin/autoupdate.in: Likewise.
8559         * bin/ifnames.in: Likewise.
8561 2007-08-18  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8563         * lib/autoconf/status.m4 (_AC_OUTPUT_LINK): Do not try to link a
8564         file to itself if source and build trees coincide.
8565         * tests/torture.at (AC_CONFIG_LINKS and identical files): New
8566         test.
8567         Report by Sebastian Freundt <hroptatyr@gna.org>.
8569 2007-07-20  Paul Eggert  <eggert@cs.ucla.edu>
8571         Reword the copyright notices to match what's suggested in GPLv3.
8572         In ChangeLog files, use more-permissive notice rather than GPL, as
8573         per usual GNU standards these days.
8575 2007-07-13  Paul Eggert  <eggert@cs.ucla.edu>
8577         * doc/autoconf.texi (autoreconf Invocation): Document ACLOCAL_AMFLAGS
8578         limitation reported by Leo Moisio in
8579         <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=432941>.
8581 2007-07-03  Paul Eggert  <eggert@cs.ucla.edu>
8583         * COPYING: Update to GPLv3.  All uses changed.
8585 2007-06-26  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8586         and Paul Eggert  <eggert@cs.ucla.edu>
8588         * doc/autoconf.texi (Limitations of Usual Tools): sed -e ''
8589         fails on AIX 5.3.
8591 2007-06-17  Noah Misch  <noah@cs.caltech.edu>
8593         * lib/autotest/general.m4 (AT_INIT): Handle absolute `srcdir'.
8594         * tests/autotest.at (srcdir propagation): Test absolute `srcdir' and
8595         `srcdir' as subdirectory of `builddir'.
8597 2007-06-13  Noah Misch  <noah@cs.caltech.edu>
8599         * lib/autotest/general.m4 (AT_INIT): Compute $srcdir correctly.
8600         * tests/autotest.at (srcdir propagation): New test.
8601         * THANKS: Update.
8602         Reported by Mike Frysinger.
8604 2007-06-13  Paul Eggert  <eggert@cs.ucla.edu>
8606         * lib/m4sugar/m4sh.m4 (_AS_PATH_SEPARATOR_PREPARE): Set FPATH too.
8607         Problem reported by Fred Kreek in
8608         <http://lists.gnu.org/archive/html/bug-autoconf/2007-06/msg00009.html>.
8609         * doc/autoconf.texi (Special Shell Variables): Warn about FPATH.
8610         (Macro Names, Defining Directories): Don't mention PATH as a name
8611         for a fully qualified file name, as this usage violates the GNU
8612         coding standards and we shouldn't recommend it.
8614         * lib/autotest/general.m4 (AT_INIT): Don't set PATH to the empty
8615         string and then assume shell builtins like "test" will work.
8617 2007-06-12  Noah Misch  <noah@cs.caltech.edu>
8619         * lib/autoconf/general.m4 (AC_SUBST): Raise a fatal error if VARIABLE is
8620         not a valid shell variable name.
8621         * tests/mktests.sh (ac_exclude_list): Add AC_ARG_VAR.
8622         * tests/torture.at (AC_SUBST: variable name validation): New test.
8623         Reported by Andreas Schwab.
8625 2007-06-04  Noah Misch  <noah@cs.caltech.edu>
8627         * doc/autoconf.texi (AC_F77_MAIN): Give a specific usage example that
8628         works with both C and C++.
8630 2007-06-03  Noah Misch  <noah@cs.caltech.edu>,
8631             Bruno Haible  <bruno@clisp.org>
8633         * lib/autoconf/c.m4 (AC_OPENMP): Use a simple loop instead of compiler
8634         brand tests.
8636 2007-05-31  Paul Eggert  <eggert@cs.ucla.edu>
8638         * doc/autoconf.texi (Particular Types): Give example of use for
8639         AC_TYPE_INT8_T etc.
8641 2007-05-29  Stepan Kasal  <kasal@ucw.cz>
8643         * lib/autoconf/types.m4 (_AC_TYPE_UNSIGNED_INT): Fix a typo.
8645 2007-05-28  Paul Eggert  <eggert@cs.ucla.edu>
8647         * doc/autoconf.texi (Particular Types): AC_TYPE_INT8_T does not
8648         define HAVE_INT8_T, and likewise for similar macros.
8649         Problem reported by Patrick Welche in
8650         <http://lists.gnu.org/archive/html/autoconf/2007-05/msg00062.html>.
8652 2007-05-25  Noah Misch  <noah@cs.caltech.edu>
8654         * bin/Makefile.am ($(top_builddir)/bin/autom4te): New dependency.
8656 2007-05-21  Paul Eggert  <eggert@cs.ucla.edu>
8658         * lib/autoconf/c.m4 (AC_OPENMP): Don't echo --enable-openmp
8659         choice, since that's what we do with --enable-largefile etc.
8660         Redo indenting and assignments to simplify things a bit, and make
8661         the parens work with Emacs.
8663         * doc/autoconf.texi (Generic Compiler Characteristics): Fix typo
8664         in my previous change: AC_C_OPENMP -> AC_OPENMP.  Reported by Bruno
8665         Haible.
8667 2007-05-21  Noah Misch  <noah@cs.caltech.edu>
8669         * lib/autoconf/c.m4 (AC_OPENMP): Simplify use of AC_ARG_ENABLE.
8670         * tests/local.at (AT_CHECK_ENV): Exempt OPENMP_CFLAGS.
8672 2007-05-21  Bruno Haible  <bruno@clisp.org>
8674         * NEWS: Rename AC_C_OPENMP to AC_OPENMP.
8675         * lib/autoconf/c.m4 (AC_OPENMP): Renamed from AC_C_OPENMP.
8676         * doc/autoconf.texi (Generic Compiler Characteristics): Move
8677         renamed AC_OPENMP documentation here, from "C compiler".
8678         Mention C++ and Fortran.
8680 2007-05-21  Paul Eggert  <eggert@cs.ucla.edu>
8682         * doc/autoconf.texi (C Compiler): Tweak OpenMP documentation a bit.
8684 2007-05-21  Bruno Haible  <bruno@clisp.org>
8686         * NEWS: Mention AC_C_OPENMP.
8687         * lib/autoconf/c.m4 (AC_C_OPENMP): New macro.
8688         * doc/autoconf.texi (C Compiler): Document AC_C_OPENMP.
8689         Based in part on Steven G. Johnson's investigations for the AX_OPENMP
8690         macro in the Autoconf macro archive.
8692 2007-05-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8694         * bin/autom4te.in: Fix typos.
8696 2007-05-16  Noah Misch  <noah@cs.caltech.edu>
8698         * bin/autoconf.as: Handle `-' just like other input files.
8699         * bin/autom4te.in (parse_args): Pass `-' through.
8700         (handle_output): Skip the forbidden token search if we read from stdin.
8701         (up_to_date): Always treat stdin as out of date.
8702         * tests/tools.at (autoconf: input from stdin): New test.
8703         (autoconf: forbidden tokens, basic): Check a second `autoconf' run.
8705 2007-05-16  Stepan Kasal  <kasal@ucw.cz>
8707         * tests/foreign.at tests/semantics.at, tests/tools.at: Remove
8708         parameters for AT_CLEANUP.
8709         * tests/local.at (AT_CHECK_AU_MACRO): Likewise.
8711 2007-05-14  Paul Eggert  <eggert@cs.ucla.edu>
8713         * NEWS: Document that AC_C_RESTRICT checks 'restrict' last.
8714         * doc/autoconf.texi (C Compiler): Likewise.
8716 2007-05-14  Noah Misch  <noah@cs.caltech.edu>
8718         * lib/autoconf/c.m4 (AC_C_RESTRICT): Check `restrict' last.
8720 2007-05-09  Stepan Kasal  <kasal@ucw.cz>
8722         * doc/autoconf.texi: Direntry for "autoconf Invocation"
8723         renamed to "autoconf-invocation"
8725         * doc/autoconf.texi (Caching Results): The CACHE-ID variable
8726         in the examples should not use the internal "ac_" prefix.
8728 2007-05-05  Noah Misch  <noah@cs.caltech.edu>
8730         * lib/autotest/general.m4 (_AT_NORMALIZE_TEST_GROUP_NUMBER): Use `eval'.
8731         * doc/autoconf.texi ($@, case): Document Zsh limitations.
8733 2007-05-03  Stepan Kasal  <kasal@ucw.cz>
8735         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Put a.out first.
8736         Reorganize the comments before and in the macro.
8738 2007-05-02  Stepan Kasal  <kasal@ucw.cz>
8740         * lib/autoconf/lang.m4, lib/autoconf/c.m4,
8741         lib/autoconf/fortran.m4, lib/autoconf/erlang.m4: Cleanup of
8742         section titles and other comments; no code change.
8744 2007-05-01  Kevin Ryde  <user42@zip.com.au>
8746         * doc/autoconf.texi (Particular Programs): Typo
8747         @acindex{AC_PROG_MKDIR_P} shouldn't have "AC" in that call.
8749 2007-04-30  Paul Eggert  <eggert@cs.ucla.edu>
8751         * lib/m4sugar/m4sh.m4 (_AS_SHELL_FN_SPY): Don't imply that
8752         'configure' will fail if the shell lacks proper support for shell
8753         functions.  Suggested by RMS.
8755 2007-04-29  Paul Eggert  <eggert@cs.ucla.edu>
8757         * doc/autoconf.texi (Limitations of Builtins): Correct the warning
8758         about Solaris /bin/printf '%010000x' 123.  Problem reported by
8759         Bruno Haible.
8761 2007-04-28  Paul Eggert  <eggert@cs.ucla.edu>
8763         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Don't look
8764         for a.* when searching for executables, as this prevents users
8765         from having files like a.c.  Problem reported by Ralf Wildenhues in:
8766         http://lists.gnu.org/archive/html/autoconf-patches/2007-04/msg00029.html
8767         This fixes a problem introduced on 2000-12-19.
8769 2007-04-26  Paul Eggert  <eggert@cs.ucla.edu>
8771         * doc/autoconf.texi (Limitations of Builtins): Warn about Solaris
8772         /bin/printf '%010000x' 123.  Problem reported by Arto C. Nirkko
8773         via Bruno Haible.
8775 2007-04-12  Paul Eggert  <eggert@cs.ucla.edu>
8777         * NEWS: Document recent changes to AC_CHECK_ALIGNOF, AC_CHECK_SIZEOF,
8778         AC_CHECK_TYPE, AC_CHECK_TYPES.
8779         * doc/autoconf.texi (Generic types): C types must be type-names
8780         (the C terminology), not type-ids (the C++ term).  C++ types
8781         must not be anonymous.
8782         * lib/autoconf/types.m4 (_AC_CHECK_TYPE_NEW): Remove special case
8783         for C++; this drops support for anonymous struct and union types,
8784         which were problematic anyway.
8785         * tests/semantics.at (AC_CHECK_HEADERS_NEW): Adjust test to work even
8786         for C++.
8788 2007-04-12  Jim Meyering  <jim@meyering.net>
8790         * doc/autoconf.texi (Libraries): Typo fix: insert missing "in".
8792 2007-04-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8794         * lib/autoconf/status.m4 (_AC_OUTPUT_LINK): Fix AC_CONFIG_LINKS
8795         to prefer a link source from the build tree, if it exists.
8796         Report by Pallav Gupta <pallavgupta@gmail.com>.
8798 2007-04-11  Paul Eggert  <eggert@cs.ucla.edu>
8800         * doc/autoconf.texi (Generic Types): Document the restrictions
8801         on types imposed by AC_CHECK_TYPE, AC_CHECK_TYPES.
8802         (Generic Compiler Characteristics): AC_CHECK_SIZEOF now works
8803         with objects too.  Document the restrictions on its use.
8804         Document the restrictions on AC_CHECK_ALIGNOF's type argument.
8805         * lib/autoconf/types.m4 (_AC_CHECK_TYPE_NEW):
8806         For C, just try sizeof (TYPE) and sizeof ((TYPE)); if the former
8807         works but the latter doesn't, then it's a valid type.
8808         This lets people use function types and so forth.
8809         For C++ there doesn't seem to be a simple solution, so leave it alone.
8810         (AC_CHECK_SIZEOF): Allow argument to be a variable.
8811         (AC_CHECK_SIZEOF, AC_CHECK_ALIGNOF): Don't bother to invoke
8812         AC_CHECK_TYPE; that wasn't documented or necessary.
8814 2007-04-11  Stepan Kasal  <kasal@ucw.cz>
8816         * lib/autoconf/general.m4 (_AC_LINK_IFELSE): Skip AS_TEST_X
8817         when cross-compiling.
8819 2007-04-11  Stepan Kasal  <kasal@ucw.cz>
8821         * doc/autoconf.texi (External Software): Fix a typo in the
8822         previous change.
8824 2007-04-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8826         * doc/autoconf.texi (External Software, Package Options):
8827         Fix ambiguous wording.  Report by Reuben Thomas <rrt@sc3d.org>.
8829 2007-04-06  Paul Eggert  <eggert@cs.ucla.edu>
8831         * doc/autoconf.texi (Particular Types): AC_C_LONG_DOUBLE is now
8832         obsolescent.  Suggested by Bruno Haible.
8833         * NEWS: Document this.
8835 2007-03-29  Paul Eggert  <eggert@cs.ucla.edu>
8837         * doc/autoconf.texi (Here-Documents, Limitations of Builtins):
8838         (Limitations of Usual Tools): Don't say "older" if Solaris 10 by
8839         default still has the problem.  Problem reported by Bruce Korb.
8841 2007-03-28  Stepan Kasal  <kasal@ucw.cz>
8842         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8844         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Fix a
8845         comment in the generated config.status.
8847 2007-03-27  Stepan Kasal  <kasal@ucw.cz>
8849         * lib/autoconf/status.m4 (AC_CONFIG_SUBDIRS): Update comment.
8851 2007-03-26  Paul Eggert  <eggert@cs.ucla.edu>
8853         * doc/autoconf.texi (Shellology): Rework treatment of the 'test'
8854         command and case statements to make it a bit clearer and describe
8855         more pitfalls.
8857 2007-03-23  Paul Eggert  <eggert@cs.ucla.edu>
8859         * doc/autoconf.texi (C Compiler): Mention that AC_PROG_CC_C99 also
8860         checks for unsigned long long int.
8862 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
8864         * doc/autoconf.texi (Limitations of Usual Tools): Warn about other
8865         nonstandard grep R.E. escape sequences.
8867 2007-03-17  Jim Meyering  <jim@meyering.net>
8869         * doc/autoconf.texi: Adjust grammar around use of "heuristics".
8870         (Limitations of Usual Tools): Also list \< and \>, and mention that
8871         HP-UX's grep, like the one from Solaris, does not support that syntax.
8873 2007-03-09  Stepan Kasal  <kasal@ucw.cz>
8875         * doc/autoconf.texi (Specifying Names): `--host' does not
8876         change the build type.
8878 2007-03-05  Paul Eggert  <eggert@cs.ucla.edu>
8880         * doc/autoconf.texi (C Compiler): Warn that AC_C_BIGENDIAN
8881         suggests AC_CONFIG_HEADERS.
8882         * lib/autoconf/c.m4 (AC_C_BIGENDIAN): Warn if not using
8883         AC_CONFIG_HEADERS.  Problem reported by
8884         Peter O'Gorman.
8886 2007-02-28  Paul Eggert  <eggert@cs.ucla.edu>
8888         * lib/autoconf/c.m4 (AC_C_BIGENDIAN): Fix typo "__LITLE_ENDIAN__".
8889         Problem reported by Paolo Bonzini in:
8890         http://lists.gnu.org/archive/html/autoconf-patches/2007-02/msg00024.html
8891         * tests/semantics.at (AC_C_BIGENDIAN): Don't reject hosts that have
8892         universal binaries.  Problem reported by Elias Pipping.
8894 2007-02-27  Paul Eggert  <eggert@cs.ucla.edu>
8896         * NEWS: AC_C_BIGENDIAN now supports universal binaries a la Mac OS X.
8897         * doc/autoconf.texi (C Compiler): Document this.  There is a new
8898         extra argument ACTION-IF-UNIVERSAL.
8899         * lib/autoconf/c.m4 (AC_C_BIGENDIAN): Implement this.
8900         Add support for Solaris-style _LITTLE_ENDIAN and _BIG_ENDIAN.
8901         Reindent for sanity's sake.
8903 2007-02-24  Eric Blake  <ebb9@byu.net>
8905         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Update
8906         copyright.
8907         * lib/autoconf/general.m4 (_AC_INIT_COPYRIGHT): Likewise.
8908         * lib/autotest/general.m4 (AT_INIT): Likewise.
8909         (_AT_DECIDE_TRACEABLE): Fix syntax highlighting.
8911 2007-02-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8913         * lib/autotest/general.m4 (AT_INIT): With --clean, return exit
8914         status of rm so we know when it failed.
8915         If cleaning of test dir failed before running the test, warn.
8916         Output the line separator in verbose mode before the warning
8917         to make clear the warning belongs to the following test.
8919 2007-02-08  Paul Eggert  <eggert@cs.ucla.edu>
8921         * doc/autoconf.texi (Parentheses): Mention problem with (( in
8922         shells.
8924 2007-02-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8925         and Paul Eggert  <eggert@cs.ucla.edu>
8927         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE): Fix quoting
8928         errors introduced in last change.
8930 2007-02-07  Paul Eggert  <eggert@cs.ucla.edu>
8932         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE): Prefer \r to
8933         an actual carriage return.  Use "ac_cr" to contain the actual
8934         carriage return.
8935         * doc/autoconf.texi (Limitations of Usual Tools): Document problem
8936         with traditional Awk and begin.
8937         * tests/torture.at (Limitations of Builtins): Document the problem
8938         with Bash 2.03 printf.
8939         (Substitute and define special characters):
8940         Remove trailing white space.  Work around a bug in Solaris 8 /bin/bash.
8942 2007-02-06  Ralf Menzel  <menzel@ls6.cs.uni-dortmund.de>  (tiny change)
8944         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE): Redirect
8945         input from /dev/null in awk test, so even Solaris /usr/bin/awk
8946         will not wait for input with a script containing only a BEGIN
8947         rule.
8949 2007-02-03  Paul Eggert  <eggert@cs.ucla.edu>
8951         * doc/autoconf.texi (Introduction, Why GNU M4): Clarify M4 version
8952         requirements.
8953         * README: Likewise.
8955 2007-02-02  Eric Blake  <ebb9@byu.net>
8957         * NEWS: Update copyright.
8959         * m4/m4.m4 (AC_PROG_GNU_M4): Reject M4 1.4 through 1.4.4 as
8960         broken.
8961         * configure.ac: Update error message.
8962         * NEWS: Note that M4 1.4.5 or later is now a hard dependency.
8963         Reported by Gary Vaughan and Jim Meyering, and problem analyzed
8964         by Stepan Kasal:
8965         http://lists.gnu.org/archive/html/bug-autoconf/2006-11/msg00025.html
8967 2007-01-31  Eric Blake  <ebb9@byu.net>
8969         * THANKS (people): Update.
8971 2007-01-28  Paul Eggert  <eggert@cs.ucla.edu>
8973         * doc/autoconf.texi (Shellology): pdksh 5.2.14 is still the
8974         latest version.
8975         (Shell Substitutions): Note problems with @{var:=value} etc.
8976         Add a new section for problems with @{#var} etc.  Problem noted
8977         by Ralf Wildenhues.  See:
8978         http://lists.gnu.org/archive/html/libtool-patches/2005-01/msg00157.html
8980 2007-01-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8982         * lib/autoconf/programs.m4 (AC_PROG_MKDIR_P): Also
8983         AC_SUBST([MKDIR_P]), so that Automake < 1.10 will pick up its
8984         trace, if a package uses AC_PROG_MKDIR_P explicitly.  The actual
8985         substitution will still be done by the special code.
8986         Report by Jim Meyering.
8988         * doc/autoconf.texi (File System Conventions): Mention that
8989         $PATH_SEPARATOR is for the build system only.
8990         Report by Keith Marshall.
8992 2007-01-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8994         * doc/autoconf.texi (Setting Output Variables): Mention that
8995         all non-NUL characters are ok in substituted values.
8996         * lib/autoconf/status.m4 (_AC_SED_CMD_LIMIT): Fix comment typo.
8997         (_AC_OUTPUT_FILES_PREPARE): Test and use backslash escaping of
8998         carriage return for $AWK, needed for BSD awk.
8999         * tests/torture.at (Substitute and define special characters):
9000         Test all 8 bit non-NUL characters.
9001         Report against Automake by Patrick Welche.
9003 2007-01-15  Stepan Kasal  <kasal@ucw.cz>
9005         * doc/autoconf.texi: Direntry for "autoconf Invocation" renamed.
9007 2007-01-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9009         * lib/autoconf/programs.m4 (AC_PROG_SED): When closing a pipe
9010         early on the reader side, drop stderr of the input to avoid
9011         `broken pipe' error output; this may happen even with shell
9012         builtin `echo' of some bash versions.  Reports by Ian Macdonald
9013         <iamacdo@telkomsa.net> and Sam Sexton <Sam.Sexton@reuters.com>.
9015 2007-01-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9017         * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS): Use newlines to
9018         separate items of `ac_user_opts', to avoid long lines.
9019         (_AC_INIT_PARSE_ENABLE2, _AC_ENABLE_IF_ACTION): Adjust.
9021 2007-01-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9023         * doc/autoconf.texi: Fix some typos.
9025 2007-01-05  Paul Eggert  <eggert@cs.ucla.edu>
9027         Fix some wording problems noted by Paolo Bonzini in:
9028         http://lists.gnu.org/archive/html/autoconf-patches/2007-01/msg00077.html
9029         * doc/autoconf.texi (Signed Overflow Examples): Give more
9030         discussion about the allow_superuser_privileges example,
9031         and change it a bit to make things clearer.
9032         (Optimization and Wraparound): Clarify whether the compiler
9033         will generate an infinite loop for the example derived from
9034         Autoconf's mktime test.
9035         (Signed Overflow Advice): Say that -ftrapv is meant for debugging.
9036         Also, clarify unsigned multiplication overflow.
9038 2007-01-04  Eric Blake  <ebb9@byu.net>
9040         * bin/Makefile.am (RELEASE_YEAR): New macro.
9041         (edit): Use it to supply correct copyright year to scripts.
9042         * bin/autoconf.as (version): Use it.
9043         * bin/autoheader.in ($version): Likewise.
9044         * bin/autom4te.in ($version): Likewise.
9045         * bin/autoreconf.in ($version): Likewise.
9046         * bin/autoscan.in ($version): Likewise.
9047         * bin/autoupdate.in ($version): Likewise.
9048         * bin/ifnames.in ($version): Likewise.
9050 2007-01-02  Paul Eggert  <eggert@cs.ucla.edu>
9052         * doc/autoconf.texi (Integer Overflow): Revised based on today's
9053         feedback.  The most important changes document what happens when
9054         you convert an out-of-range value to a signed integer type, and
9055         say that (sum < a) != (b < 0) reliably detects overflow when sum =
9056         a + b.
9058         * doc/autoconf.texi (Integer Overflow): Greatly expand and
9059         rewrite, taking notions from the recent discussion on the gcc and
9060         autoconf mailing lists; please see
9061         http://lists.gnu.org/archive/html/autoconf-patches/2006-12/msg00091.html
9062         and follow the many links.
9063         (Integer Overflow Basics, Signed Overflow Examples):
9064         (Optimization and Wraparound, Signed Overflow Advice):
9065         (Signed Integer Division): New sections.
9067 2006-12-28  Steven G. Johnson  <stevenj@alum.mit.edu>
9069         * lib/autoconf/general.m4 (AC_DEFINE_TRACE): Don't include
9070         preprocessor macro arguments in traced name.
9071         * doc/autoconf.texi (Defining symbols): Document longstanding
9072         support for AC_DEFINE-ing macros with arguments, and document
9073         behavior when the same variable has multiple AC_DEFINEs.
9074         * lib/autoconf/fortran.m4 (_AC_FC_WRAPPERS): Revert to the
9075         old implementation which AC_DEFINEs the FC_FUNC and FC_FUNC_
9076         macros directly, giving much shorter and simpler code.
9078 2006-12-28  Malcolm Purvis <malcolmp@xemacs.org>  (trivial change)
9080         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Insert a
9081         space before "$ac_configure_args" to prevent a 'config.status
9082         --recheck' failure if ac_configure_args doesn't contain a leading
9083         space.  This works around a problem with the XEmacs configure.ac,
9084         which uses the (undocumented) ac_configure_args variable
9085         inconsistently with Autoconf.
9087 2006-12-22  Paul Eggert  <eggert@cs.ucla.edu>
9089         * lib/autoconf/functions.m4 (AC_FUNC_MKTIME):
9090         Include <limits.h>, and use its INT_MAX to rewrite the
9091         j loop so that it does not overflow 'int'.  Problem reported by
9092         Ralf Wildenhues in
9093         <http://lists.gnu.org/archive/html/bug-gnulib/2006-12/msg00084.html>.
9094         Play it safe by shifting left by 1 rather than multiplying by 2,
9095         as GCC is less likely to optimize this away when the value
9096         is signed (when it assumes overflow leads to undefined behavior).
9097         Also, don't assume time_t uses two's complement.
9099 2006-12-20  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9101         * tests/torture.at (Substitute a 2000-byte string): Avoid using
9102         a 10kB long (multi-line) string literal, OpenServer 5.0.7 ksh
9103         dumps core on it.  Report by Tim Rice.
9105 2006-12-18  Steven G. Johnson  <stevenj@alum.mit.edu>
9107         * lib/autoconf/general.m4 (AC_ARG_ENABLE): Print help about
9108         --disable-option-checking to --help output even when
9109         AC_PRESERVE_HELP_ORDER is not used.
9110         (_AC_INIT_PARSE_ENABLE2): Print warnings using actual --enable or
9111         --with argument, rather than argument with [-.] replaced by
9112         underscores.
9113         * NEWS: Fix typo in previous change; the news was in the
9114         wrong section.
9116 2006-12-18  Paul Eggert  <eggert@cs.ucla.edu>
9118         * NEWS: Warnings are now generated by default for unknown
9119         --enable-* and --with-* options.
9120         * doc/autoconf.texi (Option Checking): Renamed from
9121         (Configure Option Checking).  Tighten up the wording a bit.
9122         (External Software, Package Options): Cross-reference to Option
9123         Checking, and use this to shorten our section.
9124         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ARGS): Prefer test -n
9125         "$x" to test "x$foo" != x.
9126         * lib/autoconf/status.m4 (AC_OUTPUT): Likewise.
9127         Don't warn if $enable_option_checking is "no".
9128         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ARGS): Initialize
9129         ac_unrecognized_opts to the empty string.
9130         Don't echo the unrecognized opts, as this might mishandle
9131         backslashes or leading -.
9132         (AC_PRESERVE_HELP_ORDER): Put the --disable-option-checking
9133         usage next to the other --disable-FEATURE options in the
9134         help string.
9136 2006-12-18  Steven G. Johnson  <stevenj@alum.mit.edu>
9138         * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS, _AC_INIT_PARSE_ARGS):
9139         (_AC_INIT_PARSE_ENABLE2, _AC_INIT_HELP, _AC_ENABLE_IF):
9140         Print warning for unrecognized --with and --enable options
9141         (AC_DISABLE_OPTION_CHECKING): New macro to disable warnings.
9142         * lib/autoconf/status.m4 (AC_CONFIG_SUBDIRS, _AC_OUTPUT_SUBDIRS):
9143         Disable option checking when subdirs are configured.
9144         (AC_OUTPUT): If warnings are enabled, print warning about
9145         unrecognized --with and --enable options at the end of
9146         the configure output (as well as at the beginning).
9147         * doc/autoconf.texi (Option Checking): New node.
9148         Document new option warning functionality.
9150 2006-12-16  Eric Blake  <ebb9@byu.net>
9152         * configure.ac (AC_INIT): Bump version, since 2.61a is released.
9153         * NEWS: Start news for current version.
9155 2006-12-15  Paul Eggert  <eggert@cs.ucla.edu>
9157         * lib/autoconf/functions.m4 (AC_FUNC_GETMNTENT):
9158         Define HAVE_GETMNTENT to 1, not to the empty string.
9159         Problem originally reported by Jochen Friedrich in
9160         <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=403243>.
9162         This change prompted by a problem report by Andrey Simonenko in
9163         <http://lists.gnu.org/archive/html/bug-autoconf/2006-12/msg00026.html>.
9164         * doc/autoconf.texi (Defining Symbols): AC_DEFINE works for
9165         object-like macros only, in the traditional portable character
9166         set.
9167         * lib/autoconf/general.m4 (AC_DEFINE_TRACE_LITERAL):
9168         Warn about attempts to define things that are not identifiers.
9169         * lib/autoconf/fortran.m4 (_AC_FC_WRAPPERS): Rewrite to avoid
9170         awful hack that AC_DEFINEd macro names containing parentheses.
9172 2006-12-12  Paul Eggert  <eggert@cs.ucla.edu>
9174         * doc/autoconf.texi: Undo some of the 2006-12-10 change.  It was
9175         too drastic, even if Texinfo in theory requires it for info mode.
9177         (config.status Invocation): Renamed back from Recreating a
9178         Configuration).
9179         (Obsolete config.status Use): Renamed back from Obsolete Recreation.
9180         (Autoconf 2.13): Renamed back from 20th-century Autoconf 2.
9182 2006-12-11  Paul Eggert  <eggert@cs.ucla.edu>
9184         * NEWS: Version 2.61a.
9186 2006-12-11  Paul Eggert  <eggert@cs.ucla.edu>
9187         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9189         * NEWS: Document changes with echo and printf, and the lack
9190         of limits on the total size of multi-line values of substituted
9191         variables, and the AC_FUNC_FSEEKO fix.
9193 2006-12-10  Paul Eggert  <eggert@cs.ucla.edu>
9195         * doc/autoconf.texi (Writing Autoconf Input): Renamed from
9196         Writing configure.ac.
9197         (Autoconf Input Layout): Renamed from configure.ac Layout.
9198         (Recreating a Configuration): Renamed from config.status Invocation.
9199         (Obsolete Recreation): Renamed from Obsolete config.status Use.
9200         (acconfig Header): Renamed from acconfig.h.
9201         (20th-century Autoconf 2): Renamed from Autoconf 2.13.
9202         (Writing Testsuites): Renamed from Writing testsuite.at.
9203         (Autom4te Cache): Renamed from autom4te.cache.
9205         * BUGS: Remove mention of VPATH problem, since it's now documented
9206         not to be a bug in the Autoconf build procedure itself, but rather
9207         a problem with the proprietary `make' programs.
9209         * doc/autoconf.texi (Build Directories): Add a cross reference
9210         to VPATH and Make.
9212         * build-aux/config.guess, build-aux/config.sub, build-aux/texinfo.tex:
9213         * doc/standards.texi: Sync from gnulib.
9215         * man/autoconf.1, man/autoheader.1, man/autom4te.1, man/autoreconf.1:
9216         * man/autoscan.1, man/autoupdate.1, man/config.guess.1:
9217         * man/config.sub.1, man/ifnames.1: Remove from CVS, since they're
9218         generated automatically.
9220 2006-12-06  Paul Eggert  <eggert@cs.ucla.edu>
9222         * lib/autoconf/c.m4 (_AC_PROG_CC_C89): Also try -xc99=all, for Sun
9223         C 5.8 on Solaris 10.  Using -xc99=all rather than -xc99 bypasses
9224         the buggy -xc99 option of Forte Developer 7 C on Solaris 9.
9226 2006-12-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9228         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE): Drop the
9229         `CEOF$ac_eof' special marker, the awk script cannot contain a
9230         line matching `^CEOF', so this is not needed any more.
9231         * tests/torture.at (Substitute a newline): Expose the `%!_!# '
9232         special marker in the test.
9234 2006-12-06  Stepan Kasal  <kasal@ucw.cz>
9236         * tests/tools.at (autom4te preselections): Use `find -newer';
9237         remove one of the sleeps.
9239         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ENABLE): Make it
9240         more readable, using ...
9241         (_AC_INIT_PARSE_ENABLE2): ... this new helper macro.
9243         * doc/autoconf.texi (autoheader Invocation): Do not double-
9244         quote the parameter of `AH_BOTTOM' in the example.
9246 2006-12-05  Stepan Kasal  <kasal@ucw.cz>
9248         * doc/autoconf.texi (Configuration Headers): Remove the
9249         example with multiple input files.
9250         (autoheader Invocation): Encourage `AH_BOTTOM', discouraging
9251         multiple input files.
9253 2006-12-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9255         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE): When
9256         creating the awk substitution script, handle one input line at a
9257         time, so that the maximum length of a substituted (multi-line)
9258         value is not limited by the size of the sed pattern space.
9259         The trade-off is a slightly repetitive sed script.
9260         * doc/autoconf.texi (Limitations of Usual Tools): Branch labels
9261         can only have up to 7 characters, due to Solaris 10 /bin/sed.
9262         * tests/torture.at (Substitute a 2000-byte string): Increase the
9263         test with several long lines, they should not be caught by sed
9264         limits any more.
9266         * tests/tools.at (autom4te preselections): New test, to flag
9267         entries missing from autom4te.cfg.
9268         Report by David Byron <dbyron@hheld.com>.
9270         * tests/torture.at (Substitute a 2000-byte string): Actually use
9271         AC_PROG_AWK, so the last change works as intended.
9272         (Substitute and define special characters): Likewise.
9273         (Substitute a newline): Likewise.
9275         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE): Use `$AWK'
9276         instead of `awk' consistently.
9277         (_AC_OUTPUT_CONFIG_STATUS): Initialize $AWK.
9278         * tests/torture.at (Torturing config.status): Test both the
9279         result of AC_PROG_AWK and plain awk.
9280         (Substitute a 2000-byte string): Likewise.
9281         (Substitute and define special characters): Likewise.
9282         (Substitute a newline): Likewise.
9284 2006-12-04  Paul Eggert  <eggert@cs.ucla.edu>
9286         * lib/autoconf/functions.m4 (AC_FUNC_FSEEKO): Check that fseeko
9287         can be assigned to a function pointer.  Problem reported by
9288         Peter Palfrader in <http://bugs.debian.org/401377>.  Based on
9289         part of a patch by Ralf Wildenhues in that same bug report.
9291 2006-12-01  Paul Eggert  <eggert@cs.ucla.edu>
9293         * tests/mktests.sh (ac_exclude_list): Exclude AC_FUNC_SETVBUF_REVERSED.
9294         * tests/semantics.at (AC_FUNC_SETVBUF_REVERSED): New test.
9296 2006-12-01  Eric Blake  <ebb9@byu.net>
9298         * lib/autoconf/c.m4 (AC_LANG_INT_SAVE): Avoid newline, to aid in
9299         cross-compiling from cygwin to mingw.
9300         Reported by Bob Rossi.  This resurrects the 2000-11-30 patch to
9301         aclang.m4, which was mistakenly removed in the 2001-09-17 patch
9302         to lib/autoconf/c.m4.
9304 2006-12-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9306         * lib/m4sugar/m4sh.m4 (_AS_ECHO_PREPARE): Use a longer test
9307         string for more reliable failure.  Wrap the entire test that
9308         causes the broken Solaris printf to dump core, in a subshell,
9309         so the segmentation fault message is reliably suppressed.
9310         Fix shell expansion errors by using /usr/ucb/echo always;
9311         avoid an error on systems without it by another subshell.
9312         Avoid m4 expansion of `$1'.  Set the zeroth argument of the
9313         subshell-$as_echo to `as_echo', for better error message.
9315 2006-11-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9317         * lib/autoconf/general.m4 (_AC_CACHE_DUMP): If `BASH_ARGV' or
9318         `BASH_SOURCE' contain a newline, set them to empty, as they may
9319         not be unset.
9321 2006-11-27  Paul Eggert  <eggert@cs.ucla.edu>
9323         Turn AC_FUNC_SETVBUF_REVERSED into a noop.  It's been obsolete for
9324         years and is too hard to maintain now.  The last straw was
9325         reported by Jerker Baeck in
9326         <http://lists.gnu.org/archive/html/autoconf/2006-11/msg00102.html>.
9327         * NEWS: AC_FUNC_SETVBUF_REVERSED is now obsolete.
9328         * doc/autoconf.texi (Particular Functions): Move
9329         AC_FUNC_SETVBUF_REVERSED from here...
9330         (Obsolete Macros): ... to here.  Say that it does nothing now.
9331         * lib/autoconf/functions.m4 (AC_FUNC_SETVBUF_REVERSED):
9332         Turn into (almost) a no-op.
9334         * lib/autoconf/c.m4 (AC_PROG_GCC_TRADITIONAL, AC_C_CONST):
9335         (AC_C_VOLATILE):
9336         Do not recommend via AN_FUNCTION, AN_IDENTIFIER, or AN_HEADER.
9337         These macros are obsolescent and new applications shouldn't need them.
9338         * lib/autoconf/functions.m4 (AC_FUNC_CLOSEDIR_VOID, AC_REPLACE_FNMATCH):
9339         (AC_FUNC_GETLOADAVG, AC_FUNC_GETPGRP, AC_FUNC_MEMCMP):
9340         (AC_FUNC_SELECT_ARGTYPES, AC_FUNC_SETPGRP, AC_FUNC_STAT, AC_FUNC_LSTAT):
9341         (AC_FUNC_STRFTIME, AC_FUNC_SETVBUF_REVERSED, AC_FUNC_UTIME_NULL):
9342         (AC_FUNC_VPRINTF): Likewise.
9343         * lib/autoconf/headers.m4 (AC_HEADER_DIRENT, AC_HEADER_STAT):
9344         (AC_HEADER_STDC, AC_HEADER_SYS_WAIT, AC_HEADER_TIME): Likewise.
9345         * lib/autoconf/types.m4 (AC_STRUCT_TM): Likewise.
9347         * doc/autoconf.texi (Setting Output Variables): Mention that
9348         @VAR1@VAR2 has unspecified behavior.  Problem reported by
9349         Ralf Wildenhues.
9350         * NEWS: Mention this.
9352         * Makefile.am: Put only a single '#' into the copyright notice,
9353         so that it's also present in the output file.  Standardize wording
9354         in makefile copyright notices to match GNU coding standards.
9355         * bin/Makefile.am: Likewise.
9356         * doc/Makefile.am: Likewise.
9357         * lib/Makefile.am: Likewise.
9358         * lib/freeze.mk: Likewise.
9359         * lib/autoconf/Makefile.am: Likewise.
9360         * lib/autoscan/Makefile.am: Likewise.
9361         * lib/autotest/Makefile.am: Likewise.
9362         * lib/m4sugar/Makefile.am: Likewise.
9363         * man/Makefile.am: Likewise.
9364         * tests/Makefile.am: Likewise.
9365         * lib/emacs/Makefile.am: Remove copyright notice; it's just a
9366         one-line file.
9368 2006-11-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9370         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE): Fix error
9371         in the sed script that mangles the awk script: delete up to the
9372         first exclamation mark only.
9373         * tests/torture.at (Substitute and define special characters):
9374         Test '!' too.
9376 2006-11-26  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9378         Rewrite config files generation: avoid quadratic growth in
9379         the number of substituted variables by using awk instead of sed
9380         for the bulk of the substitutions.
9381         * NEWS: Mention this.
9382         * doc/autoconf.texi (Setting Output Variables): `|#_!!_#|' is also
9383         forbidden in the output (and thus input) file.
9384         * lib/autoconf/status.m4 (_AC_AWK_LITERAL_LIMIT): New macro.
9385         (_AC_OUTPUT_FILES_PREPARE): Instead of several sed scripts,
9386         generate just one large awk script for substitutions,
9387         eliminating much of the earlier complexity, while adding some
9388         new complexity.  Only expand the substitution templates at
9389         configure time, for smaller configure script size.  If
9390         _AC_SUBST_FILES are used, test 'awk' for working getline support
9391         at config.status time.  If absent, interpolate through the
9392         shell.  The awk script was written with much help
9393         from Paolo Bonzini and Paul Eggert.
9394         (_AC_SED_CMD_NUM, _AC_SED_DELIM_NUM, _AC_SED_FRAG): Removed.
9395         (_AC_SED_FRAG_NUM): Likewise.
9396         (_AC_SUBST_CMDS): Renamed from...
9397         (_AC_SED_CMDS): ...this.
9398         (_AC_OUTPUT_FILE): Use _AC_SUBST_CMDS.
9399         * tests/torture.at (Substitute a 2000-byte string): Also
9400         substitute a line with 1000 words, and a variable with several
9401         long lines.
9402         (Substitute and define special characters): Test awk special
9403         characters, and put substitution input strings `@foo@' in the
9404         output, to test that no recursion happens; test several other
9405         combinations from Paolo Bonzini.
9407 2006-11-25  Paul Eggert  <eggert@cs.ucla.edu>
9409         * lib/autotest/general.m4 (AT_INIT): Undo recent changes
9410         that replaced echo with AS_ECHO where this wasn't necessary.
9411         Problem reportd by Ralf Wildenhues.
9412         * lib/m4sugar/m4sh.m4 (_AS_ECHO_PREPARE): Port to Solaris 7,
9413         where "/usr/bin/printf '%s\n' S" dumps core if S is long.
9414         This is Sun bug 4206210.  Problem reportd by Ralf Wildenhues.
9416 2006-11-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9418         * lib/freeze.mk (GREP): Removed, no need to initialize this.
9420 2006-11-21  Paul Eggert  <eggert@cs.ucla.edu>
9422         * doc/autoconf.texi (Limitations of Usual Tools): Don't claim
9423         that traditional Awk lacks 3-arg "split".  It has it.
9424         Mention that FS must be a single character, and a few other
9425         99-byte limits of traditional Awk.
9426         Mention that if (i in a) doesn't work with traditional Awk.
9428 2006-11-18  Paul Eggert  <eggert@cs.ucla.edu>
9430         * tests/autotest.at (BSx641-newline in command):
9431         (BS-BS-newline in command, BSx640-newline in command):
9432         (Newline-CODE-BS-newline in command):
9433         (Single-quote-BS-newline in command):
9434         (Single-quote-newline-BS-newline in command):
9435         Use printf '%s\n' instead of echo, for portability to hosts
9436         where echo interprets backslashes.  This will break on hosts
9437         that lack printf, but for now let's assume all such hosts
9438         are dead (if not, we should get reports of test failures).
9440 2006-11-17  Paul Eggert  <eggert@cs.ucla.edu>
9442         'echo' has some portability problems, when given a first argument
9443         with a leading '-', or when given any argument containing '\'.
9444         Avoid using 'echo' in these cases.
9445         * bin/Makefile.am $(bin_SCRIPTS): Rewrite to avoid 'echo' entirely.
9446         * lib/autoconf/c.m4 (AC_PROG_CC, AC_PROG_CXX, AC_PROG_OBJC): Likewise.
9447         * lib/autoconf/fortran.m4 (_AC_PROG_FC): Likewise.
9448         * lib/autotest/general.m4 (AT_INIT): Likewise.
9449         * bin/autoconf.as: Use AS_ECHO rather than plain echo, when the
9450         argument might be unportable.
9451         * lib/autoconf/c.m4 (AC_PROG_CC_C_O): Likewise.
9452         * lib/autoconf/erlang.m4 (AC_LANG(Erlang)): Likewise.
9453         * lib/autoconf/fortran.m4 (_AC_PROG_FC_V_OUTPUT):
9454         (_AC_FC_LIBRARY_LDFLAGS): Likewise.
9455         * lib/autoconf/functions.m4 (AC_FUNC_GETLOADAVG): Likewise.
9456         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ENABLE, _AC_INIT_PREPARE):
9457         (_AC_ARG_VAR_VALIDATE, AC_ARG_PROGRAM, _AC_MSG_LOG_CONFTEST):
9458         (AC_RUN_LOG, _AC_RUN_IFELSE, _AC_LIBOBJS_NORMALIZE): Likewise.
9459         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Likewise.
9460         * lib/autoconf/libs.m4 (_AC_PATH_X_DIRECT): Likewise.
9461         * lib/autoconf/programs.m4 (_AC_FEATURE_CHECK_LENGTH):
9462         (AC_PROG_MAKE_SET): Likewise.
9463         * lib/autoconf/status.m4 (_AC_SRCDIRS, _AC_OUTPUT_HEADER):
9464         (_AC_OUTPUT_SUBDIRS, _AC_OUTPUT_CONFIG_STATUS): Likewise.
9465         * lib/autotest/general.m4 (_AT_CREATE_DEBUGGING_SCRIPT, AT_INIT):
9466         (AT_CLEANUP, _AT_DECIDE_TRACEABLE, _AT_CHECK): Likewise.
9467         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE, _AS_ECHO_UNQUOTED):
9468         (_AS_BASENAME_SED, _AS_DIRNAME_SED, AS_MKDIR_P, AS_TMPDIR, AS_UNAME):
9469         (AS_TR_SH, AS_TR_CPP, AS_VAR_GET): Likewise.
9470         * bin/autoconf.as: Redo verbose flag implementation, as the old
9471         scheme wouldn't work with AS_ECHO.
9472         * lib/autotest/general.m4 (AT_INIT): Likewise.
9473         * lib/autoconf/general.m4 (AC_MSG_RESULT, AC_MSG_RESULT_UNQUOTED):
9474         Don't use ECHO_T, since ECHO_N is now reliable.
9475         * lib/autotest/general.m4 (AT_INIT): Likewise.
9476         * lib/autoconf/general.m4 (AC_ARG_PROGRAM): Use sed "$script"
9477         rather than using a here-document to put the script into a file.
9478         (_AC_DO_ECHO): Hoist the eval out of the echo, so that we can
9479         use AS_ECHO.
9480         * lib/m4sugar/m4sh.m4 (AS_VAR_GET): Likewise.
9481         * lib/autoconf/programs.m4 (_AC_FEATURE_CHECK_LENGTH): Use
9482         AS_ECHO_N rather than ECHO_N and ECHO_C.  This doesn't fix any
9483         bug, but we might as well stop using ECHO_N and ECHO_C internally.
9484         * lib/autotest/general.m4 (AT_SETUP): Likewise.
9485         * lib/m4sugar/m4sh.m4 (_AS_ECHO_N): Likewise.
9486         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS):
9487         (_AC_OUTPUT_MAIN_LOOP): Rework echo so that it has just one
9488         operand, as AS_ECHO requires.  Avoid double file name expansion.
9489         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Invoke _AS_ECHO_PREPARE.
9490         Don't set as_nl, since _AS_ECHO_PREPARE does that now.
9491         (_AS_PREPARE): Comment that _AS_ECHO_N_PREPARE is just for user code.
9492         (AS_ECHO, AS_ECHO_N, _AS_ECHO_PREPARE): New macros.
9493         * tests/c.at (AC_PROG_CPP without warnings, AC_PROG_CPP via CC):
9494         Double-quote strings that would otherwise contain M4 comments.
9495         * tests/m4sh.at (AS_ECHO and AS_ECHO_N): New test.
9497         * configure.ac (AC_INIT): Bump to 2.61a.
9498         * NEWS: Likewise.
9500 2006-11-17  Paul Eggert  <eggert@cs.ucla.edu>
9502         Version 2.61.
9504         * configure.ac (AC_INIT): Bump to 2.61.
9505         * NEWS: Likewise.
9507         * tests/autotest.at (Macro with backslash in a test title):
9508         Comment out for now, as this tests neither fails nor passes
9509         reliably.  Problem reported by Ralf Wildenhues.
9511 2006-11-16  Paul Eggert  <eggert@cs.ucla.edu>
9513         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ENABLE): Fix some typos
9514         in previous change, which caused test failures.
9516 2006-11-16  Stepan Kasal  <kasal@ucw.cz>
9518         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ARGS): Factor out
9519         code for --enable, --disable, --with, and --without to...
9520         (_AC_INIT_PARSE_ENABLE): ... a new macro.
9521         * doc/autoconf.texi (Package Options):
9522         * NEWS: Document that AC_ARG_ENABLE allows dots, too.
9524 2006-11-16  Paul Eggert  <eggert@cs.ucla.edu>
9526         Import these changes from config via gnulib:
9528         2006-11-15  Ben Elliston  <bje@gnu.org>
9530         From Josselin Mouette <joss@debian.org>:
9531         * build-aux/config.guess (SX-8:SUPER-UX:*:*): New.
9533         2006-11-08  Ben Elliston  <bje@gnu.org>
9535         * build-aux/config.guess (authenticamd:Interix*:[3456]*): Another AMD64.
9537         2006-11-07  Steve Woodford  <scw@NetBSD.org>
9538                     Ben Elliston  <bje@gnu.org>
9540         * build-aux/config.guess (*:NetBSD:*:*): Handle sh5el arch.
9541         * build-aux/config.sub (sh5el): New basic_machine.
9544         Import this change from coreutils:
9546         2006-02-13  Jim Meyering  <jim@meyering.net>
9548         * GNUmakefile (all): Emit diagnostics to stderr, not stdout.
9551         Import this change from gnustandards via gnulib:
9553         2006-11-15  Karl Berry  <karl@gnu.org>
9555         * standards.texi: core -> memory, throughout.
9556         (CPU Portability): show correct example of calling write
9557         on a char value; thanks to Paul Eggert for the code.
9558         Both of these suggestions from Eugene Y. Vasserman.
9561         Import these changes from texinfo via gnulib:
9563         2006-11-08  Karl Berry  <karl@gnu.org>
9565         * build-aux/texinfo.tex (\dopdfimage): look for png, jpg/jpeg/JPG, and
9566           as well as pdf images, since they are supported in pdftex with
9567           no further ado.
9569         2006-11-05  Karl Berry  <karl@gnu.org>
9571         * doc/texinfo.tex (Image Syntax): don't mention GIF any more.
9573 2006-11-13  Paul Eggert  <eggert@cs.ucla.edu>
9575         * NEWS: Document the AC_ARG_WITH change.
9577 2006-11-13  Bruno Haible  <bruno@clisp.org>
9579         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ARGS): For --with, --without
9580         options, transliterate also dots to underscores.
9581         (_AC_ENABLE_IF): Transliterate also dots to underscores.
9582         * doc/autoconf.texi (External Software): Document that AC_ARG_WITH's
9583         first argument may also contain dots.
9585 2006-11-09  Paul Eggert  <eggert@cs.ucla.edu>
9587         * tests/mktests.sh (ac_exclude_list): Exclude AC_PROG_CXX_C_O, for
9588         benefit of platforms like Solaris+GCC where it is common to have a
9589         non-working g++ installation.
9591 2006-11-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9592         and Joel E. Denny  <jdenny@ces.clemson.edu>
9593         and Paul Eggert  <eggert@cs.ucla.edu>
9595         * tests/autotest.at (AT_CHECK_AT_TITLE): Fix shell quoting bugs
9596         and non-portable sed scripts, and use $CONFIG_SHELL when invoking
9597         ./micro-suite.
9599 2006-11-08  Paul Eggert  <eggert@cs.ucla.edu>
9601         * lib/autoconf/types.m4 (AC_TYPE_LONG_LONG_INT): Set
9602         ac_cv_type_long_long_int to 'yes' instead of 'cross-compiling'.
9603         Imported from a similar patch to gnulib by Bruno Haible.
9605 2006-11-08  Paul Eggert  <eggert@cs.ucla.edu>
9607         * NEWS: New macros AC_C_FLEXIBLE_ARRAY_MEMBER, AC_C_VARARRAYS.
9608         * doc/autoconf.texi (C Compiler): Document them.
9609         * lib/autoconf/c.m4 (AC_C_FLEXIBLE_ARRAY_MEMBER, AC_C_VARARRAYS):
9610         New macros, taken from gnulib.
9612 2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
9614         * lib/autoconf/types.m4 (AC_TYPE_LONG_LONG_INT): Detect bug in
9615         Tandem NonStop Kernel (OSS) cc -O circa 2004, reported by
9616         Matthew Woehlke.
9618 2006-10-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9620         * tests/torture.at (Configuring subdirectories): Do not skip
9621         Automake 1.10 nor future Automake 11.1 (sic).
9623 2006-10-26  Joel E. Denny  <jdenny@ces.clemson.edu>
9624         and Stepan Kasal  <kasal@ucw.cz>
9626         Handle special characters in test case titles correctly.
9627         * lib/autotest/general.m4 (AT_INIT): M4-quote and AS_ESCAPE AT_help_all
9628         properly.
9629         (AT_SETUP): M4-quote and AS_ESCAPE the title properly everywhere.
9630         * tests/autotest.at (AT_CHECK_AT_TITLE): Add EXPANDED-TITLE-TO-TEST
9631         argument.  Extend to check titles printed by ./micro-suite and
9632         ./micro-suite -l and the title in micro-suite.log.
9633         (Backquote in a test title,
9634         Single-quote in a test title,
9635         Double-quote in a test title): Don't expect failure anymore.
9636         (Backslash in a test title): Put a non-whitespace character after the
9637         backslash so that Bourne shells might actually see it as an escape
9638         sequence.
9639         (Brackets in a test title,
9640         Pound in a test title,
9641         Comma in a test title,
9642         Quoted Macro in a test title,
9643         Macro in a test title,
9644         Macro with single-quote in a test title): New tests.
9645         (Macro with backquote in a test title,
9646         Macro with double-quote in a test title,
9647         Macro with backslash in a test title): New tests expected to fail.
9648         * tests/torture.at (#define header templates): M4-quote this title in
9649         AT_SETUP call so that no M4 code is commented inadvertently somewhere.
9650         The visible effect was a stray [] in the testsuite output.
9652 2006-10-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9654         * doc/autoconf.texi (Limitations of Builtins): Do not invoke
9655         `trap ... 0' inside a function, for AIX sh.
9657 2006-10-26  Paul Eggert  <eggert@cs.ucla.edu>
9659         * tests/base.at (AC_COMPUTE_INT): Test **0** rather than 1 / 0,
9660         since powerpc-apple-darwin8-gcc-4.0.1 (Apple Computer, Inc. build
9661         5363) simply issues a warning when dividing by zero at compile
9662         time.  Problem reported by Elias Pipping.
9664 2006-10-26  Eric Blake  <ebb9@byu.net>
9666         * THANKS: Update.
9667         * doc/autoconf.texi (Evaluation Macros): Improve the example to
9668         show effect on macros that expand with commas.
9669         Reported by Joel E. Denny.
9671         * tests/m4sugar.at (m4_warn, m4_require: circular dependencies):
9672         Also work with M4 1.4.8.
9674 2006-10-25  Paul Eggert  <eggert@cs.ucla.edu>
9676         * doc/autoconf.texi (Slashes): Document Tru64 4.0 bug reported by
9677         Jim Meyering.
9679 2006-10-25  Stepan Kasal  <kasal@ucw.cz>
9681         * tests/tools.at (autom4te --force): New test, verifies that
9682         `--force' always rewrites the output file.
9684 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
9686         * doc/autoconf.texi (Limitations of Usual Tools): Document that rm
9687         needs operands on NetBSD 2.0.2.  Problem reported by Bruno Haible.
9689 2006-10-24  Stepan Kasal  <kasal@ucw.cz>
9691         * tools/trace.at (autoconf --trace: user macros): Test `$%'.
9693 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
9695         * lib/autoconf/specific.m4 (_AC_SYS_LARGEFILE_MACRO_VALUE):
9696         If FUNCTION-BODY is nonempty, use AC_LINK_IFELSE rather than
9697         AC_COMPILE_IFELSE, to work around problem with OSF/1 4.0F fseeko
9698         reported by Nelson H. F. Beebe for Coreutils 6.4.
9700         * tests/tools.at (autoconf --trace: user macros): Remove test
9701         for tracing multiline macros, since m4 1.4.7a uses a different
9702         way to number lines.  Problem reported by Ralf Wildenhues.
9704 2006-10-24  Stepan Kasal  <kasal@ucw.cz>
9706         * bin/autom4te.in (handle_m4): Do not redirect stdin to
9707         /dev/null since the heuristics for interactive behaviour was
9708         fixed in CVS m4.
9710         * bin/autom4te.in: With --force, always refresh the output
9711         file.  Problem reported by Greg Schafer <gschafer@zip.com.au>.
9713         * bin/autoconf.as: Fix the verbose message at the end.
9715 2006-10-23  Paul Eggert  <eggert@cs.ucla.edu>
9717         * configure.ac (AC_INIT): Bump to 2.60c.
9718         * NEWS: Likewise.
9720 2006-10-22  Paul Eggert  <eggert@cs.ucla.edu>
9722         * NEWS: Version 2.60b.
9724         Import this change from Texinfo:
9725         2006-10-15  Karl Berry  <karl@gnu.org>
9726         * build-aux/texinfo.tex: automake 1.10
9728         * NEWS: Remove AC_CACHE_CHECK_INT.
9729         * doc/autoconf.texi (Caching Results): Likewise.
9730         * lib/autoconf/general.m4 (_AC_CACHE_CHECK_INT): Renamed from
9731         AC_CACHE_CHECK_INT, since it's no longer public.
9732         * lib/autoconf/types.m4: All uses of AC_CACHE_CHECK_INT changed.
9733         * tests/base.at (AC_COMPUTE_INT): Test this, not AC_CACHE_CHECK_INT.
9735 2006-10-20  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9737         * doc/autoconf.texi (Limitations of Usual Tools): Fix two typos.
9739 2006-10-19  Eric Blake  <ebb9@byu.net>
9741         * lib/m4sugar/m4sugar.m4 (m4_mkstemp): New macro.
9742         (m4_maketemp): Avoid warnings with M4 1.9a.
9743         * lib/emacs/autoconf-mode.el (autoconf-font-lock-keywords): Color
9744         m4_mkstemp.
9745         * doc/autoconf.texi (Redefined M4 Macros): Document m4_mkstemp.
9746         * NEWS: Likewise.
9748 2006-10-16  Eric Blake  <ebb9@byu.net>
9750         * doc/autoconf.texi (Setting Output Variables): Fix typo.
9752         * bin/autoconf.as (version): Reword to match GNU Coding
9753         Standards.
9754         * bin/autoheader.in (version): Likewise.
9755         * bin/autom4te.in (version): Likewise.
9756         * bin/autoreconf.in (version): Likewise.
9757         * bin/autoscan.in (version): Likewise.
9758         * bin/autoupdate.in (version): Likewise.
9759         * bin/ifnames.in (version): Likewise.
9761 2006-10-14  Stepan Kasal  <kasal@ucw.cz>
9763         * lib/m4sugar/m4sh.m4 (AS_LITERAL_IF): Expand $1 before
9764         looking for special shell characters.
9765         * lib/autoconf/functions.m4 (AC_CHECK_FUNC): Do not expand the
9766         macro defined by AS_VAR_PUSHDEF before passing it as a
9767         parameter.
9768         * lib/autoconf/general.m4 (AC_CHECK_FILE, AC_CHECK_DECL):
9769         * lib/autoconf/libs.m4 (AC_SEARCH_LIBS, AC_CHECK_LIB):
9770         * lib/autoconf/types.m4 (_AC_CHECK_TYPE_NEW, AC_CHECK_MEMBER):
9771         * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_MONGREL):
9772         (_AC_CHECK_HEADER_NEW, _AC_CHECK_HEADER_OLD, _AC_CHECK_HEADER_DIRENT):
9773         Likewise.
9774         * lib/autotest/general.m4 (AT_INIT): Quote parameters of
9775         AS_VAR_* properly.
9776         * tests/m4sh.at (AS_LITERAL_IF): New test.
9778 2006-10-14  Paul Eggert  <eggert@cs.ucla.edu>
9780         (Imported from Automake.)
9781         * build-aux/install-sh (posix_mkdir): Reject FreeBSD 6.1 mkdir -p -m,
9782         which incorrectly sets the mode of an existing destination
9783         directory.  In some cases the unpatched install-sh could do the
9784         equivalent of "chmod 777 /" or "chmod 0 /" on a buggy FreeBSD
9785         system.  We hope this is rare in practice, but it's clearly worth
9786         fixing.  Problem reported by Alex Unleashed in
9787         <http://lists.gnu.org/archive/html/bug-autoconf/2006-10/msg00012.html>.
9788         Also, don't bother to check for -m bugs unless we're using -m;
9789         suggested by Stepan Kasal.
9791 2006-10-14  Paul Eggert  <eggert@cs.ucla.edu>
9793         Import this change from Automake:
9795         2006-08-23  Alexandre Duret-Lutz  <adl@gnu.org>
9796         * lib/Autom4te/ChannelDefs.pm (usage): Mention that -Wportability
9797         is enabled by default with gnu and gnits strictness.
9798         Report from Bruno Haible.
9800         2006-03-10  Alexandre Duret-Lutz  <adl@gnu.org>
9801         * lib/Autom4te/ChannelDefs.pm: Make -Wportability the default in
9802         gnu and gnits modes.
9804         Import this change from Config:
9806         2006-09-20  Ben Elliston  <bje@gnu.org>
9807         * build-aux/config.sub (score, score-*): New.
9809         Import this change from Gnulib:
9811         2006-09-16  Karl Berry  <karl@gnu.org>
9812         * doc/fdl.texi (ADDENDUM): switch to @heading from @appendixsubsec,
9813         to avoid sectioning errors.
9815         Import these changes from Texinfo:
9817         2006-10-04  Karl Berry  <karl@gnu.org>
9818         * build-aux/texinfo.tex (\singlequotechar): rename to \codequoteright.
9819         (\quoteexpand): rename to \rquoteexpand.
9820         (\codequoteleft): new def, to look for @set codequotebacktick.
9821         (\lquoteexpand, \quoteexpand): new defs.
9822         (\lquoteChar, \rquoteChar, \dashChar, \underChar: new \chardef's.
9823         (\code): must use new \...Char values, since now ` is active.
9825         2006-08-26  Karl Berry  <karl@gnu.org>
9826         * build-aux/texinfo.tex (\textdegree): New command.
9828         2006-08-12  Karl Berry  <karl@gnu.org>
9829         * build-aux/texinfo.tex (error \box0): smaller font.
9831 2006-10-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9833         * doc/autoconf.texi (Autoheader Macros): Fix syntax error.
9835 2006-10-13  Stepan Kasal  <kasal@ucw.cz>
9837         * doc/autoconf.texi (Autoheader Macros): Warn that the text
9838         added to the template can get mangled.
9840 2006-10-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9842         * lib/autoconf/functions.m4 (AC_FUNC_OBSTACK): In the test,
9843         include the default headers, and redefine obstack_chunk_alloc
9844         and obstack_chunk_free.  Fixes false failure with glibc.
9846 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
9848         * lib/m4sugar/m4sh.m4 (_AS_TEST_PREPARE): Set as_executable_p,
9849         for backward compatibility with Libtool 1.5.22.  Problem reported
9850         by Ralf Wildenhues.
9852 2006-10-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9854         * lib/autoconf/c.m4 (AC_PROG_GCC_TRADITIONAL): Require
9855         AC_PROG_CC.
9856         Report by IOhannes m zmoelnig <zmoelnig@iem.at>.
9858 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
9860         * NEWS: AC_USE_SYSTEM_EXTENSIONS now defines _TANDEM_SOURCE for
9861         the NonStop platform.
9862         * doc/autoconf.texi (Posix Variants): Likewise.
9863         * lib/autoconf/specific.m4 (AC_USE_SYSTEM_EXTENSIONS): Likewise.
9865         * lib/m4sugar/m4sh.m4 (AS_TEST_X): New macro.
9866         (AS_EXECUTABLE_P): Use as_test_x rather than as_executable_p.
9867         (_AS_TEST_PREPARE): Set as_test_x rather than as_executable_p.
9868         Use a better substitute, by inspecting the output of "ls"
9869         rather than just using ":".
9870         * lib/autoconf/general.m4 (_AC_LINK_IFELSE): Use AS_TEST_X
9871         rather than AS_EXECUTABLE_P, since we needn't worry about
9872         non-regular files here.
9874         * NEWS: Autoconf-generated shell scripts no longer export BIN_SH,
9875         due to configuration hassles with this.  See Tonya Underwood's report
9876         <http://lists.gnu.org/archive/html/bug-autoconf/2006-10/msg00003.html>.
9877         * doc/autoconf.texi (Special Shell Variables): Likewise.
9879 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
9880             Stepan Kasal  <kasal@ucw.cz>
9882         * lib/m4sugar/m4sh.m4 (AS_BOURNE_COMPATIBLE): Don't set BIN_SH.
9883         (_AS_DETECT_BETTER_SHELL): Don't look in /usr/bin/posix.
9885 2006-10-11  Stepan Kasal  <kasal@ucw.cz>
9887         * lib/m4sugar/m4sh.m4 (AS_BOURNE_COMPATIBLE): Move the
9888           initialization which is not inherited through the environment
9889         (_AS_BOURNE_COMPATIBLE): ... to this new macro.
9890         (_AS_RUN): Call _AS_BOURNE_COMPATIBLE, not AS_BOURNE_COMPATIBLE.
9892 2006-10-09  Paul Eggert  <eggert@cs.ucla.edu>
9894         * doc/autoconf.texi (Limitations of Usual Tools): Describe
9895         problems with mkdir -p -m.
9897 2006-10-06  Paul Eggert  <eggert@cs.ucla.edu>
9899         * lib/autoconf/c.m4 (_AC_PROG_PREPROC_WORKS_IFELSE): Remove
9900         comment about ac_cpp_err; it was incorrect, and anyway
9901         ac_cpp_err is being removed below.
9902         * lib/autoconf/general.m4 (_AC_PREPROC_IFELSE): Don't
9903         set ac_cpp_err to 'yesyes' if preproc_warn_flag and werror_flag
9904         are both 'yes'.  In fact, don't bother setting ac_cpp_err at all;
9905         nobody uses it.
9906         (_AC_COMPILE_IFELSE, _AC_LINK_IFELSE): Don't log our funky tests
9907         with werror_flag and conftest.err and so forth.  This is more
9908         compatible with how _AC_PROG_PREPROC_WORKS_IFELSE behaves,
9909         and anyway the user shouldn't normally want to see this gorp logged.
9910         Problem reported by Ralf Wildenhues.
9911         * lib/autoconf/lang.m4 (AC_LANG_WERROR): werror_flag's default is
9912         empty, not 'no', since the rest of the code uses 'test -z'.
9914 2006-10-04  Paul Eggert  <eggert@cs.ucla.edu>
9916         * lib/autoconf/general.m4 (_AC_COMPILE_IFELSE, _AC_LINK_IFELSE):
9917         Use a single call to AC_DO_TOKENS rather than multiple, for
9918         efficiency.
9919         (_AC_LINK_IFELSE): Test that resulting file is executable.
9920         Problem reported by mwoehlke in
9921         <http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00048.html>.
9923         * lib/m4sugar/m4sh.m4 (_AS_TEST_PREPARE): Use "test -x /" rather
9924         than creating a file to use with test -x; this is much faster.
9926 2006-10-02  Bruno Haible  <bruno@clisp.org>
9928         * lib/autom4te.in (Automake-preselections): Add
9929         AM_GNU_GETTEXT_INTL_SUBDIR, for automake 1.10.
9931 2006-09-27  Stepan Kasal  <kasal@ucw.cz>
9933         * doc/autoconf.texi (Writing testsuite.at): Fix a typo: for
9934         standard error, `experr' should be used, not `expout'.
9936 2006-09-26  Paul Eggert  <eggert@cs.ucla.edu>
9938         * lib/autoconf/functions.m4 (AC_FUNC_FSEEKO): Don't compile the
9939         fseeko testing program twice; just use the earlier result.
9940         * lib/autoconf/specific.m4 (_AC_SYS_LARGEFILE_MACRO_VALUE):
9941         Set cache var to 'unknown' (not 'no') if leaving the macro unset
9942         still doesn't let the program compile.
9943         (AC_SYS_LARGEFILE): Test for _LARGE_FILES only if earlier tests
9944         failed.
9946         * lib/autoconf/functions.m4: Fix problems reported by Ralf Wildenhues.
9947         (AC_FUNC_ERROR_AT_LINE): Don't bother to check for error.h.  Just
9948         include it, without including anything else.
9949         (AC_FUNC_FSEEKO): Avoid gcc -Wall warnings about constant
9950         expressions.
9951         (AC_FUNC_STRNLEN): Require AC_USE_SYSTEM_EXTENSIONS.
9953 2006-09-26  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9955         * lib/autoconf/functions.m4 (AC_FUNC_ERROR_AT_LINE): Check for
9956         `error.h', and include it, for a `error_at_line' prototype.
9957         Use a nonempty format string in the link test.
9958         * lib/autoconf/functions.m4 (AC_FUNC_WAIT3): Include <sys/wait.h>,
9959         for a declaration of wait3.
9961 2006-09-26  Paul Eggert  <eggert@cs.ucla.edu>
9963         * NEWS: AC_CHECK_DECL now also works with aggregate objects.
9964         * doc/autoconf.texi (Generic Declarations): Clarify that AC_CHECK_DECL
9965         can apply to constants too, and that it checks for macro defns.
9966         * lib/autoconf/general.m4 (AC_CHECK_DECL): Assume C89 or better,
9967         and simply cast the identifier to void.  This handles structure
9968         values.  Problem reported by Ralf Wildenhues.
9969         * tests/semantics.at (AC_CHECK_DECLS): Also check enums.
9971 2006-09-26  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9973         * tests/semantics.at (AC_CHECK_DECLS): Also check macros,
9974         structure, and function symbols.
9976 2006-09-26  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9978         * tests/semantics.at (AC_CHECK_MEMBERS): Also test with a struct
9979         member.
9981 2006-09-25  Paul Eggert  <eggert@cs.ucla.edu>
9983         * NEWS: Recommend M4 1.4.7 instead of 1.4.6.
9984         * README: Likewise.
9985         * doc/autoconf.texi (Introduction, Why GNU M4): Likewise.
9987 2006-09-25  Paul Eggert  <eggert@cs.ucla.edu>
9988         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9990         * lib/autoconf/functions.m4 (AC_FUNC_OBSTACK): Avoid `gcc -Wall'
9991         warnings (uninitialized value).
9992         (AC_FUNC_UTIME_NULL): Likewise, test for and include <utime.h> if
9993         present.
9994         * lib/autoconf/types.m4 (AC_TYPE_LONG_LONG_INT): Likewise, add
9995         parentheses.
9996         (AC_STRUCT_TM): Likewise, avoid unused variables.
9998 2006-09-20  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
10000         * lib/autoconf/c.m4 (_AC_ARG_VAR_LDFLAGS): Update comment.
10001         (_AC_ARG_VAR_LIBS): New macro: let LIBS be precious.
10002         (AC_PROG_CC, AC_PROG_CXX, AC_PROG_OBJC): Call _AC_ARG_VAR_LIBS.
10003         * lib/autoconf/fortran.m4 (AC_PROG_F77, AC_PROG_FC): Likewise.
10004         Report by Olly Betts.
10006 2006-09-19  Eric Blake  <ebb9@byu.net>
10008         * m4/m4.m4: Change copyright.
10009         * configure: Regenerate.
10010         * Makefile.in: Likewise.
10011         * bin/Makefile.in: Likewise.
10012         * doc/Makefile.in: Likewise.
10013         * lib/Makefile.in: Likewise.
10014         * lib/Autom4te/Makefile.in: Likewise.
10015         * lib/autoconf/Makefile.in: Likewise.
10016         * lib/autoscan/Makefile.in: Likewise.
10017         * lib/autotest/Makefile.in: Likewise.
10018         * lib/emacs/Makefile.in: Likewise.
10019         * lib/m4sugar/Makefile.in: Likewise.
10020         * man/Makefile.in: Likewise.
10021         * tests/Makefile.in: Likewise.
10023         * m4/m4.m4 (AC_PROG_GNU_M4): Check for m4 --debugfile support.
10024         * bin/Makefile.am (edit): Substitute M4_DEBUGFILE.
10025         * bin/autom4te.in (handle_m4): Favor --debugfile over misnamed
10026         --error-output, to avoid warnings with M4 2.0.
10028 2006-09-19  Stepan Kasal  <kasal@ucw.cz>
10030         * lib/autoconf/libs.m4 (AH_CHECK_LIB): Fix quoting, to be
10031           consistent with _AH_CHECK_FUNCS and _AH_CHECK_HEADERS.
10032         * lib/autoconf/headers.m4 (AH_CHECK_HEADERS_DIRENT): Likewise.
10034 2006-09-15  Stepan Kasal  <kasal@ucw.cz>
10036         * lib/autoconf/functions.m4 (AC_FUNC_GETMNTENT): Eliminate the
10037         expansion of AC_CHECK_FUNCS.
10039 2006-09-14  Stepan Kasal  <kasal@ucw.cz>
10041         * lib/autoconf/general.m4 (AC_CONFIG_MACRO_DIR): Remove a
10042         mistaken comment: the path has to be relative; do not use
10043         the path at runtime.
10045 2006-09-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
10047         * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): Quote the
10048         argument to `--prefix' for sub-configure scripts.
10049         Pass `--silent' to sub-configure scripts.
10050         * tests/torture.at (Configuring subdirectories): Add tests
10051         for both changes.
10052         * doc/autoconf.texi (Setting Output Variables): Fix example to
10053         not show `--silent' being passed to a `configure' re-run.
10055 2006-09-12  Paul Eggert  <eggert@cs.ucla.edu>
10057         * doc/autoconf.texi (Input): Clarify role of AC_CONFIG_MACRO_DIR.
10058         * lib/autoconf/general.m4 (AC_CONFIG_MACRO_DIR): Do not check
10059         for the existence of the directory at configure-time.  That's
10060         too late, anyway.  Problem reported by Stefan Seefeld.
10062         * lib/m4sugar/m4sh.m4 (_AS_TEST_PREPARE): Avoid bug in UnixWare
10063         7.1.4 /usr/bin/posix/sh described by Tim Rice in
10064         <http://lists.gnu.org/archive/html/bug-autoconf/2006-09/msg00017.html>.
10066 2006-09-11  Stepan Kasal  <kasal@ucw.cz>
10068         * tests/local.at (AT_CHECK_M4): Fix this so that the testsuite
10069         works with GNU M4 1.4.3 again; make the normalized form
10070         match the current m4 message; fix the description.
10071         * test/tools.at (autom4te cache): Adapt to the change.
10073 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
10075         * lib/autoconf/functions.m4 (AC_FUNC_MKTIME):  Add year_2050_test
10076         to catch glibc bug 2821
10077         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
10079         Merge from gnulib as follows: Use AC_CHECK_HEADERS_ONCE instead of
10080         AC_CHECK_HEADERS, and likewise for AC_CHECK_FUNCS_ONCE and
10081         AC_CHECK_FUNCS.  Don't check for stdlib.h, since we now
10082         assume C89.
10084 2006-09-08  Stepan Kasal  <kasal@ucw.cz>
10086         * lib/autom4te.in (Autoconf-without-aclocal-m4): Move the
10087         preselections ...
10088         (Autoconf): ... here.
10089         (Autoscan-preselections): Delete.
10091 2006-09-07  Stepan Kasal  <kasal@ucw.cz>
10093         * lib/autom4te.in (Automake-preselections): Preselect
10094         AM_ENABLE_MULTILIB.
10096 2006-09-05  Paul Eggert  <eggert@cs.ucla.edu>
10098         * doc/autoconf.texi (Preset Output Variables): srcdir and
10099         top_srcdir are not necessarily relative.  Problem reported
10100         by Dries Kimpe.
10102 2006-09-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
10104         * lib/autoconf/fortran.m4 (_AC_PROG_FC): Prefer xlf90/xlf95 over
10105         f90/f95 because the latter drivers of AIX Fortran 9.1 do not
10106         accept files with extension `.f'.  For consistency, also prefer
10107         xlf over f77.
10108         * doc/autoconf.texi (Fortran Compiler): Remove mention of bug
10109         from last patch.
10111 2006-09-05  Romain Lenglet  <rlenglet@users.forge.objectweb.org>
10113         * lib/autoconf/erlang.m4 (AC_ERLANG_CHECK_LIB): Added substitution
10114         of ERLANG_LIB_VER_* variables.
10115         * doc/autoconf.texi (Erlang Libraries): Document ERLANG_LIB_VER_*
10116         variables.
10118 2006-09-03  Paul Eggert  <eggert@cs.ucla.edu>
10119         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
10121         * doc/autoconf.texi (Limitations of Builtins): Document 'unset'
10122         bugs of Bash 2.01 and 2.05a.
10123         (Fortran Compiler): Document that AC_PROG_CC should be called
10124         before AC_PROG_FC, due to a bug in Autoconf.
10126 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
10128         * NEWS: New macro AC_CACHE_CHECK_INT.  It replaces the
10129         old AC_COMPUTE_INT, which now behaves like _AC_COMPUTE_INT
10130         except the first two arguments are reversed.
10131         * doc/autoconf.texi (Caching Results): New macro AC_CACHE_CHECK_INT.
10132         (Generic Compiler Characteristics): AC_COMPUTE_INT no longer
10133         caches nor outputs a diagnostic.  Suggested by Bruno Haible.
10134         * lib/autoconf/general.m4 (AC_CACHE_CHECK_INT): New macro,
10135         equivalent to the old AC_COMPUTE_INT.
10136         (AC_COMPUTE_INT): No longer caches or reports.  New signature.
10137         All uses changed to AC_CACHE_CHECK_INT.
10138         * tests/base.at (AC_CACHE_CHECK_INT): New test.
10139         * tests/mktests.sh (ac_exclude_list): Add AC_CACHE_CHECK_INT.
10141 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
10143         * NEWS: AC_FUNC_FNMATCH, AC_FUNC_FNMATCH_GNU, AC_FUNC_GETLOADVG,
10144         and AC_REPLACE_FNMATCH are now obsolescent in Autoconf.  New
10145         programs should use their Gnulib counterparts.
10146         * doc/autoconf.texi (Particular Functions): Likewise.
10147         (Macro Names, testsuite Invocation): Replace uses of these
10148         obsolete macros with uses of non-obsolete macros.
10150 2006-08-29  Eric Blake  <ebb9@byu.net>
10152         * configure.ac (AC_INIT): Bump to 2.60b.
10153         * NEWS: Update.
10155 2006-08-28  Eric Blake  <ebb9@byu.net>
10157         * lib/autoconf/headers.m4 (AC_HEADER_STAT): Fix logic that was
10158         mistakenly swapped on 2006-08-15.
10160 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
10162         * NEWS: Version 2.60a.
10164 2006-08-25  Stepan Kasal  <kasal@ucw.cz>
10166         * lib/autoconf/general.m4 (_AC_LINK_IFELSE): Remove the IPA/IPO
10167         file created by the PGI compiler.
10169 2006-08-25  Noah Misch  <noah@cs.caltech.edu>
10171         * lib/Autom4te/General.pm (END): Use `File::Path::rmtree' to
10172         simplify the code.
10174 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
10176         Fix Lex library problem reported to us by Julio Garvia.
10177         * doc/autoconf.texi (Particular Programs): YYTEXT_POINTER is
10178         for the default, which the user can override.
10179         * lib/autoconf/programs.m4 (AC_PROG_LEX): Let _AC_PROG_LEX_YYTEXT_DECL
10180         deal with LEXLIB.
10181         (_AC_PROG_LEX_YYTEXT_DECL): Handle caching correctly; the old code
10182         didn't work if some values were cached but not others.  Test for
10183         broken lex libraries like native ia64-hp-hpux11.22; see
10184         <http://sources.redhat.com/ml/binutils/2003-12/msg00337.html>, and
10185         work around the problem by preferring an empty LEXLIB to -lfl or
10186         -ll.  Let the user set LEXLIB='' to indicate no library needed.
10188         * NEWS: Recommend M4 1.4.6 instead of 1.4.5.
10189         * README: Likewise.
10190         * doc/autoconf.texi (Introduction, Why GNU M4): Likewise.
10192 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
10194         Rework to use more-modern build style.
10195         Many files are renamed; all uses of their names were changed.
10196         * .x-sc_trailing_blank: Renamed from .x-sc_trailing_space.
10197         * .x-sc_useless_cpp_parens: New file.
10198         * build-aux/config.guess: Renamed from config/config.guess.  Update.
10199         * build-aux/config.sub: Renamed from config/config.sub.  Update.
10200         * build-aux/elisp-comp: Renamed from config/elisp-comp.
10201         * build-aux/install-sh: Renamed from config/install-sh.  Update.
10202         * build-aux/mdate-sh: Renamed from config/mdate-sh.
10203         * build-aux/missing: Renamed from config/missing.
10204         * build-aux/texinfo.tex: Renamed from config/texinfo.tex.  Update.
10205         * build-aux/vc-list-files: Renamed from config/vc-list-files.
10206         * config/Makefile.am: Removed.
10207         * config/mkinstalldirs: Removed.
10208         * config/move-if-change: Removed.
10209         * m4/m4.m4: Renamed from config/m4.m4.  Add (C) to copyright notice.
10210         * Makefile.am (SUBDIRS): Remove config.
10211         (ACLOCAL_AMFLAGS): Include from m4, not config.
10212         (EXTRA_DIST): Add config/announce-gen, config/prev-version.txt.
10213         (WGET, WGETFLAGS): New macros, since Makefile.maint no longer does this.
10214         (autom4te-update): Rewrite with a loop.  Get from gnulib, not automake.
10215         Fail if there's an error.
10216         * Makefile.cfg (move_if_change): Remove.
10217         (wget_files): Remove.
10218         (cvs_executable_files): New macro.
10219         (cvs_files): Use it.  Remove mkinstalldirs.  Add fdl.texi.
10220         (executable-update): Use $(cvs_executable_files).
10221         (local-checks-to-skip): Remove.
10222         * Makefile.maint: Merge from coreutils, plus add our own changes
10223         (gzip_rsyncable): New macro.
10224         (GZIP_ENV): Use it.
10225         (CVS_LIST): Use build-aux/vc-list-files.
10226         (VERSION_REGEXP): New macro.
10227         (local-checks-available): Add patch-check, $(syntax-check-rules),
10228         check-AUTHORS.
10229         (syntax-check-rules): Compute dynamically.
10230         (sc_cast_of_x_alloc_return_value): Work even if no source files.
10231         (sc_cast_of_alloca_return_value): Likewise.
10232         (sc_prohibit_atoi_atof): Simplify regexp.
10233         (sc_no_if_have_config_h, sc_require_config_h):
10234         (sc_prohibit_assert_without_use,
10235         (sc_obsolete_symbols): Check for O_NDELAY.
10236         (sc_texi_notab): Remove.
10237         (sc-changelog): Don't make an exception for '----' lines.
10238         (.re-list): Remove, so we don't have a junk file behind.
10239         (sc_system_h_headers): Remove the need for .re-list.
10240         (sc_the_the):  New rule.
10241         (sc_tight_scope): Simplify.
10242         (sc_trailing_blank): Renamed from sc_trailing_space.
10243         (longopt_re): New macro.
10244         (sc_two_space_separator_in_usage): New rule.
10245         (sc_unmarked_diagnostics): Look at all files under CVS.
10246         (sc_useless_cpp_parens, patch-check, check-AUTHORS): New rules.
10247         (news-date-check, changelog-check): Version is OK.
10248         (po-check): Look for lib files even if not in CVS.
10249         (copyright-check): Use $() not ``.
10250         (maintainer-distcheck): Do not depend on changelog-check.
10251         (my-distcheck): Depend on $(release_archive_dir)/$(prev-tgz).
10252         Also check for -Wpointer-arith.
10253         (WGET, WGETFLAGS, tgz-md5, tgz-sha1, bz2-md5, bz2-sha1):
10254         (xdelta-md5, xdelta-sha1, tgz-size, bz2-size, xd-size, rel-check):
10255         Remove.
10256         (announcement): Add --gpg-key-id arg.
10257         (cvs-sv): Remove.
10258         (move_if_change): Just use mv.
10259         (local_updates: Remove wget-update, po-update.
10260         (po_repo, do-po-update, po-update, wget_files, get-targets): Remove.
10261         (config.guess-url_prefix, config.sub-url_prefix): Remove.
10262         (ansi2knr.c-url_prefix, texinfo.tex-url_prefix):
10263         (standards.texi-url_prefix, make-stds.texi-url_prefix, target, url):
10264         ($(get-targets)): Remove.
10265         (cvs_files): Remove missing, mkinstalldirs, ansi2knr.c.
10266         (gnulib_repo): Renamed from automake_repo.  Get from gnulib now.
10267         (cvs-update): Get from gnulib.
10268         (emut_upload_commands): gnupload is in build-aux now.
10269         (alpha beta major): Add changelog-check.  Check version.
10270         * configure.ac (AC_CONFIG_AUX_DIR): Renamed from config to build-aux.
10271         (AC_CONFIG_FILES): Remove.
10272         * bin/autoconf.as: Add spaces to avoid distcheck warning.
10273         * config/announce-gen: Sync from coreutils.
10274         * doc/make-stds.texi: Sync from gnulib.
10275         * doc/standards.texi: Likewise.
10276         * man/Makefile.am: Adjust for config -> build-aux renaming.
10277         * tests/Makefile.am: Prefer $(FOO) to @FOO@.
10278         * tests/local.at: Adjust from config -> build-aux renaming.
10279         * tests/tools.at: Likewise.
10280         * tests/torture.at: Likewise.
10282         * NEWS: The C99 check now tests for vararg macros and 64-bit
10283         preprocessor ints.
10284         * doc/autoconf.texi (C Compiler): Document // comments, va_copy.
10285         * lib/autoconf/c.m4 (_AC_PROG_CC_C99): Test varargs macros and
10286         64-bit preprocessor ints.  Check for static initialization of
10287         long long.  Remove unnecessary casts.
10289 2006-08-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
10291         * doc/autoconf.texi (Particular Programs): Mention that
10292         @INSTALL@ and @MKDIR_P@ may vary for different output files.
10293         Reported by Alexandre Duret-Lutz.
10295 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
10297         * lib/autoconf/fortran.m4 (_AC_FC_LIBRARY_LDFLAGS): Also ignore
10298         -lgcc?* and -lSystem, for Darwin/MacOS X.  Problem reported by
10299         Bill Northcott in
10300         <http://lists.gnu.org/archive/html/autoconf/2006-08/msg00083.html>.
10302 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
10304         * lib/autoconf/c.m4 (AC_C_CONST): Don't used shadowed vars, to
10305         pacify insanely picky compilers.  Problem reported by Eric Blake.
10307         * doc/autoconf.texi (Posix Variants): INTERACTIVE Unix is no
10308         longer supported by Sun.
10310 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
10312         * NEWS: Autoconf now uses constructs like "#ifdef HAVE_STDLIB_H"
10313         rather than "#if HAVE_STDLIB_H", so that it now works with "gcc
10314         -Wundef -Werror".  Problem reported by David Fang in
10315         <http://lists.gnu.org/archive/html/autoconf/2006-08/msg00045.html>.
10316         * doc/autoconf.texi (Header Templates, Default Includes):
10317         (Particular Functions, Generic Functions, Header Portability):
10318         (Particular Headers, Generic Headers, Generic Declarations, Guidelines):
10319         (Obsolete Macros, AC_FOO_IFELSE vs AC_TRY_FOO):
10320         (Present But Cannot Be Compiled, Preprocessor Symbol Index):
10321         Prefer #ifdef to #if.
10322         * lib/autoconf/c.m4 (AC_C_BIGENDIAN): Prefer #ifdef to #if.
10323         * lib/autoconf/functions.m4 (AC_FUNC_ALLOCA, _AC_FUNC_MALLOC_IF):
10324         (AC_FUNC_MKTIME, AC_FUNC_MMAP, _AC_FUNC_REALLOC_IF):
10325         (AC_FUNC_SELECT_ARGTYPES, AC_FUNC_SETVBUF_REVERSED, _AC_FUNC_VFORK):
10326         Likewise.
10327         * lib/autoconf/headers.m4 (_AC_INCLUDES_DEFAULT_REQUIREMENTS):
10328         (AC_HEADER_RESOLV, AC_HEADER_STAT): Likewise.
10329         * lib/autoconf/specific.m4 (AC_DECL_SYS_SYGLIST):
10330         (AC_SYS_RESTARTABLE_SYSCALLS): Likewise.
10331         * lib/autoconf/headers.m4 (AC_HEADER_STAT): Don't assume that
10332         S_ISDIR etc. are valid for use in #if; POSIX doesn't guarantee
10333         this.
10335 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
10337         * doc/autoconf.texi (Limitations of Usual Tools): Document sed
10338         problems with arg script text that doesn't end in newline, and
10339         with '-e a...'.  Problems reported by Ralf Wildenhues.
10341 2006-08-12  Alexandre Julliard  <julliard@winehq.org>  (tiny change)
10343         * lib/autoconf/libs.m4 (AC_PATH_X_DIRECT): Replace another
10344         check for libXt by a check for libX11.
10346 2006-08-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
10348         * doc/autoconf.texi (config.status Invocation): Adjust according
10349         to last change.
10351 2006-08-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
10353         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): `config.status
10354         --help' should mention that `--version' outputs configuration
10355         settings.  Report by Bruno Haible.
10357 2006-08-06  Paul Eggert  <eggert@cs.ucla.edu>
10359         Fix test suite failures reported by Pierre in
10360         <http://lists.gnu.org/archive/html/bug-autoconf/2006-08/msg00005.html>.
10361         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Don't claim
10362         the compiler created a file "b.out" when it didn't create anything
10363         at all.
10364         * lib/autoconf/specific.m4 (AC_SYS_INTERPRETER):
10365         Discard stderr too, when invoking the test script.
10367 2006-08-05  Alexandre Julliard  <julliard@winehq.org>  (tiny change)
10369         * lib/autoconf/libs.m4 (AC_PATH_XTRA): Fixed a typo
10370         in the restoring of the werror flag.
10372 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
10374         * doc/autoconf.texi (Volatile Objects): Be even a little
10375         less skeptical about "volatile", after discussion with
10376         Bruno Haible on bug-gnulib.
10377         (Limitations of Usual Tools): Warn about sed stripping
10378         leading white space from text.  From Bruno Haible.
10380 2006-07-20  Paul Eggert  <eggert@cs.ucla.edu>
10382         * lib/autoconf/libs.m4 (AC_PATH_XTRA): Don't use -R if the
10383         compiler complains about it, even if things works after the
10384         complaint.  Problem reported by Peter O'Gorman.
10386         * doc/autoconf.texi (Preset Output Variables): Document CFLAGS,
10387         CPPFLAGS, and LDFLAGS better.  Problem reported by Bruno Haible.
10388         Similarly for CXXFLAGS, OBJCFLAGS, ERLCFLAGS.
10390 2006-07-17  Paul Eggert  <eggert@cs.ucla.edu>
10392         * lib/autoconf/libs.m4 (AC_PATH_XTRA): Do the check for space
10393         after -R regardless of host.  Patrick Welche reports that this
10394         fixes things on NetBSD 3.99.
10396         * NEWS: Recommend M4 1.4.5.
10397         * README: Likewise.
10398         * doc/autoconf.texi (Introduction, Why GNU M4): Likewise.
10399         * tests/tools.at (autom4te cache): Update wording of diagnostic
10400         to match M4 1.4.5.
10402 2006-07-07  Paul Eggert  <eggert@cs.ucla.edu>
10404         * doc/autoconf.texi (C Compiler): Add a ref to Volatile Objects
10405         under AC_C_VOLATILE.
10406         (Volatile Objects): Be a little less skeptical about what
10407         "volatile" means.  Derived from thoughts by Ben Pfaff in
10408         <http://lists.gnu.org/archive/html/bug-gnulib/2006-07/msg00092.html>.
10410 2006-07-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
10412         * doc/autoconf.texi: Fix some typos.
10414 2006-07-07  Paul Eggert  <eggert@cs.ucla.edu>
10416         * tests/torture.at (Configuring subdirectories): Set CONFIG_SITE
10417         more globally, since the 2006-06-30 patch didn't suffice.  Problem
10418         reported by Keith Marshall.  Also, don't bother with builddir2,
10419         since it shouldn't be needed any more.
10421 2006-07-07  Paolo Bonzini  <bonzini@gnu.org>
10423         * doc/autoconf.texi (Generic compiler characteristics):
10424         Document AC_COMPUTE_INT.  Fix wrong statements on Default
10425         Includes for AC_CHECK_SIZEOF and AC_CHECK_ALIGNOF.
10427         * lib/autoconf/general.m4 (AC_COMPUTE_INT): New.
10428         (_AC_COMPUTE_INT): Add obsoletion warnings.
10429         * lib/autoconf/types.m4 (AC_CHECK_SIZEOF, AC_CHECK_ALIGNOF): Use
10430         AC_COMPUTE_INT.
10432         * NEWS: Document change.
10434 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
10436         * doc/autoconf.texi (Volatile Objects): New section.
10438         * NEWS: Document previous change.
10440 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
10442         * lib/autoconf/types.m4 (AC_TYPE_LONG_LONG_INT):
10443         Require that long long int be at least 64 bits wide.  C99 requires
10444         this and enough programs depend on it so we should check for it.
10445         Bruno Haible reports in
10446         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00286.html>
10447         that long long int is 32 bits wide with some nonstandard compilers.
10448         (AC_TYPE_UNSIGNED_LONG_LONG_INT): Likewise.
10450 2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
10452         * tests/torture.at (Configuring subdirectories): Set CONFIG_SITE
10453         to a nonexistent file, so that we don't have to worry about
10454         a local site configuration that doesn't use /usr/local.
10455         Problem reported by Keith Marshall in
10456         <http://lists.gnu.org/archive/html/bug-autoconf/2006-06/msg00133.html>.
10458 2006-06-28  Paul Eggert  <eggert@cs.ucla.edu>
10460         * doc/autoconf.texi: Be more consistent about using @acronym with
10461         "HP" and "HP-UX".  Remove mention of OSF; the old version wasn't
10462         quite right (it talked about "OSF/Tru64", even though the
10463         operating systems were called OSF/1, Digital UNIX, and Tru64 UNIX,
10464         and it even mentioned "OSF 4"!) and at this point there's little
10465         reason to talk about OSF any more, since it died in 1994.
10466         (Specific Compiler Characteristics): Simplify example of
10467         negative-size array.
10468         (File Descriptors): Reorder to make the text flow better.
10469         Remove joke about "appreciate the various levels"; I didn't get it.
10470         Add remark about HP-UX sh -x bug with stderr noted by Bob Proulx in
10471         <http://lists.gnu.org/archive/html/bug-coreutils/2006-06/msg00225.html>.
10472         (File Descriptors, Limitations of Usual Tools):
10473         Tone down the advice against renaming or removing open files.
10474         (Limitations of Usual Tools): Add a new section, on 'rm'.
10476 2006-06-26  Stepan Kasal  <kasal@ucw.cz>
10478         * lib/autoconf/libs.m4 (_AC_PATH_X_DIRECT): Use -lX11, not
10479         -lXt in LIBS, idea from Karsten Hopp; this was due since
10480         this change:
10482         2005-09-18  Paul Eggert  <eggert@cs.ucla.edu>
10483         * lib/autoconf/libs.m4 (_AC_PATH_X_DIRECT): Look for X11/Xlib.h
10484         and XrmInitialize rather than X11/Intrinsic.h and XtMalloc
10485         (which belong to Xt, not X itself).  See Debian bug 327655.
10487 2006-06-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
10489         * configure.ac (AC_INIT): Bump to 2.60a.
10490         * NEWS: Update.
10492 2006-06-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
10494         Version 2.60.
10496         * configure.ac, NEWS: Update.
10498 2006-06-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
10500         * config/texinfo.tex: Sync from upstream.
10502         * bin/autom4te.in (handle_traces): Transform the `@S|@'
10503         quadrigraph correctly in traces.
10505         * NEWS, lib/Autom4te/C4che.pm, lib/autoconf/functions.m4:
10506         Fix typos.
10508         * lib/autoconf/status.m4 (_AC_OUTPUT_FILE): Expand tests for
10509         datarootdir-related errors only if AC_DATAROOTDIR_CHECKED is
10510         not defined.
10511         * doc/autoconf.texi (Changed Directory Variables): New node,
10512         to document the whole `datarootdir' business a bit better.
10513         * NEWS: Update.
10514         * tests/torture.at (datarootdir workaround): Extend test.
10515         Prompted by report by Alexandre Julliard.
10517 2006-06-22  Paul Eggert  <eggert@cs.ucla.edu>
10519         * lib/autoconf/c.m4 (_AC_PROG_CC_C89): Check for C89 incompatibility
10520         when using default mode of IBM C 6 for AIX.  Problem and two-line
10521         fix reported by Larry Jones.
10523 2006-06-22  Alexandre Julliard <julliard@winehq.org>
10525         * lib/autoconf/status.m4 (_AC_OUTPUT_FILE): Avoid warning
10526         about literal '${datarootdir}' if a definition is found in the
10527         output file.
10529 2006-06-20  Paul Eggert  <eggert@cs.ucla.edu>
10531         * NEWS: Use "M4" rather than "m4" when appropriate.
10532         Problem reported by Eric Blake.
10533         * doc/autoconf.texi: Likewise.
10534         Use @acronym around BSD, GCC, and GNU when appropriate.
10535         (Why GNU M4): Renamed from "Why GNU m4".
10536         (Redefined M4 Macros): Mention that Posix
10537         m4wrap takes only 1 argument, but GNU M4 1.4.x takes more.
10538         (Buffer Overruns): Mention size_t and ptrdiff_t as alternatives
10539         to int.
10541 2006-06-20  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
10543         * bin/autom4te.in (handle_output): Do not forbid the empty
10544         pattern.
10545         * tests/tools.at (autoconf: the empty token): New test.
10547 2006-06-20  Stepan Kasal  <kasal@ucw.cz>
10549         * lib/m4sugar/m4sugar.m4 (m4_init): Merge the two m4_wrap
10550         calls, so that we do not care whether they are LIFO or FIFO;
10551         in the m4_wrap, do not check which diversion is the topmost
10552         one, just check that the stack is balanced at the end.
10553         * lib/m4sugar/m4sh.m4 (AS_INIT): We are going to change the
10554         base diversion forever--pop the previous diversion before
10555         opening the new one; consequently, remove the m4_wrap call.
10556         * lib/autotest/general.m4 (AT_INIT): Likewise.
10557         * tests/m4sugar.at: Do not use
10558         m4_wrap([m4_diversion_pop([..])]), for educational purposes.
10560 2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
10561         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
10563         * NEWS: Document that m4wrap/m4_wrap might not be LIFO.
10564         * doc/autoconf.texi (Redefined M4 Macros): Likewise.
10565         Rework example of m4wrap token-pasting trouble so that it doesn't
10566         care whether it's LIFO or FIFO.
10567         Fix some "contrary to"s that are awkward in English.
10569 2006-06-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
10571         * lib/autoconf/types.m4 (_AC_TYPE_INT): Set `$ac_cv_c_int$1_t'
10572         to `yes' instead of `int$1_t' if the type is found, for more
10573         consistent configure output (where $1 is the number of bits).
10574         (_AC_TYPE_UINT): Likewise for `uint$1_t'.
10575         Suggested by Bruno Haible.
10577         * lib/autoconf/types.m4 (_AC_TYPE_UNSIGNED_INT): Solaris 2.5.1
10578         needs _UINT8_T and _UINT64_T defines as well, to avoid clashes
10579         with system headers.  Report by Bruno Haible.
10581 2006-06-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
10583         * config/config.guess, config/config.sub: Sync from upstream.
10585         * bin/Makefile.am (autoconf.in): Use `--melt' for autom4te,
10586         in order to avoid picking up an older installed frozen m4sh.m4f.
10587         Besides an outdated shell startup, this could have been created
10588         by an earlier M4 version with incompatible frozen file format.
10590 2006-06-16  Paul Eggert  <eggert@cs.ucla.edu>
10592         * README: Recommend m4 1.4.4 instead of 1.4.3..
10593         * doc/autoconf.texi: Likewise.
10594         (Special Chars in Names): Say that $(.FOO) is portable, as
10595         suggested by Stepan Kasal.
10596         (Installation Directory Variables, Build Directories):
10597         (Automatic Remaking, Subdirectories, Fortran Compiler):
10598         (Making testsuite Scripts, Defining Directories):
10599         Quote variable usages better.
10600         (Making testsuite Scripts): Add clean-local rule to makefile
10601         snippet, by Eric Blake.
10602         (Installation Directory Variables): Fix table item font.
10603         Reword slightly to clarify.  Generalize advice about
10604         not using special characters to include all file-related
10605         vars, not just VPATH.
10606         (Special Chars in Variables): Warn about special characters in
10607         $(srcdir) too.
10608         (Assignments): Clarify default-value example as suggested by
10609         Ralf Wildenhues in
10610         <http://lists.gnu.org/archive/html/autoconf-patches/2006-06/msg00072.html>.
10611         (Special Shell Variables): Note leading ./ or ../, as suggested
10612         by Eric Blake.
10613         (Limitations of Builtins): Under cd, warn about CDPATH.
10614         (The Make Macro MAKEFLAGS): Untabify.  Problem reported by
10615         Ralf Wildenhues.
10617 2006-06-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
10619         * doc/autoconf.texi (Configuration Actions): Remove duplicate
10620         `@var', for texi2html.
10621         (Systemology): Some more word wrapping, for DVI output.
10622         (autom4te Invocation): The short option for `--melt' is `-M',
10623         not `-m'.
10625 2006-06-15  Paul Eggert  <eggert@cs.ucla.edu>
10627         * doc/autoconf.texi: More formatting and English tweaks,
10628         many suggested by Ralf Wildenhues.
10629         Reword to avoid "@code{...}'s" and the like, since it's ugly
10630         with Emacs info mode.  discontents -> woes.
10631         Put a few "will"s back.  time stamp -> timestamp.
10632         side-effect -> side effect.
10634 2006-06-14  Paul Eggert  <eggert@cs.ucla.edu>
10636         * doc/autoconf.texi (Initializing configure, Shell Substitutions):
10637         Warn about $@ not persisting.  Problem reported by Julien Danjou in
10638         <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=372179>.
10639         (Special Chars in Names): Renamed from Leading _ in Macro Names.
10640         Mention other special chars, too.
10642 2006-06-14  Eric Blake  <ebb9@byu.net>
10644         * doc/autoconf.texi (The Make Macro MAKEFLAGS): New node.
10646 2006-06-13  Paul Eggert  <eggert@cs.ucla.edu>
10648         * doc/autoconf.texi: Some systematic minor improvements, as
10649         follows.  Use "makefile" when talking about makefiles
10650         generally (which might be named "makefile" or "Makefile" or even
10651         "foo.mk"), "Makefile" when talking about a specific makefile
10652         called "Makefile".  This unclutters the text from weird quotes
10653         (e.g., "`Makefile's" in info mode).  Similarly, use "@var{foo}
10654         values" rather than "@var{foo}s" and similar constructs containing
10655         "}s".  Use "Make rules" rather than "Makefile rules".  Minor
10656         English-language improvements.  Change the prefix "sub-" to "sub"
10657         and "re-" to "re".
10658         Put blank lines around examples more consistently.
10659         Avoid "rather" and "very" as intensifiers.
10660         Avoid "will" as an auxiliary.
10661         (Limitations of Make): Split this node into....
10662         (Portable Make, $< in Ordinary Make Rules, Failure in Make Rules):
10663         (Leading _ in Macro Names, Backslash-Newline-Newline):
10664         (Backslash-Newline Comments, Long Lines in Makefiles):
10665         (Macros and Submakes, The Make Macro SHELL, Comments in Make Rules):
10666         (obj/ and Make, make -k Status, VPATH and Make):
10667         (VPATH and Double-colon, $< in Explicit Rules):
10668         (Automatic Rule Rewriting, OSF/Tru64 Directory Magic):
10669         (Make Target Lookup, Single Suffix Rules, Timestamps and Make):
10670         New nodes, resulting from splitup of Limitations of Make.
10671         All cross-references changed.  Raise the top node from
10672         a section to a chapter, and all subnodes accordingly.
10673         Redo the introductory wording to match the new organization.
10674         (Installation Directory Variables): Use an example that is
10675         closer to what Autoconf actually does.  Mention that VPATH's
10676         value should not contain metacharacters or white space.
10677         (Fortran Compiler): Fix a VPATH bug in an example.
10678         (Leading _ in Macro Names): Mention that this problem is no longer
10679         of practical concern.
10680         (VPATH and Make): Reword the advice to make it clearer
10681         that Autoconf and Automake support VPATH in non-GNU make, but
10682         many packages have bugs in this area.
10683         ($< in Explicit Rules): Refer to Build Directories rather
10684         than using a (non-VPATH-safe) example.
10685         (Automatic Rule Rewriting): Mention the sort of disaster that
10686         can ensue with Solaris-style rule rewriting with VPATH.
10688 2006-06-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
10690         * doc/install.texi (Compilers and Options): Weaken the
10691         suggestion to use GNU make for VPATH builds.
10693         * lib/autom4te.in (Automake-preselections): Add AM_PROG_CXX_C_O,
10694         AM_PROG_F77_C_O, AM_PROG_FC_C_O, AC_FC_SRCEXT, AC_FC_FREEFORM.
10696         * lib/autoconf/programs.m4 (AC_PROG_MAKE_SET): Fix M4 quotation
10697         in regular expression.
10699 2006-06-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
10701         * doc/autoconf.texi (Installation Directory Variables):
10702         Drop extra @samp from `@table @samp' item.
10703         (Limitations of Usual Tools): Comment fix.
10704         Do not nest @samp just to point to other table items.
10705         (Writing testsuite.at) <AT_CHECK>: The second argument to
10706         `@dvar' is already @samp'ed.
10707         (Making testsuite Scripts) <AC_CONFIG_TESTDIR>: Likewise,
10708         do not use @var in the second argument.
10710 2006-06-07  Paul Eggert  <eggert@cs.ucla.edu>
10712         * lib/m4sugar/m4sh.m4 (_AS_DETECT_BETTER_SHELL): Look for
10713         $as_shell.exe too.  Problem reported by Andreas Buening in
10714         <http://lists.gnu.org/archive/html/autoconf/2006-06/msg00038.html>.
10716 2006-06-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
10718         * lib/autoconf/functions.m4 (AC_FUNC_ALLOCA): Work around
10719         `unused variable' compiler warning, for `-Wall -Werror'.
10720         Reported by Jaap Haitsma in
10721         <http://lists.gnu.org/archive/html/bug-autoconf/2006-06/msg00012.html>.
10723 2006-06-06  Paul Eggert  <eggert@cs.ucla.edu>
10725         * lib/autoconf/c.m4 (AC_PROG_CC_C_O): Remove core file, in
10726         case the compiler dumps core.  Problem reported for
10727         OpenServer 5.0.7 by Tim Rice in
10728         <http://lists.gnu.org/archive/html/bug-autoconf/2006-06/msg00019.html>.
10729         * lib/autoconf/general.m4 (_AC_COMPILE_IFELSE, _AC_LINK_IFELSE):
10730         Likewise.
10732 2006-06-06  Tim Rice <tim@multitalents.net>.
10734         * lib/freeze.mk: Quiet check-forbidden-patterns so the string
10735         "ERROR" only shows up in "make check" output if there is an
10736         error.
10738 2006-06-06  Eric Blake  <ebb9@byu.net>
10740         * tests/tools.at (automatically allowed tokens): Fix typo.
10742 2006-06-05  Paul Eggert  <eggert@cs.ucla.edu>
10744         * NEWS: Don't blame non-GNU VPATH compatibility issues on Automake.
10746         * doc/autoconf.texi (Integer Overflow): Mention that INT_MIN % -1
10747         typically overflows on x86 CPUs, even though the C standard
10748         requires otherwise.
10750 2006-06-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
10752         * configure.ac (AC_INIT): Bump to 2.59e.
10753         * NEWS: Update.
10755 2006-06-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
10757         Version 2.59d.
10759         * config/texinfo.tex: Sync from upstream.
10761         * bin/autoreconf.in: Trace `LT_CONFIG_LTDL_DIR'; if it has been
10762         seen, invoke libtoolize with `--ltdl' argument.
10763         * lib/autom4te.in (Autoreconf-preselections): Adjust.
10764         * NEWS: Update.
10765         Suggested by Eric Blake.
10767 2006-06-05  Paul Eggert  <eggert@cs.ucla.edu>
10769         * NEWS: Whoops!  AC_FUNC_STRNLEN isn't obsolescent.  Problem
10770         reported by Ralf Wildenhues.
10771         * doc/autoconf.texi (AC_FUNC_STRNLEN): Likewise.
10773 2006-06-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
10775         * THANKS: Update.
10777 2006-06-05  Paul Eggert  <eggert@cs.ucla.edu>
10779         * doc/autoconf.texi: Modernize some of the references to Solaris.
10781 2006-06-05  Stepan Kasal  <kasal@ucw.cz>
10783         * lib/m4sugar/m4sugar.m4 (m4_require): Modify the error
10784         message issued by AC_REQUIRE.
10785         * tests/m4sugar.at: Check m4_require's error message.
10786         * tests/base.at: Check AC_REQUIRE's error message.
10787         * tests/local.at (AT_CHECK_M4): New macro, almost identical
10788         to...
10789         (AT_CHECK_AUTOM4TE): ... which is now a thin wrapper around
10790         AT_CHECK_M4.
10791         (AT_CHECK_AUTOCONF): Use AT_CHECK_M4; no longer support
10792         `expout' as the last parameter.
10793         * tests/tools.at: Adapt to the above change.
10795 2006-06-04  Stepan Kasal  <kasal@ucw.cz>
10797         * doc/autoconf.texi (Limitations of Usual Tools): Correct
10798         information about race-free implementations of mkdir.
10800 2006-06-04  Eric Blake  <ebb9@byu.net>
10802         * bin/autoreconf.in (help): Document M4 environment variable.
10803         * bin/autoconf.as (Usage): Likewise.
10804         * bin/autom4te.in (help): Likewise.
10805         * doc/autoconf.texi (autom4te Invocation): Likewise.
10807 2006-06-04  Paul Eggert  <eggert@cs.ucla.edu>
10809         * NEWS: GNU make now recommended for VPATH builds.
10810         Mention that some macros are now documented to be obsolescent.
10811         * doc/autoconf.texi:
10812         Prefer "current" to "modern" to describe
10813         currently-used (albeit perhaps old-fashioned) hosts.
10814         Mention which ancient features no longer need to be worried about.
10815         setgid -> set-group-ID
10816         setuid -> set-user-ID (these are the Posix terms)
10817         Fix some misuses of "only".
10818         (AC_C_BACKSLASH_A, AC_C_CONST, AC_C_PROTOTYPES):
10819         (AC_C_STRINGIZE, AC_C_VOLATILE, AC_FUNC_CLOSEDIR_VOID):
10820         (AC_FUNC_GETPGRP, AC_FUNC_LSTAT, AC_FUNC_MEMCMP):
10821         (AC_FUNC_SELECT_ARGTYPES, AC_FUNC_SETPGRP):
10822         (AC_FUNC_SETVBUF_REVERSED, AC_FUNC_STAT, AC_FUNC_STRFTIME):
10823         (AC_FUNC_STRNLEN, AC_FUNC_UTIME_NULL, AC_FUNC_VPRINTF):
10824         (AC_HEADER_DIRENT, AC_HEADER_STAT, AC_HEADER_STDC):
10825         (AC_HEADER_SYS_WAIT, AC_HEADER_TIME, AC_ISC_POSIX):
10826         (AC_PROG_GCC_TRADITIONAL, AC_STRUCT_TM):
10827         Mention that these macros are obsolescent.
10828         (Installation Directory Variables): shall -> should
10829         (File Descriptors): Mention that 0, 1, 2 might get reopened.
10830         Mention that it's now safe to use 3 and 4.
10831         (Limitations of Usual Tools): cp -r is now specified by Posix.
10832         Omit longwinded and obsolescent discussion of cp -f.
10833         Modernize discussion of expr, ls.
10834         (Limitations of Make): Modernize discussion of VPATH builds.
10835         Mention $? as a workaround in some cases.
10836         * doc/install.texi (Basic Installation):
10837         Mention "./configure; make; make install" first.  Be more
10838         specific about why this file is generic.  Remove unnecessary
10839         parens.  Remove misleading "only".  Remove obsolete advice
10840         about csh.  Don't say "configure" takes awhile; say it
10841         might take a while.  Suggest CFLAGS=-g rather than CFLAGS=-O2,
10842         and CC=c99 rather than CC=c89, as these are blessed by current
10843         Posix.  Recommend GNU make if doing a VPATH build.
10845 2006-06-03  Paul Eggert  <eggert@cs.ucla.edu>
10847         * doc/autoconf.texi: Use a consistent style "$ @kbd{...}" for
10848         examples involving shell prompts.
10850 2006-06-02  Stepan Kasal  <kasal@ucw.cz>
10851         and Paul Eggert  <eggert@cs.ucla.edu>
10853         * doc/autoconf.texi (Here-Documents): Add details about the
10854         pre-ksh93g bug.  Reword slightly to make it clearer.  Consistently
10855         use "here-documents" instead of "here documents".
10857 2006-06-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
10859         * config/texinfo.tex, doc/standards.texi: Sync from upstream.
10861 2006-06-01  Paul Eggert  <eggert@cs.ucla.edu>
10863         * doc/autoconf.texi (File System Conventions): Warn about ":"
10864         anywhere in directory names.
10866 2006-05-31  Paul Eggert  <eggert@cs.ucla.edu>
10868         * lib/autoconf/general.m4 (_AC_DO_ECHO): Be even more conservative
10869         about quoting the case statement, just in case.
10870         * doc/autoconf.texi (Here-Documents): Mention that the ksh bug
10871         was fixed in ksh93g; reported by Ralf Wildenhues.
10873 2006-05-31  Stepan Kasal  <kasal@ucw.cz>
10875         * doc/autoconf.texi (System Services): Do not document
10876         overriding EXEEXT via ac_cv_exeext=ext.
10877         (Particular Programs) <AC_PROG_MKDIR_P>:
10878         Document that ${MKDIR_P} understands --.
10879         * lib/autoconf/programs.m4 (AC_PROG_MKDIR_P): Improve the
10880         comment.
10882 2006-05-31  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
10884         * lib/m4sugar/m4sh.m4 (_AS_DIRNAME_PREPARE): Guard against test
10885         argument with leading hyphen.  Problem reported by Paul Eggert.
10887 2006-05-30  Paul Eggert  <eggert@cs.ucla.edu>
10889         * lib/autoconf/general.m4 (_AC_DO_ECHO): Be more conservative
10890         about quoting ac_try: quote all of it, if any of it seems suspicious.
10891         This means we don't have to worry about ${ or sed any more.
10892         Also, double-quote the case statement, to work around misuses via
10893         underquoting as reported by Ralf Wildenhues in
10894         <http://lists.gnu.org/archive/html/autoconf-patches/2006-05/msg00169.html>.
10895         (_AC_EVAL_STDERR): Revert, since evidently some packages rely on this
10896         undocumented and dangerous macro.
10897         Problem reported by Ralf Wildenhues in
10898         <http://lists.gnu.org/archive/html/autoconf-patches/2006-05/msg00168.html>.
10900 2006-05-31  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
10902         * lib/m4sugar/m4sh.m4 (_AS_DIRNAME_PREPARE): Check whether
10903         `dirname -- /' returns `/', for SunOS dirname scripts that escaped.
10904         Report by Sam Sirlin <sam@kalessin.jpl.nasa.gov>.
10906 2006-05-30  Paul Eggert  <eggert@cs.ucla.edu>
10908         * lib/autoconf/general.m4: Revert AC_TRY_EVAL and AC_TRY_COMMAND,
10909         since evidently some packages rely on the old, broken behavior.
10910         Problem reported by Ralf Wildenhues in
10911         <http://lists.gnu.org/archive/html/autoconf-patches/2006-05/msg00160.html>.
10912         (AC_TRY_EVAL, AC_TRY_COMMAND, _AC_EVAL): Go back to the
10913         pre-2006-05-26 definitions, but leave in the comments that
10914         these macros are dangerous and should not be used.
10915         (_AC_DO_ECHO): Renamed from _AC_EVAL_ECHO.  All callers changed.
10916         (_AC_DO): Renamed from _AC_EVAL.  All callers changed.
10917         (_AC_DO_STDERR): Renamed from _AC_EVAL_STDERR.  All callers changed.
10918         (_AC_DO_VAR): Renamed from AC_TRY_EVAL.
10919         (_AC_DO_TOKENS): Renamed from AC_TRY_COMMAND.
10921 2006-05-29  Paul Eggert  <eggert@cs.ucla.edu>
10923         * lib/autoconf/status.m4 (AC_OUTPUT_MAKE_DEFS): Rewrite to avoid
10924         the use of 'tr', since this is our only use of 'tr'.
10926 2006-05-29  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
10927         and Paul Eggert  <eggert@cs.ucla.edu>
10929         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE):
10930         Don't assume 'grep' works on long lines, since AIX grep doesn't.
10932 2005-05-28  Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
10934         * lib/autoconf/status.m4 (_AC_OUTPUT_FILE): Do not use `grep' on
10935         the output file in the `${datarootdir}' test.
10937 2005-05-28  Stepan Kasal  <kasal@ucw.cz>
10938         and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
10940         * lib/autoconf/status.m4 (_AC_OUTPUT_FILE): If we have not seen
10941         mention of `datarootdir' in the input file(s), but literal
10942         `${datarootdir}' in the output file, and we haven't warned yet,
10943         then warn as well: the user may have (erroneously) used
10944         `AC_SUBST([mydatadir], [$datadir/my])' instead of the correct
10945         `AC_SUBST([mydatadir], ['${datadir}/my'])'.
10946         * tests/torture.at (datarootdir workaround): Extend this test.
10947         * NEWS: Update.
10949 2006-05-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
10950         and Paul Eggert  <eggert@cs.ucla.edu>
10952         * doc/autoconf.texi (autoheader Invocation): The first argument to
10953         `AC_DEFINE_UNQUOTED' need not be a literal.  Mention the
10954         alternatives and clear up the language a bit.
10956 2006-05-27  Paul Eggert  <eggert@cs.ucla.edu>
10958         * NEWS: Reword notice for AC_TRY_COMMAND, AC_TRY_EVAL,
10959         ac_config_guess, ac_config_sub, ac_configure.
10960         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS):
10961         Fix typo that prevented an unnecessary space from being removed.
10962         Problems reported by Ralf Wildenhues in:
10963         http://lists.gnu.org/archive/html/autoconf-patches/2006-05/msg00143.html
10965 2006-05-26  Paul Eggert  <eggert@cs.ucla.edu>
10967         * doc/autoconf.texi (Particular Programs, Limitations of Usual Tools):
10968         Use better wording to talk about AC_PROG_MKDIR_P's thread-safety.
10969         Don't use the term "thread-safe" to talk about mkdir race
10970         conditions, since the problem is more a process than a thread
10971         issue.  Problem reported by Stepan Kasal in:
10972         http://lists.gnu.org/archive/html/autoconf-patches/2006-05/msg00088.html
10973         * lib/autoconf/programs.m4 (AC_PROG_MKDIR_P): Use code that mimics
10974         the test for 'install' more closely.  Look at MKDIR_P first.
10975         Look in the PATH, and at /opt/sfw/bin.
10976         Look for a 'gmkdir' program as well (Solaris 10 /opt/sfw/bin/gmkdir).
10977         Don't bother to try mkdir -p, since we already check mkdir --version;
10978         just look at the version number.  (There's no easy way to check
10979         for race-free implementations.)
10980         * tests/tools.at (autoconf: subdirectories): Adjust to above
10981         changes, since MKDIR_P now might end in "/mkdir -p".
10983         * doc/autoconf.texi (autoheader Invocation): Mention that the
10984         first arg of AC_DEFINE_UNQUOTED must be a literal.
10985         Problem reported by Ben Pfaff in
10986         <http://lists.gnu.org/archive/html/bug-autoconf/2006-05/msg00090.html>.
10988         * NEWS: Mention that AC_TRY_COMMAND and AC_TRY_EVAL may be removed.
10989         * doc/autoconf.texi (Special Chars in Variables): New section.
10990         (Preset Output Variables): Warn about special chars in CPPFLAGS.
10991         (Installation Directory Variables): Quote $(datadir) better.
10992         (Limitations of Builtins): Describe some of eval's trickiness.
10994         * lib/autoconf/c.m4 (AC_PROG_CC_C_O): Simplify quoting.
10995         * lib/autoconf/fortram.m4 (_AC_PROG_FC_V_OUTPUT): Likewise.
10996         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Put leading space
10997         in front of every arg, not just trailing args.  Quote apostrophes.
10998         (_AC_EVAL_ECHO): New macro.
10999         (_AC_EVAL, AC_EVAL_STDERR): Use it.  Quote arg of eval.
11000         (AC_TRY_EVAL, AC_TRY_COMMAND): Mention that these macros might get
11001         removed.
11002         (_AC_LINK_IFELSE): Use proper rule for shell continuation lines,
11003         exposed by quoting of eval argument.  Put the command on line line
11004         so it logs better.
11005         * lib/autoconf/libs.m4 (_AC_PATH_X_XMKMF): Use eval more safely.
11006         (_AC_PATH_X, AC_PATH_X): Quote more safely.
11007         * lib/autoconf/programs.m4 (AC_PROG_MAKE_SET): Use eval more safely.
11008         * lib/autoconf/specific.m4 (AC_SYS_LONG_FILE_NAMES): Don't use eval.
11009         * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): Minor style change.
11010         Handle special chars in prefix, ac_srcdir, ac_aux_dir.
11011         Use eval more safely.
11012         (_AC_OUTPUT_CONFIG_STATUS): Adjust to above changes.
11013         * lib/m4sugar/m4sh.m4 (AS_VAR_GET): Note that this API needs
11014         to be replaced.
11015         * tests/base.at (AC_TRY_COMMAND): Use proper rule for shell continuation
11016         lines, exposed by quoting of eval argument.
11018 2006-05-26  Stepan Kasal  <kasal@ucw.cz>
11019         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11021         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Drop the
11022         initialization of `ac_cv_exeext', do not override it if it was
11023         already set, unless it was set to `no', for compatibility with
11024         Autoconf-2.13, and comment this.
11025         Do not export `ac_cv_exeext', Libtool hasn't needed this for years.
11026         (_AC_COMPILER_EXEEXT_DEFAULT): Likewise, do not export it.
11027         (_AC_COMPILER_EXEEXT_WORKS, _AC_COMPILER_EXEEXT_CROSS): Typos.
11028         * doc/autoconf.texi (Compilers and Preprocessors) <EXEEXT>:
11029         Document that this test may be overridden by setting
11030         `ac_cv_exeext'.
11032 2006-05-26  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11034         Revert these two patches:
11036         2006-04-06  Eric Blake  <ebb9@byu.net>
11037         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_O): Inside cache
11038         check, s/ac_exeext/ac_cv_exeext/.  Fixes regression introduced
11039         2006-04-01.
11041         2006-04-01  Stepan Kasal  <kasal@ucw.cz>
11042         Clean up _AC_COMPILER_EXEEXT* macros.
11043         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Don't try to
11044           detect exeext, it will be done by _AC_COMPILER_EXEEXT_O; just set
11045           ac_file to the name of the default output file and call
11046           _AC_COMPILER_EXEEXT_WORKS.  Move the definition of ac_files and the
11047           initial `rm' of the candidate files...
11048         (_AC_COMPILER_EXEEXT): ... here and simplify them.  Moreover, use
11049           the same list in subsequent `rm' calls, and for the temporary
11050           redefinition of ac_clean_files; call _AC_COMPILER_OBJEXT at the end,
11051           and don't call the other _AC_COMPILER_EXEEXT_* macros directly, use...
11052         (_AC_COMPILER_EXEEXT_TESTS): ... this new macro.
11053         (_AC_COMPILER_EXEEXT_O): Don't export ac_cv_exeext, it's not needed (or
11054           no longer needed) by libtool.  Make it a cache check.
11055         (_AC_COMPILER_EXEEXT_CROSS): Remove the comment, it was obviously
11056           copied here by mistake.
11057         (AC_NO_EXECUTABLES): Redefine _AC_COMPILER_EXEEXT_TESTS, not
11058           _AC_COMPILER_EXEEXT.
11059         * lib/autoconf/c.m4 (AC_PROG_CC, AC_PROG_CXX, AC_PROG_OBJC): Do not call
11060           _AC_COMPILER_OBJEXT directly.
11061         * lib/autoconf/fortran.m4 (_AC_PROG_FC): Likewise.
11063 2006-05-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11065         * doc/autoconf.texi (Limitations of Usual Tools) < sed (`t')>:
11066         Fix description of how the buggy `sed' works.
11068 2006-05-25  Noah Misch  <noah@cs.caltech.edu>
11070         Sync from Automake:
11072         * lib/Autom4te/XFile.pm (lock): Allow EOPNOTSUPP, besides
11073         ENOLCK.  Only mention `make -j' when applicable.  Only raise
11074         fatal errors when `make -j' is involved.  Improve error message.
11076 2006-05-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11078         * doc/autoconf.texi (Here-Documents): We now know more about
11079         the variable expansion in here documents bug.
11080         Thanks to Tim Rice and Stepan Kasal.
11082         * doc/autoconf.texi (Making testsuite Scripts): Add an example
11083         how to use TESTSUITEFLAGS.  Suggested by Eric Blake.
11085 2006-05-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11087         * tests/autotest.at (Multiline command from M4 expansion):
11088         No failure to be expected if the shell quotes newlines in
11089         commands in the `set -x' output.  Report by Tim Rice.
11090         * THANKS: Update.
11092 2006-05-23  Paul Eggert  <eggert@cs.ucla.edu>
11094         * lib/autoconf/status.m4 (_AC_OUTPUT_HEADER): Don't use shell
11095         expansion in the here-documents used by config.status, as that
11096         runs afoul of the Korn shell version M-12/28/93d bug described in
11097         the Autoconf manual, and this in turn causes a Coreutils 5.95 build to
11098         fail as described by Tim Rice and diagnosed by Ralf Wildenhues in
11099         <http://lists.gnu.org/archive/html/bug-autoconf/2006-05/msg00082.html>.
11101 2006-05-23  Jim Meyering  <jim@meyering.net>
11103         * lib/autoconf/functions.m4 (AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK):
11104         Fix typo introduced with 2006-04-02 change.  It reversed the sense
11105         of the test.
11107 2006-05-23  Paul Eggert  <eggert@cs.ucla.edu>
11109         * lib/autoconf/status.m4 (_AC_OUTPUT_HEADER): Simplify ac_dA and
11110         ac_dB slightly, to save bytes in the script.
11111         Max out at 50 lines, rather than 96; this is more likely
11112         (though not guaranteed) to avoid obscure 'sed' failures.
11114 2006-05-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11116         * lib/autotest/general.m4 (AT_INIT): UnixWare `tr' may interpret
11117         `tr -d -' as bad option argument.  Work around this by deleting
11118         an unrelated character.
11119         Report by Tim Rice <tim@multitalents.net>.
11121 2006-05-22  Paul Eggert  <eggert@cs.ucla.edu>,
11122             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>,
11123             Stepan Kasal  <kasal@ucw.cz>
11125         * doc/autoconf.texi (Particular Programs): Do not promise that
11126         we always prefer the GNU version of the program, and that we
11127         search according to PATH; both rules can have exceptions.
11128         Update description of AC_PROG_GREP, AC_PROG_EGREP, AC_PROG_FGREP,
11129         AC_PROG_SED.  Move descriptions of limitations
11130         to the Limitations of Usual Tools section.
11131         (Limitations of Usual Tools) <sed>: Mention script length
11132         limitations with Solaris /usr/ucb/sed.
11133         <grep>: Fix wording for empty alternative.  Mention that -c and
11134         -l should not be combined, and that -E and -F should not be
11135         combined.
11137 2006-05-21  Paul Eggert  <eggert@cs.ucla.edu>
11138         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11140         * lib/autoconf/programs.m4 (AC_PROG_SED): Catch script length
11141         limits in Solaris 8 /usr/ucb/sed by testing a long script.
11143 2006-05-22  Stepan Kasal  <kasal@ucw.cz>
11145         * doc/autoconf.texi (Defining Symbols): Literal parameter of
11146         AC_DEFINE is now passed to m4_pattern_allow.
11147         * NEWS: Mention that; likewise for AC_SUBST.
11148         * lib/autoconf/general.m4 (AC_DEFINE_TRACE_LITERAL): Pass
11149         the parameter to m4_pattern_allow.
11150         * tests/tools.at: Add a check for that.
11152 2006-05-22  Stepan Kasal  <kasal@ucw.cz>
11154         * lib/autoconf/status.m4: Fix typos.
11156 2006-05-21  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11158         * lib/autoconf/programs.m4 (_AC_FEATURE_CHECK_LENGTH): Remove
11159         only the files that this macro generates.
11161 2006-05-21  Paul Eggert  <eggert@cs.ucla.edu>
11163         * doc/autoconf.texi (Limitations of Usual Tools) <sed>: For
11164         the HP-UX sed limitation of 99 commands, labels do not count.
11165         * lib/autoconf/status.m4 (_AC_SED_CMD_LIMIT): Mention that
11166         in the comment.
11167         (_AC_OUTPUT_HEADER): Revert the change from 2006-05-19.
11169 2006-05-21  Paul Eggert  <eggert@cs.ucla.edu>
11171         * lib/autoconf/functions.m4 (AC_FUNC_GETMNTENT):
11172         Import the following fix from coreutils:
11174         2006-01-13  Jim Meyering  <jim@meyering.net>
11176         Invoke AC_CHECK_FUNCS(getmntent) unconditionally so that tests of
11177         $ac_cv_func_getmntent (e.g., in gl_LIST_MOUNTED_FILE_SYSTEMS) need
11178         not double-quote uses of that variable, to accommodate the rare
11179         case in which getmntent is available in none of the libraries
11180         checked.  This happens at least on FreeBSD 5.0.
11182 2006-05-20  Paul Eggert  <eggert@cs.ucla.edu>
11184         * lib/autoconf/general.m4 (AC_CONFIG_AUX_DIRS): Bring back
11185         ac_config_guess, ac_config_sub, and ac_configure, since evidently
11186         some other programs unwisely rely on these undocumented vars.
11187         But put in warning comments about them.
11188         Problem reported by Ralf Wildenhues in
11189         <http://lists.gnu.org/archive/html/autoconf-patches/2006-05/msg00068.html>.
11190         * NEWS: Document that these variables are intended to go away.
11192 2006-05-20  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11194         * lib/autoconf/c.m4 (AC_PROG_CXX_C_O): Require AC_PROG_CXX,
11195         and set the language to C++ (analogous to the equivalent Fortran
11196         tests).
11198         * lib/autoconf/c.m4 (AC_PROG_CXX_C_O): New macro.
11199         * doc/autoconf.texi (C++ Compiler): Document it.
11200         * lib/autoconf/fortran.m4 (_AC_PROG_FC_C_O): Adjust comment.
11201         * NEWS: Update.
11203 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
11205         * lib/autoconf/status.m4 (_AC_OUTPUT_HEADER): Fix off-by-one bug
11206         that caused config.status to generate 100-command sed scripts; the
11207         portable limit is 99.
11209 2006-05-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11211         * lib/autoconf/programs.m4 (AC_PROG_MKDIR_P): Name temporary
11212         variable `ac_d' instead of `d' to avoid infringing namespace.
11213         Report by Ralf Menzel.
11215 2006-05-18  Paul Eggert  <eggert@cs.ucla.edu>
11217         * lib/autoconf/status.m4 (_AC_OUTPUT_FILE): Don't prepend
11218         $ac_top_build_prefix to $MKDIR_P if it's just 'mkdir -p'.
11219         * tests/tools.at (autoconf: subdirectories): New test, taken from
11220         the corresponding problem report by Ralf Wildenhues in:
11221         http://lists.gnu.org/archive/html/autoconf-patches/2006-05/msg00053.html
11223         * lib/autoconf/functions.m4 (AC_REPLACE_FNMATCH, AC_FUNC_FNMATCH_GNU):
11224         Quote some uses of shell variables if they might suffer unexpected
11225         globbing.  This doesn't fix all instances of quoting problems that
11226         I found, just the easy ones that look safe.
11227         * lib/autoconf/general.m4 (_AC_INIT_SRCDIR, _AC_INIT_HELP):
11228         (AC_CONFIG_AUX_DIR, AC_CONFIG_AUX_DIR_DEFAULT, AC_CONFIG_AUX_DIRS):
11229         (AC_CANONICAL_BUILD, AC_CANONICAL_HOST, AC_CANONICAL_TARGET):
11230         (AC_CACHE_LOAD, AC_CACHE_SAVE): Likewise.
11231         * lib/autoconf/libs.m4 (_AC_PATH_X_XMKMF, _AC_PATH_X_DIRECT): Likewise.
11232         * lib/autoconf/specific.m4 (AC_SYS_LONG_FILE_NAMES): Likewise.
11233         * lib/autoconf/status.m4 (_AC_OUTPUT_LINK, _AC_OUTPUT_SUBDIRS):
11234         Likewise.
11235         * lib/autotest/general.m4 (_AC_INIT_PARSE_ARGS): Likewise.
11236         * lib/m4sugar/m4sh.m4 (_AS_DETECT_BETTER_SHELL): Likewise.
11238 2006-05-18  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11240         * bin/autoreconf.in ($help): Reword according to the manual.
11241         Suggested by Olly Betts.
11243 2006-05-17  Olly Betts  <olly@survex.com>  (tiny change)
11244         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11246         * bin/autoreconf.in: Pass the directory argument to
11247         `require_configure_ac'.  Fix comment.
11248         * tests/torture.at (Configuring subdirectories): Expose this.
11249         Reported by Olly Betts.
11251 2006-05-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11253         * lib/Automake/Configure_ac.pm, lib/Automake/Channels.pm,
11254         lib/Automake/FileUtils.pm, lib/Automake/Struct.pm: Sync from
11255         Automake as follows:
11257         * lib/Autom4te/Configure_ac.pm (find_configure_ac): Use
11258         `$configure_in' instead of `configure.in', to preserve
11259         directory component.
11261 2006-05-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11263         * config/config.guess, config/config.sub, config/texinfo.tex,
11264         doc/make-stds.texi, doc/standards.texi: Sync from upstream.
11266 2006-05-14  Paul Eggert  <eggert@cs.ucla.edu>
11268         * lib/autoconf/headers.m4 (AC_HEADER_STDBOOL): Fix overly-picky
11269         test for C99 conformance; (bool) 0.5 is an integer constant
11270         expression, but (bool) -0.5 is not.  Problem reported by Fedor
11271         Sergeev in <http://forum.sun.com/jive/thread.jspa?threadID=96202>.
11273 2006-05-13  Paul Eggert  <eggert@cs.ucla.edu>
11275         * doc/autoconf.texi (Particular Programs): AC_PROG_MKDIR_P now
11276         sets MKDIR_P, not mkdir_p, to avoid collisions with Automake.
11277         Warn about obsolete install-sh files.  Remove stray sentence
11278         fragment and fix cross reference.
11279         * lib/autoconf/programs.m4 (AC_PROG_INSTALL): Don't insist on
11280         install -d; this undoes the 2006-05-10 change.
11281         (MKDIR_P): Mark with AN_MAKEVAR.
11282         (AC_PROG_MKDIR_P): Fall back on $ac_install_sh, not $INSTALL, so
11283         that we don't require $INSTALL to be thread-safe.  Move comments
11284         out of generated code.  Require AC_CONFIG_AUX_DIR_DEFAULT instead
11285         of AC_PROG_INSTALL.  Output a message saying that we're checking
11286         mkdir -p.  Set MKDIR_P rather than mkdir_p.  Do special magic for
11287         MKDIR_P instead of AC_SUBST.
11288         * lib/autoconf/status.m4 (_AC_OUTPUT_FILE, _AC_OUTPUT_CONFIG_STATUS):
11289         Special magic for MKDIR_P, too.
11290         * lib/m4sugar/m4sh.m4 (AS_MKDIR_P): Remove comment that defeated
11291         a dnl.
11292         * tests/local.at (AT_CHECK_ENV): mkdir_p -> MKDIR_P.
11294 2006-05-11  Paul Eggert  <eggert@cs.ucla.edu>
11296         Sync from Automake, as follows:
11298         2006-05-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11299         * config/install-sh: Initialize IFS, so field splitting isn't
11300         turned off later.
11301         * config/mkinstalldirs: Likewise.
11302         * config/missing: Remove superfluous quotes.  Replace all uses of
11303         `[' by `test', for consistency, and for..
11304         * config/missing (sed_minuso, sed_output): New variables.
11305         (autom4te, help2man, makeinfo): Use them.  Unifies detection of
11306         `-o FILE', `--output FILE', `--output=FILE', stricter regex.
11307         Fixes `missing' to detect `--output' for help2man.  Fixes
11308         PR automake/483.  Report by Dennis J. Linse.
11309         (autom4te): Document in `missing --help'.
11311 2006-05-10  Paul Eggert  <eggert@cs.ucla.edu>
11313         * NEWS: New macro AC_PROG_MKDIR_P.  AS_MKDIR_P is now more robust.
11314         * config/install-sh: Don't use 'path' to talk about file names,
11315         as per GNU coding standards.  Close a race condition reported by Ralf
11316         Wildenhues and Stepan Kasal.  There is still a race condition
11317         on hosts that predate Posix 1003.1-1992, but we can't help this.
11318         Don't mishandle weird characters like space on pre-Posix hosts.
11319         Invoke mkdir at most once per dir arg on pre-Posix hosts.
11320         * doc/autoconf.texi (Programming in M4sh): Cross-reference to
11321         AC_PROG_MKDIR_P from AS_MKDIR_P.
11322         (Limitations of Usual Tools): Cross-reference to AC_PROG_MKDIR_P
11323         from mkdir.  Mention that Autoconf 2.60 install-sh is safe but
11324         earlier editions are not (including Automake 1.8.3).
11325         Do not suggest mkinstalldirs for thread-safety.
11326         * lib/autoconf/programs.m4 (AC_PROG_INSTALL): Insist on an 'install'
11327         that understands -d, so that AC_PROG_MKDIR_P can fall back on $INSTALL.
11328         * lib/m4sugar/m4sh.m4 (AS_MKDIR_P): Make it more robust in the
11329         presence of special characters and race conditions.
11330         * tests/local.at (AT_CHECK_ENV): Add mkdir_p to the list of variables
11331         in Autoconf's name space.
11333 2006-05-10  Bruno Haible  <bruno@clisp.org>
11334         and Paul Eggert  <eggert@cs.ucla.edu>
11336         * lib/autoconf/programs.m4 (AC_PROG_MKDIR_P): New macro, taken
11337         from Automake with minor changes.
11338         * doc/autoconf.texi (Particular Programs): Document AC_PROG_MKDIR_P.
11340 2006-05-10  Paul Eggert  <eggert@cs.ucla.edu>
11342         * config/install-sh: Update to Automake CVS version, as follows:
11343         2006-04-25  Stepan Kasal  <kasal@ucw.cz>
11344         * lib/install-sh: Simplify the expr implementation of dirname.
11345         2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
11346         * lib/install-sh: Handle --, and diagnose unknown options.
11348 2006-05-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11350         * tests/Makefile.am (AUTOTEST): Use `$(MY_AUTOM4TE)' instead of
11351         `./autom4te' to create `./testsuite', since the `all' target
11352         will ensure its presence, but `installcheck' should not create
11353         the uninstalled wrappers.
11355         * tests/torture.at (Unusual Automake input files): Skip if we
11356         detect automake < 1.8.
11358 2006-05-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11360         * lib/autoconf/c.m4 (AC_PROG_CC_STDC): If ac_cv_prog_cc_stdc
11361         is set to `no', then that overrides and sets ac_cv_prog_cc_c89
11362         and ac_cv_prog_cc_c99 to `no', for backward compatibility.
11363         * NEWS: Update.
11365 2006-05-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11367         * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): Take care not to
11368         munge (multiple) white space and other oddities.
11369         * tests/torture.at (AT_CHECK_AC_ARG_VAR): Make sure to M4-escape
11370         single quotes in variable assignment.
11371         (AC_ARG_VAR, configure invocation): Adjust tests to expose this
11372         and similar failures by adding multiple spaces, tabs, and other
11373         special characters.
11374         Report and different test suggested by Francesco Romani
11375         <fromani@gmail.com> and Andrew Church <achurch@achurch.org>.
11377         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): When we escape
11378         single quotes, we only need to search for single quotes; this
11379         both simplifies the search pattern, and makes us less
11380         susceptible to `echo' variations for arguments not containing
11381         single quotes.
11382         (_AC_ARG_VAR_VALIDATE): Likewise.
11384 2006-05-04  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11386         * doc/autoconf.texi (Special Shell Variables) <IFS>: Document
11387         `$*' and IFS concatenation issue with traditional shells and
11388         bash-2.04.  Report by Seanster@Seanster.com.
11390 2006-05-03  Bruno Haible  <bruno@clisp.org>
11392         * doc/autoconf.texi (Limitations of Usual Tools): Identify more
11393         precisely which Mac OS X versions have the od problem.
11395 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
11397         * doc/autoconf.texi: Use @option systematically.
11399 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
11400         and Bruno Haible  <bruno@clisp.org>
11402         * doc/autoconf.texi (Limitations of Usual Tools): Add a paragraph
11403         about 'od'.
11404         (Integer Overflow): Mention the special case of integer division
11405         overflow.
11407 2006-05-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11409         * lib/autoconf/general.m4 (_AC_CANONICAL_SPLIT): Cater for
11410         traditional shells like the Solaris one that do not use the
11411         first IFS character for assembling `$*'.
11412         Prompted by a related report from autoconf_bug@nro.ca.
11414 2006-05-01  Paul Eggert  <eggert@cs.ucla.edu>
11415         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11417         * doc/autoconf.texi (Limitations of Builtins, Limitations of Make):
11418         Mention more problems with the -e option.
11420 2006-04-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11422         * NEWS: Typo.
11423         * doc/autoconf.texi (Systemology): Mention the Heirloom Project.
11425         * doc/autoconf.texi (Introduction, Pointers): Use `@/' liberally
11426         in URLs to improve DVI formatted output (requires texinfo 4.6).
11427         (System Services, Systemology, Shellology): Likewise.
11428         (Limitations of Usual Tools): Rewrite Mac OS X example for nicer
11429         output.
11431         * doc/autoconf.texi (Fortran Compiler): Do not use `@ovar' in
11432         continuous text.
11433         (Runtime): Fix macro argument names to match description:
11434         `action-if-found' -> `action-if-true' and similarly.
11435         (Obsolete Macros): Likewise.
11436         * lib/autoconf/general.m4 (_AC_COMPILE_IFELSE): Likewise.
11437         (AC_COMPILE_IFELSE, AC_TRY_COMPILE, _AC_LINK_IFELSE)
11438         (AC_LINK_IFELSE, AC_TRY_LINK, AC_COMPILE_CHECK): Likewise.
11440 2006-04-29  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11442         * doc/autoconf.texi (Limitations of Make): Clean up markup.
11444         * ChangeLog: Typo.
11445         * doc/autoconf.texi (Portable Shell): Allow wrapped URLs, for
11446         DVI output.
11448 2006-04-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11450         * doc/autoconf.texi (Limitations of Builtins): Document FreeBSD
11451         /bin/sh set unsorted output.
11452         * lib/autoconf/general.m4 (_AC_CACHE_DUMP): Adjust.
11453         * tests/local.at: Likewise.
11455 2006-04-26  Paul Eggert  <eggert@cs.ucla.edu>
11457         * doc/autoconf.texi (Portable C and C++, Varieties of Unportability):
11458         (Integer Overflow, Null Pointers, Buffer Overruns):
11459         (Floating Point Portability, Exiting Portably): New sections.
11460         (Writing Test Programs): Fix some langauge.  Recommend exiting
11461         with status 1, not merely nonzero.  Clarify exit declaration.
11462         (Run Time): Move C exit status stuff to new Exiting Portably section.
11463         (Systemology): Mention Posix and levenez.  Update v7 reference.
11464         (Portable Shell): Mention the Posix shell.
11466 2006-04-25  Stepan Kasal  <kasal@ucw.cz>
11468         * bin/autoconf.as (me): Replace by as_me.
11470 2006-04-25  Paul Eggert  <eggert@cs.ucla.edu>
11472         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Don't use AS_ERROR,
11473         since as_me isn't set yet.
11475 2006-04-23  Paul Eggert  <eggert@cs.ucla.edu>
11477         Prepare for deprecation of AS_BASENAME and AS_DIRNAME, and fix
11478         a few minor bugs in this area.
11480         * doc/autoconf.texi (Programming in M4sh): Comment out the
11481         documentation of AS_BASENAME, for now.
11482         (Shell Substitutions): Do not use AS_DIRNAME in an example.
11483         (Limitations of Builtins) <basename>: Do not refer to
11484         AS_BASENAME.
11485         * bin/autoconf.as (me): Don't use AS_BASENAME.
11486         (dir): Remove the unused variable.
11487         * lib/m4sugar/m4sh.m4 (_AS_DETECT_REQUIRED): Renamed from
11488         AS_DETECT_REQUIRED.  All uses changed.
11489         (_AS_DETECT_SUGGESTED): Renamed from AS_DETECT_SUGGESTED.
11490         All uses changed.
11491         (_AS_DETECT_BETTER_SHELL): Put ;; at the end of a case.
11492         (AS_BASENAME): Use "basename --" to protect against leading "-".
11493         (_AS_BASENAME_EXPR): Renamed from AS_BASENAME_EXPR.  All uses changed.
11494         (_AS_BASENAME_SED): Renamed from AS_BASENAME_SED.  All uses changed.
11495         (_AS_BASENAME_PREPARE): Reject implementations that cannot handle "--".
11496         (_AS_DIRNAME_PREPARE): Likewise.
11497         (_AS_DIRNAME_EXPR): Renamed from AS_DIRNAME_EXPR.  All uses changed.
11498         (_AS_DIRNAME_SED): Renamed from AS_DIRNAME_SED.  All uses changed.
11499         (AS_DIRNAME): Use "dirname --".
11501 2006-04-23  Paul Eggert  <eggert@cs.ucla.edu>
11503         * doc/autoconf.texi (Runtime): Renamed from "Run Time".  All uses
11504         of "run time" and "run-time" changed to "runtime", for consistency.
11505         * lib/autoconf/fortran.m4: Likewise (in comment).
11506         * lib/autoconf/functions.m4: Likewise.
11507         * lib/autoconf/general.m4: Likewise.
11508         * lib/autoconf/headers.m4: Likewise.
11510         * doc/autoconf.texi (Run Time): Document the exit status situation
11511         with more accuracy and detail.
11513 2006-04-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11515         * doc/autoconf.texi (Introduction): The GNU Autoconf Macro
11516         Archive is not officially `GNU' any more.  Update URL.
11517         (Defining Directories): Likewise
11518         * lib/autoconf/c.m4 (AC_C_RESTRICT): Update URL.
11520 2006-04-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11522         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Remove the leading
11523         newline from the `trap' code to finish `config.log'; the NetBSD
11524         /bin/sh resets the exit status after an empty command, as
11525         documented in doc/autoconf.texi.
11526         Reported by Dalibor Topic <robilad@kaffe.org>.
11528 2006-04-19  Paul Eggert  <eggert@cs.ucla.edu>
11530         * doc/autoconf.texi (C Compiler): Clarify AC_C_TYPEOF.
11531         Suggested by Bruno Haible.
11533 2006-04-18  Paul Eggert  <eggert@cs.ucla.edu>
11535         * configure.ac (ac_cv_sh_n_works): Don't try to test for it, since
11536         some shells (e.g., Solaris 8 /bin/sh) implement it verrrry slowly.
11537         Instead, just list the shells that we know work.
11538         * tests/local.at (AT_CHECK_SHELL_SYNTAX): Remove 2nd arg.  All uses
11539         changed.  Be more cautious about the _cv_ variable.
11540         * tests/tools.at (Syntax of the shell scripts): Check the
11541         _cv_ variable once, at first, to avoid an internal autoconf error
11542         when sh -n does not work.
11544 2006-04-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11546         * lib/Autom4te/FileUtils.pm: Sync from Automake.
11548 2006-04-16  Paul Eggert  <eggert@cs.ucla.edu>
11550         * lib/autoconf/general.m4 (_AC_INIT_CONFIG_LOG): Don't
11551         use ">&-" since we're only 99.999% sure that this is portable,
11552         and since the MinGW bug is fixed in a different way.
11553         * lib/autotest/general.m4 (AT_INIT): Likewise.
11555 2006-04-16  Stepan Kasal  <kasal@ucw.cz>
11557         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Handle --recheck
11558         before opening config.log, to avoid hitting a bug on MinGW.
11560 2006-04-14  Paul Eggert  <eggert@cs.ucla.edu>
11562         * lib/autoconf/general.m4 (_AC_INIT_CONFIG_LOG): Close
11563         AS_MESSAGE_LOG_FD before reopening it onto the log file.
11564         This works around a MinGW bug reported by Eric Paire.
11565         Make sure that all writes to the log file append to it,
11566         rather than possibly losing data.
11567         * lib/autotest/general.m4 (AT_INIT): Likewise.
11569 2006-04-14  Stepan Kasal  <kasal@ucw.cz>
11571         * lib/Autom4te/FileUtils.pm (find_file): Fix a typo in the
11572         description.
11574 2006-04-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11576         * NEWS: Update.
11578         * configure.ac (AC_INIT): Bump to 2.59d.
11580 2006-04-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11582         Version 2.59c.
11584         * Makefile.maint (news-date-check): Do not require a leading `*'
11585         before the release date in NEWS.
11587 2006-04-12  Stepan Kasal  <kasal@ucw.cz>
11588         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11590         * lib/autoconf/status.m4 (_AC_OUTPUT_FILE): If the templates for
11591         the instantiated file do not contain the string 'datarootdir'
11592         but contain @datadir@, @docdir@, @infodir@, @localedir@, or
11593         @mandir@, replace the reference '${datarootdir}' by the value.
11594         * tests/torture.at (datarootdir workaround): New test.
11595         * NEWS: Advertise this temporary fixup.
11596         Based on a patch by Bruno Haible, reported and analyzed by
11597         Paul Eggert and Noah Misch.
11599 2006-04-12  Eric Blake  <ebb9@byu.net>
11601         * tests/autotest.at (Debugging a failed test): Fix comment.
11603 2006-04-12  Stepan Kasal  <kasal@ucw.cz>
11605         * lib/m4sugar/m4sh.m4 (_AS_LN_S_PREPARE): Simplify the summary of
11606         all the changes since 2006-04-07.
11608 2006-04-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11610         * lib/m4sugar/m4sh.m4 (_AS_LN_S_PREPARE): If `ln -s file1 file2'
11611         succeeded, but `ln -s file dir' failed, take care to remove the
11612         leftover target before the next test, to prevent its spurious
11613         failure; also make sure `ln file dir' works before selecting it.
11614         Thanks to Keith Marshall for pointing this out.
11615         * THANKS: Update.
11617         * lib/autotest/general.m4 (AT_INIT): Store quoted variable
11618         assignments in `at_debug_args', so that we put them correctly
11619         in the `run' script.
11620         * tests/autotest.at (Debugging a failed test): Unmark XFAIL.
11621         Reported by Eric Blake.
11623 2006-04-11  Eric Blake  <ebb9@byu.net>
11625         * tests/autotest.at (AT_CHECK_AT): Add new argument, to allow
11626         top-level tests after micro-suite has been run.   Used in...
11627         (Debugging a successful test, Debugging script and environment),
11628         (Debugging a failed test): ...these new tests.  The first of these
11629         is fixed by...
11630         * lib/autotest/general.m4 (_AT_CREATE_DEBUGGING_SCRIPT): New
11631         macro, split out from...
11632         (AT_INIT): ...here, so that using -d also generates a run script.
11633         Document that -d inhibits top-level logging.
11634         * doc/autoconf.texi (testsuite Invocation): Document that -d only
11635         inhibits top-level logging; debug scripts are created.
11637         * lib/autotest/general.m4 (_AT_CHECK): Avoid syntax error on empty
11638         check.
11639         * tests/autotest.at (Empty test, Empty check): New test to check it.
11641         * lib/autoconf/c.m4 (AC_C_CONST, AC_C_VOLATILE): Avoid warnings
11642         from gcc.
11644 2006-04-10  Stepan Kasal  <kasal@ucw.cz>
11646         * tests/mktests.sh: Use "trap '' 0", not "trap 0".  Do not touch
11647         the files if a problem appears.  Make the empty *.at files
11648         read-only, too.  Proposed by Ralf Wildenhues.
11650 2006-04-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11652         * config/Makefile.am: Add comment to force updated Makefile.in.
11654         * lib/freeze.mk: Fix typo in comment.  Unlike the last, white
11655         space only patch to this file, this patch causes the Makefile.in
11656         files that include freeze.mk to be updated, and thus have a
11657         newer time stamp again, which in turn makes a pristine CVS
11658         checkout have correct time stamps.
11660         * Makefile.maint (cvs-sv): New macro, to be used..
11661         (config.guess-url_prefix, config.sub-url_prefix)
11662         (texinfo.tex-url_prefix, standards.texi-url_prefix): ..here;
11663         point to CVS text checkout of Gnulib files.
11664         (copyright-check): Bump current year.
11665         (announcement): Do not hard-wire `./announce-gen'.
11666         (cvs-update): Propagate failures of `cvs' and `move-if-change'
11667         correctly.
11668         * Makefile.cfg (executable-update): Use `chmod a+x' instead of
11669         `chmod +x'.
11670         (wget_files): Update config.guess, config.sub, texinfo.tex by
11671         `wget-update', now that their URLs work again.
11673 2006-04-10  Paul Eggert  <eggert@cs.ucla.edu>
11675         * doc/autoconf.texi (Particular Types): Don't use AC_CHECK_TYPE.
11676         Problem noted by Paul D. Smith.
11678 2006-04-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11680         * doc/autoconf.texi: Remove unused words from word list.
11681         * .x-sc_prohibit_atoi_atof, .x-sc_space_tab, .x-sc_sun_os_names,
11682         .x-sc_trailing_space: New files.
11684         * doc/standards.texi: Sync from gnulib.
11686         * NEWS, doc/autoconf.texi (AC_LIBOBJ vs LIBOBJS): Mark
11687         `LIBOBJDIR' as experimental.
11689         * lib/m4sugar/m4sh.m4 (_AS_LN_S_PREPARE): MSYS `ln -s' fails
11690         with a target directory; it's internally implemented as `cp'
11691         anyway, but since Autoconf advertises the possibility to use
11692         a target directory when LN_S is `ln -s', we need to find out.
11693         Reported by Rolf Ebert <rolf.ebert.gcc@gmx.de> against MSYS,
11694         analyzed by Keith Marshall <keith.marshall@total.com>.
11696         * THANKS: Update.
11698 2006-04-10  Paul Eggert  <eggert@cs.ucla.edu>
11700         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Just output
11701         confdefs.h as-is.  In general, if it has backslash-newline or the
11702         like, then it doesn't work either to sort or to remove empty
11703         lines.
11705 2006-04-09  Stepan Kasal  <kasal@ucw.cz>
11707         * tests/Makefile.am (AUTOCONF_FILES): Fix typo in the comment.
11709 2006-04-09  Alexandre Duret-Lutz  <adl@gnu.org>
11711         * lib/autom4te.in (Automake-preselections): Preselect
11712         _AM_SUBST_NOTMAKE.
11714 2006-04-08  Paul Eggert  <eggert@cs.ucla.edu>
11716         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Use '\'' for an
11717         apostrophe within a single-quoted string, as this is the usual
11718         tradition and is easier to read than '"'"'.  Don't rely on the
11719         shell treating "$/" like '$/'.  Use a more-consistent indenting
11720         style for the trap.
11722 2006-04-09  Eric Blake  <ebb9@byu.net>
11724         * tests/autotest.at (Backquote command substitution),
11725         (Multiline backquote command substitution): Remove mistaken
11726         AT_NO_CMDSUBST from the 2006-03-14 patch, which was meant to be
11727         applied...
11728         (Parenthetical command substitution, Multiline parenthetical
11729         command substitution): here.
11731 2006-04-08  Paul Eggert  <eggert@cs.ucla.edu>
11733         Import macros from gnulib (often changing their name).
11735         * NEWS: AC_C_TYPE_LONG_DOUBLE is now obsolete.
11736         New macros AC_CHECK_DECLS_ONCE, AC_CHECK_FUNCS_ONCE,
11737         AC_CHECK_HEADERS_ONCE, AC_FUNC_STRTOLD, AC_HEADER_ASSERT,
11738         AC_STRUCT_DIRENT_D_INO, AC_STRUCT_DIRENT_D_TYPE,
11739         AC_TYPE_LONG_DOUBLE, AC_TYPE_LONG_DOUBLE_WIDER, AC_TYPE_INT8_T,
11740         AC_TYPE_INT16_T, AC_TYPE_INT32_T, AC_TYPE_INT64_T,
11741         AC_TYPE_INTMAX_T, AC_TYPE_INTPTR_T, AC_TYPE_LONG_LONG_INT,
11742         AC_TYPE_UINT8_T, AC_TYPE_UINT16_T, AC_TYPE_UINT32_T,
11743         AC_TYPE_UINT64_T, AC_TYPE_UINTMAX_T, AC_TYPE_UINTPTR_T,
11744         AC_TYPE_UNSIGNED_LONG_LONG_INT, AC_USE_SYSTEM_EXTENSIONS.
11745         The manual mentions Gnulib more prominently.
11746         * doc/autoconf.texi (Gnulib): New node.
11747         (Pointers): Add Gnulib URL.
11748         (Particular Functions): Alphabetize.  Add AC_FUNC_STRTOLD.
11749         (Generic Functions): Add AC_CHECK_FUNCS_ONCE.  Refer to new
11750         Gnulib section.
11751         (Particular Headers): Add AC_HEADER_ASSERT.  For stdbool.h,
11752         suggest a #define rather than a typedef for _Bool, and mention
11753         Gnulib rather than trying to substitute stdbool code.
11754         (Generic Headers): Add AC_CHECK_HEADERS_ONCE.
11755         (Generic Declarations): Add AC_CHECK_DECLS_ONCE.
11756         (Particular Structures): Add AC_STRUCT_DIRENT_D_INO,
11757         AC_STRUCT_DIRENT_D_TYPE.
11758         (Particular Types): Mention stdint.h and inttypes.h as standard
11759         headers too.
11760         Add AC_TYPE_INT8_T, AC_TYPE_INT16_T, AC_TYPE_INT32_T, AC_TYPE_INT64_T,
11761         AC_TYPE_INTMAX_T, AC_TYPE_INTPTR_T, AC_TYPE_LONG_DOUBLE,
11762         AC_TYPE_LONG_DOUBLE_WIDER, AC_TYPE_LONG_LONG_INT, AC_TYPE_UINT8_T,
11763         AC_TYPE_UINT16_T, AC_TYPE_UINT32_T, AC_TYPE_UINT64_T,
11764         AC_TYPE_UINTMAX_T, AC_TYPE_UINTPTR_T, AC_TYPE_UNSIGNED_LONG_LONG_INT.
11765         (C Compiler): Move AC_C_LONG_DOUBLE to ...
11766         (Obsolete Macros): here.  Under AC_LONG_DOUBLE, mention
11767         AC_TYPE_LONG_DOUBLE or AC_TYPE_LONG_DOUBLE_WIDER instead.
11768         (Posix Variants): Add AC_USE_SYSTEM_EXTENSIONS.
11769         (Coding Style).  Don't mention m4_expand_once.
11770         * lib/autoconf/c.m4 (AC_C_LONG_DOUBLE): Implement via
11771         AC_TYPE_LONG_DOUBLE_WIDER.  Now obsolete.
11772         * lib/autoconf/functions.m4 (_AH_CHECK_FUNCS): New macro.
11773         (AC_CHECK_FUNCS): Use it.
11774         (AC_CHECK_FUNCS_ONCE, AC_FUNC_STRTOLD): New macros.
11775         (AC_FUNC_WAIT3): "the Open Group standards" -> "POSIX".
11776         * lib/autoconf/general.m4 (AC_CHECK_DECLS_ONCE): New macro.
11777         * lib/autoconf/headers.m4 (AC_CHECK_HEADERS_ONCE): New macro.
11778         (AC_HEADER_ASSERT): New macro.
11779         (AC_HEADER_STDBOOL): Don't assume "#error" works.
11780         Catch a bug in IBM AIX xlc compiler version 6.0.0.0.
11781         Catch a bug in an HP-UX C compiler.
11782         * lib/autoconf/specific.m4 (AC_USE_SYSTEM_EXTENSIONS): New macro.
11783         * lib/autoconf/types.m4 (AC_TYPE_INTMAX_T. AC_TYPE_UINTMAX_T):
11784         (AC_TYPE_INTPTR_T, AC_TYPE_UINTPTR_T. AC_TYPE_LONG_DOUBLE):
11785         (AC_TYPE_LONG_DOUBLE_WIDER, AC_C_LONG_DOUBLE, AC_TYPE_LONG_LONG_INT):
11786         (AC_TYPE_UNSIGNED_LONG_LONG_INT, _AC_TYPE_INT, _AC_TYPE_UNSIGNED_INT):
11787         (_AC_STRUCT_DIRENT, AC_STRUCT_DIRENT_D_INO, AC_STRUCT_DIRENT_D_TYPE):
11788         New macros.
11790         * tests/mktests.sh (ac_exclude_list, au_exclude_list): Do not
11791         use /^foo|bar$/, it does not mean /^(foo|bar)$/.
11793 2006-04-08  Stepan Kasal  <kasal@ucw.cz>
11795         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Fix the wording
11796         of the warning introduced by the 2001-08-28 change.
11798 2006-04-08  Stepan Kasal  <kasal@ucw.cz>,
11799             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11801         * lib/autoconf/general.m4 (AC_CACHE_SAVE): All `ac_cv_env_foo'
11802         variables shall be overriden by the cache.
11803         * tests/torture.at (AC_ARG_VAR): Test also with a first value
11804         that contains braces.
11806 2006-04-07  Stepan Kasal  <kasal@ucw.cz>
11808         Revert the patch from 2006-04-01 and only improve
11809         _AS_DETECT_BETTER_SHELL:
11811         * lib/m4sugar/m4sh.m4 (_AS_PATH_WALK): Do not optimize; do not
11812         skip nonexistent directories.
11813         (_AS_DETECT_BETTER_SHELL): The optimization is moved here--try
11814         only shell candidates which exist.
11815         (AS_UNAME): No need to give three parameters to _AS_PATH_WALK.
11816         * lib/autotest/general.m4 (AT_INIT): No need to give three
11817         parameters to _AS_PATH_WALK.
11819 2006-04-07  Stepan Kasal  <kasal@ucw.cz>,
11820             Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
11822         * bin/autoupdate.in (handle_autoconf_patches): Change the way we
11823         distinguish m4sugar macros.
11824         * tests/tools.at (autoupdating with aclocal and m4_include):
11825         New test.  Bug reported by Gary V. Vaughan <gary@gnu.org>,
11826         test case by Noah Misch <noah@cs.caltech.edu>.
11828 2006-04-07  Stepan Kasal  <kasal@ucw.cz>
11830         Revert my change from 2006-03-17, in other words:
11831         * lib/m4sugar/m4sh.m4 (AS_BOURNE_COMPATIBLE): Insert BIN_SH=xpg4
11832           and DUALCASE=1.
11833         (AS_SHELL_SANITIZE): Remove DUALCASE=1.
11834         * doc/autoconf.texi (Special Shell Variables) <BIN_SH>: Say that
11835           it is set.
11837 2006-04-07  Eric Blake  <ebb9@byu.net>
11839         * doc/autoconf.texi (Programming in M4sh): Document that
11840         AS_MKDIR_P exits the script on failure.
11841         * lib/autotest/general.m4: Remove redundant AS_ERROR.
11843 2006-04-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11845         * config/elisp-comp, config/install-sh, config/mdate-sh,
11846         config/missing, config/mkinstalldirs: Sync from Automake.
11848         * lib/Autom4te/FileUtils.pm, lib/Autom4te/Struct.pm: Sync
11849         from Automake.
11851         * doc/make-stds.texi: Sync from gnulib.
11853 2006-04-06  Eric Blake  <ebb9@byu.net>
11855         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_O): Inside cache
11856         check, s/ac_exeext/ac_cv_exeext/.  Fixes regression introduced
11857         2006-04-01.
11859 2006-04-06  Stepan Kasal  <kasal@ucw.cz>,
11860             Eric Blake  <ebb9@byu.net>,
11861             Paul Eggert  <eggert@cs.ucla.edu>,
11862             Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
11864         * lib/autoconf/general.m4 (_AC_CACHE_DUMP): Fix the detection of
11865         whether `set' quotes correctly: redirect stderr of the tested
11866         `set', and use a subshell, for Ultrix; use `sed' instead of
11867         `grep' for zsh `set' which may write binary output; match only
11868         at the beginning of a line, to avoid false positives.
11869         In order to avoid false positives by unrelated variables with
11870         multiline content, put the dump algorithm in a subshell and
11871         unset all variables containing newlines (except some which are
11872         special to the shell).  Warn about cache variables that are
11873         unset.
11875 2006-04-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11877         * config/config.guess, config/config.sub, config/texinfo.tex:
11878         Sync from upstream.
11880         * tests/mktests.sh: Reword comments.
11882         * tests/mktests.sh: Only skip internal macros starting with
11883         `_AC_' or `__AC_'.  Noted by Stepan Kasal.
11884         Update exclusion lists for the test suite to this end:
11885         (AC_ARG_VAR): Do test this now.
11886         (AC_SEARCH_LIBS, AC_REPLACE_FUNCS): Need an argument.
11887         (AC_LINKER_OPTION): Remove (renamed to _AC_LINKER_OPTION).
11888         (AC_LIST_MEMBER_OF): Likewise (renamed to _AC_LIST_MEMBER_IF).
11889         (AC_LINK_FILES): Obsoleted since (and thus AU_DEFUN'ed).
11891         * doc/autoconf.texi (Shell Substitutions): Mention the MSYS
11892         shell issue with double-quoted command substitutions of native
11893         commands.
11894         Reported to MSYS by Mark Cave-Ayland, to Autoconf by Keith
11895         Marshall.
11897         * Makefile.maint (sc_cast_of_argument_to_free): Do not fail when
11898         no file matches the glob, discard the warning, set `nullglob'.
11899         (syntax-check): Likewise.
11900         (sc_cast_of_x_alloc_return_value): Likewise.
11901         (sc_cast_of_alloca_return_value, sc_error_exit_success)
11902         (sc_prohibit_jm_in_m4, .re-list, sc_unmarked_diagnostics)
11903         (m4-check): Likewise.
11904         (sc_system_h_headers): Do not print rule on execution.
11905         (sc_tight_scope): Do not fail for non-existing `src' directory.
11906         (sc_changelog): Skip the Copyright footer.
11907         * lib/autoconf/lang.m4: Remove trailing space.
11909         * lib/autoconf/status.m4: More replacements to
11910         <tab><space> where this makes sense.
11912 2006-04-06  Stepan Kasal  <kasal@ucw.cz>
11914         * tests/Makefile.am (maintainer-check-posix):
11915           s/POSIXLY_CORRECTLY/POSIXLY_CORRECT/
11917         * lib/autoconf/status.m4 (_AC_CONFIG_FOOS): Append TAGS to
11918           ac_config_<foo>s again, sometimes normalized, sometimes not.
11919         (AC_CONFIG_FILES, AC_CONFIG_HEADERS, AC_CONFIG_LINKS):
11920         (AC_CONFIG_COMMANDS): Do not do so here.
11921         (_AC_CONFIG_REGISTER_DEST): Double quote the tags in macros _AC_LIST_TAGS
11922           and_AC_LIST_TAG_COMMANDS; fixes another regression introduced by the
11923           2005-07-25 rewrite.  Noticed by Noah Misch.
11925         * lib/autoconf/general.m4 (AC_PRESERVE_HELP_ORDER): Do not define
11926           _AC_PRESERVE_HELP_ORDER, ...
11927         (AC_ARG_ENABLE, AC_ARG_WITH): ... use AC_PROVIDE_IFELSE insetad.
11929         * lib/autoconf/general.m4 (AC_ARG_VAR): Do not use m4_divert_once
11930           inside m4_expand_once; it is redundant.
11932         * lib/autoconf/general.m4 (_AC_INIT_HELP): Remove the broken support
11933           for --help from Cygnus `configure.'
11935 2006-04-06  Paul Eggert  <eggert@cs.ucla.edu>
11937         * doc/autoconf.texi (C Compiler): Warn about #error.  Follows up
11938         on a patch proposed by Ralf Wildenhues.
11940 2006-04-05  Paul Eggert  <eggert@cs.ucla.edu>
11942         * lib/autoconf/status.m4: Replace <space>''<tab> with
11943         <tab><space> where this makes sense.
11945 2006-04-05  Howard Chu  <hyc@highlandsun.com>  (trivial change)
11946             Noah Misch  <noah@cs.caltech.edu>
11948         * lib/autoconf/general.m4 (AC_PRESERVE_HELP_ORDER): New macro.
11949         (AC_ARG_ENABLE, AC_ARG_WITH): Adjust.
11950         * doc/autoconf.texi (Help Formatting): New node.
11951         * NEWS: Announce AC_PRESERVE_HELP_ORDER.
11953 2006-04-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11955         * TODO, config/Makefile.am, lib/freeze.mk, lib/autoconf/c.m4,
11956         lib/autoconf/specific.m4, lib/autoconf/status.m4,
11957         lib/autoconf/types.m4, lib/autotest/general.m4,
11958         tests/mktests.sh, tests/torture.at: White space cleanup:
11959         remove some SPACE before TAB, or add quoting ('' or @&t@).
11961         * NEWS, TODO, bin/autoreconf.in: `filesystem' -> `file system'.
11963         * doc/autoconf.texi (Shell Substitutions): Document `^' vs. `|'.
11965 2006-04-05  Eric Blake  <ebb9@byu.net>
11967         * lib/autotest/general.m4 (AT_INIT): Prep AT_*_all, so that an
11968         empty test suite works.
11969         * tests/autotest.at (Empty test suite): Remove xfail.
11971 2006-04-05  Noah Misch  <noah@cs.caltech.edu>
11973         * lib/autoconf/status.m4 (_AC_CONFIG_FOOS): Do not append normalized
11974         TAGS to ac_config_<foo>s.
11975         (AC_CONFIG_FILES, AC_CONFIG_HEADERS, AC_CONFIG_LINKS): Do so here.
11976         (AC_CONFIG_COMMANDS): Append NAME to ac_config_commands without
11977         normalizing it, consistent it with previous releases.
11978         * tests/torture.at (Macro calls in AC_CONFIG_COMMANDS tags): New test.
11980 2006-04-05  Paul Eggert  <eggert@cs.ucla.edu>
11982         * lib/m4sugar/m4sh.m4 (AS_BASENAME_EXPR, AS_DIRNAME_EXPR):
11983         Use simplified args that Eric Blake originally suggested.
11985 2006-04-04  Paul Eggert  <eggert@cs.ucla.edu>
11987         * tests/mktests.sh: Don't use 'cat'; just read the files directly.
11988         Prefer 'sort -u' to 'sort | uniq'.  Filter data before sorting it.
11989         Use 'comm' rather than N instances of grep; this also fixes a bug
11990         whereby substrings were incorrectly matched, causing us to not
11991         generate tests for AC_F77_NAME_MANGLING and AC_FUNC_LSTAT.
11992         (exclude_list): Exclude empty macros.
11993         (ac_exclude_list): Exclude AC_INCLUDES_DEFAULT.
11995         Use awk rather than grep -E or egrep, to avoid
11996         portability problems with regular expressions containing newlines.
11997         (exclude_list, ac_exclude_list, au_exclude_list, ac_exclude_script):
11998         Switch from grep to awk syntax.
11999         (ac_exclude_script): Renamed from ac_exclude_egrep.
12000         (au_exclude_script): Renamed from au_exclude_egrep.
12002 2006-04-04  Noah Misch  <noah@cs.caltech.edu>
12004         * lib/autoconf/general.m4 (_AC_INIT_HELP): Only `configure.in' evidences
12005         a subdirectory subject to Cygnus `configure'.
12006         * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): Likewise.
12008         * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_MONGREL): Omit the bug
12009         report request when we have no AC_PACKAGE_BUGREPORT.
12011 2006-04-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12013         * THANKS: Update.
12015         * tests/mktests.sh: Update copyright year in the header of the
12016         generated files.
12018         * lib/autoconf/c.m4 (AC_C_INLINE): Do not skip cleanup code.
12019         (AC_C_RESTRICT): Likewise.  Furthermore, add a function with a
12020         typedef'ed restricted pointer, to catch a compiler bug on
12021         HP-UX 11.x, and fix warnings so it passes with -Werror.
12022         (_AC_PROG_CC_C99): Likewise.
12023         Reported by Albert Chin <china@thewrittenword.com>.
12024         * tests/mktests.sh: Do not skip AC_C_INLINE, AC_C_RESTRICT.
12026 2006-04-03  Noah Misch  <noah@cs.caltech.edu>
12028         * bin/autoscan.in (subdirs): New global.
12029         (scan_file): Prune directories with configure{,.{ac,in,gnu}}.
12030         (output): Emit AC_CONFIG_SUBDIRS as needed.
12031         * tests/autoscan.at (autoscan): Remove XFAIL.
12033 2006-04-03  Noah Misch  <noah@cs.caltech.edu>
12035         * lib/autoconf/general.m4 (AC_CACHE_SAVE): Use AC_MSG_NOTICE.
12037 2006-04-03  Eric Blake  <ebb9@byu.net>
12039         * THANKS: Add myself.
12041 2006-04-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12043         * lib/autotest/general.m4 (AT_INIT): Add `at_testdir' to pointer
12044         to log, point to testsuite output tree.
12046 2006-04-02  Paul Eggert  <eggert@cs.ucla.edu>
12048         * NEWS: AC_PROG_CC and AC_PROG_CXX no longer declare 'exit'.
12049         * doc/autoconf.texi (Function Portability): Mention that C++
12050         has trouble with 'exit'.
12051         (Guidelines): Test programs shouldn't use 'exit'.
12052         * lib/autoconf/c.m4 (_AC_PROG_CXX_EXIT_DECLARATION):
12053         Remove; all uses removed.
12054         (AC_LANG_INT_SAVE(C), AC_C_BIGENDIAN):
12055         Return from 'main' instead of calling 'exit'.
12056         * lib/autoconf/functions.m4 (_AC_LIBOBJ_ALLOCA, AC_FUNC_CLOSEDIR_VOID):
12057         (_AC_FUNC_FNMATCH_IF, AC_FUNC_GETGROUPS):
12058         (AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK, _AC_FUNC_MALLOC_IF):
12059         (AC_FUNC_MEMCMP, AC_FUNC_MKTIME, AC_FUNC_MMAP, _AC_FUNC_REALLOC_IF):
12060         (AC_FUNC_SETPGRP, _AC_FUNC_STAT, AC_FUNC_STRTOD, AC_FUNC_STRERROR_R):
12061         (AC_FUNC_STRNLEN, AC_FUNC_SETVBUF_REVERSED, AC_FUNC_UTIME_NULL):
12062         (_AC_FUNC_FORK, _AC_FUNC_VFORK, AC_FUNC_WAIT3): Likewise.
12063         * lib/autoconf/headers.m4 (AC_HEADER_STDC): Likewise.
12064         * lib/autoconf/specific.m4 (AC_SYS_RESTARTABLE_SYSCALLS): Likewise.
12065         * lib/autoconf/types.m4 (AC_TYPE_GETGROUPS): Likewise.
12066         * tests/compile.at: Likewise.
12068 2006-04-02  Pavel Roskin  <proski@gnu.org>
12070         * doc/autoconf.texi (AC_PATH_X): Update per 2005-08-26 change.
12072 2006-04-01  Stepan Kasal  <kasal@ucw.cz>
12074         Clean up _AC_COMPILER_EXEEXT* macros.
12076         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Don't try to
12077           detect exeext, it will be done by _AC_COMPILER_EXEEXT_O; just set
12078           ac_file to the name of the default output file and call
12079           _AC_COMPILER_EXEEXT_WORKS.  Move the definition of ac_files and the
12080           initial `rm' of the candidate files...
12081         (_AC_COMPILER_EXEEXT): ... here and simplify them.  Moreover, use
12082           the same list in subsequent `rm' calls, and for the temporary
12083           redefinition of ac_clean_files; call _AC_COMPILER_OBJEXT at the end,
12084           and don't call the other _AC_COMPILER_EXEEXT_* macros directly, use...
12085         (_AC_COMPILER_EXEEXT_TESTS): ... this new macro.
12086         (_AC_COMPILER_EXEEXT_O): Don't export ac_cv_exeext, it's not needed (or
12087           no longer needed) by libtool.  Make it a cache check.
12088         (_AC_COMPILER_EXEEXT_CROSS): Remove the comment, it was obviously
12089           copied here by mistake.
12090         (AC_NO_EXECUTABLES): Redefine _AC_COMPILER_EXEEXT_TESTS, not
12091           _AC_COMPILER_EXEEXT.
12092         * lib/autoconf/c.m4 (AC_PROG_CC, AC_PROG_CXX, AC_PROG_OBJC): Do not call
12093           _AC_COMPILER_OBJEXT directly.
12094         * lib/autoconf/fortran.m4 (_AC_PROG_FC): Likewise.
12096 2006-04-01  Stepan Kasal  <kasal@ucw.cz>
12098         * lib/m4sugar/m4sh.m4 (_AS_DIRNAME_PREPARE): New macro.
12099         (AS_DIRNAME): Use it.
12100         (_AS_PREPARE): Add _AS_DIRNAME_PREPARE.
12102         * tests/*.at: Remove the generated ones.
12104 2006-04-01  Stepan Kasal  <kasal@ucw.cz>
12106         * lib/autotest/general.m4 (AT_INIT): Don't optimize the first PATH walk.
12108 2006-04-01  Eric Blake  <ebb9@byu.net>
12110         * lib/m4sugar/m4sh.m4 (_AS_PATH_WALK): Optimize nonexistent
12111         directories, unless optional third argument supplied.
12112         (AS_UNAME): Don't optimize PATH walk.
12114         * lib/Autom4te/Struct.pm, lib/autoconf/c.m4: s/non-existent/nonexistent/
12116 2006-04-01  Eric Blake  <ebb9@byu.net>
12117         and Stepan Kasal  <kasal@ucw.cz>
12119         * lib/m4sugar/m4sh.m4: Sort sections as implied by the comments,
12120         and fix some typos.
12122 2006-04-01  Noah Misch  <noah@cs.caltech.edu>
12124         * lib/autoconf/general.m4 (_AC_INIT_VERSION): Emit script name and
12125         Autoconf version number despite a zero- or one-argument AC_INIT.
12127         * bin/autoreconf.in (parse_args): Multiple -v send --verbose to
12128         subordinate tools.
12129         * lib/Autom4te/General.pm (getopt): Make -v and -d incremental.
12130         * doc/autoconf.texi (autoreconf Invocation): Document it.
12132         * doc/autoconf.texi: Use `Cygwin', `MinGW', and `license' consistently.
12133         Append LocalWords so ispell-buffer passes cleanly.  Spelling fixes.
12135 2006-04-01  Eric Blake  <ebb9@byu.net>
12137         * lib/m4sugar/m4sh.m4 (AS_MKDIR_P): Allow use in shell lists.
12138         * lib/autotest/general.m4: Be tolerant of existing directory when
12139           rm failed to remove it.
12141 2006-04-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12143         * bin/autoupdate.in: Redefine m4_location so that warnings print
12144         the correct lines of the input file by subtracting..
12145         (_au__first_line): ..this new definition.
12147         * lib/autoconf/general.m4 (AC_COMPILE_CHECK): Prefer
12148         AC_MSG_CHECKING over obsolete AC_CHECKING in autoupdated code.
12149         Remove stray newline in output.
12150         (AC_FOREACH): AU_DEFUN this as literal for autoupdate, and also
12151         AC_DEFUN this for autoconf, including the obsoletion diagnose.
12152         Fixes autoupdating of code where the replacement output contains
12153         m4sugar macros.
12154         * lib/autoconf/lang.m4 (AC_LANG_SAVE): Likewise.
12155         * tests/mktests.sh (ac_exclude_list): Add AC_FOREACH.
12156          (au_exclude_list): Add AC_LANG_SAVE.
12157         * tests/tools.at: Several new tests for all of this.
12158         * doc/autoconf.texi (Obsoleting Macros): Give a hint about the
12159         hairy details.
12160         The AC_LANG_SAVE issue was reported against Libtool by
12161         Dalibor Topic <robilad@kaffe.org>, and against Autoconf 2.57 by
12162         Kristian Kvilekval <kris@cs.ucsb.edu>.
12164 2006-04-01  Stepan Kasal  <kasal@ucw.cz>
12166         * bin/autoupdate.in: Handle m4 builtins and m4sugar macros together--
12167           switch all of them on and of when necessary.  Fixes the bug when
12168           m4sugar macros (e.g., m4_define) were expanded after the first
12169           automatic update (e.g., after AC_PREREQ or AC_INIT).
12171 2006-03-31  Paul Eggert  <eggert@cs.ucla.edu>
12173         * doc/autoconf.texi (Programming in M4sh): Sharpen the descriptions
12174         of AS_BASENAME and AS_DIRNAME.  Reported by Stepan Kasal.
12176         * lib/m4sugar/m4sh.m4 (AS_BASENAME_EXPR): Handle ///, ////, etc.
12177         correctly.  Problem reported by Eric Blake.
12178         (_AS_EXPR_PREPARE): Detect Tru64 expr bug.  Problem reported by
12179         Ralf Wildenhues.
12181 2006-03-30  Paul Eggert  <eggert@cs.ucla.edu>
12183         * doc/autoconf.texi (Programming in M4sh, Limitations of Usual Tools):
12184         Tighten up the basename/dirname wording.
12186 2006-03-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12188         * Makefile.maint (sc_texi_notab): New check: do not use TABs
12189         in texinfo files outside of verbatim environments.
12190         (syntax-check-rules): Update.
12191         * doc/autoconf.texi (Configuration Headers): Conform to it.
12193 2006-03-30  Chris Pickett <cpicke@cs.mcgill.ca>  (tiny change)
12195         * doc/autoconf.texi (autoreconf Invocation): Mention that -I for
12196           aclocal cannot be given on the command line.
12198 2006-03-29  Paul Eggert  <eggert@cs.ucla.edu>
12200         * doc/autoconf.texi (Programming in M4sh): Mention AS_BASENAME.
12201         Give an example for AS_DIRNAME instead of referring to Posix..
12202         (File System Conventions): Put discussion of // versus / here, and
12203         modernize it a bit.
12204         (Limitations of Usual Tools): Add basename.  Remove verbiage
12205         after dirname, since it got moved to the above sections.
12206         All this was inspired by a patch proposed earlier by Eric Blake.
12208 2006-03-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12210         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Quote
12211         `$0' to protect against spaces.
12212         * lib/autotest/general.m4 (AT_INIT): Likewise.
12213         * lib/m4sugar/m4sh.m4 (_AS_LINENO_PREPARE): Likewise, for
12214         `$0', $as_me.
12216 2006-03-26  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12218         * bin/autoscan.in: The value of find_configure_ac should be
12219         checked for existence, so we don't barf over a nonexisting
12220         configure.ac.  Reported by Laurence Darby <ldarby@tuffmail.com>.
12222 2006-03-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12224         * bin/autoupdate.in: Fix some typos.
12226 2006-03-21  Stepan Kasal  <kasal@ucw.cz>
12228         * doc/autoconf.texi (Installation Directory Variables): Fix typo.
12230         * lib/autoscan/autoscan.list: Refreshed.
12232 2006-03-20  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12234         * tests/local.at (AT_CHECK_ENV): Ignore AC_SUBSTed Objective C
12235         and Erlang related variables.
12237         * lib/autoconf/c.m4 (AC_LANG(Objective C), AC_LANG_OBJC)
12238         (_AC_LANG_ABBREV(Objective C), _AC_LANG_PREFIX(Objective C))
12239         (AC_LANG_SOURCE(Objective C), AC_LANG_PROGRAM(Objective C))
12240         (AC_LANG_CALL(Objective C), AC_LANG_FUNC_LINK_TRY(Objective C))
12241         (AC_LANG_BOOL_COMPILE_TRY(Objective C))
12242         (AC_LANG_INT_SAVE(Objective C), AC_LANG_PREPROC(Objective C))
12243         (AC_PROG_OBJCPP, AC_LANG_COMPILER(Objective C), AC_PROG_OBJC)
12244         (_AC_PROG_OBJC_G): New macros.
12245         (_AC_ARG_VAR_CPPFLAGS): Adjusted.
12246         * doc/autoconf.texi (Objective C Compiler): New node.
12247         (Preset Output Variables): Document OBJCFLAGS.
12248         (Language Choice): Document `Objective C' language.
12249         (Fortran Compiler): Fix typo.
12250         * NEWS: Updated.
12251         Inspired by a patch from David M. Lloyd <dmlloyd@tds.net>.
12253 2006-03-20  Stepan Kasal  <kasal@ucw.cz>
12255         * doc/autoconf.texi (Default Includes): Fix typo
12256           s/AC_HEADERS_STDC/AC_HEADER_STDC/
12257         (Limitations of Usual Tools): s/unwriteable/unwritable/
12258         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT, _AC_COMPILER_EXEEXT):
12259           Fix typos in the comments.
12261 2006-03-17  Stepan Kasal  <kasal@ucw.cz>
12263         * lib/autoconf/programs.m4 (AC_PATH_TOOL, AC_CHECK_TOOL, AC_CHECK_TOOLS):
12264           Factor out the warning to...
12265         (_AC_TOOL_WARN): ... this new macro; use `cross_compiling'.
12266         * tests/local.at (AT_CHECK_MACRO_CROSS): Avoid this warning.
12267         * tests/semantics.at (AC_C_BIGENDIAN): Likewise.
12269         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE): Do not special
12270           case `ac_delim' when writing the sed script.
12272         * lib/m4sugar/m4sh.m4 (AS_BOURNE_COMPATIBLE): Removed BIN_SH=xpg4,
12273           moved DUALCASE=1 ...
12274         (AS_SHELL_SANITIZE): ... here.
12275         * doc/autoconf.texi (Special Shell Variables) <BIN_SH>: Do not say
12276           that it is set.
12278         * lib/autoconf/programs.m4 (AC_CHECK_PROG): Quote the parameter of
12279           AC_SUBST.
12280         (_AC_PATH_PROG): Store the result to VARIABLE.
12281         (AC_PATH_PROG): No need to set VARIABLE again.
12283         * tests/local.at (AT_CHECK_MACRO_CROSS): New macro, creates two tests:
12284           the first one is usual AT_CHECK_MACRO test, the second one checks
12285           that the same works when cross-compiling.
12286         * tests/semantics.at (AC_CHECK_ALIGNOF, AC_CHECK_ALIGNOF struct):
12287         (AC_CHECK_SIZEOF, AC_CHECK_SIZEOF struct): Use it.
12289 2006-03-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12291         * lib/m4sugar/m4sh.m4 (_AS_DETECT_BETTER_SHELL): Prepend
12292         the directory `/usr/bin/posix' in the shell search, to prefer
12293         the Posix shell not only in subsequent spawns as with `$BIN_SH'
12294         on Tru64.
12296         * doc/autoconf.texi (contents): To fix texi2html output, hide
12297         `@setcontentsaftertitlepage' for HTML.
12298         (Writing Autoconf Macros): Likewise, insert space after `@c'.
12299         (Leviticus, Numbers, Deuteronomy): Likewise, change `@,c' to
12300         `@,{c}'.
12302 2006-03-16  Stepan Kasal  <kasal@ucw.cz>
12304         * lib/m4sugar/m4sh.m4 (_AS_PREPARE): Move the IFS setup and CDPATH
12305           sanitizing...
12306         (AS_SHELL_SANITIZE): ...here; mention _AS_PATH_WALK needs IFS set.
12307         * lib/autoconf/general.m4 (_AC_CANONICAL_SPLIT): Add an explanation
12308           why IFS is restored so late; thank you, Ralf, for reminding us.
12310 2006-03-15  Stepan Kasal  <kasal@ucw.cz>
12312         * doc/autoconf.texi (Pretty Help Strings): No need to use cached
12313           variables in the examples.
12315 2006-03-14  Romain Lenglet  <rlenglet@users.forge.objectweb.org>
12317         * doc/autoconf.texi (several sections): Cleaned up documentation for
12318         macros in erlang.m4.
12320 2006-03-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12322         * tests/autotest.at (AT_NO_CMDSUBST): New macro to determine
12323         failure condition for `$(cmd)' style command substitutions.
12324         (Parenthetical command substitution, Multiline parenthetical
12325         command substitution): Use it.
12327         * doc/autoconf.texi (Special Shell Variables): Missing word.
12328         Reported by Keith Marshall <keith.marshall@total.com>.
12330         * lib/m4sugar/m4sh.m4 (_AS_PATH_WALK): Do not forget to reset
12331         IFS even in case of empty `$PATH'.
12333 2006-03-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12335         * lib/autotest/general.m4 (AT_INIT) <at_optarg>: Optimize
12336         `expr' away if there is nothing to do.
12337         < --keywords >: Simplify and robustify argument handling.
12338         Revert erroneous comment from 2005-08-23.  Extend to allow
12339         keyword negation with `!'.
12340         Update help message.  Remove broken code to prevent running
12341         tests multiple times.
12342         * doc/autoconf.texi (testsuite Invocation) < --keywords >:
12343         Update and fix the documentation accordingly.
12344         * tests/autotest.at (Keywords): Renamed to..
12345         (Keywords and ranges): .. this.  Extended to make sure negated
12346         keywords, keywords taken from AT_SETUP arguments, and numeric
12347         test ranges work, and that matching is case-insensitive.
12349 2006-03-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12351         * lib/autoconf/types.m4 (_AC_CHECK_TYPE_NEW): Use a typedef to
12352         allow to pass unnamed structs even in C++.
12353         (AC_CHECK_SIZEOF):  Likewise.
12354         Also fix quoting error in `AC_MSG_FAILURE' arguments.
12355         * tests/semantics.at (AC_CHECK_ALIGNOF struct, AC_CHECK_SIZEOF
12356         struct): New tests for unnamed structs, each both native and
12357         cross-compiling.
12359         * lib/autoconf/c.m4 (AC_C_TYPEOF): Use typedef to avoid defining
12360         a structure inside a cast, for C++ conformance.
12361         * lib/autoconf/types.m4 (AC_CHECK_ALIGNOF): Likewise.
12362         Also fix quoting error in `AC_MSG_FAILURE' arguments.
12364         * lib/autoconf/c.m4 (AC_PROG_CC_STDC): If we cannot enable C99
12365         nor C89 mode, set `$ac_cv_prog_cc_stdc' to `no' instead of
12366         trying to execute the command `no'.
12368         * lib/autoconf/lang.m4 (AC_LANG_CONFTEST): AC_DEFUN this, not
12369         m4_define, so that the requirements of `AC_INCLUDES_DEFAULT' are
12370         expanded outside.
12372         * doc/autoconf.texi (autoconf Invocation): Fix typos in trace
12373         example.  Do not emphasize `$%', it is hardly new and special.
12374         Reported by Edouard Bechetoille <ebecheto@ens-lyon.fr>.
12376         * doc/autoconf.texi (Limitations of Usual Tools): Document
12377         OpenBSD and traditional `grep' failure to handle multiple
12378         patterns separated by newlines.
12380 2006-03-10  Romain Lenglet  <rlenglet@users.forge.objectweb.org>
12382         * doc/autoconf.texi (several sections): Add documentation for macros
12383         in erlang.m4.
12385 2006-03-10  Eric Blake  <ebb9@byu.net>
12387         * doc/autoconf.texi (Obsolete Macros): Fix wording of
12388         AC_TRY_LINK_FUNC.
12390 2006-03-10  Paul Eggert  <eggert@cs.ucla.edu>
12392         * doc/autoconf.texi: Use @acronym more consistently for acronyms
12393         like BSD, GPL, LGPL.  Fix minor English typos.
12394         (AC_STDC_HEADERS, AC_PROG_GCC_TRADITIONAL):
12395         Mention that these macros are becoming obsolete.
12396         (AC_STDC_HEADERS, AC_PROG_CC, AC_C_CONST, AC_C_VOLATILE):
12397         Use more modern terminology for which standard is what.
12398         (AC_PROG_CC): Mention gcc first, and remove obsolete references to egcs
12399         and to ansi2knr.
12400         (AC_PROG_CXX): Likewise.
12401         (AC_C_PROTOTYPES, Test Functions, AC_LIBOBJ vs LIBOBJS):
12402         Remove obsolete discussion about how to port to K&R.
12403         (Guidelines for Test Programs): Suggest AC_HEADER_STDBOOL rather than
12404         the obsolescent AC_HEADER_STDC.
12405         (AC_FOO_IFELSE vs AC_TRY_FOO): Don't use #error; test programs
12406         can't rely on it.
12408 2006-03-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12410         * tests/c.at (AC_PROG_CPP without warnings, AC_PROG_CPP via CC):
12411         Remove stdin redirection from /dev/null to allow pipe to work.
12413 2006-03-08  Paul Eggert  <eggert@cs.ucla.edu>
12415         * tests/c.at (AC_PROG_CPP without warnings, AC_PROG_CPP via CC):
12416         Require that /lib/cpp include stdio.h correctly.  Solaris 10's
12417         doesn't.  Problem reported by D'Arcy A MacIsaac and diagnosed by
12418         Ralf Wildenhues.
12420 2006-03-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12422         * lib/autoconf/status.m4 (_AC_SED_CMD_LIMIT): The limit for
12423         HP-UX sed is 99 commands, not 100.
12424         (_AC_OUTPUT_FILES_PREPARE): Do not count the `}' of an
12425         _AC_SUBST_FILES fragment.  Separate `{' and `r' commands by
12426         newline for portability.
12427         * tests/torture.at (Torturing config.status): Also test 100
12428         AC_SUBST_FILE invocations.  Fix test to actually verify the
12429         AC_CONFIG_FILES output.
12430         * doc/autoconf.texi (Limitations of Usual Tools): Document HP-UX
12431         command, label, and read-file `r' limits.  Unify HP-UX spelling.
12433         * tests/Makefile.am (edit, $(wrappers)): Do not use `$<' in
12434         non-suffix rule.
12435         ($(TESTSUITE_GENERATED_AT)): Use `$(srcdir)` for the benefit of
12436         non-GNU make.
12437         (autoconfdir, $(AUTOCONF_FILES)): Likewise.
12438         * tests/mktests.sh: Small shell portability fixes.
12440 2006-03-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12442         * doc/autoconf.texi (Caching Results): Fix the examples to use a
12443         recommended quoting style and discard unwanted output.
12445 2006-03-05  Paul Eggert  <eggert@cs.ucla.edu>
12447         * lib/autotest/general.m4 (_AT_NORMALIZE_TEST_GROUP_NUMBER): New macro.
12448         (AT_INIT): Use it, to remove arbitrary limit of 999,999 test
12449         cases, and to work around Tru64 expr bug.
12451 2006-03-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12453         * doc/autoconf.texi (Limitations of Usual Tools): Mention Tru64
12454         expr bug that turns the result of a regex match into a number if
12455         possible.
12457 2006-03-04  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12459         * lib/autoconf/types.m4 (AC_CHECK_ALIGNOF): Work around
12460         HPUX compiler bug, similarly to AC_CHECK_SIZEOF, as documented
12461         in section `Specific Compiler Characteristics'.
12463 2006-03-04  Eric Blake  <ebb9@byu.net>
12465         * lib/autoconf/functions.m4 (AC_FUNC_STRERROR_R): Avoid unused
12466         variable warning.
12468 2006-03-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12470         * lib/autoconf/status.m4 (_AC_OUTPUT_HEADER): Force correct
12471         order of variable initialization, so even the Solaris 2.6 shell
12472         can create a config header correctly.  Fixes lots of test suite
12473         failures.
12475 2006-02-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12477         * doc/autoconf.texi (Text processing Macros): New node to
12478         document the m4sugar macros m4_re_escape, m4_tolower,
12479         m4_toupper, m4_split, m4_normalize, m4_append, m4_append_uniq.
12481 2006-02-22  Paul Eggert  <eggert@cs.ucla.edu>
12483         * lib/autoconf/libs.m4 (_AC_PATH_X_DIRECT): Fix typo:
12484         XrmInitialize (0) -> XrmInitialize ().
12485         Reported by Toshio Kuratomi.
12487 2006-02-21  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12489         * lib/m4sugar/m4sh.m4 (AS_IF): Extend to allow more than one
12490         test, as in `if tests; then cmd1; elif ...; else ...; fi'.
12491         * doc/autoconf.texi (Programming in M4sh): Adjusted.
12492         * tests/m4sh.at (AS_IF and AS_CASE): Test this.  Also make sure
12493         both macros are defun'ed so that required macros are evaluated
12494         outside.
12496         * doc/autoconf.texi (Prerequisite Macros): State more precisely
12497         where a required macro will be expanded.
12498         (Coding Style): Another reason not to use `m4_define'.
12500 2006-02-21  Eric Blake  <ebb9@byu.net>
12502         * lib/autoconf/general.m4 (_AC_LIBOBJ): Minor optimization.
12504 2006-02-20  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12506         * doc/autoconf.texi (Looping constructs): New node, to
12507         document m4_for, m4_foreach, m4_foreach_w, and mention
12508         obsolete AC_FOREACH.
12509         (Obsolete Macros): Document AC_FOREACH.
12510         * lib/m4sugar/m4sugar.m4 (_m4_for): Fix declaration comment.
12511         (m4_for): Fix to never loop (almost) endlessly, work correctly
12512         with arithmetic expressions in arguments, a step of zero or
12513         non-integer multiple of the interval, and avoid integer
12514         overflow.
12515         * tests/m4sugar.at: New test for m4_for, m4_foreach, and
12516         m4_foreach_w.
12518 2006-02-20  Romain Lenglet  <rlenglet@users.forge.objectweb.org>
12520         Add basic support for Erlang, both for configuring Erlang/OTP
12521         tools, and Erlang as a conf test language.
12522         * lib/autoconf/erlang.m4: New file.
12523         * lib/autoconf/autoconf.m4: Add erlang.m4.
12524         * lib/autoconf/Makefile.am (dist_autoconflib_DATA): Likewise.
12525         * lib/freeze.mk (autoconf_m4f_dependencies): Likewise.
12526         * NEWS: Add short description of new macros.
12527         * THANKS: Add Romain Lenglet.
12529 2006-02-20  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12531         * doc/autoconf.texi (Shellology) <pdksh>: Document that pdksh as
12532         native /bin/sh may not set KSH_VERSION (seen on OpenBSD).
12534 2006-02-15  Eric Blake  <ebb9@byu.net>
12536         * lib/autoconf/general.m4 (AC_CHECK_DECL): Avoid unused variable
12537         warning.
12539 2006-02-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12541         * lib/m4sugar/m4sh.m4 (AS_CASE): New macro.
12542         (_AS_CASE): Private helper macro.
12543         * tests/m4sh.at: Basic tests for AS_IF and AS_CASE.
12544         * doc/autoconf.texi (Programming in M4sh): Document AS_CASE.
12545         Fix syntax of AS_IF description
12546         (Prerequisite Macros): Mention AS_IF and AS_CASE as workarounds
12547         for the AC_REQUIRE mess.
12548         * NEWS: Mention AS_CASE, AS_BOURNE_COMPATIBLE, and
12549         AS_SHELL_SANITIZE.
12551 2006-02-14  Paul Eggert  <eggert@cs.ucla.edu>
12553         * doc/autoconf.texi: Minor style cleanup.
12554         Be consistent about spaces after commas.
12555         Insert [] where empty args look a bit funny.
12556         Fix some "i.e." and "e.g." usages.
12557         Try to avoid "X/Y" usages.
12558         Don't be pedantic about "ISO C99"; just say C99.
12559         Prefer GNU style for spaces in front of parens.
12560         (Function Portability): Comment about C89 versus C99
12561         signed integer division.
12562         (Particular Headers): Use current gnulib style for dirent
12563         includes.
12565 2006-02-14  Stepan Kasal  <kasal@ucw.cz>
12566         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12568         * bin/autoupdate.in (handle_autoconf_macros): Fix updating of
12569         macros without parameters.
12570         * lib/autoconf/autoupdate.m4 (AU_ALIAS): Likewise.
12571         * doc/autoconf.texi (Obsoleting Macros): Document AU_ALIAS.
12572         * tests/tools.at (autoupdating AU_ALIAS): New test for AU_ALIAS
12573         `$#' bug.
12574         (autoupdate): Updated to match AU_ALIAS fix.
12576 2006-02-13 Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12577         and Paul Eggert  <eggert@cs.ucla.edu>
12579         * doc/autoconf.texi (Programming in M4sh): Document
12580         AS_BOURNE_COMPATIBLE and AS_SHELL_SANITIZE.
12582 2006-02-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12584         * lib/m4sugar/m4sh.m4 (_AS_BOURNE_COMPATIBLE): Renamed to..
12585         (AS_BOURNE_COMPATIBLE): ..this.
12586         (_AS_RUN, AS_SHELL_SANITIZE): Adjusted all callers.
12588 2006-02-12  Paul Eggert  <eggert@cs.ucla.edu>
12590         * doc/install.texi (Defining Variables): Tighten up the
12591         CONFIG_SHELL wording.
12593 2006-02-12 Paul Eggert  <eggert@cs.ucla.edu>
12594         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12596         * lib/m4sugar/m4sh.m4 (_AS_BOURNE_COMPATIBLE): Look at the output
12597         of (set -o) rather than testing whether (set -o posix) succeeds,
12598         to work around a bug in the AIX 5.3 shell.  Problem originally
12599         reportd by Howard Chu for libtool.
12601 2006-02-10  J.T. Conklin  <jtc@acorntoolworks.com>
12603         * doc/autoconf.texi (Running the Compiler, Running the Linker):
12604         Changes the macro arguments in summaries to match the
12605         descriptions.
12607 2006-02-04  Stepan Kasal  <kasal@ucw.cz>
12609         * doc/install.texi (Defining Variables): Classify the `CONFIG_SHELL'
12610         hint as ``a workaround for a bug.''
12612 2006-01-31  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12614         * bin/autoreconf.in: New option `--no-recursive'.
12615         Improve wording for subpackages a bit.
12616         * doc/autoconf.texi (autoreconf Invocation): Updated.
12617         * NEWS: Updated.
12619         * doc/install.texi (Defining Variables): Put `CONFIG_SHELL'
12620         in environment of `configure', not the command line.
12621         Reported by Howard Chu <hyc@highlandsun.com>.
12623 2006-01-25  Paul Eggert  <eggert@cs.ucla.edu>
12625         * doc/autoconf.texi (Limitations of Builtins): Document the
12626         problem with "trap -".
12628 2006-01-23  Steven G. Johnson  <stevenj@fftw.org>
12630         * lib/autoconf/fortran.m4 (_AC_FC_LIBRARY_LDFLAGS, _AC_FC_DUMMY_MAIN):
12631         (_AC_FC_MAIN, __AC_FC_NAME_MANGLING): Use _AC_LANG in check
12632         messages to differentiate Fortran and Fortran 77 tests.
12633         (AC_FC_SRCEXT, AC_FC_FREEFORM): Use AC_LANG_PUSH/POP instead of
12634         AC_LANG_ASSERT, to allow use in mixed-language projects.
12636 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
12638         * lib/autoconf/c.m4 (AC_LANG_FUNC_LINK_TRY(C)): Prefer "defined
12639         FOO" to "defined (FOO)".
12640         * lib/autoconf/functions.m4 (_AC_LIBOBJ_ALLOCA): Likewise.
12641         * lib/autoconf/headers.m4 (AC_HEADER_STAT): Likewise.
12642         * lib/autoconf/specific.m4 (AC_XENIX_DIR): Likewise.
12643         * tests/tools.at (ifnames): Likewise.
12645 2006-01-21  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12647         * lib/m4sugar/m4sh.m4 (AS_TMPDIR): Do not pass `-q' to mktemp.
12648         * lib/Autom4te/General.pm (mktmpdir): Likewise.
12649         (END): Improve error message a bit.
12650         Reported by Bruce Korb <bkorb@gnu.org>.
12652 2006-01-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12654         * lib/autoconf/fortran.m4 (_AC_FC_LIBRARY_LDFLAGS): Ignore
12655         `-LIST:' and `-LNO:', for PathScale 2.3 compilers.
12657 2006-01-11  Stepan Kasal  <kasal@ucw.cz>
12659         * doc/autoconf.texi (Header Portability): On Solaris 8, sys/ptem.h
12660         requires sys/stream.h.  Reported by Oliver Kiddle.
12662 2006-01-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12663             Stepan Kasal  <kasal@ucw.cz>
12665         * lib/autotest/general.m4 (AT_INIT): When ensuring writability
12666         before the removals of test dirs, use `find' to avoid modification
12667         of symlinked directories.
12669 2006-01-11  Steven G. Johnson  <stevenj@alum.mit.edu>
12671         * lib/autoconf/fortran.m4 (AC_F77_DUMMY_MAIN, AC_FC_DUMMY_MAIN):
12672         Don't ignore the macro arguments.
12674 2006-01-11  David Thompson  <dthompsn@vizsolutions.com>
12676         * lib/autoconf/c.m4 (_AC_PROG_CXX_EXIT_DECLARATION): Add `exit'
12677         declaration that works for MSVC.
12679 2006-01-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12681         * lib/autoconf/lang.m4 (_AC_COMPILER_OBJEXT_REJECT):
12682         Add `*.map' and `.inf' for Green Hills compiler.
12683         Reported by Stefan Seefeld <stefan@codesourcery.com>.
12685         * lib/m4sugar/m4sugar.m4 (m4_text_wrap): Handle quadrigraphs
12686         correctly: pad with spaces after FIRST_PREFIX if necessary,
12687         and compute string lenghts with `m4_qlen' instead of `m4_len'.
12688         * lib/m4sugar/m4sh.m4 (AS_HELP_STRING): Comments updated.
12689         * tests/m4sh.at (AS_HELP_STRING): Test extended.
12690         * NEWS: Updated.
12691         Reported by numerous people, numerous times.
12693 2006-01-05  Paul Eggert  <eggert@cs.ucla.edu>
12695         * bin/autoconf.as, bin/autoheader.in, bin/autom4te.in
12696         * bin/autoreconf.in, bin/autoscan.in, bin/autoupdate.in, bin/ifnames.in:
12697         * lib/autoconf/general.m4, lib/autoconf/status.m4:
12698         * lib/autotest/general.m4, tests/local.at:
12699         Update copyright year to 2006.
12701         * Makefile.maint (sc_root_tests): Use the recommended style s/a/b/ for
12702         sed substitutions.
12703         * doc/autoconf.texi (Installation Directory Variables): Use s|a|b|
12704         for file names, again.  Reported by Noah Misch.
12705         (Coding Style): Explain that s|a|b| is preferred for file names.
12706         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE): Prefer s/a/b/.
12707         (AC_OUTPUT_MAKE_DEFS): Likewise.
12708         * lib/autotest/general.m4 (AT_INIT): Likewise.
12709         * lib/m4sugar/m4sh.m4 (_AS_LINENO_PREPARE): Likewise.
12710         * tests/local.at (AT_CHECK_AUTOM4TE): Likewise.
12712         Fix Posix-conformance bugs re use of { command in sed scripts,
12713         and improve the sed-related documentation a bit.
12714         * doc/autoconf.texi (Installation Directory Variables): Use
12715         our own style advice re 's,a,b,' versus 's|a|b|'.  Use "Sed"
12716         rather than "sed" when talking about Sed in general.
12717         (Particular Programs): Likewise.
12718         (Coding Style): y is like s with respect to / and ,.
12719         (Limitations of Usual Tools): Document the weird restrictions
12720         that Posix has about { }.  Use better quoting.
12721         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE, _AC_OUTPUT_HEADER):
12722         Rewrite to conform to Posix rules about { } in sed scripts.
12723         * lib/m4sugar/m4sh.m4 (AS_DIRNAME_SED, AS_BASENAME_SED): Likewise.
12724         * tests/foreign.at (Libtool): Likewise.
12725         * tests/semantics.at (AC_CHECK_PROG & AC_CHECK_PROGS):
12726         Use our own style advice re 's,a,b,' versus 's|a|b|'.
12728 2006-01-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12730         * lib/autoconf/status.m4: Fix typo.
12732         * lib/autoconf/fortran.m4 (_AC_FC_LIBRARY_LDFLAGS): Ignore
12733         singly- or doubly-quoted arguments to `-cmdline', `-ignore',
12734         `-def', for the benefit of Portland `pgf90 -Mipa'.
12735         Reported by Christopher Hulbert <cchgroupmail@gmail.com>.
12737 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
12739         * doc/autoconf.texi: Update copyright (and other) dates to 2006.
12740         * doc/autoconf.texi (Shellology): Mac OS X 10.2 changed the default
12741         shell from zsh to bash.
12743 2005-12-31  Stepan Kasal  <kasal@ucw.cz>
12745         * lib/autoconf/programs.m4 (_AC_PROG_GREP): Use $PATH_SEPARATOR;
12746           ":" caused problems on OS/2-EMX.  Suggested by Andrew Belov.
12748 2005-12-29  Paul Eggert  <eggert@cs.ucla.edu>
12750         * doc/autoconf.texi (Shell Substitutions): Warn about unbalanced
12751         parentheses in $(...).  Problem reported by Eric Blake.
12753 2005-12-12  Paul Eggert  <eggert@cs.ucla.edu>
12755         * doc/autoconf.texi (Limitations of Usual Tools):
12756         Mention which characters can be escaped with \ in portable regular
12757         expressions used in grep, sed, expr.  Mention the leading ^ problem
12758         with expr.  Clean up some confusing wording.  Mention which
12759         grep options are portable.
12761 2005-12-09  Stepan Kasal  <kasal@ucw.cz>
12763         * tests/local.at (AT_CHECK_AUTOM4TE): Fix typo in the comment.
12765 2005-12-02  Paul Eggert  <eggert@cs.ucla.edu>
12767         * doc/autoconf.texi (Limitations of Builtins): Fix typos in previous
12768         patch, noted by Ralf Wildenhues.
12770 2005-12-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12772         * lib/m4sugar/m4sh.m4 (_AS_BOURNE_COMPATIBLE): Try `set -o
12773         posix' unconditionally, for pdksh in `native sh' emulation.
12775 2005-12-01  Paul Eggert  <eggert@cs.ucla.edu>
12777         * doc/autoconf.texi (Shellology): Document eval $? problem
12778         with ash.
12779         (Limitations of Builtins): Likewise.
12781 2005-11-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12783         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Pass
12784         CONFIG_SHELL in the environment of the configure rerun.
12785         * doc/autoconf.texi (Here-Documents, config.status Invocation):
12786         Suggest passing CONFIG_SHELL absolute, and in the environment
12787         rather than as option.
12789 2005-11-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12791         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE):
12792         Fix quoting of output line (triggered for many AC_SUBST_FILEs).
12793         Fix macro quoting.  Fix output for n * 98 substituted variables.
12795 2005-11-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12797         * lib/autoconf/status.m4 (_AC_OUTPUT_MAIN_LOOP): Initialize
12798         `tmp' to avoid file removal race.
12800 2005-11-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12802         * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS): Initialize
12803         ac_clean_files and LIBOBJS.
12805 2005-11-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12807         * lib/autoconf/programs.m4 (AC_CHECK_PROG, AC_PATH_PROG):
12808         Factor functionality to..
12809         (_AC_CHECK_PROG, _AC_PATH_PROG): these new macros, but only
12810         `AC_SUBST($1)' in the public version.
12811         (AC_CHECK_TOOL, AC_PATH_TOOL, AC_PATH_TARGET_TOOL)
12812         (AC_CHECK_TARGET_TOOL): Use internal versions for ac_ct_* and
12813         ac_pt_* variables.
12815 2005-11-01  Stepan Kasal  <kasal@ucw.cz>
12817         * lib/autoconf/c.m4 (AC_PROG_CC_C_O): Remove the comment about 8+3
12818         filesystems.
12820 2005-11-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12822         * NEWS: Move AH_HEADER mention to right place.
12824 2005-10-27  Stepan Kasal  <kasal@ucw.cz>
12826         * lib/autoconf/c.m4 (AC_PROG_CC_C_O): "conftst2" -> "conftest2"
12827         * lib/autoconf/fortran.m4 (_AC_PROG_FC_C_O): Likewise.
12829 2005-10-25  Stepan Kasal  <kasal@ucw.cz>
12831         * lib/autoconf/c.m4 (AC_PROG_CC_C_O): rm -f conftst2.*, not only
12832         conftst2.$ac_objext.
12833         * lib/autoconf/fortran.m4 (_AC_PROG_FC_C_O): Likewise.
12835 2005-10-24  Stepan Kasal  <kasal@ucw.cz>
12837         * lib/autoconf/c.m4 (AC_PROG_CC_C_O): Use conftst2.o instead of
12838         conftest.o, to see whether the compiler really obeys; rm the object
12839         file before and after the test and register it with ac_clean_files.
12840         * lib/autoconf/fortran.m4 (_AC_PROG_FC_C_O): Likewise.
12842 2005-10-21  Stepan Kasal  <kasal@ucw.cz>
12844         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE): When determining,
12845         the delimiter CEOF$ac_eof: fix quoting of CEOF[0-9]* and modify the
12846         code so that the most common case requires less forks.
12848 2005-10-20  Stepan Kasal  <kasal@ucw.cz>
12850         * doc/autoconf.texi (Shell Substitutions}: Document that ${10} is
12851         not portable; thanks to Paul Eggert and Alexandre.
12853         * NEWS: Fix an old typo.
12855 2005-10-20  Jim Meyering  <jim@meyering.net>
12857         * doc/autoconf.texi: Typo: s/feature/features/ in ``the features of
12858         the latter'', in two places.
12860 2005-10-19  Paul Eggert  <eggert@cs.ucla.edu>
12862         * doc/autoconf.texi (Generating Sources): AC_LANG_PROGRAMS ->
12863         AC_LANG_PROGRAM, fixing a typo.  Don't give details about
12864         the inner workings of AC_LANG_FUNC_LINK_TRY.
12865         * lib/autoconf/c.m4 (AC_LANG_CALL(C)): Reformat to match
12866         AC_LANG_FUNC_LINK_TRY.  This involves returning the value returned
12867         by the function rather than ignoring it.
12868         (AC_LANG_FUNC_LINK_TRY(C)): Call the function rather than simply
12869         comparing its address.  Intel's interprocedural optimization was
12870         outsmarting the old heuristic.  Problem reported by
12871         Mikulas Patocka.
12873 2005-10-19  Stepan Kasal  <kasal@ucw.cz>
12875         * lib/autoconf/general.m4 (AC_SUBST): Remove an obsolete comment.
12877 2005-10-05  Paul Eggert  <eggert@cs.ucla.edu>
12879         * lib/m4sugar/m4sugar.m4 (_m4_map): New macro.
12880         (m4_map, m4_map_sep): Use it.  Handle the empty list correctly.
12882 2005-10-04  Stepan Kasal  <kasal@ucw.cz>
12884         * lib/autotest/general.m4 (AT_INIT): Really make the subtree writable
12885         before removing it (chmod -R u+rwx); there are three instances of this.
12887 2005-10-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
12888             Stepan Kasal  <kasal@ucw.cz>
12890         * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): Balance parentheses.
12891         * lib/autotest/general.m4 (AT_INIT): If the test dir already exists,
12892         make its content writable before removing it.  Remove an errorneous
12893         comment from the end, where the logs of the failed tests are copied
12894         to the main log file.
12896 2005-09-27  Stepan Kasal  <kasal@ucw.cz>
12898         * tests/semantics.at (AC_C_BIGENDIAN): Pass --force to autoheader,
12899           in case the computer is too quick.  Double quote the configure.ac
12900           snippets.
12902         * tests/local.at (AT_CHECK_AUTOCONF): Always pass --force to prevent
12903           problems if the testsuite were running too fast.
12905 2005-09-18  Paul Eggert  <eggert@cs.ucla.edu>
12907         * lib/autoconf/libs.m4 (_AC_PATH_X_DIRECT): Look for X11/Xlib.h
12908         and XrmInitialize rather than X11/Intrinsic.h and XtMalloc
12909         (which belong to Xt, not X itself).  See Debian bug 327655.
12910         * NEWS: Mention this.
12912 2005-09-07  Stepan Kasal  <kasal@ucw.cz>
12914         * lib/autoconf/c.m4 (AC_LANG_SOURCE(C)): Remove an incorrect comment.
12916 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
12918         * config/move-if-change: Don't output "$2 is unchanged";
12919         suggested by Ben Elliston.  Handle weird characters correctly.
12921 2005-09-06  Stepan Kasal  <kasal@ucw.cz>
12923         * lib/autoconf/libs.m4 (AC_SEARCH_LIBS): Merge the two AC_LINK_IFELSE
12924           calls, so that the final expansion of this macro is shorter.
12925           Create the conftest.$ac_ext outside the `for' loop, to speed the run.
12926           Do not use `break' in the argument to AC_LINK_IFELSE, it would skip
12927           the cleanup there.  Use AS_VAR_* macros, to be more general.
12928         * tests/semantics.at (AC_SEARCH_LIBS): Check for the cleanup.
12930         * lib/autoconf/general.m4: Use AS_IF where appropriate.
12932         * lib/m4sugar/m4sh.m4 (AS_IF): Use m4_default.
12934 2005-09-01  Stepan Kasal  <kasal@ucw.cz>
12936         * doc/autoconf.texi (Configuration Headers): Add an index entry
12937           for AH_HEADER.
12939 2005-08-26  Pavel Roskin  <proski@gnu.org>
12941         * lib/autoconf/libs.m4 (_AC_PATH_X_XMKMF): Use shell variable
12942         XMKMF to locate xmkmf.  Make XMKMF precious.  Export CC when
12943         running xmkmf.
12945 2005-08-26  Paul Eggert  <eggert@cs.ucla.edu>
12947         * lib/m4sugar/m4sh.m4 (_AS_VERSION_COMPARE_PREPARE):
12948         The previous patch didn't work, so try a better one.
12950 2005-08-26  Stepan Kasal  <kasal@ucw.cz>
12952         * doc/autoconf.texi (Programming in M4sh) <AS_TR_CPP>: Fix m4 quoting
12953         in the example.  Reported by Bruno Haible.
12954         <AS_TR_SH>: Likewise.  Also modify the example to be more convincing:
12955         "if $undefined_var;" succeeds with my shell.
12957         * lib/autoconf/general.m4 (AC_CANONICAL_BUILD, AC_CANONICAL_HOST,
12958         AC_CANONICAL_TARGET): Define by AC_DEFUN, no need to use AC_DEFUN_ONCE;
12959         but change the m4_divert_text to m4_divert_once.
12961 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
12963         * lib/m4sugar/m4sh.m4 (_AS_VERSION_COMPARE_PREPARE):
12964         Work around bug in Solaris /usr/xpg4/bin/awk.
12965         The bug is present in at least Solaris 8 through 10.
12967 2005-08-24  Stepan Kasal  <kasal@ucw.cz>
12969         * lib/autoconf/general.m4 (_AC_CANONICAL_SPLIT): Simplify; rejecting
12970         some evil values and relying on the fact that $* concatenates the
12971         parameters by the first character from IFS.
12973 2005-08-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>,
12974             Stepan Kasal  <kasal@ucw.cz>
12976         * lib/autoconf/status.m4 (_AC_CONFIG_REGISTER_DEST): When the
12977         first header appears, define AH_HEADER.
12978         * doc/autoconf.texi (Configuration Headers): Document AH_HEADER.
12979         Update limitations about when to call AC_CONFIG_HEADERS.
12980         (Configuration Commands): Document that AC_CONFIG_COMMANDS_PRE
12981         parameter can call AC_SUBST, AC_DEFINE, or AC_CONFIG_FOOS; explain
12982         that AC_CONFIG_COMMANDS_PRE and AC_CONFIG_COMMANDS_POST are not
12983         ``Configuration Actions''; fix their index entries.
12985         * lib/autotest/general.m4 (AT_INIT): Process multiple keywords
12986         options correctly.  Process N-M as M-N if M is smaller than N.
12987         Process ranges correctly so that N-N will run only N.
12988         Sort and uniquify the tests that will be run.  If there is more
12989         than one test, reinsert the banners for the tests.
12990         * tests/autotest.at (Keywords): Unmark XFAIL.
12992 2005-08-23  Stepan Kasal  <kasal@ucw.cz>
12994         * lib/autoconf/general.m4 (_AC_DEFINE_Q): Strip the parameter list
12995           before passing the macro name to AH_TEMPLATE.
12997         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): config.status
12998           now opens log after option processing; in particular, --version
12999           and --help do not touch config.log.
13001         * Makefile.maint: Revert the change from 2005-08-12.
13003 2005-08-22  Stepan Kasal  <kasal@ucw.cz>
13005         * lib/autoconf/general.m4 (AC_ARG_ENABLE, AC_ARG_WITH): Factor out
13006           common code to...
13007         (_AC_ENABLE_IF, _AC_ENABLE_IF_ACTION): ... these new macros.
13009 2005-08-21  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
13011         * doc/autoconf.texi (Using Autotest, testsuite Scripts)
13012         (Autotest Logs, Writing testsuite.at, testsuite Invocation):
13013         Language cleanup.
13015         * doc/autoconf.texi (Defining Symbols, Changed Results):
13016         Prepend to LIBS, not append, in examples.
13018 2005-08-16  Stepan Kasal  <kasal@ucw.cz>
13020         When building in place, set srcdir="."; suggested by Tim Van Holder.
13022         * lib/autoconf/general.m4 (_AC_INIT_SRCDIR): Do this; to recognize
13023           build in place, we need ac_pwd, and thus have to AC_REQUIRE ...
13024         (_AC_INIT_DIRCHECK): ... this macro and AC_DEFUN both of them.
13025         * lib/autoconf/status.m4 (_AC_SRCDIRS): Fix a comment: srcdir="."
13026           does not mean "no --srcdir option".
13028 2005-08-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
13030         * tests/autoscan.at (autoscan): New file.
13031         * tests/suite.at: Use it.
13032         * tests/Makefile.am (TESTSUITE_HAND_AT): Add it.
13033         Reported against Libtool by Gideon Go <gideon.go@gmail.com>.
13035         * tests/autotest.at (Keywords): Test keywords combinations.
13037 2005-08-12  Stepan Kasal  <kasal@ucw.cz>
13039         * Makefile.maint (GZIP_ENV): When checking the help text of gzip,
13040           add "2>&1"; gzip 1.2.4 prints help on stderr.
13042 2005-07-27  Stepan Kasal  <kasal@ucw.cz>
13044         * lib/autotest/general.m4 (_AT_DECIDE_TRACEABLE): The symbol at_reason
13045         was pushdef'ed twice while popped only once.  Push it only once.
13046         (_AT_CHECK): Cosmetic changes to the "case $at_status" command.
13048 2005-07-26  Stepan Kasal  <kasal@ucw.cz>
13050         * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): The message is now
13051         prefixed by mere "===", not "configure: === ".
13053 2005-07-25  Paul Eggert  <eggert@cs.ucla.edu>
13055         * Makefile.maint: Update from Bison.
13057         * lib/m4sugar/m4sugar.m4 (m4_strip): Comment fix---change tab to
13058         "<tab>" in comment, so that the point is understandable.
13060 2005-07-25  Stepan Kasal  <kasal@ucw.cz>
13062         Rewrite substantial part of lib/autoconf/status.m4.
13063         The main change is that CONFIG_FILES, CONFIG_HEADERS, CONFIG_LINKS,
13064         and CONFIG_COMMANDS are not processed in four separate loops.
13065         Instead, there is one main loop.  This alows that the common code
13066         is expanded only once, thus config.status (and configure) is smaller.
13068         The registration mechnism in AC_CONFIG_FILES and cousins also changed;
13069         the AC_LIST_FILES and cousins macros are no longer used.
13071         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES, _AC_OUTPUT_HEADERS,
13072         _AC_OUTPUT_LINKS, _AC_OUTPUT_COMMANDS): Renamed to ...
13073         (_AC_OUTPUT_FILE, _AC_OUTPUT_HEADER, _AC_OUTPUT_LINK,
13074         _AC_OUTPUT_COMMAND): ..., respectively.  These macros no longer
13075         contain the initialization, nor the for loop, nor the associated
13076         commands; all these go to ...
13077         (_AC_OUTPUT_MAIN_LOOP): ... this new macro, called from
13078         _AC_OUTPUT_CONFIG_STATUS.
13079         (_AC_CONFIG_SPLIT, _AC_CONFIG_SPLIT_SOURCE_DEST, _AC_CONFIG_SPLIT_FILE_IN):
13080         Nuked; the code was merged into _AC_OUTPUT_MAIN_LOOP.
13081         (_AC_OUTPUT_FILE): The creation of the sed script ...
13082         (AC_OUTPUT): ... and the setup of ac_vpsub goes to ...
13083         (_AC_OUTPUT_FILES_PREPARE): ... a new macro, also called from
13084         _AC_OUTPUT_MAIN_LOOP.
13085         (_AC_CONFIG_FILES, _AC_CONFIG_HEADERS, _AC_CONFIG_LINKS,
13086         _AC_CONFIG_COMMANDS): Use ...
13087         (_AC_CONFIG_FOOS): ... this new macro, which uses these ...
13088         (_AC_CONFIG_REGISTER, _AC_CONFIG_REGISTER_DEST): ... new macros.
13089         (_AC_CONFIG_FILE, _AC_CONFIG_HEADER, _AC_CONFIG_LINK,
13090         _AC_CONFIG_COMMAND, _AC_CONFIG_DEPENDENCIES): No longer needed.
13091         (_AC_CONFIG_DEPENDENCY): Update, it uses these ...
13092         (_AC_CONFIG_DEPENDENCY_DEFAULT, _AC_FILE_DEPENDENCY_TRACE_COLON):
13093         ... new macros.
13094         (_AC_CONFIG_UNIQUE): Update.
13095         (AC_LIST_FILES, AC_LIST_HEADERS, AC_LIST_LINKS, AC_LIST_COMMANDS):
13096         Replaced by this ...
13097         (_AC_LIST_TAGS): ... new common macro.
13098         (AC_LIST_FILE_COMMANDS, AC_LIST_HEADER_COMMANDS, AC_LIST_LINK_COMMANDS,
13099         AC_LIST_COMMAND_COMMANDS): Replaced by this ...
13100         (_AC_LIST_TAG_COMMANDS): ... new common macro.
13101         (_AC_CONFIG_COMMANDS_INIT): Moved top to the `registration' section;
13102         this didn't belong to the `config commands' section.
13103         (_AC_OUTPUT_COMMANDS_INIT): Don't initialize, m4_ifdef is our friend.
13104         (AC_CONFIG_COMMANDS_PRE, AC_OUTPUT_COMMANDS_PRE,
13105         AC_CONFIG_COMMANDS_POST): Moved to a new section, these didn't belong
13106         to the `config commands' section either.
13107         (AC_CONFIG_SUBDIRS): Don't touch diversion DEFAULTS.
13108         (_AC_LIST_SUBDIRS): Don't initialize, m4_ifdef is our friend.
13110         ... and many changes to the comments nearby.
13112         * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS): At the end of the day,
13113         set ac_subdirs_all='_AC_LIST_SUBDIRS'.
13114         * tests/torture.at (AC_CONFIG_FILES, HEADERS, LINKS and COMMANDS):
13115         AC_CONFIG_COMMANDS(command:input,...) is no longer allowed.
13116         (#define header templates): The comment at the top of the generated
13117         header now includes the name(s) of the source file(s).
13119         Several unrelated small changes:
13121         * lib/autoconf/general.m4 (AC_CACHE_VAL): Be didactic, quote the first
13122         parameter to AC_DIAGNOSE.
13123         * lib/autoconf/status.m4 (AC_CONFIG_SUBDIRS): Likewise.
13124         (_AC_LINK_FILES_CNT): Don't AU_DEFUN this; it causes confusing messages
13125         with autoupdate; use m4_define_default inside AU_DEFUNed AC_LINK_FILES.
13126         (AC_OUTPUT): In the compatibility code, use m4_ifvaln, to be consistent
13127         with AU::AC_OUTPUT.
13128         (AU::AC_OUTPUT): Don't double-quote $2 and $3, the compatibility code
13129         in AC_OUTPUT doesn't double-quote it either.
13130         * tests/tools.at (autoupdate): AU::AC_OUTPUT no longer double-quotes the
13131         parameters.
13133 2005-07-10  Stepan Kasal  <kasal@ucw.cz>
13135         * lib/autoconf/fortran.m4 (_AC_PROG_FC_V_OUTPUT): Document which
13136         versions of Portland Group compiler produce single- and double-quoted
13137         -cmdline argument.  Reported by Steven G. Johnson <stevenj@fftw.org>
13138         and Ole Holm Nielsen <Ole.H.Nielsen@fysik.dtu.dk>.
13140 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
13142         * tests/local.at (AT_CONFIG_CMP): Ignore lines like "LIBS=''" too.
13143         This is a corrected version of yesterday's patch.
13145 2005-07-07  Stepan Kasal  <kasal@ucw.cz>
13147         * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): Report the full
13148         path, too; insert a "===" to emphasize the line.
13150         * lib/autoconf/general.m4 (AC_CANONICAL_BUILD): Rename
13151           ac_cv_build_alias to ac_build_alias.
13152         (AC_CANONICAL_HOST, AC_CANONICAL_TARGET): Simplify.
13154         On 2005-02-24, an unintentional AC_SUBST([CC]) was introduced; this
13155         change eliminates it.  Problem reported by Alexandre Duret-Lutz.
13156         * lib/autoconf/general.m4 (_AC_ARG_VAR_PRECIOUS): Move the AC_SUBST ...
13157         (AC_ARG_VAR): ... here.
13158         (_AC_INIT_PREPARE): Call AC_SUBST for build_alias, host_alias and
13159           target_alias.
13161         Keep a list of all precious variables and process them with one simple
13162         for loop, instead of expanding all commands, or, OTOH, complicated
13163         processing of output of "set".
13164         * lib/autoconf/general.m4 (_AC_ARG_VAR_PRECIOUS): Acumulate the
13165         variable names in new macro...
13166         (_AC_PRECIOUS_VARS): ... which will be assigned to ac_precious_vars.
13167         (_AC_ARG_VAR_STORE): New macro which writes to diversion PARSE_ARGS
13168           a loop to assign all ac_env_* and ac_cv_env_* variables.
13169         (_AC_ARG_VAR_VALIDATE): Use shell variable ac_precious_vars, divert
13170           to INIT_PREPARE.
13171         (_AC_INIT_DEFAULTS): At the end, if _AC_PRECIOUS_VARS is set, assign
13172           its value to shell variable ac_precious_vars and call
13173           _AC_ARG_VAR_STORE and _AC_ARG_VAR_VALIDATE.
13174         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Don't call
13175           _AC_ARG_VAR_VALIDATE.
13177         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Move AC_LANG_PUSH(C)
13178           and the AC_SUBSTs ...
13179         (AC_INIT): ... here.
13181         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Changed the title of
13182           the ac_subst_files section in config.log.
13184         * tests/local.at (AT_CONFIG_CMP): Revert Paul's previous change.
13186 2005-07-06  Paul Eggert  <eggert@cs.ucla.edu>
13188         * NEWS: New macro AC_C_TYPEOF.
13189         * doc/autoconf.texi (C Compiler): Document AC_C_TYPEOF.
13190         * lib/autoconf/c.m4 (AC_C_TYPEOF): New macro.
13191         * tests/c.at (C keywords): Test AC_C_TYPEOF.
13193         Fix problems reported by Nicolas Joly.
13194         * tests/base.at (Input/Output): Ignore 'loading site script' chatter.
13195         * tests/local.at (AT_CONFIG_CMP): Ignore lines like "LIBS=''" too.
13196         They are generated by the Tru64 v5.1B shell.
13198 2005-07-05  Stepan Kasal  <kasal@ucw.cz>
13200         Fix my changes from 2005-07-01; reported by Noah Misch.
13201         * lib/autoconf/status.m4 (_AC_CONFIG_DEPENDENCIES): Fix the
13202         description, the macro now accepts only a single tag.
13203         (_AC_CONFIG_UNIQUE): Likewise; s/AC_File/[$1]/
13205         Fix cases when the varsions of Autoconf and Autotest don't match.
13206         Reported by Noah Misch.
13207         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): Set also
13208         at_top_builddir, for compatibility with older autotest.
13209         * lib/autotest/general.m4 (AT_INIT): If at_top_build_prefix
13210         is not set, use at_top_builddir, for compatibility with older
13211         versions of autoconf.
13213 2005-07-04  Paul Eggert  <eggert@cs.ucla.edu>
13215         * bin/autom4te.in ($m4): Catch usages like --nesting-limit=2048.
13216         Problem reported by Patrick Welche.
13218 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
13220         * lib/autoconf/general.m4 (AC_ARG_PROGRAM): Use &, not |, in
13221         sed substitution command, so that we allow | in program prefixes
13222         and program suffixes.  (& is a problem anyway; we're not fixing
13223         that here.)
13224         * lib/autoconf/status.m4 (AC_CONFIG_FILES): Likewise, for
13225         configure_input, top_builddir, srcdir, etc.
13226         * lib/autotest/general.m4 (AT_INIT): Likewise, for
13227         PATH_SEPARATOR in AUTOTEST_PATH.
13229 2005-07-02  Alexandre Duret-Lutz  <adl@gnu.org>
13231         * lib/autoconf/general.m4 (AC_SITE_LOAD): Rewrite the
13232         for loop over config.site files using `set', to allow
13233         directory names containing IFS characters.
13235 2005-07-01  Paul Eggert  <eggert@cs.ucla.edu>
13237         * lib/autoconf/general.m4 (_AC_INIT_DIRCHECK): Remove the tests for
13238         directories with weird names.  Apparently some people like living
13239         on the edge.  However, improve the test that "pwd" actually does
13240         report a name for the working directory.
13241         * NEWS: Remove the claim that we test for funny chars in dir names.
13243 2005-07-01  Stepan Kasal  <kasal@ucw.cz>
13245         * lib/autoconf/general.m4 (AC_FOREACH): Make obsolete; it's
13246         replaced ...
13247         * lib/m4sugar/m4sugar.m4 (m4_foreach_w): ... by this new macro.
13248         * lib/autoconf/status.m4 (_AC_CONFIG_DEPENDENCIES, _AC_CONFIG_UNIQUE):
13249         Now accept a single tag, not whitespace separated list.
13250         (AC_CONFIG_SUBDIRS): Call _AC_CONFIG_UNIQUE in a m4_foreach_w loop.
13252 2005-06-30  Stepan Kasal  <kasal@ucw.cz>
13254         * doc/autoconf.texi (Configuration Headers): Change the explanation
13255         about #include <config.h>.
13256         (Generic Functions): Mention the Gnulib project.
13257         (Limitations of Usual Tools) <sed>: Another minor rephrasing.
13259         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Use a here
13260         document to output the default config_* lists to config.status.
13261         Don't recognize option --file, if the functionality is not there.
13262         Likewise for --header; moreover, recognize --he and --h as shortcuts
13263         for --help in that case.
13265         * lib/autoconf/status.m4: Fix the order of the "sections", so that it
13266         matches the order of execution.  No code changed.
13268 2005-06-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
13270         * lib/autoconf/fortran.m4 (_AC_PROG_FC_V_OUTPUT): Fix also for
13271         single-quoted -cmdline argument in Portland Group compiler.
13272         Reported against LAM by Ole Holm Nielsen <Ole.H.Nielsen@fysik.dtu.dk>.
13274 2005-06-30  Alexandre Duret-Lutz  <adl@gnu.org>
13276         * lib/autom4te.in (Automake-preselections): Preselect AC_SUBST_TRACE.
13278 2005-06-29  Stepan Kasal  <kasal@ucw.cz>
13280         * doc/autoconf.texi (File Descriptors): ksh doesn't pass open file
13281         descriptors to child processes; reported by Norman Gray.
13283 2005-06-29  Stepan Kasal  <kasal@ucw.cz>
13285         * lib/autoconf/general.m4 (AC_ARG_VAR): Move next to _AC_ARG_PRECIOUS.
13287         * lib/autoconf/general.m4 (AC_SUBST_TRACE): New macro, to be traced
13288         instead of AC_SUBST; proposed by Alexandre Duret-Lutz.
13289         (AC_SUBST): Call it.
13290         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES): Call AC_SUBST_TRACE for
13291         the directory specific variables; but don't call it for configure_input.
13293 2005-06-28  Derek Price  <derek@ximbiot.com>
13295         * doc/autoconf.texi (Limitations of Usual Tools) <sed>: Reword recent
13296         addition.
13298 2005-06-23  Paul Eggert  <eggert@cs.ucla.edu>
13300         * NEWS: Don't worry about spaces in bindir etc.  Only srcdir and working
13301         directory have inherent problems with special characters like spaces,
13302         due to limitations in Make syntax.  Problem reported by Alexandre
13303         Duret-Lutz.
13304         * lib/autoconf/general.m4 (_AC_INIT_DIRCHECK): Implement the above.
13305         Also, fix Tru64 porting problem with shell patterns,
13306         reported by Ralf Wildenhues.
13308 2005-06-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
13310         * doc/autoconf.texi (Subdirectories): Fix markup typos.
13312 2005-06-23  Paul Eggert  <eggert@cs.ucla.edu>
13314         * tests/local.at (AT_CHECK_ENV): Simplify regexp slightly.
13316         Fix some more shell quoting problems.  Prompted by a bug report
13317         from Justace Clutter.
13318         * lib/autoconf/general.m4 (_AC_INIT_DIRCHECK): Put name of invalid
13319         variable into diagnostic.  Make the diagnostic an error, not a warning,
13320         because we really don't support spaces and suchlike in dir names.
13321         (_AC_INIT_SRCDIR): Allow special characters in $ac_unique_file.
13322         Don't worry about backslashes in srcdir; it can't happen now.
13323         (_AC_INIT_PARSE_ARGS): Allow weird characters in ac_optarg.
13324         Simplify ac_optarg handling.
13325         (_AC_ARG_VAR_VALIDATE): Remove unnecessary and inconsistent quotes.
13327 2005-06-22  Stepan Kasal  <kasal@ucw.cz>
13329         Fix AT_CONFIG_CMP for Solaris hosts; idea from Ralf Menzel.
13330         * configure.ac: Call AC_PROG_EGREP and AC_PROG_SED.
13331         * tests/atlocal.in: Propagate $EGREP and $SED.
13332         * tests/local.at (AT_CHECK_ENV): Use $EGREP, not $GREP -E.
13333         (AT_CONFIG_CMP): Use sed instead of grep plumbing.
13335         * doc/autoconf.texi (Limitations of Usual Tools) <grep>: Mention
13336         that '\|' is not allowed in BREs; recommend using newline separated
13337         list of patterns instead of multiple -e options.
13339         * lib/autoconf/fortran.m4 (_AC_PROG_FC_V_OUTPUT): Remove an old comment.
13341         * lib/autoconf/general.m4 (_AC_CANONICAL_SPLIT): Use AC_SUBST/2.
13343 2005-06-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
13345         * lib/autoconf/general.m4 (_AC_CANONICAL_SPLIT): Fix typo.
13347 2005-06-21  Stepan Kasal  <kasal@ucw.cz>
13349         * doc/autoconf.texi (Limitations of Usual Tools) <sed>: Document that
13350         b, t, r, w commands require single space, while : cannot have any.
13351         (Special Shell Variables): Fix sed code this in the example.
13352         * lib/autoconf/status.m4 (_AC_OUTPUT_HEADERS): Likewise; and fix a typo.
13353         * lib/autotest/general.m4 (AT_ARG_OPTION): Fix typo in the description.
13355         * lib/m4sugar/m4sugar.m4 (m4_split): If the parameter is empty,
13356         expand to the empty list.  Don't use two pairs of m4_changequote,
13357         it's not necessary.
13359 2005-06-20  Derek Price  <derek@ximbiot.com>
13361         * lib/m4/programs.m4 (AC_PROG_YACC): Declare YACC & YFLAGS precious.
13363 2005-06-17  Paul Eggert  <eggert@cs.ucla.edu>
13365         * lib/m4sugar/m4sh.m4 (as_awk_strverscmp): Port to Solaris /bin/awk.
13366         * doc/autoconf.texi:
13367         Don't mention Solaris versions so much, if a
13368         problem is common to all extant versions of Solaris.  Say "SunOS
13369         4" instead of "SunOS" for SunOS 4.
13370         (awk): Mention more of the limitations of traditional Awk.
13371         (cat): Don't talk about cat -v.
13373 2005-06-16  Paul Eggert  <eggert@cs.ucla.edu>
13375         * lib/m4sugar/m4sh.m4 (_AS_VERSION_COMPARE_PREPARE): New macro.
13376         (AS_VERSION_COMPARE): New macro.  The API is taken from CVS,
13377         but the implementation is entirely different and is designed
13378         to be compatible with glibc strverscmp.
13379         * tests/m4sh.at (AS_VERSION_COMPARE): New test.
13381         * doc/autoconf.texi (Limitations of Usual Tools): Mention expr bug
13382         on Mac OS X 10.4 reported by Peter O'Gorman in:
13383         http://lists.gnu.org/archive/html/autoconf-patches/2005-06/msg00041.html
13384         * lib/autoconf/general.m4 (_AC_CANONICAL_SPLIT):
13385         Use shell builtins rather than 'expr', to work around expr bug.
13387 2005-06-10  Paul Eggert  <eggert@cs.ucla.edu>
13389         * doc/autoconf.texi: "filesystem" -> "file system".
13390         "behaviour" -> "behavior".
13391         Warn about \(...\)* in Solaris sed (written by Ralf Menzel).
13392         * lib/autoconf/general.m4: Omit blank after ":" sed command,
13393         as per POSIX.
13394         * lib/m4sugar/m4sh.m4: Likewise.
13395         * lib/autoconf/status.m4 (_AC_OUTPUT_HEADERS): Work around problem
13396         with Solaris sed.  Fix by Ralf Menzel and Stepan Kasal.
13398         * man/Makefile.am (MOSTLYCLEANFILES): Add $(srcdir)/*.t.
13399         (.x.1): Ignore the time stamp in the .TH line when deciding whether
13400         to update the man page.  That way, we don't have to check in new
13401         man pages every month.
13403         * lib/m4sugar/m4sh.m4 (AS_VAR_TEST_SET): Work even if $1 contains
13404         quotes and backslashes.  Patch from Derek Price.
13406 2005-06-10  Derek Price  <derek@ximbiot.com>
13408         * doc/autoconf.texi (Programming in M4sh): Document AS_TR_CPP &
13409         AS_TR_SH.
13411 2005-06-08  Paul Eggert  <eggert@cs.ucla.edu>
13413         * lib/autotest/general.m4 (AT_INIT): Don't accept Solaris 9's diff
13414         -u, since it outputs chatter if the input files are the same.
13415         Problem reported by Ralf Menzel.
13417 2005-06-08  Derek Price  <derek@ximbiot.com>
13419         * lib/m4sugar/m4sugar.m4: Undefine include & sinclude rather than
13420         renaming them since they are about to be redefined anyhow.
13422 2005-06-08  Derek Price  <derek@ximbiot.com>
13424         * doc/autoconf.texi (Redefined M4 Macros): Add index entries for most
13425         redefined M4 macros to this node.  Document m4_include & m4_sinclude.
13426         Move m4_undefine to alphabetical order.
13428 2005-06-07  Paul Eggert  <eggert@cs.ucla.edu>
13430         * README: Recommend GNU M4 1.4.3 or later.
13431         * doc/autoconf.texi (Introduction): Likewise.
13432         Reword to avoid some formatting glitches.
13433         Use "#!/bin/sh", not "#! /bin/sh"; the space isn't needed these days.
13434         Clarify explanation of HP compiler bug.
13435         Redo example output tp match current CVS snapshot.
13436         Use @example.org in email addresses when the examples
13437         might get inadvertently cut-and-pasted into user code.
13438         Remove example of autom4te usage that doesn't seem to work now.
13439         Use modern AC_INIT (except when the example is meant to be
13440         shown with Autoconf 2.13).
13441         Update ksh info for Solaris 9 and later.
13442         KB -> kB.
13443         Modernize description of Automake versions a bit.
13444         Don't claim a future version of Autoconf is near.
13445         * doc/install.texi: Reword to avoid some formatting glitches.
13447 2005-06-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
13449         * doc/autoconf.texi: Add [] to examples, so that the manual
13450         follows its own advice about quoting better.
13451         Reword to avoid some formatting glitches.
13452         * doc/installt.exi: Reword to avoid some formatting glitches.
13454         * doc/autoconf.texi (Limitations of Builtins) <case>: Mention
13455         Tru64 ksh pattern matching bug.  Reported against Libtool by
13456         Albert Chin <libtool@mlists.thewrittenword.com> and
13457         Nicolas Joly <njoly@pasteur.fr>.
13459 2005-06-06  Stepan Kasal  <kasal@ucw.cz>
13461         m4_cdr of one-member list was [[]] (one-member list containing an
13462         empty string) instead of [] (an empty list.  Callers were skewed to
13463         match this misbehaviour.  As a consequence of this:
13464          - m4_foreach([x], [], [foo]) expanded to `foo', while
13465          - the expansion of m4_foreach([x], [[]], [foo]) was empty.
13466         This bug has been fixed:
13468         * lib/m4sugar/m4sugar.m4 (m4_cdr): If only one argument is given,
13469           expand to an empty string; print error msg if called without
13470           an argument list.
13471         (m4_foreach, m4_map, m4_map_sep): Don't expect the previous
13472           misbehaviour; handle [] and [[]] correctly.
13474 2005-06-06  Stepan Kasal  <kasal@ucw.cz>
13476         * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS): Nuke ac_max_here_lines.
13477         * lib/autoconf/status.m4 (_AC_OUTPUT_HEADERS): Simplify the sed
13478           scripts created and the loop applying them, use _AC_SED_CMD_LIMIT.
13480 2005-06-06  Ralf Menzel <menzel@ls6.cs.uni-dortmund.de>  (trivial change)
13482         * doc/autoconf.texi (Limitations of Usual Tools): Solaris' awk cannot
13483           swallow records with more than 99 fields.
13484         * lib/autotest/general.m4 (AT_INIT): Use the awk builtin `split' to
13485           parse the long line.
13487 2005-06-04  Stepan Kasal  <kasal@ucw.cz>
13489         * doc/autoconf.texi (Limitations of Usual Tools): AIX awk cannot
13490           swallow literals longer than 399.  Reported by Ralf Wildenhues.
13491         * lib/autotest/general.m4 (AT_INIT): Pass $at_groups though stdin,
13492           to workaround this limitation.
13494 2005-06-03  Steven G. Johnson  <stevenj@alum.mit.edu>
13496         * lib/autoconf/fortran.m4 (_AC_PROG_FC): Find g95 in addition
13497         to gfortran, and make these the first two compiler names
13498         checked (following the general autoconf preference for gcc).
13500 2005-06-03  Stepan Kasal  <kasal@ucw.cz>
13502         * tests/Makefile.am (check_SCRIPTS): Set to $(wrappers).
13503         (DISTCLEANFILES): Remove $(check_SCRIPTS).
13504         (testsuite): Make sure autotest.m4f is up-to-date before using it.
13506 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
13508         * lib/autotest/general.m4 (AT_INIT): Don't create a regular
13509         expression of unbounded size when processing the --list
13510         option.  This runs afoul of a limit of 399 bytes per regular
13511         expression on AIX.  Problem reported by Ralf Wildenhues.
13513 2005-06-01  Paul Eggert  <eggert@cs.ucla.edu>
13515         * NEWS: Note yesterday's changes to AC_SUBST and AC_SUBST_FILE.
13516         * doc/autoconf.texi (Particular Headers): Reword example
13517         for multiline stdbool replacement.
13518         (Setting Output Variables): Reword text a bit.  Don't
13519         give all the details about |#_!!_#|.
13520         Reword description of line replacement.
13522 2005-05-31  Dan Manthey  <dan_manthey@partech.com>
13524         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES): Output variables may
13525         now contain newlines, and substituted files must be referenced on
13526         a line alone; the sed scripts to substitute them are now very
13527         different.
13528         (_AC_SED_CMD_LIMIT): Added; single place to store limit on how many
13529         commands can be put in a sed script portably.
13530         * doc/autoconf.texi (Setting Output Variables): Document above
13531         changes.  (Particular Header Checks) <AC_HEADER_STDBOOL>: Give exaple
13532         use of multiline substitution.
13533         * tests/torture.at: No longer expect substitution of newline to fail.
13535 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
13537         * lib/m4sugar/m4sh.m4 (_AS_SHELL_FN_WORK): Fix diagnostics.
13538         From Ralf Menzel (trivial change).
13540 2005-05-25  Paul Eggert  <eggert@cs.ucla.edu>
13542         * tests/local.at: Don't attempt to check for negated character
13543         classes in shell scripts.  The test was too brittle.
13545 2005-05-25  Stepan Kasal  <kasal@ucw.cz>
13547         * bin/autoconf.as: Don't use "shift 2"; it's not portable enough.
13548         * doc/autoconf.texi (Limitations of Builtins): Document this
13549           limitation.
13551 2005-05-24  Stepan Kasal  <kasal@ucw.cz>
13553         * lib/m4sugar/m4sh.m4 (_AS_ECHO_LOG): New macro to factor out
13554           common code; used in many places in the tree.
13555         (AS_ESCAPE): Make the pattern a bit simpler; use \& insetad of \1.
13556         (_AS_ECHO_UNQUOTED): Move the macro lower; no code change.
13558         * lib/m4sugar/m4sugar.m4 (m4_ifset): Use m4_ifval.
13560         * lib/autoconf/general.m4 (_AC_INIT_SRCDIR): Merge the two error
13561           messages when ac_unique_file is not found.
13562         (AC_CONFIG_MACRO_DIR): Simplify the `if' at the end.
13563         (AC_MSG_CHECKING, AC_MSG_RESULT): Put braces around the two echo
13564           commands, for consistency with AC_MSG_ERROR and such.
13566         * bin/autoconf.as: Make more use of "shift 2" in option processing.
13568         * bin/Makefile.am: Merge the two rules for creating scripts.
13570 2005-05-23  Stepan Kasal  <kasal@ucw.cz>
13572         * lib/autoconf/general.m4 (AC_MSG_RESULT_UNQUOTED): Make
13573         obsolete; it was never documented.
13574         (AC_CACHE_CHECK): Use AC_MSG_RESULT instead.
13576 2005-05-20  Stepan Kasal  <kasal@ucw.cz>
13578         * NEWS: @top_builddir@ is now a dirname, ac_top_builddir will follow.
13579         * lib/autoconf/status.m4 (_AC_SRCDIRS): Rename ...
13580         (ac_top_builddir): ... this ...
13581         (ac_top_build_prefix): ... to this; the old name is also kept, for
13582           backward compatibility.
13583         (ac_top_builddir_sub): New variable, without the trailing slash,
13584           always nonempty.
13585         (_AC_OUTPUT_FILES): s/@top_builddir@/$ac_top_builddir_sub/
13586         * doc/autoconf.texi (Configuration Actions): Rename
13587           ac_top_builddir to ac_top_build_prefix.
13588         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): Rename
13589           at_top_builddir to at_top_build_prefix.
13590         * lib/autotest/general.m4 (AT_INIT): Likewise.
13592 2005-05-20  Stepan Kasal  <kasal@ucw.cz>
13594         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Simplify the init
13595           of confdefs.h .
13597 2005-05-17  Stepan Kasal  <kasal@ucw.cz>
13599         * lib/m4sugar/m4sugar.m4 (m4_text_wrap): Don't m4_quote the second
13600           argument to m4_foreach.  I guess it was necessary in the past,
13601           but I think it's a no-op now.
13603 2005-05-17  Stepan Kasal  <kasal@ucw.cz>
13605         * lib/autoconf/general.m4 (_AC_INIT_HELP): Merge two consecutive
13606           ``cat <<_ACEOF'' commands to one.
13607         (_AC_CANONICAL_SPLIT): Use expr, not ``echo|sed.''
13608         * lib/autoconf/status.m4: On various places, use expr instead of
13609           ``echo|sed.''
13610         (_AC_CONFIG_SPLIT, _AC_CONFIG_SPLIT_SOURCE_DEST):
13611         (_AC_CONFIG_SPLIT_FILE_IN): New macros, to factor out common code.
13612         * lib/autotest/general.m4 (AT_INIT): Use expr to get the numbers from
13613           a range.
13614         * tests/local.at (AT_CHECK_SHELL_SYNTAX): Use awk to search for
13615           the wrong patterns between ``case'' and ``esac.''  The previous
13616           code had false positives.
13618 2005-05-14  Alexandre Duret-Lutz  <adl@gnu.org>
13620         * lib/autoconf/functions.m4 (_AC_LIBOBJ_ALLOCA): Prepend ${LIBOBJDIR},
13621         as on 2005-05-02.
13622         * doc/autoconf.texi (Particular Functions) <AC_FUNC_ALLOCA>:
13623         Mention LIBOBJDIR.
13625 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
13627         * AUTHORS, BUGS, COPYING, ChangeLog, ChangeLog.0, ChangeLog.1,
13628         ChangeLog.2, GNUmakefile, Makefile.am, Makefile.cfg,
13629         Makefile.maint, NEWS, README, README-alpha, TODO, configure.ac,
13630         bin/Makefile.am, bin/autoconf.as, bin/autoheader.in,
13631         bin/autom4te.in, bin/autoreconf.in, bin/autoscan.in,
13632         bin/autoupdate.in, bin/ifnames.in, config/Makefile.am,
13633         config/config.guess, config/config.sub, config/elisp-comp,
13634         config/m4.m4, config/mdate-sh, config/missing, config/texinfo.tex,
13635         doc/Makefile.am, doc/fdl.texi, lib/Makefile.am, lib/autom4te.in,
13636         lib/freeze.mk, lib/Autom4te/C4che.pm, lib/Autom4te/ChannelDefs.pm,
13637         lib/Autom4te/Channels.pm, lib/Autom4te/Configure_ac.pm,
13638         lib/Autom4te/FileUtils.pm, lib/Autom4te/General.pm,
13639         lib/Autom4te/Request.pm, lib/Autom4te/Struct.pm,
13640         lib/Autom4te/XFile.pm, lib/autoconf/Makefile.am,
13641         lib/autoconf/autoconf.m4, lib/autoconf/autoheader.m4,
13642         lib/autoconf/autoscan.m4, lib/autoconf/autotest.m4,
13643         lib/autoconf/autoupdate.m4, lib/autoconf/c.m4,
13644         lib/autoconf/fortran.m4, lib/autoconf/functions.m4,
13645         lib/autoconf/general.m4, lib/autoconf/headers.m4,
13646         lib/autoconf/lang.m4, lib/autoconf/libs.m4,
13647         lib/autoconf/oldnames.m4, lib/autoconf/programs.m4,
13648         lib/autoconf/specific.m4, lib/autoconf/status.m4,
13649         lib/autoconf/types.m4, lib/autoscan/Makefile.am,
13650         lib/autoscan/autoscan.list, lib/autoscan/autoscan.pre,
13651         lib/autotest/Makefile.am, lib/autotest/autotest.m4,
13652         lib/autotest/general.m4, lib/emacs/Makefile.am,
13653         lib/emacs/autoconf-mode.el, lib/emacs/autotest-mode.el,
13654         lib/m4sugar/Makefile.am, lib/m4sugar/m4sh.m4,
13655         lib/m4sugar/m4sugar.m4, man/Makefile.am, tests/Makefile.am,
13656         tests/atlocal.in, tests/autotest.at, tests/base.at, tests/c.at,
13657         tests/compile.at, tests/foreign.at, tests/fortran.at,
13658         tests/local.at, tests/m4sh.at, tests/m4sugar.at, tests/mktests.sh,
13659         tests/semantics.at, tests/suite.at, tests/tools.at,
13660         tests/torture.at, tests/wrapper.as:
13661         Update FSF postal mail address.
13663 2005-05-13  Stepan Kasal  <kasal@ucw.cz>
13665         * lib/autoconf/general.m4 (AC_CONFIG_LIBOBJ_DIR): Remove the broken
13666           check.
13667         * lib/m4sugar/m4sugar.m4 (m4_bmatch): Halt with error if we don't get
13668           enough arguments, similarly as in m4_bpatsubsts.
13670 2005-05-12  Stepan Kasal  <kasal@ucw.cz>
13672         * lib/autoconf/status.m4 (_AC_SRCDIRS): Simplify the computation
13673           of absolute paths.
13675 2005-05-11  Stepan Kasal  <kasal@ucw.cz>
13677         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ARGS): Make the check
13678           for absolute directory names in one loop.
13679         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Handle
13680           abbreviations of --version and --debug.
13682 2005-05-10  Paul Eggert  <eggert@cs.ucla.edu>
13684         * doc/autoconf.texi (Autoconf Language): Be more precise about
13685         quoting rules.  Problems noted by Stepan Kasal.
13686         Also, throughout this document, be more careful about white space.
13687         "blank", "white space", and "space" all have different meanings
13688         and we should be careful to say what we mean.
13690 2005-05-05  Paul Eggert  <eggert@cs.ucla.edu>
13692         Fix C++ related problems reported by Werner Lemberg.
13693         * doc/autoconf.texi (C++ Compiler): Mention .cpp extension.
13694         * lib/autoconf/c.m4 (AC_LANG(C++)): Set ac_ext to .cpp, not .cc.
13695         * lib/autoconf/types.m4 (AC_TYPE_SIGNAL): Simplify test, to
13696         avoid problems with C++ and throw.
13697         * tests/compile.at: .cpp, not .cc.
13699         * tests/semantics.at: Prepend LIBOBJDIR, as per 2005-05-02 change.
13701 2005-05-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
13703         * doc/autoconf.texi (Generic Functions): Typos.
13705 2005-05-02  Gary V. Vaughan  <gary@gnu.org>
13707         * lib/autoconf/general.m4 (_AC_LIBOBJS_NORMALIZE): Prepend each
13708         object named in LIBOBJS and LTLIBOBJS with the ${LIBOBJDIR}, as
13709         set by latest automake.
13711 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
13713         * doc/autoconf.texi (Limitations of Usual Tools): "expr '' \| ''"
13714         outputs 0 on GNU/Linux these days.
13716 2005-04-29  Paul Eggert  <eggert@cs.ucla.edu>
13718         * doc/autoconf.texi (Autoconf Language): Add more description
13719         about quoting heuristics.
13720         (Limitations of Builtins): Describe "set -" problems.
13722 2005-04-29  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
13724         * lib/autotest/general.m4 (AT_KEYWORDS): Separate by space,
13725         not newline.
13727         * doc/autoconf.texi (External Software): Replace AC_DEFINE_UNQUOTED
13728         by AC_DEFINE; it was a mistake.
13729         From bug reported against libtool by Dalibor Topic <robilad@kaffe.org>.
13731 2005-04-25  Stepan Kasal  <kasal@ucw.cz>
13733         * lib/autoconf/status.m4 (_AC_OUTPUT_HEADERS): A tiny optimization.
13735 2005-04-22  Stepan Kasal  <kasal@ucw.cz>
13737         * doc/autoconf.texi (External Software): Quadrigraphs are not
13738           processed correctly in AS_HELP_STRING; avoid this in the examples.
13739         * lib/m4sugar/m4sh.m4 (AS_HELP_STRING): Add a FIXME about quadrigraphs.
13740         * lib/m4sugar/m4sugar.m4 (m4_text_wrap): Likewise; and rephrase the
13741           comment and reduce m4_default([foo], []) to [foo].
13742         (m4_strip): Update the explanation.
13744 2005-04-19  Paul Eggert  <eggert@cs.ucla.edu>
13746         * lib/autoconf/general.m4 (_AC_INIT_PREPARE, _AC_RUN_IFELSE):
13747         Remove core.conftest.* too; it's generated by Tru64 5.1.
13748         Problem reported by Jennis Pruett.
13749         * lib/autoconf/functions.m4
13750         (AC_FUNC_SETVBUF_REVERSED, AC_FUNC_UTIME_NULL):
13751         Don't bother to remove core files; AC_RUN_IFELSE should do that
13752         for you.
13754 2005-04-19  Stepan Kasal  <kasal@ucw.cz>
13756         * lib/m4sugar/m4sugar.m4 (m4_bpatsubsts): Add the b- to comment, too.
13758 2005-04-19  Alexandre Duret-Lutz  <adl@gnu.org>
13760         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ARGS): Handle --docdir.
13761         Report from Horst Wente.
13763 2005-04-15  Stepan Kasal  <kasal@ucw.cz>
13765         * lib/autoconf/general.m4 (_AC_ARG_VAR_VALIDATE): Fixed a typo in
13766           the comment.
13768 2005-04-14  Gregorio Guidi  <greg_g@gentoo.org>
13770         * doc/autoconf.texi (External Software, Package Options): Add
13771           examples showing how to implement --with-* and --enable-* options.
13773 2005-04-13  Paul Eggert  <eggert@cs.ucla.edu>
13775         * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): Look for configure.ac
13776         as well as configure.in.  Problem reported by Gregorio Guidi.
13778 2005-04-10  Paul Eggert  <eggert@cs.ucla.edu>
13780         * doc/autoconf.texi (Particular Functions): Use gnulib's current
13781         pattern for alloca snippet.
13783 2005-04-04  Stepan Kasal  <kasal@ucw.cz>
13785         * lib/autotest/general.m4 (_AT_DECIDE_TRACEABLE): Fix a typo.
13787 2005-04-01  Stepan Kasal  <kasal@ucw.cz>
13789         * doc/autoconf.texi (Generic Programs): Fix a typo.
13791 2005-04-01  Paul Eggert  <eggert@cs.ucla.edu>
13793         * lib/autotest/general.m4 (AT_INIT): Don't assume that "date +%s"
13794         fails if %s isn't supported.  Problem reported by Ralf Wildenhues.
13796 2005-03-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
13798         * lib/autoconf/fortran.m4 (_AC_FC_LIBRARY_LDFLAGS):
13799         Merge `-z option' as well for the benefit of Solaris link flags.  Pass
13800         whole-archive (-zallextract, -zdefaultextract) options in the hope of
13801         unique libraries, for the Sun Fortran 95 8.0 compiler.  Bug reported
13802         against Libtool by Yury Puhalsky <pooh@cryptopro.ru>.
13804 2005-03-22  Paul Eggert  <eggert@cs.ucla.edu>
13806         * NEWS: The configure command now warns you if you attempt to use
13807         a directory whose name contains a special character like space,
13808         newline, or "\".
13809         * doc/autoconf.texi (Installation Directory Variables): Allow
13810         "," in file names.  Do not use \@; it's not a portable regexp.
13811         * bin/Makefile.am (edit): Likewise.
13812         * lib/Makefile.am (edit): Likewise.
13813         * tests/Makefile.am (edit): Likewise.
13814         * tests/semantics.at: Likewise.
13815         * tests/torture.at: Likewise.
13816         * lib/autoconf/general.m4 (AC_ARG_PROGRAM): Likewise.
13817         * lib/autoconf/status.m4 (_AC_SRCDIRS): Likewise.
13818         * doc/autoconf.texi (File System Conventions): Warn about
13819         unportable file names.
13820         * lib/autoconf/general.m4 (_AC_INIT_DIRCHECK): New macro.
13821         (AC_INIT): Use it.
13822         (_AC_INIT_SRCDIR): Use ac_pwd rather than invoking pwd.
13823         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Propagate
13824         ac_pwd, and quote srcdir.
13825         * lib/autotest/general.m4 (AT_INIT): Quote file name args.
13827         * doc/autoconf.texi: Fix some systematic formatting problems.
13828         ".)"  needs a following @: if not at the end of a sentence, and
13829         similarly for "!)".  "etc." should be preceded by a comma.
13830         "n-th" -> "@var{n}th".  pdksh is still buggy, so update its date.
13832 2005-03-22  Bruno Haible  <bruno@clisp.org>
13834         * doc/autoconf.texi (Input): Mention that AC_CONFIG_AUX_DIR's
13835         argument is often called 'build-aux'.
13837 2005-03-07  Stepan Kasal  <kasal@ucw.cz>
13839         * doc/autoconf.texi (Quotation Rule Of Thumb): Mention that the
13840           macro AC_TRY_LINK is obsolete.
13841         (Installation Directory Variables): Change `AC_OUTPUT_FILES' to
13842           `AC_CONFIG_FILES'.
13844 2005-02-24  Stepan Kasal  <kasal@ucw.cz>
13846         * lib/autoconf/c.m4 (AC_PROG_CC): Be more careful to skip
13847           `/usr/ucb/cc'; use `cl.exe' to distinguish the MS compiler
13848           from a Common Lisp's `cl'.
13849         (AC_PROG_CXX): Behave according to the documentation: don't
13850           search for $ac_tool_prefix$CCC and $CCC, just set CXX=$CCC;
13851           make the variable CCC precious; use `cl.exe', not `cl'.
13853 2005-02-23  Paul Eggert  <eggert@cs.ucla.edu>
13854             Alexandre Duret-Lutz  <adl@gnu.org>
13856         * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS): Redirect stdin from
13857         /dev/null, as "configure" shouldn't read stdin, and this insulates
13858         us from problems (e.g., when testing for "cl").  Also, do this
13859         redirection before invoking "hostname" or "uname", and keep the
13860         original input stream available via...
13861         (AS_ORIGINAL_STDIN_FD): ... this new macro.
13862         (_AC_PREPROC_IFELSE, _AC_COMPILE_IFELSE, _AC_LINK_IFELSE): Don't
13863         bother with "</dev/null" since it's now done at the top of
13864         'configure'.
13865         * lib/autoconf/c.m4 (AC_PROG_CC, AC_PROG_CXX): Likewise.
13866         * lib/autoconf/fortran.m4 (_AC_PROG_FC): Likewise.
13867         * lib/autoconf/programs.m4 (_AC_PATH_PROG_FLAVOR_GNU): Likewise.
13868         * doc/autoconf.texi (File Descriptor Macros): New section.
13869         (Printing Messages): Mention it.
13870         * tests/base.at (Input/Output): New test.
13872 2005-02-23  Paul Eggert  <eggert@cs.ucla.edu>
13874         * lib/m4sugar/m4sh.m4 (_AS_ECHO_N_PREPARE): Don't set ECHO_C to
13875         newline if neither \c nor -n work, as that would output two
13876         newlines.  Prefer -n to \c.  Reported by Stepan Kasal.
13878 2005-02-12  Stepan Kasal  <kasal@ucw.cz>
13880         * lib/m4sugar/m4sh.m4 (AS_IF): Define by m4_defun, not m4_define.
13881         This causes that any required macros inside will get before the if.
13882         * doc/autoconf.texi (autom4te.cache): A typo.
13884 2005-02-12  Paul Eggert  <eggert@cs.ucla.edu>
13886         Undo previous change, except keep the change to
13887         lib/autoconf/programs.m4 that replaced grep with shell
13888         pattern-matching.  This is because net-snmp configure reads stdin.
13889         Reported by Noah Misch.
13891 2005-02-11  Paul Eggert  <eggert@cs.ucla.edu>
13893         * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS): Redirect stdin
13894         from /dev/null, as "configure" shouldn't read stdin, and this
13895         insulates us from problems (e.g., when testing for "cl").
13896         Suggested by Alexandre Duret-Lutz.  Also, do this redirection
13897         before invoking "hostname" or "uname".
13898         (_AC_PREPROC_IFELSE, _AC_COMPILE_IFELSE,
13899         _AC_LINK_IFELSE): Undo previous change, as it's no longer needed.
13900         * lib/autoconf/c.m4 (AC_PROG_CC, AC_PROG_CXX): Don't bother with
13901         "</dev/null" since it's now done at the top of 'configure'.
13902         * lib/autoconf/fortran.m4 (_AC_PROG_FC): Likewise.
13903         * lib/autoconf/programs.m4 (_AC_PATH_PROG_FLAVOR_GNU): Likewise.
13904         Also, replace grep with shell pattern-matching, to save a process.
13906 2005-02-10  Paul Eggert  <eggert@cs.ucla.edu>
13908         * lib/autoconf/general.m4 (_AC_PREPROC_IFELSE, _AC_COMPILE_IFELSE,
13909         _AC_LINK_IFELSE): Redirect stdin to /dev/null, in an attempt to
13910         avoid thinking that Allegro Common Lisp's "cl" command is a C++
13911         compiler.
13913 2005-02-09  Paul Eggert  <eggert@cs.ucla.edu>
13915         * doc/autoconf.texi (Limitations of Usual Tools): Document that
13916         grep -q isn't portable.  Improve grep -s explanation.
13917         Problem reported by Dan Manthey.
13919 2005-02-08  Paul Eggert  <eggert@cs.ucla.edu>
13921         * doc/autoconf.texi (Special Shell Variables): Clarify
13922         PATH_SEPARATOR wording; fix typo in IFS.  Reported by Gary V. Vaughan.
13924 2005-02-07  Paul Eggert  <eggert@cs.ucla.edu>
13926         * doc/autoconf.texi: Use @acronym for DJGPP.
13927         Fix some @code's that should have been @env's, and vice versa.
13928         Sort environment variable names.
13929         Mention that shells no longer inherit IFS.
13930         Don't recommend PATH_SEPARATOR=';' so strongly.
13931         Mention that $RANDOM might expand to the empty string.
13932         "symlink" and "soft link" -> "symbolic link".
13933         Improve mktemp description (reported by Bruno Haible).
13935 2005-02-05  Paul Eggert  <eggert@cs.ucla.edu>
13937         * tests/foreign.at (Libtool): Don't overquote AT_SETUP arg.
13938         * tests/m4sh.at (AS_DIRNAME, AS_BASENAME, AS_MKDIR_P, AS_HELP_STRING):
13939         Likewise.
13940         * tests/semantics.at (AC_C_BIGENDIAN, AC_PATH_PROG & AC_PATH_PROGS):
13941         Likewise.
13943 2005-02-04  Paul Eggert  <eggert@cs.ucla.edu>
13945         * NEWS: Mention AT_COPYRIGHT.
13947         * tests/local.at (AT_CMP): Use diff directly on input files rather
13948         than copying them.
13950         * lib/autoconf/programs.m4 (AC_PROG_SED): Don't look in
13951         /usr/xpg4/bin since that sed dumps core (at least on Solaris 8).
13953 2005-02-04  Noah Misch  <noah@cs.caltech.edu>
13954         and Paul Eggert  <eggert@cs.ucla.edu>
13956         * tests/autotest.at (Empty test suite): New test.
13957         * tests/torture.at (Substitute and define special characters)
13958         (Substitute a 2000-byte string, Define to a 2000-byte string)
13959         (Substitute a newline, Define a newline): New tests.
13961 2005-02-04  Noah Misch  <noah@cs.caltech.edu>
13963         * lib/m4sugar/m4sugar.m4 (m4_re_string, m4_re_word): Revert 2002-03-04.
13964         * tests/local.at (AT_CHECK_M4SUGAR): Add `m4sugar' to keywords.
13965         (AT_CHECK_ENV): Ignore LTLIBOBJS, FC variables, EGREP, FGREP, and SED.
13966         * tests/m4sugar.at (AT_CHECK_M4SUGAR_TEXT, AT_CHECK_M4RE): New macros.
13967         (Standard regular expressions): New test.
13968         (m4_warn, m4_require: circular dependencies, m4_text_wrap): Strip
13969         excess test name quoting.
13970         * tests/semantics.at (AC_CHECK_HEADERS_OLD, AC_CHECK_HEADERS_NEW): Pass
13971         CPPFLAGS to `configure' instead of setting it in `configure'.
13973         * lib/m4sugar/m4sh.m4 (AS_UNAME): Try only /usr/bin/hostinfo, not
13974         any `hostinfo' in $PATH, since hostinfo.exe is a popular file name
13975         on some platforms.
13977         * lib/autoconf/fortran.m4 (AC_LANG(Fortran), AC_FC_SRCEXT):
13978         s/FC_SRCEXT/ac_fc_srcext/; s/FCFLAGS_SRCEXT/ac_fcflags_srcext/.
13980         * tests/local.at (AT_CMP): New macro.
13981         (AT_DATA_AUTOCONF): Do not call AC_PROG_GREP.
13982         (AC_SAVE_STATE): Move environment grep...
13983         (AT_CHECK_ENV): to here.  Filter out `'$''.  Use AT_CMP.
13984         (AT_CONFIG_CMP): New macro.
13985         (AT_CHECK_MACRO): Run `configure' twice with cache and compare results.
13986         * tests/c.at (Extensions): Do not exit early.
13987         * tests/atlocal.in: Inherit $GREP.
13989         * lib/autoconf/c.m4 (_AC_C_STD_TRY): New macro.
13990         (_AC_PROG_CC_C89, _AC_PROG_CC_C99): Use it.
13992         * lib/autoconf/general.m4 (_AC_INIT_COPYRIGHT): Update for 2005.
13993         (AC_COPYRIGHT): Factor header comment portion out and move into...
13994         * lib/m4sugar/m4sh.m4 (AS_COPYRIGHT): This.
13995         * lib/autotest/general.at (AT_COPYRIGHT): New macro.
13996         (AT_INIT): Add Autotest copyright notice.  Display copyright notices in
13997         --version output.
13998         * tests/local.at: Add Autoconf test suite copyright notice.
13999         * doc/autoconf.texi (Writing testsuite.at): Document AT_COPYRIGHT.
14001 2005-02-04  Bruno Haible  <bruno@clisp.org>
14002         and Paul Eggert  <eggert@cs.ucla.edu>
14004         * doc/autoconf.texi (Limitations of Usual Tools): New mkstemp entry.
14006 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
14008         * lib/m4sugar/m4sugar.m4 (m4_re_escape): Escape ?, ^, \, $ too;
14009         this fixes a bug tickled by the AT_CAPTURE_FILE change noted below.
14011         Try not to generated lines of unlimited length, as POSIX places a
14012         2047-byte limit on line length of portable text files.
14013         * lib/autoconf/general.m4 (AC_SUBST, AC_SUBST_FILE):
14014         Use newline as a separator, not space.
14015         * lib/autotest/general.m4 (AT_TESTED, AT_KEYWORDS): Likewise.
14016         (AT_CAPTURE_FILE): Use space-backslash-newline as a separator, not
14017         space.
14019 2005-02-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
14021         * lib/m4sugar/m4sh.m4 (_AS_SHELL_FN_WORK): Move func_* to
14022         as_func_*.  Add test to check whether positional parameters
14023         are restored after function return.
14025 2005-02-02  Paul Eggert  <eggert@cs.ucla.edu>
14027         * doc/autoconf.texi (Special Shell Variables): Mention _,
14028         BIN_SH, DUALCASE.  Say that variables other than "status" are safe
14029         if they contain a lower-case letter.  The DUALCASE problem was
14030         reported by Ralf Wildenhues.
14032         * bin/autoconf.as: Don't exit with status 0 after write failure
14033         with --help or --version.
14034         * lib/autoconf/general.m4 (_AC_INIT_HELP, _AC_INIT_VERSION): Likewise.
14035         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Likewise.
14037 2005-02-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
14039         * doc/autoconf.texi (Limitations of Usual Tools):
14040         Unicos 9 sed limitations.
14041         * lib/autoconf/fortran.m4 (_AC_PROG_FC): Try cf77 before fort77
14042         to get the option-enhanced interface on older Crays.  Try ftn for
14043         Fortran 95 (newer Crays).
14045 2005-02-01  Paul Eggert  <eggert@cs.ucla.edu>
14047         * man/Makefile.am (.x.1): Go back to the simple solution, but take
14048         care to echo the commands, so the user knows what's going on.
14049         Modified from a suggestion by Stepan Kasal.
14051         * doc/autoconf.texi (autoreconf Invocation): Mention autopoint,
14052         with a cross reference.  Derived from a suggestion by Bruce Korb.
14054 2005-01-31  Paul Eggert  <eggert@cs.ucla.edu>
14056         * doc/autoconf.texi (config.status Invocation): Warn about
14057         discrepancy between CONFIG_SHELL and shell used to invoke 'configure'.
14058         * doc/install.texi (Defining Variables): Likewise.
14059         Based on a proposed patch by Ralf Wildenhues.
14061         * man/Makefile.am (.x.1): Make sure the required generated files
14062         are up to date.  Problem and original solution proposed by Stepan Kasal.
14063         $(dist_man_MANS:.1=-bin-prereq), $(dist_man_MANS:.1=-tests-prereq),
14064         implicit-man-prerequisites): New rules, used by the above.
14066         * doc/make-stds.texi, doc/standards.texi: Sync from gnulib.
14067         * config/config.guess, config/config.sub, config/install-sh: Likewise.
14068         * config/missing, config/texinfo.tex: Likewise.
14070 2005-01-29  Stepan Kasal  <kasal@ucw.cz>
14072         Simplify the implementation of m4_require (a.k.a. AC_REQUIRE).
14073         Update the long comment explaining it.
14075         m4_require no longer writes an ``is required by'' line to the
14076         execution stack.  It contains only one bit of non-redundant
14077         information: that the macro was required, not called.  And even
14078         this bit is useless in most situations: have you ever met a macro
14079         which both calls and requires the same macro?
14081         * lib/m4sugar/m4sugar.m4 (_m4_defun_pro): Don't push a diversion...
14082         (_m4_defun_pro_outer): ... only via this macro, for the outermost
14083           macro.
14084         (_m4_defun_epi, _m4_defun_epi_outer): Complementarily.
14085         (m4_expansion_stack_pop): Remove the misplaced comment.
14086         (m4_require): Don't put the ``is required by'' line to the
14087           execution stack; slightly improve the out-of-a-defun error message.
14088         (_m4_divert_grow): New macro, counter for the temporary diversions.
14089         (_m4_require_call): Use it.
14090         * tests/m4sugar.at (m4_require): Expect output without the
14091           ``is required by'' messages.
14093 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
14095         * doc/autoconf.texi (Limitations of Usual Tools): Recommend X
14096         rather than x for expr.
14098         * lib/autoconf/lang.m4 (_AC_COMPILER_OBJEXT): Avoid subshells when
14099         this is safe.
14100         * lib/autoconf/programs.m4 (AC_PROG_EGREP, AC_PROG_FGREP): Likewise.
14101         * lib/autoconf/specific.m4 (AC_SYS_LONG_FILE_NAMES): Likewise.
14102         * lib/autotest/general.m4 (AT_INIT): Likewise.
14103         * lib/m4sugar/m4sh.m4 (_AS_LINENO_WORKS): Likewise.
14104         * tests/mktests.sh: Likewise.
14106 2005-01-27  Akim Demaille  <akim@epita.fr>
14108         Have autoheader honor --force.
14110         * doc/make-stds.texi, doc/standards.texi: Update from masters.
14111         * lib/Autom4te/Channels.pm, lib/Autom4te/Configure_ac.pm
14112         * lib/Autom4te/FileUtils.pm, lib/Autom4te/XFile.pm: Update
14113         from masters, so that FileUtils.pm's update_file provide --force
14114         support.
14115         * bin/autoheader.in: Pass $force to update_file so that
14116         config.h.in is always recreated when --force.
14118 2005-01-24  Stepan Kasal  <kasal@ucw.cz>
14120         * doc/autoconf.texi (Introduction): Update Peter Simons' address.
14122 2005-01-21  Paul Eggert  <eggert@cs.ucla.edu>
14124         * doc/autoconf.texi (Limitations of Builtins): Clarify that
14125         "if test ! -d foo; ..." is portable.  Suggested by Stepan Kasal.
14127 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
14129         * doc/autoconf.texi (Shell Substitutions): Fix typo in case statement.
14130         Warn about newline stripping in `` and $().  Update Solaris
14131         version to 9.
14132         (Limitations of Builtins): Use expr "X...", not expr "x...", as
14133         X insulates us from future changes to Posix.
14134         (Limitations of Usual Tools): For AS_DIRNAME, warn about newline
14135         stripping.
14137 2005-01-19  Stepan Kasal  <kasal@ucw.cz>
14139         * doc/autoconf.texi (Defining Symbols): Delete the false comment that
14140           you cannot use AC_DEFINE to define macros containing `[' or `]'.
14142 2005-01-13  Paul Eggert  <eggert@cs.ucla.edu>
14144         * doc/autoconf.texi (Limitations of Usual Tools): Document bug
14145         in Solaris 8 join.  Problem reported by Tomohiro Suzuki on
14146         bug-tar mailing list.
14148 2005-01-05  Stepan Kasal  <kasal@ucw.cz>
14150         * lib/m4sugar/m4sugar.m4 (m4_copy): Fix the explanation.
14152 2005-01-05  Paul Eggert  <eggert@cs.ucla.edu>
14154         * lib/autoconf/c.m4 (AC_LANG_INT_SAVE(C)): Declare longval and
14155         ulongval to be static, to avoid unwanted GCC warning.  Problem
14156         reported by Michael Jennings via Daniel Reed; see
14157         <https://bugzilla.redhat.com/beta/show_bug.cgi?id=143852>.
14159 2005-01-05  Alexandre Duret-Lutz  <adl@gnu.org>
14161         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ARGS): Define datarootdir,
14162         docdir, htmldir, dvidir, pdfdir, psdir, and localdir.  Update
14163         datadir, infodir, and mandir.  Adjust argument parsing code.
14164         (_AC_INIT_HELP): Update help text.
14165         * doc/autoconf.texi (Installation Directory Variables): Document
14166         new variables.
14168 2005-01-04  Noah Misch  <noah@cs.caltech.edu>
14170         * lib/autoconf/programs.m4 (AC_PROG_MAKE_SET): If the Make program does
14171         not seem to work, assume it does set $(MAKE).
14172         * doc/autoconf.texi (AC_PROG_MAKE_SET): Update.
14174 2005-01-03  Stepan Kasal  <kasal@ucw.cz>
14176         * lib/m4sugar/m4sh.m4 (AS_REQUIRE): Add a comment about nesting.
14178 2005-01-03  Stepan Kasal  <kasal@ucw.cz>
14180         A cleanup of the diversion support in m4sugar.
14182         * lib/m4sugar/m4sugar.m4 (_m4_divert): A typo in description.
14183         (_m4_divert_n_stack): New macro; the expansion is
14184           <newline>m4_divert_stack, if m4_divert_stack is defined, and void
14185           otherwise.
14186         (m4_divert, m4_divert_push, m4_divert_pop, m4_init): Use it.
14187         (m4_divert_push, m4_divert_pop, _m4_defun_epi): Don't expand the word
14188           stored in _m4_divert_diversion or _m4_divert_dump.
14189         (m4_divert_pop): When the parameter is given, compare the symbolic
14190           name with the last diversion pushed on the stack.  Previously, the
14191           current diversion was compared with the numeric value of the
14192           diversion given as the parameter.
14193         (m4_require): If the macro hasn't been expanded yet, call ...
14194         (_m4_require_call): this new macro.
14196 2005-01-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
14198         * lib/autoconf/general.m4 (_AC_INIT_PREPARE, _AC_ARG_VAR_VALIDATE):
14199         Workarounds for documented `case' limitations.
14201 2005-01-03  Paul Eggert  <eggert@cs.ucla.edu>
14203         * doc/autoconf.texi (Limitations of Usual Tools): Warn about
14204         sed 'command1;command2'.  Problem reported by Ralf Wildenhues.
14206 2005-01-02  Paul Eggert  <eggert@cs.ucla.edu>
14208         * bin/autoconf.as, bin/autoheader.in, bin/autom4te.in,
14209         bin/autoreconf.in, bin/autoscan.in, bin/autoupdate.in,
14210         bin/ifnames.in, tests/mktests.sh: Update copyright date to 2005.
14212         Patch from Roger Leigh (with some minor changes) as follows:
14213         * NEWS: New macros AC_PROG_CC_C89, AC_PROG_CC_C99.
14214         Resurrect AC_PROG_CC_STDC.
14215         * doc/autoconf.texi (C Compiler): Add AC_PROG_CC_STDC,
14216         AC_PROG_CC_C89, AC_PROG_CC_C99.
14217         (Obsolete Macros): Remove AC_PROG_CC_STDC; it's no longer obsolete.
14218         * lib/autoconf/c.m4 (_AC_PROG_CC_C89, _AC_PROG_CC_C99, AC_PROG_CC_C89,
14219         AC_PROG_CC_C99): New macros.
14220         (AC_PROG_CC_STDC): Use them.
14221         (_AC_PROG_CC_STDC): Remove.
14222         (AC_C_PROTOTYPES): Use ac_cv_prog_cc_c89, not ac_cv_prog_cc_stdc.
14223         * THANKS: Add Roger Leigh.
14225 2004-12-30  Noah Misch  <noah@cs.caltech.edu>
14227         * bin/autoreconf.in (autoreconf_current_directory):  AM_INIT_AUTOMAKE
14228         signals that the package uses Automake; a `Makefile.am' is typical but
14229         not essential.  Reported by Magnus Therning.
14230         * tests/torture.at (autoreconf.): New banner.
14231         (autoreconf and non-AC configure): Rename to `Non-Autoconf
14232         AC_CONFIG_SUBDIRS'.
14233         (autoreconf an empty directory): Rename to `Empty directory'.
14234         (Unusual Automake input files): New test.
14236 2004-12-30  Noah Misch  <noah@cs.caltech.edu>
14238         * lib/autotest/general.m4 (AT_CAPTURE_FILE): New macro.
14239         (AT_SETUP): Clear AT_capture_files.
14240         (_AT_CHECK): On failure, log each of AT_capture_files.  Fix comment.
14241         (AT_KEYWORDS): Fix comment typo.
14242         * tests/autotest.at (AT_CHECK_AT): Use AT_CAPTURE_FILE.
14243         * tests/local.at (AT_CHECK_CONFIGURE): Use AT_CAPTURE_FILE.
14244         * doc/autoconf.texi (Writing testsuite.at): Document AT_CAPTURE_FILE.
14246 2004-12-29  Albert Chin-A-Young  <china@thewrittenword.com>
14248         * lib/autoconf/programs.m4 (_AC_FEATURE_CHECK_LENGTH):
14249         If the variable to set is already set, set ac_cv_path_$1
14250         to the preset value so caller can assume ac_cv_path_$1
14251         is available.  (trivial change)
14253 2004-12-27  Noah Misch  <noah@cs.caltech.edu>
14255         * BUGS (Minor Problems): Warn about makefile limitations.
14256         * Makefile.am: Find and update `INSTALL' in $(srcdir).
14257         * man/Makefile.am: Find and update manual pages in $(srcdir).
14259 2004-12-24  Eric Blake  <ebb9@byu.net>
14261         * lib/m4sugar/m4sh.m4 (_AS_DETECT_BETTER_SHELL): Test candidate
14262         shells in subshell, to avoid noise from ash.  (trivial change)
14264 2004-12-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
14266         * doc/autoconf.texi (Limitations of Builtins) <case>: Mention
14267         problems with SunOS ksh and backslash escaping, Bourne shells and
14268         closing brackets (both within character classes).  Bug reported
14269         against Libtool by Alexander Kurz <alexander.kurz@qsc.de>.
14270         <read>: New entry.  Mention non-availability of -r.
14272 2004-12-21  Akim Demaille  <akim@epita.fr>
14274         * lib/autotest/general.m4 (AT_LINE): Don't add srcdir here, to
14275         avoid cluttering displayed messages.  Rather, prepend srcdir where
14276         AT_LINE is used for log files.
14278 2004-12-21  Stepan Kasal  <kasal@ucw.cz>
14280         * lib/autoconf/status.m4: Quote ``$tmp'' in many places.
14281         * lib/m4sugar/m4sh.m4 (AS_TMPDIR): Fix the comment, as traps are
14282           no longer part of the macro, quote the occurrence of ``$tmp''.
14283         * doc/autoconf.texi (Forbidden Patterns): Typo.
14285 2004-12-21  Akim Demaille  <akim@epita.fr>
14287         * lib/autotest/general.m4 (AT_INIT): Make sure the "ok" etc. are
14288         separated from the test title by forcing a white space.
14290 2004-12-21  Akim Demaille  <akim@epita.fr>
14292         Enable Emacs navigation within testsuite.log files.
14294         * lib/autotest/general.m4 (AT_CLEANUP): Add an hint for Emacs to
14295         use the compilation mode.
14296         (AT_LINE): Point to the srcdir.
14298 2004-12-19  Noah Misch  <noah@cs.caltech.edu>
14300         * tests/Makefile.am (installcheck-local): Use $(bindir).
14301         (check-local, installcheck-local): Pass TESTSUITEFLAGS.
14302         * doc/autoconf.texi (Making testsuite Scripts): Recommend the same
14303         Makefile.am scheme Autoconf now uses.
14305 2004-12-18  Noah Misch  <noah@cs.caltech.edu>
14307         * lib/m4sugar/m4sugar.m4 (m4_qlen, m4_qdelta): New macros.
14308         * lib/autotest/general.m4 (AT_SETUP): Use m4_qdelta.
14310 2004-12-18  Noah Misch  <noah@cs.caltech.edu>
14312         * lib/autotest/general.m4 (_AT_DECIDE_TRACEABLE): New macro.
14313         (_AT_CHECK): Use it.
14314         * lib/m4sugar/m4sh.m4 (AS_ESCAPE_FOR_EXPAND): Remove.
14315         (AS_ESCAPE): Fix comment.
14316         * tests/autotest.at: Adjust section banner comments.
14317         (AT_CHECK_AT): Accept STATUS and STDERR.
14318         (AT_CHECK_AT_TEST): Likewise.
14319         (Invalid brace-enclosed parameter expansion)
14320         (Multiline command from M4 expansion)
14321         (Double-M4-quoted command): New tests.
14323 2004-12-17  Paul Eggert  <eggert@cs.ucla.edu>
14325         * doc/autoconf.texi: Update GNU FDL version from 1.1 to 1.2.
14327 2004-12-17  Akim Demaille  <akim@epita.fr>
14329         * lib/autoconf/general.m4 (AC_SUBST, AC_SUBST_FILES): Pass $1 to
14330         m4_pattern_allow.
14331         Suggested by Alexandre Duret-Lutz.
14332         * doc/autoconf.texi (Setting Output Variables): Catch up.
14334 2004-12-17  Stepan Kasal  <kasal@ucw.cz>
14336         * lib/m4sugar/m4sh.m4 (_AS_TEST_PREPARE): Fix comment.
14338 2004-12-17  Stepan Kasal  <kasal@ucw.cz>
14340         * lib/autoconf/general.m4 (_AC_LIBOBJ): We can use AC_SUBST/2,
14341           remove the comment which said we cannot.
14343 2004-12-17  Stepan Kasal  <kasal@ucw.cz>
14345         Add a specialized check for resolv.h.  Thanks to Gerrit P. Haase,
14346         Reini Urban and Paul Eggert for reporting the dependencies.
14348         * lib/autoconf/headers.m4 (AC_HEADER_RESOLV): New macro.
14349         * doc/autoconf.texi (AC_HEADER_RESOLV): Document it.
14350         (AC_HEADER_STAT): @cvindex{STAT_MACROS_BROKEN}, not @acindex.
14352 2004-12-17  Stepan Kasal  <kasal@ucw.cz>
14354         * bin/autoscan.in: Open autoscan.log only after ``parse_args'';
14355           so that eg. ``autoscan --help'' doesn't truncate it.
14357 2004-12-15  Nicolas Joly  <njoly@pasteur.fr>
14359         * lib/autoconf/programs.m4 (_AC_FEATURE_CHECK_LENGTH): Remove
14360         generated conftest files.
14362 2004-12-13  Noah Misch  <noah@cs.caltech.edu>
14364         * lib/autotest/general.m4 (_AT_CHECK) [--trace]: Do not enable shell
14365         tracing on commands with possibly-escaped newlines.
14366         * doc/autoconf.texi (Writing testsuite.at): Delete documentation of the
14367         discontinued behavior and its implications.
14368         * tests/autotest.at (BS-newline in command, ^BS-newline in command)
14369         (BSx641-newline in command, BS-BS-newline in command)
14370         (BSx640-newline in command, Newline-CODE-BS-newline in command)
14371         (Single-quote-BS-newline in command)
14372         (Single-quote-newline-BS-newline in command): New tests.
14374 2004-12-13  Stepan Kasal  <kasal@ucw.cz>
14376         * lib/m4sugar/m4sh.m4 (AS_EXECUTABLE_P): Use test -f && test -x
14377           on platforms where it works.
14378         (_AS_TEST_PREPARE): Test for ``test -x''.
14379         (_AS_BROKEN_TEST_PREPARE): Nuke.
14381 2004-12-13  Stepan Kasal  <kasal@ucw.cz>
14383         * lib/m4sugar/m4sh.m4 (AS_TMPDIR): Move the trap commands ...
14384         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): ... here;
14385           give only 4-letter prefix to AS_TMPDIR, comment fixed.
14386         * lib/autoconf/programs.m4 (_AC_PATH_PROG_FEATURE_CHECK): Don't
14387           create the temporary directory.
14388         (_AC_FEATURE_CHECK_LENGTH): Work in current directory.
14390 2004-12-12  Kelley Cook  <kcook@gcc.gnu.org>
14392         * bin/autoheader.in: Exit if no AC_CONFIG_HEADERS was found.
14393         (trivial change)
14395 2004-12-12  Alexandre Duret-Lutz  <adl@gnu.org>
14397         * doc/autoconf.texi (Limitations of Usual Tools) <expr (:)>: Typo.
14399 2004-12-11  Noah Misch  <noah@cs.caltech.edu>
14401         * lib/autotest/general.m4 (_AT_CHECK) [--trace]: Rework a shell pattern
14402         to avoid using a negated character class.  Reported by Nicolas Joly.
14403         * tests/local.at (AT_CHECK_SHELL_SYNTAX): Check for similar constructs.
14405 2004-12-10  Paul Eggert  <eggert@cs.ucla.edu>
14407         * man/Makefile.am (autoconf.1, autoheader.1, autom4te.1, autoreconf.1,
14408         autoscan.1, autoupdate.1, ifnames.1, config.guess.1, config.sub.1):
14409         Don't depend on .x file explicitly, since "make" does that for us.
14410         Suggested by Stepan Kasal.
14412         * bin/Makefile.am (MOSTLYCLEANFILES): Renamed from CLEANFILES.
14413         Add *.tmp.
14414         (autoconf, autoheader, autom4te, autoreconf, autoscan, autoupdate,
14415         ifnames): Factor common code.  And they said it couldn't be done!
14417 2004-12-09  Paul Eggert  <eggert@cs.ucla.edu>
14419         * bin/.cvsignore: Add autoconf.in.
14420         * tests/.cvsignore: Add wrapper.in.
14421         * lib/autotest/general.m4: Escape '$' in case pattern.
14423 2004-12-09  Noah Misch  <noah@cs.caltech.edu>
14425         * man/Makefile.am (autoconf.1): Regenerate when `autoconf.as' changes.
14427         * lib/autotest/general.m4 [--trace] (AT_INIT): Do not `set -v'.
14429         * tests/autotest.at: New file.
14430         * tests/suite.at: Include it.
14431         * tests/Makefile.am: Distribute it.
14433         * lib/autotest/general.m4 [--trace] (_AT_CHECK): Do not enable
14434           shell tracing on a command that could contain multiple lines.
14435         * doc/autoconf.text: Document that fact and its implications.
14436         * lib/m4sugar/m4sh.m4 (AS_ESCAPE_FOR_EXPAND): New macro.
14437         * tests/autotest.at (Multiline backquote command substitution,
14438           Multiline parameter expansion, Literal multiline command,
14439           Multiline parenthetical command substitution): Remove XFAIL.
14441 2004-12-09  Paul Eggert  <eggert@cs.ucla.edu>
14443         * doc/autoconf.texi (Libraries): Clarify problems with AC_CHECK_LIB
14444         and suggest AC_SEARCH_LIBS.  Suggested by Noah Misch and Stepan Kasal.
14446 2004-12-08  Noah Misch  <noah@cs.caltech.edu>
14448         * configure.ac (test suite): Cease to generate wrapper scripts.
14449         * configure: Regenerate.
14450         * lib/freeze.mk (MY_AUTOM4TE): Wrap the uninstalled autom4te directly.
14451         (m4f_dependencies): Adjust accordingly.
14452         * tests/Makefile.am (Wrappers): Generate wrapper scripts.
14453         (wrapper.in): Generate it in the build directory.
14454         (MAINTAINERCLEANFILES): Delete wrapper.in.
14455         (CLEANFILES): Add wrapper.in.
14456         * tests/wrapper.as: Move AS_INIT to very top, preserving copyright in
14457         the output.  Replace each $as_me with a @wrap_program@.
14458         * tests/wrapper.in: Delete it; we always build it.
14460         * bin/Makefile.am (autoconf.in): Generate it in the build directory.
14461         (EXTRA_DIST): Remove autoconf.in.
14462         (CLEANFILES): Add autoconf.in.
14463         (autoconf): Find autoconf.in in the build directory.
14464         * bin/autoconf.in: Delete it; we always build it.
14466 2004-12-08  Noah Misch  <noah@cs.caltech.edu>
14468         * lib/autotest/general.m4 (AT_INIT): Replace a `tr' with a `sed'.  Join
14469         PATH members so as to not prepend an empty element.  Move a comment.
14470         * Makefile.am (SUBDIRS): Build in `tests' last.
14471         * tests/Makefile.am (installcheck-local): Add check-local dependencies.
14473 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
14475         * lib/mdate-sh: Don't use "set - x`$ls_command /`", as zsh mishandles
14476         the spaces inside $ls_command.  Problem reported by Loulou Pouchet in
14477         <http://lists.gnu.org/archive/html/autoconf/2004-12/msg00074.html>.
14478         Don't use "set - x"; plain "set x" is enough, and simplifies debugging.
14480 2004-12-07  Stepan Kasal  <kasal@ucw.cz>
14482         * lib/autoconf/functions.m4 (AC_FUNC_GETMNTENT): Fix typo in previous
14483         patch: extra "-l"s.
14485 2004-12-06  Paul Eggert  <eggert@cs.ucla.edu>
14487         * lib/autoconf/functions.m4 (AC_FUNC_GETMNTENT): Check libc before
14488         looking elsewhere for getmntent.  Problem reported by Mark D. Baushke.
14489         * doc/autoconf.texi (Particular Functions): Mention new behavior.
14491 2004-12-03  Stepan Kasal  <kasal@ucw.cz>
14493         * lib/autoconf/general.m4 (AC_DEFINE, AC_DEFINE_UNQUOTED): Factor
14494           out the common code to ...
14495         (_AC_DEFINE_Q): ... a new macro; simplify the condition about the
14496           value of the #define--default to 1, iff the macro was called
14497           with exactly one parameter.
14499 2004-12-02  Paul Eggert  <eggert@cs.ucla.edu>
14501         * lib/autoconf/functions.m4 (AC_FUNC_MEMCMP): Use
14502         "char c = '\200';" rather than "char c = 0x80;" as the
14503         latter doesn't conform to the strict C standard due to
14504         overflow on signed char hosts.
14506         * lib/autoconf/c.m4 (_AC_PROG_CC_STDC): Prefer -qlanglvl=extc89
14507         to -qlanglvl=ansi.  We don't want to disable extensions.
14509 2004-11-29  Paul Eggert  <eggert@cs.ucla.edu>
14511         * doc/autoconf.texi (Particular Programs): @code{$PATH} -> @env{PATH}.
14512         (Using Autotest, testsuite Scripts, Writing testsuite.at):
14513         Reword slightly to avoid some English-language problems noted
14514         by Ralf Wildenhues in:
14515         http://lists.gnu.org/archive/html/autoconf-patches/2004-11/msg00027.html
14517 2004-11-29  Stepan Kasal  <kasal@ucw.cz>
14519         * NEWS: Add ^L above each release.
14521 2004-11-28  Paul Eggert  <eggert@cs.ucla.edu>
14523         Fix documentation problems reported by Russ Boylan in
14524         <http://lists.gnu.org/archive/html/bug-autoconf/2004-11/msg00056.html>,
14525         along with some nearby cruft.
14526         * doc/autoconf.texi (Libtool): Libtool can be used without
14527         Automake (not without Autoconf).
14528         (Introduction): Mention lists.gnu.org.
14529         * BUGS: Don't mention bugs.gnu.org.
14530         Remove mention of ancient libtool compatibility problem.
14531         * NEWS: Mention that bugs.gnu.org is kaput.
14532         * README: Likewise.  Mention where mailing list archives can be found.
14534 2004-11-28  Stepan Kasal  <kasal@ucw.cz>
14536         * lib/m4sugar/m4sh.m4 (AS_HELP_STRING): A typo in the comment.
14538 2004-11-26  Paul Eggert  <eggert@cs.ucla.edu>
14540         * doc/autoconf.texi (Pretty Help Strings): Go back to
14541         single-quoting assignments to cache variables.
14543 2004-11-23  Stepan Kasal  <kasal@ucw.cz>
14545         * doc/autoconf.texi (Pretty Help Strings): Fix quoting issues
14546         with the examples; fix the bug in MY_ARG_WITH example reported
14547         by Alexandre Duret-Lutz.
14548         * lib/autoconf/general.m4 (AC_ARG_ENABLE, AC_ARG_ENABLE): Enable
14549         expansion of $1 in the comment emitted to configure.
14551 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
14553         * doc/autoconf.texi (Pretty Help Strings): Fix typo
14554         in my editing of the previous patch.  Problem reported
14555         by Alexandre Duret-Lutz.
14557 2004-11-22  Stepan Kasal  <kasal@ucw.cz>
14559         * doc/autoconf.texi (Autoconf Language): Explain that
14560         ``descriptions'' may not be double quotes.
14561         (Quotation Rule Of Thumb): Likewise.
14562         (Pretty Help Strings): Likewise; remove the wrong comment;
14563         simplify the examples and improve their quoting.
14565 2004-11-13  Stepan Kasal  <kasal@ucw.cz>
14567         * lib/autoconf/programs.m4 (_AC_FEATURE_CHECK_LENGTH): Don't check
14568         the $1_found variable, don't test whether the file is executable;
14569         Both things are checked ...
14570         (_AC_PATH_PROG_FEATURE_CHECK): ... here; AS_EXECUTABLE_P replaces
14571         the former ``test -f''.
14572         * lib/m4sugar/m4sh.m4 (_AS_TEST_PREPARE): Fix a typo.
14574 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
14576         * doc/autoconf.texi (Limitations of Usual Tools): Avoid cp -r;
14577         use cp -R instead.
14579 2004-11-10  Derek R. Price  <derek@ximbiot.com>
14581         * doc/autoconf.texi (Limitations of Usual Tools): Note `cp -r'
14582         limitations.  Reorder paragraphs for clarity.
14584 2004-10-11  Paul Eggert  <eggert@cs.ucla.edu>
14586         * doc/autoconf.texi: Standardize spelling of "Posix" (as opposed
14587         to "POSIX" or "@acronym{POSIX}"), and similarly for "DOS
14588         variants", "Unix", and some related minor wording fixups.
14590         (Shellology, Special Shell Variables): Document that the Zsh
14591         problem with NULLCMD was fixed in zsh 3.1.6-dev-18.  Thanks
14592         to Alexandre Duret-Lutz for this info.
14594 2004-10-10  Alexandre Duret-Lutz  <adl@gnu.org>
14596         * doc/autoconf.texi (One-Shot Macros): New node.
14598 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
14600         * doc/autoconf.texi (Function Portability): Fix misdescription
14601         of putenv.  Problem reported by Michael Wardle.
14603 2004-09-22  Paul Eggert  <eggert@cs.ucla.edu>
14605         * doc/autoconf.texi (auindex): New macro.
14606         (AU_DEFUN): Use it to fix the bug when the index contained AC_AU_DEFUN.
14607         Problem reported by Stepan Kasal.
14609 2004-09-05  Paul Eggert  <eggert@cs.ucla.edu>
14611         Fix problems reported by Andreas Buening in:
14612         http://lists.gnu.org/archive/html/autoconf-patches/2004-04/msg00004.html
14613         * lib/autoconf/programs.m4 (AC_PROG_MAKE_SET): Set SHELL=/bin/sh
14614         in test makefile.
14615         * lib/autotest/general.m4 (AT_INIT): Don't assume /dev/null is
14616         readable; it's not true in OS/2-emx.
14618 2004-09-04  Paul Eggert  <eggert@cs.ucla.edu>
14620         * lib/autoconf/libs.m4 (_AC_PATH_X_XMKMF): If xmkmf returns
14621         "/usr/include", clear ac_x_includes instead of leaving it as "no"
14622         (trivial change).  Problem and patch reported by Andrew Church in:
14623         http://lists.gnu.org/archive/html/bug-autoconf/2004-04/msg00016.html
14625 2004-09-03  Paul Eggert  <eggert@cs.ucla.edu>
14627         * doc/autoconf.texi: Give AC_DEFINE and AC_DEFINE_UNQUOTED
14628         three args in examples.  Problem reported by Frederik Fouvry in:
14629         http://lists.gnu.org/archive/html/bug-autoconf/2004-09/msg00017.html
14630         Also, fix some minor spacing and punctuation bugs.
14632 2004-09-02  Akim Demaille  <akim@epita.fr>
14634         * doc/autoconf.texi (Limitations of Builtins): Swap "cd" and
14635         "case" to restore ordering.
14636         Reported by Stepan Kasal.
14638 2004-08-26  Akim Demaille  <akim@epita.fr>
14640         * doc/autoconf.texi: Minor typos and stylos.
14642 2004-08-20  Paul Eggert  <eggert@cs.ucla.edu>
14644         * configure.ac (AC_INIT): Bump to 2.59c.
14646 2004-08-20  Paul Eggert  <eggert@cs.ucla.edu>
14648         Version 2.59b.
14650         * README: Add advice about m4 1.4.2.
14652         * Makefile.cfg (wget_files): Remove config.guess, config.sub,
14653         texinfo.tex for now (done by hand now).
14654         * Makefile.maint (wget_files, cvs_files):
14655         Remove ansi2knr.c; nobody uses it.
14656         (ansi2knr.c-url_prefix): Remove.
14657         (cvs-update): Fix test for failure.  I don't know why it ever
14658         worked...
14660         * doc/autoconf.texi: Update URLs, some of which went stale.
14661         Use @uref rather than @href.
14663         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ARGS): Have configure
14664         handle "--" as per POSIX.  Suggested by Paul Pogonyshev.
14666         * config/config.guess, config/config.sub, config/elisp-comp,
14667         config/install-sh, config/mkinstalldirs, config/texinfo.tex,
14668         doc/fdl.texi, doc/standards.texi: Sync with master copy.
14670         * NEWS, TODO, configure.ac, bin/autoscan.in,
14671         bin/autoupdate.in, bin/ifnames.in, doc/autoconf.texi,
14672         doc/install.texi, lib/Autom4te/Configure_ac.pm,
14673         lib/Autom4te/FileUtils.pm, lib/autoconf/general.m4,
14674         lib/autoconf/programs.m4, lib/autoconf/status.m4,
14675         lib/autotest/general.m4, lib/m4sugar/m4sh.m4,
14676         lib/m4sugar/m4sugar.m4, tests/local.at, tests/m4sh.at,
14677         tests/tools.at, tests/torture.at:
14678         Use "file name" rather than "filename" or "path",
14679         to be consistent with the terminology of the GNU coding standards.
14681 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
14683         * lib/autoconf/c.m4 (AC_LANG_BOOL_COMPILE_TRY(C),
14684         AC_C_LONG_DOUBLE): Undo 2004-06-04 change, as it didn't work with
14685         HP-UX 11.23 cc/aCC or Tru64 4.0 cc.  Problem reported by Noah Misch in
14686         <http://lists.gnu.org/archive/html/autoconf/2004-07/msg00004.html>.
14688         More fixes to support spaces in the name of the build directory.
14689         This isn't a complete fix but it's an improvement.
14691         * bin/autoconf.as (autom4te_options): New var.
14692         Use it instead of appending to AUTOM4TE, so that we can allow
14693         spaces in the build directory's absolute name.
14694         * bin/autoheader.in ($autoconf): Allow spaces in file names.
14695         * lib/autotest/general.m4 (AT_INIT, AT_CLEANUP, _AT_CHECK,
14696         AT_CHECK_NOESCAPE): Likewise.
14697         * tests/wrapper.as (testdir, AUTOM4TE_CFG, autom4te_perllibdir,
14698         main program): Likewise.
14700 2004-08-18  Paul Eggert  <eggert@cs.ucla.edu>
14702         * lib/autoconf/general.m4 (_AC_INIT_HELP): Quote $ac_popdir uses.
14703         From Ralf Corsepius in:
14704         http://lists.gnu.org/archive/html/autoconf-patches/2004-08/msg00014.html
14706 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
14708         * doc/autoconf.texi (Function Portability): Document isinf and
14709         and isnan.  From a suggestion by Kevin Ryde.
14711         * lib/Autom4te/General.pm (END): Return correct exit status even
14712         if unlink succeeds and sets $?.  Needed with Solaris 8's perl 5.00503.
14714 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
14716         * tests/torture.at (Deep Package): Use configure.in, not configure.ac,
14717         for compatibility with Automake 1.4.  Reported by J C Fitzgerald in
14718         <http://lists.gnu.org/archive/html/bug-autoconf/2003-08/msg00051.html>.
14720 2004-08-04  Alexandre Duret-Lutz  <adl@gnu.org>
14722         * lib/autoconf/general.m4 (AC_REQUIRE_AUX_FILE): New empty macro.
14723         (AC_CANONICAL_BUILD): Call it to require config.sub and config.guess.
14724         * lib/autoconf/programs.m4 (AC_PROG_INSTALL): Likewise for install-sh.
14725         * doc/autoconf.texi (Input): Document AC_REQUIRE_AUX_FILE.
14726         * lib/autom4te.in (Automake-preselections): Preselect
14727         AC_REQUIRE_AUX_FILE.  Automake 1.10 will trace it.
14729 2004-08-02  Alexandre Duret-Lutz  <adl@gnu.org>
14731         * lib/autom4te.in (Automake-preselections): Preselect
14732         AC_CANONICAL_BUILD and AC_CANONICAL_TARGET.  Automake 1.9.1 will
14733         trace them.
14735 2004-07-29  Paul Eggert  <eggert@cs.ucla.edu>
14737         * lib/m4sugar/m4sh.m4 (_AS_BOURNE_COMPATIBLE): Set BIN_SH, for
14738         Tru64.
14739         * doc/autoconf.texi (Shellology): Mention BIN_SH.
14740         Document problem with "`""`" in pdksh POSIX mode.
14742 2004-07-27  Paul Eggert  <eggert@cs.ucla.edu>
14744         * lib/m4sugar/m4sh.m4 (_AS_BOURNE_COMPATIBLE): Use "set -o posix"
14745         with pdksh, too.  Problem reported by Patrick Welche via
14746         Gary V. Vaughan.
14747         * doc/autoconf.texi (Shellology): Note that set -o posix is
14748         useful for pkdsh, too.
14750 2004-06-24  Paul Eggert  <eggert@cs.ucla.edu>
14752         * lib/m4sugar/m4sh.m4 (_AS_DETECT_BETTER_SHELL): Require
14753         _AS_UNSET_PREPARE, so that we can use $as_unset directly.
14754         Don't fail if ENV or BASH_ENV is readonly.
14755         (AS_SHELL_SANITIZE): Don't fail if ENV, MAIL, MAILPATH, LC_ALL,
14756         etc. are read only.  Problem reported by Ludovic Courtes.
14758 2004-06-23  Noah Misch  <noah@cs.caltech.edu>
14760         * lib/m4sugar/m4sh.m4 (_AS_BOURNE_COMPATIBLE): If the shell is
14761         zsh, disable GLOB_SUBST to avoid backslash handling problems.
14762         (trivial change)
14764 2004-06-04  Paul Eggert  <eggert@cs.ucla.edu>
14766         * doc/autoconf.texi (File System Conventions): Warn about
14767         names like "aux".  Problem reported by Eric Blake.
14769         * lib/autoconf/c.m4 (AC_LANG_BOOL_COMPILE_TRY (C)): Use division
14770         by zero instead of array size, so that we can use any arithmetic
14771         constant expression (instead of requiring an integer constant
14772         expression).  This allows us to test expressions like DBL_MAX <
14773         LDBL_MAX, which didn't conform to the C standard using the old
14774         method.
14775         (AC_C_LONG_DOUBLE): Put back in the tests for LDBL_MAX and LDBL_EPSILON,
14776         now that we can do floating-point tests at compile time.
14778 2004-06-02  Paul Eggert  <eggert@cs.ucla.edu>
14780         * lib/autoconf/c.m4 (AC_C_LONG_DOUBLE): Don't check LDBL_MAX
14781         and LDBL_EPSILON, as the resulting expression isn't an
14782         integer constant expression and violates the C standard.
14783         Problem reported by Nelson H. F. Beebe.  Also, check
14784         for "L" suffix, and check that long double doesn't have
14785         worse range or precision than double, that mixed-mode
14786         arithmetic doesn't generate a diagnostic, that double
14787         constants fit in long double.
14789 2004-06-03  Kevin Ryde  <user42@zip.com.au>
14791         * doc/autoconf.texi (Function Portability): Add notes on free(NULL),
14792         malloc(0) and realloc(NULL,size).
14794         * doc/autoconf.texi (Shell Substitutions): Spelling error reported by
14795         Bob Proulx.
14797 2004-05-31  Paul Eggert  <eggert@cs.ucla.edu>
14799         * lib/autoconf/headers.m4 (HAVE_STDBOOL_H): Detect _Bool bug
14800         in HP aC++/ANSI C B3910B A.05.55 [Dec 04 2003].  Problem reported
14801         by Jim Meyering.
14803 2004-05-26  Paul Eggert  <eggert@cs.ucla.edu>
14805         * doc/autoconf.texi (Limitations of Builtins): Mention that ! COMMAND
14806         can be rewritten using if-then-else.  Suggested by Bruno Haible.
14808 2004-05-25  Paul Eggert  <eggert@cs.ucla.edu>
14810         * doc/autoconf.texi (testsuite Scripts): Fix typo.
14811         Problem reported by Stepan Kasal.
14813 2004-05-24  Paul Eggert  <eggert@cs.ucla.edu>
14815         * tests/Makefile.am (autoconfdir): Fix to match comment (trivial
14816         change).  Patch reported by Ralf Wildenhues in
14817         <http://mail.gnu.org/archive/html/bug-autoconf/2004-05/msg00092.html>.
14819         * lib/autoconf/functions.m4 (AC_FUNC_MBRTOWC): Don't assume that a
14820         function F exists if the compiler and linker let you compile an
14821         expression like (F != 0).  Recent versions of GCC optimize away
14822         the reference to F in that case, since every function address must
14823         be nonzero, so the link succeeds even if F does not exist.
14824         Problem reported by Manu in
14825         <http://mail.gnu.org/archive/html/bug-gnu-utils/2004-05/msg00060.html>.
14827         * doc/autoconf.texi (Systemology): Standardize on the spelling of
14828         "Unix".  Many uses changed.
14829         (Limitations of Builtins): Explain better why the ! command isn't
14830         portable.
14832 2004-05-22  Alexandre Duret-Lutz  <adl@gnu.org>
14834         * lib/autom4te.in (Automake-preselections): Preselect
14835         LT_SUPPORTED_TAG in lieu of AC_LIBTOOL_TAGS.
14837 2004-05-19  Kevin Ryde  <user42@zip.com.au>
14839         * doc/autoconf.texi (Function Portability): Add strerror_r, cross
14840         referencing AC_FUNC_STRERROR_R.
14842         * doc/autoconf.texi (Particular Functions): In AC_FUNC_CLOSEDIR_VOID,
14843         note pessimistic assumption when cross compiling.
14845 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
14847         * doc/autoconf.texi (Limitations of Make): Note that BSD make
14848         (until 2004) invoked subcommands with sh -e, contra POSIX.
14849         Reported by Kevin Ryde.
14851 2004-05-10  Eric Sunshine  <sunshine@sunshineco.com>
14853         * programs.m4 (_AC_PROG_GREP): Fixed bug where PATH argument handed to
14854         _AC_PATH_PROG_FEATURE_CHECK contained leading whitespace (i.e.
14855         "        $PATH:/usr/xpg4/bin"). This resulted in bogus tests, such as
14856         `test -f "        /usr/bin/grep"', which _always_ failed.
14857         (AC_PROG_SED): Ditto bogus PATH fix.
14858         * autoconf.texi (AC_PROG_GREP): Properly document that this macro
14859         requires that grep correctly supports _multiple_ `-e' options, rather
14860         than stating only that grep should accept `-e'.
14862 2004-05-03  Paul Eggert  <eggert@cs.ucla.edu>
14864         Port to C99, which requires that 'exit' be declared.
14866         * lib/autoconf/c.m4 (AC_C_BIGENDIAN): Use AC_INCLUDES_DEFAULT
14867         to ensure that stdlib.h is included.
14868         * lib/autoconf/functions.m4 (_AC_LIBOBJ_ALLOCA, AC_FUNC_SETPGRP,
14869         AC_FUNC_STRTOD, AC_FUNC_SETVBUF_REVERSED, AC_FUNC_FORK, _AC_FUNC_FORK,
14870         _AC_FUNC_VFORK, AC_FUNC_WAIT3): Likewise.
14871         * lib/autoconf/specific.m4 (AC_SYS_RESTARTABLE_SYSCALLS): Likewise.
14872         * lib/autoconf/types.m4 (AC_TYPE_GETGROUPS): Likewise.
14873         * lib/autoconf/headers.m4 (AC_HEADER_STDC): Include <stdlib.h>
14874         when using 'exit' in a test; C99 requires that 'exit' be declared.
14876 2004-05-02  Paul Eggert  <eggert@cs.ucla.edu>
14878         * doc/autoconf.texi (Particular Programs): AC_PROG_GREP
14879         now prefers 'grep' implementations that accept -e.
14880         (Limitations of Usual Tools): Describe problems of traditional
14881         egrep and fgrep with long input lines, and of traditional grep
14882         with -e.
14883         * lib/autoconf/programs.m4 (AC_PROG_GREP): Check for -e, too.
14884         (_AC_PROG_GREP): Assume 3rd arg is properly quoted for the shell.
14885         All callers changed.  Append /usr/xpg4/bin to the PATH, for
14886         Solaris.
14887         (_AC_FEATURE_CHECK_LENGTH): Discard stderr, so we don't bother
14888         the user with complaints about multiple -e options.
14889         * tests/local.at (AC_STATE_SAVE): Use $GREP, not grep.
14890         Define it with AC_PROG_GREP.
14891         * configure.ac (AC_PROG_GREP): Add.
14892         * lib/freeze.mk (GREP): New macro.
14894 2004-05-02  Eric Sunshine  <sunshine@sunshineco.com>
14896         * lib/m4sugar/m4sh.m4 (_AS_DETECT_BETTER_SHELL): Consult $SHELL as
14897         a possible candidate only after all others fail, rather than
14898         consulting it first.  This improves backward compatibility by
14899         better reflecting the way shell selection occurred in previous
14900         versions of Autoconf, and should help to avoid triggering latent
14901         problems in other packages, such as the one in Automake where zsh
14902         is not handled robustly:
14903         http://mail.gnu.org/archive/html/automake/2004-04/msg00095.html
14904         Although it is not Autoconf's responsibility to work around
14905         problems in Automake, it nevertheless makes sense to avoid
14906         introducing unnecessary incompatibilites.
14908 2004-04-22  Albert Chin-A-Young  <china@thewrittenword.com>,
14909             Gary V. Vaughan  <gary@gnu.org>
14911         * lib/autoconf/programs.m4 (_AC_FEATURE_CHECK_LENGTH): Don't guess
14912         how deeply nested we are when a suitable tool is found, set the
14913         ac_path_TOOL_found flag.
14914         (_AC_PATH_PROG_FEATURE_CHECK): Encapsulate knowledge of how deeply
14915         nested we are in this macro.  Break out of all 3 nested loops if
14916         ac_path_TOOL_found is set.
14918 2004-04-21  Gary V. Vaughan  <gary@gnu.org>
14920         * lib/autoconf/programs.m4 (_AC_FEATURE_CHECK_LENGTH): Break out
14921         of the _AS_PATH_WALK loop too if GNU flavor is found.
14923 2004-04-21  Alexandre Duret-Lutz  <adl@gnu.org>
14925         * doc/autoconf.texi (Limitations of Make): Update documentation
14926         for `$<'.  New entry `Long lines', based on a report from Simon
14927         Josefsson.  Augment the documentation for SHELL = @SHELL@ with a
14928         paragraph about DJGPP, based on a mail from Richard Dawe.
14930 2004-04-20  Paul Eggert  <eggert@twinsun.com>
14932         * tests/c.at (C keywords): Don't assume that GCC supports
14933         "restrict" and "inline", as sufficiently-old GCC versions do not
14934         (also, GCC configured to be in pedantic C89 mode does not).
14935         Problem reported by Sumit Pandya in:
14936         http://mail.gnu.org/archive/html/autoconf/2004-04/msg00092.html
14938         * lib/autoconf/c.m4 (_AC_PROG_CC_G, _AC_PROG_CXX_G): Don't
14939         consider -g to work if it generates warnings when plain compiles
14940         don't.  Problem reported by Braden McDaniel in:
14941         http://mail.gnu.org/archive/html/autoconf-patches/2003-07/msg00014.html
14943         * doc/autoconf.texi (Slashes): New section, to document a problem
14944         reported by Jim Meyering in:
14945         http://mail.gnu.org/archive/html/bug-coreutils/2004-02/msg00060.html
14947         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Remove potential
14948         linker output files before linking, to work around IRIX 6 linker bug.
14949         Problem reported by Rainer Orth in:
14950         http://mail.gnu.org/archive/html/autoconf-patches/2004-02/msg00007.html
14952 2004-04-20  Gary V. Vaughan  <gary@gnu.org>
14954         * lib/autoconf/programs.m4 (_AC_FEATURE_CHECK_LENGTH): Make the
14955         best tool so far counter rely on the tool path variable name to
14956         avoid checks for one tool being affected by the results of running
14957         the length check on a previous tool.
14959         * lib/autoconf/programs.m4 (_AC_PROG_GREP): Take an additional
14960         match expression argument, as different greps have different
14961         regular expression flavours.
14962         (AC_PROG_FGREP): Pass 'FGREP'. fgrep treats all match chars as
14963         literals.
14964         (AC_PROG_EGREP): Pass 'EGREP$'.
14965         (AC_PROG_GREP): Pass 'GREP$'.
14967 2004-04-20  Albert Chin-A-Young  <china@thewrittenword.com>
14969         * lib/autoconf/programs.m4 (AC_PROG_GREP): Cache variable
14970         is `ac_cv_path_GREP', not `oc_cv_path_GREP'.
14972 2004-03-29  Paul Eggert  <eggert@twinsun.com>
14974         * doc/autoconf.texi (Particular Headers, Particular Types, Generic
14975         Types, Specific Compiler Characteristics, System Services,
14976         Obsolete Macros): Use 'long int', 'short int', 'unsigned int'
14977         etc. consistently instead of 'long', 'short', 'unsigned' etc.
14978         * lib/autoconf/c.m4 (AC_LANG_INT_SAVE(C), AC_C_BIGENDIAN): Likewise.
14979         * lib/autoconf/functions.m4 (AC_FUNC_MMAP, AC_FUNC_SELECT_ARGTYPES):
14980         Likewise.
14981         * lib/autoconf/headers.m4 (AC_HEADER_SYS_WAIT): Likewise.
14982         * lib/autoconf/types.m4 (AC_TYPE_GETGROUPS, AC_TYPE_SIZE_T,
14983         AC_TYPE_OFF_T): Likewise.
14984         * tests/semantics.at (AC_CHECK_TYPES: backward compatibility):
14985         Likewise.
14987         * tests/foreign.at (Libtool): Create an empty aclocal.m4, to
14988         pacify libtool 1.5.2.  Fix quoting problems in sed command.
14990 2004-03-28  Paul Eggert  <eggert@twinsun.com>
14992         * doc/autoconf.texi (Particular Structures): AC_STRUCT_TIMEZONE
14993         now defines HAVE_DECL_TZNAME if it is declared, when
14994         HAVE_STRUCT_TM_TM_ZONE is not defined.
14995         * lib/autoconf/types.m4 (AC_STRUCT_TIMEZONE): Implement this.
14996         Do not assume atoi.  Rely on HAVE_DECL_TZNAME when testing
14997         for HAVE_TZNAME.
14999 2004-03-28  Steven G. Johnson  <stevenj@fftw.org>
15001         * lib/autoconf/fortran.m4 (_AC_PROG_FC_V_OUTPUT): Corrected
15002         superfluous backslashing of quotes (") in sed expressions;
15003         thanks to Paul Eggert.
15005 2004-03-26  Steven G. Johnson  <stevenj@alum.mit.edu>
15007         * lib/autoconf/fortran.m4 (_AC_PROG_FC): new name of Intel
15008         Fortran compiler is ifort, also added pghpf; thanks to Nelson
15009         H. F. Beebe for the bug report.
15011 2004-03-26  Steven G. Johnson  <stevenj@fftw.org>
15013         * lib/autoconf/fortran.m4 (_AC_PROG_FC_V_OUTPUT): fix for
15014         quoted -cmdline argument in Portland Group compiler (bug
15015         reported by Jeffrey J. Barteet).
15017 2004-03-25  Kevin Ryde  <user42@zip.com.au>
15019         * doc/autoconf.texi (Specifying Names): Move cross_compiling ovindex to
15020         (Run Time): ... here, where it's now mentioned.
15022 2004-03-19  Alexandre Duret-Lutz  <adl@gnu.org>
15024         * doc/autoconf.texi (autom4te Invocation): Language Autoconf
15025         inherits from language Autoconf-without-aclocal-m4.
15026         (Customizing autom4te): Adjust example; the cache must now be
15027         disabled for language Autoconf-without-aclocal-m4.
15029 2004-03-16  Paolo Bonzini  <bonzini@gnu.org>
15030             Nathanael Nerode  <neroden@twcny.rr.com>
15032         * lib/autoconf/programs.m4 (AC_PATH_TOOL, AC_CHECK_TOOL,
15033         AC_CHECK_TOOLS): Warn if a cross-tool is found without
15034         a prefix.
15035         (AC_PATH_TARGET_TOOL, AC_CHECK_TARGET_TOOL,
15036         AC_CHECK_TARGET_TOOLS): New macros.
15037         * doc/autoconf.texi (Generic Programs): Document
15038         (AC_PATH_TARGET_TOOL, AC_CHECK_TARGET_TOOL,
15039         AC_CHECK_TARGET_TOOLS, and warn for future changes
15040         in the behavior of AC_PATH_TOOL, AC_CHECK_TOOL and
15041         AC_CHECK_TOOLS.
15042         (Specifying Names): Document the reason for these future
15043         behavioral changes.
15044         * tests/mktests.sh: Do not generate tests for the
15045         new macros.
15046         * NEWS: Document these changes.
15048         * doc/autoconf.texi: Avoid macros with unbraced arguments,
15049         they make TeX hang up.
15051 2004-03-15  Paul Eggert  <eggert@bogus.example.com>
15053         * NEWS: New macro AC_CHECK_ALIGNOF.
15054         * doc/autoconf.texi (Generic Compiler Characteristics): Document it.
15055         * lib/autoconf/types.m4 (AC_CHECK_SIZEOF): Use long int rather than
15056         int; avoid "a `$1'" since this isn't grammatical if $1 begins with a
15057         vowel.
15058         (AC_CHECK_ALIGNOF): New macro.
15059         * tests/mktests.sh (ac_exclude_list): Exclude AC_CHECK_ALIGNOF.
15060         * tests/semantics.at (AC_CHECK_ALIGNOF): Add tests similar to
15061         those for sizeof.
15063 2004-03-03  Paul Eggert  <eggert@twinsun.com>
15065         * bin/Makefile.am (edit): Don't use $< in a context where
15066         POSIX doesn't require support for it.  Use $@.in instead.
15067         Problem reported by Anthony N. Frasso in
15068         <http://mail.gnu.org/archive/html/autoconf/2004-03/msg00008.html>.
15069         * bin/autoscan.in, bin/autoupdate.in: Add @configure_input@ comment.
15071 2004-02-23  Gary V. Vaughan  <gary@gnu.org>
15073         * bin/autoreconf.in (autoreconf_current_directory): Recognize LT_INIT
15074         from the next generation of Libtool.
15075         * lib/autom4te.in (Autoreconf-preselections): Ditto.
15077 2004-02-20  Alexandre Duret-Lutz  <adl@gnu.org>
15079         * doc/autoconf.texi (Limitations of Usual Tools) <mkdir>: `mkdir -p'
15080         is not always thread-safe.  Report from Nathanael Nerode.
15082 2004-02-18  Paul Eggert  <eggert@twinsun.com>
15084         Fix a dependencies problem, stemming from a Autoconf 2.59 build
15085         problem on QNX reported by Stephen Rasku in
15086         <http://mail.gnu.org/archive/html/bug-autoconf/2004-02/msg00066.html>.
15088         * bin/Makefile.am ($(srcdir)/autoconf.in): Depend on
15089         $(m4sh_m4f_dependencies); this removes a FIXME.
15090         * tests/Makefile.am ($(srcdir)/wrapper.in): Likewise.
15091         (MAINTAINERCLEANFILES): Split into pieces,
15092         one per related section.  Add $(srcdir)/wrapper.in.
15094 2004-02-09  Paul Eggert  <eggert@twinsun.com>
15096         * doc/autoconf.texi (Setting Output Variables): Emphasize that
15097         AC_SUBST provides no portable way to escape literal newlines.
15099         * lib/autoconf/fortran.m4 (_AC_FC_LIBRARY_LDFLAGS): Ignore all
15100         flags of the form -lcrt*.o, not just -lcrt[01].o and -lcrtbegin.o.
15101         Darwin uses -lcrt2.o and there's little point to cataloging all
15102         the system variants.  Partial fix reported by Andreas Waechter in:
15103         http://mail.gnu.org/archive/html/autoconf-patches/2004-02/msg00006.html
15104         for bug reported by Nelson H. F. Beebe in:
15105         http://mail.gnu.org/archive/html/bug-autoconf/2003-12/msg00090.html
15107 2004-02-04  Paolo Bonzini  <bonzini@gnu.org>
15109         * doc/autoconf.texi (AU_DEFUN): Fix English,
15110         suggested by Paul Eggert.
15111         * lib/autoconf/autoupdate.m4: Correct reference to
15112         acobsolete.m4, suggested by Alexandre Duret-Lutz.
15114 2004-02-02  Paolo Bonzini  <bonzini@gnu.org>
15116         * bin/autoupdate.in: Define __file__ so that warnings
15117         refer to the correct file.
15118         * doc/autoconf.texi (AU_DEFUN): Describe more correctly
15119         the behavior of the third argument.
15120         * lib/autoconf/autoupdate.m4 (AU_DEFUN): Describe more
15121         correctly the behavior of the third argument.  Document
15122         what the three macros that AU_DEFUN defines do.  Fix
15123         warning message when the third argument includes $0
15124         (reported by Alexandre Duret-Lutz).
15126 2004-01-30  Paolo Bonzini  <bonzini@gnu.org>
15127             Eric Sunshine  <sunshine@sunshineco.com>
15128             Paul Eggert  <eggert@twinsun.com>
15130         * lib/m4sugar/m4sh.m4 (M4SH-SANITIZE): New diversion.
15131         (AS_INIT): Output shell initialization there. Removed optional
15132         parameter. Expand _AS_SHELL_FN_SPY.
15133         (AS_INIT_WITH_SHELL_FN): Removed.
15134         (_AS_SHELL_FN_SPY): New macro.
15135         (AS_DETECT_REQUIRED, AS_DETECT_SUGGESTED): New
15136         macros.
15137         (AS_SHELL_SANITIZE): Remove loop to find better shell
15138         and documentation for the parameter.
15139         (_AS_DETECT_BETTER_SHELL): Move it here.
15140         (_AS_SHELL_FN_WORK): Remove shell invocation, reformat.
15141         (_AS_RUN): Move it here, support testing with eval.
15142         (AS_REQUIRE_SHELL_FN): Require shell functions when
15143         it is used.
15144         (_AS_LINENO_WORKS): Put around braces, we do not
15145         trigger the bash bug anymore.
15146         * lib/autotest/general.m4: Document M4SH-SANITIZE, do not
15147         use AS_INIT_WITH_SHELL_FN.
15148         * bin/autoconf.in, tests/wrapper.in: Regenerated.
15150 2004-01-30  Paolo Bonzini  <bonzini@gnu.org>
15152         * bin/autoupdate.in: Trace AU_DEFINE instead of AU_DEFUN.
15153         * doc/autoconf.texi: Don't say that the third parameter
15154         is broken.
15155         * lib/autoconf/autoupdate.m4 (AU_DEFINE): New dummy macro.
15156         (AU_DEFUN): Honor the third parameter, create autoupdate
15157         macros with AU_DEFINE.
15158         * lib/autoconf/headers.m4 (AC_USG, AC_MEMORY_H,
15159         AC_DIR_HEADER): Use AU_DEFUN's third parameter.
15160         * lib/autoconf/lang.m4 (AC_LANG_SAVE): Likewise.
15161         * lib/autoconf/programs.m4 (AC_RSH): Likewise.
15162         * lib/autoconf/specific.m4 (AC_HAVE_POUNDBANG,
15163         AC_ARG_ARRAY, AC_CYGWIN, AC_EMXOS2, AC_MINGW32,
15164         AC_XENIX_DIR): Likewise.
15165         * lib/autoconf/types.m4 (AC_INT_16_BITS, AC_LONG_64_BITS,
15166         AC_STRUCT_ST_BLKSIZE, AC_STRUCT_ST_RDEV): Likewise.
15167         * lib/autoconf/status.m4: Remove FIXME.
15168         * tests/local.at (AT_CHECK_AU_MACRO): Ignore stderr, check
15169         that the macro is not present anymore in the updated
15170         configure.ac.
15171         * tests/tools.at (autoupdate AC_LINK_FILES): Ignore stderr
15172         of autoupdate.
15174 2004-01-28  Paul Eggert  <eggert@twinsun.com>
15176         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): Add 2004 to
15177         copyright years.
15178         * lib/autoconf/general.m4 (_AC_INIT_COPYRIGHT): Add 1992 thorugh
15179         2003 (except 1997) to the list of copyright years.  This undoes
15180         the 2003-05-22 change, which removed the older years from the list.
15181         * lib/autoconf/status.m4 (AC_OUTPUT): Update copyright date to 2004.
15183 2004-01-27  Gary V. Vaughan  <gary@gnu.org>
15184             Albert Chin-A-Young  <china@thewrittenword.com>
15186         * lib/autoconf/programs.m4 (AC_PROG_GREP): New macro to test for a
15187         grep or ggrep program in PATH that accepts as long lines as
15188         possible.
15189         * lib/autoconf/programs.m4 (_AC_PROG_GREP): Factor out the core of
15190         AC_PROG_GREP.
15191         (AC_PROG_EGREP, AC_PROG_FGREP): Use it to find best available
15192         egrep and fgrep respectively if $GREP -E/-F don't work.
15193         (_AC_PATH_PROG_FEATURE_CHECK): Factor out the common core of
15194         _AC_PROG_GREP, and AC_PROG_SED.
15195         (_AC_FEATURE_CHECK_LENGTH): New helper macro for finding the
15196         longest input length accepted by a command.
15197         (AC_PROG_SED): Use it.
15198         * doc/autoconf.texi (Particular Programs): Document the changes.
15199         * NEWS: Updated.
15201 2004-01-27  Paul Eggert  <eggert@twinsun.com>
15203         * bin/autoconf.as ($version): Update copyright from 2003 to 2004.
15204         * bin/autoheader.in, bin/autom4te.in, bin/autoreconf.in,
15205         bin/autoscan.in, bin/autoupdate.in, bin/ifnames.in: Likewise.
15206         * lib/autoconf/general.m4 (_AC_INIT_COPYRIGHT): Likewise.
15208         * Makefile.in, aclocal.m4, configure, bin/Makefile.in,
15209         bin/autoconf.in, config/Makefile.in, config/config.guess,
15210         config/config.sub, config/install-sh, config/mdate-sh,
15211         config/mkinstalldirs, config/texinfo.tex, doc/Makefile.in,
15212         lib/Makefile.in, lib/Autom4te/Makefile.in,
15213         lib/autoconf/Makefile.in, lib/autoscan/Makefile.in,
15214         lib/autotest/Makefile.in, lib/emacs/Makefile.in,
15215         lib/m4sugar/Makefile.in, man/Makefile.in, man/autoconf.1,
15216         man/autoheader.1, man/autom4te.1, man/autoreconf.1,
15217         man/autoscan.1, man/autoupdate.1, man/config.guess.1,
15218         man/config.sub.1, man/ifnames.1, tests/Makefile.in,
15219         tests/acc.at, tests/acfortran.at, tests/acfunctions.at,
15220         tests/acgeneral.at, tests/acheaders.at, tests/aclang.at,
15221         tests/aclibs.at, tests/acspecific.at, tests/acstatus.at,
15222         tests/actypes.at: Regenerate and/or sync with original
15223         sources.
15225 2004-01-26  Paul Eggert  <eggert@twinsun.com>
15227         * doc/autoconf.texi (Default Includes): Include <stdint.h> even if
15228         HAVE_INTTYPES_H is defined.  This is needed on Tru64 5.1b with
15229         Compac C V6.5-207 (dtk), which defines uintmax_t in <stdint.h> but
15230         not <inttypes.h>.  Problem reported by Tim Mooney in
15231         <http://mail.gnu.org/archive/html/bug-coreutils/2004-01/msg00147.html>.
15232         * lib/autoconf/headers.m4 (_AC_INCLUDES_DEFAULT_REQUIREMENTS):
15233         Likewise.
15235         * lib/autoconf/programs.m4 (AC_PROG_SED): Use diff, not sed;
15236         otherwise "make check" fails because it forbids cmp (I guess
15237         because cmp treats files as binary on DOS-like systems).
15239         * tests/mktests.sh: Update copyright date to 2004, since some tests
15240         have changed in 2004.
15242 2004-01-23  Gary V. Vaughan  <gary@gnu.org>
15244         * lib/autoconf/programs.m4 (AC_PROG_SED):  New macro to test for a
15245         non-truncating sed or gsed program in PATH.
15246         * tests/acprograms.at: Add it.
15247         * doc/autoconf.texi (Particular Programs): Document it.
15248         * NEWS: Updated.
15250 2004-01-15  Paul Eggert  <eggert@twinsun.com>
15252         * lib/autoconf/c.m4 (_AC_PROG_CC_STDC): Try -std, not -std1, since
15253         -std1 disables some useful extensions on Tru64.  Problem reported
15254         by N. Lichtmaier in
15255         <http://mail.gnu.org/archive/html/autoconf/2004-01/msg00100.html>.
15257 2004-01-14  Paul Eggert  <eggert@twinsun.com>
15259         * doc/autoconf.texi (Programming in M4sh): Document that
15260         AS_MKDIR_P succeeds if the destination is a symbolic link
15261         to an existing directory.
15262         (Limitations of Usual Tools): Note that mkdir -p might not
15263         succeed on symlinks to directories.
15265 2004-01-13  Paul Hilfinger  <hilfinger@CS.Berkeley.EDU>
15267         * lib/autoconf/autoupdate.m4 (AU_DEFUN): Grammar fix in comment.
15268         * bin/autoheader.in: Grammar fix in message.
15269         * lib/m4sugar/m4sh.m4 (AS_MKDIR_P):
15270         Test for dir before calling mkdir -p.  (trivial changes)
15272 2004-01-13  Eric Blake  <ebb9@byu.net>
15274         * doc/autoconf.texi (Obsolete Macros): In AC_TRY_COMPILE and
15275         AC_TRY_LINK, s/AC_LANG_SOURCE/AC_LANG_PROGRAM/.  (trivial change)
15277 2004-01-10  Jim Meyering  <jim@meyering.net>
15279         * doc/autoconf.texi (Running the Preprocessor): Correct grammar.
15281 2004-01-09  Paul Eggert  <eggert@twinsun.com>
15283         * lib/autoconf/general.m4: Fix bug: AC_CHECK_SIZEOF evokes a warning
15284         with `autoconf -Wall,error'.  Bug reported by Eric Blake in:
15285         http://mail.gnu.org/archive/html/autoconf-patches/2004-01/msg00000.html
15286         (_AC_COMPUTE_INT_COMPILE): Invoke _AC_COMPILE_IFELSE, not
15287         AC_COMPILE_IFELSE, since we now assume our caller invokes
15288         AC_LANG_COMPILER_REQUIRE, for symmetry with _AC_COMPUTE_INT_RUN.
15289         (_AC_COMPUTE_INT_RUN): Likewise, for _AC_RUN_IFELSE instead
15290         of AC_RUN_IFELSE; this avoids the warning mentioned above.
15291         (_AC_COMPUTE_INT): Invoke AC_LANG_COMPILER_REQUIRE.
15293 2004-01-07  Paul Eggert  <eggert@twinsun.com>
15295         * lib/autoconf/general.m4 (_AC_LIBOBJS_NORMALIZE): Avoid \$ inside
15296         `"'...'"`, as it's confusing (and I suspect it may not work on
15297         some platforms).  The code was incorrect anyway, as it assumed
15298         that \$ evaluated to itself in that context.  Reported by
15299         Alexandre Duret-Lutz.
15301 2004-01-07  Alexandre Duret-Lutz  <adl@gnu.org>
15303         * lib/autom4te.in (Automake-preselections): Preselect AC_LIBTOOL_TAGS
15304         and _LT_AC_TAGCONFIG.
15306 2004-01-06  Paul Eggert  <eggert@twinsun.com>
15308         * doc/autoconf.texi (One Macro Call): Fix an incorrect
15309         example, and add more examples.  Reported by Eric Sunshine.
15311 2004-01-05  Paul Eggert  <eggert@twinsun.com>
15313         * doc/autoconf.texi (Limitations of Usual Tools):
15314         Remove warning against "rm -fr" introduced yesterday; it
15315         was a false alarm.
15317         * bin/Makefile.am (autoconf, autoheader, autom4te, autoreconf,
15318         autoscan, autoupdate, ifnames): Don't use chmod -w.
15319         * lib/Makefile.am (autom4te.cfg): Likewise.
15320         * doc/autoconf.texi (Limitations of Usual Tools): Warn against
15321         "chmod -w".
15323 2004-01-04  Paul Eggert  <eggert@twinsun.com>
15324             Paolo Bonzini  <bonzini@gnu.org>
15326         * lib/m4sugar/m4sh.m4 (_AS_LINENO_PREPARE): Speed up sed scripts
15327         by doing lineno substitution only on lines containing "$LINENO".
15329 2004-01-04  Paul Eggert  <eggert@twinsun.com>
15331         * lib/autoconf/general.m4 (AC_ARG_PROGRAM):
15332         Use "rm -f" to remove conftest.sed, not plain "rm".
15333         Bug reported by David Relson in
15334         <http://mail.gnu.org/archive/html/autoconf/2004-01/msg00011.html>.
15336         * Makefile.am (autom4te-update):
15337         Replace "rm -rf" and "rm -fr" with "rm -f -r", as POSIX requires.
15338         * Makefile.maint (my-distcheck, do-po-update): Likewise.
15339         * doc/autoconf.texi (Guidelines): Likewise.
15340         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Likewise.
15341         * lib/autoconf/libs.m4 (_AC_PATH_X_XMKMF): Likewise.
15342         * lib/autoconf/specific.m4 (AC_SYS_LONG_FILE_NAMES): Likewise.
15343         * lib/autotest/general.m4 (AT_INIT): Likewise.
15344         * lib/m4sugar/m4sh.m4 (AS_TMPDIR): Likewise.
15345         * tests/Makefile.am (clean-local): Likewise.
15346         * tests/tortue.at (AC_CONFIG_FILES, HEADERS, LINKS and COMMANDS,
15347         srcdir): Likewise.
15348         * doc/autoconf.texi (Limitations of Usual Tools):
15349         Warn against "rm -fr".
15351 2004-01-03  Paul Eggert  <eggert@twinsun.com>
15353         * doc/autoconf.texi (Limitations of Usual Tools): Mention that cc
15354         -c -o might not work.  From a suggestion by Kevin Ryde.
15355         (C Compiler, Generating Sources, Limitations
15356         of Usual Tools, Limitations of Make, Making testsuite Scripts):
15357         Don't put '-o' after non-options, as POSIX doesn't allow this.
15358         Mention that cc's name might be gcc or c89 or whatever.
15360 2004-01-04  Kevin Ryde  <user42@zip.com.au>
15362         * doc/autoconf.texi: Add various further index entries.
15364 2003-12-29  Paul Eggert  <eggert@twinsun.com>
15366         * bin/autoreconf.in (autoreconf_current_directory):
15367         Fix typo: mkdir without umask arg.
15369 2003-12-27  Alexandre Duret-Lutz  <adl@gnu.org>
15371         * doc/autoconf.texi (Limitations of Make) <Automatic rule rewriting>:
15372         Documents OSF1/Tru64 make behavior.  Replace `VPATH = ../src' by
15373         `VPATH = ../pkg/src' in examples to make the OSF1/Tru64 make
15374         explanation clearer.
15376 2003-12-24  Andreas Schwab  <schwab@suse.de>
15378         * doc/autoconf.texi (Default Includes): Fix misspelling of
15379         AC_INCLUDES_DEFAULT.
15381 2003-12-03  Paolo Bonzini  <bonzini@gnu.org>
15383         * configure.ac: Test if sh -n works.
15384         * configure: Regenerate.
15385         * tests/atlocal.in: Store the result here.
15386         * tests/local.at (AT_CHECK_SHELL_SYNTAX): Extracted from
15387         tools.at, looking in atlocal's ac_cv_sh_n_works instead
15388         of explicitly testing.
15389         (AT_CHECK_PERL_SYNTAX): Moved from tools.at.
15390         (AT_CHECK_AUTOCONF): Test for the configure script syntax.
15391         * tests/tools.at (Syntax of the shell scripts): Simplify
15392         using AT_CHECK_SHELL_SYNTAX.
15393         (Syntax of the Perl scripts): Remove definition of
15394         AT_CHECK_PERL_SYNTAX.
15396 2003-12-03  Paolo Bonzini  <bonzini@gnu.org>
15398         * lib/m4sugar/m4sh.m4 (_AS_SHELL_FN_WORK): Redirect
15399         stderr to /dev/null.
15400         * bin/autoconf.in: Regenerate.
15401         * bin/wrapper.in: Regenerate.
15403 2003-11-26  Paolo Bonzini  <bonzini@gnu.org>
15405         * lib/m4sugar/m4sh.m4 (_AS_BOURNE_COMPATIBLE):
15406         Extracted from AS_SHELL_SANITIZE.
15407         (_AS_SHELL_FN_WORK, AS_INIT_WITH_SHELL_FN): New
15408         macros.
15409         (AS_SHELL_SANITIZE): Move reinvocation code from
15410         _AS_LINENO_WORKS, use it to find out if shell
15411         functions work.
15412         (_AS_LINENO_WORKS): Don't find another shell if $LINENO
15413         does not work.
15414         (AS_INIT): Pass parameter down to AS_SHELL_SANITIZE.
15415         (AS_REQUIRE_SHELL_FN): Test that AS_INIT_WITH_SHELL_FN
15416         was called.
15417         * lib/autotest/general.m4: Use AS_INIT_WITH_SHELL_FN.
15418         * bin/autoconf.in: Regenerate.
15419         * tests/wrapper.in: Regenerate.
15420         * tests/tools.at: Test the syntax of tests/autoconf
15421         and tests/testsuite.
15423 2003-11-24  Akim Demaille  <akim@epita.fr>
15425         * config/announce-gen (&print_locations, &print_signatures)
15426         (&sizes): New.
15427         Use them.
15428         No longer rely on Gnus to inline the list of signatures: compute
15429         them on the fly.
15431 2003-11-24  Akim Demaille  <akim@epita.fr>
15433         * doc/autoconf.texi (Particular Programs): AC_PROG_LEX can
15434         override some files.
15435         (Input): AC_CONFIG_AUX_DIR(aux) is a bad idea on DOS.
15436         From Debian Autoconf 2.58.
15438 2003-11-24  Akim Demaille  <akim@epita.fr>
15440         * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): Quote $ac_popdir
15441         uses.
15442         From Debian Autoconf 2.58.
15444 2003-11-24  Paolo Bonzini  <bonzini@gnu.org>
15446         * TODO: Remove already done things.  Update the part about finding
15447         tools for the target.
15449 2003-11-24  Paolo Bonzini  <bonzini@gnu.org>
15451         * lib/autoconf/headers.m4 (AC_USG, AC_MEMORY_H, AC_DIR_HEADER):
15452         Make wording more consistent.
15453         * lib/autoconf/specific.m4 (AC_CYGWIN, AC_EMXOS2, AC_MINGW32):
15454         Explain the transition better.
15455         * lib/autoconf/types.m4 (AC_INT_16_BITS, AC_LONG_64_BITS): Explain
15456         the transition better.
15458 2003-11-24  Paolo Bonzini  <bonzini@gnu.org>
15460         * doc/autoconf.texi (Obsoleting Macros): Don't document the third
15461         parameter of AU_DEFUN.
15462         * lib/autoconf/autoupdate.m4 (AU_DEFINE): Remove.
15463         (AU_DEFUN): Remove the third parameter, it was not used.
15464         Use AC_DEFUN directly, not AU_DEFINE.
15465         * lib/autoconf/status.m4 (AC_LINK_FILES): Move the message into
15466         the expanded body, consistently with other macros such as AC_USG.
15468 2003-11-17  Paul Eggert  <eggert@twinsun.com>
15470         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Put at least 14 bytes
15471         into the initial confdefs.h, to work around a bug in NextStep 3.3
15472         patch 3 reported by Eric Sunshine.
15474 2003-11-15  Kevin Ryde  <user42@zip.com.au>
15476         * doc/autoconf.texi (Using System Type): Revise, showing $host rather
15477         than $target since the latter is not usual, add guidelines on when to
15478         use or not use the system type.
15480 2003-11-12  Derek Price  <derek@ximbiot.com>
15482         * doc/autoconf.texi (Limitations of Usual Tools): Fix what looks like a
15483         typo misrepaired by an auto-spellcheck.
15485 2003-11-12  Akim Demaille  <akim@epita.fr>
15487         * bin/autoreconf.in (&parse_args): Don't call automake with
15488         --force-missing unless it actually supports it.
15489         From Debian #219336.
15491 2003-11-12  Akim Demaille  <akim@epita.fr>
15493         * configure.ac: Bump to 2.59a.
15494         Require 2.59.
15496 2003-11-06  Akim Demaille  <akim@epita.fr>
15498         Version 2.59.
15500 2003-11-05  Alexandre Duret-Lutz  <adl@gnu.org>
15502         * lib/autoconf/status.m4 (_AC_SRCPATHS): Fix use of AS_SET_CATFILE
15503         so that ac_abs_builddir, ac_abs_top_builddir, ac_abs_srcdir,
15504         and ac_abs_top_srcdir are absolute paths.
15505         * lib/m4sugar/m4sh.m4 (AS_SET_CATFILE): Remove misleading comment.
15507 2003-11-05  Akim Demaille  <akim@epita.fr>
15509         * configure.ac: Bump to 2.58a.
15511 2003-11-05  Kevin Ryde  <user42@zip.com.au>
15513         * doc/autoconf.texi (Using Autotest): Avoid @strong{Note: ...}, since
15514         it provokes a warning from makeinfo about looking like a cross
15515         reference in info output.
15517         * doc/autoconf.texi (Function Portability): Add notes on signal
15518         handler return type, as per AC_TYPE_SIGNAL.
15520 2003-11-04  Akim Demaille  <akim@epita.fr>
15522         Version 2.58.
15523         * doc/standards.texi: Update from master.
15525         * tests/mktests.sh (ac_exclude_list): Add AC_FC_FREEFORM.
15527 2003-11-04  Akim Demaille  <akim@epita.fr>
15529         AC_CONFIG_FILE([d1/foo:d2/foo]) triggers error messages when
15530         computing the absolute path to d1 in the source hierarchy: it may
15531         not exist at all.  So don't cd into it.
15532         From Alexandre Duret-Lutz.
15533         http://mail.gnu.org/archive/html/bug-autoconf/2003-10/msg00205.html
15535         * lib/m4sugar/m4sh.m4 (AS_SET_CATFILE): New.
15536         From Paul Eggert, but named after Perl's IO::Spec->catfile.
15537         * doc/autoconf.texi (Programming in M4sh): Document.
15538         * lib/autoconf/status.m4 (_AC_SRCPATHS): Use it.
15540 2003-11-03  Pavel Roskin  <proski@gnu.org>
15542         * doc/autoconf.texi (Generic Structure Checks): Describe
15543         action-if-found and action-if-not-found in AC_CHECK_MEMBERS.
15545 2003-10-31  Akim Demaille  <akim@epita.fr>
15547         * tests/fortran.at (GNU Fortran 77): Don't run FC macros.
15548         (GNU Fortran): New.
15549         * doc/autoconf.texi (Language Choice): Document.
15550         * lib/autoconf/fortran.m4 (AC_FC_SRCEXT, AC_FC_FREEFORM): Assert
15551         the current language is Fortran.
15553 2003-10-31  Akim Demaille  <akim@epita.fr>
15555         * bin/autom4te.in (&freeze): Use a less likely warning separator
15556         than `\n\n', so that `\n\n\n' is valid in warnings.
15557         Reported by Steve Huston.
15559 2003-10-28  Akim Demaille  <akim@epita.fr>
15561         * Makefile.cfg (local_updates, executable-update): Tweak to be
15562         robust to parallel makes.
15563         Suggested by Alexandre Duret-Lutz.
15565 2003-10-27  Akim Demaille  <akim@epita.fr>
15567         * Makefile.cfg (executable-update): New.
15568         (local_updates): Call it.
15570 2003-10-27  Akim Demaille  <akim@epita.fr>
15572         * lib/autoconf/general.m4 (_AC_RUN_IFELSE, _AC_INIT_PREPARE):
15573         Don't remove core.* as it may remove valid user files.
15574         * lib/autoconf/functions.m4 (AC_FUNC_SETVBUF_REVERSED)
15575         (AC_FUNC_UTIME_NULL): Likewise.
15577 2003-10-23  Akim Demaille  <akim@epita.fr>
15579         Version 2.57g.
15580         * config/config.guess, config/config.sub: Upgrade from masters.
15582 2003-10-23  Akim Demaille  <akim@epita.fr>
15584         * lib/autoconf/fortran.m4 (AC_FC_SRCEXT): Functions using
15585         AC_COMPILE_IFELSE that use break skip the clean up.  So do it by
15586         hand...
15588 2003-10-23  Akim Demaille  <akim@epita.fr>
15590         * lib/autoconf/general.m4 (_AC_LINK_IFELSE, _AC_COMPILE_IFELSE):
15591         Don't forget to remove conftest.err.
15593 2003-10-23  Akim Demaille  <akim@epita.fr>
15595         * lib/autoconf/general.m4 (_AC_LIBOBJ): Don't insert twice the
15596         same object file in $LIBOBJS.
15597         Reported by Alexandre Duret-Lutz & Derek Robert Price.
15598         * doc/autoconf.texi (Generic Functions): Adjust.
15600 2003-10-20  Paul Eggert  <eggert@twinsun.com>
15602         * lib/m4sugar/m4sh.m4 (_AS_TR_SH_PREPARE, _AS_TR_CPP_PREPARE):
15603         Use 'eval', so that the resulting configure scripts work even if
15604         the current directory has a weird file name like 'y%s+%pp%;s%@%_%g'.
15606 2003-10-20  Daniel Jacobowitz  <drow@mvista.com>
15608         * lib/autoconf/lang.m4 (AC_LANG_WERROR): New macro.
15609         * lib/autoconf/general.m4 (_AC_COMPILE_IFELSE, _AC_PREPROC_IFELSE)
15610         (_AC_LINK_IFELSE): Check the werror flag.
15611         * doc/autoconf.texi (Generic Compiler Characteristics): Document
15612         AC_LANG_WERROR.
15613         * NEWS: Mention it.
15615 2003-10-20  Daniel Jacobowitz  <drow@mvista.com>
15617         * lib/autoconf/lang.m4 (AC_NO_EXECUTABLES): Override
15618         _AC_COMPILER_EXEEXT to attempt a link.  If linking fails,
15619         override AC_LINK_IFELSE.
15621 2003-10-15  Paul Eggert  <eggert@twinsun.com>
15623         * lib/m4sugar/m4sh.m4 (_AS_UNSET_PREPARE): Work around a bug in
15624         pdksh 5.2.14.  Bug reported by Ralf Corsepius.
15625         * doc/autoconf.texi (Shellology): Mention the Korn shell and pdksh.
15626         Mention /usr/dt/bin/dtksh on Solaris.
15627         (Shell Substitutions): Warn about $((...)).
15628         (Parentheses): New section.
15630 2003-10-15  Kevin Ryde  <user42@zip.com.au>
15632         * doc/autoconf.texi (Function Portability): Add @prindex for exit.
15633         Add putenv and unsetenv.  Add sysconf _SC_PAGE_SIZE.
15635 2003-10-13  Nathanael Nerode  <neroden@gcc.gnu.org>
15637         * lib/autoconf/functions.m4 (AC_FUNC_FORK): Trivial fix for vfork
15638         cross test.
15640 2003-10-11  Steven G. Johnson  <stevenj@alum.mit.edu>
15642         * lib/autoconf/fortran.m4 (_AC_PROG_FC): Use the new official
15643         name for the GNU Fortran 95+ compiler, 'gfortran', not 'g95'.
15645 2003-10-10  Andreas Schwab  <schwab@suse.de>
15647         * bin/autoheader.in: Avoid empty first line in --version and
15648         --help output.
15649         * bin/ifnames.in: Likewise.
15651 2003-10-09  Paul Eggert  <eggert@twinsun.com>
15653         * lib/Autom4te/XFile.pm: Don't assume -j is solo.
15654         Issue a more-informative diagnostic.
15655         Problems reported by Eric Sunshine.
15657 2003-10-08  Steven G. Johnson  <stevenj@alum.mit.edu>
15659         * lib/autoconf/fortran.m4 (_AC_PROG_FC_V_OUTPUT): Omit quoted
15660         -mGLOB_options_string stuff for Intel ifc, which can cause
15661         _AC_FC_LIBRARY_LDFLAGS to fail.  Use (faster) case for
15662         pattern-matching instead of grep.
15664 2003-10-08  Steven G. Johnson  <stevenj@alum.mit.edu>
15666         * doc/autoconf.texi: Document new FC Fortran macros.
15668 2003-10-08  Gary V. Vaughan  <gary@gnu.org>
15670         * lib/autoconf/general.m4 (AC_CONFIG_MACRO_DIR): Stub out a macro
15671         that future autopoint/aclocal/automake/autoreconf will be able
15672         to trace to find where to install local m4 macros.
15673         * doc/autoconf.texi (Input): Document it.
15674         * NEWS: Updated.
15676 2003-10-06  Gary V. Vaughan  <gary@gnu.org>
15678         * lib/autoconf/fortran.m4 (_AC_FC_LIBRARY_LDFLAGS): Add
15679         -lcrtbegin.o to list of ignored flags and fix underquoting of
15680         -lcrt[01].o.
15682 2003-10-04  Steven G. Johnson  <stevenj@ab-initio.mit.edu>
15684         * lib/autoconf/fortran.m4 (_AC_PROG_FC_G): Use language-specific
15685         cache variable instead of $G77 to decide whether to include -O2,
15686         since $G77 is specific to Fortran 77.
15688 2003-10-03  Steven G. Johnson  <stevenj@alum.mit.edu>
15690         * lib/autoconf/fortran.m4 (AC_FC_FREEFORM): Support Absoft "-f
15691         free" flag.  Re-order flags tested into rough order of popularity.
15693 2003-10-03  Steven G. Johnson  <stevenj@alum.mit.edu>
15695         * lib/autoconf/fortran.m4 (AC_PROG_FC): Reverse the order of the
15696         arguments so that it can be used with syntax identical to
15697         AC_PROG_F77, and so that we can more easily decide to
15698         remove/deprecate the DIALECT optional argument in the future if it
15699         proves troublesome.
15700         (AC_FC_FREEFORM): Exit 77 upon failure to fix test suite for
15701         non-freeform-supporting compilers.  Document freeform flags.
15703 2003-10-03  Akim Demaille  <akim@epita.fr>
15705         * configure.ac: Look for emacs, not macs.
15706         Reported by Eric Sunshine.
15708 2003-10-03  Akim Demaille  <akim@epita.fr>
15710         * lib/autom4te.in (Autoreconf-preselections): Trace AC_CONFIG_AUX_DIR.
15711         * bin/autoreconf.in (autoreconf_current_directory): Create the
15712         AUX_DIR if needed, for sake of automake --add-missing etc.
15713         Suggested by Alexandre Duret-Lutz.
15715 2003-10-03  Akim Demaille  <akim@epita.fr>
15717         * configure.ac: Quotation and formatting changes.
15718         (EMACS): Don't set it if it is not recent enough to support
15719         autoconf-mode.el.
15720         From Eric Sunshine.
15722 2003-10-02  Akim Demaille  <akim@epita.fr>
15724         * bin/ifnames.in (&scan_file): Skip C++ comments.
15725         From Jeremy Yallop.
15727 2003-10-01  Pavel Roskin  <proski@gnu.org>
15729         * doc/autoconf.texi (Particular Structure Checks):
15730         Fix misspelling of HAVE_STRUCT_STAT_ST_BLOCKS.
15732 2003-10-01  Akim Demaille  <akim@epita.fr>
15734         Version 2.57f.
15736 2003-09-30  Paul Eggert  <eggert@twinsun.com>
15738         * lib/Autom4te/XFile.pm: Use Errno.
15739         (lock): Ignore ENOLCK errors.  Problem reported Andreas Schwab in
15740         <http://mail.gnu.org/archive/html/bug-autoconf/2003-09/msg00141.html>.
15742 2003-09-30  Akim Demaille  <akim@epita.fr>
15744         * config/announce-gen (&print_news_deltas): Extracted from...
15745         (&print_changelog_deltas): here.
15746         (&news_file): Rename as...
15747         (@news_file): this.
15749 2003-09-30  Nicolas Joly  <njoly@pasteur.fr>
15751         * lib/autoconf/fortran.m4 (_AC_PROG_FC): Remove files which might
15752         have been created when invoking the compiler.
15753         * tests/fortran.at (GNU Fortran 77): Quote $G77.
15755 2003-09-29  Akim Demaille  <akim@epita.fr>
15757         Version 2.57e.
15759         * config/mkinstalldirs: Upgrade.
15761 2003-09-28  Paul Eggert  <eggert@twinsun.com>
15763         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Set DUALCASE=1, for MKS sh.
15764         Problem reported by Lars J. Aas in
15765         <http://mail.gnu.org/archive/html/autoconf/2003-07/msg00042.html>.
15766         (_AS_MKDIR_P_PREPARE): Change "rm -fr ./-p" to the more-conservative
15767         "test -d ./-p && rmdir ./-p".  Suggested by Andreas Schwab in:
15768         http://mail.gnu.org/archive/html/autoconf-patches/2003-09/msg00039.html
15770 2003-09-26  Akim Demaille  <akim@epita.fr>
15772         * lib/autoconf/status.m4 (_AC_OUTPUT_COMMANDS): Make sure the
15773         directory for AC_CONFIG_COMMANDS' first argument exists.
15774         This makes valid the invocation of _AC_SRCPATH that follows.
15775         Reported by Eric Sunshine.
15776         * doc/autoconf.texi (Configuration Commands): Adjust.
15778 2003-09-26  Akim Demaille  <akim@epita.fr>
15780         * bin/autoscan.in (Autom4te::FileUtils): Use it for find_file.
15781         Reported by Ralf Corsepius.
15783 2003-09-26  Akim Demaille  <akim@epita.fr>
15785         * lib/autoconf/general.m4 (AC_HELP_STRING): Don't overquote the
15786         arguments.
15787         Actually, use AU_ALIAS.
15788         From Bruno Haible.
15790 2003-09-26  Paul Eggert  <eggert@twinsun.com>
15792         * lib/m4sugar/m4sh.m4 (_AS_MKDIR_P_PREPARE): If mkdir -p . fails,
15793         rm -fr ./-p to remove junk left behind on NextStep and OpenStep.
15794         Problem reported by Eric Sunshine in:
15795         http://mail.gnu.org/archive/html/autoconf-patches/2002-12/msg00014.html
15797 2003-09-26  Akim Demaille  <akim@epita.fr>
15799         The test suite are sometimes assigning timings incorrectly.
15800         Reported by Henk Krus.
15801         Diagnosed by Nicolas Joly.
15803         * lib/autotest/general.m4 (AT_CLEANUP): Rename AT_help as
15804         AT_help_all.
15805         Instead of making AT_help a sequence of assignments to grow
15806         $at_help_all, just make AT_help_all be the growing contents of
15807         $at_help_all, and make a single assignment in...
15808         (AT_INIT): here.
15809         (at_times_skip): Flip the meaning and rename as...
15810         (at_times_p): this.
15811         (AT_INIT): When summarizing the test that ran, remove
15812         $at_times_file after use, and check it is present before trying to
15813         use it.
15815 2003-09-25  Akim Demaille  <akim@epita.fr>
15817         Version 2.57d.
15819         * bin/Makefile.am (edit): Handle '@configure_input@'.
15820         (autoconf, autoheader, autom4te, autoreconf, autoscan, autoupdate)
15821         (ifnames): chmod -w.
15822         * tests/wrapper.as (AUTOCONF, AUTOM4TE, ): Point to tests/
15823         executables, not bin/ executables!  Otherwise all the magic needed
15824         to find non installed files is turned off.  This caused a failure
15825         of test 40 and 41 that ran aclocal 1.8 which in turn ran autom4te
15826         as found in its environment (sent by tests/autoreconf): pointing
15827         to bin/autom4te that could not find its files.
15828         * tests/mktests.sh: Force the replacement of generated files, for
15829         the sake of "mv" program that are interactive when overwriting a
15830         -w file.
15831         * config/install-sh: Upgrade from CVS Automake.
15833 2003-09-23  Paul Eggert  <eggert@twinsun.com>
15835         * doc/autoconf.texi (Limitations of Builtins): Document test -h
15836         versus test -L issues.
15838 2003-09-23  Daniel Jacobowitz  <drow@mvista.com> and
15839             Paul Eggert  <eggert@twinsun.com>
15841         Trivial change to support GCC's configuration procedure.
15842         * lib/autoconf/c.m4 (AC_PROG_CPP_WERROR): New macro.
15843         * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_MONGREL): Don't warn
15844         about inconsistency if the preprocessor is set to give errors for
15845         any warning.
15846         * doc/autoconf.texi (C Compiler Characteristics): Document this.
15848 2003-09-13  Alexandre Duret-Lutz  <adl@gnu.org>
15850         * Makefile.am (autom4te-update, autom4te_files): Fetch Struct.pm
15851         and XFile.pm from Automake.
15852         * lib/Autom4te/XFile.pm: Update from Automake.
15854 2003-09-12  Akim Demaille  <akim@epita.fr>
15856         Version 2.57c.
15858 2003-09-12  Akim Demaille  <akim@epita.fr>
15860         * config/config.guess, config/config.sub, config/missing,
15861         * lib/Autom4te/Channels.pm, lib/Autom4te/Configure_ac.pm: Update
15862         from masters.
15864 2003-09-12  Akim Demaille  <akim@epita.fr>
15866         * doc/autoconf.texi (Header Portability): Promote linux/types.h,
15867         not asm/types.h.
15869 2003-09-11  Akim Demaille  <akim@epita.fr>
15871         * doc/autoconf.texi (Header Portability): linux/random.h.
15872         From Peter Hendrickson.
15874 2003-09-10  Akim Demaille  <akim@epita.fr>
15876         * tests/mktests.sh (au_exclude_egrep): Make it harder to be
15877         willing to edit the output files.
15879 2003-09-10  Akim Demaille  <akim@epita.fr>
15881         * tests/fortran.at (GNU Fortran 77): Also exercise AC_FC_SRCEXT
15882         and AC_FC_FREEFORM.
15883         * tests/mktests.sh: Skip AC_FC_SRCEXT.
15884         * lib/autoconf/fortran.m4 (AC_FC_SRCEXT, AC_FC_FREEFORM): Likewise.
15886 2003-09-09  Akim Demaille  <akim@epita.fr>
15888         * lib/Autom4te/FileUtils.pm (&update_file): s/cannot not/cannot/g.
15889         Reported by Gary Vaughan.
15890         * bin/autom4te.in (handle_m4): Likewise.
15892 2003-09-09  Akim Demaille  <akim@epita.fr>
15894         * lib/Autom4te/FileUtils.pm (&update_file): Be sure not to leave
15895         trailing files.
15897 2003-09-07  Paul Eggert  <eggert@twinsun.com>
15899         * lib/autoconf/specific.m4 (AC_SYS_RESTARTABLE_SYSCALLS):
15900         Improve the accuracy of the wording about obsolescence.
15901         From a suggestion by Ian Lance Taylor in
15902         <http://mail.gnu.org/archive/html/autoconf/2003-09/msg00044.html>.
15904 2003-09-05  Paul Eggert  <eggert@twinsun.com>
15906         * lib/autoconf/fortran.m4 (AC_FC_FREEFORM): Try -ffree-form too,
15907         for the benefit of g77 3.2.  Fix suggested by Steven G. Johnson.
15909 2003-09-04  Akim Demaille  <akim@epita.fr>
15911         * tests/mktests.sh (ac_exclude_list): Fix the filtering of
15912         AC_FUNC_WAIT3.
15914 2003-09-04  Akim Demaille  <akim@epita.fr>
15916         * bin/autom4te.in: Use &fatal where more appropriate than &error.
15917         (freeze): When exiting, use $exit_code.
15918         * lib/autoconf/fortran.m4: Comment changes.
15920 2003-09-04  Akim Demaille  <akim@epita.fr>
15922         * tests/mktests.sh (ac_exclude_list): Add AC_FC_FUNC.
15924 2003-09-02  Steven G. Johnson  <stevenj@alum.mit.edu>
15926         Add support for newer Fortran dialects.  The F77 interface is
15927         unchanged, and continues to support Fortran 77.  New FC macros
15928         correspond to all the old F77 macros, with output variables FC,
15929         FCFLAGS, and FCLIBS.  AC_PROG_FC defaults to picking the newest
15930         available dialect, but older dialects can be specified.  There are
15931         new macros AC_FC_SRCEXT to set the source extension, and
15932         AC_FC_FREEFORM to accept free-form source files.
15934         * lib/autoconf/c.m4 (_AC_LANG_PREFIX(C), _AC_LANG_PREFIX(C++)):
15935         New macros.
15936         (AC_LANG_PROGRAM(C)): Invoke _AC_LANG_PROGRAM_C_FC_HOOKS if defined.
15937         * lib/autoconf/fortran.m4 (AC_LANG(Fortran), _AC_FORTRAN_ASSERT,
15938         _AC_LANG_ABBREV(Fortran), _AC_LANG_PREFIX(Fortran 77),
15939         _AC_LANG_PREFIX(Fortran), _AC_FC, AC_LANG_SOURCE(Fortran),
15940         AC_LANG_PROGRAM(Fortran), AC_LANG_CALL(Fortran),
15941         AC_LANG_PREPROC(Fortran), AC_LANG_COMPILER(Fortran),
15942         _AC_FC_DIALECT_YEAR, _AC_F95_FC, _AC_F90_FC, _AC_F77_FC,
15943         _AC_PROG_FC, AC_PROG_FC, _AC_PROG_FC_G, _AC_PROG_FC_C_O,
15944         AC_PROG_FC_C_O, _AC_PROG_FC_V_OUTPUT, _AC_PROG_FC_V,
15945         _AC_FC_LIBRARY_LDFLAGS, AC_FC_LIBRARY_LDFLAGS, _AC_FC_DUMMY_MAIN,
15946         AC_FC_DUMMY_MAIN, _AC_FC_MAIN, AC_FC_MAIN, __AC_FC_NAME_MANGLING,
15947         _AC_FC_WRAPPERS, AC_FC_WRAPPERS, _AC_FC_FUNC, AC_FC_FUNC,
15948         AC_FC_SRCEXT, AC_FC_FREEFORM):
15949         New macros.
15950         (AC_PROG_F77, AC_PROG_F77_C_O, AC_F77_LIBRARY_LDFLAGS,
15951         AC_F77_DUMMY_MAIN, AC_F77_MAIN, _AC_F77_NAME_MANGLING,
15952         AC_F77_NAME_MANGLING, AC_F77_WRAPPERS, AC_F77_FUNC):
15953         Rewrite in terms of the above.
15954         (_AC_PROG_F77_G, _AC_PROG_F77_V_OUTPUT, _AC_PROG_F77_V): Remove.
15955         * lib/autoconf/lang.m4 (_AC_LANG_PREFIX): New macro.
15956         * tests/acfortran.at: Test AC_FC_FREEFORM, AC_FC_FUNC,
15957         AC_FC_MAIN, AC_FC_SRCEXT, AC_FC_WRAPPERS, AC_PROG_FC_C_O.
15959 2003-09-02  Paul Eggert  <eggert@twinsun.com>
15961         * doc/autoconf.texi (Limitations of Usual Tools, Limitations of Make):
15962         Document problems with timestamp resolution that 'make', 'cp -p', and
15963         'touch -r' have.
15965 2003-08-27  Akim Demaille  <akim@epita.fr>
15967         * tests/m4sugar.at (cross_warning): Make sure to enable the
15968         output, so that we can track spurious m4sugar output.
15969         * tests/local.at: Require 2.57.
15970         (AT_CHECK_M4SUGAR, AT_CHECK_M4SH): Don't m4_default the arguments that
15971         are defaulted by AT_CHECK anyway.
15972         Use AT_CHECK_AUTOM4TE.
15973         * lib/m4sugar/m4sugar.m4: There should be no output at all: add a
15974         missing dnl.
15976 2003-08-27  Akim Demaille  <akim@epita.fr>
15978         * bin/autoheader.in: Issue the "Using auxiliary..." message only
15979         when -Wobsolete is set.
15980         Set it on by default.
15981         Suggested by Klee Dienes.
15983 2003-08-27  Akim Demaille  <akim@epita.fr>
15985         * doc/autoconf.texi (AC_FUNC_FSEEKO, AC_SYS_LARGEFILE): More
15986         documentation.
15987         From Guido Draheim.
15989 2003-08-26  Akim Demaille  <akim@epita.fr>
15991         * doc/autoconf.texi (Output): Make clear that one can run code
15992         after AC_OUTPUT.
15994 2003-08-25  Akim Demaille  <akim@epita.fr>
15996         * config/announce-gen, GNUmakefile, Makefile.maint: Update from
15997         CVS Bison.
15999 2003-08-25  Alexandre Duret-Lutz  <adl@gnu.org>
16001         * bin/autoreconf.in (parse_args): Do not pass --no-force to
16002         Automake versions prior to 1.8.
16004 2003-08-25  Akim Demaille  <akim@epita.fr>
16006         * doc/autoconf.texi (Header Portability): netinet/if_ether.h.
16007         From Ville Karaila.
16009 2003-08-24  Akim Demaille  <akim@epita.fr>
16011         * configure.ac: Bump to 2.57c.
16013 2003-08-22  Akim Demaille  <akim@epita.fr>
16015         Version 2.57b.
16017         * Makefile.cfg (local-checks-to-skip): New.
16018         * Makefile.maint (local-check): Rename as...
16019         (local-checks-available): this.
16020         (local-check): New.
16022         * Makefile.am (EXTRA_DIST): Add Makefile.cfg.
16023         * configure.ac: Require Automake 1.7.6.
16025 2003-08-22  Akim Demaille  <akim@epita.fr>
16027         Output stack traces in warnings.
16029         * lib/m4sugar/m4sugar.m4 (_m4_warn): New.
16030         Replace the former...
16031         (m4_warn): Pass the call stack to _m4_warn.
16032         * bin/autom4te.in: Adjust to output the call stack.
16033         * tests/m4sugar.at (m4@&t@_warn): Adjust.
16035 2003-08-22  Akim Demaille  <akim@epita.fr>
16037         * lib/Autom4te/Request.pm, lib/Autom4te/C4che.pm: New.
16038         * bin/autom4te.in: Adjust.
16040 2003-08-21  Akim Demaille  <akim@epita.fr>
16042         * lib/Autom4te/General.pm (&file_name_is_absolute): Remove.
16043         (&verbose): Remove.
16044         (&getopt): Adjust the note and verb channels, depending upon
16045         --verbose.
16046         * bin/autoheader.in, bin/autom4te.in, bin/autoscan.in,
16047         * bin/autoupdate.in: Adjust.
16048         Use &verb, not &verbose.
16050 2003-08-21  Akim Demaille  <akim@epita.fr>
16052         * bin/autoheader.in (&parse_args): Use &parse_warnings and
16053         &parse_WARNINGS.
16054         ($help): Use Autom4te::ChannelDefs::usage.
16055         * bin/autoscan.in: Use Autom4te::ChannelDefs.
16056         * lib/Autom4te/General.pm: Don't export error: you don't own it.
16058 2003-08-21  Akim Demaille  <akim@epita.fr>
16060         First stab at preserving warnings between calls to autom4te,
16061         including when the cache is used.
16063         There are still several issues: (i) there are too many runs of m4
16064         (one for include, one for warnings, and some more), (ii) warnings
16065         spreading on several lines are not handled gracefully, (iii) the
16066         code meant to have the call stack display for errors does not work
16067         (its handling should move from m4 to autom4te).
16069         * bin/autom4te.in Autom4te::Channels, Autom4te::ChannelDefs):
16070         Use them.
16071         (@preselect): Add m4_warn.
16072         ($exit_status): Remove, use $exit_code.
16073         ($help): Use Autom4te::ChannelDefs::usage.
16074         (&handle_m4): No longer define the m4_warnings.
16075         At each run, extract and report the warnings.
16076         Always cache the result, including if the exit status is on
16077         failure, since if nothing changes, we should result in the same
16078         failure, hence we can use the cache.
16079         * lib/m4sugar/m4sugar.m4 (m4_warning_ifelse, _m4_warning_ifelse)
16080         (_m4_warning_error_ifelse, __m4_warning_error_ifelse, _m4_warn):
16081         Remove.
16082         (m4_warn): Redefine as a do-nothing: it is its invocation that
16083         matters, as warnings are now reported via traces.
16084         * lib/autoconf/general.m4 (AC_DIAGNOSE): Don't make it a copy of
16085         the contents of m4_warn: make it _call_ m4_warn, so that tracing
16086         the latter reveals calls to the former.
16088         Adjust the tests.
16090         * tests/m4sugar.at (m4@&t@_warn): Use existing warning categories.
16092 2003-08-21  Akim Demaille  <akim@epita.fr>
16094         * bin/autoreconf.pm (Autom4te::Channels, Autom4te::ChannelDefs):
16095         Use them.
16097 2003-08-21  Akim Demaille  <akim@epita.fr>
16099         * lib/Autom4te/FileUtils.pm (&find_file): Walk the @include in
16100         forward order.
16101         * lib/Autom4te/ChannelDefs.pm: Doc typos.
16102         (&parse_warnings): Accept a list of warning requests.
16103         (&usage): Return a string, not a side effect.
16104         (cross): New warning category.
16106 2003-08-21  Akim Demaille  <akim@epita.fr>
16108         * lib/Autom4te/Configure_ac.pm (&find_configure_ac)
16109         (&require_configure_ac): Accept an optional directory argument.
16110         ($configure_ac): Remove.
16111         * lib/Autom4te/General.pm (&find_configure_ac, &canonfile)
16112         (&catfile): Remove.
16113         * bin/autoheader.in, bin/autoreconf.in, bin/autoupdate.in,
16114         * bin/autoscan.in: Adjust.
16116 2003-08-20  Akim Demaille  <akim@epita.fr>
16118         * bin/autoheader.in: Remove duplicate 'use Autom4te::FileUtils'.
16119         Reported by Alexandre Duret-Lutz.
16121 2003-08-20  Akim Demaille  <akim@epita.fr>
16123         * bin/autoupdate.in, bin/autoheader.in, bin/autoreconf.in,
16124         * bin/autom4te: Adjust.
16125         In particular, be Autoconf tools are really silent when properly
16126         working, bind the verbosity of the 'note' channel to $verbose.
16127         * lib/Autom4te/General.pm (&find_file, &mtime, &update_file)
16128         (&xsystem, &contents): Remove, since they are exported by...
16129         * lib/Autom4te/FileUtils.pm: this.
16130         More perldoc.
16131         * lib/Autom4te/General.pm (&up_to_date_p): Move to...
16132         * lib/Autom4te/FileUtils.pm: here.
16134 2003-08-20  Akim Demaille  <akim@epita.fr>
16136         * lib/Autom4te/Channels.pm, lib/Autom4te/ChannelDefs.pm
16137         * lib/Autom4te/Configure_ac.pm, lib/Autom4te/FileUtils.pm: New,
16138         from CVS Automake.
16140 2003-08-20  Akim Demaille  <akim@epita.fr>
16142         * Makefile.am (automake_cvsweb, automake_cvsargs, autom4te_files)
16143         (autom4te-update): New.
16144         * Makefile.cfg (update): Bind autom4te-update.
16146 2003-08-19  Derek Price  <derek@ximbiot.com>
16148         * lib/autotest/general.m4: Comment various HELP_* diversions.
16149         (PARSE_ARGS_BEGIN): New section for option parsing related
16150         initialization.
16151         (AT_ARG_OPTION,AT_ARG_OPTION_ARG,_AT_ARG_OPTION): New macros to define
16152         package specific options and associated help.
16154 2003-08-19  Akim Demaille  <akim@epita.fr>
16156         * config/announce-gen, Makefile.cfg: New.
16157         * Makefile.am: Adjust.
16158         * GNUmakefile, Makefile.maint: Update from CVS Coreutils.
16160 2003-08-19  Alexandre Duret-Lutz  <adl@gnu.org>
16162         * lib/autom4te.in (Automake-preselections): Preselect
16163         AC_CONFIG_LIBOBJ_DIR, AC_CONFIG_LINKS, m4_include,
16164         and m4_sinclude.
16166 2003-08-19  Alexandre Duret-Lutz  <adl@gnu.org>
16168         * lib/autom4te.in (Autoconf): Move all args except aclocal.m4? into ...
16169         (Autoconf-without-aclocal-m4): ... this new language.
16170         * doc/autoconf.texi (autom4te Invocation): Mention
16171         Autoconf-without-aclocal-m4.
16173 2003-08-18  Derek Price  <derek@ximbiot.com>
16175         * doc/autoconf.texi (Writing testsuite.at): Document RUN-IF-FAIL &
16176         RUN-IF-PASS optional arguments.
16178 2003-08-18  Derek Price  <derek@ximbiot.com>
16180         * doc/autoconf.texi (Programming in M4sh): Add doc for AS_IF.
16182 2003-08-16  Derek Price  <derek@ximbiot.com>
16184         * doc/autoconf.texi (Writing testsuite.at): Document defaults for
16185         STDOUT & STDERR arguments.
16187 2003-08-14  Derek Price  <derek@ximbiot.com>
16189         * lib/autotestgeneral.m4 (AT_INIT): Reformat test summary line to print
16190         DESCRIPTION rather than FILE and LINE.  Shorten result to fit in new,
16191         shorter column three.  Add DESCRIPTION to log file content.
16193 2003-08-13  Derek Price  <derek@ximbiot.com>
16195         * lib/autotest/general.m4 (AT_INIT): Correct typo in final status
16196         output.
16198 2003-08-12  Derek Price  <derek@ximbiot.com>
16200         * lib/autotest/general.m4 (AT_CHECK): Use new _AT_CHECK API.
16201         (AT_CHECK_NOESCAPE): Move core functionality to...
16202         (_AT_CHECK): ...this new macro.
16204 2003-08-07  Derek Price  <derek@ximbiot.com>
16206         * lib/autotest/general.m4 (AT_CHECK): Move core functionality...
16207         (AT_CHECK_NOESCAPE): ...to this new macro.
16209 2003-07-31  Paul Eggert  <eggert@twinsun.com>
16211         * lib/m4sugar/m4sh.m4 (_AS_UNSET_PREPARE): Work around a bug
16212         in Bash 2.01.  Problem reported by Brian Gough in
16213         <http://mail.gnu.org/archive/html/bug-autoconf/2003-07/msg00106.html>.
16215 2003-07-25  John W. Eaton  <jwe@bevo.che.wisc.edu>
16217         * lib/autoconf/fortran.m4 (AC_F77_LIBRARY_LDFLAGS): Also ignore
16218         -lcrt1.o, for OS X.  (trivial change)
16220 2003-07-07  Paul Eggert  <eggert@twinsun.com>
16222         * lib/autoconf/c.m4 (AC_C_INLINE): Wrap the '#define inline ...'
16223         inside '#ifndef __cplusplus'.  Problem reported by
16224         Bob Friesenhahn.
16226 2003-07-06  Bill Clarke  <llib@computer.org>
16228         * lib/autoconf/functions.m4 (AC_FUNC_MMAP): Cast pointer to
16229         'long', not 'int', for benefit of Sun's recent C++ compilers
16230         (trivial change).  See:
16231         http://mail.gnu.org/archive/html/autoconf-patches/2003-07/msg00007.html
16232         (This really should be 'intptr_t', not 'long', but that would
16233         take more work.)
16235 2003-06-25  Akim Demaille  <akim@epita.fr>
16237         * lib/Makefile.am (autom4te.cfg): Make it read only.
16238         Depend on Makefile since it contains substitutions.
16239         From Paolo Bonzini.
16240         * lib/autom4te.in (args): Add local.at? for Autotest args.
16241         This change was made on autom4te.cfg which is generated.
16242         Reported by Raja R. Harinath.
16244 2003-06-25  Akim Demaille  <akim@epita.fr>
16246         * doc/autoconf.texi (Header Portability): sys/mount.h.
16247         From Gareth McCaughan.
16249 2003-06-23  Akim Demaille  <akim@epita.fr>
16251         * lib/autotest/general.m4 (AT_INIT): Report a single config.log,
16252         not all of them.  This fixes 1. the fact that when testing
16253         Autoconf there are many many config.log, 2. the incorrect use of
16254         top_srcdir to find config.log.
16255         Don't mix the detailed output of failed test with the summary of
16256         failures.  Rather, append detailed log afterwards.
16258 2003-06-23  Akim Demaille  <akim@epita.fr>
16260         * tests/local.at (AT_CHECK_CONFIGURE): Adjust to the verbose being
16261         always run: output config.log on $at_group_log.
16263 2003-06-23  Akim Demaille  <akim@epita.fr>
16265         * tests/torture.at (#define header templates): Don't use quotes in
16266         C++ comments as it puzzles Emacs' sh font-lock-mode.
16268 2003-06-23  Akim Demaille  <akim@epita.fr>
16270         * tests/mktests.sh (au_exclude_egrep): Fix output copyright notice.
16271         * lib/autom4te.cfg (args): Add local.at? for Autotest args.
16272         * tests/atspecific.m4: Rename as...
16273         * tests/local.at: This.
16274         * tests/suite.at: Move the globals into...
16275         * tests/local.at: here.
16276         * tests/Makefile.am: Adjust.
16277         * doc/autoconf.texi (testsuite Scripts): Adjust.
16279 2003-06-21  Kevin Ryde  <user42@zip.com.au>
16281         * lib/autoconf/c.m4 (_AC_PROG_CC_STDC): Extend test program to get an
16282         error from OSF 4.0 Compaq cc in its default almost-ANSI mode, thereby
16283         ensuring we add -std1 for full-ANSI.
16285         * doc/autoconf.texi (hdrindex): New macro.
16286         Add index entries for portability of various standard header files.
16288 2003-06-20  Akim Demaille  <akim@epita.fr>
16290         * configure.ac: Bump to 2.57b.
16292 2003-06-20  Akim Demaille  <akim@epita.fr>
16294         Version 2.57a.
16296 2003-06-20  Akim Demaille  <akim@epita.fr>
16298         * bin/autom4te.in: Don't rely on $HOME being defined.
16299         Reported by Marc Espie as PR/233.
16301 2003-06-20  Akim Demaille  <akim@epita.fr>
16303         * lib/autotest/general.m4: Use at_times_file only if used.
16304         From Nicolas Joly.
16306 2003-06-20  Akim Demaille  <akim@epita.fr>
16308         * config/config.guess, config/config.sub, config/elisp-comp,
16309         * config/install-sh, config/mkinstalldirs, doc/standards.texi:
16310         Update from masters.
16312 2003-06-11  Paolo Bonzini  <bonzini@gnu.org>
16314         * doc/autoconf.texi (Writing testsuite.at): Document AT_XFAIL_IF
16315         * lib/autotest/general.m4 (AT_XFAIL_IF): New macro.
16316         (TEST_SCRIPT): New diversion.
16317         (AT_SETUP): Divert output to TEST_SCRIPT and move some code...
16318         (AT_CLEANUP): ...to here.  Undivert TEST_SCRIPT.
16319         (AT_INIT): Support for expected failures.
16321 2003-06-02  Akim Demaille  <akim@epita.fr>
16323         * bin/autom4te.in, bin/autoscan.in, bin/autoheader.in: White space
16324         changes.
16325         * lib/Autom4te/General.pm (&backname): Remove, no longer used by
16326         Autoconf nor Automake.
16327         (&contents): New, from Automake.
16328         PODify.
16330 2003-05-28  Paul Eggert  <eggert@twinsun.com>
16332         * NEWS, doc/autoconf.texi (Particular Functions),
16333         lib/autoconf/functions.m4 (AC_FUNC_MKTIME): Check that mktime
16334         is the inverse of localtime.
16336 2003-05-25  Alexandre Duret-Lutz  <adl@gnu.org>
16338         * lib/Autom4te/General.pm (END): Print diagnostics to STDERR.
16339         (handle_exec_errors): New function.  Work around $! being
16340         altered by WEXITSTATUS.
16341         (xqx, xsystem): Use handle_exec_errors.
16343 2003-05-23  Alexandre Duret-Lutz  <adl@gnu.org>
16345         * lib/Autom4te/General.pm (END): Rewrite exit code processing.
16346         Do not call `_exit()', simply modify `$?'.
16347         (xsystem): Reset $! before running system, and check it afterward.
16348         * tests/tools.at (autoupdating AC_PREREQ): Expect exit status
16349         63 for version mismatches.
16351 2003-05-23  Akim Demaille  <akim@epita.fr>
16353         * lib/autoconf/status.m4: Prefer "TAB-SP" to "SP-TAB", because of
16354         Emacs' dangerous whitespace.el behavior (smashing "useless" spaces in
16355         the middle of a line).
16356         * lib/m4sugar/m4sugar.m4: Likewise.
16357         Remove useless spaces in comments.
16359 2003-05-23  Akim Demaille  <akim@epita.fr>
16361         * lib/m4sugar/m4sugar.m4 (m4_version_prereq): Failure causes an
16362         exit 63, so that we (or Automake's "missing") can tell the
16363         difference with a plain failure.
16364         * doc/autoconf.texi (Notices): Adjust.
16366 2003-05-23  Akim Demaille  <akim@epita.fr>
16368         * Makefile.am, bin/Makefile.am, config/Makefile.am,
16369         * doc/Makefile.am, lib/autoconf/Makefile.am, tests/Makefile.am:
16370         White spaces cleanup.
16372 2003-05-22  Jim Meyering  <jim@meyering.net>
16373             Paul Eggert  <eggert@twinsun.com>
16375         * lib/autoconf/c.m4 (_AC_PROG_CXX_EXIT_DECLARATION):
16376         Remove `#include <stdlib.h>' from the list; we should never
16377         make confdefs.h include <stdlib.h> or <cstdlib>, because the
16378         resulting namespace pollution would cause other tests to fail.
16379         Configure scripts run with some older versions of g++ and HP's
16380         aCC would fail due to such an #include.  Problems reported by
16381         Matthew Mueller in <http://bugs.debian.org/120704> and by
16382         Keith Bostic in
16383         <http://mail.gnu.org/archive/html/autoconf/2003-05/msg00063.html>.
16384         In the test, use the test declaration before including <stdlib.h>,
16385         as that's closer to how it'll be used.
16387 2003-05-23  Akim Demaille  <akim@epita.fr>
16389         * doc/autoconf.texi (Header Portability): ucred.h.
16390         From Ian Redfern.
16392 2003-05-22  Paolo Bonzini  <bonzini@gnu.org>
16394         Overhaul Autotest's logging: generate separate log files
16395         in testsuite.dir/NNN/testsuite.log, and append them to
16396         testsuite.log instead of re-running the test verbosely.
16398         * lib/autotest/general.m4 (AT_INIT): Use a single redirected
16399         file descriptor, write 0 to at_status_file instead of setting
16400         at_status=0, initialize some new variables (at_status_file,
16401         at_group_log, at_suite_log, at_tee_pipe).  Remove the cruft
16402         to rerun the tests, instead append the at_group_log to the
16403         at_suite_log when a test fails.
16404         (AT_SETUP): pipe the test case's output into at_tee_pipe,
16405         with the AS_MESSAGE_LOG_FD redirected to stdout.
16406         (AT_CLEANUP): save the output status in $at_status_file
16407         and restore it, redirect the AS_MESSAGE_LOG_FD back to
16408         its original place.
16409         (AT_CHECK): since tests are run with a redirected stdout,
16410         and used to be re-run in verbose mode, turn some $at_verbose
16411         into echo, and don't redirect the output of testing stdout
16412         and stderr.
16414         * lib/autotest/autoconf.texi (testsuite Scripts): Update
16415         the name of the debugging directory and information about
16416         its contents.
16418 2003-05-22  Paolo Bonzini  <bonzini@gnu.org>
16420         * lib/m4sugar/m4sh.m4 (AS_REQUIRE): Actually use the 2nd
16421         parameter.
16423 2003-05-22  Akim Demaille  <akim@epita.fr>
16425         * lib/autoconf/autotest.m4, lib/autoconf/autoupdate.m4
16426         * lib/autoconf/fortran.m4 lib/autoconf/general.m4
16427         * lib/autoconf/headers.m4 lib/autoconf/oldnames.m4
16428         * lib/autoconf/status.m4: Fix and adjust copyright notices.
16430 2003-05-22  Akim Demaille  <akim@epita.fr>
16432         * aclocal.m4, bin/autoconf.as, lib/autoconf/autoconf.m4,
16433         * lib/autoconf/autoheader.m4, lib/autoconf/autoupdate.m4,
16434         * lib/autoconf/c.m4, lib/autoconf/fortran.m4,
16435         * lib/autoconf/general.m4, lib/autoconf/headers.m4,
16436         * lib/autoconf/lang.m4, lib/autoconf/libs.m4,
16437         * lib/autoconf/programs.m4, lib/autoconf/specific.m4,
16438         * lib/autoconf/status.m4, lib/autoconf/types.m4,
16439         * lib/autotest/general.m4, lib/m4sugar/m4sugar.m4,
16440         * tests/atspecific.m4, tests/base.at, tests/compile.at,
16441         * tests/foreign.at, tests/m4sh.at, tests/semantics.at,
16442         * tests/tools.at, tests/torture.at:
16443         Whitespace clean up.
16444         Suggested by Jim Meyering.
16446 2003-05-22  Akim Demaille  <akim@epita.fr>
16448         * lib/autoconf/functions.m4 (AC_FUNC_GETLOADAVG): Restore smashed
16449         ' \t' as '\t ' so that Emacs' whitespace.el keep it.
16450         Reported by Jim Meyering.
16452 2003-05-22  Akim Demaille  <akim@epita.fr>
16454         * doc/autoconf.texi: Replace AC_HELP_STRING AS_HELP_STRING.
16455         Add AC_HELP_STRING  to the obsolete macros section.
16456         Typos.
16457         Use '@.' for sentences that ended in a capital letter.
16458         From Art Haas.
16460 2003-05-22  Akim Demaille  <akim@epita.fr>
16462         * config/config.guess, config/config.sub, config/elisp-comp,
16463         * config/install-sh, config/mdate-sh, config/mkinstalldirs,
16464         * config/texinfo.tex, doc/standards.texi: Update from masters.
16466 2003-05-21  Paolo Bonzini  <bonzini@gnu.org>
16468         * lib/m4sugar/m4sh.m4 (AS_VAR_SET): Escape the RHS before passing
16469         it to eval.
16471 2003-05-21  Akim Demaille  <akim@epita.fr>
16473         * bin/autoupdate.in ($m4): Fix quotation.
16474         Reported by Martin Mokrejs.
16476 2003-05-19  Paul Eggert  <eggert@twinsun.com>
16478         * ChangeLog, ChangeLog.2, THANKS, lib/m4sugar/m4sugar.m4:
16479         Remove non-ASCII characters.
16481 2003-05-18  Paolo Bonzini  <bonzini@gnu.org>
16483         * tests/semantics.at (AC_SEARCH_LIBS): New test.
16484         * tests/semantics.at (AC_CHECK_HEADERS_OLD,
16485         AC_CHECK_HEADERS_NEW): New tests.
16487 2003-05-17  Akim Demaille  <akim@epita.fr>
16489         * lib/autoconf/functions.m4: Use the default includes so that
16490         memcmp be declared before being tested.
16491         Reported by Sander Niemeijer.
16492         (AC_FUNC_ERROR_AT_LINE, AC_FUNC_GETGROUPS, AC_FUNC_STRNLEN): Likewise.
16493         * doc/autoconf.texi (Default Includes): Document
16494         AC_INCLUDES_DEFAULT.
16496 2003-05-17  Akim Demaille  <akim@epita.fr>
16498         * lib/autoconf/specific.m4: Include signal.h and unistd.h.
16499         * doc/autoconf.texi (Obsolete Macros): Adjust.
16500         Reported by Werner LEMBERG and Debian Bug 190886.
16502 2003-05-16  Akim Demaille  <akim@epita.fr>
16504         * lib/m4sugar/m4sh.m4 (_AS_UNSET_PREPARE): s/FOO/as_foo/ to avoid
16505         user name space clashes.
16506         Reported by Bruno Haible.
16508 2003-05-16  Akim Demaille  <akim@epita.fr>
16510         * bin/autoheader.in, bin/autom4te.in, bin/autoreconf.in,
16511         * bin/autoscan.in, bin/autoupdate.in, bin/ifnames.in (BEGIN): Make
16512         them uniform, and more robust to Perl special characters.
16513         Reported by Martin Mokrejs.
16515 2003-05-14  Akim Demaille  <akim@epita.fr>
16517         * tests/foreign.at (Libtool): Skip all Libtools pre 1.4.
16519 2003-05-14  Akim Demaille  <akim@epita.fr>
16521         * doc/autoconf.texi (Header Portability): X11/extensions/scrnsaver.h,
16522         linux/irda.h.
16524 2003-05-12  Akim Demaille  <akim@epita.fr>
16526         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Improve the
16527         message.
16528         From Matthias Andree.
16530 2003-05-07  Alexandre Duret-Lutz  <adl@gnu.org>
16532         * lib/Autom4te/XFile.pm (lock, truncate): Do not pass @_ to flock
16533         and truncate.
16535 2003-05-06  Akim Demaille  <akim@epita.fr>
16537         Don't try to be smart with aclocal 1.8+ because (i) aclocal no
16538         longer updates aclocal.m4 if useless, (ii) if a file m4_included
16539         by aclocal.m4 is changed it might require the importing of another
16540         m4 extension file, i.e., aclocal must be run.
16542         * bin/autoreconf.in (&run_aclocal, $aclocal_supports_force): New.
16543         (&parse_args): Use --force with aclocal if required and supported.
16544         (&autoreconf_current_directory): Use &run_aclocal.
16546 2003-05-06  Akim Demaille  <akim@epita.fr>
16548         Lock autom4te's cache.
16550         * lib/Autom4te/XFile.pm ($me, &name, &lock, &truncate, &seek): New.
16551         * bin/autom4te.in (&Request::save, &Request::load): Use an IO::File
16552         argument instead of a file name, so that the request file remains
16553         open during the whole autom4te run.
16554         ($icache_file): New.
16555         (&freeze): Lock the $icache_file.
16557 2003-04-29  Derek Price  <derek@ximbiot.com>
16559         * lib/autotest/general.m4 (AT_KEYWORDS): Don't use a comma as the
16560         seperator with m4_append_uniq().  It doesn't work.
16561         (AT_CLEANUP): Add `;' to end of at_help_all.
16562         (AT_INIT): Allow --keywords to be specified more than once.  When
16563         grepping $at_help_all for keywords, use the field and keyword
16564         seperators to ensure a complete keyword match.  Alter at_prev handling
16565         to support the new --keywords behavior.
16567 2003-04-27  Karl Berry  <karl@freefriends.org>
16569         * doc/autoconf.texi: Make the dir entries in the autoconf manual
16570         align better with others.  I also made some of the individual
16571         entries on one line, for brevity and to make it easier for me to
16572         sort my dir-example file in the Texinfo distribution :).
16574 2003-04-12  Jim Meyering  <jim@meyering.net>
16576         * NEWS: Mention the new macro.
16577         * lib/autoconf/c.m4 (AC_C_RESTRICT): New macro.
16578         * doc/autoconf.texi (C Compiler): Describe AC_C_RESTRICT.
16579         * tests/c.at: Test AC_C_RESTRICT.
16580         * tests/mktests.sh (ac_exclude_list): Add exclusion for AC_C_RESTRICT.
16582 2003-04-08  Akim Demaille  <akim@epita.fr>
16584         * bin/ifnames.in: Skip C++ comments.
16585         From Jeremy Yallop.
16587 2003-04-08  Akim Demaille  <akim@epita.fr>
16589         * GNUmakefile (SHELL): Don't assume sh is in /bin/.
16590         From Ilya Zakharevich.
16592 2003-04-08  Akim Demaille  <akim@epita.fr>
16594         * doc/autoconf.texi (Particular Headers): Some about sys/socket.h,
16595         net/if.h, stdlib.h.
16597 2003-04-01  Derek Price  <derek@ximbiot.com>
16599         * lib/autoconf/programs.m4 (AC_PROG_INSTALL): Correct syntax error
16600         from Akim's checkin of 2003-03-29.
16602 2003-04-01  Derek Price  <derek@ximbiot.com>
16604         * tests/torture.at (Configuring subdirectories): Add missing
16605         close-quote for Akim's change from 2003-03-28.
16607 2003-04-01  Akim Demaille  <akim@epita.fr>
16609         * doc/autoconf.texi (ac, at, ms): Rename these indexes as...
16610         (AC, AT, MS): these.
16611         (shortindexflag, @acindex, @ahindex, @asindex, @atindex, @msindex):
16612         New.
16613         Use them.
16614         * doc/Makefile.am (CLEANFILES): Adjust.
16615         (TEXI2DVI): Make it --batch.
16617 2003-03-31  Derek Price  <derek@ximbiot.com>
16619         * lib/autotest/general.m4: Revert the checkin from 2003-03-27
16620         which removed the main loop.
16621         Thanks to Akim Demaille.
16623 2003-03-29  Akim Demaille  <akim@epita.fr>
16625         * lib/autoconf/programs.m4 (AC_PROG_INSTALL): Skip OS/2's install,
16626         that starts a GUI.
16627         From Ilya Zakharevich.
16629 2003-03-29  Akim Demaille  <akim@epita.fr>
16631         * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_MONGREL): The
16632         documentation to read is Autoconf's.
16633         Suggested by Paul Eggert.
16635 2003-03-28  Akim Demaille  <akim@epita.fr>
16637         * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_MONGREL): Suggest
16638         reading the section "Present But Cannot Be Compiled" when the
16639         header causes problems.
16641 2003-03-28  Akim Demaille  <akim@epita.fr>
16643         * tests/torture.at (Configuring subdirectories): Require aclocal
16644         1.4, otherwise the test fails, as it does support configure.ac.
16645         This fixes the "test 40 failed" bug reports.
16647 2003-03-28  Akim Demaille  <akim@epita.fr>
16649         * doc/autoconf.texi (C Compiler): `#line' portability.
16650         From Paul Eggert and Nelson H. F. Beebe.
16652 2003-03-27  Derek Price  <derek@ximbiot.com>
16654         * lib/autotest/general.m4: Eliminate main loop and reorganize test
16655         layout in order to allow scripting around test groups.
16657 2003-03-27  Derek Price  <derek@ximbiot.com>
16659         * lib/autotest/general.m4 (PARSE_ARGS,PARSE_ARGS_END,HELP,HELP_MODES,
16660         HELP_TUNING,HELP_OTHER,HELP_END,PREPARE_TESTS,TESTS_END): Define and
16661         use new diversions in preparation for accepting new arguments and
16662         allowing scripting around tests.
16663         (OPTIONS,TAIL): Remove these diversions to make way for the ones above.
16665 2003-03-26  Derek Price  <derek@ximbiot.com>
16667         * lib/autoconf/general.m4 (AC_ARG_VAR): Use AS_HELP_STRING instead of
16668         obsolete AC_HELP_STRING.
16669         (AC_HELP_STRING): AU_DEFUN to...
16670         * lib/m4sugar/m4sh.m4 (AS_HELP_STRING): ...here.
16671         * tests/m4sh.at (AS_HELP_STRING): New test.
16673         * tests/acgeneral.at: Regenerated.
16675 2003-03-26  Derek Price  <derek@ximbiot.com>
16677         * lib/autotest/general.m4: s/DEFAULT/DEFAULTS/ since it makes more
16678         sense.  Verbosify the diversion definitions comment.
16680 2003-03-26  Derek Price  <derek@ximbiot.com>
16682         * lib/autotest/general.m4 (AT_INIT): Remove redundant call to
16683         AS_PREPARE.
16685 2003-03-21  Eric Siegerman  <eric_97@pobox.com>
16687         * doc/autoconf.texi (Present But Cannot Be Compiled):
16688         Grammar fixes and minor rewording. (trivial change)
16690 2003-03-06  Paul Eggert  <eggert@twinsun.com>
16692         Work around a problem noted by Nelson H. F. Beebe with coreutils
16693         4.5.9: Sun c89 (Sun WorkShop 6 update 2 C 5.3 Patch 111679-08
16694         2002/05/09) rejects '#line 32768 "configure"' because the line
16695         number overflows.
16696         * lib/autoconf/c.m4 (AC_LANG_SOURCE(C)): Do not generate
16697         #line directives.
16698         * lib/autoconf/lang.m4 (AC_LANG_SOURCE): Fix comment to match this.
16699         * doc/autoconf.texi (Generating Sources): Document this.
16701 2003-03-01  Richard Dawe  <rich@phekda.freeserve.co.uk>
16703         * tests/atspecific.m4 (AT_CHECK_AUTOM4TE): Normalize
16704         file name for the m4 program, when it has an "exe" file extension.
16705         DJGPP's error messages include the error code in brackets -
16706         remove the error code during normalization.
16708 2003-02-28  Akim Demaille  <akim@epita.fr>
16710         * doc/autoconf.texi (Present But Cannot Be Compiled): New.
16712 2003-02-28  Alexandre Duret-Lutz  <adl@gnu.org>
16714         * doc/autoconf.texi (Limitations of Make): Remove the section
16715         about `$<' in inference rules, it was a bogus interpretation of
16716         an old Automake change.  Discuss NetBSD, FreeBSD, OpenBSD, and
16717         Tru64 make in the "target lookup" section.
16718         (Automake): Automake 1.5+ no longer requires special tools to be
16719         present on the developer's host.
16721 2003-02-26  Richard Dawe  <rich@phekda.freeserve.co.uk>
16723         * bin/autoheader.in (BEGIN): For DJGPP SHELL may not be set
16724         to a shell that can handle redirection or quoting correctly.
16725         Override SHELL with the shell detected by configure.
16726         Use of $^O suggested by Tim van Holder.
16727         * bin/autom4te.in (BEGIN): Likewise.
16728         * bin/autoreconf.in (BEGIN): Likewise.
16729         * bin/autoscan.in (BEGIN): Likewise.
16730         * bin/autoupdate.in (BEGIN): Likewise.
16731         * bin/ifnames.in (BEGIN): Likewise.
16733         * bin/ifnames.in: Add final newline to help and version messages.
16735         * lib/autoconf/programs.m4 (AC_PROG_MAKE_SET): Translate colons,
16736         to cope with DOS-style absolute paths, when constructing
16737         ${ac_make}.
16739         * lib/autoconf/status.m4 (_AC_OUTPUT_HEADERS, _AC_OUTPUT_FILES):
16740         When constructing paths with IFS=:, quote the path. If we're
16741         constructing a DOS-style absolute path, we don't want to split it
16742         on the colon.
16744         * tests/atspecific.m4 (AT_CHECK_CONFIGURE): Fix typo
16745         in description.
16747 2003-02-25  Pavel Roskin  <proski@gnu.org>
16749         * bin/autoheader.in: Add missing newline when printing
16750         suggestion how change AC_DEFINE call.
16752 2003-02-24  Paul Eggert  <eggert@twinsun.com>
16754         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Fix typo in
16755         2002-09-01 patch by replacing "test -n" with "test -z".
16756         This fixes a bug found by Jeff Painter and reported by Tom Epperly in
16757         <http://mail.gnu.org/archive/html/autoconf/2003-02/msg00139.html>.
16759         * doc/autoconf.texi (Shell Substitutions): test -n -> test -z,
16760         to fix a mismatch between example and discussion.
16762 2003-02-24  Kevin Ryde  <user42@zip.com.au>
16764         * doc/autoconf.texi (Limitations of Builtins): Add notes on printf
16765         format starting with "-".
16767 2003-02-20  Alexandre Duret-Lutz  <adl@gnu.org>
16769         * doc/autoconf.texi (Limitations of Make): `foo=bar make -e'
16770         is not portable inside Makefile.
16772 2003-02-20  Akim Demaille  <akim@epita.fr>
16774         * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_MONGREL): When
16775         compiler says yeah, but preproc says nope, compiler is right.
16776         Conversely, prompt the reader to send a bug report to the
16777         maintainers of the package, not of Autoconf.
16779 2003-02-20  Klee Dienes  <kdienes@apple.com>
16781         * bin/autoreconf.in (autoreconf_current_directory): Properly
16782         handle an empty aclocal.m4.
16784 2003-02-20  Akim Demaille  <akim@epita.fr>
16786         * lib/autoconf/general.m4 (AC_PREFIX_PROGRAM): Quote
16787         $ac_prefix_program.
16788         From Larry Jones.
16790 2002-12-23  Paul Eggert  <eggert@twinsun.com>
16792         * lib/autoconf/c.m4 (AC_LANG_FUNC_LINK_TRY(C)): Define $1 to an
16793         innocuous variant befor including <limits.h> or <assert.h>.  This
16794         works around a bug reported by Albert Chin: HP-UX 11i
16795         (and earlier versions) have a <limits.h> that declares
16796         gettimeofday and many other functions.
16798 2002-12-03  Paul Eggert  <eggert@twinsun.com>
16800         Version 2.57.
16802         * NEWS, configure.ac: Update version.
16804         * doc/fdl.texi: Upgrade to FDL version 1.2.
16806         * lib/autoconf/c.m4 (AC_LANG_FUNC_LINK_TRY(C)): Use the function f
16807         nontrivially in main's body, so that f's external declaration is
16808         not optimized away in AIX.  This should fix the bug reported by
16809         Martin Frydl in
16810         <http://mail.gnu.org/pipermail/autoconf/2002-November/014508.html>.
16812         * lib/autoconf/c.m4 (AC_LANG_FUNC_LINK_TRY(C),
16813         _AC_PROG_PREPROC_WORKS_IFELSE): Use <limits.h> if __STDC__ is
16814         defined, to support freestanding compilers.  This should fix the
16815         bug reported by Momchil Velkov in
16816         <http://mail.gnu.org/pipermail/autoconf/2002-November/014490.html>.
16818         * doc/autoconf.texi (Obsolete Macros): Fix typos (insert empty
16819         arg, AC_DEFINE -> AC_DEFINE_UNQUOTED) in documentation for
16820         obsolete AC_CHECK_TYPE.  The missing empty arg was reported
16821         by Simon Josefsson in
16822         <http://mail.gnu.org/pipermail/autoconf-patches/2002-December/008830.html>.
16824         * Makefile.maint (www-gnu): New macro.
16825         (standards.texi-url_prefix, make-stds.texi-url_prefix): Use it, as
16826         the location has moved.
16828 2002-12-02  Martin Frydl  <martin@systinet.com>
16830         * bin/autom4te.in (at_flatten): rewritten to avoid M4 problem when
16831         \(.*\) match is too long and there is something more to be checked.
16832         <http://mail.gnu.org/pipermail/autoconf/2002-November/014524.html>
16834 2002-11-15  Akim Demaille  <akim@epita.fr>
16836         Version 2.56.
16838         * config/install-sh: chmod +x.
16839         From Paul Eggert.
16840         * config/move-if-change: Indenting changes.
16841         * Makefile.am (AUTOMAKE_OPTIONS): Move to...
16842         * configure.ac (AM_INIT_AUTOMAKE): here.
16843         Require 1.7.1.
16845 2002-11-14  Akim Demaille  <akim@epita.fr>
16847         Version 2.55.
16849         * config/config.guess, config/config.sub, config/install-sh:
16850         Update from masters.
16852 2002-11-14  Akim Demaille  <akim@epita.fr>
16854         * Makefile.maint: Sync with Bison, i.e.:
16855         (po-check): Scan .l and .y files instead of the
16856         .c and the .h files that they generate.  This fixes the bug
16857         reported by Tim Van Holder in:
16858         <http://mail.gnu.org/pipermail/bison-patches/2002-November/001352.html>
16859         Look for N_ as well as for _.  Try to avoid matching #define for
16860         N_ and _.
16861         From Paul Eggert.
16863 2002-11-14  Akim Demaille  <akim@epita.fr>
16865         * doc/autoconf.texi (C Compiler): Compiling several files at once.
16866         From Paul Eggert and Albert Chin-A-Young.
16868 2002-11-14  Akim Demaille  <akim@epita.fr>
16870         * doc/autoconf.texi (C Compiler): Solitary backslashes.
16871         From Paul Eggert and Albert Chin-A-Young.
16873 2002-11-14  Kevin Ryde  <user42@zip.com.au>
16875         * lib/autoconf/c.m4 (AC_LANG_FUNC_LINK_TRY(C)): Initialize f=$1 rather
16876         than assigning in main, to avoid HP cc +O3 optimizing it away.
16878 2002-11-12  Peter Eisentraut  <peter_e@gmx.net>
16880         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Add -q
16881         option.  Process --recheck after parsing all options.  Pass -q
16882         option to configure on --recheck.
16883         (AC_OUTPUT): Pass -q from configure to config.status.
16884         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Strip -q from
16885         arguments to record.
16886         * doc/autoconf.texi (config.status Invocation): Document
16887         config.status -q option.
16889 2002-11-07  Alexandre Duret-Lutz  <adl@gnu.org>
16891         * bin/autoscan.in (scan_file): Scan Makefile.am too. Ignore
16892         Makefile.in if Makefile.am exists.
16893         (output): Strip `.am' from Makefiles.  Don't
16894         output AC_CONFIG_FILES if no Makefiles were found.
16896 2002-11-07  Akim Demaille  <akim@epita.fr>
16898         * Makefile.am (cvs_files): Add elisp-comp, mdate-sh.
16899         (local_updates): New.
16900         * Makefile.maint: Update, from CVS Bison.
16901         (local_updates): New.
16903 2002-11-06  Akim Demaille  <akim@epita.fr>
16905         * lib/autoconf/c.m4 (AC_LANG_FUNC_LINK_TRY): Wrap the `f'
16906         declaration in extern "C" too.
16907         Reported by Roberto Bagnara.
16909 2002-11-06  Akim Demaille  <akim@epita.fr>
16911         * tests/torture.at (Configuring subdirectories): Don't use grep
16912         -w.
16913         * doc/autoconf.texi (Limitations of Usual Tools): Grep -w.
16914         Reported by Ezra Peisach.
16916 2002-11-05  Akim Demaille  <akim@epita.fr>
16918         * lib/autoconf/autoheader.m4 (_AH_TEMPLATE_OLD, _AH_VERBATIM_OLD):
16919         Remove.
16920         We _have_ to stop using the old compatibility scheme that tried to
16921         avoid useless backslashes because Libtool 1.4.3 contains a
16922         AC_DEFINE([error_t], [int],
16923         [Define to a type to use for \`error_t' if it is not
16924         otherwise available.])
16925         We _have_ to quote the single quote and backslashes with \.  The
16926         old compatibility scheme saw that ` was backslashed, and therefore
16927         did not quote the single quote.  Hence before this patch, Autoconf
16928         was not compatible with Libtool.
16930 2002-11-04  Paul Eggert  <eggert@twinsun.com>
16932         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Set the following variables,
16933         too: LC_ADDRESS, LC_IDENTIFICATION, LC_MEASUREMENT, LC_MONETARY,
16934         LC_NAME, LC_PAPER, LC_TELEPHONE.
16935         * doc/autoconf.texi (Special Shell Variables): Mention those vars.
16937 2002-11-04  Akim Demaille  <akim@epita.fr>
16939         Version 2.54c.
16941         * Makefile.maint (update, cvs-update, po-update, do-po-update):
16942         New.
16943         * config/texinfo.tex: Update.
16945 2002-11-03  Akim Demaille  <akim@epita.fr>
16947         * bin/autoreconf.in (&autoreconf_current_directory): New, extracted
16948         from...
16949         (&autoreconf): here.
16950         ($help, $make, &parse_args, &autoreconf_current_directory):
16951         Support -m/--make.
16952         * doc/autoconf.texi (autoreconf Invocation): Adjust.
16954 2002-10-31  Bruno Haible  <bruno@clisp.org>
16956         * lib/autoconf/functions.m4 (_AC_FUNC_MALLOC_IF): Change message.
16957         Change name of cache variable to ac_cv_func_malloc_0_nonnull.
16958         (AC_FUNC_MALLOC): Change description of HAVE_MALLOC macro.
16959         (_AC_FUNC_REALLOC_IF): Change message. Change name of cache variable
16960         to ac_cv_func_realloc_0_nonnull.
16961         (AC_FUNC_REALLOC): Change description of HAVE_REALLOC macro.
16963 2002-10-31  Akim Demaille  <akim@epita.fr>
16965         The test suite was no longer checking for trailing envvars and files.
16967         * tests/atspecific.m4 (AC_STATE_SAVE): Don't use quadrigraphs here.
16968         (AT_CHECK_ENV): Make sure the `state-ls.before file exists.
16970 2002-10-31  Akim Demaille  <akim@epita.fr>
16972         * lib/autoconf/programs.m4 (AC_PROG_MAKE_SET): Use and display
16973         `$(MAKE)' instead of '${MAKE}' to emphasize that we refer to the
16974         Make variable, not a shell variable.
16975         Suggested by Bruno Haible.
16977 2002-10-31  Akim Demaille  <akim@epita.fr>
16979         * bin/autom4te.in (load_configuration): Reject #args out of any
16980         language.
16982 2002-10-31  Akim Demaille  <akim@epita.fr>
16984         * lib/autoconf/general.m4 (_AC_MSG_LOG_CONFTEST): New.
16985         (_AC_PREPROC_IFELSE, _AC_COMPILE_IFELSE, _AC_LINK_IFELSE)
16986         (_AC_RUN_IFELSE): Use it.
16987         * lib/autoconf/lang.m4 (_AC_COMPILER_OBJEXT):
16988         (_AC_COMPILER_EXEEXT_DEFAULT): Likewise.
16989         * lib/autoconf/c.m4 (AC_LANG_SOURCE): Don't include confdefs.h,
16990         inline it.
16992 2002-10-30  Akim Demaille  <akim@epita.fr>
16994         * bin/autom4te.in (&parse_args, $help): Support --no-cache.
16995         * doc/autoconf.texi (autom4te Invocation): Adjust.
16996         Suggested by Tim van Holder.
16998 2002-10-29  Paul Eggert  <eggert@twinsun.com>
17000         * doc/autoconf.texi (Particular Functions): AC_FUNC_MALLOC and
17001         AC_FUNC_REALLOC check for compatibility with glibc, not POSIX.
17002         Problem reported by Bruno Haible.
17004 2002-10-29  Akim Demaille  <akim@epita.fr>
17006         * doc/autoconf.texi (Header Templates): Put also in words what the
17007         pictures says to assist free style readers.
17008         (Customizing autom4te): s/--cache=/--cache /.
17010 2002-10-29  Akim Demaille  <akim@epita.fr>
17012         * lib/autoconf/functions.m4 (_AC_FUNC_VFORK): Include stdlib.h and
17013         sys/wait.h.
17014         sparc_address_test returns void.
17015         Use it with an argument, as prototyped.
17016         From Bruno Haible.
17018 2002-10-29  Akim Demaille  <akim@epita.fr>
17020         * doc/autoconf.texi (Subdirectories): Cygnus dirs have
17021         configure.in, not configure.ac.
17022         Reported by Bruno Haible.
17024 2002-10-29  Akim Demaille  <akim@epita.fr>
17026         * tests/torture.at (Deep Package): New test.
17027         (Configuring subdirectories): Don't use a testSubDir as Autotest
17028         now does it itself.
17030 2002-10-29  Akim Demaille  <akim@epita.fr>
17032         * bin/autoreconf.in (&parse_args, $help): Support --warnings.
17033         * doc/autoconf.texi (Invoking autom4te): Rename as...
17034         (autom4te Invocation): this, for consistency with the other nodes.
17036 2002-10-29  Akim Demaille  <akim@epita.fr>
17038         * lib/autom4te.in (Autoconf): s/automate/autom4te/.
17039         Reported by Ralf Corsepius.
17041 2002-10-29  Akim Demaille  <akim@epita.fr>
17043         * lib/m4sugar/m4sh.m4 (_AS_QUOTE): The warning about quoted
17044         characters is a back as an `obsolete' warning now.
17045         Reported by Ralf Corsepius.
17047 2002-10-28  Akim Demaille  <akim@epita.fr>
17049         * configure.ac: Bump to 2.54c.
17051 2002-10-28  Akim Demaille  <akim@epita.fr>
17053         Version 2.54b.
17055         * tests/foreign.at (Libtool): Adjust to broken libtoolize.
17057 2002-10-28  Akim Demaille  <akim@epita.fr>
17059         * tests/atspecific.m4 (AT_CHECK_AUTOM4TE): Be robust to different
17060         m4 executable names, and different GNU M4 version.
17061         Reported by Ezra Peisach and Paul Jarc.
17063 2002-10-27  Akim Demaille  <akim@epita.fr>
17065         * lib/autoconf/functions.m4 (_AC_FUNC_VFORK): Really use
17066         AC_RUN_IFELSE.
17068 2002-10-27  Akim Demaille  <akim@epita.fr>
17070         * doc/autoconf.texi: More AC_MSG_FAILURE promotion.
17071         * lib/autoconf/fortran.m4 (_AC_F77_NAME_MANGLING):
17072         Die when a simple Fortran program cannot be compiled.
17073         * lib/autoconf/lang.m4 (AC_LANG_CALL, AC_LANG_FUNC_LINK_TRY):
17074         Issue a warning if no function is given.
17076 2002-10-27  Akim Demaille  <akim@epita.fr>
17078         * doc/autoconf.texi (Run Time): Document AC_RUN_IFELSE.
17079         Move the documentation of AC_TRY_RUN to...
17080         (Obsolete Macros): here.
17081         Adjust all the old samples still using AC_TRY_RUN to AC_RUN_IFELSE.
17082         (autoconf Invocation): Remove the duplicates with `invoking
17083         autom4te'.
17084         * lib/autoconf/headers.m4 (AC_HEADER_STDC): Don't use AC_TRY_RUN.
17085         * lib/autoconf/c.m4 (AC_C_BIGENDIAN): Likewise.
17087 2002-10-27  Akim Demaille  <akim@epita.fr>
17089         * doc/autoconf.texi (Generating Sources): Document AC_LANG_CALL
17090         and AC_LANG_FUNC_LINK_TRY.
17091         (Examining Libraries): Rename as...
17092         (Running the Linker): this.
17093         Document AC_LINK_IFELSE.
17094         Move the documentation of AC_TRY_LINK and AC_TRY_LINK_FUNC to...
17095         (Obsolete Macros): here.
17096         * lib/autoconf/fortran.m4 (_AC_F77_NAME_MANGLING): Don't use
17097         AC_TRY_LINK_FUNC nor AC_TRY_LINK.
17098         * lib/autoconf/libs.m4 (AC_CHECK_LIB, AC_PATH_XTRA): Likewise.
17099         * lib/autoconf/headers.m4 (AC_USG): Likewise.
17101 2002-10-27  Akim Demaille  <akim@epita.fr>
17103         * lib/autoconf/headers.m4 (AC_HEADER_STDC): Don't use AC_TRY_CPP.
17105         More `check config.log' messages.
17107         * lib/autoconf/general.m4 (AC_MSG_FAILURE): New.
17108         * doc/autoconf.texi (Printing Messages): Document it.
17109         * lib/autoconf/types.m4 (AC_CHECK_SIZEOF): Use it when
17110         appropriate.
17111         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT)
17112         (_AC_COMPILER_EXEEXT_WORKS, _AC_COMPILER_EXEEXT_O)
17113         (_AC_COMPILER_OBJEXT): Likewise.
17114         * lib/autoconf/general.m4 (AC_RUN_IFELSE): Likewise.
17115         * lib/autoconf/fortran.m4 (_AC_LANG_PROGRAM_C_F77_HOOKS):
17116         Likewise.
17117         * lib/autoconf/c.m4 (AC_PROG_CPP, AC_PROG_CC, AC_PROG_CXXCPP):
17118         Likewise.
17120         Deprecate macros with unusual interfaces.
17122         * lib/autoconf/general.m4 (AC_TRY_CPP, AC_TRY_LINK)
17123         (AC_TRY_COMPILE, AC_TRY_RUN): AU_DEFUN'ed.
17125         Document the new ones, and proper style.
17127         * doc/autoconf.texi (Generating Sources): New.
17128         Document AC_LANG_CONFTEST, AC_LANG_SOURCE, AC_LANG_PROGRAM.
17129         (Examining Declarations): Rename as...
17130         (Running the Preprocessor): this.
17131         Document AC_PREPROC_IFELSE.
17132         (Examining Syntax): Rename as...
17133         (Running the Compiler): this.
17134         (AC_FOO_IFELSE vs AC_TRY_FOO): New section.
17135         (Obsolete Macros): Move the definition of AC_TRY_CPP and
17136         AC_TRY_COMPILE here.
17138 2002-10-27  Akim Demaille  <akim@epita.fr>
17140         Move sections around.
17142         * doc/autoconf.texi (Customizing autom4te): Remove a lost
17143         sentence.
17144         Reported by Burno Haible.
17145         (Language Choice): Now the first section of...
17146         (Writing Tests): this section.
17147         Make the introduction less C-centric.
17148         (Guidelines, Test Functions): Move to...
17149         (Writing Test Programs): this new section.
17150         (Test Programs): Merge into...
17151         (Run Time): this.
17153 2002-10-27  Akim Demaille  <akim@epita.fr>
17155         * lib/freeze.mk ($(AUTOM4TE_CFG)): Add a missing dependency on
17156         autom4te.in that resulted in the need for two `make' runs.
17158 2002-10-27  Akim Demaille  <akim@epita.fr>
17160         * configure.ac: Bump to 2.54b.
17162 2002-10-25  Akim Demaille  <akim@epita.fr>
17164         Version 2.54a.
17166         * Makefile.maint: Update from the Coreutils.
17167         (AMTAR): Remove, obsolete.
17168         (automake_repo): Update to redhat.com.
17169         (cvs_file): New.
17170         Adjust to the fact that ansi2knr is now hosted by Automake.
17171         * Makefile.am (cvs_files): Add install-sh and mkinstalldirs.
17172         * config/config.guess, config/mkinstalldirs, config/texinfo.tex:
17173         Update from masters.
17174         * lib/autoscan/Makefile.am (EXTRA_DIST, nodist_autoscanlib_DATA):
17175         autoscan.pre is not to be installed, and autoscan.list is not to
17176         be shipped.
17177         (CLEANFILES): Add autoscan.list.
17178         (autoscan.list): Disable the cache.
17179         * bin/Makefile.am: Include freeze.mk.
17181 2002-10-25  Akim Demaille  <akim@epita.fr>
17183         * bin/autom4te.in (&load_configuration): Take the file as
17184         argument.
17185         (&parse_args): Handle -C, --cache.
17186         ($help): Adjust.
17187         (MAIN): Load ~/.autom4te.cfg and ./.autom4te.cfg.
17188         * lib/autom4te.in (Autoconf): Pass --cache=autom4te.cache.
17189         * doc/autoconf.texi (Invoking autom4te): Document --cache.
17190         Now a subsection of...
17191         (Using autom4te): This new section.
17192         (Customizing autom4te): New.
17193         (autom4te.cache): Adjust.
17195 2002-10-25  Akim Demaille  <akim@epita.fr>
17197         * doc/autoconf.texi (Generic Headers): More information on how to
17198         use AC_CHECK_HEADERS.
17200 2002-10-25  Akim Demaille  <akim@epita.fr>
17202         * bin/autoconf.as, bin/autoconf.in, bin/autoupdate.in ($help):
17203         Space changes.
17205 2002-10-25  Akim Demaille  <akim@epita.fr>
17207         * bin/autoscan.in (output): Output AC_PREREQ.
17208         (%needed_macros): Add AC_PREREQ so that configure.ac without one
17209         be reported.
17211 2002-10-23  Akim Demaille  <akim@epita.fr>
17213         * doc/autoconf.texi (Particular Headers): In AC_HEADER_STDBOOL,
17214         document _Bool.
17216 2002-10-23  Akim Demaille  <akim@epita.fr>
17218         * bin/autom4te.in (handle_traces): Handle @&t@ in traces.
17219         Reported by Peter Eisentraut.
17221 2002-10-23  Akim Demaille  <akim@epita.fr>
17223         * lib/autoconf/headers.m4 (AC_HEADER_STDBOOL): Also look for the
17224         type _Bool.
17225         Fix a typo.
17226         * doc/autoconf.texi (Particular Headers): Adjust according to Paul
17227         Eggert's recommandations.
17229 2002-10-22  Akim Demaille  <akim@epita.fr>
17231         * lib/autoconf/headers.m4 (AC_HEADER_STDBOOL): New, based on CVS
17232         Bison, by Paul Eggert.
17233         * doc/autoconf.texi (Particular Headers): Document it.
17235 2002-10-22  Aaron M. Ucko  <amu@alum.mit.edu>
17237         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Avoid duplicates in
17238         `$ac_configure_args'.
17240 2002-10-22  Akim Demaille  <akim@epita.fr>
17242         * doc/autoconf.texi: Use AC_CONFIG_HEADERS in examples.
17243         (AC_ST_BLKSIZE, AC_ST_RDEV): Directly point to AC_CHECK_MEMBERS.
17244         From Art Haas.
17246 2002-10-22  Akim Demaille  <akim@epita.fr>
17248         Restore the 2002-10-11  Akim Demaille  <akim@epita.fr> patch:
17250         * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_MONGREL)
17251         (AC_CHECK_HEADER, _AC_CHECK_HEADER_NEW,_AC_CHECK_HEADER_OLD): Restore.
17252         (_AC_CHECK_HEADER_NEW): Rename as...
17253         (AC_CHECK_HEADER): this.
17255 2002-10-22  Akim Demaille  <akim@epita.fr>
17257         * doc/autoconf.texi (Limitations of Usual Tools): Remove incorrect
17258         words about HP-UX cmp: it was actually a user-written cmp.
17260 2002-10-22  Akim Demaille  <akim@epita.fr>
17262         * tests/foreign.at (Libtool): Don't check autoconf's stderr: there
17263         are a few warnings.
17264         * lib/autoconf/autoheader.m4 (AH_VERBATIM, _AH_VERBATIM_OLD):
17265         Quote for Perl '' strings, not "".
17266         * bin/autoheader.in: Invoke autoconf to get '' strings, not ""
17267         strings.
17269 2002-10-22  Akim Demaille  <akim@epita.fr>
17271         * lib/m4sugar/m4sh.m4 (_AS_QUOTE): The warning about quoted
17272         characters is a syntax warning now.
17273         (_AS_QUOTE): Accept $2 as list of characters to quote.
17274         * lib/autoconf/autoheader.m4 (AH_VERBATIM, _AH_VERBATIM_OLD):
17275         Quote for Perl, not sh.
17276         * bin/autoheader.in: When $debug, report the file which is
17277         `do'ne.
17278         * tests/tools.at (autom4te, autoheader): Exercise @bar, not merely
17279         `@', to tickle Perl's lists.
17280         Reported by Carlos Velasco.
17282 2002-10-18  Akim Demaille  <akim@epita.fr>
17284         * bin/autom4te.in (handle_m4): Pass --fatal-warning to m4, so that
17285         missing included files _are_ errors.
17286         Thanks to Alexandre Duret-Lutz.
17287         * tests/tools.at (autom4te cache): Adjust.
17288         * tests/atspecific.m4 (AT_CHECK_AUTOM4TE): New.
17289         (AT_CHECK_M4SUGAR): Use it.
17290         * tests/m4sugar.at (m4_warn, m4_require: circular dependencies):
17291         Adjust.
17292         * tests/tools.at (autom4te): Now it does exit 1.
17294 2002-10-17  Akim Demaille  <akim@epita.fr>
17296         * lib/autoconf/general.m4 (AC_CACHE_SAVE): Don't use cmp.
17297         Fixes the `AC_ARG_VAR' test failures.
17298         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES): Don't use cmp.
17299         * lib/freeze.mk (check-forbidden-patterns): New.
17300         * lib/autoconf/Makefile.am, lib/autotest/Makefile.am
17301         * lib/m4sugar/Makefile.am (check-local): Use it to catch `cmp'.
17302         * doc/autoconf.texi (Limitations of Usual Tools): HP-UX' cmp and
17303         /dev/null.
17304         Reported months ago by H. Merijn Brand.
17306 2002-10-17  Akim Demaille  <akim@epita.fr>
17308         * tests/tools.at (autoheader): Put randoms `@' to stress Perl.
17310 2002-10-16  Paul Eggert  <eggert@twinsun.com>
17312         * Makefile.maint (wget_files): Remove ansi2knr.c.
17313         (ansi2knr.c-url_prefix): Remove.
17315 2002-10-16  Akim Demaille  <akim@epita.fr>
17317         Because of caching, some files that no longer exist and are no
17318         longer required can still cause errors.
17319         Reported by Alexandre Duret-Lutz.
17321         * bin/autom4te.in (&parse_args): Do not prepend `--reload-state'
17322         to frozen files in @ARGV, as @ARGV must remain being a list of
17323         files.  Rather, at M4 call sites, use this...
17324         (&files_to_options): New function.
17325         (&freeze): Use &error.
17326         (&up_to_date): If a file that was included according to the cache
17327         is no longer there, then the output is out dated.
17328         (&main): Don't even check whether a file is up to date is anyway
17329         --force is given.
17330         * tests/tools.at (autom4te cache): New.
17332 2002-10-16  Akim Demaille  <akim@epita.fr>
17334         * bin/autoconf.as: Kill dead options.
17335         * bin/autoupdate.in (&parse_args): Kill old options.
17336         * bin/autoreconf.in (&parse_args): Remove dead options.
17337         Factor some code.
17338         (&autoreconf): Report the directories we enter *and leave*, so
17339         that error messages can be easily located, and use GNU Make
17340         format, so that Emacs' compile mode understands us.
17341         * lib/Autom4te/General.pm (&update_file): Use `verbose' to report
17342         if some file was changed instead of `print'.
17343         * bin/autoheader.in: Suggest AC_DEFINE with 3 args when needed.
17344         (&parse_args): Remove the dead options.
17345         * tests/atspecific.m4 (AT_CHECK_AUTOHEADER): Adjust to the new
17346         autoheader's quiet mode.
17347         (AT_CHECK_AUTOUPDATE): Likewise.
17348         * tests/tools.at (autoupdate): Adjust.
17349         * tests/semantics.at (AC_C_BIGENDIAN): Likewise.
17351 2002-10-11  Akim Demaille  <akim@epita.fr>
17353         No longer use CPP to check for the existing of headers: use CC to
17354         check for compilability.
17356         * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_MONGREL)
17357         (AC_CHECK_HEADER, _AC_CHECK_HEADER_OLD): Remove.
17358         (_AC_CHECK_HEADER_NEW): Rename as...
17359         (AC_CHECK_HEADER): this.
17361         * lib/autotest/general.m4 (AT_INIT): Include the failed test
17362         numbers in the Subject suggestion.
17364 2002-10-11  Akim Demaille  <akim@epita.fr>
17366         * lib/autoconf/specific.m4 (AC_DECL_SYS_SIGLIST): Obsolete.
17367         Suggest using AC_CHECK_DECLS instead.
17369 2002-10-11  Akim Demaille  <akim@epita.fr>
17371         * tests/torture.at (AC_ARG_VAR): Have configure report the value
17372         of `precious'.
17374 2002-10-11  Akim Demaille  <akim@epita.fr>
17376         * lib/m4sugar/m4sh.m4 (_AS_PATH_SEPARATOR_PREPARE): Use $$ in the
17377         file name to enable parallel executions.
17378         From Sam Varshavchik.
17380 2002-10-08  Akim Demaille  <akim@epita.fr>
17382         * bin/autoreconf.in (&autoreconf): Run autopoint before the first
17383         aclocal invocation, as Gettext macros might not be visible to
17384         aclocal.
17385         Instead of blindly running autopoint, scan configure.ac (not the
17386         traces) for AM_GNU_GETTEXT_VERSION uses, as autopoint does.
17387         Reported by Paul D. Smith.
17389 2002-10-08  Paul Eggert  <eggert@twinsun.com>
17391         Work around problems found when POSIXLY_CORRECT=1 is set.
17392         None of this seems to have anything to do with POSIX, really,
17393         but it's how Perl getopt works.
17394         * bin/autom4te.in (parse_args): Configure GetOpt with
17395         "permute", too.
17396         * doc/autoconf.texi (Invoking autom4te):
17397         --warning -> --warnings.
17398         * lib/autom4te.in: --warning -> --warnings.
17400 2002-09-28  Akim Demaille  <akim@epita.fr>
17402         * doc/autoconf.texi (autom4te.cache): New section.
17404 2002-09-28  Akim Demaille  <akim@epita.fr>
17406         * lib/autom4te.in (Autoscan-preselections, Autoreconf-preselections)
17407         (Automake-preselections): Update.
17408         * bin/autoreconf.in, bin/autoheader.in: Comment changes.
17410 2002-09-28  Akim Demaille  <akim@epita.fr>
17412         * lib/autoscan/autoscan.pre: Move all the remaining rules to...
17413         * lib/autoconf/c.m4, lib/autoconf/functions.m4,
17414         * lib/autoconf/headers.m4, lib/autoconf/libs.m4,
17415         * lib/autoconf/specific.m4, lib/autoconf/types.m4: here.
17417 2002-09-28  Akim Demaille  <akim@epita.fr>
17419         * tests/torture.at (Configuring subdirectories): Be robust to
17420         users who use config.site to require for a cache: in this case,
17421         the two last configure runs, using two different sets of
17422         arguments, trigger a legitimate error.
17424 2002-09-28  Akim Demaille  <akim@epita.fr>
17426         * tests/m4sh.at (Functions Support, Functions and return Support):
17427         New.
17429 2002-09-28  Akim Demaille  <akim@epita.fr>
17431         * bin/Makefile.am (ETAGS_SH, ETAGS_PERL): Update: ifnames and
17432         autoheader are Perl programs.
17433         (autoconf, autoheader, autoreconf, autoupdate, ifnames, autoscan)
17434         (autom4te): Specify that the sources are in the $srcdir.
17435         * doc/autoconf.texi (Installation Directory Variables): Adjust.
17437 2002-09-28  Akim Demaille  <akim@epita.fr>
17439         * lib/autoscan/autoscan.pre (st_blksize, st_blocks, st_rdev)
17440         (tm_zone): Move their rules to...
17441         * lib/autoconf/types.m4: here, using AN_ macros.
17442         * lib/autoscan/autoscan.pre (AWK, BISON, INSTALL, LEX, LN, MAKE)
17443         (RANLIB, YACC, awk, bison, byacc, flex, gawk, install, lex, ln)
17444         (make, mawk, nawk, ranlib, yacc): Similarly, move to...
17445         * lib/autoconf/programs.m4: here.
17446         * lib/freeze.mk (ETAGS_FOR_M4, ETAGS_FOR_M4SUGAR)
17447         (ETAGS_FOR_AUTOCONF): New.
17448         Use it.
17450 2002-09-28  Akim Demaille  <akim@epita.fr>
17452         * lib/autoconf/autoscan.m4: New file.
17453         * lib/autoconf/autoconf.m4: Include it.
17454         * lib/autoconf/functions.m4: Use AN_FUNCTION for all the functions
17455         that were listed in the original autoscan.list.
17456         * lib/autoconf/headers.m4: Similarly with headers.
17457         * lib/freeze.mk (autoconf_m4f_dependencies): Add autoscan.m4.
17458         (.m4.m4f): Don't pass --prepend-include, since that's done by
17459         tests/autom4te itself.
17460         * lib/autoscan/Makefile.am: Include freeze.mk.
17461         (autoscan.list): New target --this file is no longer a source.
17462         (autoscan.pre): New file.
17464 2002-09-28  Akim Demaille  <akim@epita.fr>
17466         * bin/autoscan.in (@kinds): Make them singular.
17467         Adjust all uses.
17468         (&init_tables): When --debug, report the list of rules to ease
17469         tracking changes in autoscan.list.
17470         * lib/autoscan/autoscan.list (function): Strip comments, sort.
17472 2002-09-28  Akim Demaille  <akim@epita.fr>
17474         * lib/autoscan/functions, lib/autoscan/headers,
17475         * lib/autoscan/identifiers, lib/autoscan/makevars,
17476         * lib/autoscan/programs: Merge into...
17477         * lib/autoscan/autoscan.list: this.
17478         * bin/autoscan.in (&init_tables): Adjust.
17480 2002-09-28  Akim Demaille  <akim@epita.fr>
17482         * lib/autoscan/functions, lib/autoscan/headers,
17483         * lib/autoscan/identifiers, lib/autoscan/makevars,
17484         * lib/autoscan/programs: Make the `kind' explicit, i.e., each
17485         `functions' line is now prefixed with `function:'.
17486         * bin/autoscan.in (&init_tables): Adjust.
17488 2002-09-28  Akim Demaille  <akim@epita.fr>
17490         From now on, autoscan files must always map a macro name to a
17491         word: there is no `default' macro for autoscan.
17493         * bin/autoscan.in (&init_tables): Reject entries with no macro at
17494         all.
17495         * lib/autoscan/functions, lib/autoscan/headers: Make the macro
17496         explicit.
17498 2002-09-28  Akim Demaille  <akim@epita.fr>
17500         * bin/autoscan.in (%c_keywords): Remove.
17501         (&used): Keep only track of the words we might be interested in.
17502         (&output_kind): It is no longer needed to look for non active
17503         checks.
17505 2002-09-27  Akim Demaille  <akim@epita.fr>
17507         * lib/autoconf/functions.m4 (AC_FUNC_MBRTOWC): New, stolen from
17508         jm_FUNC_MBRTOWC, by Paul Eggert, from the Coreutils 4.5.1.
17509         * lib/autoscan/functions: Adjust.
17510         * doc/autoconf.texi (Particular Functions): Adjust.
17512 2002-09-27  Akim Demaille  <akim@epita.fr>
17514         * doc/autoconf.texi (Limitations of Usual Tools): Some about mv
17515         from /tmp.
17516         Thanks to Bill Moseley and Paul Eggert.
17517         * lib/m4sugar/m4sh.m4 (AS_TMPDIR): $2 is the directory into which
17518         the tmpdir must be created.
17519         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Have the tmp
17520         dir be in the build tree, instead of $TMPDIR.
17522 2002-09-27  Akim Demaille  <akim@epita.fr>
17524         * bin/autoscan.in: Improve the comments.
17525         (&parse_args): Drop obsolete undocumented options.
17526         (&output_kind): Output warnings.
17527         * lib/autoscan/functions: (dcgettext): Now trigger AM_GNU_GETTEXT.
17528         (getwd): Trigger a warning.
17530 2002-09-26  Akim Demaille  <akim@epita.fr>
17532         * bin/autoreconf.in: Clarify that -s is meaningless without -i.
17533         Reported by Ralf Corsepius.
17534         * doc/autoconf.texi (autoreconf Invocation): Likewise.
17536 2002-09-26  Akim Demaille  <akim@epita.fr>
17538         Single suffix rules and seperated dependencies are not portable.
17540         * doc/autoconf.texi (Installation Directory Variables): Update.
17541         (Limitations of Make): Some about `Single Suffix Rules and
17542         Separated Dependencies'.
17543         * bin/Makefile.am (autoconf, autoheader, autoreconf, autoupdate)
17544         (ifnames, autoscan, autom4te): Un-factor into several rules.
17546 2002-09-25  Paul Eggert  <eggert@twinsun.com>
17548         * BUGS (Interoperability bugs): New section.  Mention libtool
17549         1.4.2, configure.ac, and AC_CONFIG_AUX_DIR interoperability bug.
17551 2002-09-24  Paul Eggert  <eggert@twinsun.com>
17553         Fix a portability bug reported by Alexandre Duret-Lutz: Solaris 8
17554         make handles suffix-rules differently from GNU make.
17556         * bin/Makefile.am (SUFFIXES, .in): Remove.
17557         (autoconf autoheader autoreconf autoupdate ifnames autoscan autom4te):
17558         Move the body of the old .in rule here.
17560 2002-09-16  Akim Demaille  <akim@epita.fr>
17562         i960 compilers create `b.out' files by default.
17563         Reported by Ralf Corsepius.
17565         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT): Remove b.out files.
17566         (_AC_COMPILER_EXEEXT_DEFAULT): Adjust to b.out.
17568 2002-09-13  Paul Eggert  <eggert@twinsun.com>
17570         * doc/autoconf.texi (Particular Headers): Remove obsolete
17571         reference to `struct timezone' in the description of
17572         AC_HEADER_TIME.
17574 2002-09-13  Akim Demaille  <akim@epita.fr>
17576         Version 2.54.
17578         * config/config.sub, config/config.guess: Update.
17579         * Makefile.maint: Update from bits of the Coreutils 4.5.1.
17580         * Makefile.am: Adjust.
17582 2002-09-13  Akim Demaille  <akim@epita.fr>
17584         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Suggest
17585         reading config.log when the compiler is rejected.
17586         Suggested by Guido Draheim.
17588 2002-09-13  Akim Demaille  <akim@epita.fr>
17590         * bin/autoreconf.in: Don't use Cwd::chdir, since in its internals
17591         (chdir_init) might hang when stat'ing mounted directories.
17592         Reported by Vance Shipley.
17594 2002-09-12  Akim Demaille  <akim@epita.fr>
17596         * bin/autoscan.in (&parse_args): Pass a reference to the lists, not
17597         the lists.
17599 2002-09-12  Akim Demaille  <akim@epita.fr>
17601         * doc/autoconf.texi (Defining Symbols): Present two different
17602         prototypes for AC_DEFINE and AC_DEFINE_UNQUOTED to emphasize the
17603         difference between 1 argument calls, and 2-3 argument calls.
17605 2002-09-12  Peter Eisentraut  <peter_e@gmx.net>
17607         * doc/autoconf.texi: Review grammar and punctuation.
17609 2002-09-11  Paul Eggert  <eggert@twinsun.com>
17611         * doc/autoconf.texi: Fix minor formatting, spelling, and
17612         grammatical typos.
17613         (Defining Symbols): Explain that AC_DEFINE(var) defaults to 1, but
17614         AC_DEFINE(var,,description) does not; and the AC_DEFINE(var) case
17615         is obsolescent.
17617 2002-09-11  Akim Demaille  <akim@epita.fr>
17619         * doc/autoconf.texi (Questions): Rename as...
17620         (FAQ): this.
17621         (Defining Directories): New.
17623 2002-09-09  Akim Demaille  <akim@epita.fr>
17625         * doc/autoconf.texi (Making testsuite Scripts): Update.
17626         Suggested by Nishio Futoshi.
17628 2002-09-09  Koji Arai  <JCA02266@nifty.ne.jp>
17630         * doc/autoconf.texi (Making testsuite Scripts): Use `@@' where a
17631         plain `@' is wanted.
17633 2002-09-09  Akim Demaille  <akim@epita.fr>
17635         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Keep the
17636         `duplicates', since the algorithm was too naive and could keep
17637         `--prefix=1 --prefix=2 --prefix=1' as `--prefix=1 --prefix=2', and
17638         keep `--prefix foo --prefix bar' as `--prefix foo bar'.
17639         Reported by Ralf Corsepius.
17640         * tests/torture.at (Configuring subdirectories): Exercise these
17641         cases.
17643 2002-09-09  Akim Demaille  <akim@epita.fr>
17645         * lib/autoconf/functions.m4 (AC_FUNC_GETLOADAVG): Use $srcdir when
17646         looking for a replacement file.
17647         * lib/autoconf/general.m4 (AC_CHECK_DECLS): Check that the
17648         directory is relative.
17649         * doc/autoconf.texi (Generic Functions): Clarify the replacement
17650         directory definition.
17651         Reported by Andreas Schwab and Jim Meyering.
17653 2002-09-06  Akim Demaille  <akim@epita.fr>
17655         * doc/autoconf.texi (Setting Output Variables): Clarify what
17656         precious variables are.
17657         Suggested by Pontus Skoeld.
17659 2002-09-05  Akim Demaille  <akim@epita.fr>
17661         * bin/Makefile.am (autoconf, autoheader, autoreconf, autoupdate)
17662         (ifnames, autoscan, autom4te): Since we don't only depend on
17663         configure.ac variables (such as VERSION etc.), but also on prefix
17664         and so forth, depend on Makefile, not configure.ac.
17665         Reported by Alexandre Duret-Lutz.
17666         * doc/autoconf.texi (Installation Directory Variables): Adjust.
17668 2002-09-05  Kevin Ryde  <user42@zip.com.au>
17670         * doc/autoconf.texi (Limitations of Make): HP-UX trailing backslashes
17671         doesn't seem to be confined to ia64, just say "some versions".
17673 2002-09-04  Akim Demaille  <akim@epita.fr>
17675         * Makefile.am, doc/Makefile.am: Remove pdf targets, handled by
17676         Automake 1.6c.
17677         * Makefile.am (maintainer-clean-local): Remove.
17678         (MAINTAINERCLEANFILES): Remove COPYING.
17680 2002-09-03  Paul Eggert  <eggert@twinsun.com>
17682         * doc/autoconf.texi (Configuration Commands): Remove obsolete
17683         example for AC_CONFIG_COMMANDS_PRE.  Problem reported by Marcus
17684         Brinkmann.
17686 2002-09-03  Akim Demaille  <akim@epita.fr>
17688         * configure.ac: Bump to 2.53d.
17689         * Makefile.am (AUTOMAKE_OPTIONS): Require 1.6c, i.e., CVS Automake
17690         as of today, on Automake's team suggestion.
17692 2002-09-03  Akim Demaille  <akim@epita.fr>
17694         Version 2.53c.
17696 2002-09-02  Akim Demaille  <akim@epita.fr>
17698         * bin/autom4te.in (parse_args): Don't honor AUTOM4TE_PATH and
17699         SITE_MACRO_DIR.
17700         * configure.ac: Disable SITE_MACRO_DIR.
17702 2002-09-02  Jim Meyering  <meyering@lucent.com>
17704         * doc/autoconf.texi (AC_SYS_POSIX_TERMIOS): Reflect renaming: s/am/ac/,
17705         i.e., change am_cv_sys_posix_termios to ac_cv_sys_posix_termios.
17706         Also, tweak grammar: s/make sure to/be sure to/.
17708 2002-09-02  Paul Eggert  <eggert@twinsun.com>
17710         * doc/autoconf.texi (Limitations of Builtins): Explain why logical
17711         directory names are generally preferable to physical names.
17713 2002-09-02  Akim Demaille  <akim@epita.fr>
17715         * lib/Autom4te/General.pm (&update_file): s/die/error/.
17716         Reported by Raja R. Harinath.
17717         * bin/autoheader.in, bin/autoreconf.in, bin/autoscan.in,
17718         * bin/autoupdate.in: Use error instead of die.
17720 2002-09-01  Paul Eggert  <eggert@twinsun.com>
17722         * tests/mktests.sh (ac_exclude_egrep, au_exclude_egrep): Use
17723         ordinary shell concatenation rather than echo+tr+sed command that
17724         runs afoul of a long-line-related sed bug in Solaris 8.
17726         * bin/autoheader.in (parse_args): --warning -> --warnings.
17728         * bin/autoconf.as: Work even if "ls" outputs "FOO not found" to
17729         stdout, as traditional "ls" does.
17730         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT,
17731         _AC_COMPILER_EXEEXT_O): Likewise.
17732         * doc/autoconf.texi (Limitations of Usual Tools): Add "ls".
17734         * bin/autoconf.as: Add --prepend-include option.  This patch was
17735         applied to bin/autoconf.in in the 2002-07-17 patch by Mark D. Roth,
17736         but bin/autoconf.in is generated automatically from bin/autoconf.as.
17738         * bin/autoconf.in, configure: Regenerate.
17740         * doc/autoconf.texi (Special Shell Variables): Mention
17741         ENV, MAIL, MAILPATH, PS1, PS2, PS4.  Index PWD.
17743         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Unset ENV, MAIL,
17744         MAILPATH and set PS1, PS2, PS4 to default values, to work
17745         around bug in pre-3.0 UWIN ksh reported by Bruce Lilly.
17746         For LC_ALL etc, first try to set to "C" as POSIX requires and as
17747         the Autoconf documentation specifies; fall back to "unset" only if
17748         this fails.  Use a shell for-loop for this rather than an m4 loop,
17749         to shorten the output script.
17751 2002-08-30  Paul Eggert  <eggert@twinsun.com>
17753         * doc/autoconf.texi (Special Shell Variables): Mention POSIX
17754         1003.1-2001's requirements for CDPATH.  Give a simpler workaround
17755         for the CDPATH problem.  Document PWD.
17756         (Limitations of Builtins): Document the problem that "cd $foo" and
17757         "ls $foo" may refer to different directories in shells conforming
17758         to POSIX 1003.1-2001.  Use PS1 rather than CDPATH for "unset"
17759         example, since the old example is now out of date.
17761         * lib/autoconf/general.m4 (_AC_INIT_SRCDIR): Reject FOO if "cd
17762         FOO" and "ls FOO" talk about different directories; this catches
17763         problems when POSIX 1003.1-2001 "cd" fails due to symlink
17764         spaghetti.
17766         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Use AS_UNSET instead
17767         of rolling our own unset.
17768         (_AS_PREPARE): $as_unset CDPATH instead of AS_UNSETting it, since
17769         in practice we needn't worry about CDPATH if unset doesn't work.
17771         * Makefile.in, aclocal.m4, bin/Makefile.in,
17772         config/Makefile.in, doc/Makefile.in, lib/Makefile.in,
17773         lib/Autom4te/Makefile.in, lib/autoconf/Makefile.in,
17774         lib/autoscan/Makefile.in, lib/autotest/Makefile.in,
17775         lib/emacs/Makefile.in, lib/m4sugar/Makefile.in, man/Makefile.in,
17776         tests/Makefile.in: Regenerate with Automake 1.6.3.
17778         * config/config.guess, config/config.sub, config/mkinstalldirs:
17779         Update.
17781         * configure: Regenerate with self.
17783 2002-08-30  Kevin Ryde  <user42@zip.com.au>
17785         * doc/autoconf.texi (Limitations of Usual Tools): Notes on "cc"
17786         default output.
17788 2002-08-29  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
17790         * bin/autom4te.in (Request::load): Correctly test for "do" read
17791         failure.
17793 2002-08-29  Akim Demaille  <akim@epita.fr>
17795         * lib/Autom4te/General.pm (&xqx): New.
17796         (&xsystem): Use WIFEXITED and WEXITSTATUS instead of decoding $? by
17797         hand, which is not portable.
17798         (&error): New.
17799         * bin/autom4te.in: Use them.
17800         Use &error instead of die.
17801         * tests/m4sugar.at (m4_warn, m4_require: circular dependencies):
17802         Adjust.
17804 2002-08-17  Paul Eggert  <eggert@twinsun.com>
17806         * lib/autoconf/fortran.m4 (AC_PROG_F77): Remove fc from the
17807         default list of compilers to try, since it was long ago superseded
17808         by the ksh fc builtin.  Suggested by Steven G. Johnson.
17810 2002-07-31  Alexandre Duret-Lutz  <duret_g@epita.fr>
17812         * doc/autoconf.texi (Invoking autom4te): End the option table,
17813         fixing a bug introduced by the previous patch.
17814         (Limitations of Make): Add a 'target lookup' subentry in the
17815         'VPATH' entry.  Rewrite all `make' occurences as `@command{make}'.
17817 2002-07-29  Mark D. Roth  <roth@feep.net>
17819         * bin/autom4te.in: Remove --include-envvar and --site-macro-subdir
17820         options and use $AUTOM4TE_PATH.
17821         * doc/autoconf.texi: Remove documentation of autom4te
17822         --include-envvar and --site-macro-subdir options and document
17823         use of $AUTOM4TE_PATH.
17824         * lib/autom4te.in: Remove --include-envvar and --site-macro-subdir
17825         arguments from each language section.
17827 2002-07-29  Paul Eggert  <eggert@twinsun.com>
17829         * doc/install.texi: Include copyright symbol in copyright notice.
17831         * Makefile.am (MAKEINFO): Remove; it's a user-specified macro.
17832         Replace with:
17833         (AM_MAKEINFOFLAGS): New macro.
17834         * doc/Makefile.am (MAKEINFO, AM_MAKEINFOFLAGS): Likewise.
17835         * Makefile.am (INSTALL): Use the new macros.
17836         Use -o rather than --output, since "missing" does not grok --output.
17838 2002-07-25  Alexandre Duret-Lutz  <duret_g@epita.fr>
17840         * doc/autoconf.texi (Limitations of Make): Escaped newlines in
17841         comments do not always work. Never trust the exit status of
17842         `make -k'.
17844 2002-07-24  Kevin Ryde  <user42@zip.com.au>
17846         * doc/autoconf.texi (Limitations of Make, Making testsuite Scripts):
17847         Untabify, since tabs are not enjoyed by texi2dvi and makeinfo.
17849 2002-07-23  Paul Eggert  <eggert@twinsun.com>
17851         * lib/m4sugar/m4sh.m4 (_AS_PATH_SEPARATOR_PREPARE):
17852         Use PATH="/nonexistent;.", not PATH=".;.", as FreeBSD ksh2002
17853         apparently treats PATH="nonexistent" as if it contained ".".
17854         Bug reported by Stefan `Sec' Zehl.
17856 2002-07-22  Alexandre Duret-Lutz  <duret_g@epita.fr>
17858         * doc/autoconf.texi (Limitations of Make): Mention the special
17859         handling of the obj/ directory by BSD make.
17861 2002-07-20  Kevin Ryde  <user42@zip.com.au>
17863         * doc/autoconf.texi (Limitations of Make): Add HP-UX IA-64 trailing
17864         backslashes.
17866 2002-07-19  Akim Demaille  <akim@epita.fr>
17868         * doc/autoconf.texi (Function Portability): `exit'.
17869         (Programming in M4sh): Ethymology of M4sh.
17871 2002-07-19  Akim Demaille  <akim@epita.fr>
17873         * doc/autoconf.texi (AC_LIBOBJ vs LIBOBJS): More about $U.
17875 2002-07-18  Akim Demaille  <akim@epita.fr>
17877         Version 2.53b.
17879 2002-07-18  Akim Demaille  <akim@epita.fr>
17881         * config/config.guess, config/config.sub: Update.
17883 2002-07-18  Akim Demaille  <akim@epita.fr>
17885         Handle LIBOBJS and LTLIBOBJS once for all, including Libtool's and
17886         Automake's parts.
17888         * lib/autoconf/general.m4 (_AC_LIBOBJS_NORMALIZE): New.
17889         * lib/autoconf/status.m4 (AC_OUTPUT_COMMANDS_PRE): Call it.
17890         * tests/semantics.at (AC_REPLACE_FUNCS): Adjust.
17892 2002-07-18  Akim Demaille  <akim@epita.fr>,
17893             Alexandre Duret-Lutz  <duret_g@epita.fr>
17895         * lib/autoconf/status.m4 (_AC_OUTPUT_HEADERS): Install
17896         _AC_AM_CONFIG_HEADER_HOOK for Automake 1.7.
17898 2002-07-17  Russ Allbery  <rra@stanford.edu>
17900         * doc/autoconf.texi (Initializing configure): Clarify the
17901         description of the tarname default.
17903 2002-07-17  Andreas Buening  <andreas.buening@nexgo.de>
17905         * lib/autoconf/functions.m4 (AC_FUNC_FORK): Don't set
17906         ac_cv_func_fork_works before running _AC_FUNC_FORK, do it if the
17907         latter was not run.
17909 2002-07-17  Akim Demaille  <akim@epita.fr>
17911         * lib/Autom4te/General.pm (find_file): Browse the directories in
17912         the order they are given.
17914 2002-07-17  Akim Demaille  <akim@epita.fr>
17916         * tests/wrapsh.as, tests/wrappl.as: Merge into...
17917         * tests/wrapper.as: this.
17918         * tests/Makefile.am, configure.ac: Adjust.
17920 2002-07-17  Mark D. Roth  <roth@feep.net>
17922         * configure.ac: Add --enable-site-macro-dir option.
17923         * bin/Makefile.am: Expand @SITE_MACRO_DIR@.
17924         * bin/autom4te.in: Add --prepend-include, --include-envvar, and
17925         --site-macro-subdir options.
17926         * bin/autoconf.in: Add --prepend-include option.
17927         * bin/autoheader.in: Add --prepend-include option.
17928         * bin/autoreconf.in: Add --prepend-include option.
17929         * bin/autoscan.in: Add --prepend-include option.
17930         * bin/autoupdate.in: Add --prepend-include option.
17931         * doc/autoconf.texi: Document use of $AC_MACRO_PATH and site
17932         macro directory, remove note that include path directories are
17933         used in reverse order, and document --prepend-include option.
17934         * lib/autom4te.in: Use --prepend-include instead of --include.
17935         * tests/wrapsh.in: Use --prepend-include instead of --include.
17937 2002-07-17  Akim Demaille  <akim@epita.fr>
17939         * lib/autoconf/general.m4 (_AC_INIT_PACKAGE): `_' is allowed in
17940         tarnames.
17941         * doc/autoconf.texi (Initializing configure): Adjust.
17943 2002-07-17  Akim Demaille  <akim@epita.fr>
17945         * lib/autoconf/functions.m4 (AC_FUNC_REALLOC, _AC_FUNC_REALLOC)
17946         (_AC_FUNC_MALLOC): New.
17947         (AC_FUNC_MALLOC): Use the latter.
17948         Define HAVE_MALLOC to 0 if broken.
17949         * doc/autoconf.texi (Particular Functions): Adjust.
17951 2002-07-16  Akim Demaille  <akim@epita.fr>
17953         * lib/autoconf/c.m4 (AC_C_BACKSLASH_A): New.
17954         * doc/autoconf.texi (C Compiler): Adjust.
17956 2002-07-09  Akim Demaille  <akim@epita.fr>
17958         * doc/autoconf.texi: Properly set the ``header'' part.
17960 2002-07-09  Akim Demaille  <akim@epita.fr>
17962         * doc/autoconf.texi (Systemology): Some about Darwin.
17964 2002-07-09  Alexandre Duret-Lutz  <duret_g@epita.fr>
17966         * lib/autoconf/specific.m4 (AC_CYGWIN, AC_EMXOS2, AC_MINGW32):
17967         Don't use AC_REQUIRE in AU_DEFUN.
17969 2002-07-09  Art Haas  <ahaas@neosoft.com>
17971         * doc/autoconf.texi: Use @enddots{} or @dots{} where appropriate.
17973 2002-07-02  Alexandre Duret-Lutz  <duret_g@epita.fr>
17975         * bin/autoheader.in, bin/autom4te.in, bin/autoreconf.in,
17976         bin/autoupdate.in, bin/ifnames.in, lib/Autom4te/General.pm,
17977         lib/Autom4te/Struct.pm, lib/Autom4te/XFile.pm: Add local variables
17978         so that Emacs setups GNU style for perl-mode and cperl-mode.
17980 2002-06-27  Paul Eggert  <eggert@twinsun.com>
17982         * config/install-sh: Quote $src.  Prefer || to test's -o option,
17983         as per "Limitations of Builtins".
17984         * tests/atspecific.m4 (AT_CHECK_ENV): Likewise, for && vs test -a.
17985         * tests/semantics.at (AC_C_BIGENDIAN): Likewise.
17987         * tests/mktests.sh: Use grep instead of fgrep, as per
17988         "Limitations of Builtins".
17990 2002-06-15  Paul Eggert  <eggert@twinsun.com>
17992         * tests/wrapsh.as (AUTOCONF, AUTOHEADER, AUTOM4TE, AUTOM4TE_CFG,
17993         autom4te_perllibdir): Set to top build dir or src dir as appropriate,
17994         so that we consistently test the just-built programs.
17995         * tests/wrappl.as: Likewise.
17997 2002-06-12  Paul Eggert  <eggert@twinsun.com>
17999         * bin/autoconf.as (AUTOM4TE): Default to a fully qualified path
18000         name, so that symlinks to 'autoconf' work properly.  Bug reported
18001         by Bruno Haible.
18002         * bin/autoheader.in (AUTOM4TE): Likewise.
18003         * bin/autoreconf.in (autoconf, autoheader): Likewise.
18004         * bin/autoscan.in (autom4te): Likewise.
18005         * bin/autoupdate.in (autom4te): Likewise.
18007         * lib/autoconf/functions.m4 (_AC_LIBOBJ_FNMATCH): Also check for
18008         btowc, to fix a portability bug with diffutils-2.8.2/lib/fnmatch.c
18009         on Solaris 2.5.1.
18011 2002-06-11  Andreas Schwab  <schwab@suse.de>
18013         * doc/autoconf.texi: Add more dir entries.
18015 2002-06-10  Alexandre Duret-Lutz  <duret_g@epita.fr>
18017         * bin/autom4te.in ($cache): Don't define using `$me', the name
18018         of the cache should not depend on the name under which autom4te
18019         was installed.
18021 2002-06-07  Akim Demaille  <akim@epita.fr>
18023         * tests/tools.at (autoconf: forbidden tokens, basic)
18024         (autoconf: forbidden tokens, exceptions): Adjust to the change of
18025         words in autom4te.in.
18027 2002-06-07  Peter Eisentraut  <peter_e@gmx.net>
18029         * lib/autoconf/c.m4 (AC_LANG_PROGRAM(C)): Use
18030         _AC_LANG_PROGRAM_C_F77_HOOKS.
18032 2002-06-07  Akim Demaille  <akim@epita.fr>
18034         * lib/autoconf/functions.m4 (AC_REPLACE_FUNC_FNMATCH): Typo,
18035         rename as...
18036         (AC_REPLACE_FNMATCH): this.
18037         * tests/mktests.sh (exclude_list): Exclude AC_REPLACE_FNMATCH,
18038         AC_FUNC_FNMATCH_GNU.
18040 2002-06-07  Akim Demaille  <akim@epita.fr>
18042         * doc/autoconf.texi (Systemology): Point to Tru64 docs, and the
18043         Rosetta Stone for Unix.
18045 2002-06-07  Akim Demaille  <akim@epita.fr>
18047         * bin/autom4te.in (warn_forbidden): When rejecting a token,
18048         suggest m4_pattern_allow.
18049         Suggested by Adam J. Richter.
18051 2002-06-07  Akim Demaille  <akim@epita.fr>
18053         * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS): Initialize
18054         ac_config_libobj_dir.
18055         (AC_CONFIG_LIBOBJ_DIR): New.
18056         * lib/autoconf/functions.m4 (_AC_FUNC_FNMATCH): Split into...
18057         (_AC_FUNC_FNMATCH_IF, _AC_LIBOBJ_FNMATCH): these.
18058         Use ac_config_libobj_dir to find the replacement files.
18059         (AC_FUNC_FNMATCH, AC_FUNC_FNMATCH_GNU): Split into...
18060         (AC_FUNC_FNMATCH, AC_FUNC_FNMATCH_GNU, AC_REPLACE_FNMATCH)
18061         (AC_REPLACE_FNMATCH_GNU): these.
18062         (AC_FUNC_GETLOADAVG): Use ac_config_libobj_dir.
18063         * doc/autoconf.texi (Particular Functions, Generic Functions): Adjust.
18064         * tests/mktests.sh (ac_exclude_list): Don't check
18065         AC_FUNC_GETLOADAVG as it requires getloadavg.c which is not shipped.
18067 2002-06-06  Paul Eggert  <eggert@twinsun.com>
18069         * lib/autoconf/status.m4 (_AC_OUTPUT_LINKS): Fall back on cp
18070         if ln doesn't work.
18071         * NEWS: Likewise.
18072         * doc/autoconf.texi (Configuration Links): Likewise.
18073         (Limitations of Usual Tools): Prefer $(LN_S) to ln -s || ln.
18075 2002-06-05  Paul Eggert  <eggert@twinsun.com>
18077         * config/config.guess, config/config.sub, config/texinfo.tex:
18078         Update from masters.
18080 2002-05-29  Paul Eggert  <eggert@twinsun.com>
18082         * bin/autom4te.in ($m4): Do not assume that egrep and fgrep exist.
18083         * lib/autoconf/c.m4 (AC_C_BIGENDIAN): Likewise.
18084         * lib/autoconf/general.m4 (_AC_RUN_LOG_STDERR, AC_EGREP_CPP):
18085         Likewise.
18086         * lib/autoconf/Makefile.am (check-local): Likewise.
18087         * lib/autoconf/status.m4 (AC_CONFIG_HEADER): Likewise.
18088         * lib/autoconf/types.m4 (commentary only): Likewise.
18089         * lib/autotest/general.m4 (AT_INIT, AT_CHECK): Likewise.
18090         * lib/autotest/Makefile.am (check-local): Likewise.
18091         * lib/m4sugar/Makefile.am (check-local): Likewise.
18092         * tests/atspecific.m4 (AT_CONFIGURE_AC, AT_CHECK_DEFINES): Likewise.
18093         * tests/mktests.sh (egrep): New var; use it instead of plain egrep.
18095         * lib/autoconf/programs.m4 (AC_PROG_EGREP, AC_PROG_FGREP): New macros.
18096         * doc/autoconf.texi (Particular Programs): Document them.
18097         (Limitations of Usual Tools): Warn that egrep and fgrep may not exist.
18098         * NEWS: Likewise.
18100 2002-05-27  Paul Eggert  <eggert@twinsun.com>
18102         * lib/autoconf/types.m4 (AC_TYPE_MBSTATE_T): New macro.
18103         * NEWS, doc/autoconf.texi (Particular Types): Document it.
18104         * lib/autoconf/functions.m4 (_AC_FUNC_FNMATCH): Require it
18105         instead of AC_MBSTATE_T, which never existed.
18107 2002-05-23  Akim Demaille  <akim@epita.fr>
18109         * doc/autoconf.texi (Hosts and Cross-Compilation): Specify the
18110         version of Autoconf that is discussed.
18112 2002-05-22  Paul Eggert  <eggert@twinsun.com>
18114         * lib/autoconf/fortran.m4 (AC_PROG_F77): Remove cf77 and cft77
18115         from the default list of compilers to try.  Suggested by
18116         Kate Hedstrom.
18117         * NEWS: Document the above.
18118         * doc/autoconf.texi (Fortran 77 Compiler): Don't suggest cf77.
18120 2002-05-17  Paul Eggert  <eggert@twinsun.com>
18122         * lib/autoconf/types.m4 (AC_CHECK_MEMBER): Work correctly even if
18123         the member is itself an aggregate.  Bug reported by Sergey Poznyakoff.
18124         This improves on an earlier suggestion by H. Peter Anvin.
18126 2002-05-16  Paul Eggert  <eggert@twinsun.com>
18128         AC_FUNC_FNMATCH now tests only for POSIX compatibility.
18129         AC_FUNC_FNMATCH_GNU also tests for GNU extensions.
18130         Both macros now accept an optional source-dir arg.
18131         New macro AC_GNU_SOURCE to define _GNU_SOURCE.
18133         * NEWS: Document this.
18134         * doc/autoconf.texi (Particular Functions, UNIX Variants): Likewise.
18136         * lib/autoconf/functions.m4 (_AC_FUNC_FNMATCH): New macro.
18137         (AC_FUNC_FNMATCH): Use it.  Test only for POSIX conformance,
18138         not for GNU extensions; this undoes part of the 2000-11-03 change,
18139         reverting to 2.13-compatible behavior.
18140         Add new optional argument DIR.
18141         (AC_FUNC_FNMATCH_GNU): New macro.
18143         * lib/autoconf/specific.m4 (AC_GNU_SOURCE): New macro.
18145 2002-05-08  Paul Eggert  <eggert@twinsun.com>
18147         * lib/autoconf/headers.m4 (AC_HEADER_TIOCGWINSZ):
18148         Don't require AC_SYS_POSIX_TERMIOS.  The test is unnecessary,
18149         and it causes a 'test' syntax error if it fails.
18150         Bug reported by Stephen Gildea.
18152         * lib/autoconf/functions.m4 (AC_FUNC_SETVBUF_REVERSED):
18153         If prototypes are supported, use them to check this at compile-time,
18154         instead of trying to check it at run-time.  If we must do a run-time
18155         check, assume that setvbuf is standard when cross-compiling, as
18156         nonstandard setvbuf occurs only on ancient and unlikely hosts.
18157         Bug reported by Paul D. Smith.
18159         * lib/autoconf/functions.m4 (AC_FUNC_GETLOADAVG): Add optional
18160         argument specifying location of getloadavg.c.  This removes a
18161         FIXME.  This idea was taken from Jim Meyering's implementation in
18162         textutils.
18163         * doc/autoconf.texi (Particular Functions): Document this.
18164         Also, mention HAVE_NLIST_H rather than NLIST_STRUCT, since
18165         that's what the code does; this fixes a bug reported by
18166         Paul D. Smith.
18168 2002-05-03  Akim Demaille  <akim@epita.fr>
18170         * bin/autoreconf.in (autoreconf): Rewrite to use Gettext's
18171         autopoint instead of gettextize.
18172         ($uses_alocal): Rename as...
18173         ($uses_aclocal): this.
18174         * doc/autoconf.texi (autoreconf Invocation): Adjust.
18175         Suggested by Bruno Haible.
18177 2002-05-03  Akim Demaille  <akim@epita.fr>
18179         * lib/m4sugar/m4sugar.m4 (m4_map_sep): New.
18181 2002-04-29  Paul Eggert  <eggert@twinsun.com>
18183         * bin/autoreconf.in (autoreconf): Don't age aclocal.m4's input
18184         files to be 1 second older; just set them to be the same time.
18185         Also, sleep 1 second after the first aclocal, to work around
18186         problems with sub-second time stamps on the input files.
18188 2002-04-29  Thien-Thi Nguyen  <ttn@gnu.org>
18190         * doc/autoconf.texi: Mention "set -e -x" lossage
18191         under node "Limitations of Builtins".
18193 2002-04-29  Akim Demaille  <akim@epita.fr>
18195         * doc/install.texi: Better wording for setting variables when
18196         running configure.
18197         From Christian Cornelssen.
18199 2002-04-29  Akim Demaille  <akim@epita.fr>
18201         * tests/m4sh.at (LINENO): If testsuite itself is rewritten because
18202         of lack of $LINENO support, then the test will compare the $LINENO
18203         in testsuite vs. the lineno in the test file.  This is wrong, of
18204         course.
18205         Be sure to protect it.
18206         Reported by Patrick Welche.
18208 2002-04-25  Akim Demaille  <akim@epita.fr>
18210         * doc/autoconf.texi (Obsolete Macros): Typo.
18211         Reported by Vladimir Volovich.
18213 2002-04-25  Akim Demaille  <akim@epita.fr>
18215         * bin/autoreconf.in (autoreconf): Don't let aclocal.m4 be older
18216         than some of the input files, hence, on the second run of aclocal,
18217         if some of its input are younger, make them older.
18218         Suggested by Paul Eggert.
18220 2002-04-25  Akim Demaille  <akim@epita.fr>
18222         * doc/autoconf.texi (Limitations of Usual Tools): sed and `!'.
18223         Thanks to Paul Eggert.
18225 2002-04-25  Akim Demaille  <akim@epita.fr>
18227         * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS): Let ac_subst_files
18228         and ac_subst_vars be sh variables containing the list of
18229         AC_SUBST_FILES'ed and AC_SUBST'ed identifiers.  Output them in the
18230         DEFAULT diversion.
18231         (_AC_INIT_PREPARE): Use them to log them.
18232         (_AC_SUBST, _AC_SUBST_SED_PROGRAM): Remove.
18233         (AC_SUBST, AC_SUBST_FILE): Instead of buliding the
18234         _AC_SUBST_SED_PROGRAM, store the list of output files/variables in
18235         _AC_SUBST_FILES and _AC_SUBST_VARS.
18236         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES): Adjust.
18238 2002-04-24  Akim Demaille  <akim@epita.fr>
18240         * bin/autoreconf.in (autoreconf): Run automake after autoconf and
18241         autoheader, so that automake does not complain about a missing
18242         config.h.in that was to be created.
18244 2002-04-23  Akim Demaille  <akim@epita.fr>
18246         * bin/autoheader.in (parse_args): --warning takes an argument.
18247         Fixes PR/220.
18249 2002-04-22  Peter Eisentraut  <peter_e@gmx.net>
18251         * lib/autoconf/general.m4 (_AC_RUN_IFELSE): Remove gmon.out
18252         and bb.out when cleaning up.
18254 2002-04-22  Akim Demaille  <akim@epita.fr>
18256         Version 2.53a.
18258 2002-04-22  Akim Demaille  <akim@epita.fr>
18260         * tests/m4sh.at (LINENO): Fix the Zsh skip pattern.
18262 2002-04-22  Akim Demaille  <akim@epita.fr>
18264         * doc/autoconf.texi (Pretty Help Strings): Remove a spurious
18265         comma.
18266         Reported by Gregory Giannoni.
18268 2002-04-22  Akim Demaille  <akim@epita.fr>
18270         * tests/m4sh.at (LINENO): Skip the test if LINENO cannot be unset.
18271         Fixes false failures on Darwin.
18273 2002-04-21  Paul Eggert  <eggert@twinsun.com>
18275         * TODO, bin/autoupdate.in, doc/autoconf.texi,
18276         lib/autoconf/general.m4, lib/autoconf/libs.m4,
18277         lib/autoconf/status.m4, lib/m4sugar/m4sugar.m4, tests/m4sh.at,
18278         tests/tools.at: Minor spelling and grammar fixes.
18280 2002-04-20  Paul Eggert  <eggert@twinsun.com>
18282         * doc/autoconf.texi (Shell Substitutions): Fix typos in yesterday's
18283         ZSH_VERSION fixes.  Bug reported by Raja R Harinath.
18284         * lib/autotest/general.m4 (AT_INIT): Likewise.
18285         * tests/atgeneral.m4 (AT_INIT): Likewise.
18287 2002-04-19  Paul Eggert  <eggert@twinsun.com>
18289         * NEWS, TODO, bin/autom4te.in, bin/autoreconf.in, bin/autoupdate.in,
18290         doc/autoconf.texi, lib/freeze.mk, lib/Autom4te/Struct.pm,
18291         lib/autoconf/autoheader.m4, lib/autoconf/c.m4,
18292         lib/autoconf/functions.m4, lib/autoconf/general.m4,
18293         lib/autoconf/lang.m4, lib/autoconf/libs.m4, lib/autoscan/identifiers,
18294         lib/autotest/general.m4, lib/m4sugar/m4sh.m4, tests/atgeneral.m4,
18295         tests/atspecific.m4, tests/semantics.at, tests/torture.at:
18296         Minor spelling and grammar fixes.
18298         * doc/autoconf.texi: Follow the outline suggested in the GNU
18299         Sample Texts sections of the Texinfo 4.2 manual.  Most
18300         importantly, this makes sure that the copyright notices appear in
18301         all output formats.  You probably need Texinfo 4.2 to generate
18302         the manual now.
18304         Fix some bugs when using "$@" when there might be zero positional
18305         arguments in cases where this matters.
18307         * bin/autoconf.as: Rewrite so that the problem does not come up.
18308         * lib/autoconf/programs.m4 (AC_CHECK_PROG): Likewise.
18309         * lib/autoconf/status.m4 (AC_OUTPUT): Likewise.
18310         * lib/autotest/general.m4 (AT_INIT): Likewise.
18312         * bin/autoheader.in: Use 'case' statement to work around problem.
18313         * bin/auto4mte.in: Likewise.
18314         * bin/autoreconf.in: Likewise.
18315         * bin/autoscan.in: Likewise.
18316         * bin/autoupdate.in: Likewise.
18317         * bin/ifnames.in: Likewise.
18319         * doc/autoconf.texi (Shell Substitutions): Document the problem.
18321         * lib/autotest/general.m4 (AT_INIT):
18322         Use Zsh alias to work around problem.
18323         * tests/atgeneral.m4 (AT_INIT): Likewise.
18325         * tests/c.at: We can't have zero arguments, so remove workaround
18326         that is not portable to Zsh.
18328 2002-04-19  Alexandre Duret-Lutz  <duret_g@epita.fr>
18330         * bin/autoupdate.in (handle_autoconf_macros): Honor AU_DEFUNs
18331         from aclocal.m4 too.
18333 2002-04-12  Akim Demaille  <akim@epita.fr>
18335         * tests/wrappl.as: New, M4sh precursor of wrappl.in.
18337 2002-04-10  Akim Demaille  <akim@epita.fr>
18339         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Install the Zsh
18340         workaround for ${1+"$@"}.
18341         * doc/autoconf.texi (Shell Substitutions): Explain it.
18342         From Oliver Kiddle and Peter Stephenson.
18344         Have M4sh perform minimal shell sanitizing.
18346         * lib/m4sugar/m4sh.at (AS_SHELL_SANITIZE): Split the `_AS_PREPARE_*'
18347         part into...
18348         (_AS_PREPARE): this new macro.
18349         (AS_PREPARE): New.
18350         (AS_INIT): Invoke AS_SHELL_SANITIZE.
18351         * tests/m4sh.at (AT_DATA_LINENO): Use _AS_PREPARE.
18353         Adjust Autoconf and Autotest.
18355         * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS): Don't invoke
18356         AS_SHELL_SANITIZE, AS_INIT did it, but invoke AS_PREPARE.
18357         * lib/autotest/general.m4 (AT_INIT): Likewise.
18358         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS):
18359         Invoke _AS_PREPARE (not AS_PREPARE) in addition to
18360         AS_SHELL_SANITIZE.
18362         Use this M4sh to generate Autoconf's shell scripts.
18364         * tests/wrapsh.as: New, precursor of wrapsh.in.
18365         * tests/Makefile.am: Include lib/freeze.mk to get the dependencies
18366         on Autotest and M4sh.
18367         ($(TESTSUITE)): Use $(autotest_m4f_dependencies).
18368         (wrapsh.in): New target.
18369         * bin/autoconf.as: New, precursor of autoconf.in.
18370         (autoconf.in): New target.
18372 2002-04-09  Alexandre Duret-Lutz  <duret_g@epita.fr>
18374         * doc/autoconf.texi (Limitations of Make): Mention the issue
18375         with indented comments in rules.
18377 2002-04-09  Andreas Schwab  <schwab@suse.de>
18379         * lib/autoconf/status.m4 (_AC_SRCPATHS): Handle empty
18380         ac_top_builddir when setting ac_abs_top_builddir.
18382 2002-04-06  Kevin Ryde  <user42@zip.com.au>
18384         * doc/autoconf.texi (Systemology): Add link to Unix V7 online docs.
18385         (Portable Shell): Cross reference to Systemology.
18387 2002-04-05  Akim Demaille  <akim@epita.fr>
18389         * bin/autoreconf.in (autoreconf): Be sure to accumulate the
18390         directories when descending in a SUBDIRS.
18391         Reported by Ezra Peisach.
18393 2002-04-04  Andreas Schwab  <schwab@suse.de>
18395         * lib/m4sugar/m4sh.m4 (_AS_PATH_WALK): Only simplify if path
18396         contains no literal separators.
18398 2002-04-03  Akim Demaille  <akim@epita.fr>
18400         * lib/autoconf/status.m4 (_AC_CONFIG_FILE, _AC_CONFIG_HEADER)
18401         (_AC_CONFIG_COMMAND, _AC_CONFIG_LINK): New.
18402         Use dnl, not the KILL diversion.
18403         Extracted from...
18404         (AC_CONFIG_FILES, AC_CONFIG_HEADERS, AC_CONFIG_COMMANDS)
18405         (AC_CONFIG_LINKS): here.
18406         Adjust.
18407         Don't use the KILL diversion, as it kills spurious output, which
18408         results in failures being hidden.
18409         Use m4_defn where appropriate.
18410         (AC_CONFIG_IF_MEMBER): Kill the real bug: a spurious parenthesis
18411         after the second argument.
18412         Use m4_defn.
18413         * lib/autom4te.in (Autoconf, Autotest, M4sh): Don't pass --warning
18414         syntax, as it is provided by M4sugar.
18415         * tests/torture.at (Multiple AC_CONFIG_FILES): New.
18417 2002-04-03  Andreas Schwab  <schwab@suse.de>
18419         * lib/m4sugar/m4sugar.m4 (m4_bmatch): Make sure m4_bregexp is not
18420         expanded if $# <= 2.
18422         * bin/autoreconf.in (autoreconf): Run automake after rerunning
18423         aclocal.
18425 2002-04-03  Akim Demaille  <akim@epita.fr>
18427         * lib/autoconf/lang.m4 (_AC_COMPILER_OBJEXT_REJECT)
18428         (_AC_COMPILER_EXEEXT_REJECT): New.
18429         Also recognize *.bb and *.bbg as compilation byproducts.
18430         (_AC_COMPILER_EXEEXT_DEFAULT, _AC_COMPILER_EXEEXT_O)
18431         (_AC_COMPILER_OBJEXT): Use them.
18432         Fixes Debian #138666.
18434 2002-04-02  Peter Eisentraut  <peter_e@gmx.net>
18436         Integrate AC_PROG_CC_STDC into AC_PROG_CC.
18438         * lib/autoconf/c.m4 (AC_PROG_CC_STDC): Rename to _AC_PROG_CC_STDC.
18439         AU_DEFUN old name.  Use _AC_COMPILE_IFELSE.
18440         (AC_PROG_CC): Call _AC_PROG_CC_STDC.
18441         (AC_C_INLINE): Do not require AC_PROG_CC_STDC.
18442         (AC_C_CONST): Same.
18443         (AC_C_INLINE): Same.
18444         (AC_C_PROTOTYPES): Same.  Require AC_PROG_CC instead.
18445         * doc/autoconf.texi, NEWS: Document.
18446         * tests/mktests.sh (au_exclude_list): Add AC_PROG_CC_STDC and
18447         AC_C_CROSS.
18449 2002-04-02  Akim Demaille  <akim@epita.fr>
18451         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Invoke
18452         _AS_MKDIR_P_PREPARE.
18454 2002-03-28  Kevin Ryde  <user42@zip.com.au>
18456         * lib/autoconf/c.m4 (AC_C_INLINE): Test with a typedef return value,
18457         to avoid versions of HP C which don't allow that.
18459 2002-03-27  Paul Eggert  <eggert@twinsun.com>
18461         * lib/m4sugar/m4sh.m4 (_AS_BASENAME_PREPARE): New macro.
18462         (AS_SHELL_SANITIZE): Invoke it.
18463         (AS_BASENAME): AS_REQUIRE it, and use $as_basename.
18465 2002-03-26  Akim Demaille  <akim@epita.fr>
18467         * doc/autoconf.texi (Portable Shell): Add pointers to FAQs.
18469 2002-03-26  Akim Demaille  <akim@epita.fr>
18471         * doc/autoconf.texi (Introduction): The GNATS base moved.
18473 2002-03-25  Paul Eggert  <eggert@twinsun.com>
18475         * tests/m4sh.at: Don't rely on "PATH=test:$PATH test-1" working
18476         as POSIX requires, as it doesn't work with Zsh.
18477         * doc/autoconf.texi (Assignments): Document the problem.
18479 2002-03-25  Alexandre Duret-Lutz  <duret_g@epita.fr>
18481         * doc/autoconf.texi (Limitations of Make): Mention more issue
18482         about VPATH, overriding of macros in sub-makes, and handling of
18483         SHELL.
18485 2002-03-21  Paul Eggert  <eggert@twinsun.com>
18487         * doc/autoconf.texi (Here-Documents): Mention Solaris 8 dtksh
18488         problem with here-document buffer boundaries.
18490         * lib/m4sugar/m4sh.m4 (_AS_LINENO_PREPARE): Unset ENV and BASH_ENV
18491         when reinvoking the shell, to work around problems with installers
18492         who put strange things like "cd" commands in their environments.
18494 2002-03-19  Akim Demaille  <akim@epita.fr>
18496         * tests/semantics.at (AC_C_BIGENDIAN): s/unknow/unknown/.
18497         From Aaron Ucko.
18499 2002-03-19  Akim Demaille  <akim@epita.fr>
18501         * bin/autoscan.in (scan_file): Specify the location in `&used'
18502         invocations.
18503         From Nicolas Joly.
18505 2002-03-19  Akim Demaille  <akim@epita.fr>
18507         * doc/autoconf.texi: Adjust @code/@command, @xref/@ref usage.
18508         From Nishio Futoshi.
18510 2002-03-19  Akim Demaille  <akim@epita.fr>
18512         * lib/m4sugar/m4sugar.m4 (m4_define_default, m4_fst, m4_map): New.
18514 2002-03-18  Paul Eggert  <eggert@twinsun.com>
18516         * doc/autoconf.texi (Programming in M4sh): Add AS_MKDIR_P.
18517         (Limitations of Usual Tools): Add mkdir section.
18519         * lib/m4sugar/m4sh.m4 (_AS_MKDIR_P_PREPARE): New macro.
18520         (AS_MKDIR_P): Require it.  Use mkdir -p if available, falling
18521         back on AS_DIRNAME to compute prefixes otherwise; this is
18522         roughly what mkinstalldirs does.  That way, we need not have
18523         our own filename disassembler.  The old disassembler did not
18524         work with Solaris 8 dtksh, which is ksh Version M-12/28/93d.
18526         * lib/autotest/general.m4 (AT_INIT, AT_CLEANUP):
18527         Create at_test_all by a series of assignments,
18528         not by a single assignment of a long string.  The latter causes ksh
18529         version 11/16/88g to silently misbehave on OpenServer 5.0.6a,
18530         presumably because of a buffer overrun.
18532 2002-03-14  Paul Eggert  <eggert@twinsun.com>
18534         * lib/autotest/general.m4 (at_times_skip):
18535         Renamed from at_times.  Now a boolean.
18536         ksh93 Version M-12/28/93d doesn't like 'x=times; $x'; it
18537         says 'times: not found'.
18539 2002-03-14  Akim Demaille  <akim@epita.fr>
18541         * bin/autoreconf.in (&study_gettextize): New.
18542         (&autoreconf): Handle newest gettextize.
18543         Rerun aclocal if needed.
18544         Suggested by Andreas Schwab.
18546 2002-03-13  Akim Demaille  <akim@epita.fr>
18548         * doc/autoconf.texi (Special Shell Variables): More about IFS.
18550 2002-03-13  Akim Demaille  <akim@epita.fr>
18552         * doc/autoconf.texi (Header Portability): New.
18553         Add information about stdint.h and inttypes.h from Paul Eggert.
18555 2002-03-13  Akim Demaille  <akim@epita.fr>
18557         * doc/autoconf.texi (Limitations of Usual Tools): Some about `cp
18558         -p'.
18559         From Bob Proulx.
18561 2002-03-12  Akim Demaille  <akim@epita.fr>
18563         * lib/m4sugar/m4sh.m4 (AS_BASENAME_EXPR): AS_REQUIRE, not
18564         m4_require.
18566 2002-03-11  Andreas Schwab  <schwab@suse.de>
18568         * configure.ac: Explicitly check for EMACS since AM_PATH_LISPDIR
18569         does not do it if --with-lispdir is given.
18571 2002-03-08  Akim Demaille  <akim@epita.fr>
18573         Version 2.53.
18575 2002-03-08  Akim Demaille  <akim@epita.fr>
18577         * doc/autoconf.texi (Subdirectories): Clarify that the
18578         subdirectory should exist.
18580 2002-03-08  Akim Demaille  <akim@epita.fr>
18582         * Makefile.am (AUTOMAKE_OPTIONS): 1.6.
18584 2002-03-08  Akim Demaille  <akim@epita.fr>
18586         * bin/autom4te.in (&handle_m4): Do not foreach with `$_' as it
18587         aliases the actual variables, and modifications of the former
18588         affect the latter.
18590 2002-03-08  Akim Demaille  <akim@epita.fr>
18592         * bin/autom4te.in (&handle_m4): Protect us from corrupted file
18593         because of C-c: have m4 output in tmp files, then mv them.
18595 2002-03-08  Akim Demaille  <akim@epita.fr>
18597         * bin/autoconf.in, bin/autoheader.in, bin/autom4te.in,
18598         * bin/autoreconf.in, bin/autoscan.in, bin/autoupdate.in,
18599         * bin/ifnames.in: Copyright update.
18601 2002-03-08  Akim Demaille  <akim@epita.fr>
18603         * doc/autoconf.texi (Invoking autom4te): New.
18605 2002-03-05  Akim Demaille  <akim@epita.fr>
18607         * doc/autoconf.texi (Specifying Names): Clarification suggested by
18608         Kevin Ryde.
18610 2002-03-05  Akim Demaille  <akim@epita.fr>
18612         Version 2.52i.
18614 2002-03-04  Akim Demaille  <akim@epita.fr>
18616         * doc/autoconf.texi (AC_LIBOBJ vs. LIBOBJS): New.
18617         * lib/autoconf/general.m4 (AC_INIT): More informative error
18618         message for LIBOBJ.
18620 2002-03-04  Akim Demaille  <akim@epita.fr>
18622         * lib/freeze.mk ($(build_libdir)/m4sugar/version.m4): New, for
18623         parallel builds.
18625 2002-03-04  Akim Demaille  <akim@epita.fr>
18627         * doc/autoconf.texi (Transforming Names): Equality between target
18628         and host is irrelevant.
18629         (Specifying Names, Canonicalizing): Remove all references to the
18630         backward compatibility hooks.  Rather, collect them all into...
18631         (Hosts and Cross-Compilation): this new section.
18632         * doc/install.texi (System Type): Ditto.
18633         * lib/autoconf/general.m4 (AC_CANONICAL_HOST): Explicitly state
18634         that `--host' implies cross-compilation.
18636 2002-03-04  Akim Demaille  <akim@epita.fr>
18638         * doc/autoconf.texi (Evaluation Macros): New.
18639         * lib/m4sugar/m4sugar.m4 (m4_lquote): Remove, it is totally
18640         useless.
18641         (_m4_foreach): Define the variant with immediate evaluation so
18642         that it contains exactly the items, not an expression which
18643         evaluation is the current item.
18644         (m4_re_string, m4_re_word): Don't over quote them.
18646 2002-03-04  Akim Demaille  <akim@epita.fr>
18648         Instead of having stacking `shift's evaluated at the end, let
18649         `foreach' loops immediately evaluate them.
18651         * lib/m4sugar/m4sugar.m4 (m4_quote, m4_dquote): Use $@ rather than
18652         $*.  This is the n-th time I change my mind, but hopefully this is
18653         the last...
18654         (m4_lquote): New.
18655         (m4_text_wrap): Use m4_foreach, which is finally correct _and_
18656         efficient.
18657         (m4_foreach_quoted, m4_car_quoted, _m4_foreach_quoted): Remove, as
18658         it was only a hack for m4_text_wrap.
18659         (m4_car2): Remove, replaced by...
18660         (m4_cdr): New.
18661         (_m4_foreach): Adjust.
18662         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Adjust, and use
18663         m4_bpatsubst for clarification.
18665 2002-03-04  Akim Demaille  <akim@epita.fr>
18667         * doc/autoconf.texi (Changequote is Evil): New.
18669 2002-03-03  Kevin Ryde  <user42@zip.com.au>
18671         * doc/autoconf.texi (Portable Shell): Mention 32-byte #! length limit
18672         on old systems like SunOS.
18674 2002-03-01  Peter Eisentraut  <peter_e@gmx.net>
18676         * lib/autoconf/c.m4, lib/autoconf/fortran.m4,
18677         lib/autoconf/functions.m4, lib/autoconf/general.m4,
18678         lib/autoconf/headers.m4, lib/autoconf/lang.m4,
18679         lib/autoconf/programs.m4, lib/autoconf/status.m4: Improve spelling
18680         of messages.
18682 2002-02-28  Akim Demaille  <akim@epita.fr>
18684         * lib/autotest/general.m4 (AT_INIT): Suggest a title to the
18685         message to be sent.
18687 2002-02-28  Kevin Ryde  <user42@zip.com.au>
18689         * doc/autoconf.texi (Function Portability): Add va_copy and va_list.
18691 2002-02-25  Akim Demaille  <akim@epita.fr>
18693         * lib/autoconf/functions.m4 (AC_FUNC_SETPGRP): Fix the test.
18694         From Akinori Musha.
18696 2002-02-13  Alexandre Duret-Lutz  <duret_g@epita.fr>
18698         * lib/Autom4te/XFile.pm (getline, getlines): New functions,
18699         translate \r\n to \n.
18701 2002-02-07  Akim Demaille  <akim@epita.fr>
18703         Version 2.52h.
18705 2002-02-07  Akim Demaille  <akim@epita.fr>
18707         Fix Autoconf PR/209.
18708         Also reported by Frank Denis.
18710         * lib/m4sugar/m4sh.m4 (_AS_PATH_WALK): Don't over quote.
18712 2002-02-07  Akim Demaille  <akim@epita.fr>
18714         Fix Autoconf PR/207:
18715         AC_PREFIX_PROGRAM fails with dashed program names
18717         * lib/autoconf/general.m4 (AC_PREFIX_PROGRAM): Just use a fresh
18718         variable when looking for the prefix program.
18719         Now it also works for shell variables.
18721 2002-02-07  Akim Demaille  <akim@epita.fr>
18723         * doc/autoconf.texi (Limitations of Builtins): More about
18724         case/esac.
18726 2002-02-06  Akim Demaille  <akim@epita.fr>
18728         * lib/autoconf/status.m4 (_AC_OUTPUT_COMMANDS): Don't output empty
18729         case/esac, some shells don't support it.
18730         Reported by Zack Weinberg.
18731         * tests/torture.at (AC_CONFIG_COMMANDS with empty commands): New.
18733 2002-02-06  Akim Demaille  <akim@epita.fr>
18735         * lib/autotest/general.m4 (AT_INIT): When handling --keywords, be
18736         sure not to introduce newlines in at_groups.
18737         * lib/autotest/Makefile.am (autotest.m4f): Typo.
18739 2002-02-06  Akim Demaille  <akim@epita.fr>
18741         * tests/torture.at (Configuring subdirectories): Skip if aclocal
18742         is not available.
18744 2002-02-05  Paul Eggert  <eggert@twinsun.com>
18746         * doc/autoconf.texi (Specific Compiler Characteristics):
18747         Describe HP-UX cc bug workaround more accurately.
18748         * lib/autoconf/types.m4 (AC_CHECK_SIZEOF): Cast to long,
18749         not unsigned long.
18750         * tests/semantics.at (AC_CHECK_SIZEOF): Check non-GCC
18751         cross-compilers, too.  This undoes some of the most recent change
18752         to this file.
18754 2002-02-05  Akim Demaille  <akim@epita.fr>
18756         * tests/Makefile.am (check_SCRIPTS): Use it, instead of WRAPPERS,
18757         to make sure they are up to date when `check' is run.
18759 2002-02-05  Akim Demaille  <akim@epita.fr>
18761         * doc/autoconf.texi (Making testsuite Scripts): Document
18762         package.m4.
18764 2002-02-05  Akim Demaille  <akim@epita.fr>
18766         * lib/freeze.mk: New.
18768 2002-02-05  Akim Demaille  <akim@epita.fr>
18770         Implement `autom4te --freeze'.
18772         * bin/autom4te.in (&freeze): New.
18773         * lib/autoconf/autoconf.m4, lib/autotest/general.m4,
18774         * lib/m4sugar/m4sh.m4: Don't include files given by autom4te.
18776 2002-02-05  Akim Demaille  <akim@epita.fr>
18778         * bin/autom4te.in (&parse_args): Implement `frozen files are
18779         optional are the sum of the previous files on the command line'.
18780         Also, pass `--reload-state=' on them, so...
18781         (handle_m4): don't.
18782         * lib/autom4te.in (Autotest, Autoconf): Rely on M4sh.
18783         (M4sh): Rely on M4sugar.
18784         (Autotest, M4sh, M4sugar): Use frozen files.
18786 2002-01-31  Akim Demaille  <akim@epita.fr>
18788         * lib/autoconf/general.m4 (_AC_INIT_PACKAGE): Accept $4.
18789         * doc/autoconf.texi (Initializing configure): Adjust.
18791 2002-01-30  Akim Demaille  <akim@epita.fr>
18793         * lib/autoconf/general.m4 (_AC_INIT_PACKAGE): Map non
18794         alphanumeric to `-' instead of `_'.
18796 2002-01-30  Akim Demaille  <akim@epita.fr>
18798         * tests/semantics.at (AC_CHECK_SIZEOF): Split into two tests: one
18799         for plain code, the other for cross-compilation code.  The latter
18800         is now run with GCC only.
18801         * doc/autoconf.texi (Compilers and Preprocessors): New.
18803 2002-01-30  Akim Demaille  <akim@epita.fr>
18805         * lib/autoconf/general.m4 (_AC_INIT_PACKAGE): Support pre-defined
18806         values.
18807         * doc/autoconf.texi (Initializing configure): Explain how to
18808         change AC_INIT default values.
18810 2002-01-29  Akim Demaille  <akim@epita.fr>
18812         * tests/torture.at (Configuring subdirectories): Use configure.in,
18813         so that aclocal 1.4 works.
18814         Reported by Alexandre Duret-Lutz and Larry Schmitt.
18816 2002-01-28  Akim Demaille  <akim@epita.fr>
18818         * doc/autoconf.texi (Writing testsuite.at): AT_CLEANUP no longer
18819         needs an argument.
18821 2002-01-28  Akim Demaille  <akim@epita.fr>
18823         * lib/autotest/general.m4 (AT_INIT): Don't be ridiculous: adjust
18824         AUTOTEST_PATH *after* it was set.
18825         Don't put `.' in the PATH: the user should be precise and `./' if
18826         needed.  In addition, given that the test suite does some `cd', if
18827         `.' is in the path, the `tested programs' sections will report
18828         programs found in the test suite's directory, while during the
18829         tests (performed in their own directory), these programs are no
18830         longer visible.  In other words, the results is confusing and
18831         useless.
18832         * tests/m4sh.at: Adjust: don't rely on `.' being in the PATH.
18834 2002-01-24  Akim Demaille  <akim@epita.fr>
18836         Version 2.52g.
18838 2002-01-24  Akim Demaille  <akim@epita.fr>
18840         * bin/autoheader.in, bin/autoconf.in, bin/autoscan.in,
18841         * doc/autoconf.texi: Finally add Akim as an author.
18843 2002-01-24  Akim Demaille  <akim@epita.fr>
18845         * lib/m4sugar/m4sh.m4 (_AS_LINENO_PREPARE): Use PATH_SEPARATOR.
18846         (_AS_PATH_SEPARATOR_PREPARE): Don't expect $SHELL to be
18847         Bourne. Use /bin/sh.
18848         From Andreas Buening.
18850 2002-01-24  Akim Demaille  <akim@epita.fr>
18852         * config/config.guess, config/config.sub, config/texinfo.tex:
18853         Update from masters.
18855 2002-01-24  Akim Demaille  <akim@epita.fr>
18857         * Makefile.am (AUTOMAKE_OPTIONS): 1.5b.
18858         * config/auxdir.m4, config/cond.m4, config/depend.m4,
18859         * config/init.m4, config/install-sh.m4, config/lispdir.m4,
18860         * config/missing.m4, config/sanity.m4, config/select.m4,
18861         * config/strip.m4: Remove, to ease sync'ing with any version of
18862         Automake.
18864 2002-01-24  Akim Demaille  <akim@epita.fr>
18866         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ARGS)
18867         (_AC_INIT_PREPARE): Support -n as --no-create, as documented.
18868         Reported by Geir Ove Myhr.
18870 2002-01-21  Akim Demaille  <akim@epita.fr>
18872         * lib/autoconf/functions.m4 (AC_FUNC_MMAP): #Undef malloc.
18874 2002-01-21  Akim Demaille  <akim@epita.fr>
18876         * lib/Autom4te/General.pm (getopt): Use a more GNUish error
18877         message on invalid options.
18878         * bin/autom4te.in (parse_args): Don't use
18879         Autoconf::General::getopt with non valid options.
18881 2002-01-17  Jim Meyering  <meyering@lucent.com>
18883         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Initialize
18884         $ac_cv_exeext so we don't use an old, invalid, cached value.
18886 2002-01-11  Akim Demaille  <akim@epita.fr>
18888         * lib/autoconf/functions.m4 (AC_FUNC_STRNLEN): New, from Jim
18889         Meyering.
18890         * doc/autoconf.texi (Function Portability): Document the strnlen
18891         limitation.
18892         (Particular Functions): Document AC_FUNC_STRNLEN.
18893         * lib/autoscan/functions: Adjust.
18895 2002-01-06  Akim Demaille  <akim@epita.fr>
18897         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): Don't create
18898         package.m4, since is really depends upon configure.ac, not
18899         configure.
18900         * doc/autoconf.texi (testsuite Scripts): Adjust.
18901         * tests/Makefile.am (package.m4): New.
18902         EXTRA_DIST it since its a source.
18904 2002-01-06  Akim Demaille  <akim@epita.fr>
18906         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ARGS): Move the AC_SUBST
18907         of PACKAGE_NAME, PACKAGE_TARNAME, PACKAGE_VERSION, PACKAGE_STRING,
18908         and PACKAGE_BUGREPORT from here...
18909         (_AC_INIT_DEFAULTS): to here, since it is unrelated to the
18910         arguments.
18911         (_AC_INIT_PREPARE): AC_DEFINE these symbols.
18912         * lib/autotest/general.m4: Use AT_PACKAGE_*, not PACKAGE_*.
18913         (AT_INIT): No longer catch `^PACKAGE_(BUGREPORT|STRING)$'.
18914         * tests/tools.at (autoheader): Adjust.
18915         * tests/atspecific.m4 (AT_CHECK_DEFINES): Adjust.
18917 2002-01-06  Akim Demaille  <akim@epita.fr>
18919         * bin/autoscan.in (scan_file): Use `&used'.
18921 2002-01-03  Akim Demaille  <akim@epita.fr>
18923         * doc/autoconf.texi (Output): Improved wording regarding use of
18924         AC_OUTPUT.
18925         From Olly Betts.
18927 2001-12-18  Kevin Ryde  <user42@zip.com.au>
18929         * doc/autoconf.texi (Function Portability): Add notes on sscanf
18930         sometimes needing writable input.
18932 2001-12-17  Jim Meyering  <meyering@lucent.com>
18934         * doc/autoconf.texi (New Macros): Tweak wording.
18936 2001-12-14  Akim Demaille  <akim@epita.fr>
18938         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): We cleaning up the
18939         trailing files, don't apply `-rf' to files which might not be
18940         created by configure (core, core.*, and *.core), but just `rm -f'.
18941         Suggested by Jonathan Kamens.
18943 2001-12-14  Aaron M. Ucko  <amu@alum.mit.edu>
18945         * lib/autoconf/general.m4: Avoid duplicates in `$ac_configure_args'.
18947 2001-12-14  Akim Demaille  <akim@epita.fr>
18949         * Makefile.am (MAINTAINERCLEANFILES): Remove configure.
18951 2001-12-13  Peter Eisentraut  <peter_e@gmx.net>
18953         * lib/autoconf/status.m4 (_AC_SRCPATHS): Rename buildpath to
18954         abs_builddir, top_buildpath to abs_top_builddir, srcpath to
18955         abs_srcdir, top_srcpath to abs_top_srcdir.
18956         (_AC_OUTPUT_FILES): Adjust.
18957         * NEWS, doc/autoconf.texi, lib/autoconf/autotest.m4,
18958         * tests/atspecific.m4, tests/autoreconf.in, tests/tools.at,
18959         * tests/wrappl.in, tests/wrapsh.in: Adjust.
18961 2001-12-12  Steven G. Johnson  <stevenj@alum.mit.edu>
18963         * lib/autoconf/fortran.m4 (_AC_PROG_F77_V_OUTPUT): Fix failed
18964         C/Fortran linking on HP/UX, by extracting the Fortran library
18965         search path from the LPATH line in the $F77 -v output.
18967 2001-12-12  Kevin Ryde  <user42@zip.com.au>
18969         * doc/autoconf.texi (File Descriptors): Use a clearer layout for the
18970         forbidden file descriptors table.
18972 2001-11-26  Akim Demaille  <akim@epita.fr>
18974         * bin/autoscan.in (%c_keywords): Build it at top level.
18975         Map to 1 in order to simplify its uses.
18977 2001-11-26  Akim Demaille  <akim@epita.fr>
18979         * bin/autoscan.in (&scan_c_file, &scan_sh_file, &scan_makefile):
18980         Remove $filepath, useless.
18981         (&scan_makefile): Don't remove the $(FOO), ${FOO} and @FOO@
18982         variables, they are really part of the tokens.
18983         Split the input line on spaces and then look for tokens.
18984         Now autoscan ceases to ask for AC_PROG_LEX for the package Bison
18985         because of `lex$U.$(OBJEXT)'.
18986         (&scan_files): Use "@list" instead of join.
18987         * doc/Makefile.am (CLEANFILES): Add *.fns.
18989 2001-11-26  Akim Demaille  <akim@epita.fr>
18991         * tests/autoreconf.in, tests/autom4te.in, tests/autoupdate.in:
18992         Remove, replaced by...
18993         * tests/wrappl.in: Be common for all the Perl executables.
18994         In particular autoscan and autoheader want -I.
18995         * configure.ac: Adjust.
18996         * lib/autoscan/headers: errno.h is portable.
18998 2001-11-26  Akim Demaille  <akim@epita.fr>
19000         * bin/autoscan.in (used): New.
19001         Use it.
19003 2001-11-26  Akim Demaille  <akim@epita.fr>
19005         * bin/autoscan.in (&scan_c_file): Better parsing of CPP
19006         directives.
19007         (&scan_sh_file): Remove a duplicate pattern.
19008         (&check_configure_ac): Use long options.
19009         * lib/autoscan/headers (alloca.h): Check with AC_FUNC_ALLOCA.
19011 2001-11-26  Akim Demaille  <akim@epita.fr>
19013         * bin/autoscan.in (scan_c_file): Fix the handling of C comments.
19014         Before, having a line containing the opening of a multi line
19015         comment made the whole line be ignored.
19017 2001-11-26  Akim Demaille  <akim@epita.fr>
19019         * doc/autoconf.texi (Using an Autotest Test Suite): New.
19020         (testsuite Scripts): Be one of its subsection.
19021         (Autotest Logs): New.
19023 2001-11-26  Akim Demaille  <akim@epita.fr>
19025         Test groups are now run two directories deeper.
19027         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): Replace srcdir,
19028         top_srcdir and top_builddir with at_srcdir, at_top_srcdir and
19029         at_top_builddir.
19030         * lib/autotest/general.m4 (AT_INIT): Compute srcdir,
19031         top_srcdir, builddir and top_builddir.
19032         Use `at_*dir' relatively to the directory containing the
19033         suite, use `*dir' when relatively to the current group dir.
19035 2001-11-25  Joseph S. Myers  <jsm28@cam.ac.uk>
19037         * doc/autoconf.texi, TODO, lib/autoconf/fortran.m4,
19038         lib/autoconf/functions.m4, lib/autoconf/headers.m4,
19039         tests/atgeneral.m4, tests/tools.at, tests/atspecific.m4: Fix
19040         spelling errors.
19042 2001-11-22  Alexandre Duret-Lutz  <duret_g@epita.fr>
19044         * doc/autoconf.texi (Using System Type): Add an example of `case
19045         $host' usage so people quit using `case $target' everywhere.
19047 2001-11-22  Akim Demaille  <akim@epita.fr>
19049         * doc/autoconf.texi (Installation Directory Variables): Englishoes
19050         spotted by Jim Meyering.
19052 2001-11-16  Paul Eggert  <eggert@twinsun.com>
19054         This patch implements a `long double' suggestion by Oliver Kiddle.
19056         * lib/autoconf/c.m4 (AC_LANG_BOOL_COMPILE_TRY(C)): Make the array
19057         static, to catch errors if the value isn't known at compile-time
19058         and the compiler supports dynamic arrays.  Change its name from
19059         `_array_' to `test_array' to avoid potential name clashes.
19060         (AC_C_LONG_DOUBLE): Make it a compile-time test, not a run-time
19061         test.  Do not define HAVE_LONG_DOUBLE if `long double' is no
19062         better than double.  Catch a bug in GCC 2.95.2 x86.
19063         * doc/autoconf.texi (C Compiler): Document the above.
19064         * NEWS: Likewise.
19066 2001-11-13  Akim Demaille  <akim@epita.fr>
19068         * tests/m4sh.at (LINENO): Protect from autom4te's substitution by
19069         hand.
19070         * tests/tools.at: Don't protect dnl, AT_DATA_M4SH does.
19072 2001-11-13  Akim Demaille  <akim@epita.fr>
19074         * lib/autotest/general.m4 (AT_INIT): After having run the test
19075         group, go back to the initial directory, not to at_suite_dir.
19077 2001-11-13  Akim Demaille  <akim@epita.fr>
19079         * tests/atspecific.m4 (AT_DATA_M4SUGAR, AT_DATA_M4SH)
19080         (AT_DATA_AUTOCONF):  Also protect @&t@ from autom4te.
19081         (AT_CHECK_AUTOCONF, AT_CHECK_AUTOHEADER): Pass no --include
19082         option.
19083         (AT_CHECK_CONFIGURE): Use absolute paths.
19084         (_AT_CHECK_AC_MACRO): Create aclocal.m4 with AC_STATE_SAVE in it.
19085         The problem is still the old one: there is no means in M4 (that I
19086         know about) to create a defining macro, because there is no means
19087         to create `$1' etc., therefore, the defining macro ``swallows''
19088         all the arguments meant to the defined macro.
19090 2001-11-13  Akim Demaille  <akim@epita.fr>
19092         * tests/atspecific.m4 (AT_DATA_AUTOCONF): New.
19093         (AT_CONFIGURE_AC): Output the definition of AC_STATE_SAVE in
19094         configure.ac.
19095         * tests/aclocal.m4: Remove, as it is no longer used.
19097 2001-11-13  Akim Demaille  <akim@epita.fr>
19099         * lib/autotest/general.m4: Change `tests?' into `groups?' in
19100         variable names when referring to a single test group, or to
19101         `suite' when referring to the whole test suite.
19102         `at_last_test' is removed: m4 compute at_format itself.
19103         (at_stdout, at_stder1, at_stderr): New variables.
19104         (AT_CHECK): Use them.
19106 2001-11-13  Akim Demaille  <akim@epita.fr>
19108         * lib/autotest/general.m4 (AT_INIT): Be sure to put `.', relative,
19109         in PATH.
19110         Create `testsuite.dir/003/run' instead of `testsuite.003'.
19111         Do it as soon as a test fails, don't wait till the end of the test
19112         suite.
19113         Don't remove $as_me.[0-9]*, since these files no longer exist.
19115 2001-11-13  Akim Demaille  <akim@epita.fr>
19117         * tests/tools.at: Use absolute paths, since we are no longer run
19118         in place.
19120 2001-11-13  Akim Demaille  <akim@epita.fr>
19122         Now that tests are running in their own private dir, there is no
19123         need to list the files to remove at the end of tests groups.
19125         * lib/autotest/general.m4 (_AT_CLEANUP_FILE, AT_CLEANUP_FILES):
19126         (AT_data_files, at_data_files): Remove.
19127         (AT_CLEANUP, AT_DATA): Simplify.
19128         (AT_INIT): Adjust.
19129         Remove the group dir if !debug && !failed.
19130         * tests/atspecific.m4: Adjust.
19132 2001-11-13  Akim Demaille  <akim@epita.fr>
19134         Start a new layout for Autotest: `testsuite' creates
19135         `testsuite.dir' in which the at-check-line etc. files are to be
19136         found, and `testsuite.dir/003' where the test group 3 is run.
19138         * lib/autotest/general.m4 (AT_INIT): at_tests_dir,
19139         at_check_line_file, at_format, at_test_normalized, at_group_dir
19140         are new variables.
19141         Create the directories.
19142         Use absolute paths for at- files.
19143         (AT_CHECK): Adjust.
19145 2001-11-11  Michael Matz  <matz@kde.org>
19147         * m4sugar.m4 (_m4_foreach): Make it linear instead quadratic.
19148         (m4_car2): New.
19149         (m4_car): Properly quote arguments.
19151 2001-11-13  Akim Demaille  <akim@epita.fr>
19153         * tests/aclocal.m4 (AC_STATE_SAVE): s/LIBOBJS/LIB@&t@OBJS/ to cope
19154         with stricter rules on LIBOBJS.
19156 2001-11-12  Paul Eggert  <eggert@twinsun.com>
19158         * lib/autoconf/c.m4 (AC_C_PROTOTYPES): Define __PROTOTYPES too.
19159         * doc/autoconf.texi (C Compiler): AC_C_PROTOTYPES now defines
19160         __PROTOTYPES too.
19162 2001-11-12  Akim Demaille  <akim@epita.fr>
19164         * lib/autoconf/functions.m4 (AC_FUNC_GETMNTENT): Use AC_CHECK_FUNCS.
19166 2001-11-12  Akim Demaille  <akim@epita.fr>
19168         * lib/autoconf/c.m4, lib/autoconf/fortran.m4,
19169         * lib/autoconf/functions.m4, lib/autoconf/general.m4,
19170         * lib/autoconf/headers.m4, lib/autoconf/libs.m4,
19171         * lib/autoconf/programs.m4, lib/autoconf/specific.m4,
19172         * lib/autoconf/types.m4: When invoking AC_DEFINE and friends,
19173         specify to what the macro should be defined (typically to 1).
19175 2001-11-12  Akim Demaille  <akim@epita.fr>
19177         * lib/autoconf/functions.m4 (AC_FUNC_STRTOD): AC_SUBST POW_LIB.
19178         From Jim Meyering.
19180 2001-11-12  Akim Demaille  <akim@epita.fr>
19182         * lib/autoconf/programs.m4 (_AC_PROG_LEX_YYTEXT_DECL): Use
19183         AC_TRY_EVAL to run $LEX, not AC_TRY_COMMAND.  This validates the
19184         definition used by Automake where LEX is +/- "${missing} lex" and
19185         `missing' itself contains variables.
19187 2001-11-12  Akim Demaille  <akim@epita.fr>
19189         * lib/autotest/general.m4 (AT_INIT): Push KILL at the end.
19190         Now that M4sh pushes BODY, the comments were output at the end of
19191         the test suites.
19193 2001-11-08  Akim Demaille  <akim@epita.fr>
19195         * bin/autoreconf.in (&autoreconf): Run aclocal before tracing, so
19196         that we can trace macros from aclocal.m4.
19197         Trace AC_PROG_LIBTOOL, not AM_PROG_LIBTOOL, since the latter is
19198         obsoleted, and redirect to the former anyway.
19199         Reported by Ralf Corsepius.
19201 2001-11-08  Akim Demaille  <akim@epita.fr>
19203         * bin/autoreconf.in (&autoreconf): AC_CONFIG_SUBIDRS are to be
19204         processed only if present.
19205         * tests/torture.at (Configuring subdirectories): Use autoreconf
19206         instead of successive calls to autoconf.
19207         Add a nonexistent subdirectory to exercise the patch above.
19208         Reported by Ralf Corsepius.
19210 2001-11-08  Kevin Ryde  <user42@zip.com.au>
19212         * doc/autoconf.texi (Limitations of Usual Tools): Note HP-UX cc
19213         doesn't accept .S files.
19215 2001-11-07  Akim Demaille  <akim@epita.fr>
19217         * lib/m4sugar/m4sugar.m4 (m4_pattern_forbid): Accepts $2.
19218         * lib/autoconf/general.m4 (AC_INTI): Forbid LIBOBJS.
19219         (_AC_LIBOBJ): s/LIBOBJS/LIB@&t@OBJS/.
19220         * bin/autom4te.in (warn_forbidden): New.
19221         (handle_output): Use it.
19222         Read m4_pattern_forbid with messages.
19224 2001-11-05  Akim Demaille  <akim@epita.fr>
19226         * bin/autom4te.in (--normalize): Remove.
19227         * lib/autom4te.in: Adjust.
19229 2001-11-05  Akim Demaille  <akim@epita.fr>
19231         * tests/Makefile.am (testsuite): Rename this target as...
19232         ($(TESTSUITE)): this.
19233         From Nicolas Joly.
19235 2001-11-05  Alexandre Duret-Lutz  <duret_g@epita.fr>
19237         * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): When removing
19238         the --prefix option, also remove it's argument.
19240 2001-11-05  Akim Demaille  <akim@epita.fr>
19242         * doc/autoconf.texi (testsuite Invocation): Update.
19243         (Writing testsuite.at): Update.
19245 2001-11-03  Akim Demaille  <akim@epita.fr>
19247         * doc/autoconf.texi: s/@code/@command/ where appropriate.
19249 2001-11-03  Akim Demaille  <akim@epita.fr>
19251         * lib/Autom4te/General.pm: (&catfile, &canonfile)
19252         (&file_name_is_absolute): New, wrappers around routines from
19253         File::Spec.
19254         Use and export them.
19255         (&find_configure_ac): Optionally take a directory where to look at.
19256         * bin/autoreconf.in (&parse_args): Trim the configure.ac part of
19257         the arguments.
19258         Default @ARGV to `.', not find_configure_ac.
19259         (&autoreconf): Argument is a directory.
19260         Trace AC_CONFIG_SUBDIRS and schedule the subdirs for autoreconf'ing.
19261         * doc/autoconf.texi (autoreconf Invocation): Update.
19263 2001-11-03  Akim Demaille  <akim@epita.fr>
19265         * lib/Autom4te/General.pm (@export_vars, @export_subs)
19266         (@export_forward_subs): New.
19267         Add basename, dirname, and fileparse.
19268         (@EXPORT): Adjust.
19269         * bin/autoreconf.in (&autoreconf): Fix call to fileparse.
19270         Don't look for aclocal flags if we already know aclocal is not
19271         used.
19272         Move aclocal.m4t only if it exists.
19273         Reported by Ezra Peisach.
19275 2001-11-03  Akim Demaille  <akim@epita.fr>
19277         * bin/autoreconf.in (&parse_args): Work only on the configure.ac
19278         passed on command line, defaulting to ./configure.ac if present.
19279         (&maybe_autoreconf, File::Find): Remove, unused.
19280         (&autoreconf): If autoconf is not used, don't try to trace.
19282 2001-11-02  Akim Demaille  <akim@epita.fr>
19284         * configure.ac: Bump to 2.52g.
19286 2001-11-02  Akim Demaille  <akim@epita.fr>
19288         Version 2.52f.
19290 2001-11-02  Akim Demaille  <akim@epita.fr>
19292         * config/config.guess, config/config.sub, doc/standards.texi:
19293         * config/lispdir.m4: Update from masters.
19294         * configure.ac: Bump to 2.52f.
19296 2001-11-02  Akim Demaille  <akim@epita.fr>
19298         * bin/autoreconf.in (&autoreconf): Set `$aclocal_flags' to ''.
19299         Don't run aclocal when aclocal.m4 is not from aclocal.
19300         From Ezra Peisach.
19301         Don't run libtoolize and gettextize if --install is not given.
19303 2001-11-01  Paul Eggert  <eggert@twinsun.com>
19305         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): _AS_CR_PREPARE needs to
19306         be invoked before _AS_LINENO_PREPARE.
19307         (_AS_LINENO_PREPARE): Use as_cr_digits and as_cr_alnum rather
19308         than character ranges.
19310         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Fix NLS before
19311         invoking AS_BASENAME.  Set the locale variables to 'C' if
19312         possible, as POSIX requires this to get the traditional
19313         behavior.
19314         * doc/autoconf.texi (Special Shell Variables): Describe the above.
19316 2001-10-31  Paul Eggert  <eggert@twinsun.com>
19318         * lib/m4sugar/m4sh.m4 (_AS_LINENO_WORKS): Do not surround body
19319         with {}, as that triggers a bug in Bash 2.05.
19321         (_AS_LINENO_PREPARE): Use Sed rather than
19322         Awk.  Fix the sed prepass to work even if there are multiple
19323         instances of $LINENO on the same line.  Do not substitute for
19324         other variables like $LINENOT.  Do not check file dates; such a
19325         check is unreliable on sufficiently fast machines, and removing
19326         the check makes the code simpler and more reliable.  Check for
19327         output and chmod failures.
19329         * doc/autoconf.texi (Special Shell Variables): Document
19330         the above.
19332 2001-10-31  Akim Demaille  <akim@epita.fr>
19334         * tests/Makefile.am (atconfig): Remove this target, Automake
19335         handles it now.
19337 2001-10-31  Akim Demaille  <akim@epita.fr>
19339         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): Do not
19340         AC_CONFIG_FILES(atlocal) as it means a file atlocal.in *must* be
19341         provided, while it is optional.
19342         * configure.ac: Adjust.
19344 2001-10-26  Paul Eggert  <eggert@twinsun.com>
19346         * NEWS, README, configure.ac, lib/Autom4te/General.pm,
19347           lib/Autom4te/Struct.pm:
19348         Require Perl 5.005_03 instead of just 5.005, as some tests fail
19349         with 5.005_02.
19351         * doc/autoconf.texi (Special Shell Variables): Document some
19352         more LINENO gotchas, particularly with respect to the Awk+Sed hack.
19354         * lib/m4sugar/m4sh.m4 (_AS_LINENO_WORKS): New macro.
19355         (_AS_LINENO_PREPARE): Use it instead of shell eval, since
19356         eval $LINENO is not portable in practice.
19358 2001-10-24  Akim Demaille  <akim@epita.fr>
19360         * lib/Autom4te/General.pm (backname): New.
19362 2001-10-24  Akim Demaille  <akim@epita.fr>
19364         * m4/: Remove, merged into...
19365         * config/: here.
19367 2001-10-23  Tim Van Holder  <tim.van.holder@pandora.be>
19369         * doc/autoconf.texi (Shellology): Mention the problems with bash
19370         2.05's use of ANSI quoting in its `set' builtin.
19372 2001-10-22  Paul Eggert  <eggert@twinsun.com>
19374         * lib/autoconf/functions.m4 (AC_FUNC_STRERROR_R):
19375         Rename ac_cv_func_strerror_r_works to ac_cv_func_strerror_r_char_p,
19376         and rename HAVE_WORKING_STRERROR_R to STRERROR_R_CHAR_P, since
19377         POSIX decided to standardize on the int flavor of strerror_r.
19378         Always do char* test, as there's no reason not to.
19379         Assign to a char* var, to catch strerror_r that returns int*.
19381         * doc/autoconf.texi (Particular Functions):
19382         Document the above changes.  Also, document the fact that
19383         AC_FUNC_STRERROR_R defines HAVE_DECL_STRERROR_R.
19385         * NEWS: Mention HAVE_WORKING_STRERROR_R -> STRERROR_R_CHAR_P.
19387 2001-10-20  Akim Demaille  <akim@epita.fr>
19389         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): The name of
19390         the executable was missing from the log.
19392 2001-10-20  Akim Demaille  <akim@epita.fr>
19394         * lib/Autom4te/General.pm (&update_file): If destination is
19395         unchanged, remove the source.
19396         (&up_to_date_p): Don't be verbose, be debug.
19397         * bin/autoreconf.in: No longer support --m4dir.
19398         (&autoreconf): Display the full path of the configure.ac we are
19399         studying.
19400         Trace it only once.
19401         Be sure to honor --force with gettextize.
19402         Always run aclocal.
19403         * doc/autoconf.texi: Adjust.
19405 2001-10-20  Akim Demaille  <akim@epita.fr>
19407         * bin/autoheader.in ($localdir, $m4, $SIMPLE_BACKUP_SUFFIX):
19408         Remove, dead.
19409         * bin/autoreconf.in (&autoreconf): Do not run gettextize when
19410         `intl' is already present, as it refuses unless --force.
19411         (&parse_args): Use -I, --include instead of the old Autoconf
19412         options.
19413         ($localdir, $autoconf_dir): Remove.
19414         (@include): New.
19415         (&maybe_autoreconf): New, to preserve $_ for File::Find.
19417 2001-10-19  Jens Petersen  <petersen@redhat.com>
19419         * lib/autoconf/programs.m4 (AC_PROG_AWK): Prefer gawk to mawk.
19420         * doc/autoconf.texi (Particular Programs): Likewise.
19422 2001-10-19  Akim Demaille  <akim@epita.fr>
19424         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES): Name the generated
19425         file in @configure_input@.
19426         Don't mention `automatically' in addition to `generated'.
19427         * tests/torture.at (#define header templates): Adjust.
19429 2001-10-19  Akim Demaille  <akim@epita.fr>
19431         * lib/emacs/autoconf-mode.el, lib/emacs/autotest-mode.el: In a
19432         comment, explain how to install automatic mode selection.
19433         From Russ Allbery.
19435 2001-10-19  Ezra Peisach  <epeisach@zif.mit.edu>
19437         * bin/autoreconf.in (autoreconf): Display the path to the
19438         configure.ac being studied.
19440 2001-10-18  Paul Eggert  <eggert@twinsun.com>
19442         * lib/autoconf/types.m4 (AC_CHECK_SIZEOF): Cast sizeof to unsigned
19443         long, to work around a bug in the HP C compiler version HP92453-01
19444         B.11.11.23709.GP.
19446         * lib/m4sugar/m4sh.m4 (AS_DIRNAME): Use 'dirname' if that works.
19447         (AS_BASENAME_EXPR): New macro.
19448         (AS_BASENAME_SED): Do not assume GNU sed semantics.
19449         (AS_BASENAME): Use 'basename' if that works; then try 'expr';
19450         and fall back on 'sed' only if the other two fail.  This makes
19451         AS_BASENAME act more like AS_DIRNAME.
19452         (as_me): Shell-quote the argument of AS_BASENAME, in case $0
19453         contains white space.
19454         * lib/autoconf/general.m4 (_AC_INIT_SRCDIR):
19455         Use AS_DIRNAME, since I think it's now DOS-friendly.
19456         * tests/m4sh.at (DIRNAME_TEST): New arg $3.
19457         Allow "dirname //FOO" to return either / or //, as POSIX allows
19458         either behavior.
19460 2001-10-10  Akim Demaille  <akim@epita.fr>
19462         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Recognize
19463         `a_out.exe' for OpenVMS 7.1, DEC C 5.5 compiler, via GNV.
19464         From Eric Sharkey.
19466 2001-10-10  Akim Demaille  <akim@epita.fr>
19468         * lib/m4sugar/m4sh.m4 (_AS_ECHO_N_PREPARE): m4_defun, not
19469         m4_define, since...
19470         (_AS_ECHO_N): AS_REQUIREs it.
19472 2001-10-10  Akim Demaille  <akim@epita.fr>
19474         * lib/autoconf/general.m4 (_AC_INCLUDES_DEFAULT_REQUIREMENTS)
19475         (AC_INCLUDES_DEFAULT): Move to...
19476         * lib/autoconf/headers.m4: here.
19477         * lib/autoconf/types.m4: Comment changes.
19478         * doc/autoconf.texi: Specify where the default includes are used
19479         in the macro prototypes.
19481 2001-10-09  Akim Demaille  <akim@epita.fr>
19483         * lib/autoconf/autoconf.m4 (m4_patsubst, m4_regexp): New
19484         transition code.
19486 2001-10-08  Akim Demaille  <akim@epita.fr>
19488         * bin/autoreconf.in (&autoreconf): Remove debugging code.
19489         (&parse_args): Pass verbosity/debugging options to subtools when
19490         --debug, not when --verbose.
19491         * lib/autom4te.in (Autoreconf-preselections): New.
19492         (Autoconf): Use it.
19494 2001-10-08  Akim Demaille  <akim@epita.fr>
19496         * bin/autoreconf.in (autoreconf): Run libtoolize when appropriate.
19498 2001-10-08  Akim Demaille  <akim@epita.fr>
19500         * doc/autoconf.texi (autoreconf Invocation): Adjust.
19501         * bin/autoreconf.in (autoreconf): Run gettextize when appropriate.
19503 2001-10-08  Akim Demaille  <akim@epita.fr>
19505         * tests/tools.at (AT_CHECK_PERL_SYNTAX): Check autoreconf.
19506         (Syntax of the shell scripts): Don't.
19507         * bin/autoheader.in, bin/autom4te.in, bin/autoreconf.in: Don't
19508         bother with $force since...
19509         * lib/Autom4te/General.pm: does.
19511 2001-10-08  Akim Demaille  <akim@epita.fr>
19513         * bin/autoreconf.in: Rewrite in Perl.
19514         * configure.ac: Adjust.
19515         * lib/Autom4te/General.pm (&up_to_date_p): New.
19516         * bin/autom4te.in (&up_to_date_p): Use it.
19517         Rename as...
19518         (&up_to_date): this.
19520 2001-10-08  Akim Demaille  <akim@epita.fr>
19522         * lib/m4sugar/m4sugar.m4 (m4_case, m4_bmatch, m4_normalize)
19523         (m4_list_cmp): Use $0 to reinvoke yourself.
19524         (m4_patsubsts): New.
19525         (m4_strip, m4_version_unletter): Use it.
19526         * tests/atspecific.m4 (AT_DATA_M4SUGAR, AT_DATA_M4SH): Likewise.
19528 2001-10-08  Akim Demaille  <akim@epita.fr>
19530         * lib/autoconf/autoconf.m4, lib/autoconf/general.m4,
19531         * lib/autoconf/libs.m4, lib/autoconf/status.m4,
19532         * lib/autoconf/types.m4, lib/autotest/general.m4,
19533         * lib/m4sugar/m4sh.m4, lib/m4sugar/m4sugar.m4, tests/atspecific.m4,
19534         * tests/torture.at: Rename m4_regexp, m4_patsubst, and m4_match to
19535         m4_bregexp, m4_bpatsubst, and m4_bmatch.
19536         * doc/autoconf.texi (Redefined M4 Macros): Adjust.
19538 2001-10-08  Akim Demaille  <akim@epita.fr>
19540         * lib/m4sugar/m4sh.m4: Use AS_REQUIRE.
19542 2001-10-08  Akim Demaille  <akim@epita.fr>
19544         * lib/m4sugar/m4sh.m4 (AS_DIRNAME_EXPR): Use AS_REQUIRE.
19545         * tests/tools.at (AT_DATA_FORBIDDEN): Rename/move/duplicate to...
19546         * tests/atspecific.m4 (AT_DATA_M4SUGAR, AT_DATA_M4SH): here.
19547         * tests/tools.at, tests/m4sh.at: Use it.
19548         * tests/m4sh.at: Don't rely on Autoconf macros.
19549         (DIRNAME_TEST): Also exercise the expr variant.
19550         * tests/m4sugar.at, tests/atspecific.m4 (AT_CHECK_M4SUGAR): The
19551         preferred M4sugar extension is now `.4s'.
19552         * tests/README: Remove.
19554 2001-10-08  Akim Demaille  <akim@epita.fr>
19556         * lib/m4sugar/m4sugar.m4 (m4_provide_ifelse): Rename as...
19557         (m4_provide_if): this.
19558         * lib/m4sugar/m4sh.m4 (AS_REQUIRE): New.
19559         * lib/autoconf/general.m4 (AS_DEFUN, AC_DEFUN_ONCE, AC_BEFORE)
19560         (AC_REQUIRE, AC_PROVIDE, AC_PROVIDE_IFELSE): Be exact copy of the
19561         M4sugar peer, i.e., drop the `AC_PROVIDE_$1' broken marker.
19563 2001-10-08  Akim Demaille  <akim@epita.fr>
19565         Use `add-log-current-defun-function' for ChangeLog creation.
19566         Suggested by Tom Tromey.
19568         * lib/emacs/autotest-mode.el (autotest-mode-map): New.
19569         (autotest-mode): Adjust.
19570         * lib/emacs/autoconf-mode.el (autoconf-mode-map): Modernize, map
19571         'comment-region onto `C-c ;'.
19572         Comments are `#', not `dnl'.
19573         (autoconf-current-defun): New.
19574         (autoconf-font-lock-keywords): Recognize `m4_defun'.
19576 2001-10-08  Akim Demaille  <akim@epita.fr>
19578         * lib/autoconf/general.m4 (_m4_divert(BODY)): Move to...
19579         * lib/m4sugar/m4sh.m4: here.
19580         (AS_INIT): Push the BODY diversion, set the #! /bin/sh line.
19581         * lib/autoconf/general.m4 (AC_PLAIN_SCRIPT) : Remove.
19582         (AT_INIT): Replace AC_PLAIN_SCRIPT with AS_INIT invocation,
19583         include handle the m4_pattern_*, no longer push the
19584         BODY diversion nor set the /bin/sh line, AS_INIT does it.
19585         * lib/autotest/general.m4 (AT_INIT): Likewise.
19586         * tests/base.at: Adjust the tests to use AS_INIT.
19587         * tests/tools.at (AT_DATA_FORBIDDEN): New.
19588         (autoconf: forbidden tokens): Adjust to work on M4sh instead of
19589         Autoconf.
19591 2001-10-07  Paul Eggert  <eggert@twinsun.com>
19593         * doc/autoconf.texi (config.status Invocation):
19594         CONFIG_SHELL defaults to a shell that supports LINENO if available.
19596         * lib/m4sugar/m4sh.m4 (_AS_LINENO_PREPARE): If the current
19597         shell does not support LINENO, and if CONFIG_SHELL is unset or
19598         empty, and if we can find a shell that does support LINENO,
19599         then set CONFIG_SHELL to that shell and then re-execute
19600         ourselves with CONFIG_SHELL.
19602 2001-10-05  Paul Eggert  <eggert@twinsun.com>
19604         * tests/Makefile.am (clean-local): Don't invoke $(TESTSUITE) if it
19605         doesn't exist.  Remove *.tmp, as a .tmp file is created during the
19606         build of $(TESTSUITE).
19608 2001-10-05  Akim Demaille  <akim@epita.fr>
19610         * lib/m4sugar/m4sh.m4 (_AS_LINENO_PREPARE): Look in the path
19611         iff we are a bareword.
19612         Reported by Raja R Harinath.
19614 2001-10-05  Akim Demaille  <akim@epita.fr>
19616         * tests/m4sh.at (LINENO): New.
19617         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Be sure to set
19618         PATH_SEPARATOR before using it.
19619         Fix the absolute path case/esac pattern.
19620         Provide $0 as fallback for as_myself.
19621         Reported by Raja R Harinath.
19623 2001-10-05  Akim Demaille  <akim@epita.fr>
19625         * Makefile.am, config/Makefile.am, lib/emacs/Makefile.am,
19626         * m4/Makefile.am, man/Makefile.am: Add/adjust MAINTAINERCLEANFILES.
19628 2001-10-05  Akim Demaille  <akim@epita.fr>
19630         * lib/m4sugar/m4sh.m4 (_AS_LINENO_PREPARE): New, extracted from...
19631         (AS_SHELL_SANITIZE): here.  Use it.
19632         (_AS_LINENO_PREPARE): Preserve the exit status of $0.lineno.
19633         From Paul Eggert.
19635 2001-10-04  Akim Demaille  <akim@epita.fr>
19637         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Use a portable
19638         combination of Awk and sed to replace $LINENO.
19640 2001-10-02  Paul Eggert  <eggert@twinsun.com>
19642         * doc/autoconf.texi (Limitations of Builtins): You can't use
19643         "source"; it's not portable.  Remove confusing and
19644         somewhat-incorrect example involving "." and "/".
19646         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): "source" -> ".", for
19647         compatibility with POSIX shells.
19649 2001-10-02  Akim Demaille  <akim@epita.fr>
19651         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Just source 40.lineno
19652         instead of exec'ing to preserve $0 and $@.
19654 2001-10-01  Akim Demaille  <akim@epita.fr>
19656         * tests/testsuite (AT_INIT) <at_pass_list>: New.
19657         Don't run twice the same test.
19659 2001-10-01  Akim Demaille  <akim@epita.fr>
19661         * lib/autotest/general.m4 (AT_INIT) <--help>: Catch up with reality.
19662         No longer output the list of tests.
19663         <--list>: New option.
19664         <--full-help>: Remove.
19665         Complete the short/long options duality.
19666         Various small adjustments.
19668 2001-10-01  Akim Demaille  <akim@epita.fr>
19670         * doc/autoconf.texi: Use @kbd for user input.
19671         Always use `$' as shell prompt.
19673 2001-09-30  Paul Eggert  <eggert@twinsun.com>
19675         * lib/autoconf/status.m4 (AC_OUTPUT_MAKE_DEFS):
19676         Don't use nested parenthesization.  This patch was originally
19677         suggested to bug-autoconf by Philippe De Muyter on 2000-05-28,
19678         but somehow it didn't get incorporated then.
19679         * doc/autoconf.texi (Limitations of Usual Tools):
19680         Clarify remark about sed and nested parenthesization.
19682         * lib/autoconf/types.m4 (AC_CHECK_SIZEOF):
19683         Report an error if the size cannot be determined even though
19684         the type exists.
19685         * lib/autoconf/general.m4 (_AC_COMPUTE_INT_COMPILE):
19686         Check for `expr' arithmetic overflow, and for compilation failure,
19687         and invoke a new argument $4 if either is discovered.
19688         This makes _AC_COMPUTE_INT_COMPILE more like _AC_COMPUTE_INT_RUN.
19689         (_AC_COMPUTE_INT): Pass IF-FAILS arg to _AC_COMPUTE_INT_COMPILE.
19691 2001-09-28  Akim Demaille  <akim@epita.fr>
19693         * lib/emacs/autoconf-mode.el, lib/emacs/autotest-mode.el: New.
19694         * m4/lispdir.m4: New.
19695         * aclocal.m4, configure.ac: Adjust.
19697 2001-09-28  Akim Demaille  <akim@epita.fr>
19699         * lib/autotest/general.m4 (AT_VICTIMS): Rename as...
19700         (AT_TESTED): this.
19701         (AT_INIT): More the wrapped section to where it will be expanded.
19702         Output `AT_tested' only when existing.
19703         Catch unexpanded PACKAGE_STRING and PACKAGE_BUGREPORT.
19705 2001-09-27  Akim Demaille  <akim@epita.fr>
19707         Fix the passing of $? to ACTION-IF-FAILED in AC_TRY_RUN, that
19708         generates too many bug reports.
19710         * lib/autoconf/general.m4 (_AC_RUN_IFELSE): Pass the right exit
19711         status when executing the ACTION-IF-FALSE.
19712         * tests/base.at (AC_TRY_*): Rename as...
19713         (AC_TRY_COMMAND): this.
19714         (AC_RUN_IFELSE): New.
19715         * tests/compile.at (Extensions, C keywords)
19716         (AC_PROG_CPP requires AC_PROG_CC, GNU Fortran 77)
19717         (Broken/missing compilers, AC_PROG_CPP with warnings)
19718         (AC_PROG_CPP without warnings, AC_PROG_CPP via CC): Move to...
19719         * tests/c.at (Extensions, C keywords)
19720         (Broken/missing compilers, AC_PROG_CPP with warnings)
19721         (AC_PROG_CPP without warnings, AC_PROG_CPP via CC)
19722         (AC_PROG_CPP requires AC_PROG_CC): here and...
19723         * tests/fortran.at (GNU Fortran 77): there.
19724         * doc/autoconf.texi (autoconf Invocation): Fix the example:
19725         AC_TRY_RUN is about compilation, not shell commands.
19726         (Test Programs): AC_TRY_RUN works as used to be advertised.
19728 2001-09-27  Akim Demaille  <akim@epita.fr>
19730         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Fix bugs spotted by
19731         Raja R Harinath:
19732         Be sure to detect when $LINENO always returns the same value.
19733         Look for the original script, basename($0) is certainly not
19734         enough.
19735         Pass the CLI arguments to `$as_me.lineno'.
19737 2001-09-25  Akim Demaille  <akim@epita.fr>
19739         * lib/autotest/general.m4 (AT_INIT): Dump the whole config.log.
19740         Be sure the close and reopen the LOG fd before and after using tee
19741         to extend the log.
19742         <at_tests_pattern>: Adjust to the new format of at_help_all.
19744 2001-09-23  Akim Demaille  <akim@epita.fr>
19746         * bin/autom4te.in (parse_args): There can be several invocations
19747         of --language now.
19749 2001-09-23  Akim Demaille  <akim@epita.fr>
19751         * doc/autoconf.texi (Top): Wrap in @ifnottex.
19753 2001-09-23  Akim Demaille  <akim@epita.fr>
19755         * lib/autoconf/status.m4 (_AC_SRCPATHS): Compute and provide
19756         ac_buildpath, ac_top_buildpath, ac_srcpath, and ac_top_srcpath.
19757         (_AC_OUTPUT_FILES): Also substitute srcpath, top_srcpath,
19758         builddir, buildpath, top_builddir, and top_buildpath.
19759         (_AC_OUTPUT_SUBDIRS): Compute the dir variables *before* changing
19760         the current directory.
19761         * lib/autoconf/general.m4 (_AC_INIT_HELP): Compute the dir
19762         variables *before* changing the current directory.
19763         Skip nonexistent dirs.
19764         * doc/autoconf.texi (Preset Output Variables): Document these
19765         variables.
19767         * lib/autotest/general.m4: Do not reset AT_victims.
19768         Don't compute at_srcdir nor at_top_srcdir.
19770         * tests/tools.at: Hence use top_srcdir.
19772         * tests/Makefile.am, tests/autoconf, tests/autoheader,
19773         * tests/autom4te, tests/autoreconf, tests/autoupdate, tests/ifnames:
19774         Remove.
19775         * tests/autoreconf.in, tests/wrappl.in, tests/autom4te.in,
19776         * tests/wrapsh.in, tests/autoupdate.in: New.
19777         * tests/Makefile.am (DISTCLEANFILES, EXTRA_DIST): Adjust.
19778         * configure.ac: Build the position independent wrappers.
19780         * man/Makefile.am: Now that test wrappers are position
19781         independent, use them and drop dark envvar magic.
19783 2001-09-23  Akim Demaille  <akim@epita.fr>
19785         * doc/autoconf.texi (Common Shell Constructs): Rename as...
19786         (Programming in M4sh): this.
19787         Promote to @section.
19789 2001-09-23  Akim Demaille  <akim@epita.fr>
19791         * lib/autotest/general.m4 (AT_INIT): Dump config.log last.
19792         Pass $at_debug_args to the rerun test suite.
19793         * lib/m4sugar/Makefile.am (DISTCLEANFILES): New.
19794         * bin/Makefile.am (ETAGS_SH): Don't use characters ranges.
19795         From Paul Eggert.
19797 2001-09-23  Akim Demaille  <akim@epita.fr>
19799         * bin/autom4te.in (@my_warning): Remove, handled by `autom4te.cfg'.
19801 2001-09-23  Akim Demaille  <akim@epita.fr>
19803         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Fix shell
19804         over-escaping.
19806 2001-09-23  Akim Demaille  <akim@epita.fr>
19808         * lib/Autom4te/General.pm (&debug): New.
19809         * bin/autom4te.in ($language): Move to...
19810         (parse_args): here.
19811         Handle --language in languages.
19812         * lib/autom4te.in (Automake-selections, Autoheader-selections)
19813         (Autoscan-selections): New.
19814         (Autoconf): Adjust.
19816 2001-09-23  Tim Van Holder  <tim.van.holder@pandora.be>
19818         * m4/auxdir.m4, m4/cond.m4, m4/depend.m4, m4/init.m4,
19819         * m4/install-sh.m4, m4/missing.m4, m4/sanity.m4, m4/strip.m4: Updated
19820         to match current versions from CVS Automake.
19822 2001-09-23  Alexandre Duret-Lutz  <duret_g@epita.fr>
19824         * doc/autoconf.texi (Special Shell Variables): Add pdksh output
19825         for $LINENO.
19827 2001-09-22  Akim Demaille  <akim@epita.fr>
19829         * lib/autoconf/autotest.m4: Create `package.m4'.
19830         * tests/Makefile.am (package.m4): Remove.
19832 2001-09-22  Akim Demaille  <akim@epita.fr>
19834         Rely on `$LINENO' when possible instead of `__oline__'.
19836         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Provide some form of
19837         `$LINENO' support replacement when not supported.
19838         (_AS_CR_PREPARE, _AS_TR_CPP_PREPARE, _AS_TR_SH_PREPARE): Invoke
19839         them explicitly to be sure they are not output before this section
19840         (via m4_require).  Cosmetic only.
19841         * lib/autoconf/c.m4, lib/autoconf/general.m4,
19842         * lib/autoconf/programs.m4: Replace all the occurrences of
19843         `__oline__' with `$LINENO'.
19844         * doc/autoconf.texi (Special Shell Variables): Document LINENO.
19846 2001-09-21  Tim Van Holder  <tim.van.holder@pandora.be>
19848         * lib/autoconf/functions.m4 (_AC_FUNC_FORK): Replaceded an 8-bit
19849         character (u: -> ue) in a code comment.
19850         (AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK): Only run 'ln -s' if we know
19851         it works.
19853 2001-09-21  Akim Demaille  <akim@epita.fr>
19855         * Makefile.maint (AUTOM4TE): Neutralize autom4te.
19856         Suggested by Jim Meyering.
19858 2001-09-20  Tim Van Holder  <tim.van.holder@pandora.be>
19860         * lib/autoconf/programs.m4: Use extensions listed in
19861         $ac_executable_extensions when looking for programs.
19863 2001-09-20  Tim Van Holder  <tim.van.holder@pandora.be>
19865         * lib/autoconf/general.m4: Fix a small Englisho.
19866         * lib/autoconf/status.m4: Fix a small typo.  Handle DOS paths when
19867         setting up ac_dir_suffix and ac_top_builddir.
19868         * lib/m4sugar/m4sh.m4: Default CDPATH to $PATH_SEPARATOR, not ':'.
19870 2001-09-20  Tim Van Holder  <tim.van.holder@pandora.be>
19872         * doc/autoconf.texi (File System Conventions): Clarify the use of
19873         PATH_SEPARATOR.
19874         (Special Shell Variables[PATH_SEPARATOR]): Ditto.
19875         (Special Shell Variables[CDPATH]): Mention that $PATH_SEPRATOR should
19876         be used instead of ':'.
19877         * lib/autotest/general.m4: Replace occurrences of ':' in
19878         AUTOTEST_PATH with $PATH_SEPARATOR at test suite startup.
19880 2001-09-20  Tim Van Holder  <tim.van.holder@pandora.be>
19882         * tests/atgeneral.m4: Add basic support for test ranges (e.g. 7-34) as
19883         arguments.  Fixed a typo.
19885 2001-09-20  Tim Van Holder  <tim.van.holder@pandora.be>
19887         * man/Makefile.am (.x.1): Use @PATH_SEPARATOR@, not ':' to set up
19888         $PATH.  Also set AUTOM4TE_CFG, so we can process autom4te properly.
19890 2001-09-20  Tim Van Holder  <tim.van.holder@pandora.be>
19892         * bin/autoscan.in: Add 'exec-perl-if-not-run-by-perl'.
19893         * bin/autoupdate.in: Ditto.
19894         * bin/autoheader.in: Reworded a few comments.
19895         * bin/autoconf.in: Reworded help text for a few options.
19896         * bin/autoheader.in, bin/autom4te.in, bin/autoreconf.in,
19897         * bin/autoscan.in, bin/autoupdate.in: Ditto.
19899 2001-09-20  Tim Van Holder  <tim.van.holder@pandora.be>
19901         * lib/Autom4te/XFile.pm (open): Simplified the error message (we
19902         already have $file).  Set output files to binary mode (helps avoid
19903         CR issues on DOSish systems).
19905 2001-09-19  Akim Demaille  <akim@epita.fr>
19907         * lib/autotest/general.m4: Englishoes.
19908         From Tim Van Holder and Alexey Mahotkin.
19910 2001-09-18  Paul Eggert  <eggert@twinsun.com>
19912         * doc/autoconf.texi (Common Shell Constructs): New node,
19913         documenting AS_DIRNAME.
19914         (Limitations of Usual Tools): Refer to it when discussing dirname.
19915         Also, update discussion of POSIX standard to reflect latest draft.
19917         * lib/autoconf/c.m4:
19918         (AC_LANG_INT_SAVE(C)): Also support negative values, down to LONG_MIN.
19920         * lib/autoconf/general.m4 (_AC_COMPUTE_INT_COMPILE):
19921         Do not pass a first argument with leading '-'
19922         to expr, by parenthesizing initial integers that might be negative.
19924         * doc/autoconf.texi (Particular Functions): AC_FUNC_GETPGRP
19925         now merely checks whether it is an error to pass an argument
19926         to getpgrp.
19928         * lib/autoconf/functions.m4 (_AC_FUNC_GETPGRP_TEST): Remove.
19929         (AC_FUNC_GETPGRP): Don't bother with a runtime test.  Just check
19930         whether it is a (compile-time) error to pass an argument to
19931         getpgrp.  This simpler test supports the revised documentation,
19932         and is all that AC_FUNC_GETPGRP's users really need.
19934 2001-09-18  Akim Demaille  <akim@epita.fr>
19936         * doc/autoconf.texi (Limitations of Make) <$<>: New.
19938 2001-09-18  Akim Demaille  <akim@epita.fr>
19940         * doc/autoconf.texi (Limitations of Usual Tools) <find>: More about
19941         `{}'.
19942         * lib/autotest/general.m4 (AT_INIT): Adjust.
19944 2001-09-18  Paul Wagland  <paul@wagland.net>
19946         * tests/m4sh.at: Ensure that AS_DIRNAME handles '/', '//' and '///'
19947         correctly.
19948         Add test for AS_BASENAME.
19949         * lib/m4sugar/m4sh.m4: Fix AS_BASENAME so that it passes the previous
19950         added test. It now correctly handles /1/2/3/, returning '3' not ''.
19951         Added AS_BASENAME_SED to make the interface the same as AS_DIRNAME.
19952         * tests/base.at: Fixed the expected responses. The old ones were
19953         one line out...
19954         * lib/autoconf/general.m4: Fixed AC_PREFIX_PROGRAM, it now behaves as
19955         the documentation claims it should (and how it behaved in 2.13).
19957 2001-09-18  Akim Demaille  <akim@epita.fr>
19959         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): No INIT-CMDS in
19960         the AC_CONFIG_COMMANDS invocation.
19961         This also solves the name clash problems.
19962         Don't set the package's ID.
19963         * lib/m4sugar/Makefile.am (version.m4): Revamp.
19964         No longer to be shipped.
19965         (version.in): Remove.
19966         * lib/m4sugar/m4sugar.m4, lib/autoconf/general.m4,
19967         * lib/autoconf/status.m4: Adjust.
19968         Use `m4_PACKAGE_STRING'.
19969         * lib/autotest/general.m4 (AT_INIT): N-th signature change: now
19970         the only optional argument is the name of the test suite.
19971         Expect `package.m4' to define the package signature.
19972         * lib/autom4te.in (Autotest): Add `package.m4?'.
19973         * tests/Makefile.am (package.m4): New.
19974         * tests/suite.at: ifnames is a victim.
19976 2001-09-18  Akim Demaille  <akim@epita.fr>
19978         * lib/autom4te.in (Autoconf): Preselect AM_CONDITIONAL,
19979         AC_LIBSOURCE, AC_CONFIG_FILES.
19980         * lib/autotest/general.m4 (AT_INIT): Don't abort when a tested
19981         program version string doesn't match the package's.
19982         * lib/autoconf/general.m4 (AC_CACHE_VAL): Reestablish the space
19983         after `(cached)'.
19985 2001-09-17  Paul Eggert  <eggert@twinsun.com>
19987         * lib/autoconf/c.m4: (AC_LANG_INT_SAVE(C)):
19988         Allow expression to return any value that can fit into unsigned long
19989         (not int, as before).  Check for output errors.
19991 2001-09-17  Bruno Haible  <haible@ilog.fr>
19993         * lib/autoconf/c.m4: (AC_LANG_INT_SAVE(C)):
19994         Always include <stdio.h> and <stdlib.h>. Evaluate
19995         the expression in an extra function before these includes. Call
19996         fprintf "%d" only after ensuring the argument is of type 'int'.
19997         Reported by Wayne Chapeskie <waynec@spinnaker.com>.
19999 2001-09-17  Paul Eggert  <eggert@twinsun.com>
20001         Fix bug reported by Paul Townsend on AIX 4.3.3.0 with CFLAGS=-O4
20002         or CFLAGS=-O5.  In that case, the linker has a relaxed view of
20003         fatal errors, and AC_CHECK_LIB causes it to include libraries even
20004         when they don't exist.
20006         * lib/autoconf/headers.m4 (AC_HEADER_DIRENT): Use AC_SEARCH_LIBS,
20007         not AC_CHECK_LIB, so that we don't use -ldir or -lx if we don't
20008         need it.
20010         * lib/autoconf/specific.m4 (AC_ISC_POSIX): Replace the old, crufty
20011         version with the version used by fileutils 4.1, except use
20012         AC_SEARCH_LIBS, not AC_CHECK_LIB, so that we don't use -lcposix if
20013         we don't need it.
20015         * doc/autoconf.texi (AC_ISC_POSIX): Describe new behavior.
20017 2001-09-13  Akim Demaille  <akim@epita.fr>
20019         * tests/base.at, tests/m4sh.at: Be sure to issue the bangshe line
20020         _first_.
20021         Reported by Gerrit P. Haase.
20023 2001-09-13  Akim Demaille  <akim@epita.fr>
20025         * lib/autotest/general.m4 (AT_INIT): Reset `AT_victims' so that
20026         m4_defn'ing is valid.
20028 2001-09-13  Akim Demaille  <akim@epita.fr>
20030         * lib/m4sugar/m4sugar.m4 (m4_append_uniq): New.
20031         * lib/autotest/general.m4 (AT_VICTIMS, AT_KEYWORDS, _AT_CLEANUP_FILE):
20032         Use it.
20034 2001-09-13  Akim Demaille  <akim@epita.fr>
20036         * lib/m4sugar/m4sugar.m4 (_AS_QUOTE_IFELSE, _AS_BOX_INDIR): Use
20037         m4_match.
20038         (m4_re_escape): New.
20039         * lib/autoconf/status.m4 (AC_CONFIG_IF_MEMBER): Use it.
20040         * lib/autoconf/general.m4 (AC_CACHE_SAVE): Use m4_match.
20041         * lib/autoconf/status.m4 (AC_CONFIG_IF_MEMBER, AC_CONFIG_LINKS):
20042         Likewise.
20043         * lib/autoconf/types.m4 (_AC_CHECK_TYPE_REPLACEMENT_TYPE_P)
20044         (_AC_CHECK_TYPE_MAYBE_TYPE_P, AC_CHECK_MEMBER): Likewise.
20045         * lib/autotest/general.m4 (AT_INIT): Rename AT_TESTS_ALL as
20046         AT_tests_all for consistency.
20047         Set at_victims.
20048         (AT_VICTIMS): Similar to AT_KEYWORDS.
20049         (_AT_CLEANUP_FILE_IF): Use m4_match and m4_re_escape.
20051 2001-09-13  Akim Demaille  <akim@epita.fr>
20053         * lib/autotest/general.m4 (AT_INIT): Fix stupid bugs.
20055 2001-09-13  Akim Demaille  <akim@epita.fr>
20057         * lib/autotest/general.m4 (AT_INIT): Create and remove
20058         `$as_me.[0-9]+' instead of `debug-[0-9]+.sh', so that multiple
20059         test suites can cohabit.
20061 2001-09-13  Akim Demaille  <akim@epita.fr>
20063         * tests/mktests.sh: Don't output banners for empty test files.
20065 2001-09-13  Akim Demaille  <akim@epita.fr>
20067         Test suites can be run independently of configure.
20069         * lib/m4sugar/m4sh.m4 (_AS_ECHO, _AS_ECHO_N_PREPARE): New.
20070         * lib/autoconf/programs.m4 (_AC_PROG_ECHO): Remove.
20071         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Adjust: AC_SUBST
20072         ECHO_N etc.
20073         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): Don't ask for at_n
20074         and at_c.
20075         * lib/autotest/general.m4: Use ECHO_*.
20077 2001-09-13  Akim Demaille  <akim@epita.fr>
20079         * bin/ifnames.in: Rewrite in Perl.
20080         * configure.ac: Don't look for AWK.
20081         * tests/tools.at (AWK portability): Remove.
20082         (Syntax of the shell scripts): Don't check ifnames.
20083         (AT_CHECK_PERL_SYNTAX): New.
20084         (Syntax of the Perl scripts): Check ifnames.
20085         * tests/ifnames: New.
20087 2001-09-13  Akim Demaille  <akim@epita.fr>
20089         * lib/autotest/general.m4 (AT_INIT): Let --keywords also match
20090         test group titles.
20091         * tests/atspecific.m4 (AT_CHECK_AU_MACRO): AT_KEYWORDS(autoupdate).
20092         Remove all the other keywords.
20094 2001-09-10  Akim Demaille  <akim@epita.fr>
20096         * lib/autotest/general.m4 (AT_INIT): Remove the diversion HELP and
20097         SETUP: no longer used.
20098         Support -k, --keywords.
20099         <at_help>: Be `no', `short', or `long'.
20100         <at_help_all>: New variable.
20101         (AT_KEYWORDS): New.
20102         (AT_CLEANUP_FILE_IFELSE, AT_CLEANUP_FILE): Rename as...
20103         (_AT_CLEANUP_FILE_IF, _AT_CLEANUP_FILE): these.
20104         (_AT_CLEANUP_FILE_IF): Simplify the regexp.
20105         (AT_SETUP): Reset AT_line, AT_keywords, AT_description.
20106         No longer fill the HELP diversion.
20107         (AT_CLEANUP): Use them.
20108         * lib/m4sugar/m4sugar.m4 (m4_append): Support a separator.
20109         (m4_list_append): Remove.
20111         Spread a few keywords in the Autoconf test suite.
20113 2001-09-10  Akim Demaille  <akim@epita.fr>
20115         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): Don't pass
20116         PATH_SEPARATOR, let M4sh compute it.
20117         * lib/m4sugar/m4sh.m4 (_AS_PATH_SEPARATOR_PREPARE): New.
20118         * lib/autoconf/programs.m4 (AC_SHELL_PATH_WALK): Use PATH_SEPARATOR.
20119         Move to...
20120         * lib/m4sugar/m4sh.m4 (_AS_PATH_WALK): Here.
20121         Simplify when the path is not a literal.
20122         (AS_UNAME): Use it to report PATH.
20123         * lib/autoconf/general.m4 (_AC_INIT_PREPARE_FS_SEPARATORS): Remove.
20124         (_AC_INIT_DEFAULTS): AC_SUBST PATH_SEPARATOR.
20125         * lib/autoconf/programs.m4 (AC_PROG_INSTALL): Use _AS_PATH_WALK.
20126         * lib/autotest/general.m4 (AT_INIT): Use _AS_PATH_WALK to
20127         normalize the path, and to look for victims.
20128         * tests/semantics.at (AC_PATH_PROG & AC_PATH_PROGS)
20129         (AC_CHECK_PROG & AC_CHECK_PROGS): Use PATH_SEPARATOR.
20131 2001-09-07  Akim Demaille  <akim@epita.fr>
20133         * bin/autom4te.in (&handle_m4): `< /dev/null' so that GNU M4 1.5
20134         doesn't neutralize SIGINT, making autoconf etc. non interruptible.
20135         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): Move the package
20136         related variables into `at_package_*'.
20137         * lib/autotest/general.m4 (AT_VICTIMS): New.
20138         (AT_INIT): Adjust for stand-alone/embedded test suites.
20139         (AS_MESSAGE_LOG_FD): Define and use it.
20140         * tests/suite.at (AT_VICTIMS): Use it.
20141         * tests/tools.at (autoupdating AC_PREREQ): Don't depend upon
20142         at_version.
20144 2001-09-07  Akim Demaille  <akim@epita.fr>
20146         Move toward possibly stand-alone test suites.
20148         * lib/autotest/general.m4: Stop displaying srcdir everywhere as,
20149         in addition, it introduces useless differences in logs.
20150         (AT_INIT): Let atconfig and atlocal be both optional.
20151         Adjust PATH computation.
20152         * lib/m4sugar/m4sh.m4 (AS_UNAME): More readable display of PATH.
20154 2001-09-07  Akim Demaille  <akim@epita.fr>
20156         * lib/autoconf/Makefile.am (autoconf.m4f): Depends upon
20157         m4sugar/version.m4.
20159 2001-09-05  Akim Demaille  <akim@epita.fr>
20161         * lib/autoconf/c.m4 (AC_LANG_BOOL_COMPILE_TRY(C)): Use `_array_'
20162         to avoid GCC warnings.
20163         From Uwe Seimet.
20165 2001-09-05  Akim Demaille  <akim@epita.fr>
20167         * bin/autom4te.in: --language is -l, not -s.
20169 2001-09-05  Akim Demaille  <akim@epita.fr>
20171         Be ready to handle filenames as stupid as `dnl.at', for if even
20172         the maintainer is dumb enough to do that...
20174         * lib/autotest/general.m4 (AT_SETUP, AT_LINE): Demonstrates your
20175         excellence in M4 quotation: consider `__file__' is active.
20177         And BTW, when invoking m4, pass the --include in the right order:
20178         the wrong one.
20180         * bin/autom4te.in, bin/autoupdate.in: Use reverse when kingtal to
20181         4m.
20183 2001-09-05  Akim Demaille  <akim@epita.fr>
20185         * lib/Autom4te/XFile.pm: New lib file.
20186         * bin/autoupdate.in, bin/autoscan.pl, bin/autom4te.in,
20187         * bin/autoheader.in: Use it.
20189 2001-09-05  Akim Demaille  <akim@epita.fr>
20191         * bin/autoupdate.in (&handle_m4_macros) <unm4.m4>: Undefine iff
20192         defined.
20194 2001-09-05  Akim Demaille  <akim@epita.fr>
20196         * lib/Autom4te/General.pm (&getopt): Work around the `-' Getopt bug.
20197         * bin/autoheader.in, bin/autoupdate.in (&parse_args): Adjust.
20199         * bin/autoscan.in: Use `getopt' and `find_files' etc.
20200         Add -I, --include support.
20201         * doc/autoconf.texi (autoscan Invocation): Adjust.
20203 2001-09-05  Akim Demaille  <akim@epita.fr>
20205         CVS GNU M4 doesn't like `undefine(undefined)'.
20207         * bin/autoupdate.in (&handle_m4_macros, &handle_autoconf_macros):
20208         New, extracted from main.
20209         Use IO::File wherever possible.
20210         (input.m4): Be constant, use -I instead of hard coding $tmp.
20211         Therefore be a quoted heredoc.
20212         Don't invoke `_au_disable', since ac was not loaded, but just
20213         `unm4.m4'.
20215 2001-08-31  Akim Demaille  <akim@epita.fr>
20217         Version 2.52d.
20219 2001-08-31  Akim Demaille  <akim@epita.fr>
20221         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Fix the
20222         previous patch.
20223         * tests/atspecific.m4 (AT_CHECK_AUTOHEADER): Can create `config.hin~'.
20225 2001-08-31  Akim Demaille  <akim@epita.fr>
20227         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): DU 5.0 has
20228         serious problems handling heredocs in heredocs.
20229         Reported by Nicolas Joly.
20231 2001-08-31  Akim Demaille  <akim@epita.fr>
20233         * doc/autoconf.texi: Don't promote non `m4_*' M4 macros.
20234         (Making testsuite Scripts): Update.
20236 2001-08-31  Akim Demaille  <akim@epita.fr>
20238         * lib/Makefile.am (CLEANFILES): Add autom4te.cfg.
20240 2001-08-31  Akim Demaille  <akim@epita.fr>
20242         * doc/autoconf.texi (Quadrigraphs): Document `@&t@'.
20243         (testsuite Scripts): There is no such thing as `atconfig.in'.
20244         And actually one diagram is missing: test suite runtime.
20246 2001-08-31  Akim Demaille  <akim@epita.fr>
20248         * lib/Autom4te/General.pm (&find_file): Browse the includes in the
20249         inverse order.
20251 2001-08-31  Akim Demaille  <akim@epita.fr>
20253         * bin/autoupdate.in (@include): `installcheck' revealed the path
20254         to m4sugar was lacking!
20256 2001-08-31  Akim Demaille  <akim@epita.fr>
20258         * man/Makefile.am (.x.1): We really have to pass
20259         autom4te_perllibdir.
20261 2001-08-31  Akim Demaille  <akim@epita.fr>
20263         * lib/autotest/general.m4 (AT_INIT): Don't pass all the args to
20264         debug scripts, in particular passing explicitly listed tests to
20265         run is stupid.
20267 2001-08-31  Akim Demaille  <akim@epita.fr>
20269         * bin/autom4te.in (&parse_args): Strip `.' from `@include'.
20270         * bin/autoupdate.in: Use --include, -I, and --force, -f, too.
20271         Use directly autom4te, not autoconf.
20272         * tests/autoupdate: $top_srcdir/lib is needed too for melt files.
20274 2001-08-31  Akim Demaille  <akim@epita.fr>
20276         * tests/semantics.at (AC_C_BIGENDIAN): Missing eol.
20277         * bin/autoheader.in (%symbol): Strip arguments of macros.
20279 2001-08-31  Akim Demaille  <akim@epita.fr>
20281         * doc/autoconf.texi: Catch up -I, --include changes.
20283 2001-08-31  Akim Demaille  <akim@epita.fr>
20285         * bin/autom4te.in (&parse_args): Die on unknown languages.
20286         * bin/autoheader.in: Run directly autom4te --mode=autoconf, no
20287         need for autoconf.
20288         Promote --include over --macrodir and other obsolete options.
20290 2001-08-31  Akim Demaille  <akim@epita.fr>
20292         * lib/Autom4te/General.pm ($version, $help, &getopt): New.
20293         * bin/autoupdate.in, bin/autoheader.in, bin/autom4te.in: Use them.
20294         * bin/autom4te.in ($autoconf): Pass --force.
20295         `print $out' doesn't print `$_' but `$out'.
20296         * tests/tools.at (Syntax of the Perl scripts): Pass the lib dir.
20297         (autoheader): Pass --force since the test suite goes too fast for
20298         the time stamps.
20299         Adjust to the new autoheader messages.
20301 2001-08-31  Akim Demaille  <akim@epita.fr>
20303         * bin/autoheader.in: Handle the acconfig.h etc. junk files.
20304         Check the completeness of the #template.
20305         * lib/Autom4te/General.pm (&update_file): s/remove/unlink/.
20306         * tests/semantics.at (AC_C_BIGENDIAN): Adjust AT_CHECK_AUTOHEADER
20307         invocation.
20309 2001-08-31  Akim Demaille  <akim@epita.fr>
20311         * lib/Autom4te/General.pm (&find_file, &update_file): New.
20312         * bin/autoupdate.in, bin/autoheader.in: Adjust.
20313         Drop AC_MACRODIR dead for real.
20314         * tests/atspecific.m4 (AT_CHECK_AUTOHEADER): Now autoheader says
20315         `autoheader: `config.hin' is created'.
20316         * tests/tools.at (Syntax of the Perl scripts): Check autoheader.
20318 2001-08-31  Akim Demaille  <akim@epita.fr>
20320         * bin/autoheader.in: Rewrite in Perl.
20321         * tests/autoheader: Adjust.
20323 2001-08-31  Akim Demaille  <akim@epita.fr>
20325         * bin/autoconf.in (--include, -I): New option.
20326         Map --localdir, --autoconf-dir onto it.
20327         Forward autom4te's options instead of interpreting them.
20328         * bin/autoconf.in, bin/autoheader.in (AC_MACRODIR, autoconf_dir):
20329         There is no such envvar since the inception of autom4te.cfg.
20330         * bin/autom4te.in (&parse_args): Uniquify `@include'.
20331         * bin/autoupdate.in: Adjust, and perform more control.
20332         * tests/atspecific.m4 (AT_CHECK_AUTOCONF): Adjust.
20333         * tests/autoconf: Dittowise.
20335 2001-08-31  Akim Demaille  <akim@epita.fr>
20337         * bin/autoconf.in: Don't bother with `acsite.m4' and `aclocal.m4'.
20338         * bin/autom4te.in (&find_file): Support `FILE?' standing for
20339         optionally `FILE'.
20340         Use -e, not -f, since /dev/null for instance is OK.
20341         (&parse_args): Adjust.
20342         * lib/autom4te.in (Autoconf): Add `acsite.m4?' and `aclocal.m4?'.
20344 2001-08-31  Akim Demaille  <akim@epita.fr>
20346         * configure.ac: Also find tested executables in bin.
20347         * bin/autoconf.in, bin/autoheader.in, bin/autoreconf.in,
20348         * bin/autoscan.in, autoupdate.in: Use exclusively the name of the
20349         installed peer executables, only PATH is allowed to resolve it.
20350         Pass `autoconf_dir' via options, not via invisible envvars.
20351         * lib/Autom4te/General.pm (&find_peer): Remove.
20352         * lib/autotest/general.m4 (AT_INIT): `AUTOTEST_PATH=a:b' gives
20353         `abuild:asrc:bbuild:bsrc', not `abuild:bbuild:asrc:bsrc'.
20354         * man/Makefile.am: Let help2man rely on PATH instead of trying to
20355         find the executables for it.
20356         * tests/Makefile.am: Major cleanup.  Too lazy to document...
20357         * tests/atlocal.in: Remove all the obscure envvar manipulations.
20358         We only need PERL.
20359         * tests/atspecific.m4, tests/tools.at: Passing --localdir is
20360         indeed related to running the test suite, while passing
20361         --autoconf-dir and others is related to running non installed
20362         Autoconf executables.  So don't do that, leave it to...
20363         * tests/autoconf, tests/autoheader, tests/autom4te, tests/autoupdate,
20364         * tests/autoscan: New.
20365         * tests/atspecific.m4 (AT_CHECK_M4SUGAR, AT_CHECK_M4SH): Don't
20366         refer to library files: rely on --language.
20368 2001-08-29  Akim Demaille  <akim@epita.fr>
20370         * bin/autom4te.in, lib/autom4te.in, bin/autoconf.in:
20371         s/--set/--language/.
20373 2001-08-29  Akim Demaille  <akim@epita.fr>
20375         * doc/autoconf.texi: Strip the @nodes.
20376         Suggested by Paul Eggert.
20377         (Initializing configure): Typo.
20379 2001-08-29  Akim Demaille  <akim@epita.fr>
20381         * bin/autom4te.in (&handle_output): s/@__@/@&t@/.
20382         Suggested by Paul Eggert.
20384 2001-08-29  Akim Demaille  <akim@epita.fr>
20386         * Makefile.maint (do-po-update): Wget refuses to overwrite files:
20387         download in a tmp dir.
20389 2001-08-29  Akim Demaille  <akim@epita.fr>
20391         * lib/autotest/general.m4: s/AT-devnull/devnull/ since there are
20392         case insensitive OSes out there :(
20393         From Tim Van Holder.
20395 2001-08-29  Akim Demaille  <akim@epita.fr>
20397         * lib/autom4te.in: New.
20398         * lib/Makefile.am (edit, autom4te.cfg): New.
20399         * bin/autom4te.in (BEGIN): Simplify.
20400         Rely on `AC_MACRODIR' in addition of `autom4te_perllibdir'.
20401         (&load_configuration): New.  Use it.
20402         (&parse_args): Support --mode, --set, and --melt.
20403         * bin/autoconf.in: Simplify and adjust.
20404         * tests/Makefile.am (AUTOMAKE): Use --set.
20405         * tests/atlocal.in: Adjust.
20406         * BUGS: distcheck and check are weak.
20408 2001-08-29  Akim Demaille  <akim@epita.fr>
20410         * lib/autotest/general.m4: Use
20411                 foo=`(command) 2>/dev/null`
20412         not
20413                 foo=`command` 2>/dev/null
20414         (at-devnull): Rename as...
20415         (AT-devnull): this.
20416         (--clean): Remove AT-* files too.
20417         * doc/autoconf.texi (Limitations of Usual Tools): Document `date'.
20418         Reported by Nicolas Joly.
20420 2001-08-28  Akim Demaille  <akim@epita.fr>
20422         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Don't use single
20423         quotes inside single quotes.
20424         Reported by Nicolas Joly.
20426 2001-08-28  Kevin Ryde  <user42@zip.com.au>
20428         * doc/autoconf.texi (Function Portability): Mention C right shifts.
20430 2001-08-27  Tim Van Holder  <tim.van.holder@pandora.be>
20432         * lib/autotest/general.m4: Reword some messages.
20433         (AT_INIT): Check for the `times' builtin before using it.
20434         Support test ranges as arguments to the testsuite.
20435         Have -e imply -d as the help text suggested.
20437 2001-08-27  Akim Demaille  <akim@epita.fr>
20439         * Makefile.maint: Formatting changes.
20440         (do-po-update, po-update, cvs-update, update): New targets.
20441         (AMTAR): Remove.
20443 2001-08-27  Akim Demaille  <akim@epita.fr>
20445         * lib/autotest/general.m4 (AT_INIT) <at_cmd_line>: Remove.
20446         <at_cmd_line>: New.
20447         Pass it to debug-*.sh scripts.
20448         <AUTOTEST_PATH>: May contain absolute dir names.
20450 2001-08-27  Akim Demaille  <akim@epita.fr>
20452         * lib/autotest/general.m4 (AT_INIT): Log the command line.
20453         Support `VAR=VAL' as arguments.
20454         Compute PATH _after_ the options processing, so that AUTOTEST_PATH
20455         may be set via the command line.
20457 2001-08-27  Akim Demaille  <akim@epita.fr>
20459         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): $2 defaults to $1.
20460         * lib/autotest/autotest.m4 (AT_INIT): Expand AUTOTEST_PATH into
20461         first the build dirs, then the src dirs.
20462         * configure.ac (AC_CONFIG_TESTDIR): Adjust.
20464 2001-08-27  Akim Demaille  <akim@epita.fr>
20466         * lib/autotest/general.m4 (AT_INIT): Output the definition of
20467         at_data_files earlier.
20468         (--clean, -c): New option.
20469         * tests/Makefile.am: Use this option.
20471 2001-08-27  Akim Demaille  <akim@epita.fr>
20473         * lib/autoconf/status.m4 (_AC_SRCPATHS): Rename `ac_dots' as
20474         `ac_top_builddir' to mimic Automake's vocabulary, which much more
20475         readable.
20476         Adjust callers.
20477         * doc/autoconf.texi (Configuration Actions): Document the vars
20478         available in commands.
20479         Emphasize the risks of collisions in init-cmds.
20481 2001-08-27  Akim Demaille  <akim@epita.fr>
20483         * doc/autoconf.texi (Input) <AC_INIT>: Move to..
20484         (Initializing configure): this new node.
20486 2001-08-27  Akim Demaille  <akim@epita.fr>
20488         * Makefile.am (EXTRA_DIST): INSTALL.txt is a dead hack.
20490 2001-08-27  Akim Demaille  <akim@epita.fr>
20492         * m4/atconfig.m4 (AT_CONFIG): Remove, replaced by...
20493         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): this.
20494         New file.
20495         * m4/Makefile.am (EXTRA_DIST): Oops, adjust...
20497 2001-08-27  Akim Demaille  <akim@epita.fr>
20499         * lib/autoconf/general.m4 (AU_DEFINE, AU_DEFUN, AU_ALIAS): Move
20500         to...
20501         * lib/autoconf/autoheader.m4: this new file.
20502         * lib/autoconf/general.m4 (AH_OUTPUT, AH_VERBATIM)
20503         (_AH_VERBATIM_OLD, AH_TEMPLATE, _AH_TEMPLATE_OLD, AH_TOP, AH_BOTTOM):
20504         Move to...
20505         * lib/autoconf/autoupdate.m4: this new file.
20507 2001-08-27  Akim Demaille  <akim@epita.fr>
20509         * lib/autoconf/status.m4 (_AC_SRCPATHS): New.
20510         (_AC_OUTPUT_LINKS, _AC_OUTPUT_FILES, _AC_OUTPUT_SUBDIRS): Use it.
20511         Standardize the var names (ac_sub_srcdir -> ac_srcdir, ac_subdir
20512         -> ac_dir).
20513         (_AC_OUTPUT_HEADERS): AS_DIRNAME always return a dir name.
20514         * lib/autoconf/general.m4 (_AC_INIT_HELP): Ditto.
20516 2001-08-27  Akim Demaille  <akim@epita.fr>
20518         * lib/autoconf/autoconf.m4 (AC_CONFIG_COMMANDS)
20519         (AC_CONFIG_COMMANDS_POST, AC_CONFIG_COMMANDS_PRE, AC_CONFIG_FILES)
20520         (AC_CONFIG_HEADER, AC_CONFIG_HEADERS, AC_CONFIG_IF_MEMBER)
20521         (AC_CONFIG_LINKS, AC_CONFIG_SUBDIRS, AC_FILE_DEPENDENCY_TRACE)
20522         (AC_LINK_FILES, AC_LIST_COMMANDS, AC_LIST_COMMANDS_COMMANDS)
20523         (AC_LIST_FILES, AC_LIST_FILES_COMMANDS, AC_LIST_HEADERS)
20524         (AC_LIST_HEADERS_COMMANDS, AC_LIST_LINKS, AC_LIST_LINKS_COMMANDS)
20525         (AC_OUTPUT, AC_OUTPUT_COMMANDS, AC_OUTPUT_COMMANDS_POST)
20526         (AC_OUTPUT_COMMANDS_PRE, AC_OUTPUT_MAKE_DEFS)
20527         (_AC_CONFIG_COMMANDS_INIT, _AC_CONFIG_DEPENDENCIES)
20528         (_AC_CONFIG_DEPENDENCY, _AC_CONFIG_UNIQUE, _AC_LINK_FILES_CNT)
20529         (_AC_LIST_SUBDIRS, _AC_OUTPUT_COMMANDS, _AC_OUTPUT_COMMANDS_CNT)
20530         (_AC_OUTPUT_COMMANDS_INIT, _AC_OUTPUT_CONFIG_STATUS)
20531         (_AC_OUTPUT_FILES, _AC_OUTPUT_HEADERS, _AC_OUTPUT_LINKS)
20532         (_AC_OUTPUT_SUBDIRS): Move to...
20533         * lib/autoconf/status.m4: this new file.
20534         * lib/autoconf/general.m4, lib/autoconf/Makefile.am: Adjust.
20535         * tests/Makefile.am, tests/suite.at: Adjust.
20537 2001-08-27  Akim Demaille  <akim@epita.fr>
20539         Automake 1.5.
20541         * Makefile.am (AUTOMAKE_OPTIONS): Add 1.5 and dist-bzip2.
20542         (AMTAR): Help automake define it.
20543         (INSTALL, install-data-hook): The INSTALL.txt trick is no longer
20544         needed, 1.5 can have a macro and a target with the same name.
20545         * m4/auxdir.m4, m4/cond.m4, m4/depend.m4, m4/install-sh.m4,
20546         * m4/strip.m4: New.
20547         * m4/init.m4, m4/sanity.m4: Update.
20548         * doc/Makefile.am (CLEANFILES): 1.5 knows the texi2dvi files.
20549         * lib/autoconf/Makefile.am, lib/autotest/Makefile.am,
20550         * lib/m4sugar/Makefile.am, lib/autoscan/Makefile.am,
20551         * lib/Autom4te/Makefile.am, man/Makefile.am: Use dist/nodist.
20553 2001-08-27  Akim Demaille  <akim@epita.fr>
20555         Provide a mean to ``AC_PREREQ'' for M4sugar, M4sh and Autotest.
20557         * lib/autoconf/version.in: Remove.
20558         * lib/m4sugar/version.in: New.
20559         * lib/m4sugar/m4sugar.m4 (m4_acversion, m4_version_prereq): New.
20560         Adjust callers.
20561         * bin/autoupdate.in: Distinguish M4sugar vs. Autoconf macros by
20562         the name of the directory they're in, instead of the filename,
20563         since version.m4 is now in m4sugar, but m4_acversion must not be
20564         classified as an Autoconf macro.
20565         ($input_m4): Don't qualify the path to m4sugar.
20566         Rather, pass autoconf_dir to m4.
20567         * tests/Makefile.am (testsuite): Remove -I top_srcdir, unneeded.
20568         * tests/suite.at: Require 2.52c.
20570 2001-08-27  Akim Demaille  <akim@epita.fr>
20572         testsuite.log should include config.log.
20574         * lib/autotest/autotest.m4: New.
20575         * lib/autotest/general.m4, tests/atspecific.m4: Adjust.
20576         * tests/suite.at : Adjust.
20577         (AT_INIT): Log config.log.
20578         * lib/m4sugar/m4sugar.m4 (m4_text_box): New.
20579         * lib/m4sugar/m4sh.m4 (_AS_BOX_LITERAL): Adjust.
20580         * lib/autoconf/general.m4 (_AC_INIT_CONFIG_LOG): Use them.
20581         (_AC_INIT_PREPARE): Fix the incredibly messy and buggy completion
20582         of config.log on traps.
20583         (_AC_OUTPUT_CONFIG_STATUS): Use AS_BOX.
20584         Use consistently `_ACEOF' for configure's here docs, and `_CSEOF'
20585         for config.status'.
20586         Open the log as soon as possible.
20587         Use the same log introduction as configure's.
20589 2001-08-22  Paul Eggert  <eggert@twinsun.com>
20591         * doc/autoconf.texi (Indices): New node.
20592         Move indices out of the top level menu and into this submenu.
20594 2001-08-22  Akim Demaille  <akim@epita.fr>
20596         * lib/autoconf/programs.m4 (_AC_PROG_LEX_YYTEXT_DECL): Use
20597         AC_TRY_COMMAND.
20598         (AC_DECL_YYTEXT): Fix the previous patch: it points to AC_PROG_LEX.
20600 2001-08-22  Akim Demaille  <akim@epita.fr>
20602         * lib/autoconf/general.m4 (AC_SHELL_PATH_WALK, AC_CHECK_PROG)
20603         (AC_CHECK_PROGS, AC_PATH_PROG, AC_PATH_PROGS, AC_CHECK_TOOL_PREFIX)
20604         (AC_PATH_TOOL, AC_CHECK_TOOL, AC_CHECK_TOOLS): Move to...
20605         * lib/autoconf/programs.m4: here.
20606         * lib/autoconf/specific.m4 (_AC_PROG_ECHO, AC_PROG_MAKE_SET)
20607         (AC_PROG_RANLIB, AC_PROG_YACC, AC_PROG_LEX, _AC_DECL_YYTEXT)
20608         (AC_PROG_INSTALL, AC_PROG_LN_S, AC_RSH): Move to...
20609         * lib/autoconf/programs.m4: here.
20610         (_AC_DECL_YYTEXT): Rename as...
20611         (_AC_PROG_LEX_YYTEXT_DECL): this.
20612         * lib/autoconf/autoconf.m4, lib/autoconf/Makefile.am
20613         * tests/Makefile.am, tests/suite.am: Adjust.
20615 2001-08-22  Akim Demaille  <akim@epita.fr>
20617         * lib/autoconf/general.m4 (AC_LIST_MEMBER_OF, AC_LINKER_OPTION):
20618         Move to...
20619         * lib/autoconf/fortran.m4 (_AC_LIST_MEMBER_IF, _AC_LINKER_OPTION):
20620         here.
20621         * lib/autoconf/general.m4 (AC_TRY_LINK_FUNC): Move to...
20622         * lib/autoconf/functions.m4: here.
20623         * lib/autoconf/general.m4 (AC_SEARCH_LIBS, AC_CHECK_LIB)
20624         (AH_CHECK_LIB): Move to...
20625         * lib/autoconf/libs: this new file.
20626         * lib/autoconf/specific.m4 (_AC_PATH_X_XMKMF, _AC_PATH_X_DIRECT)
20627         (_AC_PATH_X, AC_PATH_X, AC_PATH_XTRA): Move to...
20628         * lib/autoconf/libs.m4: here.
20629         * lib/autoconf/autoconf.m4, lib/autoconf/Makefile.am: Adjust.
20631 2001-08-22  Akim Demaille  <akim@epita.fr>
20633         * lib/m4sugar/m4sh.m4 (AS_MKDIR_P): Fail if fails.
20634         * lib/autoconf/general.m4 (_AC_OUTPUT_SUBDIRS): Adjust.
20635         (AC_SITE_LOAD): Better logging of config.site.
20637 2001-08-20  Akim Demaille  <akim@epita.fr>
20639         * configure.ac (AT_CONFIG): Fix the path.
20640         * m4/atconfig.m4 (AT_CONFIG): Don't use EOF but ATEOF so that 2.52
20641         can be used.
20643 2001-08-20  Alexandre Duret-Lutz  <duret_g@epita.fr>
20645         * lib/autoconf/c.m4 (AC_C_BIGENDIAN): Prepare the cross-compile
20646         program with AC_LANG_PROGRAM before feeding it to
20647         AC_COMPILE_IFELSE.  Cleanup grep usage.
20649 2001-08-20  Akim Demaille  <akim@epita.fr>
20651         * ChangeLog, ChangeLog.0, ChangeLog.1, ChangeLog.2, AUTHORS, BUGS,
20652         * NEWS, README, README-alpha, TODO, tests/README: This package is
20653         `Autoconf', not `autoconf' (the executable).
20655 2001-08-20  Akim Demaille  <akim@epita.fr>
20657         Info readers seem to need `Index' in the index node title :(
20659         * doc/autoconf.texi: Reverse the 2001-08-15 change which
20660         simplified index node names.
20662 2001-08-20  Akim Demaille  <akim@epita.fr>
20664         * lib/autoconf/general.m4 (_AC_INIT_PACKAGE): Warn if the
20665         arguments are not literals.
20666         * doc/autoconf.texi (Input) <AC_INIT>: Arguments must be literals.
20667         Specify the output variables, and macros defined.
20669 2001-08-20  Akim Demaille  <akim@epita.fr>
20671         * doc/autoconf.texi (Examining Declarations) <AC_TRY_CPP>:
20672         (Examining Syntax) <AC_TRY_COMPILE>
20673         (Examining Libraries) <AC_TRY_LINK>
20674         (Test Programs) <AC_TRY_RUN>: These macros double quote some of
20675         their arguments.
20676         Reported by Werner Lemberg.
20678 2001-08-20  Akim Demaille  <akim@epita.fr>
20680         * lib/autotest/general.m4 (AT_INIT): Compute top_builddir,
20681         top_srcdir and srcdir from at_topbuild_2_topsrc and at_testdir.
20682         Load atlocal late enough to dump it in the log.
20683         * m4/atconfig.m4 (AT_CONFIG): Pass them to atconfig.
20685 2001-08-20  Akim Demaille  <akim@epita.fr>
20687         * tests/torture.at (Configuring subdirectories): New test.
20688         * lib/autoconf/general.m4 (_AC_INIT_SRCDIR): Say what you are
20689         looking for.
20690         * m4/atconfig.m4: Be sure the let $[0] be expandable.
20691         (top_srcdir): Fix its computation.
20693 2001-08-20  Akim Demaille  <akim@epita.fr>
20695         * lib/autoconf/general.m4 (_AC_OUTPUT_COMMANDS): Say what you do.
20696         * m4/atconfig.m4 (AT_CONFIG): $1 is now the directory where the
20697         test suite lives.
20698         Create `atconfig' automagically.
20699         Configure atlocal.in if present.
20700         * tests/atconfig.in: Remove.
20701         * tests/atlocal.in: New.
20702         * tests/Makefile.am: Adjust.
20704 2001-08-20  Akim Demaille  <akim@epita.fr>
20706         Huh!?!?!  There are still some user EOF tags used, which prevents
20707         their use in AC_CONFIG_COMMANDS for instance...
20709         * lib/autoconf/general.m4, lib/autoconf/specific.m4,
20710         * lib/autotest/general.m4: Rename the EOF tags as `_ACEOF',
20711         `_CSEOF', or `_ATEOF', as appropriate.
20712         * lib/m4sugar/Makefile.am, lib/autoconf/Makefile.am,
20713         * lib/autotest/Makefile.am (check-local): Enforce this constraint.
20715 2001-08-20  Akim Demaille  <akim@epita.fr>
20717         * tests/base.at, tests/m4sh.at, tests/m4sugar.at,
20718         * tests/semantics.at, tests/tools.at, tests/torture.at:
20719         s/^AT_DATA\(([^][]+),/AT_DATA([$1],/.
20721 2001-08-20  Akim Demaille  <akim@epita.fr>
20723         Autotest invokes M4sh's initialization.
20725         * lib/autotest/general.m4: Adjust the diversion names.
20726         (AT_INIT): Run AS_INIT.
20727         Use the BINSH diversion to invoke /bin/sh.
20728         * tests/base.at, tests/m4sh.at, tests/m4sugar.at, tests/tools.at:
20729         * tests/torture.at: Respect M4sugar and M4sh macro name spaces.
20731 2001-08-20  Akim Demaille  <akim@epita.fr>
20733         Let M4sh have its own diversions.
20735         * lib/autoconf/general.m4 (_m4_divert(BINSH), _m4_divert(REVISION))
20736         (_m4_divert(NOTICE)): Rename as...
20737         * lib/m4sugar/m4msh.m4 (_m4_divert(BINSH), _m4_divert(HEADER-REVISION))
20738         (_m4_divert(HEADER-COMMENT)): these.
20739         (_m4_divert(HEADER-COPYRIGHT), _m4_divert(HEADER-COPYRIGHT)): New.
20740         (_m4_divert(NOTICE)): New, for Libtool.
20741         * lib/autoconf/general.m4 (_m4_divert(PREPARE)): Remove, replaced
20742         long ago with `_m4_divert(GROW)'.
20743         (AC_COPYRIGHT, AC_REVISION, _AC_INIT_NOTICE): Adjust.
20745 2001-08-20  Akim Demaille  <akim@epita.fr>
20747         * tests/base.at, tests/compile.at, tests/foreign.at,
20748         * tests/m4sh.at, tests/m4sugar.at, tests/mktests.sh,
20749         * tests/semantics.at, tests/suite.at, tests/tools.at,
20750         * tests/torture.at: Ask Autotest mode, not Autoconf mode.
20752 2001-08-20  Akim Demaille  <akim@epita.fr>
20754         * bin/autom4te.in (handle_output): Handle @__@.
20756 2001-08-20  Akim Demaille  <akim@epita.fr>
20758         * lib/autoconf/autoconf.m4, lib/autoconf/oldnames.m4,
20759         * lib/autotest/general.m4: Adjust the license.
20761 2001-08-17  Paul Eggert  <eggert@twinsun.com>
20763         * doc/autoconf.texi (Function Portability): Mention snprintf,
20764         following up on a suggestion by Kevin Ryde.
20766 2001-08-17  Akim Demaille  <akim@epita.fr>
20768         * doc/install.texi, doc/autoconf.texi: Use `autoconf', not
20769         `autoconf_manual', as texinfo.tex 2001-06-21.10 chokes on it.
20771 2001-08-17  Akim Demaille  <akim@epita.fr>
20773         * lib/autotest/general.m4 (AT_INIT): Refer to `$as_me.log', not
20774         `$0.log' as for projects where testsuite is in src, we'd have
20775         testsuite.log created in src.
20777 2001-08-17  Akim Demaille  <akim@epita.fr>
20779         * bin/autom4te.in (&parse_args): Recognize --normalize.
20781 2001-08-17  Akim Demaille  <akim@epita.fr>
20783         Start implementing the AC_CHECK_HEADER transition scheme.
20785         * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_NEW)
20786         (_AC_CHECK_HEADER_OLD, _AC_CHECK_HEADER_MONGREL): New.
20787         (AC_CHECK_HEADER): Use them.
20789 2001-08-17  Akim Demaille  <akim@epita.fr>
20791         * doc/autoconf.texi: Work around Texinfo buglets.
20792         (Transformation Rules): One example is enough, users are expected
20793         to have their brains on. And BTW, use DESTDIR.
20794         (dvar): New macro.  Use it.
20796 2001-08-17  Akim Demaille  <akim@epita.fr>
20798         * doc/autoconf.texi (Writing testsuite.at) <AT_CHECK>: Complete.
20799         * lib/autotest/general.m4 (AT_INIT): Use the relative dir when
20800         looking for ChangeLogs.
20802 2001-08-17  Akim Demaille  <akim@epita.fr>
20804         * bin/autom4te.in: --normalize is a new option.
20805         * bin/autoconf.in: Use it.
20807 2001-08-17  Akim Demaille  <akim@epita.fr>
20809         * bin/Makefile.am, lib/Autom4te/Makefile.am, lib/autoconf/Makefile.am
20810         * lib/autotest/Makefile.am, lib/m4sugar/Makefile.am: Add TAGS support.
20812 2001-08-16  Paul Eggert  <eggert@twinsun.com>
20814         * doc/autoconf.texi, doc/install.texi: Put copyright notice at
20815         start, not at end.
20817 2001-08-15  Akim Demaille  <akim@epita.fr>
20819         * doc/Makefile.am (fu): New index, can't use fn because of defmac.
20820         Use it.
20822 2001-08-15  Akim Demaille  <akim@epita.fr>
20824         * doc/autoconf.texi (pr): New index.
20825         (prindex, findex): Use, merge, and output them.
20826         (Environment Variable Index, Output Variable Index)
20827         (Preprocessor Symbol Index, Autoconf Macro Index, M4 Macro Index)
20828         (Autotest Macro Index): Rename as...
20829         (Environment Variables, Output Variables,Preprocessor Symbols)
20830         (Autoconf Macros, M4 Macros, Autotest Macros): these.
20831         * doc/install.texi: Use @command.
20832         (Environment Variables): Rename as...
20833         (Defining Variables): this.
20835 2001-08-15  Akim Demaille  <akim@epita.fr>
20837         * doc/autoconf.texi (Function Portability): sprintf's return
20838         value.
20839         From Kevin Ryde.
20841 2001-08-15  Akim Demaille  <akim@epita.fr>
20843         * Makefile.maint (CVS): New.
20844         (local-check): Run changelog-check. last.
20845         (alpha): Don't depend upon local-check, since...
20846         (cvs-dist): depends upon it.
20848 2001-08-15  Tim Van Holder  <tim.van.holder@pandora.be>
20850         * tests/Makefile.am: Use a clean-local rule to remove
20851         autom4te.cache (it's a directory, not a file.
20852         * Makefile.am: Ditto (but maintainer-clean-local).
20854 2001-08-15  Akim Demaille  <akim@epita.fr>
20856         * bin/autom4te.in (@m4_warning): New.
20857         (&handle_m4): Use it.
20858         * tests/m4sugar.at (m4_warn): Pass `-f' to autom4te to ensure the
20859         warnings are issued at each run.
20860         * tests/atspecific.m4 (AT_CHECK_M4SUGAR, AT_CHECK_M4SH): M4sugar
20861         is in the src tree.
20863 2001-08-15  Akim Demaille  <akim@epita.fr>
20865         * tests/atspecific.m4 (AT_CHECK_AUTOUPDATE): Perl is now required:
20866         don't waste time running `autoupdate --version' works.
20867         * tests/tools.at (autoupdating AC_PREREQ): Likewise.
20869 2001-08-13  Akim Demaille  <akim@epita.fr>
20871         * doc/autoconf.texi (ma): Rename this index as...
20872         (ac): this.
20874 2001-08-13  Akim Demaille  <akim@epita.fr>
20876         * Makefile.am: Remove dead code and dead comments.
20877         (pdf, html): New targets.
20878         * doc/autoconf.texi (Using Autotest): New chapter.
20879         * doc/Makefile.am (pdf): New targets.
20880         (CLEANFILES): Adjust.
20882 2001-08-13  Akim Demaille  <akim@epita.fr>
20884         * lib/autotest/general.m4 (AT_INIT): Log the start/stop dates and
20885         duration of the test suite.
20887 2001-08-12  Alexandre Duret-Lutz  <duret_g@epita.fr>
20889         * tests/semantics.at (AC_C_BIGENDIAN): Explicitelly save and load
20890         endianness for comparison instead of relying on AT_CHECK_ENV.
20892 2001-08-11  Paul Eggert  <eggert@twinsun.com>
20894         * doc/autoconf.texi, doc/install.texi: Add a copyright notice
20895         to the INSTALL file.
20897 2001-08-11  Paul Eggert  <eggert@twinsun.com>
20899         * NEWS: The autoconf manual now is distributed under the terms
20900         of the GNU Free Documentation License.
20902         * doc/autoconf.texi: Switch from old style copyright notice to FDL.
20903         Add an appendix "Copying This Manual" for the FDL.
20905         * doc/fdl.texi: New file, from
20906         <http://www.gnu.org/licenses/fdl.texi>.
20908         * doc/Makefile.am (autoconf_TEXINFOS): Add fdl.texi.
20910 2001-08-10  Paul Eggert  <eggert@twinsun.com>
20912         * AUTHORS, BUGS, ChangeLog, ChangeLog.0, ChangeLog.1,
20913         ChangeLog.2, GNUmakefile, Makefile.maint, NEWS, README,
20914         README-alpha, TODO, configure.ac, lib/autoconf/Makefile.am,
20915         m4/atconfig.m4, m4/init.m4, m4/m4.m4, m4/missing.m4,
20916         m4/sanity.m4, tests/README, tests/aclocal.m4,
20917         tests/atspecific.m4, tests/base.at, tests/compile.at,
20918         tests/foreign.at, tests/m4sh.at, tests/m4sugar.at,
20919         tests/semantics.at, tests/suite.at, tests/tools.at,
20920         tests/torture.at: Add copyright notice.
20922         * tests/mktests.sh: Update year in copyright notice.
20924 2001-08-12  Alexandre Duret-Lutz  <duret_g@epita.fr>
20926         * tests/semantics.at (AC_C_BIGENDIAN): New test.
20928 2001-08-11  Alexandre Duret-Lutz  <duret_g@epita.fr>
20930         * lib/autoconf/c.m4 (AC_C_BIGENDIAN): Handle ACTION-IF-TRUE,
20931         ACTION-IF-FALSE, and ACTION-IF-UNKNOWN.
20932         * doc/autoconf.texi (C Compiler Characteristics): Update
20933         documentation for AC_C_BIGENDIAN.
20935 2001-08-11  Alexandre Duret-Lutz  <duret_g@epita.fr>
20937         * lib/autoconf/c.m4 (AC_C_BIGENDIAN): Guess endianness by grep'ing
20938         magic values from an object file when cross-compiling.
20939         Based on code by Guido Draheim <Guido.Draheim@gmx.de>.
20941 2001-08-10  Akim Demaille  <akim@epita.fr>
20943         * bin/autom4te.in (&handle_output): Don't use `grep' with side
20944         effects.
20945         Suggested by Russ Allbery.
20947 2001-08-10  Ralf Corsepius  <corsepiu@faw.uni-ulm.de>
20949         * lib/autoconf/general.m4 (_AC_OUTPUT_SUBDIRS): Propagate the
20950         current $prefix to the sub-configures.
20952 2001-08-09  Tim Van Holder  <tim.van.holder@pandora.be>
20954         * lib/autoconf/lang.m4: Ignore *.xSYM when looking for an executable
20955         extension (needed on BeOS).  Reported by Guido van Rossum.
20957 2001-08-09  Akim Demaille  <akim@epita.fr>
20959         * bin/autom4te.in ($icache): Load it only if older than autom4te.
20961 2001-08-07  Akim Demaille  <akim@epita.fr>
20963         * lib/autotest/general.m4 (AT_INIT): All the `at-*' are to be
20964         removed.
20965         (at-setup-line): Huh?  Be a variable `at_setup_line', not a file.
20966         No need to remove the files before and after the each test, before
20967         each test and at the end of the suite is enough.
20968         Display only the children `times', not the shell's.
20969         If the test failed or was skipped, at-times is not available.
20971 2001-08-07  Akim Demaille  <akim@epita.fr>
20973         Always produce testsuite.log, including when there are no
20974         failures.  This helps getting information on skipped tests, and
20975         duration of the tests.  Err, implement the latter btw.
20977         * lib/autotest/general.m4 (AT_INIT): Set up fd 6 for the log.
20978         Dump information on the first run of each test.
20979         (AT_CLEANUP): Create `at-times' containing the duration of the
20980         test group.
20982 2001-08-07  Akim Demaille  <akim@epita.fr>
20984         The use of `dumpstat' revealed that `len' was used although it
20985         should not.  m4_text_wrap was using it, but in the Autoconf world
20986         where it is legal.  Hence (i) test M4sh in its own world, not
20987         Autoconf's, and (ii), ahem, fix the bug :)
20989         * lib/autotest/general.m4: Be sure the set good quotes, as tracing
20990         does not like `' instead of [].
20991         (AT_INIT): Forbid `^_?AT_'.
20992         And don't output such tokens.
20993         * tests/Makefile.am (CLEANFILES): Add `script', `script.s4g',
20994         `script.as', and `autom4te.cache'.
20995         Remove `empty' and `macro' which are no longer used.
20996         * tests/atspecific.m4 (AT_CHECK_M4SUGAR, AT_CHECK_M4SH): New.
20997         * tests/m4sugar.at: Use it.
20998         * lib/m4sugar/m4sugar.m4: Use `m4_len' not `len'.
21000 2001-08-07  Akim Demaille  <akim@epita.fr>
21002         * bin/autoconf.in, bin/autoheader.in: --force, -f is a new option.
21004 2001-08-07  Alexandre Duret-Lutz  <duret_g@epita.fr>
21006         * bin/autom4te.in (handle_output): Typo in quadrigraph substitution.
21008 2001-08-04  Akim Demaille  <akim@epita.fr>
21010         * lib/autoconf/functions.m4 (AC_FUNC_ALLOCA, AC_FUNC_ERROR_AT_LINE)
21011         (AC_FUNC_FSEEKO, AC_FUNC_OBSTACK): Use AC_LANG_IFELSE, not
21012         AC_TRY_LINK.
21013         * lib/autoconf/headers.m4 (AC_HEADER_MAJOR): Likewise.
21014         * lib/autoconf/fortran.m4 (_AC_LANG_PROGRAM_C_F77_HOOKS)
21015         (AC_F77_MAIN): Likewise.
21017 2001-08-04  Akim Demaille  <akim@epita.fr>
21019         Don't rely on M4sugar outputting the patterns in files, since we
21020         might process the output _without_ running m4, hence without these
21021         files.
21023         * lib/m4sugar/m4sugar.m4 (m4_init): No need for `m4_tmpdir'.
21024         * bin/autom4te.in (@Request::includes): Remove, unused.
21025         (@Request::source): Rename as...
21026         (@Request::input): this.
21027         (@preselect): Add `m4_pattern_forbid' and `m4_pattern_allow'.
21028         (&handle_output): Fetch the patterns from the traces.
21029         `$forbidden' and `$allowed' are constant: use m//o.
21030         (&handle_m4): M4sugar no longer wants `m4_tmpdir'.
21031         (m4_pattern_forbid, m4_pattern_allow): Adjust for tracing only.
21033 2001-08-04  Akim Demaille  <akim@epita.fr>
21035         `autoconf && autoheader' is sped up.  Now, speed up `autoheader &&
21036         autoconf', i.e., in addition to caching traces, cache the output.
21038         * bin/autom4te.in (Request::cache): Rename as...
21039         (Request::id): this.
21040         ($cache, $icache, $tcache, $ocache): New.
21041         (&handle_m4): Save M4 output in the cache instead of $tmp.
21042         (&handle_output): Adjust.
21043         (&up_to_date_p): Check that the output cache is up to date too.
21044         (top level): Run `&handle_m4' iff force or the cache is invalid.
21045         Run `&handle_output' if the output cache is more recent.
21047 2001-08-04  Akim Demaille  <akim@epita.fr>
21049         * bin/autom4te.in ($force): New.
21050         (&parse_args, &print_usage): -f, --force is a new option.
21051         (&handle_output): CPP directives might have spaces after `#'.
21052         (&parse_args): The first file only can be frozen.
21054 2001-08-04  Akim Demaille  <akim@epita.fr>
21056         Don't let autom4te compute the `include' traces several times:
21057         first check that the trace cache file is up to date, and then
21058         compare its timestamp with that of the output.
21060         * bin/autom4te.in, bin/autoupdate.in, bin/autoscan.in: Normalize
21061         the preamble.  Don't require 5.005 as Autom4te::General does it,
21062         and better yet (use `use', not `require'!).
21063         * lib/Autom4te/Struct.pm: Rename the last occurrences of
21064         Class::Struct as Autom4te::Struct.
21065         * lib/Autom4te/General.pm (File::stat): Use it.
21066         (&mtime): New, export it.
21067         * bin/autom4te.in: Use it.
21068         Declare `$req' is invalid if it is outdated.
21069         Don't declare it valid before saving it if something went wrong.
21071 2001-08-04  Akim Demaille  <akim@epita.fr>
21073         Autom4te shall not encode Autoconf data, and preselecting traces
21074         must be proposed to the users.
21076         * bin/autom4te.in (@required_trace): Remove.
21077         (@preselect): New.
21078         (&parse_args, &print_usage): -p, --preselect is a new option.
21079         (&up_to_date_p): Adjust.
21080         * bin/autoconf.in: Preselect some Autoconf macros.
21082 2001-08-04  Akim Demaille  <akim@epita.fr>
21084         * tests/tools.at (autoconf --trace: user macros): Check traces on
21085         macros invoked without arguments, and macros invoked with multiple
21086         lines arguments.
21088 2001-08-03  Alexandre Duret-Lutz  <duret_g@epita.fr>
21090         * bin/autom4te.in (handle_traces): Fix rewriting of traces without
21091         arguments.
21093 2001-08-03  Akim Demaille  <akim@epita.fr>
21095         * bin/autoconf.in ($@): Work around the usual sh bug.
21096         From Nicolas Joly.
21098 2001-08-03  Akim Demaille  <akim@epita.fr>
21100         Clean up the handling of the M4 builtins tracing exception.
21102         * bin/autom4te.in (Request::request): Don't complete M4 builtins
21103         trace requests.
21104         (@m4_builtins): Rename as...
21105         (@m4_builtin): this.
21106         (%m4_builtin_alternate_name): New.
21107         (&parse_args): Complete the trace requests with alternate names.
21108         (&handle_traces): Hence no longer do it here.
21109         (&trace_requests): Remove, unused.
21111 2001-08-03  Akim Demaille  <akim@epita.fr>
21113         * doc/autoconf.texi (Redefined M4 Macros): Document m4_exit,
21114         m4_if, and m4_wrap.
21116 2001-08-03  Akim Demaille  <akim@epita.fr>
21118         * lib/m4sugar/m4sugar.m4 (m4_init): Also forbid `_m4_*' tokens.
21119         (m4_divert_pop): Dump the whole diversion stack when a diversion
21120         mismatch happens.
21121         * bin/autom4te.in (&handle_output): Remember of the first
21122         occurrence of a possibly undefined macro, not the last.
21123         Complain about the possibly undefined macros in the same order as
21124         the appear in the output.
21125         * lib/autoconf/Makefile.am (autoconf.m4f): List its dependencies.
21126         * tests/tools.at (autoconf: forbidden tokens, basic)
21127         (autoconf: forbidden tokens, exceptions): No longer sort
21128         autoconf's stderr, as it is now deterministic.
21129         Check that `dnl' is caught.
21131 2001-08-01  Akim Demaille  <akim@epita.fr>
21133         * configure.ac: Bump to 2.52c.
21135 2001-08-01  Akim Demaille  <akim@epita.fr>
21137         Version 2.52b.
21139         * lib/Autom4te/Makefile.am (perllibdir): s/Autoconf/Autom4te/.
21141 2001-08-01  Akim Demaille  <akim@epita.fr>
21143         Version 2.52a.
21145 2001-08-01  Akim Demaille  <akim@epita.fr>
21147         * lib/Autom4te/General.pm: Use `carp' and `croak', not `warn' and
21148         `die'.
21149         (&END): New.
21150         * bin/autoconf.in, bin/autom4te.in, bin/autoupdate.in: Remove your
21151         `END', as `Autom4te::General::END' will be triggered.
21152         * bin/autoupdate.in, bin/autoscan.in: Improve error messages accuracy.
21153         * bin/autoupdate.in (File::Compare, File::Copy): Use them instead of
21154         system to run `mv', `rm', and `cmp'.
21156 2001-08-01  Akim Demaille  <akim@epita.fr>
21158         * lib/Autom4te/General.pm (&unique): New.
21159         * bin/autoscan.in (&output): Use it to issue trace requests once.
21161 2001-08-01  Akim Demaille  <akim@epita.fr>
21163         * lib/Autom4te/General.pm: New.
21164         * bin/autom4te.in (Autom4te::General): Use it.
21165         ($me, $tmp, $verbose, $debug, &mktmpdir, &verbose, &xsystem)
21166         (&find_configure_ac, &find_slave): Remove.
21167         * bin/autoscan.in: Likewise.
21168         * bin/autoupdate.in: Likewise.
21170 2001-08-01  Akim Demaille  <akim@epita.fr>
21172         * autoconf.in, autom4te.in, autoscan.in, ifnames.in,
21173         * autoheader.in, autoreconf.in, autoupdate.in: Move to...
21174         * bin: here, new directory.
21175         * lib/Autoconf: Rename as...
21176         * lib/Autom4te: this, to please case insensitive junkie OSes.
21178 2001-08-01  Akim Demaille  <akim@epita.fr>
21180         * autom4te.in ($m4): Handle the --nesting-limit.
21181         * autoconf.in (M4): Remove.
21183 2001-08-01  Akim Demaille  <akim@epita.fr>
21185         * autoconf.in ($AWK): Remove, no longer used.
21186         * test/tools.at: Use AT_CHECK_AUTOCONF.
21187         (AWK portability): Remove, for autoconf no longer uses AWK.
21188         (Syntax of the Perl scripts): New.
21189         * configure.ac: autoconf no longer needs an AWK with a good
21190         regexp engine.
21191         Use a static test on AC_PACKAGE_VERSION.
21192         * autom4te.in (&up_to_date_p): Output depends on the arguments.
21193         * lib/autoconf/Makefile.am: Ship version.m4, maintainer file.
21194         * tests/atconfig.in (PERL): New.
21196 2001-08-01  Akim Demaille  <akim@epita.fr>
21198         * lib/autoconf/lang.m4 (AC_LANG(C), AC_LANG_C, _AC_LANG_ABBREV(C))
21199         (AC_LANG(C++), AC_LANG_CPLUSPLUS, _AC_LANG_ABBREV(C++))
21200         (AC_LANG_SOURCE(C), AC_LANG_PROGRAM(C), AC_LANG_CALL(C))
21201         (AC_LANG_FUNC_LINK_TRY(C), AC_LANG_BOOL_COMPILE_TRY(C))
21202         (AC_LANG_INT_SAVE(C), _AC_ARG_VAR_CPPFLAGS, _AC_ARG_VAR_LDFLAGS)
21203         (AC_LANG_PREPROC(C), _AC_PROG_PREPROC_WORKS_IFELSE, AC_PROG_CPP)
21204         (AC_LANG_COMPILER(C), ac_cv_prog_gcc, AC_PROG_CC, _AC_PROG_CC_G)
21205         (AC_PROG_GCC_TRADITIONAL, AC_PROG_CC_C_O, AC_LANG_PREPROC(C++))
21206         (AC_PROG_CXXCPP, AC_LANG_COMPILER(C++), ac_cv_prog_gxx)
21207         (AC_PROG_CXX, _AC_PROG_CXX_G, _AC_PROG_CXX_EXIT_DECLARATION)
21208         (AC_PROG_CC_STDC, AC_C_CROSS, AC_C_CHAR_UNSIGNED, AC_C_LONG_DOUBLE)
21209         (AC_C_BIGENDIAN, AC_C_INLINE, AC_C_CONST, AC_C_VOLATILE)
21210         (AC_C_STRINGIZE, AC_C_PROTOTYPES): Move to...
21211         * lib/autoconf/c.m4: here, new file.
21213         * lib/autoconf/lang.m4 (AC_LANG(Fortran 77), AC_LANG_FORTRAN77)
21214         (_AC_LANG_ABBREV(Fortran 77), AC_LANG_SOURCE(Fortran 77))
21215         (AC_LANG_PROGRAM(Fortran 77), AC_LANG_CALL(Fortran 77))
21216         (AC_LANG_PREPROC(Fortran 77), AC_LANG_COMPILER(Fortran 77))
21217         (ac_cv_prog_g77, AC_PROG_F77, _AC_PROG_F77_G, AC_PROG_F77_C_O)
21218         (_AC_PROG_F77_V_OUTPUT, _AC_PROG_F77_V, AC_F77_LIBRARY_LDFLAGS)
21219         (AC_F77_DUMMY_MAIN, _AC_LANG_PROGRAM_C_F77_HOOKS, AC_F77_MAIN)
21220         (_AC_F77_NAME_MANGLING, AC_F77_NAME_MANGLING, AC_F77_WRAPPERS)
21221         (AC_F77_FUNC): Move to...
21222         * lib/autoconf/fortran.m4: here, new file.
21224 2001-08-01  Akim Demaille  <akim@epita.fr>
21226         * acfunctions.m4: Rename as...
21227         * lib/autoconf/functions.m4: this.
21228         * acgeneral.m4: Rename as...
21229         * lib/autoconf/general.m4: this.
21230         * acheaders.m4: Rename as...
21231         * lib/autoconf/headers.m4: this.
21232         * aclang.m4: Rename as...
21233         * lib/autoconf/lang.m4: this.
21234         * acoldnames.m4: Rename as...
21235         * lib/autoconf/oldnames.m4: this.
21236         * acspecific.m4: Rename as...
21237         * lib/autoconf/specific.m4: this.
21238         * actypes.m4: Rename as...
21239         * lib/autoconf/types.m4: this.
21240         * autoconf.m4: Rename as...
21241         * lib/autoconf/autoconf.m4: this.
21243         * m4sugar.m4: Rename as...
21244         * lib/m4sugar/m4sugar.m4: this.
21245         * m4sh.m4: Rename as...
21246         * lib/m4sugar/m4sh.m4: this.
21248         * tests/atgeneral.m4: Rename as...
21249         * lib/autotest/general.m4: this.
21251         * acfunctions: Rename as...
21252         * lib/autoscan/functions: this.
21253         * acheaders: Rename as...
21254         * lib/autoscan/headers: this.
21255         * acidentifiers: Rename as...
21256         * lib/autoscan/identifiers: this.
21257         * aclibraries: Rename as...
21258         * lib/autoscan/libraries: this.
21259         * acmakevars: Rename as...
21260         * lib/autoscan/makevars: this.
21261         * acprograms: Rename as...
21262         * lib/autoscan/programs: this.
21264 2001-08-01  Akim Demaille  <akim@epita.fr>
21266         * doc/autoconf.texi: Moving/deleting open files is not portable.
21267         Portability issues for `.' (source), and more information about sed.
21269 2001-07-25  Steven G. Johnson  <stevenj@alum.mit.edu>
21271         * aclang.m4 (AC_F77_LIBRARY_LDFLAGS): Ignore -libmil (on Solaris),
21272         which has a special meaning and is not a reference to libibmil.a.
21273         Reported by Matteo Frigo.
21275 2001-07-25  Pavel Roskin  <proski@gnu.org>
21277         * autom4te.in (mktmpdir): Strip trailing newline from mktemp
21278         output.
21280 2001-07-25  Akim Demaille  <akim@epita.fr>
21282         * autoconf.in: Try to define the variables before using them.
21283         * autom4te.in ($perllibdir): Use `$autom4te_perllibdir' as envvar
21284         instead of `$perllibdir'.
21285         * tests/atconfig.in ($autom4te_perllibdir): Export it.
21287 2001-07-25  Akim Demaille  <akim@epita.fr>
21289         * autoconf.in (ac_LF_and_DOT): Remove, unused.
21291 2001-07-24  Akim Demaille  <akim@epita.fr>
21293         Let autoconf use autom4te for traces.
21295         * autoconf.in ($task, task trace): Remove, merely pass --trace to
21296         autom4te.
21297         * autoheader.in: Don't pass `-' to autoconf, rather, a tmp file.
21298         (Because I found no way for autom4te to accept `-').
21299         * autom4te.in (&Request::request): Beware of M4 builtins.
21300         (END): Don't try to remove the content of an empty dir.
21301         (&parse_args): Default is `$f:$l:$n:$%', not `$f:$l:$n:$*'.
21302         (&handle_output): Set a default value to `$forbidden'.
21303         * autoupdate.in (&verbose, &xsystem): New, from autom4te.in.
21304         ($autoconf): Pass --debug and --verbose.
21305         * tests/atspecific.m4 (AT_CHECK_AUTOCONF): Clean up autom4te's
21306         cache.
21308 2001-07-24  Akim Demaille  <akim@epita.fr>
21310         Let autoconf use autom4te to create configure.
21312         * autoconf.in ($automate): New var.
21313         (task script): Use autom4te.
21314         * autom4te.in (File::Spec): Use it.
21315         (&find_file): New.
21316         (&parse_args): --warning is -W, not -w.
21317         Find the top level files.
21318         (&handle_m4): Pass the warnings flags.
21319         Don't report verbosely m4's failures, unless requested.
21320         (&handle_output): Don't complain for forbidden tokens in comments.
21321         Be sure to report all the forbidden tokens within a single line.
21322         (&trace_format_to_m4): Preserve `$_'.
21323         (&handle_traces): Sort the output macros.
21324         (&up_to_date_p): Find the files before trying to get its time stamp.
21326 2001-07-24  Akim Demaille  <akim@epita.fr>
21328         * Makefile.am: Ship, build and install Autom4te.
21329         (SUBDIRS): Add lib.
21330         * lib/Autoconf/Struct.pm: New, from Automake 1.5.
21331         * configure.in: Require Perl.
21332         * man/autom4te.in: New.
21334 2001-07-19  Paul Eggert  <eggert@twinsun.com>
21336         * doc/autoconf.texi (Cache Checkpointing): Use AC_MSG_ERROR in
21337         example, rather than (exit 1); exit (which isn't portable).
21339 2001-07-18  Akim Demaille  <akim@epita.fr>
21341         Version 2.52.
21343 2001-07-18  Akim Demaille  <akim@epita.fr>
21345         The C-Fortran 77 hooks are available only once AC_F77_DUMMY_MAIN
21346         was run, while they are needed also when it is expanded.
21347         Reported by Nicolas Joly.
21349         * aclang.m4 (AC_F77_DUMMY_MAIN): Define _AC_LANG_PROGRAM_C_F77_HOOKS.
21350         (AC_LANG_PROGRAM(C)): Use it instead of depending upon
21351         AC_F77_DUMMY_MAIN being expanded.
21353 2001-07-18  Akim Demaille  <akim@epita.fr>
21355         * configure.in: Bump to 2.51a.
21357 2001-07-17  Akim Demaille  <akim@epita.fr>
21359         Version 2.51.
21361 2001-07-17  Akim Demaille  <akim@epita.fr>
21363         * aclang.m4 (AC_F77_DUMMY_MAIN): Let the interface be more
21364         Autoconfy: $1 = action-if-found, $2 = action-if-not-found.
21366 2001-07-17  Akim Demaille  <akim@epita.fr>
21368         The runtime test for AC_FUNC_GETPGRP fails when prototypes are
21369         used.  Well, then use the prototypes when you can, and runtime as
21370         a last resort.
21371         Reported by Artur Frysiak
21373         * acfunctions.m4 (_AC_FUNC_GETPGRP_TEST): New.
21374         (AC_FUNC_GETPGRP): Use it.
21375         First try to compile with 0-ary or 1-ary calls.
21377 2001-07-17  Akim Demaille  <akim@epita.fr>
21379         * actypes.m4 (_AC_CHECK_TYPE_REPLACEMENT_TYPE_P): `foo_t' is a
21380         replacement type.
21381         From Paul Eggert.
21383 2001-07-17  Akim Demaille  <akim@epita.fr>
21385         * Makefile.maint: Sync. with cppi 1.10.
21387 2001-07-17  Akim Demaille  <akim@epita.fr>
21389         * aclang.m4 (AC_LANG_PROGRAM(C)): Output F77_DUMMY_MAIN only when
21390         AC_F77_DUMMY_MAIN has been run.
21391         From Pavel Roskin and Steven G. Johnson.
21393 2001-07-17  Akim Demaille  <akim@epita.fr>
21395         * configure.in: Rename as...
21396         * configure.ac: this.
21398 2001-07-17  Akim Demaille  <akim@epita.fr>
21400         * Makefile.am (INSTALL.txt): Don't use $@ and $< in non suffix
21401         rules.
21402         From Marc Espie.
21403         * Makefile.maint (release-archive-dir): Rename as...
21404         (release_archive_dir): this, so that it can be specialized in
21405         Makefile.
21407 2001-07-14  Akim Demaille  <akim@epita.fr>
21409         * configure.in: Bump to 2.50d.
21411 2001-07-14  Akim Demaille  <akim@epita.fr>
21413         Version 2.50c.
21414         * Makefile.maint (alpha): Typo.
21416 2001-07-14  Akim Demaille  <akim@epita.fr>
21418         * doc/autoconf.texi (Limitations of Make): Macro names and underscore.
21420 2001-07-14  Akim Demaille  <akim@epita.fr>
21422         * config/config.guess, config/config.sub, config/texinfo.tex
21423         * doc/standards.texi, doc/make-stds.texi: Update.
21425 2001-07-14  Akim Demaille  <akim@epita.fr>
21427         * Makefile.maint (cvs-check, cvs-tag-check, cvs-diff-check): New.
21429 2001-07-14  Akim Demaille  <akim@epita.fr>
21431         * Makefile.maint (maintainer-check): Rename as...
21432         (maintainer-distcheck): this.
21433         (changelog-check, static-check): New.
21434         Use them.
21436 2001-07-14  Kevin Ryde  <user42@zip.com.au>
21438         * doc/autoconf.texi (C++ Compilers Characteristics): Last resort
21439         for CXX is g++, not gcc.
21441 2001-07-14  Akim Demaille  <akim@epita.fr>
21443         * doc/autoconf.texi (Files): New subsection.
21445 2001-07-14  Akim Demaille  <akim@epita.fr>
21447         * doc/autoconf.texi (C Compiler, Fortran 77 Compiler): Be subsections
21448         of...
21449         (Generic Compiler Characteristics): this.
21450         (C++ Compiler): New subsection.
21452 2001-07-14  Akim Demaille  <akim@epita.fr>
21454         * autoscan.in: Use IO::File.
21455         Adjust all the routines to use it.
21456         ($log): New file (autoscan.log).
21457         (output): Dump detailed logs into $log, and a shortened version to
21458         stderr.
21459         (&scan_makefile): Refine the regexp catching tokens in the code.
21460         * doc/autoconf.texi (autoscan Invocation): Document `autoscan.log'
21461         and the `configure.ac' checking feature.
21463 2001-07-12  Akim Demaille  <akim@epita.fr>
21465         For some AWK, such as on HPUX 11, `xfoo' does not match `foo|^bar'.
21466         Reported by Michael Elizabeth Chastain.
21468         * autoconf.in: Refuse such AWK.
21469         * configure.in: Likewise.
21470         * Makefile.am (acversion.m4): Do not use move-if-change this file
21471         has dependencies.
21472         * doc/autoconf.texi (Fortran 77 Compiler): Some typos.
21474 2001-07-10  Jens Petersen  <petersen@redhat.com>
21476         * autoscan.in (&scan_makefile): Improve programs regexp to parse
21477         things like "g++", "file.c" and "some-conf" as tokens.
21478         (&scan_file): Match C++ files extensions.
21479         If the filename extension is C++ then ask for c++.
21481 2001-07-05  Steven G. Johnson  <stevenj@alum.mit.edu>
21483         * aclang.m4 (AC_F77_DUMMY_MAIN): Use AC_TRY_LINK, not
21484         AC_TRY_LINK_FUNC, to check whether defining a dummy
21485         main-like routine is needed for linking with F77 libs.
21487 2001-07-05  Pavel Roskin  <proski@gnu.org>
21489         * aclocal.m4 (_AC_PROG_CXX_EXIT_DECLARATION): Remove conftest*
21490         after using break.
21491         (_AC_PROG_F77_V_OUTPUT): Remove conftest*, not conftest.* after
21492         linking.
21494 2001-07-05  Akim Demaille  <akim@epita.fr>
21496         * Makefile.am (move_if_change): New.  Use it instead of `mv'.
21497         (acversion.m4): Name it `$(srcdir)/acversion.m4' to ease broken
21498         Makes' lives.
21499         Reported by Nicolas Joly.
21501 2001-07-04  Akim Demaille  <akim@epita.fr>
21503         * acgeneral.m4 (_AC_RUN_IFELSE): Remove conftest.o when cleaning
21504         up.
21505         * acfunctions.m4 (AC_FUNC_WAIT3): Use `break' to silent some
21506         warnings from compilers.
21507         * aclang.m4 (_AC_LANG_COMPILER_GNU): Log the version information
21508         for all the compilers, not only GNU.  Hence move from here...
21509         (AC_PROG_CC, AC_PROG_CXX, AC_PROG_F77): to here.
21511 2001-07-04  Akim Demaille  <akim@epita.fr>
21513         * acfunctions.m4 (AC_FUNC_STRTOD, AC_FUNC_STRERROR_R)
21514         (AC_FUNC_STRCOLL, AC_FUNC_WAIT3): Use AC_RUN_IFELSE and
21515         AC_COMPILE_IFELSE.
21517 2001-07-04  Akim Demaille  <akim@epita.fr>
21519         * acgeneral.m4 (_AC_INCLUDES_DEFAULT_REQUIREMENTS): Actually apply
21520         the ``strings.h'' change claimed below.
21522 2001-07-04  Akim Demaille  <akim@epita.fr>
21524         * aclang.m4 (_AC_LANG_COMPILER_GNU): s/-dumpspecs/-v/.
21526 2001-07-04  Akim Demaille  <akim@epita.fr>
21528         * acgeneral.m4 (_AC_INCLUDES_DEFAULT_REQUIREMENTS): Include
21529         strings.h if usable with string.h.
21530         Suggested by Paul Eggert.
21532 2001-07-04  Akim Demaille  <akim@epita.fr>
21534         * autoscan.in (&scan_file): Skip FILE if there is FILE.in.
21535         From Jens Petersen.
21537 2001-07-03  Akim Demaille  <akim@epita.fr>
21539         * acgeneral.m4 (_AC_OUTPUT_CONFIG_STATUS): Specify CONFIG_FILES
21540         etc. in the log.
21542 2001-07-03  Akim Demaille  <akim@epita.fr>
21544         * acheaders.m4 (AC_CHECK_HEADER): When INCLUDES are set, use the
21545         compiler, not the preprocessor.
21546         * acgeneral.m4 (_AC_INCLUDES_DEFAULT_REQUIREMENTS): No longer use
21547         dedicated code to check for inttypes.h, as AC_CHECK_HEADERS does
21548         the right thing.
21549         * Makefile.am (.m4.m4f): Emphasize M4 error messages and fail
21550         earlier if there are.
21552 2001-07-03  Akim Demaille  <akim@epita.fr>
21554         * autoscan.in ($initfile): Remove.
21555         (&find_file): Rename as...
21556         (&scan_file): this.
21557         Immediately scan the current file, instead of gathering them, and
21558         later having them handled by &scan_files.
21559         (&scan_files): Merely invoke Find::File.
21560         Adjust.
21562 2001-07-02  Akim Demaille  <akim@epita.fr>
21564         * autoscan.in: Formatting changes, matching the invocation order.
21565         (File::Find): Use it instead of Perl 4's `find.pl'.
21566         (&wanted): Rename as...
21567         (&find_file): this.
21569 2001-07-01  Pavel Roskin  <proski@gnu.org>
21571         * aclang.m4 (AC_F77_DUMMY_MAIN): Remove conftest* after using
21572         break in the argument to AC_TRY_LINK_FUNC.
21573         (AC_F77_MAIN): Remove conftest* after using break in the
21574         argument to AC_TRY_LINK.
21576 2001-07-01  Steven G. Johnson  <stevenj@alum.mit.edu>
21578         Add alternate 'main' routine detection for linking C/C++ with Fortran,
21579         fixing link failures for e.g. AC_F77_WRAPPERS on NetBSD.
21581         * aclang.m4 (AC_F77_DUMMY_MAIN): New macro to detect whether a
21582         dummy alternate main is required even if the user provides her own
21583         'main'.
21584         (AC_F77_MAIN): New macro to detect whether it is possible to
21585         provide an alternate 'main' function name, using the 'main' from
21586         the Fortran libraries.
21587         (AC_LANG_PROGRAM(C)): Use F77_DUMMY_MAIN, if it is defined, so that
21588         cross-language link tests can be performed successfully.
21589         (_AC_F77_NAME_MANGLING): Require AC_F77_DUMMY_MAIN.  Also put $FLIBS
21590         after $LIBS, for consistency; this should be the general rule since
21591         the user may want to link to Fortran libraries that require $FLIBS.
21592         * doc/autoconf.texi: Document AC_F77_DUMMY_MAIN and AC_F77_MAIN.
21594 2001-06-29  Pavel Roskin  <proski@gnu.org>
21596         * atgeneral.m4 (AT_CHECK): Add a newline to the end of
21597         at-stdout and at-stderr instead of removing the newline
21598         from the echo output, which is not guaranteed to work.
21600 2001-06-28  Jens Petersen  <petersen@redhat.com>
21602         * aclang.m4 (_AC_PROG_CXX_EXIT_DECLARATION): Only add declaration to
21603         confdefs.h when non-zero.
21605 2001-06-28  Akim Demaille  <akim@epita.fr>
21607         * configure.in: Bump to 2.50c.
21609 2001-06-26  Akim Demaille  <akim@epita.fr>
21611         Version 2.50b.
21613 2001-06-26  Akim Demaille  <akim@epita.fr>
21615         Version 2.50a.
21617 2001-06-25  Pavel Roskin  <proski@gnu.org>
21619         * tests/atspecific.m4 (AT_CHECK_MACRO): Accept one more
21620         argument, AUTOCONF-FLAGS.
21621         * tests/mktests.sh (update_exclude_list): Add
21622         AC_SYS_RESTARTABLE_SYSCALLS and AC_FUNC_WAIT3.
21623         * tests/semantics.at: Test AC_SYS_RESTARTABLE_SYSCALLS and
21624         AC_FUNC_WAIT3 with "-W no-obsolete".
21626 2001-06-25  Akim Demaille  <akim@epita.fr>
21628         * tests/foreign.at (libtool): Fix the `libtoolize --version' decoding.
21630 2001-06-25  Akim Demaille  <akim@epita.fr>
21632         * autoscan.in (%macro): Now maps from word to list of macros.
21633         (&init_tables): Die when a word which is already handled by
21634         explicit macros is mapped to the default macro.
21635         (&print_unique): Remove, inlined in...
21636         (&output_kind): here.
21637         (File::Basename): Use it.
21638         (&output): Sort the CONFIG_FILES.
21639         * acheaders: Normalize.
21640         * acfunctions: Likewise.
21642 2001-06-25  Akim Demaille  <akim@epita.fr>
21644         * aclang.m4 (_AC_LANG_COMPILER_GNU): If GNU, dump the compiler
21645         characteristics in the logs.
21646         Suggested by Mo DeJong.
21648 2001-06-24  Akim Demaille  <akim@epita.fr>
21650         * acfunctions.m4 (AM_FUNC_ERROR_AT_LINE, AM_FUNC_FNMATCH)
21651         (AM_FUNC_MKTIME, AM_FUNC_OBSTACK, AM_FUNC_STRTOD): Reactivated.
21652         * doc/autoconf.texi (Autoconf 2.13): New section.
21654 2001-06-24  Akim Demaille  <akim@epita.fr>
21656         * autoconf.in (Task traces): Separate the error messages from the
21657         traces to improve robustness.
21659 2001-06-23  Akim Demaille  <akim@epita.fr>
21661         * tests/torture.at (AC_ARG_VAR): Make it a single test instead of
21662         three as failures are unlikely, and speed matters.
21664 2001-06-23  Akim Demaille  <akim@epita.fr>
21666         * doc/autoconf.texi (Redefined M4 Macros): New.
21668 2001-06-23  Akim Demaille  <akim@epita.fr>
21670         * acgeneral.m4 (_AC_INCLUDES_DEFAULT_REQUIREMENTS): Consider
21671         inttypes.h is missing if it conflicts with sys/types.h, as on IRIX
21672         5.3.
21674 2001-06-23  Paolo Bonzini  <bonzini@gnu.org>
21676         * acgeneral.m4 (_AC_OUTPUT_CONFIG_STATUS): Defer parsing of
21677         config.status targets to after the evaluation of the INIT-CMDS.
21678         Double quote config.status targets (used to be single quoted).
21680 2001-06-23  Akim Demaille  <akim@epita.fr>
21682         * tests/torture.at (CONFIG_FILES, HEADERS, LINKS and COMMANDS):
21683         Check the content of the created file.
21684         Check the ./config.status command line invocation.
21686 2001-06-23  Akim Demaille  <akim@epita.fr>
21688         * tests/foreign.at (Libtool): Reject prehistoric versions.
21690 2001-06-23  Akim Demaille  <akim@epita.fr>
21692         * aclang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Try to be robust to
21693         preexisting files matching a.*.
21695 2001-06-23  Akim Demaille  <akim@epita.fr>
21697         * acgeneral.m4 (_AC_ARG_VAR_VALIDATE): Output error messages on
21698         stderr.
21699         * doc/autoconf.texi (AC_ARG_VAR): Update.
21701 2001-06-21  Akim Demaille  <akim@epita.fr>
21703         * acgeneral.m4 (_AC_ARG_VAR_VALIDATE): Die instead of warning when
21704         precious variables have changed.
21705         * tests/torture.at (AC_ARG_VAR): Adjust.
21707 2001-06-21  Akim Demaille  <akim@epita.fr>
21709         ./configure --program-suffix=foo produces `transform=s,$$,foo,;',
21710         but some sed choke on multiple `;', and other tools (e.g.,
21711         Automake), include the separator themselves.
21713         * acgeneral.m4 (AC_ARG_VAR): Be sure not to leave extra `;'.
21715 2001-06-19  Tim Van Holder  <tim.van.holder@pandora.be>
21717         * doc/autoconf.texi (Functions Portability): Rename as...
21718         (Function Portability): this.
21719         (Function Portability): Document potential problems with unlink().
21721 2001-06-19  Paul Eggert  <eggert@twinsun.com>
21723         * NEWS, doc/autoconf.texi: Document quadrigraphs.
21725 2001-06-18  Akim Demaille  <akim@epita.fr>
21727         * acfunctions.m4 (AC_FUNC_FORK): Fix typos.
21729 2001-06-18  Ruediger Kuhlmann  <info@ruediger-kuhlmann.de>
21731         * acfunctions.m4: (AC_FUNC_VFORK) rename as...
21732         (_AC_FUNC_VFORK): this.
21733         Remove AC_DEFINEs and don't guess cross-compilation values.
21734         (_AC_FUNC_FORK): New, check whether fork() isn't just a stub.
21735         (AC_FUNC_FORK): New, use _AC_FUNC_VFORK and _AC_FUNC_FORK to
21736         define HAVE_WORKING_FORK, HAVE_WORKING_VFORK; and vfork to fork if
21737         vfork doesn't work.
21738         Guess values if cross-compiling, but warn.
21739         * acfunctions: Add AC_FUNC_FORK.
21740         * doc/autoconf.texi: Document AC_FUNC_FORK. Give example to define
21741         and vfork appropriately.
21743 2001-06-18  Akim Demaille  <akim@epita.fr>
21745         * doc/autoconf.texi (Functions Portability): New section.
21747 2001-06-18  Akim Demaille  <akim@epita.fr>
21749         * autoconf.in (M4): Pass --nesting-limit=1024, unless already set
21750         in $M4.
21751         Suggested by Andreas Schwab.
21753 2001-06-18  Akim Demaille  <akim@epita.fr>
21755         * acfunctions.m4 (AC_FUNC_CHOWN, AC_FUNC_CLOSEDIR_VOID)
21756         (AC_FUNC_GETPGRP, AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK)
21757         (AC_FUNC_MMAP, AC_FUNC_SELECT_ARGTYPES, _AC_FUNC_STAT)
21758         (AC_FUNC_UTIME_NULL): Use AC_INCLUDES_DEFAULT.
21759         Don't use AC_TRY_RUN, which double quotes, prefer AC_RUN_IFELSE,
21760         and either AC_LANG_SOURCE or AC_LANG_PROGRAM.
21761         (AC_FUNC_CLOSEDIR_VOID): Protect C++ from `int closedir ();' (or
21762         the converse).
21764 2001-06-18  Akim Demaille  <akim@epita.fr>
21766         * doc/autoconf.texi (ms): New index.
21767         (Macro Index): Rename as...
21768         (Autoconf Macro Index): this.
21769         (M4 Macro Index): New appendix.
21770         (Programming in M4): New chapter.
21771         Define M4sugar, M4sh, m4_pattern_forbid, and m4_pattern_allow.
21772         (Quoting): Rename as...
21773         (M$ Quotation): this.
21774         Be part of `Programming in M4).
21776 2001-06-18  Nicolas Joly  <njoly@pasteur.fr>
21778         * tests/torture.at (AC_ARG_VAR): Set variables and export them
21779         in separate statements for compatibility with Tru64 v5.1.
21781 2001-06-17  Akim Demaille  <akim@epita.fr>
21783         * acgeneral.m4 (_AC_ARG_VAR_VALIDATE): Be sure to cache the
21784         current values of the precious variables, not the previously
21785         cached values.
21786         Pass precious variables which are set to config.status.
21787         * doc/autoconf.texi (Setting Output Variables): Document AC_ARG_VAR.
21788         * tests/torture.at (AC_ARG_VAR): New.
21790 2001-06-15  Paul Eggert  <eggert@twinsun.com>
21792         * doc/autoconf.texi: Move AC_FUNC_WAIT3 and
21793         AC_SYS_RESTARTABLE_SYSCALLS to the obsolete section,
21794         and explain why and how to replace them.
21795         * acfunctions.m4 (AC_FUNC_WAIT3): Warn as obsolete.
21796         * acspecific.m4 (AC_SYS_RESTARTABLE_SYSCALLS): Likewise.
21798 2001-06-15  Akim Demaille  <akim@epita.fr>
21800         `build_alias', `host_alias', and `target_alias' are not AC_SUBST'd.
21801         Reported by Bruno Haible.
21803         * acgeneral.m4 (AC_ARG_VAR): Move the AC_SUBST, from here...
21804          (_AC_ARG_VAR_PRECIOUS): to here.
21806 2001-06-15  Pavel Roskin  <proski@gnu.org>
21808         * acheaders.m4 (_AC_CHECK_HEADER_DIRENT): Instead of defining
21809         an unused pointer use cast to this type and `if' statement to
21810         avoid warnings from the compiler.
21811         (AC_HEADER_TIME): Likewise.
21812         * actypes.m4 (AC_CHECK_MEMBER): s/foo/ac_aggr/. Use the member
21813         in `if' statement to avoid warnings from the compiler. Declare
21814         ac_aggr static to avoid the need to initialize it.
21816 2001-06-14  Akim Demaille  <akim@epita.fr>
21818         * doc/autoconf.texi (Portable Shell): Move to follow `Writing
21819         Macros'.
21821 2001-06-13  Akim Demaille  <akim@epita.fr>
21823         * m4/missing.m4, config/missing: Updated to Automake 1.4g's.
21824         Suggested by Alexander Mai.
21826 2001-06-13  Akim Demaille  <akim@epita.fr>
21828         * acgeneral.m4 (_AC_INCLUDES_DEFAULT_REQUIREMENTS): Guard
21829         sys/types.h and sys/stat.h, and check for them.
21831 2001-06-13  Akim Demaille  <akim@epita.fr>
21833         * acheaders.m4 (AC_CHECK_HEADER, AC_CHECK_HEADERS): Support $4 =
21834         INCLUDES.
21836 2001-06-12  Maciej W. Rozycki  <macro@ds2.pg.gda.pl>
21838         * acspecific.m4 (AC_PATH_XTRA): Check if linking against libX11
21839         succeeds and only try adding libdnet upon a failure.
21841 2001-06-12  Akim Demaille  <akim@epita.fr>
21843         * autoscan.in (&output_kind): Output the comment only if it exists.
21844         (%kind_comment): Add entry for `programs'.
21845         (&output_programs): Use &output_kind.
21846         (&output_functions, &output_identifiers, &output_headers)
21847         (&output_programs): Inline, and remove.
21849 2001-06-12  Akim Demaille  <akim@epita.fr>
21851         * autoscan.in (%kind_comment): New.
21852         (output_kind): New.
21853         (output_functions, output_identifiers, output_headers): Use it.
21855 2001-06-12  Akim Demaille  <akim@epita.fr>
21857         * autoscan.in (&print_unique): Take `$kind' and `$word' as
21858         arguments, to factor indirections into `%macro' and `%used'.
21859         (%generic_macro): Fix a typo.
21861 2001-06-12  Akim Demaille  <akim@epita.fr>
21863         * aclibraries: New.
21864         * autoscan.in (@kinds): Add `libraries'.
21865         Use `@kinds' instead of hard coded lists.
21866         (%programs, %headers, %identifiers, %makevars, %libraries, %functions):
21867         Remove, replaced by...
21868         (%used): this.
21870 2001-06-12  Akim Demaille  <akim@epita.fr>
21872         * autoscan.in (%functions_macros %headers_macros)
21873         (%identifiers_macros %programs_macros %makevars_macros): Remove,
21874         replaced by...
21875         (%macro): New.
21877 2001-06-11  Raja R Harinath  <harinath@cs.umn.edu>
21879         * aclang.m4 (AC_NO_EXECUTABLES): Override
21880         _AC_COMPILER_EXEEXT_WORKS, not _AC_LANG_COMPILER_WORKS.
21882 2001-06-11  Akim Demaille  <akim@epita.fr>
21884         * aclang.m4 (AC_NO_EXECUTABLES): Define the macros with their
21885         trailing new line.
21886         Reported by Andreas Schwab.
21888 2001-06-11  Akim Demaille  <akim@epita.fr>
21890         * Makefile.am, Makefile.maint: Typos.
21892 2001-06-09  Akim Demaille  <akim@epita.fr>
21894         * doc/autoconf.texi (Here-Documents): New section, gathering
21895         documentation about here-documents.
21896         Use `href', not `uref', and other changes.
21898 2001-06-09  Akim Demaille  <akim@epita.fr>
21900         * doc/autoconf.texi (Portable Shell Programming): Promoted as a
21901         chapter.
21903 2001-06-09  Akim Demaille  <akim@epita.fr>
21905         * doc/autoconf.texi (Limitations of Builtins): Complete the
21906         description of the here-docs penalties with Alexandre Oliva's
21907         explanations.
21909 2001-06-01  Paul Eggert  <eggert@twinsun.com>
21911         * doc/autoconf.texi: Talk about here documents and speedups.
21912         Do not use "echo" on arbitrary strings.
21913         Spell "here-documents" consistently with the standard.
21915 2001-06-09  Akim Demaille  <akim@epita.fr>
21917         * doc/autoconf.texi (Concept Index): Introduce it.
21918         Regenerate the menus.
21920 2001-06-09  Akim Demaille  <akim@epita.fr>
21922         * Makefile.maint, GNUmakefile: New, from Jim Meyering.
21923         * config/prev-version.txt: New.
21924         * config/move-if-change: New, for GNU libc.
21926 2001-06-06  Pavel Roskin  <proski@gnu.org>
21928         * tests/atgeneral.m4 (AT_INIT): Remove "/bin/sh" after $SHELL.
21930 2001-06-06  Akim Demaille  <akim@epita.fr>
21932         * acgeneral.m4 (AC_CHECK_LIB): Fix the cache var name to work
21933         properly when $1 is not a literal.
21934         Fixes PR Autoconf/187, reported by Bram Moolenaar.
21936 2001-06-06  Akim Demaille  <akim@epita.fr>
21938         Invoking AC_COPYRIGHT before AC_INIT fails.
21940         * Makefile.am (.m4.m4f): Pass --fatal-warnings to m4.
21941         * acgeneral.m4 (_m4_divert(VERSION_FSF))
21942         (_m4_divert(VERSION_USER)): New.
21943         (AC_COPYRIGHT): $2 is the diversion to use.
21944         (_AC_INIT_COPYRIGHT): Use the FSF diversion.
21945         (AC_INIT): Remove dead comments as now it's commutative.
21947 2001-06-06  Akim Demaille  <akim@epita.fr>
21949         * tests/semantics.at (AC_CHECK_LIB): Strengthen to reflect
21950         PR autoconf/187.
21952 2001-06-05  Akim Demaille  <akim@epita.fr>
21954         * acgeneral.m4 (_AC_INIT_PARSE_ARGS): `prefix' and `exec_prefix'
21955         can be empty.
21956         `*dir' variables cannot be NONE.
21957         Reported by Mark Kettenis.
21959 2001-06-05  Paul Eggert  <eggert@twinsun.com>
21961         * doc/autoconf.texi: Fix references to Solaris and SunOS versions.
21963 2001-06-04  Akim Demaille  <akim@epita.fr>
21965         * acgeneral.m4 (AC_VAR_SET, AC_VAR_GET, AC_VAR_TEST_SET)
21966         (AC_VAR_SET_IFELSE, AC_VAR_PUSHDEF and AC_VAR_POPDEF, AC_TR_CPP)
21967         (AC_TR_SH): Move as...
21968         * m4sh.m4 (AS_VAR_SET, AS_VAR_GET, AS_VAR_TEST_SET)
21969         (AS_VAR_SET_IF, AC_VAR_PUSHDEF, AS_VAR_POPDEF, AS_TR_CPP)
21970         (AS_TR_SH): these.
21971         (_AS_TR_PREPARE, _AS_CR_PREPARE, _AS_TR_CPP_PREPARE)
21972         (_AS_TR_SH_PREPARE): New.
21973         (AS_SHELL_SANITIZE): Invoke _AS_TR_PREPARE.
21974         * tests/aclocal.m4 (AC_STATE_SAVE): `as_' vars can be modified.
21976 2001-06-02  Akim Demaille  <akim@epita.fr>
21978         * Makefile.am (.m4.m4f): Pass the options first.
21979         Fixes PR autoconf/182.
21981 2001-06-02  Nathan Sidwell  <nathan@codesourcery.com>
21983         GNU getopt, when POSIXLY_CORRECT does not permute options and
21984         arguments.  So pass the options first.
21985         Fixes PR autoconf/184.
21987         * autoconf.sh (m4_prefiles, m4f_prefiles): New variables.
21988         (run_m4): Remove files.
21989         (run_m4f): Remove.
21990         Update remainder of script to use them.
21991         (for warning in): Do not use a literal comma as it will not be
21992         split by IFS.
21994 2001-06-02  Christian Marquardt  <marq@gfz-potsdam.de>
21996         * aclang.m4 (AC_PROG_F77): Add Fujitsu's "frt" to the list of
21997         Fortran compilers to check.
21998         (_AC_PROG_F77_V): Add '-###' as a possible option to print
21999         information on library and object files.
22000         (AC_PROG_CXX): Add Fujitsu's "FCC" to the list of C++ compilers
22001         to check.
22003 2001-06-02  Akim Demaille  <akim@epita.fr>
22005         * autom4te.in (Request::@request): Declare with `vars', not `my',
22006         as it prevents updates via `do FILENAME'.
22008 2001-06-02  Akim Demaille  <akim@epita.fr>
22010         * configure.in (standards_texi): Remove, dead code.
22012 2001-06-02  Akim Demaille  <akim@epita.fr>
22014         * autom4te.in: New.
22016 2001-06-02  Pavel Roskin  <proski@gnu.org>
22018         * acgeneral.m4 (_AC_INIT_PREPARE): Don't rely on $? in the traps
22019         for signals other than 0 - exit with code 1.
22020         * m4sh.m4 (AS_TMPDIR): Likewise.
22021         * autoconf.in: Likewise. Also don't rely on exit == exit $?.
22022         * autoheader.in: Likewise.
22023         * autoreconf.in: Likewise.
22024         * tests/torture.at (Signal handling): New test for the above.
22026 2001-06-01  Akim Demaille  <akim@epita.fr>
22028         * m4sugar.m4 (m4_defn, m4_undefine, m4_popdef): Clarify the error
22029         message.
22031 2001-05-31  Akim Demaille  <akim@epita.fr>
22033         * acfunctions, acheaders, acidentifiers, acmakevars, acprograms:
22034         Add copyright and comments.
22035         * acheaders: Add stdint.h.
22036         Suggested by Paul Eggert.
22038 2001-05-31  Akim Demaille  <akim@epita.fr>
22040         * atgeneral.m4 (AT_INIT): Use $SHELL.
22041         * atspecific.m4 (AT_CHECK_DEFINES): Skip HAVE_STDINT_H.
22043 2001-05-31  Akim Demaille  <akim@epita.fr>
22045         * acgeneral.m4 (_AC_INCLUDES_DEFAULT_REQUIREMENTS): Include
22046         stdint.h.
22047         From Paul Eggert and Lars Hecking.
22049 2001-05-31  Akim Demaille  <akim@epita.fr>
22051         * tests/base.at: Adjust line numbers in error messages.
22053 2001-05-31  Akim Demaille  <akim@epita.fr>
22055         * tests/base.at, tests/m4sh.at: When using AC_PLAIN_SCRIPT be sure
22056         to emit the bangshe line.
22057         Reported by David Carter.
22059 2001-05-30  Steven G. Johnson  <stevenj@alum.mit.edu>
22061         * aclang.m4 (AC_PROG_F77): Add Compaq's "fort" to the list of
22062         Fortran (95) compilers to check.
22064 2001-05-29  Alexandre Duret-Lutz  <duret_g@epita.fr>
22066         * doc/autoconf.texi (Introduction, Pointers): Update the Autoconf
22067         Macro Archive URL.
22069 2001-05-23  Pavel Roskin  <proski@gnu.org>
22071         * aclang.m4 (AC_PROG_CPP): Use `break' instead of `break 2' since
22072         _AC_PROG_PREPROC_WORKS_IFELSE expands arguments outside the loop.
22073         (AC_PROG_CXXCPP): Likewise.
22075 2001-05-22  Akim Demaille  <akim@epita.fr>
22077         * config: New directory.
22078         * configure.in: AC_CONFIG_AUX_DIR it.
22079         * tests/atspecific.m4 (AT_CONFIGURE_AC): Adjust.
22081 2001-05-22  Akim Demaille  <akim@epita.fr>
22083         * autoconf.in, autoreconf.in, autoheader.in, autoscan.in, ifnames.in,
22084         * autoupdate.in: Specify the Emacs mode.
22085         * acversion.m4.in: Rename as...
22086         * acversion.m4: this.
22087         * tests/Makefile.am (CLEANFILES): More garbage.
22089 2001-05-22  Akim Demaille  <akim@epita.fr>
22091         * autoconf.sh, autoreconf.sh, autoheader.sh, autoscan.pl, ifnames.sh:
22092         Rename as...
22093         * autoconf.in, autoreconf.in, autoheader.in, autoscan.in, ifnames.in:
22094         these.
22096 2001-05-21  Akim Demaille  <akim@epita.fr>
22098         * configure.in: Bump to 2.50a.
22101         -----
22103         Local Variables:
22104         coding: utf-8
22105         End:
22107         Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008,
22108         2009, 2010 Free Software Foundation, Inc.
22110         This program is free software: you can redistribute it and/or
22111         modify it under the terms of the GNU General Public License as
22112         published by the Free Software Foundation, either version 3 of the
22113         License, or (at your option) any later version.
22115         This program is distributed in the hope that it will be useful,
22116         but WITHOUT ANY WARRANTY; without even the implied warranty of
22117         MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
22118         General Public License for more details.
22120         You should have received a copy of the GNU General Public License
22121         along with this program.  If not, see
22122         <http://www.gnu.org/licenses/>.