* lib/autoconf/general.m4 (AC_CONFIG_AUX_DIRS): Bring back
[autoconf/tsuna.git] / ChangeLog
blob19f2702c067b706b87c489d1539d3a545913332f
1 2006-05-20  Paul Eggert  <eggert@cs.ucla.edu>
3         * lib/autoconf/general.m4 (AC_CONFIG_AUX_DIRS): Bring back
4         ac_config_guess, ac_config_sub, and ac_configure, since evidently
5         some other programs unwisely rely on these undocumented vars.
6         But put in warning comments about them.
7         Problem reported by Ralf Wildenhues in
8         <http://lists.gnu.org/archive/html/autoconf-patches/2006-05/msg00068.html>.
9         * NEWS: Document that these variables are intended to go away.
11 2006-05-20  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
13         * lib/autoconf/c.m4 (AC_PROG_CXX_C_O): Require AC_PROG_CXX,
14         and set the language to C++ (analogous to the equivalent Fortran
15         tests).
17         * lib/autoconf/c.m4 (AC_PROG_CXX_C_O): New macro.
18         * doc/autoconf.texi (C++ Compiler): Document it.
19         * lib/autoconf/fortran.m4 (_AC_PROG_FC_C_O): Adjust comment.
20         * NEWS: Update.
22 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
24         * lib/autoconf/status.m4 (_AC_OUTPUT_HEADER): Fix off-by-one bug
25         that caused config.status to generate 100-command sed scripts; the
26         portable limit is 99.
28 2006-05-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
30         * lib/autoconf/programs.m4 (AC_PROG_MKDIR_P): Name temporary
31         variable `ac_d' instead of `d' to avoid infringing namespace.
32         Report by Ralf Menzel.
34 2006-05-18  Paul Eggert  <eggert@cs.ucla.edu>
36         * lib/autoconf/status.m4 (_AC_OUTPUT_FILE): Don't prepend
37         $ac_top_build_prefix to $MKDIR_P if it's just 'mkdir -p'.
38         * tests/tools.at (autoconf: subdirectories): New test, taken from
39         the corresponding problem report by Ralf Wildenhues in:
40         http://lists.gnu.org/archive/html/autoconf-patches/2006-05/msg00053.html
42         * lib/autoconf/functions.m4 (AC_REPLACE_FNMATCH, AC_FUNC_FNMATCH_GNU):
43         Quote some uses of shell variables if they might suffer unexpected
44         globbing.  This doesn't fix all instances of quoting problems that
45         I found, just the easy ones that look safe.
46         * lib/autoconf/general.m4 (_AC_INIT_SRCDIR, _AC_INIT_HELP):
47         (AC_CONFIG_AUX_DIR, AC_CONFIG_AUX_DIR_DEFAULT, AC_CONFIG_AUX_DIRS):
48         (AC_CANONICAL_BUILD, AC_CANONICAL_HOST, AC_CANONICAL_TARGET):
49         (AC_CACHE_LOAD, AC_CACHE_SAVE): Likewise.
50         * lib/autoconf/libs.m4 (_AC_PATH_X_XMKMF, _AC_PATH_X_DIRECT): Likewise.
51         * lib/autoconf/specific.m4 (AC_SYS_LONG_FILE_NAMES): Likewise.
52         * lib/autoconf/status.m4 (_AC_OUTPUT_LINK, _AC_OUTPUT_SUBDIRS):
53         Likewise.
54         * lib/autotest/general.m4 (_AC_INIT_PARSE_ARGS): Likewise.
55         * lib/m4sugar/m4sh.m4 (_AS_DETECT_BETTER_SHELL): Likewise.
57 2006-05-18  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
59         * bin/autoreconf.in ($help): Reword according to the manual.
60         Suggested by Olly Betts.
62 2006-05-17  Olly Betts  <olly@survex.com>  (tiny change)
63         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
65         * bin/autoreconf.in: Pass the directory argument to
66         `require_configure_ac'.  Fix comment.
67         * tests/torture.at (Configuring subdirectories): Expose this.
68         Reported by Olly Betts.
70 2006-05-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
72         * lib/Automake/Configure_ac.pm, lib/Automake/Channels.pm,
73         lib/Automake/FileUtils.pm, lib/Automake/Struct.pm: Sync from
74         Automake as follows:
76         * lib/Autom4te/Configure_ac.pm (find_configure_ac): Use
77         `$configure_in' instead of `configure.in', to preserve
78         directory component.
80 2006-05-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
82         * config/config.guess, config/config.sub, config/texinfo.tex,
83         doc/make-stds.texi, doc/standards.texi: Sync from upstream.
85 2006-05-14  Paul Eggert  <eggert@cs.ucla.edu>
87         * lib/autoconf/headers.m4 (AC_HEADER_STDBOOL): Fix overly-picky
88         test for C99 conformance; (bool) 0.5 is an integer constant
89         expression, but (bool) -0.5 is not.  Problem reported by Fedor
90         Sergeev in <http://forum.sun.com/jive/thread.jspa?threadID=96202>.
92 2006-05-13  Paul Eggert  <eggert@cs.ucla.edu>
94         * doc/autoconf.texi (Particular Programs): AC_PROG_MKDIR_P now
95         sets MKDIR_P, not mkdir_p, to avoid collisions with Automake.
96         Warn about obsolete install-sh files.  Remove stray sentence
97         fragment and fix cross reference.
98         * lib/autoconf/programs.m4 (AC_PROG_INSTALL): Don't insist on
99         install -d; this undoes the 2006-05-10 change.
100         (MKDIR_P): Mark with AN_MAKEVAR.
101         (AC_PROG_MKDIR_P): Fall back on $ac_install_sh, not $INSTALL, so
102         that we don't require $INSTALL to be thread-safe.  Move comments
103         out of generated code.  Require AC_CONFIG_AUX_DIR_DEFAULT instead
104         of AC_PROG_INSTALL.  Output a message saying that we're checking
105         mkdir -p.  Set MKDIR_P rather than mkdir_p.  Do special magic for
106         MKDIR_P instead of AC_SUBST.
107         * lib/autoconf/status.m4 (_AC_OUTPUT_FILE, _AC_OUTPUT_CONFIG_STATUS):
108         Special magic for MKDIR_P, too.
109         * lib/m4sugar/m4sh.m4 (AS_MKDIR_P): Remove comment that defeated
110         a dnl.
111         * tests/local.at (AT_CHECK_ENV): mkdir_p -> MKDIR_P.
113 2006-05-11  Paul Eggert  <eggert@cs.ucla.edu>
115         Sync from Automake, as follows:
117         2006-05-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
118         * config/install-sh: Initialize IFS, so field splitting isn't
119         turned off later.
120         * config/mkinstalldirs: Likewise.
121         * config/missing: Remove superfluous quotes.  Replace all uses of
122         `[' by `test', for consistency, and for..
123         * config/missing (sed_minuso, sed_output): New variables.
124         (autom4te, help2man, makeinfo): Use them.  Unifies detection of
125         `-o FILE', `--output FILE', `--output=FILE', stricter regex.
126         Fixes `missing' to detect `--output' for help2man.  Fixes
127         PR automake/483.  Report by Dennis J. Linse.
128         (autom4te): Document in `missing --help'.
130 2006-05-10  Paul Eggert  <eggert@cs.ucla.edu>
132         * NEWS: New macro AC_PROG_MKDIR_P.  AS_MKDIR_P is now more robust.
133         * config/install-sh: Don't use 'path' to talk about file names,
134         as per GNU coding standards.  Close a race condition reported by Ralf
135         Wildenhues and Stepan Kasal.  There is still a race condition
136         on hosts that predate Posix 1003.1-1992, but we can't help this.
137         Don't mishandle weird characters like space on pre-Posix hosts.
138         Invoke mkdir at most once per dir arg on pre-Posix hosts.
139         * doc/autoconf.texi (Programming in M4sh): Cross-reference to
140         AC_PROG_MKDIR_P from AS_MKDIR_P.
141         (Limitations of Usual Tools): Cross-reference to AC_PROG_MKDIR_P
142         from mkdir.  Mention that Autoconf 2.60 install-sh is safe but
143         earlier editions are not (including Automake 1.8.3).
144         Do not suggest mkinstalldirs for thread-safety.
145         * lib/autoconf/programs.m4 (AC_PROG_INSTALL): Insist on an 'install'
146         that understands -d, so that AC_PROG_MKDIR_P can fall back on $INSTALL.
147         * lib/m4sugar/m4sh.m4 (AS_MKDIR_P): Make it more robust in the
148         presence of special characters and race conditions.
149         * tests/local.at (AT_CHECK_ENV): Add mkdir_p to the list of variables
150         in Autoconf's name space.
152 2006-05-10  Bruno Haible  <bruno@clisp.org>
153         and Paul Eggert  <eggert@cs.ucla.edu>
155         * lib/autoconf/programs.m4 (AC_PROG_MKDIR_P): New macro, taken
156         from Automake with minor changes.
157         * doc/autoconf.texi (Particular Programs): Document AC_PROG_MKDIR_P.
159 2006-05-10  Paul Eggert  <eggert@cs.ucla.edu>
161         * config/install-sh: Update to Automake CVS version, as follows:
162         2006-04-25  Stepan Kasal  <kasal@ucw.cz>
163         * lib/install-sh: Simplify the expr implementation of dirname.
164         2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
165         * lib/install-sh: Handle --, and diagnose unknown options.
167 2006-05-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
169         * tests/Makefile.am (AUTOTEST): Use `$(MY_AUTOM4TE)' instead of
170         `./autom4te' to create `./testsuite', since the `all' target
171         will ensure its presence, but `installcheck' should not create
172         the uninstalled wrappers.
174         * tests/torture.at (Unusual Automake input files): Skip if we
175         detect automake < 1.8.
177 2006-05-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
179         * lib/autoconf/c.m4 (AC_PROG_CC_STDC): If ac_cv_prog_cc_stdc
180         is set to `no', then that overrides and sets ac_cv_prog_cc_c89
181         and ac_cv_prog_cc_c99 to `no', for backward compatibility.
182         * NEWS: Update.
184 2006-05-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
186         * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): Take care not to
187         munge (multiple) white space and other oddities.
188         * tests/torture.at (AT_CHECK_AC_ARG_VAR): Make sure to M4-escape
189         single quotes in variable assignment.
190         (AC_ARG_VAR, configure invocation): Adjust tests to expose this
191         and similar failures by adding multiple spaces, tabs, and other
192         special characters.
193         Report and different test suggested by Francesco Romani
194         <fromani@gmail.com> and Andrew Church <achurch@achurch.org>.
196         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): When we escape
197         single quotes, we only need to search for single quotes; this
198         both simplifies the search pattern, and makes us less
199         susceptible to `echo' variations for arguments not containing
200         single quotes.
201         (_AC_ARG_VAR_VALIDATE): Likewise.
203 2006-05-04  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
205         * doc/autoconf.texi (Special Shell Variables) <IFS>: Document
206         `$*' and IFS concatenation issue with traditional shells and
207         bash-2.04.  Report by Seanster@Seanster.com.
209 2006-05-03  Bruno Haible  <bruno@clisp.org>
211         * doc/autoconf.texi (Limitations of Usual Tools): Identify more
212         precisely which Mac OS X versions have the od problem.
214 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
216         * doc/autoconf.texi: Use @option systematically.
217         (Integer Overflow):
219 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
220         and Bruno Haible  <bruno@clisp.org>
222         * doc/autoconf.texi (Limitations of Usual Tools): Add a paragraph
223         about 'od'.
224         (Integer Overflow): Mention the special case of integer division
225         overflow.
227 2006-05-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
229         * lib/autoconf/general.m4 (_AC_CANONICAL_SPLIT): Cater for
230         traditional shells like the Solaris one that do not use the
231         first IFS character for assembling `$*'.
232         Prompted by a related report from autoconf_bug@nro.ca.
234 2006-05-01  Paul Eggert  <eggert@cs.ucla.edu>
235         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
237         * doc/autoconf.texi (Limitations of Builtins, Limitations of Make):
238         Mention more problems with the -e option.
240 2006-04-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
242         * NEWS: Typo.
243         * doc/autoconf.texi (Systemology): Mention the Heirloom Project.
245         * doc/autoconf.texi (Introduction, Pointers): Use `@/' liberally
246         in URLs to improve DVI formatted output (requires texinfo 4.6).
247         (System Services, Systemology, Shellology): Likewise.
248         (Limitations of Usual Tools): Rewrite Mac OS X example for nicer
249         output.
251         * doc/autoconf.texi (Fortran Compiler): Do not use `@ovar' in
252         continuous text.
253         (Runtime): Fix macro argument names to match description:
254         `action-if-found' -> `action-if-true' and similarly.
255         (Obsolete Macros): Likewise.
256         * lib/autoconf/general.m4 (_AC_COMPILE_IFELSE): Likewise.
257         (AC_COMPILE_IFELSE, AC_TRY_COMPILE, _AC_LINK_IFELSE)
258         (AC_LINK_IFELSE, AC_TRY_LINK, AC_COMPILE_CHECK): Likewise.
260 2006-04-29  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
262         * doc/autoconf.texi (Limitations of Make): Clean up markup.
264         * ChangeLog: Typo.
265         * doc/autoconf.texi (Portable Shell): Allow wrapped URLs, for
266         DVI output.
268 2006-04-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
270         * doc/autoconf.texi (Limitations of Builtins): Document FreeBSD
271         /bin/sh set unsorted output.
272         * lib/autoconf/general.m4 (_AC_CACHE_DUMP): Adjust.
273         * tests/local.at: Likewise.
275 2006-04-26  Paul Eggert  <eggert@cs.ucla.edu>
277         * doc/autoconf.texi (Portable C and C++, Varieties of Unportability):
278         (Integer Overflow, Null Pointers, Buffer Overruns):
279         (Floating Point Portability, Exiting Portably): New sections.
280         (Writing Test Programs): Fix some langauge.  Recommend exiting
281         with status 1, not merely nonzero.  Clarify exit declaration.
282         (Run Time): Move C exit status stuff to new Exiting Portably section.
283         (Systemology): Mention Posix and levenez.  Update v7 reference.
284         (Portable Shell): Mention the Posix shell.
286 2006-04-25  Stepan Kasal  <kasal@ucw.cz>
288         * bin/autoconf.as (me): Replace by as_me.
290 2006-04-25  Paul Eggert  <eggert@cs.ucla.edu>
292         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Don't use AS_ERROR,
293         since as_me isn't set yet.
295 2006-04-23  Paul Eggert  <eggert@cs.ucla.edu>
297         Prepare for deprecation of AS_BASENAME and AS_DIRNAME, and fix
298         a few minor bugs in this area.
300         * doc/autoconf.texi (Programming in M4sh): Comment out the
301         documentation of AS_BASENAME, for now.
302         (Shell Substitutions): Do not use AS_DIRNAME in an example.
303         (Limitations of Builtins) <basename>: Do not refer to
304         AS_BASENAME.
305         * bin/autoconf.as (me): Don't use AS_BASENAME.
306         (dir): Remove the unused variable.
307         * lib/m4sugar/m4sh.m4 (_AS_DETECT_REQUIRED): Renamed from
308         AS_DETECT_REQUIRED.  All uses changed.
309         (_AS_DETECT_SUGGESTED): Renamed from AS_DETECT_SUGGESTED.
310         All uses changed.
311         (_AS_DETECT_BETTER_SHELL): Put ;; at the end of a case.
312         (AS_BASENAME): Use "basename --" to protect against leading "-".
313         (_AS_BASENAME_EXPR): Renamed from AS_BASENAME_EXPR.  All uses changed.
314         (_AS_BASENAME_SED): Renamed from AS_BASENAME_SED.  All uses changed.
315         (_AS_BASENAME_PREPARE): Reject implementations that cannot handle "--".
316         (_AS_DIRNAME_PREPARE): Likewise.
317         (_AS_DIRNAME_EXPR): Renamed from AS_DIRNAME_EXPR.  All uses changed.
318         (_AS_DIRNAME_SED): Renamed from AS_DIRNAME_SED.  All uses changed.
319         (AS_DIRNAME): Use "dirname --".
321 2006-04-23  Paul Eggert  <eggert@cs.ucla.edu>
323         * doc/autoconf.texi (Runtime): Renamed from "Run Time".  All uses
324         of "run time" and "run-time" changed to "runtime", for consistency.
325         * lib/autoconf/fortran.m4: Likewise (in comment).
326         * lib/autoconf/functions.m4: Likewise.
327         * lib/autoconf/general.m4: Likewise.
328         * lib/autoconf/headers.m4: Likewise.
330         * doc/autoconf.texi (Run Time): Document the exit status situation
331         with more accuracy and detail.
333 2006-04-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
335         * doc/autoconf.texi (Introduction): The GNU Autoconf Macro
336         Archive is not officially `GNU' any more.  Update URL.
337         (Defining Directories): Likewise
338         * lib/autoconf/c.m4 (AC_C_RESTRICT): Update URL.
340 2006-04-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
342         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Remove the leading
343         newline from the `trap' code to finish `config.log'; the NetBSD
344         /bin/sh resets the exit status after an empty command, as
345         documented in doc/autoconf.texi.
346         Reported by Dalibor Topic <robilad@kaffe.org>.
348 2006-04-19  Paul Eggert  <eggert@cs.ucla.edu>
350         * doc/autoconf.texi (C Compiler): Clarify AC_C_TYPEOF.
351         Suggested by Bruno Haible.
353 2006-04-18  Paul Eggert  <eggert@cs.ucla.edu>
355         * configure.ac (ac_cv_sh_n_works): Don't try to test for it, since
356         some shells (e.g., Solaris 8 /bin/sh) implement it verrrry slowly.
357         Instead, just list the shells that we know work.
358         * tests/local.at (AT_CHECK_SHELL_SYNTAX): Remove 2nd arg.  All uses
359         changed.  Be more cautious about the _cv_ variable.
360         * tests/tools.at (Syntax of the shell scripts): Check the
361         _cv_ variable once, at first, to avoid an internal autoconf error
362         when sh -n does not work.
364 2006-04-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
366         * lib/Autom4te/FileUtils.pm: Sync from Automake.
368 2006-04-16  Paul Eggert  <eggert@cs.ucla.edu>
370         * lib/autoconf/general.m4 (_AC_INIT_CONFIG_LOG): Don't
371         use ">&-" since we're only 99.999% sure that this is portable,
372         and since the MinGW bug is fixed in a different way.
373         * lib/autotest/general.m4 (AT_INIT): Likewise.
375 2006-04-16  Stepan Kasal  <kasal@ucw.cz>
377         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Handle --recheck
378         before opening config.log, to avoid hitting a bug on MinGW.
380 2006-04-14  Paul Eggert  <eggert@cs.ucla.edu>
382         * lib/autoconf/general.m4 (_AC_INIT_CONFIG_LOG): Close
383         AS_MESSAGE_LOG_FD before reopening it onto the log file.
384         This works around a MinGW bug reported by Eric Paire.
385         Make sure that all writes to the log file append to it,
386         rather than possibly losing data.
387         * lib/autotest/general.m4 (AT_INIT): Likewise.
389 2006-04-14  Stepan Kasal  <kasal@ucw.cz>
391         * lib/Autom4te/FileUtils.pm (find_file): Fix a typo in the
392         description.
394 2006-04-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
396         * NEWS: Update.
398         * configure.ac (AC_INIT): Bump to 2.59d.
400 2006-04-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
402         Version 2.59c.
404         * Makefile.maint (news-date-check): Do not require a leading `*'
405         before the release date in NEWS.
407 2006-04-12  Stepan Kasal  <kasal@ucw.cz>
408         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
410         * lib/autoconf/status.m4 (_AC_OUTPUT_FILE): If the templates for
411         the instantiated file do not contain the string 'datarootdir'
412         but contain @datadir@, @docdir@, @infodir@, @localedir@, or
413         @mandir@, replace the reference '${datarootdir}' by the value.
414         * tests/torture.at (datarootdir workaround): New test.
415         * NEWS: Advertise this temporary fixup.
416         Based on a patch by Bruno Haible, reported and analyzed by
417         Paul Eggert and Noah Misch.
419 2006-04-12  Eric Blake  <ebb9@byu.net>
421         * tests/autotest.at (Debugging a failed test): Fix comment.
423 2006-04-12  Stepan Kasal  <kasal@ucw.cz>
425         * lib/m4sugar/m4sh.m4 (_AS_LN_S_PREPARE): Simplify the summary of
426         all the changes since 2006-04-07.
428 2006-04-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
430         * lib/m4sugar/m4sh.m4 (_AS_LN_S_PREPARE): If `ln -s file1 file2'
431         succeeded, but `ln -s file dir' failed, take care to remove the
432         leftover target before the next test, to prevent its spurious
433         failure; also make sure `ln file dir' works before selecting it.
434         Thanks to Keith Marshall for pointing this out.
435         * THANKS: Update.
437         * lib/autotest/general.m4 (AT_INIT): Store quoted variable
438         assignments in `at_debug_args', so that we put them correctly
439         in the `run' script.
440         * tests/autotest.at (Debugging a failed test): Unmark XFAIL.
441         Reported by Eric Blake.
443 2006-04-11  Eric Blake  <ebb9@byu.net>
445         * tests/autotest.at (AT_CHECK_AT): Add new argument, to allow
446         top-level tests after micro-suite has been run.   Used in...
447         (Debugging a successful test, Debugging script and environment),
448         (Debugging a failed test): ...these new tests.  The first of these
449         is fixed by...
450         * lib/autotest/general.m4 (_AT_CREATE_DEBUGGING_SCRIPT): New
451         macro, split out from...
452         (AT_INIT): ...here, so that using -d also generates a run script.
453         Document that -d inhibits top-level logging.
454         * doc/autoconf.texi (testsuite Invocation): Document that -d only
455         inhibits top-level logging; debug scripts are created.
457         * lib/autotest/general.m4 (_AT_CHECK): Avoid syntax error on empty
458         check.
459         * tests/autotest.at (Empty test, Empty check): New test to check it.
461         * lib/autoconf/c.m4 (AC_C_CONST, AC_C_VOLATILE): Avoid warnings
462         from gcc.
464 2006-04-10  Stepan Kasal  <kasal@ucw.cz>
466         * tests/mktests.sh: Use "trap '' 0", not "trap 0".  Do not touch
467         the files if a problem appears.  Make the empty *.at files
468         read-only, too.  Proposed by Ralf Wildenhues.
470 2006-04-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
472         * config/Makefile.am: Add comment to force updated Makefile.in.
474         * lib/freeze.mk: Fix typo in comment.  Unlike the last, white
475         space only patch to this file, this patch causes the Makefile.in
476         files that include freeze.mk to be updated, and thus have a
477         newer time stamp again, which in turn makes a pristine CVS
478         checkout have correct time stamps.
480         * Makefile.maint (cvs-sv): New macro, to be used..
481         (config.guess-url_prefix, config.sub-url_prefix)
482         (texinfo.tex-url_prefix, standards.texi-url_prefix): ..here;
483         point to CVS text checkout of Gnulib files.
484         (copyright-check): Bump current year.
485         (announcement): Do not hard-wire `./announce-gen'.
486         (cvs-update): Propagate failures of `cvs' and `move-if-change'
487         correctly.
488         * Makefile.cfg (executable-update): Use `chmod a+x' instead of
489         `chmod +x'.
490         (wget_files): Update config.guess, config.sub, texinfo.tex by
491         `wget-update', now that their URLs work again.
493 2006-04-10  Paul Eggert  <eggert@cs.ucla.edu>
495         * doc/autoconf.texi (Particular Types): Don't use AC_CHECK_TYPE.
496         Problem noted by Paul D. Smith.
498 2006-04-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
500         * doc/autoconf.texi: Remove unused words from word list.
501         * .x-sc_prohibit_atoi_atof, .x-sc_space_tab, .x-sc_sun_os_names,
502         .x-sc_trailing_space: New files.
504         * doc/standards.texi: Sync from gnulib.
506         * NEWS, doc/autoconf.texi (AC_LIBOBJ vs LIBOBJS): Mark
507         `LIBOBJDIR' as experimental.
509         * lib/m4sugar/m4sh.m4 (_AS_LN_S_PREPARE): MSYS `ln -s' fails
510         with a target directory; it's internally implemented as `cp'
511         anyway, but since Autoconf advertises the possibility to use
512         a target directory when LN_S is `ln -s', we need to find out.
513         Reported by Rolf Ebert <rolf.ebert.gcc@gmx.de> against MSYS,
514         analyzed by Keith Marshall <keith.marshall@total.com>.
516         * THANKS: Update.
518 2006-04-10  Paul Eggert  <eggert@cs.ucla.edu>
520         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Just output
521         confdefs.h as-is.  In general, if it has backslash-newline or the
522         like, then it doesn't work either to sort or to remove empty
523         lines.
525 2006-04-09  Stepan Kasal  <kasal@ucw.cz>
527         * tests/Makefile.am (AUTOCONF_FILES): Fix typo in the comment.
529 2006-04-09  Alexandre Duret-Lutz  <adl@gnu.org>
531         * lib/autom4te.in (Automake-preselections): Preselect
532         _AM_SUBST_NOTMAKE.
534 2006-04-08  Paul Eggert  <eggert@cs.ucla.edu>
536         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Use '\'' for an
537         apostrophe within a single-quoted string, as this is the usual
538         tradition and is easier to read than '"'"'.  Don't rely on the
539         shell treating "$/" like '$/'.  Use a more-consistent indenting
540         style for the trap.
542 2006-04-09  Eric Blake  <ebb9@byu.net>
544         * tests/autotest.at (Backquote command substitution),
545         (Multiline backquote command substitution): Remove mistaken
546         AT_NO_CMDSUBST from the 2006-03-14 patch, which was meant to be
547         applied...
548         (Parenthetical command substitution, Multiline parenthetical
549         command substitution): here.
551 2006-04-08  Paul Eggert  <eggert@cs.ucla.edu>
553         Import macros from gnulib (often changing their name).
555         * NEWS: AC_C_TYPE_LONG_DOUBLE is now obsolete.
556         New macros AC_CHECK_DECLS_ONCE, AC_CHECK_FUNCS_ONCE,
557         AC_CHECK_HEADERS_ONCE, AC_FUNC_STRTOLD, AC_HEADER_ASSERT,
558         AC_STRUCT_DIRENT_D_INO, AC_STRUCT_DIRENT_D_TYPE,
559         AC_TYPE_LONG_DOUBLE, AC_TYPE_LONG_DOUBLE_WIDER, AC_TYPE_INT8_T,
560         AC_TYPE_INT16_T, AC_TYPE_INT32_T, AC_TYPE_INT64_T,
561         AC_TYPE_INTMAX_T, AC_TYPE_INTPTR_T, AC_TYPE_LONG_LONG_INT,
562         AC_TYPE_UINT8_T, AC_TYPE_UINT16_T, AC_TYPE_UINT32_T,
563         AC_TYPE_UINT64_T, AC_TYPE_UINTMAX_T, AC_TYPE_UINTPTR_T,
564         AC_TYPE_UNSIGNED_LONG_LONG_INT, AC_USE_SYSTEM_EXTENSIONS.
565         The manual mentions Gnulib more prominently.
566         * doc/autoconf.texi (Gnulib): New node.
567         (Pointers): Add Gnulib URL.
568         (Particular Functions): Alphabetize.  Add AC_FUNC_STRTOLD.
569         (Generic Functions): Add AC_CHECK_FUNCS_ONCE.  Refer to new
570         Gnulib section.
571         (Particular Headers): Add AC_HEADER_ASSERT.  For stdbool.h,
572         suggest a #define rather than a typedef for _Bool, and mention
573         Gnulib rather than trying to substitute stdbool code.
574         (Generic Headers): Add AC_CHECK_HEADERS_ONCE.
575         (Generic Declarations): Add AC_CHECK_DECLS_ONCE.
576         (Particular Structures): Add AC_STRUCT_DIRENT_D_INO,
577         AC_STRUCT_DIRENT_D_TYPE.
578         (Particular Types): Mention stdint.h and inttypes.h as standard
579         headers too.
580         Add AC_TYPE_INT8_T, AC_TYPE_INT16_T, AC_TYPE_INT32_T, AC_TYPE_INT64_T,
581         AC_TYPE_INTMAX_T, AC_TYPE_INTPTR_T, AC_TYPE_LONG_DOUBLE,
582         AC_TYPE_LONG_DOUBLE_WIDER, AC_TYPE_LONG_LONG_INT, AC_TYPE_UINT8_T,
583         AC_TYPE_UINT16_T, AC_TYPE_UINT32_T, AC_TYPE_UINT64_T,
584         AC_TYPE_UINTMAX_T, AC_TYPE_UINTPTR_T, AC_TYPE_UNSIGNED_LONG_LONG_INT.
585         (C Compiler): Move AC_C_LONG_DOUBLE to ...
586         (Obsolete Macros): here.  Under AC_LONG_DOUBLE, mention
587         AC_TYPE_LONG_DOUBLE or AC_TYPE_LONG_DOUBLE_WIDER instead.
588         (Posix Variants): Add AC_USE_SYSTEM_EXTENSIONS.
589         (Coding Style).  Don't mention m4_expand_once.
590         * lib/autoconf/c.m4 (AC_C_LONG_DOUBLE): Implement via
591         AC_TYPE_LONG_DOUBLE_WIDER.  Now obsolete.
592         * lib/autoconf/functions.m4 (_AH_CHECK_FUNCS): New macro.
593         (AC_CHECK_FUNCS): Use it.
594         (AC_CHECK_FUNCS_ONCE, AC_FUNC_STRTOLD): New macros.
595         (AC_FUNC_WAIT3): "the Open Group standards" -> "POSIX".
596         * lib/autoconf/general.m4 (AC_CHECK_DECLS_ONCE): New macro.
597         * lib/autoconf/headers.m4 (AC_CHECK_HEADERS_ONCE): New macro.
598         (AC_HEADER_ASSERT): New macro.
599         (AC_HEADER_STDBOOL): Don't assume "#error" works.
600         Catch a bug in IBM AIX xlc compiler version 6.0.0.0.
601         Catch a bug in an HP-UX C compiler.
602         * lib/autoconf/specific.m4 (AC_USE_SYSTEM_EXTENSIONS): New macro.
603         * lib/autoconf/types.m4 (AC_TYPE_INTMAX_T. AC_TYPE_UINTMAX_T):
604         (AC_TYPE_INTPTR_T, AC_TYPE_UINTPTR_T. AC_TYPE_LONG_DOUBLE):
605         (AC_TYPE_LONG_DOUBLE_WIDER, AC_C_LONG_DOUBLE, AC_TYPE_LONG_LONG_INT):
606         (AC_TYPE_UNSIGNED_LONG_LONG_INT, _AC_TYPE_INT, _AC_TYPE_UNSIGNED_INT):
607         (_AC_STRUCT_DIRENT, AC_STRUCT_DIRENT_D_INO, AC_STRUCT_DIRENT_D_TYPE):
608         New macros.
610         * tests/mktests.sh (ac_exclude_list, au_exclude_list): Do not
611         use /^foo|bar$/, it does not mean /^(foo|bar)$/.
613 2006-04-08  Stepan Kasal  <kasal@ucw.cz>
615         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Fix the wording
616         of the warning introduced by the 2001-08-28 change.
618 2006-04-08  Stepan Kasal  <kasal@ucw.cz>,
619             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
621         * lib/autoconf/general.m4 (AC_CACHE_SAVE): All `ac_cv_env_foo'
622         variables shall be overriden by the cache.
623         * tests/torture.at (AC_ARG_VAR): Test also with a first value
624         that contains braces.
626 2006-04-07  Stepan Kasal  <kasal@ucw.cz>
628         Revert the patch from 2006-04-01 and only improve
629         _AS_DETECT_BETTER_SHELL:
631         * lib/m4sugar/m4sh.m4 (_AS_PATH_WALK): Do not optimize; do not
632         skip nonexistent directories.
633         (_AS_DETECT_BETTER_SHELL): The optimization is moved here--try
634         only shell candidates which exist.
635         (AS_UNAME): No need to give three parameters to _AS_PATH_WALK.
636         * lib/autotest/general.m4 (AT_INIT): No need to give three
637         parameters to _AS_PATH_WALK.
639 2006-04-07  Stepan Kasal  <kasal@ucw.cz>,
640             Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
642         * bin/autoupdate.in (handle_autoconf_patches): Change the way we
643         distinguish m4sugar macros.
644         * tests/tools.at (autoupdating with aclocal and m4_include):
645         New test.  Bug reported by Gary V. Vaughan <gary@gnu.org>,
646         test case by Noah Misch <noah@cs.caltech.edu>.
648 2006-04-07  Stepan Kasal  <kasal@ucw.cz>
650         Revert my change from 2006-03-17, in other words:
651         * lib/m4sugar/m4sh.m4 (AS_BOURNE_COMPATIBLE): Insert BIN_SH=xpg4
652           and DUALCASE=1.
653         (AS_SHELL_SANITIZE): Remove DUALCASE=1.
654         * doc/autoconf.texi (Special Shell Variables) <BIN_SH>: Say that
655           it is set.
657 2006-04-07  Eric Blake  <ebb9@byu.net>
659         * doc/autoconf.texi (Programming in M4sh): Document that
660         AS_MKDIR_P exits the script on failure.
661         * lib/autotest/general.m4: Remove redundant AS_ERROR.
663 2006-04-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
665         * config/elisp-comp, config/install-sh, config/mdate-sh,
666         config/missing, config/mkinstalldirs: Sync from Automake.
668         * lib/Autom4te/FileUtils.pm, lib/Autom4te/Struct.pm: Sync
669         from Automake.
671         * doc/make-stds.texi: Sync from gnulib.
673 2006-04-06  Eric Blake  <ebb9@byu.net>
675         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_O): Inside cache
676         check, s/ac_exeext/ac_cv_exeext/.  Fixes regression introduced
677         2006-04-01.
679 2006-04-06  Stepan Kasal  <kasal@ucw.cz>,
680             Eric Blake  <ebb9@byu.net>,
681             Paul Eggert  <eggert@cs.ucla.edu>,
682             Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
684         * lib/autoconf/general.m4 (_AC_CACHE_DUMP): Fix the detection of
685         whether `set' quotes correctly: redirect stderr of the tested
686         `set', and use a subshell, for Ultrix; use `sed' instead of
687         `grep' for zsh `set' which may write binary output; match only
688         at the beginning of a line, to avoid false positives.
689         In order to avoid false positives by unrelated variables with
690         multiline content, put the dump algorithm in a subshell and
691         unset all variables containing newlines (except some which are
692         special to the shell).  Warn about cache variables that are
693         unset.
695 2006-04-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
697         * config/config.guess, config/config.sub, config/texinfo.tex:
698         Sync from upstream.
700         * tests/mktests.sh: Reword comments.
702         * tests/mktests.sh: Only skip internal macros starting with
703         `_AC_' or `__AC_'.  Noted by Stepan Kasal.
704         Update exclusion lists for the test suite to this end:
705         (AC_ARG_VAR): Do test this now.
706         (AC_SEARCH_LIBS, AC_REPLACE_FUNCS): Need an argument.
707         (AC_LINKER_OPTION): Remove (renamed to _AC_LINKER_OPTION).
708         (AC_LIST_MEMBER_OF): Likewise (renamed to _AC_LIST_MEMBER_IF).
709         (AC_LINK_FILES): Obsoleted since (and thus AU_DEFUN'ed).
711         * doc/autoconf.texi (Shell Substitutions): Mention the MSYS
712         shell issue with double-quoted command substitutions of native
713         commands.
714         Reported to MSYS by Mark Cave-Ayland, to Autoconf by Keith
715         Marshall.
717         * Makefile.maint (sc_cast_of_argument_to_free): Do not fail when
718         no file matches the glob, discard the warning, set `nullglob'.
719         (syntax-check): Likewise.
720         (sc_cast_of_x_alloc_return_value): Likewise.
721         (sc_cast_of_alloca_return_value, sc_error_exit_success)
722         (sc_prohibit_jm_in_m4, .re-list, sc_unmarked_diagnostics)
723         (m4-check): Likewise.
724         (sc_system_h_headers): Do not print rule on execution.
725         (sc_tight_scope): Do not fail for non-existing `src' directory.
726         (sc_changelog): Skip the Copyright footer.
727         * lib/autoconf/lang.m4: Remove trailing space.
729         * lib/autoconf/status.m4: More replacements to
730         <tab><space> where this makes sense.
732 2006-04-06  Stepan Kasal  <kasal@ucw.cz>
734         * tests/Makefile.am (maintainer-check-posix):
735           s/POSIXLY_CORRECTLY/POSIXLY_CORRECT/
737         * lib/autoconf/status.m4 (_AC_CONFIG_FOOS): Append TAGS to
738           ac_config_<foo>s again, sometimes normalized, sometimes not.
739         (AC_CONFIG_FILES, AC_CONFIG_HEADERS, AC_CONFIG_LINKS):
740         (AC_CONFIG_COMMANDS): Do not do so here.
741         (_AC_CONFIG_REGISTER_DEST): Double quote the tags in macros _AC_LIST_TAGS
742           and_AC_LIST_TAG_COMMANDS; fixes another regression introduced by the
743           2005-07-25 rewrite.  Noticed by Noah Misch.
745         * lib/autoconf/general.m4 (AC_PRESERVE_HELP_ORDER): Do not define
746           _AC_PRESERVE_HELP_ORDER, ...
747         (AC_ARG_ENABLE, AC_ARG_WITH): ... use AC_PROVIDE_IFELSE insetad.
749         * lib/autoconf/general.m4 (AC_ARG_VAR): Do not use m4_divert_once
750           inside m4_expand_once; it is redundant.
752         * lib/autoconf/general.m4 (_AC_INIT_HELP): Remove the broken support
753           for --help from Cygnus `configure.'
755 2006-04-06  Paul Eggert  <eggert@cs.ucla.edu>
757         * doc/autoconf.texi (C Compiler): Warn about #error.  Follows up
758         on a patch proposed by Ralf Wildenhues.
760 2006-04-05  Paul Eggert  <eggert@cs.ucla.edu>
762         * lib/autoconf/status.m4: Replace <space>''<tab> with
763         <tab><space> where this makes sense.
765 2006-04-05  Howard Chu  <hyc@highlandsun.com>  (trivial change)
766             Noah Misch  <noah@cs.caltech.edu>
768         * lib/autoconf/general.m4 (AC_PRESERVE_HELP_ORDER): New macro.
769         (AC_ARG_ENABLE, AC_ARG_WITH): Adjust.
770         * doc/autoconf.texi (Help Formatting): New node.
771         * NEWS: Announce AC_PRESERVE_HELP_ORDER.
773 2006-04-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
775         * TODO, config/Makefile.am, lib/freeze.mk, lib/autoconf/c.m4,
776         lib/autoconf/specific.m4, lib/autoconf/status.m4,
777         lib/autoconf/types.m4, lib/autotest/general.m4,
778         tests/mktests.sh, tests/torture.at: White space cleanup:
779         remove some SPACE before TAB, or add quoting ('' or @&t@).
781         * NEWS, TODO, bin/autoreconf.in: `filesystem' -> `file system'.
783         * doc/autoconf.texi (Shell Substitutions): Document `^' vs. `|'.
785 2006-04-05  Eric Blake  <ebb9@byu.net>
787         * lib/autotest/general.m4 (AT_INIT): Prep AT_*_all, so that an
788         empty test suite works.
789         * tests/autotest.at (Empty test suite): Remove xfail.
791 2006-04-05  Noah Misch  <noah@cs.caltech.edu>
793         * lib/autoconf/status.m4 (_AC_CONFIG_FOOS): Do not append normalized
794         TAGS to ac_config_<foo>s.
795         (AC_CONFIG_FILES, AC_CONFIG_HEADERS, AC_CONFIG_LINKS): Do so here.
796         (AC_CONFIG_COMMANDS): Append NAME to ac_config_commands without
797         normalizing it, consistent it with previous releases.
798         * tests/torture.at (Macro calls in AC_CONFIG_COMMANDS tags): New test.
800 2006-04-05  Paul Eggert  <eggert@cs.ucla.edu>
802         * lib/m4sugar/m4sh.m4 (AS_BASENAME_EXPR, AS_DIRNAME_EXPR):
803         Use simplified args that Eric Blake originally suggested.
805 2006-04-04  Paul Eggert  <eggert@cs.ucla.edu>
807         * tests/mktests.sh: Don't use 'cat'; just read the files directly.
808         Prefer 'sort -u' to 'sort | uniq'.  Filter data before sorting it.
809         Use 'comm' rather than N instances of grep; this also fixes a bug
810         whereby substrings were incorrectly matched, causing us to not
811         generate tests for AC_F77_NAME_MANGLING and AC_FUNC_LSTAT.
812         (exclude_list): Exclude empty macros.
813         (ac_exclude_list): Exclude AC_INCLUDES_DEFAULT.
815         Use awk rather than grep -E or egrep, to avoid
816         portability problems with regular expressions containing newlines.
817         (exclude_list, ac_exclude_list, au_exclude_list, ac_exclude_script):
818         Switch from grep to awk syntax.
819         (ac_exclude_script): Renamed from ac_exclude_egrep.
820         (au_exclude_script): Renamed from au_exclude_egrep.
822 2006-04-04  Noah Misch  <noah@cs.caltech.edu>
824         * lib/autoconf/general.m4 (_AC_INIT_HELP): Only `configure.in' evidences
825         a subdirectory subject to Cygnus `configure'.
826         * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): Likewise.
828         * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_MONGREL): Omit the bug
829         report request when we have no AC_PACKAGE_BUGREPORT.
831 2006-04-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
833         * THANKS: Update.
835         * tests/mktests.sh: Update copyright year in the header of the
836         generated files.
838         * lib/autoconf/c.m4 (AC_C_INLINE): Do not skip cleanup code.
839         (AC_C_RESTRICT): Likewise.  Furthermore, add a function with a
840         typedef'ed restricted pointer, to catch a compiler bug on
841         HP-UX 11.x, and fix warnings so it passes with -Werror.
842         (_AC_PROG_CC_C99): Likewise.
843         Reported by Albert Chin <china@thewrittenword.com>.
844         * tests/mktests.sh: Do not skip AC_C_INLINE, AC_C_RESTRICT.
846 2006-04-03  Noah Misch  <noah@cs.caltech.edu>
848         * bin/autoscan.in (subdirs): New global.
849         (scan_file): Prune directories with configure{,.{ac,in,gnu}}.
850         (output): Emit AC_CONFIG_SUBDIRS as needed.
851         * tests/autoscan.at (autoscan): Remove XFAIL.
853 2006-04-03  Noah Misch  <noah@cs.caltech.edu>
855         * lib/autoconf/general.m4 (AC_CACHE_SAVE): Use AC_MSG_NOTICE.
857 2006-04-03  Eric Blake  <ebb9@byu.net>
859         * THANKS: Add myself.
861 2006-04-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
863         * lib/autotest/general.m4 (AT_INIT): Add `at_testdir' to pointer
864         to log, point to testsuite output tree.
866 2006-04-02  Paul Eggert  <eggert@cs.ucla.edu>
868         * NEWS: AC_PROG_CC and AC_PROG_CXX no longer declare 'exit'.
869         * doc/autoconf.texi (Function Portability): Mention that C++
870         has trouble with 'exit'.
871         (Guidelines): Test programs shouldn't use 'exit'.
872         * lib/autoconf/c.m4 (_AC_PROG_CXX_EXIT_DECLARATION):
873         Remove; all uses removed.
874         (AC_LANG_INT_SAVE(C), AC_C_BIGENDIAN):
875         Return from 'main' instead of calling 'exit'.
876         * lib/autoconf/functions.m4 (_AC_LIBOBJ_ALLOCA, AC_FUNC_CLOSEDIR_VOID):
877         (_AC_FUNC_FNMATCH_IF, AC_FUNC_GETGROUPS):
878         (AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK, _AC_FUNC_MALLOC_IF):
879         (AC_FUNC_MEMCMP, AC_FUNC_MKTIME, AC_FUNC_MMAP, _AC_FUNC_REALLOC_IF):
880         (AC_FUNC_SETPGRP, _AC_FUNC_STAT, AC_FUNC_STRTOD, AC_FUNC_STRERROR_R):
881         (AC_FUNC_STRNLEN, AC_FUNC_SETVBUF_REVERSED, AC_FUNC_UTIME_NULL):
882         (_AC_FUNC_FORK, _AC_FUNC_VFORK, AC_FUNC_WAIT3): Likewise.
883         * lib/autoconf/headers.m4 (AC_HEADER_STDC): Likewise.
884         * lib/autoconf/specific.m4 (AC_SYS_RESTARTABLE_SYSCALLS): Likewise.
885         * lib/autoconf/types.m4 (AC_TYPE_GETGROUPS): Likewise.
886         * tests/compile.at: Likewise.
888 2006-04-02  Pavel Roskin  <proski@gnu.org>
890         * doc/autoconf.texi (AC_PATH_X): Update per 2005-08-26 change.
892 2006-04-01  Stepan Kasal  <kasal@ucw.cz>
894         Clean up _AC_COMPILER_EXEEXT* macros.
896         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Don't try to
897           detect exeext, it will be done by _AC_COMPILER_EXEEXT_O; just set
898           ac_file to the name of the default output file and call
899           _AC_COMPILER_EXEEXT_WORKS.  Move the definition of ac_files and the
900           initial `rm' of the candidate files...
901         (_AC_COMPILER_EXEEXT): ... here and simplify them.  Moreover, use
902           the same list in subsequent `rm' calls, and for the temporary
903           redefinition of ac_clean_files; call _AC_COMPILER_OBJEXT at the end,
904           and don't call the other _AC_COMPILER_EXEEXT_* macros directly, use...
905         (_AC_COMPILER_EXEEXT_TESTS): ... this new macro.
906         (_AC_COMPILER_EXEEXT_O): Don't export ac_cv_exeext, it's not needed (or
907           no longer needed) by libtool.  Make it a cache check.
908         (_AC_COMPILER_EXEEXT_CROSS): Remove the comment, it was obviously
909           copied here by mistake.
910         (AC_NO_EXECUTABLES): Redefine _AC_COMPILER_EXEEXT_TESTS, not
911           _AC_COMPILER_EXEEXT.
912         * lib/autoconf/c.m4 (AC_PROG_CC, AC_PROG_CXX, AC_PROG_OBJC): Do not call
913           _AC_COMPILER_OBJEXT directly.
914         * lib/autoconf/fortran.m4 (_AC_PROG_FC): Likewise.
916 2006-04-01  Stepan Kasal  <kasal@ucw.cz>
918         * lib/m4sugar/m4sh.m4 (_AS_DIRNAME_PREPARE): New macro.
919         (AS_DIRNAME): Use it.
920         (_AS_PREPARE): Add _AS_DIRNAME_PREPARE.
922         * tests/*.at: Remove the generated ones.
924 2006-04-01  Stepan Kasal  <kasal@ucw.cz>
926         * lib/autotest/general.m4 (AT_INIT): Don't optimize the first PATH walk.
928 2006-04-01  Eric Blake  <ebb9@byu.net>
930         * lib/m4sugar/m4sh.m4 (_AS_PATH_WALK): Optimize nonexistent
931         directories, unless optional third argument supplied.
932         (AS_UNAME): Don't optimize PATH walk.
934         * lib/Autom4te/Struct.pm, lib/autoconf/c.m4: s/non-existent/nonexistent/
936 2006-04-01  Eric Blake  <ebb9@byu.net>
937         and Stepan Kasal  <kasal@ucw.cz>
939         * lib/m4sugar/m4sh.m4: Sort sections as implied by the comments,
940         and fix some typos.
942 2006-04-01  Noah Misch  <noah@cs.caltech.edu>
944         * lib/autoconf/general.m4 (_AC_INIT_VERSION): Emit script name and
945         Autoconf version number despite a zero- or one-argument AC_INIT.
947         * bin/autoreconf.in (parse_args): Multiple -v send --verbose to
948         subordinate tools.
949         * lib/Autom4te/General.pm (getopt): Make -v and -d incremental.
950         * doc/autoconf.texi (autoreconf Invocation): Document it.
952         * doc/autoconf.texi: Use `Cygwin', `MinGW', and `license' consistently.
953         Append LocalWords so ispell-buffer passes cleanly.  Spelling fixes.
955 2006-04-01  Eric Blake  <ebb9@byu.net>
957         * lib/m4sugar/m4sh.m4 (AS_MKDIR_P): Allow use in shell lists.
958         * lib/autotest/general.m4: Be tolerant of existing directory when
959           rm failed to remove it.
961 2006-04-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
963         * bin/autoupdate.in: Redefine m4_location so that warnings print
964         the correct lines of the input file by subtracting..
965         (_au__first_line): ..this new definition.
967         * lib/autoconf/general.m4 (AC_COMPILE_CHECK): Prefer
968         AC_MSG_CHECKING over obsolete AC_CHECKING in autoupdated code.
969         Remove stray newline in output.
970         (AC_FOREACH): AU_DEFUN this as literal for autoupdate, and also
971         AC_DEFUN this for autoconf, including the obsoletion diagnose.
972         Fixes autoupdating of code where the replacement output contains
973         m4sugar macros.
974         * lib/autoconf/lang.m4 (AC_LANG_SAVE): Likewise.
975         * tests/mktests.sh (ac_exclude_list): Add AC_FOREACH.
976          (au_exclude_list): Add AC_LANG_SAVE.
977         * tests/tools.at: Several new tests for all of this.
978         * doc/autoconf.texi (Obsoleting Macros): Give a hint about the
979         hairy details.
980         The AC_LANG_SAVE issue was reported against Libtool by
981         Dalibor Topic <robilad@kaffe.org>, and against Autoconf 2.57 by
982         Kristian Kvilekval <kris@cs.ucsb.edu>.
984 2006-04-01  Stepan Kasal  <kasal@ucw.cz>
986         * bin/autoupdate.in: Handle m4 builtins and m4sugar macros together--
987           switch all of them on and of when necessary.  Fixes the bug when
988           m4sugar macros (e.g., m4_define) were expanded after the first
989           automatic update (e.g., after AC_PREREQ or AC_INIT).
991 2006-03-31  Paul Eggert  <eggert@cs.ucla.edu>
993         * doc/autoconf.texi (Programming in M4sh): Sharpen the descriptions
994         of AS_BASENAME and AS_DIRNAME.  Reported by Stepan Kasal.
996         * lib/m4sugar/m4sh.m4 (AS_BASENAME_EXPR): Handle ///, ////, etc.
997         correctly.  Problem reported by Eric Blake.
998         (_AS_EXPR_PREPARE): Detect Tru64 expr bug.  Problem reported by
999         Ralf Wildenhues.
1001 2006-03-30  Paul Eggert  <eggert@cs.ucla.edu>
1003         * doc/autoconf.texi (Programming in M4sh, Limitations of Usual Tools):
1004         Tighten up the basename/dirname wording.
1006 2006-03-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1008         * Makefile.maint (sc_texi_notab): New check: do not use TABs
1009         in texinfo files outside of verbatim environments.
1010         (syntax-check-rules): Update.
1011         * doc/autoconf.texi (Configuration Headers): Conform to it.
1013 2006-03-30  Chris Pickett <cpicke@cs.mcgill.ca>  (tiny change)
1015         * doc/autoconf.texi (autoreconf Invocation): Mention that -I for
1016           aclocal cannot be given on the command line.
1018 2006-03-29  Paul Eggert  <eggert@cs.ucla.edu>
1020         * doc/autoconf.texi (Programming in M4sh): Mention AS_BASENAME.
1021         Give an example for AS_DIRNAME instead of referring to Posix..
1022         (File System Conventions): Put discussion of // versus / here, and
1023         modernize it a bit.
1024         (Limitations of Usual Tools): Add basename.  Remove verbiage
1025         after dirname, since it got moved to the above sections.
1026         All this was inspired by a patch proposed earlier by Eric Blake.
1028 2006-03-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1030         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Quote
1031         `$0' to protect against spaces.
1032         * lib/autotest/general.m4 (AT_INIT): Likewise.
1033         * lib/m4sugar/m4sh.m4 (_AS_LINENO_PREPARE): Likewise, for
1034         `$0', $as_me.
1036 2006-03-26  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1038         * bin/autoscan.in: The value of find_configure_ac should be
1039         checked for existence, so we don't barf over a nonexisting
1040         configure.ac.  Reported by Laurence Darby <ldarby@tuffmail.com>.
1042 2006-03-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1044         * bin/autoupdate.in: Fix some typos.
1046 2006-03-21  Stepan Kasal  <kasal@ucw.cz>
1048         * doc/autoconf.texi (Installation Directory Variables): Fix typo.
1050         * lib/autoscan/autoscan.list: Refreshed.
1052 2006-03-20  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1054         * tests/local.at (AT_CHECK_ENV): Ignore AC_SUBSTed Objective C
1055         and Erlang related variables.
1057         * lib/autoconf/c.m4 (AC_LANG(Objective C), AC_LANG_OBJC)
1058         (_AC_LANG_ABBREV(Objective C), _AC_LANG_PREFIX(Objective C))
1059         (AC_LANG_SOURCE(Objective C), AC_LANG_PROGRAM(Objective C))
1060         (AC_LANG_CALL(Objective C), AC_LANG_FUNC_LINK_TRY(Objective C))
1061         (AC_LANG_BOOL_COMPILE_TRY(Objective C))
1062         (AC_LANG_INT_SAVE(Objective C), AC_LANG_PREPROC(Objective C))
1063         (AC_PROG_OBJCPP, AC_LANG_COMPILER(Objective C), AC_PROG_OBJC)
1064         (_AC_PROG_OBJC_G): New macros.
1065         (_AC_ARG_VAR_CPPFLAGS): Adjusted.
1066         * doc/autoconf.texi (Objective C Compiler): New node.
1067         (Preset Output Variables): Document OBJCFLAGS.
1068         (Language Choice): Document `Objective C' language.
1069         (Fortran Compiler): Fix typo.
1070         * NEWS: Updated.
1071         Inspired by a patch from David M. Lloyd <dmlloyd@tds.net>.
1073 2006-03-20  Stepan Kasal  <kasal@ucw.cz>
1075         * doc/autoconf.texi (Default Includes): Fix typo
1076           s/AC_HEADERS_STDC/AC_HEADER_STDC/
1077         (Limitations of Usual Tools): s/unwriteable/unwritable/
1078         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT, _AC_COMPILER_EXEEXT):
1079           Fix typos in the comments.
1081 2006-03-17  Stepan Kasal  <kasal@ucw.cz>
1083         * lib/autoconf/programs.m4 (AC_PATH_TOOL, AC_CHECK_TOOL, AC_CHECK_TOOLS):
1084           Factor out the warning to...
1085         (_AC_TOOL_WARN): ... this new macro; use `cross_compiling'.
1086         * tests/local.at (AT_CHECK_MACRO_CROSS): Avoid this warning.
1087         * tests/semantics.at (AC_C_BIGENDIAN): Likewise.
1089         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE): Do not special
1090           case `ac_delim' when writing the sed script.
1092         * lib/m4sugar/m4sh.m4 (AS_BOURNE_COMPATIBLE): Removed BIN_SH=xpg4,
1093           moved DUALCASE=1 ...
1094         (AS_SHELL_SANITIZE): ... here.
1095         * doc/autoconf.texi (Special Shell Variables) <BIN_SH>: Do not say
1096           that it is set.
1098         * lib/autoconf/programs.m4 (AC_CHECK_PROG): Quote the parameter of
1099           AC_SUBST.
1100         (_AC_PATH_PROG): Store the result to VARIABLE.
1101         (AC_PATH_PROG): No need to set VARIABLE again.
1103         * tests/local.at (AT_CHECK_MACRO_CROSS): New macro, creates two tests:
1104           the first one is usual AT_CHECK_MACRO test, the second one checks
1105           that the same works when cross-compiling.
1106         * tests/semantics.at (AC_CHECK_ALIGNOF, AC_CHECK_ALIGNOF struct):
1107         (AC_CHECK_SIZEOF, AC_CHECK_SIZEOF struct): Use it.
1109 2006-03-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1111         * lib/m4sugar/m4sh.m4 (_AS_DETECT_BETTER_SHELL): Prepend
1112         the directory `/usr/bin/posix' in the shell search, to prefer
1113         the Posix shell not only in subsequent spawns as with `$BIN_SH'
1114         on Tru64.
1116         * doc/autoconf.texi (contents): To fix texi2html output, hide
1117         `@setcontentsaftertitlepage' for HTML.
1118         (Writing Autoconf Macros): Likewise, insert space after `@c'.
1119         (Leviticus, Numbers, Deuteronomy): Likewise, change `@,c' to
1120         `@,{c}'.
1122 2006-03-16  Stepan Kasal  <kasal@ucw.cz>
1124         * lib/m4sugar/m4sh.m4 (_AS_PREPARE): Move the IFS setup and CDPATH
1125           sanitizing...
1126         (AS_SHELL_SANITIZE): ...here; mention _AS_PATH_WALK needs IFS set.
1127         * lib/autoconf/general.m4 (_AC_CANONICAL_SPLIT): Add an explanation
1128           why IFS is restored so late; thank you, Ralf, for reminding us.
1130 2006-03-15  Stepan Kasal  <kasal@ucw.cz>
1132         * doc/autoconf.texi (Pretty Help Strings): No need to use cached
1133           variables in the examples.
1135 2006-03-14  Romain Lenglet  <rlenglet@users.forge.objectweb.org>
1137         * doc/autoconf.texi (several sections): Cleaned up documentation for
1138         macros in erlang.m4.
1140 2006-03-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1142         * tests/autotest.at (AT_NO_CMDSUBST): New macro to determine
1143         failure condition for `$(cmd)' style command substitutions.
1144         (Parenthetical command substition, Multiline parenthetical
1145         command substition): Use it.
1147         * doc/autoconf.texi (Special Shell Variables): Missing word.
1148         Reported by Keith Marshall <keith.marshall@total.com>.
1150         * lib/m4sugar/m4sh.m4 (_AS_PATH_WALK): Do not forget to reset
1151         IFS even in case of empty `$PATH'.
1153 2006-03-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1155         * lib/autotest/general.m4 (AT_INIT) <at_optarg>: Optimize
1156         `expr' away if there is nothing to do.
1157         < --keywords >: Simplify and robustify argument handling.
1158         Revert erroneous comment from 2005-08-23.  Extend to allow
1159         keyword negation with `!'.
1160         Update help message.  Remove broken code to prevent running
1161         tests multiple times.
1162         * doc/autoconf.texi (testsuite Invocation) < --keywords >:
1163         Update and fix the documentation accordingly.
1164         * tests/autotest.at (Keywords): Renamed to..
1165         (Keywords and ranges): .. this.  Extended to make sure negated
1166         keywords, keywords taken from AT_SETUP arguments, and numeric
1167         test ranges work, and that matching is case-insensitive.
1169 2006-03-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1171         * lib/autoconf/types.m4 (_AC_CHECK_TYPE_NEW): Use a typedef to
1172         allow to pass unnamed structs even in C++.
1173         (AC_CHECK_SIZEOF):  Likewise.
1174         Also fix quoting error in `AC_MSG_FAILURE' arguments.
1175         * tests/semantics.at (AC_CHECK_ALIGNOF struct, AC_CHECK_SIZEOF
1176         struct): New tests for unnamed structs, each both native and
1177         cross-compiling.
1179         * lib/autoconf/c.m4 (AC_C_TYPEOF): Use typedef to avoid defining
1180         a structure inside a cast, for C++ conformance.
1181         * lib/autoconf/types.m4 (AC_CHECK_ALIGNOF): Likewise.
1182         Also fix quoting error in `AC_MSG_FAILURE' arguments.
1184         * lib/autoconf/c.m4 (AC_PROG_CC_STDC): If we cannot enable C99
1185         nor C89 mode, set `$ac_cv_prog_cc_stdc' to `no' instead of
1186         trying to execute the command `no'.
1188         * lib/autoconf/lang.m4 (AC_LANG_CONFTEST): AC_DEFUN this, not
1189         m4_define, so that the requirements of `AC_INCLUDES_DEFAULT' are
1190         expanded outside.
1192         * doc/autoconf.texi (autoconf Invocation): Fix typos in trace
1193         example.  Do not emphasize `$%', it is hardly new and special.
1194         Reported by Edouard Bechetoille <ebecheto@ens-lyon.fr>.
1196         * doc/autoconf.texi (Limitations of Usual Tools): Document
1197         OpenBSD and traditional `grep' failure to handle multiple
1198         patterns separated by newlines.
1200 2006-03-10  Romain Lenglet  <rlenglet@users.forge.objectweb.org>
1202         * doc/autoconf.texi (several sections): Add documentation for macros
1203         in erlang.m4.
1205 2006-03-10  Eric Blake  <ebb9@byu.net>
1207         * doc/autoconf.texi (Obsolete Macros): Fix wording of
1208         AC_TRY_LINK_FUNC.
1210 2006-03-10  Paul Eggert  <eggert@cs.ucla.edu>
1212         * doc/autoconf.texi: Use @acronym more consistently for acronyms
1213         like BSD, GPL, LGPL.  Fix minor English typos.
1214         (AC_STDC_HEADERS, AC_PROG_GCC_TRADITIONAL):
1215         Mention that these macros are becoming obsolete.
1216         (AC_STDC_HEADERS, AC_PROG_CC, AC_C_CONST, AC_C_VOLATILE):
1217         Use more modern terminology for which standard is what.
1218         (AC_PROG_CC): Mention gcc first, and remove obsolete references to egcs
1219         and to ansi2knr.
1220         (AC_PROG_CXX): Likewise.
1221         (AC_C_PROTOTYPES, Test Functions, AC_LIBOBJ vs LIBOBJS):
1222         Remove obsolete discussion about how to port to K&R.
1223         (Guidelines for Test Programs): Suggest AC_HEADER_STDBOOL rather than
1224         the obsolescent AC_HEADER_STDC.
1225         (AC_FOO_IFELSE vs AC_TRY_FOO): Don't use #error; test programs
1226         can't rely on it.
1228 2006-03-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1230         * tests/c.at (AC_PROG_CPP without warnings, AC_PROG_CPP via CC):
1231         Remove stdin redirection from /dev/null to allow pipe to work.
1233 2006-03-08  Paul Eggert  <eggert@cs.ucla.edu>
1235         * tests/c.at (AC_PROG_CPP without warnings, AC_PROG_CPP via CC):
1236         Require that /lib/cpp include stdio.h correctly.  Solaris 10's
1237         doesn't.  Problem reported by D'Arcy A MacIsaac and diagnosed by
1238         Ralf Wildenhues.
1240 2006-03-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1242         * lib/autoconf/status.m4 (_AC_SED_CMD_LIMIT): The limit for
1243         HP-UX sed is 99 commands, not 100.
1244         (_AC_OUTPUT_FILES_PREPARE): Do not count the `}' of an
1245         _AC_SUBST_FILES fragment.  Separate `{' and `r' commands by
1246         newline for portability.
1247         * tests/torture.at (Torturing config.status): Also test 100
1248         AC_SUBST_FILE invocations.  Fix test to actually verify the
1249         AC_CONFIG_FILES output.
1250         * doc/autoconf.texi (Limitations of Usual Tools): Document HP-UX
1251         command, label, and read-file `r' limits.  Unify HP-UX spelling.
1253         * tests/Makefile.am (edit, $(wrappers)): Do not use `$<' in
1254         non-suffix rule.
1255         ($(TESTSUITE_GENERATED_AT)): Use `$(srcdir)` for the benefit of
1256         non-GNU make.
1257         (autoconfdir, $(AUTOCONF_FILES)): Likewise.
1258         * tests/mktests.sh: Small shell portability fixes.
1260 2006-03-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1262         * doc/autoconf.texi (Caching Results): Fix the examples to use a
1263         recommended quoting style and discard unwanted output.
1265 2006-03-05  Paul Eggert  <eggert@cs.ucla.edu>
1267         * lib/autotest/general.m4 (_AT_NORMALIZE_TEST_GROUP_NUMBER): New macro.
1268         (AT_INIT): Use it, to remove arbitrary limit of 999,999 test
1269         cases, and to work around Tru64 expr bug.
1271 2006-03-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1273         * doc/autoconf.texi (Limitations of Usual Tools): Mention Tru64
1274         expr bug that turns the result of a regex match into a number if
1275         possible.
1277 2006-03-04  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1279         * lib/autoconf/types.m4 (AC_CHECK_ALIGNOF): Work around
1280         HPUX compiler bug, similarly to AC_CHECK_SIZEOF, as documented
1281         in section `Specific Compiler Characteristics'.
1283 2006-03-04  Eric Blake  <ebb9@byu.net>
1285         * lib/autoconf/functions.m4 (AC_FUNC_STRERROR_R): Avoid unused
1286         variable warning.
1288 2006-03-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1290         * lib/autoconf/status.m4 (_AC_OUTPUT_HEADER): Force correct
1291         order of variable initialization, so even the Solaris 2.6 shell
1292         can create a config header correctly.  Fixes lots of test suite
1293         failures.
1295 2006-02-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1297         * doc/autoconf.texi (Text processing Macros): New node to
1298         document the m4sugar macros m4_re_escape, m4_tolower,
1299         m4_toupper, m4_split, m4_normalize, m4_append, m4_append_uniq.
1301 2006-02-22  Paul Eggert  <eggert@cs.ucla.edu>
1303         * lib/autoconf/libs.m4 (_AC_PATH_X_DIRECT): Fix typo:
1304         XrmInitialize (0) -> XrmInitialize ().
1305         Reported by Toshio Kuratomi.
1307 2006-02-21  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1309         * lib/m4sugar/m4sh.m4 (AS_IF): Extend to allow more than one
1310         test, as in `if tests; then cmd1; elif ...; else ...; fi'.
1311         * doc/autoconf.texi (Programming in M4sh): Adjusted.
1312         * tests/m4sh.at (AS_IF and AS_CASE): Test this.  Also make sure
1313         both macros are defun'ed so that required macros are evaluated
1314         outside.
1316         * doc/autoconf.texi (Prerequisite Macros): State more precisely
1317         where a required macro will be expanded.
1318         (Coding Style): Another reason not to use `m4_define'.
1320 2006-02-21  Eric Blake  <ebb9@byu.net>
1322         * lib/autoconf/general.m4 (_AC_LIBOBJ): Minor optimization.
1324 2006-02-20  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1326         * doc/autoconf.texi (Looping constructs): New node, to
1327         document m4_for, m4_foreach, m4_foreach_w, and mention
1328         obsolete AC_FOREACH.
1329         (Obsolete Macros): Document AC_FOREACH.
1330         * lib/m4sugar/m4sugar.m4 (_m4_for): Fix declaration comment.
1331         (m4_for): Fix to never loop (almost) endlessly, work correctly
1332         with arithmetic expressions in arguments, a step of zero or
1333         non-integer multiple of the interval, and avoid integer
1334         overflow.
1335         * tests/m4sugar.at: New test for m4_for, m4_foreach, and
1336         m4_foreach_w.
1338 2006-02-20  Romain Lenglet  <rlenglet@users.forge.objectweb.org>
1340         Add basic support for Erlang, both for configuring Erlang/OTP
1341         tools, and Erlang as a conf test language.
1342         * lib/autoconf/erlang.m4: New file.
1343         * lib/autoconf/autoconf.m4: Add erlang.m4.
1344         * lib/autoconf/Makefile.am (dist_autoconflib_DATA): Likewise.
1345         * lib/freeze.mk (autoconf_m4f_dependencies): Likewise.
1346         * NEWS: Add short description of new macros.
1347         * THANKS: Add Romain Lenglet.
1349 2006-02-20  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1351         * doc/autoconf.texi (Shellology) <pdksh>: Document that pdksh as
1352         native /bin/sh may not set KSH_VERSION (seen on OpenBSD).
1354 2006-02-15  Eric Blake  <ebb9@byu.net>
1356         * lib/autoconf/general.m4 (AC_CHECK_DECL): Avoid unused variable
1357         warning.
1359 2006-02-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1361         * lib/m4sugar/m4sh.m4 (AS_CASE): New macro.
1362         (_AS_CASE): Private helper macro.
1363         * tests/m4sh.at: Basic tests for AS_IF and AS_CASE.
1364         * doc/autoconf.texi (Programming in M4sh): Document AS_CASE.
1365         Fix syntax of AS_IF description
1366         (Prerequisite Macros): Mention AS_IF and AS_CASE as workarounds
1367         for the AC_REQUIRE mess.
1368         * NEWS: Mention AS_CASE, AS_BOURNE_COMPATIBLE, and
1369         AS_SHELL_SANITIZE.
1371 2006-02-14  Paul Eggert  <eggert@cs.ucla.edu>
1373         * doc/autoconf.texi: Minor style cleanup.
1374         Be consistent about spaces after commas.
1375         Insert [] where empty args look a bit funny.
1376         Fix some "i.e." and "e.g." usages.
1377         Try to avoid "X/Y" usages.
1378         Don't be pedantic about "ISO C99"; just say C99.
1379         Prefer GNU style for spaces in front of parens.
1380         (Function Portability): Comment about C89 versus C99
1381         signed integer division.
1382         (Particular Headers): Use current gnulib style for dirent
1383         includes.
1385 2006-02-14  Stepan Kasal  <kasal@ucw.cz>
1386         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1388         * bin/autoupdate.in (handle_autoconf_macros): Fix updating of
1389         macros without parameters.
1390         * lib/autoconf/autoupdate.m4 (AU_ALIAS): Likewise.
1391         * doc/autoconf.texi (Obsoleting Macros): Document AU_ALIAS.
1392         * tests/tools.at (autoupdating AU_ALIAS): New test for AU_ALIAS
1393         `$#' bug.
1394         (autoupdate): Updated to match AU_ALIAS fix.
1396 2006-02-13 Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1397         and Paul Eggert  <eggert@cs.ucla.edu>
1399         * doc/autoconf.texi (Programming in M4sh): Document
1400         AS_BOURNE_COMPATIBLE and AS_SHELL_SANITIZE.
1402 2006-02-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1404         * lib/m4sugar/m4sh.m4 (_AS_BOURNE_COMPATIBLE): Renamed to..
1405         (AS_BOURNE_COMPATIBLE): ..this.
1406         (_AS_RUN, AS_SHELL_SANITIZE): Adjusted all callers.
1408 2006-02-12  Paul Eggert  <eggert@cs.ucla.edu>
1410         * doc/install.texi (Defining Variables): Tighten up the
1411         CONFIG_SHELL wording.
1413 2006-02-12 Paul Eggert  <eggert@cs.ucla.edu>
1414         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1416         * lib/m4sugar/m4sh.m4 (_AS_BOURNE_COMPATIBLE): Look at the output
1417         of (set -o) rather than testing whether (set -o posix) succeeds,
1418         to work around a bug in the AIX 5.3 shell.  Problem originally
1419         reportd by Howard Chu for libtool.
1421 2006-02-10  J.T. Conklin  <jtc@acorntoolworks.com>
1423         * doc/autoconf.texi (Running the Compiler, Running the Linker):
1424         Changes the macro arguments in summaries to match the
1425         descriptions.
1427 2006-02-04  Stepan Kasal  <kasal@ucw.cz>
1429         * doc/install.texi (Defining Variables): Classify the `CONFIG_SHELL'
1430         hint as ``a workaround for a bug.''
1432 2006-01-31  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1434         * bin/autoreconf.in: New option `--no-recursive'.
1435         Improve wording for subpackages a bit.
1436         * doc/autoconf.texi (autoreconf Invocation): Updated.
1437         * NEWS: Updated.
1439         * doc/install.texi (Defining Variables): Put `CONFIG_SHELL'
1440         in environment of `configure', not the command line.
1441         Reported by Howard Chu <hyc@highlandsun.com>.
1443 2006-01-25  Paul Eggert  <eggert@cs.ucla.edu>
1445         * doc/autoconf.texi (Limitations of Builtins): Document the
1446         problem with "trap -".
1448 2006-01-23  Steven G. Johnson  <stevenj@fftw.org>
1450         * lib/autoconf/fortran.m4 (_AC_FC_LIBRARY_LDFLAGS, _AC_FC_DUMMY_MAIN):
1451         (_AC_FC_MAIN, __AC_FC_NAME_MANGLING): Use _AC_LANG in check
1452         messages to differentiate Fortran and Fortran 77 tests.
1453         (AC_FC_SRCEXT, AC_FC_FREEFORM): Use AC_LANG_PUSH/POP instead of
1454         AC_LANG_ASSERT, to allow use in mixed-language projects.
1456 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
1458         * lib/autoconf/c.m4 (AC_LANG_FUNC_LINK_TRY(C)): Prefer "defined
1459         FOO" to "defined (FOO)".
1460         * lib/autoconf/functions.m4 (_AC_LIBOBJ_ALLOCA): Likewise.
1461         * lib/autoconf/headers.m4 (AC_HEADER_STAT): Likewise.
1462         * lib/autoconf/specific.m4 (AC_XENIX_DIR): Likewise.
1463         * tests/tools.at (ifnames): Likewise.
1465 2006-01-21  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1467         * lib/m4sugar/m4sh.m4 (AS_TMPDIR): Do not pass `-q' to mktemp.
1468         * lib/Autom4te/General.pm (mktmpdir): Likewise.
1469         (END): Improve error message a bit.
1470         Reported by Bruce Korb <bkorb@gnu.org>.
1472 2006-01-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1474         * lib/autoconf/fortran.m4 (_AC_FC_LIBRARY_LDFLAGS): Ignore
1475         `-LIST:' and `-LNO:', for PathScale 2.3 compilers.
1477 2006-01-11  Stepan Kasal  <kasal@ucw.cz>
1479         * doc/autoconf.texi (Header Portability): On Solaris 8, sys/ptem.h
1480         requires sys/stream.h.  Reported by Oliver Kiddle.
1482 2006-01-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1483             Stepan Kasal  <kasal@ucw.cz>
1485         * lib/autotest/general.m4 (AT_INIT): When ensuring writability
1486         before the removals of test dirs, use `find' to avoid modification
1487         of symlinked directories.
1489 2006-01-11  Steven G. Johnson  <stevenj@alum.mit.edu>
1491         * lib/autoconf/fortran.m4 (AC_F77_DUMMY_MAIN, AC_FC_DUMMY_MAIN):
1492         Don't ignore the macro arguments.
1494 2006-01-11  David Thompson  <dthompsn@vizsolutions.com>
1496         * lib/autoconf/c.m4 (_AC_PROG_CXX_EXIT_DECLARATION): Add `exit'
1497         declaration that works for MSVC.
1499 2006-01-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1501         * lib/autoconf/lang.m4 (_AC_COMPILER_OBJEXT_REJECT):
1502         Add `*.map' and `.inf' for Green Hills compiler.
1503         Reported by Stefan Seefeld <stefan@codesourcery.com>.
1505         * lib/m4sugar/m4sugar.m4 (m4_text_wrap): Handle quadrigraphs
1506         correctly: pad with spaces after FIRST_PREFIX if necessary,
1507         and compute string lenghts with `m4_qlen' instead of `m4_len'.
1508         * lib/m4sugar/m4sh.m4 (AS_HELP_STRING): Comments updated.
1509         * tests/m4sh.at (AS_HELP_STRING): Test extended.
1510         * NEWS: Updated.
1511         Reported by numerous people, numerous times.
1513 2006-01-05  Paul Eggert  <eggert@cs.ucla.edu>
1515         * bin/autoconf.as, bin/autoheader.in, bin/autom4te.in
1516         * bin/autoreconf.in, bin/autoscan.in, bin/autoupdate.in, bin/ifnames.in:
1517         * lib/autoconf/general.m4, lib/autoconf/status.m4:
1518         * lib/autotest/general.m4, tests/local.at:
1519         Update copyright year to 2006.
1521         * Makefile.maint (sc_root_tests): Use the recommended style s/a/b/ for
1522         sed substitutions.
1523         * doc/autoconf.texi (Installation Directory Variables): Use s|a|b|
1524         for file names, again.  Reported by Noah Misch.
1525         (Coding Style): Explain that s|a|b| is preferred for file names.
1526         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE): Prefer s/a/b/.
1527         (AC_OUTPUT_MAKE_DEFS): Likewise.
1528         * lib/autotest/general.m4 (AT_INIT): Likewise.
1529         * lib/m4sugar/m4sh.m4 (_AS_LINENO_PREPARE): Likewise.
1530         * tests/local.at (AT_CHECK_AUTOM4TE): Likewise.
1532         Fix Posix-conformance bugs re use of { command in sed scripts,
1533         and improve the sed-related documentation a bit.
1534         * doc/autoconf.texi (Installation Directory Variables): Use
1535         our own style advice re 's,a,b,' versus 's|a|b|'.  Use "Sed"
1536         rather than "sed" when talking about Sed in general.
1537         (Particular Programs): Likewise.
1538         (Coding Style): y is like s with respect to / and ,.
1539         (Limitations of Usual Tools): Document the weird restrictions
1540         that Posix has about { }.  Use better quoting.
1541         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE, _AC_OUTPUT_HEADER):
1542         Rewrite to conform to Posix rules about { } in sed scripts.
1543         * lib/m4sugar/m4sh.m4 (AS_DIRNAME_SED, AS_BASENAME_SED): Likewise.
1544         * tests/foreign.at (Libtool): Likewise.
1545         * tests/semantics.at (AC_CHECK_PROG & AC_CHECK_PROGS):
1546         Use our own style advice re 's,a,b,' versus 's|a|b|'.
1548 2006-01-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1550         * lib/autoconf/status.m4: Fix typo.
1552         * lib/autoconf/fortran.m4 (_AC_FC_LIBRARY_LDFLAGS): Ignore
1553         singly- or doubly-quoted arguments to `-cmdline', `-ignore',
1554         `-def', for the benefit of Portland `pgf90 -Mipa'.
1555         Reported by Christopher Hulbert <cchgroupmail@gmail.com>.
1557 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
1559         * doc/autoconf.texi: Update copyright (and other) dates to 2006.
1560         * doc/autoconf.texi (Shellology): Mac OS X 10.2 changed the default
1561         shell from zsh to bash.
1563 2005-12-31  Stepan Kasal  <kasal@ucw.cz>
1565         * lib/autoconf/programs.m4 (_AC_PROG_GREP): Use $PATH_SEPARATOR;
1566           ":" caused problems on OS/2-EMX.  Suggested by Andrew Belov.
1568 2005-12-29  Paul Eggert  <eggert@cs.ucla.edu>
1570         * doc/autoconf.texi (Shell Substitutions): Warn about unbalanced
1571         parentheses in $(...).  Problem reported by Eric Blake.
1573 2005-12-12  Paul Eggert  <eggert@cs.ucla.edu>
1575         * doc/autoconf.texi (Limitations of Usual Tools):
1576         Mention which characters can be escaped with \ in portable regular
1577         expressions used in grep, sed, expr.  Mention the leading ^ problem
1578         with expr.  Clean up some confusing wording.  Mention which
1579         grep options are portable.
1581 2005-12-09  Stepan Kasal  <kasal@ucw.cz>
1583         * tests/local.at (AT_CHECK_AUTOM4TE): Fix typo in the comment.
1585 2005-12-02  Paul Eggert  <eggert@cs.ucla.edu>
1587         * doc/autoconf.texi (Limitations of Builtins): Fix typos in previous
1588         patch, noted by Ralf Wildenhues.
1590 2005-12-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1592         * lib/m4sugar/m4sh.m4 (_AS_BOURNE_COMPATIBLE): Try `set -o
1593         posix' unconditionally, for pdksh in `native sh' emulation.
1595 2005-12-01  Paul Eggert  <eggert@cs.ucla.edu>
1597         * doc/autoconf.texi (Shellology): Document eval $? problem
1598         with ash.
1599         (Limitations of Builtins): Likewise.
1601 2005-11-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1603         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Pass
1604         CONFIG_SHELL in the environment of the configure rerun.
1605         * doc/autoconf.texi (Here-Documents, config.status Invocation):
1606         Suggest passing CONFIG_SHELL absolute, and in the environment
1607         rather than as option.
1609 2005-11-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1611         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE):
1612         Fix quoting of output line (triggered for many AC_SUBST_FILEs).
1613         Fix macro quoting.  Fix output for n * 98 substituted variables.
1615 2005-11-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1617         * lib/autoconf/status.m4 (_AC_OUTPUT_MAIN_LOOP): Initialize
1618         `tmp' to avoid file removal race.
1620 2005-11-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1622         * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS): Initialize
1623         ac_clean_files and LIBOBJS.
1625 2005-11-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1627         * lib/autoconf/programs.m4 (AC_CHECK_PROG, AC_PATH_PROG):
1628         Factor functionality to..
1629         (_AC_CHECK_PROG, _AC_PATH_PROG): these new macros, but only
1630         `AC_SUBST($1)' in the public version.
1631         (AC_CHECK_TOOL, AC_PATH_TOOL, AC_PATH_TARGET_TOOL)
1632         (AC_CHECK_TARGET_TOOL): Use internal versions for ac_ct_* and
1633         ac_pt_* variables.
1635 2005-11-01  Stepan Kasal  <kasal@ucw.cz>
1637         * lib/autoconf/c.m4 (AC_PROG_CC_C_O): Remove the comment about 8+3
1638         filesystems.
1640 2005-11-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1642         * NEWS: Move AH_HEADER mention to right place.
1644 2005-10-27  Stepan Kasal  <kasal@ucw.cz>
1646         * lib/autoconf/c.m4 (AC_PROG_CC_C_O): "conftst2" -> "conftest2"
1647         * lib/autoconf/fortran.m4 (_AC_PROG_FC_C_O): Likewise.
1649 2005-10-25  Stepan Kasal  <kasal@ucw.cz>
1651         * lib/autoconf/c.m4 (AC_PROG_CC_C_O): rm -f conftst2.*, not only
1652         conftst2.$ac_objext.
1653         * lib/autoconf/fortran.m4 (_AC_PROG_FC_C_O): Likewise.
1655 2005-10-24  Stepan Kasal  <kasal@ucw.cz>
1657         * lib/autoconf/c.m4 (AC_PROG_CC_C_O): Use conftst2.o instead of
1658         conftest.o, to see whether the compiler really obeys; rm the object
1659         file before and after the test and register it with ac_clean_files.
1660         * lib/autoconf/fortran.m4 (_AC_PROG_FC_C_O): Likewise.
1662 2005-10-21  Stepan Kasal  <kasal@ucw.cz>
1664         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE): When determining,
1665         the delimiter CEOF$ac_eof: fix quoting of CEOF[0-9]* and modify the
1666         code so that the most common case requires less forks.
1668 2005-10-20  Stepan Kasal  <kasal@ucw.cz>
1670         * doc/autoconf.texi (Shell Substitutions}: Document that ${10} is
1671         not portable; thanks to Paul Eggert and Alexandre.
1673         * NEWS: Fix an old typo.
1675 2005-10-20  Jim Meyering  <jim@meyering.net>
1677         * doc/autoconf.texi: Typo: s/feature/features/ in ``the features of
1678         the latter'', in two places.
1680 2005-10-19  Paul Eggert  <eggert@cs.ucla.edu>
1682         * doc/autoconf.texi (Generating Sources): AC_LANG_PROGRAMS ->
1683         AC_LANG_PROGRAM, fixing a typo.  Don't give details about
1684         the inner workings of AC_LANG_FUNC_LINK_TRY.
1685         * lib/autoconf/c.m4 (AC_LANG_CALL(C)): Reformat to match
1686         AC_LANG_FUNC_LINK_TRY.  This involves returning the value returned
1687         by the function rather than ignoring it.
1688         (AC_LANG_FUNC_LINK_TRY(C)): Call the function rather than simply
1689         comparing its address.  Intel's interprocedural optimization was
1690         outsmarting the old heuristic.  Problem reported by
1691         Mikulas Patocka.
1693 2005-10-19  Stepan Kasal  <kasal@ucw.cz>
1695         * lib/autoconf/general.m4 (AC_SUBST): Remove an obsolete comment.
1697 2005-10-05  Paul Eggert  <eggert@cs.ucla.edu>
1699         * lib/m4sugar/m4sugar.m4 (_m4_map): New macro.
1700         (m4_map, m4_map_sep): Use it.  Handle the empty list correctly.
1702 2005-10-04  Stepan Kasal  <kasal@ucw.cz>
1704         * lib/autotest/general.m4 (AT_INIT): Really make the subtree writable
1705         before removing it (chmod -R u+rwx); there are three instances of this.
1707 2005-10-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1708             Stepan Kasal  <kasal@ucw.cz>
1710         * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): Balance parentheses.
1711         * lib/autotest/general.m4 (AT_INIT): If the test dir already exists,
1712         make its content writable before removing it.  Remove an errorneous
1713         comment from the end, where the logs of the failed tests are copied
1714         to the main log file.
1716 2005-09-27  Stepan Kasal  <kasal@ucw.cz>
1718         * tests/semantics.at (AC_C_BIGENDIAN): Pass --force to autoheader,
1719           in case the computer is too quick.  Double quote the configure.ac
1720           snippets.
1722         * tests/local.at (AT_CHECK_AUTOCONF): Always pass --force to prevent
1723           problems if the testsuite were running too fast.
1725 2005-09-18  Paul Eggert  <eggert@cs.ucla.edu>
1727         * lib/autoconf/libs.m4 (_AC_PATH_X_DIRECT): Look for X11/Xlib.h
1728         and XrmInitialize rather than X11/Intrinsic.h and XtMalloc
1729         (which belong to Xt, not X itself).  See Debian bug 327655.
1730         * NEWS: Mention this.
1732 2005-09-07  Stepan Kasal  <kasal@ucw.cz>
1734         * lib/autoconf/c.m4 (AC_LANG_SOURCE(C)): Remove an incorrect comment.
1736 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
1738         * config/move-if-change: Don't output "$2 is unchanged";
1739         suggested by Ben Elliston.  Handle weird characters correctly.
1741 2005-09-06  Stepan Kasal  <kasal@ucw.cz>
1743         * lib/autoconf/libs.m4 (AC_SEARCH_LIBS): Merge the two AC_LINK_IFELSE
1744           calls, so that the final expansion of this macro is shorter.
1745           Create the conftest.$ac_ext outside the `for' loop, to speed the run.
1746           Do not use `break' in the argument to AC_LINK_IFELSE, it would skip
1747           the cleanup there.  Use AS_VAR_* macros, to be more general.
1748         * tests/semantics.at (AC_SEARCH_LIBS): Check for the cleanup.
1750         * lib/autoconf/general.m4: Use AS_IF where appropriate.
1752         * lib/m4sugar/m4sh.m4 (AS_IF): Use m4_default.
1754 2005-09-01  Stepan Kasal  <kasal@ucw.cz>
1756         * doc/autoconf.texi (Configuration Headers): Add an index entry
1757           for AH_HEADER.
1759 2005-08-26  Pavel Roskin  <proski@gnu.org>
1761         * lib/autoconf/libs.m4 (_AC_PATH_X_XMKMF): Use shell variable
1762         XMKMF to locate xmkmf.  Make XMKMF precious.  Export CC when
1763         running xmkmf.
1765 2005-08-26  Paul Eggert  <eggert@cs.ucla.edu>
1767         * lib/m4sugar/m4sh.m4 (_AS_VERSION_COMPARE_PREPARE):
1768         The previous patch didn't work, so try a better one.
1770 2005-08-26  Stepan Kasal  <kasal@ucw.cz>
1772         * doc/autoconf.texi (Programming in M4sh) <AS_TR_CPP>: Fix m4 quoting
1773         in the example.  Reported by Bruno Haible.
1774         <AS_TR_SH>: Likewise.  Also modify the example to be more convincing:
1775         "if $undefined_var;" succeeds with my shell.
1777         * lib/autoconf/general.m4 (AC_CANONICAL_BUILD, AC_CANONICAL_HOST,
1778         AC_CANONICAL_TARGET): Define by AC_DEFUN, no need to use AC_DEFUN_ONCE;
1779         but change the m4_divert_text to m4_divert_once.
1781 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
1783         * lib/m4sugar/m4sh.m4 (_AS_VERSION_COMPARE_PREPARE):
1784         Work around bug in Solaris /usr/xpg4/bin/awk.
1785         The bug is present in at least Solaris 8 through 10.
1787 2005-08-24  Stepan Kasal  <kasal@ucw.cz>
1789         * lib/autoconf/general.m4 (_AC_CANONICAL_SPLIT): Simplify; rejecting
1790         some evil values and relying on the fact that $* concatenates the
1791         parameters by the first character from IFS.
1793 2005-08-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>,
1794             Stepan Kasal  <kasal@ucw.cz>
1796         * lib/autoconf/status.m4 (_AC_CONFIG_REGISTER_DEST): When the
1797         first header appears, define AH_HEADER.
1798         * doc/autoconf.texi (Configuration Headers): Document AH_HEADER.
1799         Update limitations about when to call AC_CONFIG_HEADERS.
1800         (Configuration Commands): Document that AC_CONFIG_COMMANDS_PRE
1801         parameter can call AC_SUBST, AC_DEFINE, or AC_CONFIG_FOOS; explain
1802         that AC_CONFIG_COMMANDS_PRE and AC_CONFIG_COMMANDS_POST are not
1803         ``Configuration Actions''; fix their index entries.
1805         * lib/autotest/general.m4 (AT_INIT): Process multiple keywords
1806         options correctly.  Process N-M as M-N if M is smaller than N.
1807         Process ranges correctly so that N-N will run only N.
1808         Sort and uniquify the tests that will be run.  If there is more
1809         than one test, reinsert the banners for the tests.
1810         * tests/autotest.at (Keywords): Unmark XFAIL.
1812 2005-08-23  Stepan Kasal  <kasal@ucw.cz>
1814         * lib/autoconf/general.m4 (_AC_DEFINE_Q): Strip the parameter list
1815           before passing the macro name to AH_TEMPLATE.
1817         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): config.status
1818           now opens log after option processing; in particular, --version
1819           and --help do not touch config.log.
1821         * Makefile.maint: Revert the change from 2005-08-12.
1823 2005-08-22  Stepan Kasal  <kasal@ucw.cz>
1825         * lib/autoconf/general.m4 (AC_ARG_ENABLE, AC_ARG_WITH): Factor out
1826           common code to...
1827         (_AC_ENABLE_IF, _AC_ENABLE_IF_ACTION): ... these new macros.
1829 2005-08-21  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1831         * doc/autoconf.texi (Using Autotest, testsuite Scripts)
1832         (Autotest Logs, Writing testsuite.at, testsuite Invocation):
1833         Language cleanup.
1835         * doc/autoconf.texi (Defining Symbols, Changed Results):
1836         Prepend to LIBS, not append, in examples.
1838 2005-08-16  Stepan Kasal  <kasal@ucw.cz>
1840         When building in place, set srcdir="."; suggested by Tim Van Holder.
1842         * lib/autoconf/general.m4 (_AC_INIT_SRCDIR): Do this; to recognize
1843           build in place, we need ac_pwd, and thus have to AC_REQUIRE ...
1844         (_AC_INIT_DIRCHECK): ... this macro and AC_DEFUN both of them.
1845         * lib/autoconf/status.m4 (_AC_SRCDIRS): Fix a comment: srcdir="."
1846           does not mean "no --srcdir option".
1848 2005-08-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1850         * tests/autoscan.at (autoscan): New file.
1851         * tests/suite.at: Use it.
1852         * tests/Makefile.am (TESTSUITE_HAND_AT): Add it.
1853         Reported against Libtool by Gideon Go <gideon.go@gmail.com>.
1855         * tests/autotest.at (Keywords): Test keywords combinations.
1857 2005-08-12  Stepan Kasal  <kasal@ucw.cz>
1859         * Makefile.maint (GZIP_ENV): When checking the help text of gzip,
1860           add "2>&1"; gzip 1.2.4 prints help on stderr.
1862 2005-07-27  Stepan Kasal  <kasal@ucw.cz>
1864         * lib/autotest/general.m4 (_AT_DECIDE_TRACEABLE): The symbol at_reason
1865         was pushdef'ed twice while popped only once.  Push it only once.
1866         (_AT_CHECK): Cosmetic changes to the "case $at_status" command.
1868 2005-07-26  Stepan Kasal  <kasal@ucw.cz>
1870         * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): The message is now
1871         prefixed by mere "===", not "configure: === ".
1873 2005-07-25  Paul Eggert  <eggert@cs.ucla.edu>
1875         * Makefile.maint: Update from Bison.
1877         * lib/m4sugar/m4sugar.m4 (m4_strip): Comment fix---change tab to
1878         "<tab>" in comment, so that the point is understandable.
1880 2005-07-25  Stepan Kasal  <kasal@ucw.cz>
1882         Rewrite substantial part of lib/autoconf/status.m4.
1883         The main change is that CONFIG_FILES, CONFIG_HEADERS, CONFIG_LINKS,
1884         and CONFIG_COMMANDS are not processed in four separate loops.
1885         Instead, there is one main loop.  This alows that the common code
1886         is expanded only once, thus config.status (and configure) is smaller.
1888         The registration mechnism in AC_CONFIG_FILES and cousins also changed;
1889         the AC_LIST_FILES and cousins macros are no longer used.
1891         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES, _AC_OUTPUT_HEADERS,
1892         _AC_OUTPUT_LINKS, _AC_OUTPUT_COMMANDS): Renamed to ...
1893         (_AC_OUTPUT_FILE, _AC_OUTPUT_HEADER, _AC_OUTPUT_LINK,
1894         _AC_OUTPUT_COMMAND): ..., respectively.  These macros no longer
1895         contain the initialization, nor the for loop, nor the associated
1896         commands; all these go to ...
1897         (_AC_OUTPUT_MAIN_LOOP): ... this new macro, called from
1898         _AC_OUTPUT_CONFIG_STATUS.
1899         (_AC_CONFIG_SPLIT, _AC_CONFIG_SPLIT_SOURCE_DEST, _AC_CONFIG_SPLIT_FILE_IN):
1900         Nuked; the code was merged into _AC_OUTPUT_MAIN_LOOP.
1901         (_AC_OUTPUT_FILE): The creation of the sed script ...
1902         (AC_OUTPUT): ... and the setup of ac_vpsub goes to ...
1903         (_AC_OUTPUT_FILES_PREPARE): ... a new macro, also called from
1904         _AC_OUTPUT_MAIN_LOOP.
1905         (_AC_CONFIG_FILES, _AC_CONFIG_HEADERS, _AC_CONFIG_LINKS,
1906         _AC_CONFIG_COMMANDS): Use ...
1907         (_AC_CONFIG_FOOS): ... this new macro, which uses these ...
1908         (_AC_CONFIG_REGISTER, _AC_CONFIG_REGISTER_DEST): ... new macros.
1909         (_AC_CONFIG_FILE, _AC_CONFIG_HEADER, _AC_CONFIG_LINK,
1910         _AC_CONFIG_COMMAND, _AC_CONFIG_DEPENDENCIES): No longer needed.
1911         (_AC_CONFIG_DEPENDENCY): Update, it uses these ...
1912         (_AC_CONFIG_DEPENDENCY_DEFAULT, _AC_FILE_DEPENDENCY_TRACE_COLON):
1913         ... new macros.
1914         (_AC_CONFIG_UNIQUE): Update.
1915         (AC_LIST_FILES, AC_LIST_HEADERS, AC_LIST_LINKS, AC_LIST_COMMANDS):
1916         Replaced by this ...
1917         (_AC_LIST_TAGS): ... new common macro.
1918         (AC_LIST_FILE_COMMANDS, AC_LIST_HEADER_COMMANDS, AC_LIST_LINK_COMMANDS,
1919         AC_LIST_COMMAND_COMMANDS): Replaced by this ...
1920         (_AC_LIST_TAG_COMMANDS): ... new common macro.
1921         (_AC_CONFIG_COMMANDS_INIT): Moved top to the `registration' section;
1922         this didn't belong to the `config commands' section.
1923         (_AC_OUTPUT_COMMANDS_INIT): Don't initialize, m4_ifdef is our friend.
1924         (AC_CONFIG_COMMANDS_PRE, AC_OUTPUT_COMMANDS_PRE,
1925         AC_CONFIG_COMMANDS_POST): Moved to a new section, these didn't belong
1926         to the `config commands' section either.
1927         (AC_CONFIG_SUBDIRS): Don't touch diversion DEFAULTS.
1928         (_AC_LIST_SUBDIRS): Don't initialize, m4_ifdef is our friend.
1930         ... and many changes to the comments nearby.
1932         * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS): At the end of the day,
1933         set ac_subdirs_all='_AC_LIST_SUBDIRS'.
1934         * tests/torture.at (AC_CONFIG_FILES, HEADERS, LINKS and COMMANDS):
1935         AC_CONFIG_COMMANDS(command:input,...) is no longer allowed.
1936         (#define header templates): The comment at the top of the generated
1937         header now includes the name(s) of the source file(s).
1939         Several unrelated small changes:
1941         * lib/autoconf/general.m4 (AC_CACHE_VAL): Be didactic, quote the first
1942         parameter to AC_DIAGNOSE.
1943         * lib/autoconf/status.m4 (AC_CONFIG_SUBDIRS): Likewise.
1944         (_AC_LINK_FILES_CNT): Don't AU_DEFUN this; it causes confusing messages
1945         with autoupdate; use m4_define_default inside AU_DEFUNed AC_LINK_FILES.
1946         (AC_OUTPUT): In the compatibility code, use m4_ifvaln, to be consistent
1947         with AU::AC_OUTPUT.
1948         (AU::AC_OUTPUT): Don't double-quote $2 and $3, the compatibility code
1949         in AC_OUTPUT doesn't double-quote it either.
1950         * tests/tools.at (autoupdate): AU::AC_OUTPUT no longer double-quotes the
1951         parameters.
1953 2005-07-10  Stepan Kasal  <kasal@ucw.cz>
1955         * lib/autoconf/fortran.m4 (_AC_PROG_FC_V_OUTPUT): Document which
1956         versions of Portland Group compiler produce single- and double-quoted
1957         -cmdline argument.  Reported by Steven G. Johnson <stevenj@fftw.org>
1958         and Ole Holm Nielsen <Ole.H.Nielsen@fysik.dtu.dk>.
1960 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
1962         * tests/local.at (AT_CONFIG_CMP): Ignore lines like "LIBS=''" too.
1963         This is a corrected version of yesterday's patch.
1965 2005-07-07  Stepan Kasal  <kasal@ucw.cz>
1967         * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): Report the full
1968         path, too; insert a "===" to emphasize the line.
1970         * lib/autoconf/general.m4 (AC_CANONICAL_BUILD): Rename
1971           ac_cv_build_alias to ac_build_alias.
1972         (AC_CANONICAL_HOST, AC_CANONICAL_TARGET): Simplify.
1974         On 2005-02-24, an unintentional AC_SUBST([CC]) was introduced; this
1975         change eliminates it.  Problem reported by Alexandre Duret-Lutz.
1976         * lib/autoconf/general.m4 (_AC_ARG_VAR_PRECIOUS): Move the AC_SUBST ...
1977         (AC_ARG_VAR): ... here.
1978         (_AC_INIT_PREPARE): Call AC_SUBST for build_alias, host_alias and
1979           target_alias.
1981         Keep a list of all precious variables and process them with one simple
1982         for loop, instead of expanding all commands, or, OTOH, complicated
1983         processing of output of "set".
1984         * lib/autoconf/general.m4 (_AC_ARG_VAR_PRECIOUS): Acumulate the
1985         variable names in new macro...
1986         (_AC_PRECIOUS_VARS): ... which will be assigned to ac_precious_vars.
1987         (_AC_ARG_VAR_STORE): New macro which writes to diversion PARSE_ARGS
1988           a loop to assign all ac_env_* and ac_cv_env_* variables.
1989         (_AC_ARG_VAR_VALIDATE): Use shell variable ac_precious_vars, divert
1990           to INIT_PREPARE.
1991         (_AC_INIT_DEFAULTS): At the end, if _AC_PRECIOUS_VARS is set, assign
1992           its value to shell variable ac_precious_vars and call
1993           _AC_ARG_VAR_STORE and _AC_ARG_VAR_VALIDATE.
1994         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Don't call
1995           _AC_ARG_VAR_VALIDATE.
1997         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Move AC_LANG_PUSH(C)
1998           and the AC_SUBSTs ...
1999         (AC_INIT): ... here.
2001         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Changed the title of
2002           the ac_subst_files section in config.log.
2004         * tests/local.at (AT_CONFIG_CMP): Revert Paul's previous change.
2006 2005-07-06  Paul Eggert  <eggert@cs.ucla.edu>
2008         * NEWS: New macro AC_C_TYPEOF.
2009         * doc/autoconf.texi (C Compiler): Document AC_C_TYPEOF.
2010         * lib/autoconf/c.m4 (AC_C_TYPEOF): New macro.
2011         * tests/c.at (C keywords): Test AC_C_TYPEOF.
2013         Fix problems reported by Nicolas Joly.
2014         * tests/base.at (Input/Output): Ignore 'loading site script' chatter.
2015         * tests/local.at (AT_CONFIG_CMP): Ignore lines like "LIBS=''" too.
2016         They are generated by the Tru64 v5.1B shell.
2018 2005-07-05  Stepan Kasal  <kasal@ucw.cz>
2020         Fix my changes from 2005-07-01; reported by Noah Misch.
2021         * lib/autoconf/status.m4 (_AC_CONFIG_DEPENDENCIES): Fix the
2022         description, the macro now accepts only a single tag.
2023         (_AC_CONFIG_UNIQUE): Likewise; s/AC_File/[$1]/
2025         Fix cases when the varsions of Autoconf and Autotest don't match.
2026         Reported by Noah Misch.
2027         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): Set also
2028         at_top_builddir, for compatibility with older autotest.
2029         * lib/autotest/general.m4 (AT_INIT): If at_top_build_prefix
2030         is not set, use at_top_builddir, for compatibility with older
2031         versions of autoconf.
2033 2005-07-04  Paul Eggert  <eggert@cs.ucla.edu>
2035         * bin/autom4te.in ($m4): Catch usages like --nesting-limit=2048.
2036         Problem reported by Patrick Welche.
2038 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
2040         * lib/autoconf/general.m4 (AC_ARG_PROGRAM): Use &, not |, in
2041         sed substitution command, so that we allow | in program prefixes
2042         and program suffixes.  (& is a problem anyway; we're not fixing
2043         that here.)
2044         * lib/autoconf/status.m4 (AC_CONFIG_FILES): Likewise, for
2045         configure_input, top_builddir, srcdir, etc.
2046         * lib/autotest/general.m4 (AT_INIT): Likewise, for
2047         PATH_SEPARATOR in AUTOTEST_PATH.
2049 2005-07-02  Alexandre Duret-Lutz  <adl@gnu.org>
2051         * lib/autoconf/general.m4 (AC_SITE_LOAD): Rewrite the
2052         for loop over config.site files using `set', to allow
2053         directory names containing IFS characters.
2055 2005-07-01  Paul Eggert  <eggert@cs.ucla.edu>
2057         * lib/autoconf/general.m4 (_AC_INIT_DIRCHECK): Remove the tests for
2058         directories with weird names.  Apparently some people like living
2059         on the edge.  However, improve the test that "pwd" actually does
2060         report a name for the working directory.
2061         * NEWS: Remove the claim that we test for funny chars in dir names.
2063 2005-07-01  Stepan Kasal  <kasal@ucw.cz>
2065         * lib/autoconf/general.m4 (AC_FOREACH): Make obsolete; it's
2066         replaced ...
2067         * lib/m4sugar/m4sugar.m4 (m4_foreach_w): ... by this new macro.
2068         * lib/autoconf/status.m4 (_AC_CONFIG_DEPENDENCIES, _AC_CONFIG_UNIQUE):
2069         Now accept a single tag, not whitespace separated list.
2070         (AC_CONFIG_SUBDIRS): Call _AC_CONFIG_UNIQUE in a m4_foreach_w loop.
2072 2005-06-30  Stepan Kasal  <kasal@ucw.cz>
2074         * doc/autoconf.texi (Configuration Headers): Change the explanation
2075         about #include <config.h>.
2076         (Generic Functions): Mention the Gnulib project.
2077         (Limitations of Usual Tools) <sed>: Another minor rephrasing.
2079         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Use a here
2080         document to output the default config_* lists to config.status.
2081         Don't recognize option --file, if the functionality is not there.
2082         Likewise for --header; moreover, recognize --he and --h as shortcuts
2083         for --help in that case.
2085         * lib/autoconf/status.m4: Fix the order of the "sections", so that it
2086         matches the order of execution.  No code changed.
2088 2005-06-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2090         * lib/autoconf/fortran.m4 (_AC_PROG_FC_V_OUTPUT): Fix also for
2091         single-quoted -cmdline argument in Portland Group compiler.
2092         Reported against LAM by Ole Holm Nielsen <Ole.H.Nielsen@fysik.dtu.dk>.
2094 2005-06-30  Alexandre Duret-Lutz  <adl@gnu.org>
2096         * lib/autom4te.in (Automake-preselections): Preselect AC_SUBST_TRACE.
2098 2005-06-29  Stepan Kasal  <kasal@ucw.cz>
2100         * doc/autoconf.texi (File Descriptors): ksh doesn't pass open file
2101         descriptors to child processes; reported by Norman Gray.
2103 2005-06-29  Stepan Kasal  <kasal@ucw.cz>
2105         * lib/autoconf/general.m4 (AC_ARG_VAR): Move next to _AC_ARG_PRECIOUS.
2107         * lib/autoconf/general.m4 (AC_SUBST_TRACE): New macro, to be traced
2108         instead of AC_SUBST; proposed by Alexandre Duret-Lutz.
2109         (AC_SUBST): Call it.
2110         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES): Call AC_SUBST_TRACE for
2111         the directory specific variables; but don't call it for configure_input.
2113 2005-06-28  Derek Price  <derek@ximbiot.com>
2115         * doc/autoconf.texi (Limitations of Usual Tools) <sed>: Reword recent
2116         addition.
2118 2005-06-23  Paul Eggert  <eggert@cs.ucla.edu>
2120         * NEWS: Don't worry about spaces in bindir etc.  Only srcdir and working
2121         directory have inherent problems with special characters like spaces,
2122         due to limitations in Make syntax.  Problem reported by Alexandre
2123         Duret-Lutz.
2124         * lib/autoconf/general.m4 (_AC_INIT_DIRCHECK): Implement the above.
2125         Also, fix Tru64 porting problem with shell patterns,
2126         reported by Ralf Wildenhues.
2128 2005-06-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2130         * doc/autoconf.texi (Subdirectories): Fix markup typos.
2132 2005-06-23  Paul Eggert  <eggert@cs.ucla.edu>
2134         * tests/local.at (AT_CHECK_ENV): Simplify regexp slightly.
2136         Fix some more shell quoting problems.  Prompted by a bug report
2137         from Justace Clutter.
2138         * lib/autoconf/general.m4 (_AC_INIT_DIRCHECK): Put name of invalid
2139         variable into diagnostic.  Make the diagnostic an error, not a warning,
2140         because we really don't support spaces and suchlike in dir names.
2141         (_AC_INIT_SRCDIR): Allow special characters in $ac_unique_file.
2142         Don't worry about backslashes in srcdir; it can't happen now.
2143         (_AC_INIT_PARSE_ARGS): Allow weird characters in ac_optarg.
2144         Simplify ac_optarg handling.
2145         (_AC_ARG_VAR_VALIDATE): Remove unnecessary and inconsistent quotes.
2147 2005-06-22  Stepan Kasal  <kasal@ucw.cz>
2149         Fix AT_CONFIG_CMP for Solaris hosts; idea from Ralf Menzel.
2150         * configure.ac: Call AC_PROG_EGREP and AC_PROG_SED.
2151         * tests/atlocal.in: Propagate $EGREP and $SED.
2152         * tests/local.at (AT_CHECK_ENV): Use $EGREP, not $GREP -E.
2153         (AT_CONFIG_CMP): Use sed instead of grep plumbing.
2155         * doc/autoconf.texi (Limitations of Usual Tools) <grep>: Mention
2156         that '\|' is not allowed in BREs; recommend using newline separated
2157         list of patterns instead of multiple -e options.
2159         * lib/autoconf/fortran.m4 (_AC_PROG_FC_V_OUTPUT): Remove an old comment.
2161         * lib/autoconf/general.m4 (_AC_CANONICAL_SPLIT): Use AC_SUBST/2.
2163 2005-06-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2165         * lib/autoconf/general.m4 (_AC_CANONICAL_SPLIT): Fix typo.
2167 2005-06-21  Stepan Kasal  <kasal@ucw.cz>
2169         * doc/autoconf.texi (Limitations of Usual Tools) <sed>: Document that
2170         b, t, r, w commands require single space, while : cannot have any.
2171         (Special Shell Variables): Fix sed code this in the example.
2172         * lib/autoconf/status.m4 (_AC_OUTPUT_HEADERS): Likewise; and fix a typo.
2173         * lib/autotest/general.m4 (AT_ARG_OPTION): Fix typo in the description.
2175         * lib/m4sugar/m4sugar.m4 (m4_split): If the parameter is empty,
2176         expand to the empty list.  Don't use two pairs of m4_changequote,
2177         it's not necessary.
2179 2005-06-20  Derek Price  <derek@ximbiot.com>
2181         * lib/m4/programs.m4 (AC_PROG_YACC): Declare YACC & YFLAGS precious.
2183 2005-06-17  Paul Eggert  <eggert@cs.ucla.edu>
2185         * lib/m4sugar/m4sh.m4 (as_awk_strverscmp): Port to Solaris /bin/awk.
2186         * doc/autoconf.texi:
2187         Don't mention Solaris versions so much, if a
2188         problem is common to all extant versions of Solaris.  Say "SunOS
2189         4" instead of "SunOS" for SunOS 4.
2190         (awk): Mention more of the limitations of traditional Awk.
2191         (cat): Don't talk about cat -v.
2193 2005-06-16  Paul Eggert  <eggert@cs.ucla.edu>
2195         * lib/m4sugar/m4sh.m4 (_AS_VERSION_COMPARE_PREPARE): New macro.
2196         (AS_VERSION_COMPARE): New macro.  The API is taken from CVS,
2197         but the implementation is entirely different and is designed
2198         to be compatible with glibc strverscmp.
2199         * tests/m4sh.at (AS_VERSION_COMPARE): New test.
2201         * doc/autoconf.texi (Limitations of Usual Tools): Mention expr bug
2202         on Mac OS X 10.4 reported by Peter O'Gorman in:
2203         http://lists.gnu.org/archive/html/autoconf-patches/2005-06/msg00041.html
2204         * lib/autoconf/general.m4 (_AC_CANONICAL_SPLIT):
2205         Use shell builtins rather than 'expr', to work around expr bug.
2207 2005-06-10  Paul Eggert  <eggert@cs.ucla.edu>
2209         * doc/autoconf.texi: "filesystem" -> "file system".
2210         "behaviour" -> "behavior".
2211         Warn about \(...\)* in Solaris sed (written by Ralf Menzel).
2212         * lib/autoconf/general.m4: Omit blank after ":" sed command,
2213         as per POSIX.
2214         * lib/m4sugar/m4sh.m4: Likewise.
2215         * lib/autoconf/status.m4 (_AC_OUTPUT_HEADERS): Work around problem
2216         with Solaris sed.  Fix by Ralf Menzel and Stepan Kasal.
2218         * man/Makefile.am (MOSTLYCLEANFILES): Add $(srcdir)/*.t.
2219         (.x.1): Ignore the time stamp in the .TH line when deciding whether
2220         to update the man page.  That way, we don't have to check in new
2221         man pages every month.
2223         * lib/m4sugar/m4sh.m4 (AS_VAR_TEST_SET): Work even if $1 contains
2224         quotes and backslashes.  Patch from Derek Price.
2226 2005-06-10  Derek Price  <derek@ximbiot.com>
2228         * doc/autoconf.texi (Programming in M4sh): Document AS_TR_CPP &
2229         AS_TR_SH.
2231 2005-06-08  Paul Eggert  <eggert@cs.ucla.edu>
2233         * lib/autotest/general.m4 (AT_INIT): Don't accept Solaris 9's diff
2234         -u, since it outputs chatter if the input files are the same.
2235         Problem reported by Ralf Menzel.
2237 2005-06-08  Derek Price  <derek@ximbiot.com>
2239         * lib/m4sugar/m4sugar.m4: Undefine include & sinclude rather than
2240         renaming them since they are about to be redefined anyhow.
2242 2005-06-08  Derek Price  <derek@ximbiot.com>
2244         * doc/autoconf.texi (Redefined M4 Macros): Add index entries for most
2245         redefined M4 macros to this node.  Document m4_include & m4_sinclude.
2246         Move m4_undefine to alphabetical order.
2248 2005-06-07  Paul Eggert  <eggert@cs.ucla.edu>
2250         * README: Recommend GNU M4 1.4.3 or later.
2251         * doc/autoconf.texi (Introduction): Likewise.
2252         Reword to avoid some formatting glitches.
2253         Use "#!/bin/sh", not "#! /bin/sh"; the space isn't needed these days.
2254         Clarify explanation of HP compiler bug.
2255         Redo example output tp match current CVS snapshot.
2256         Use @example.org in email addresses when the examples
2257         might get inadvertently cut-and-pasted into user code.
2258         Remove example of autom4te usage that doesn't seem to work now.
2259         Use modern AC_INIT (except when the example is meant to be
2260         shown with Autoconf 2.13).
2261         Update ksh info for Solaris 9 and later.
2262         KB -> kB.
2263         Modernize description of Automake versions a bit.
2264         Don't claim a future version of Autoconf is near.
2265         * doc/install.texi: Reword to avoid some formatting glitches.
2267 2005-06-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2269         * doc/autoconf.texi: Add [] to examples, so that the manual
2270         follows its own advice about quoting better.
2271         Reword to avoid some formatting glitches.
2272         * doc/installt.exi: Reword to avoid some formatting glitches.
2274         * doc/autoconf.texi (Limitations of Builtins) <case>: Mention
2275         Tru64 ksh pattern matching bug.  Reported against Libtool by
2276         Albert Chin <libtool@mlists.thewrittenword.com> and
2277         Nicolas Joly <njoly@pasteur.fr>.
2279 2005-06-06  Stepan Kasal  <kasal@ucw.cz>
2281         m4_cdr of one-member list was [[]] (one-member list containing an
2282         empty string) instead of [] (an empty list.  Callers were skewed to
2283         match this misbehaviour.  As a consequence of this:
2284          - m4_foreach([x], [], [foo]) expanded to `foo', while
2285          - the expansion of m4_foreach([x], [[]], [foo]) was empty.
2286         This bug has been fixed:
2288         * lib/m4sugar/m4sugar.m4 (m4_cdr): If only one argument is given,
2289           expand to an empty string; print error msg if called without
2290           an argument list.
2291         (m4_foreach, m4_map, m4_map_sep): Don't expect the previous
2292           misbehaviour; handle [] and [[]] correctly.
2294 2005-06-06  Stepan Kasal  <kasal@ucw.cz>
2296         * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS): Nuke ac_max_here_lines.
2297         * lib/autoconf/status.m4 (_AC_OUTPUT_HEADERS): Simplify the sed
2298           scripts created and the loop applying them, use _AC_SED_CMD_LIMIT.
2300 2005-06-06  Ralf Menzel <menzel@ls6.cs.uni-dortmund.de>  (trivial change)
2302         * doc/autoconf.texi (Limitations of Usual Tools): Solaris' awk cannot
2303           swallow records with more than 99 fields.
2304         * lib/autotest/general.m4 (AT_INIT): Use the awk builtin `split' to
2305           parse the long line.
2307 2005-06-04  Stepan Kasal  <kasal@ucw.cz>
2309         * doc/autoconf.texi (Limitations of Usual Tools): AIX awk cannot
2310           swallow literals longer than 399.  Reported by Ralf Wildenhues.
2311         * lib/autotest/general.m4 (AT_INIT): Pass $at_groups though stdin,
2312           to workaround this limitation.
2314 2005-06-03  Steven G. Johnson  <stevenj@alum.mit.edu>
2316         * lib/autoconf/fortran.m4 (_AC_PROG_FC): Find g95 in addition
2317         to gfortran, and make these the first two compiler names
2318         checked (following the general autoconf preference for gcc).
2320 2005-06-03  Stepan Kasal  <kasal@ucw.cz>
2322         * tests/Makefile.am (check_SCRIPTS): Set to $(wrappers).
2323         (DISTCLEANFILES): Remove $(check_SCRIPTS).
2324         (testsuite): Make sure autotest.m4f is up-to-date before using it.
2326 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
2328         * lib/autotest/general.m4 (AT_INIT): Don't create a regular
2329         expression of unbounded size when processing the --list
2330         option.  This runs afoul of a limit of 399 bytes per regular
2331         expression on AIX.  Problem reported by Ralf Wildenhues.
2333 2005-06-01  Paul Eggert  <eggert@cs.ucla.edu>
2335         * NEWS: Note yesterday's changes to AC_SUBST and AC_SUBST_FILE.
2336         * doc/autoconf.texi (Particular Headers): Reword example
2337         for multiline stdbool replacement.
2338         (Setting Output Variables): Reword text a bit.  Don't
2339         give all the details about |#_!!_#|.
2340         Reword description of line replacement.
2342 2005-05-31  Dan Manthey  <dan_manthey@partech.com>
2344         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES): Output variables may
2345         now contain newlines, and substituted files must be referenced on
2346         a line alone; the sed scripts to substitute them are now very
2347         different.
2348         (_AC_SED_CMD_LIMIT): Added; single place to store limit on how many
2349         commands can be put in a sed script portably.
2350         * doc/autoconf.texi (Setting Output Variables): Document above
2351         changes.  (Particular Header Checks) <AC_HEADER_STDBOOL>: Give exaple
2352         use of multiline substitution.
2353         * tests/torture.at: No longer expect substitution of newline to fail.
2355 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
2357         * lib/m4sugar/m4sh.m4 (_AS_SHELL_FN_WORK): Fix diagnostics.
2358         From Ralf Menzel (trivial change).
2360 2005-05-25  Paul Eggert  <eggert@cs.ucla.edu>
2362         * tests/local.at: Don't attempt to check for negated character
2363         classes in shell scripts.  The test was too brittle.
2365 2005-05-25  Stepan Kasal  <kasal@ucw.cz>
2367         * bin/autoconf.as: Don't use "shift 2"; it's not portable enough.
2368         * doc/autoconf.texi (Limitations of Builtins): Document this
2369           limitation.
2371 2005-05-24  Stepan Kasal  <kasal@ucw.cz>
2373         * lib/m4sugar/m4sh.m4 (_AS_ECHO_LOG): New macro to factor out
2374           common code; used in many places in the tree.
2375         (AS_ESCAPE): Make the pattern a bit simpler; use \& insetad of \1.
2376         (_AS_ECHO_UNQUOTED): Move the macro lower; no code change.
2378         * lib/m4sugar/m4sugar.m4 (m4_ifset): Use m4_ifval.
2380         * lib/autoconf/general.m4 (_AC_INIT_SRCDIR): Merge the two error
2381           messages when ac_unique_file is not found.
2382         (AC_CONFIG_MACRO_DIR): Simplify the `if' at the end.
2383         (AC_MSG_CHECKING, AC_MSG_RESULT): Put braces around the two echo
2384           commands, for consistency with AC_MSG_ERROR and such.
2386         * bin/autoconf.as: Make more use of "shift 2" in option processing.
2388         * bin/Makefile.am: Merge the two rules for creating scripts.
2390 2005-05-23  Stepan Kasal  <kasal@ucw.cz>
2392         * lib/autoconf/general.m4 (AC_MSG_RESULT_UNQUOTED): Make
2393         obsolete; it was never documented.
2394         (AC_CACHE_CHECK): Use AC_MSG_RESULT instead.
2396 2005-05-20  Stepan Kasal  <kasal@ucw.cz>
2398         * NEWS: @top_builddir@ is now a dirname, ac_top_builddir will follow.
2399         * lib/autoconf/status.m4 (_AC_SRCDIRS): Rename ...
2400         (ac_top_builddir): ... this ...
2401         (ac_top_build_prefix): ... to this; the old name is also kept, for
2402           backward compatibility.
2403         (ac_top_builddir_sub): New variable, without the trailing slash,
2404           always nonempty.
2405         (_AC_OUTPUT_FILES): s/@top_builddir@/$ac_top_builddir_sub/
2406         * doc/autoconf.texi (Configuration Actions): Rename
2407           ac_top_builddir to ac_top_build_prefix.
2408         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): Rename
2409           at_top_builddir to at_top_build_prefix.
2410         * lib/autotest/general.m4 (AT_INIT): Likewise.
2412 2005-05-20  Stepan Kasal  <kasal@ucw.cz>
2414         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Simplify the init
2415           of confdefs.h .
2417 2005-05-17  Stepan Kasal  <kasal@ucw.cz>
2419         * lib/m4sugar/m4sugar.m4 (m4_text_wrap): Don't m4_quote the second
2420           argument to m4_foreach.  I guess it was necessary in the past,
2421           but I think it's a no-op now.
2423 2005-05-17  Stepan Kasal  <kasal@ucw.cz>
2425         * lib/autoconf/general.m4 (_AC_INIT_HELP): Merge two consecutive
2426           ``cat <<_ACEOF'' commands to one.
2427         (_AC_CANONICAL_SPLIT): Use expr, not ``echo|sed.''
2428         * lib/autoconf/status.m4: On various places, use expr instead of
2429           ``echo|sed.''
2430         (_AC_CONFIG_SPLIT, _AC_CONFIG_SPLIT_SOURCE_DEST):
2431         (_AC_CONFIG_SPLIT_FILE_IN): New macros, to factor out common code.
2432         * lib/autotest/general.m4 (AT_INIT): Use expr to get the numbers from
2433           a range.
2434         * tests/local.at (AT_CHECK_SHELL_SYNTAX): Use awk to search for
2435           the wrong patterns between ``case'' and ``esac.''  The previous
2436           code had false positives.
2438 2005-05-14  Alexandre Duret-Lutz  <adl@gnu.org>
2440         * lib/autoconf/functions.m4 (_AC_LIBOBJ_ALLOCA): Prepend ${LIBOBJDIR},
2441         as on 2005-05-02.
2442         * doc/autoconf.texi (Particular Functions) <AC_FUNC_ALLOCA>:
2443         Mention LIBOBJDIR.
2445 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
2447         * AUTHORS, BUGS, COPYING, ChangeLog, ChangeLog.0, ChangeLog.1,
2448         ChangeLog.2, GNUmakefile, HACKING, Makefile.am, Makefile.cfg,
2449         Makefile.maint, NEWS, README, README-alpha, TODO, configure.ac,
2450         bin/Makefile.am, bin/autoconf.as, bin/autoheader.in,
2451         bin/autom4te.in, bin/autoreconf.in, bin/autoscan.in,
2452         bin/autoupdate.in, bin/ifnames.in, config/Makefile.am,
2453         config/config.guess, config/config.sub, config/elisp-comp,
2454         config/m4.m4, config/mdate-sh, config/missing, config/texinfo.tex,
2455         doc/Makefile.am, doc/fdl.texi, lib/Makefile.am, lib/autom4te.in,
2456         lib/freeze.mk, lib/Autom4te/C4che.pm, lib/Autom4te/ChannelDefs.pm,
2457         lib/Autom4te/Channels.pm, lib/Autom4te/Configure_ac.pm,
2458         lib/Autom4te/FileUtils.pm, lib/Autom4te/General.pm,
2459         lib/Autom4te/Request.pm, lib/Autom4te/Struct.pm,
2460         lib/Autom4te/XFile.pm, lib/autoconf/Makefile.am,
2461         lib/autoconf/autoconf.m4, lib/autoconf/autoheader.m4,
2462         lib/autoconf/autoscan.m4, lib/autoconf/autotest.m4,
2463         lib/autoconf/autoupdate.m4, lib/autoconf/c.m4,
2464         lib/autoconf/fortran.m4, lib/autoconf/functions.m4,
2465         lib/autoconf/general.m4, lib/autoconf/headers.m4,
2466         lib/autoconf/lang.m4, lib/autoconf/libs.m4,
2467         lib/autoconf/oldnames.m4, lib/autoconf/programs.m4,
2468         lib/autoconf/specific.m4, lib/autoconf/status.m4,
2469         lib/autoconf/types.m4, lib/autoscan/Makefile.am,
2470         lib/autoscan/autoscan.list, lib/autoscan/autoscan.pre,
2471         lib/autotest/Makefile.am, lib/autotest/autotest.m4,
2472         lib/autotest/general.m4, lib/emacs/Makefile.am,
2473         lib/emacs/autoconf-mode.el, lib/emacs/autotest-mode.el,
2474         lib/m4sugar/Makefile.am, lib/m4sugar/m4sh.m4,
2475         lib/m4sugar/m4sugar.m4, man/Makefile.am, tests/Makefile.am,
2476         tests/atlocal.in, tests/autotest.at, tests/base.at, tests/c.at,
2477         tests/compile.at, tests/foreign.at, tests/fortran.at,
2478         tests/local.at, tests/m4sh.at, tests/m4sugar.at, tests/mktests.sh,
2479         tests/semantics.at, tests/suite.at, tests/tools.at,
2480         tests/torture.at, tests/wrapper.as:
2481         Update FSF postal mail address.
2483 2005-05-13  Stepan Kasal  <kasal@ucw.cz>
2485         * lib/autoconf/general.m4 (AC_CONFIG_LIBOBJ_DIR): Remove the broken
2486           check.
2487         * lib/m4sugar/m4sugar.m4 (m4_bmatch): Halt with error if we don't get
2488           enough arguments, similarly as in m4_bpatsubsts.
2490 2005-05-12  Stepan Kasal  <kasal@ucw.cz>
2492         * lib/autoconf/status.m4 (_AC_SRCDIRS): Simplify the computation
2493           of absolute paths.
2495 2005-05-11  Stepan Kasal  <kasal@ucw.cz>
2497         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ARGS): Make the check
2498           for absolute directory names in one loop.
2499         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Handle
2500           abbreviations of --version and --debug.
2502 2005-05-10  Paul Eggert  <eggert@cs.ucla.edu>
2504         * doc/autoconf.texi (Autoconf Language): Be more precise about
2505         quoting rules.  Problems noted by Stepan Kasal.
2506         Also, throughout this document, be more careful about white space.
2507         "blank", "white space", and "space" all have different meanings
2508         and we should be careful to say what we mean.
2510 2005-05-05  Paul Eggert  <eggert@cs.ucla.edu>
2512         Fix C++ related problems reported by Werner Lemberg.
2513         * doc/autoconf.texi (C++ Compiler): Mention .cpp extension.
2514         * lib/autoconf/c.m4 (AC_LANG(C++)): Set ac_ext to .cpp, not .cc.
2515         * lib/autoconf/types.m4 (AC_TYPE_SIGNAL): Simplify test, to
2516         avoid problems with C++ and throw.
2517         * tests/compile.at: .cpp, not .cc.
2519         * tests/semantics.at: Prepend LIBOBJDIR, as per 2005-05-02 change.
2521 2005-05-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2523         * doc/autoconf.texi (Generic Functions): Typos.
2525 2005-05-02  Gary V. Vaughan  <gary@gnu.org>
2527         * lib/autoconf/general.m4 (_AC_LIBOBJS_NORMALIZE): Prepend each
2528         object named in LIBOBJS and LTLIBOBJS with the ${LIBOBJDIR}, as
2529         set by latest automake.
2531 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
2533         * doc/autoconf.texi (Limitations of Usual Tools): "expr '' \| ''"
2534         outputs 0 on GNU/Linux these days.
2536 2005-04-29  Paul Eggert  <eggert@cs.ucla.edu>
2538         * doc/autoconf.texi (Autoconf Language): Add more description
2539         about quoting heuristics.
2540         (Limitations of Builtins): Describe "set -" problems.
2542 2005-04-29  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2544         * lib/autotest/general.m4 (AT_KEYWORDS): Separate by space,
2545         not newline.
2547         * doc/autoconf.texi (External Software): Replace AC_DEFINE_UNQUOTED
2548         by AC_DEFINE; it was a mistake.
2549         From bug reported against libtool by Dalibor Topic <robilad@kaffe.org>.
2551 2005-04-25  Stepan Kasal  <kasal@ucw.cz>
2553         * lib/autoconf/status.m4 (_AC_OUTPUT_HEADERS): A tiny optimization.
2555 2005-04-22  Stepan Kasal  <kasal@ucw.cz>
2557         * doc/autoconf.texi (External Software): Quadrigraphs are not
2558           processed correctly in AS_HELP_STRING; avoid this in the examples.
2559         * lib/m4sugar/m4sh.m4 (AS_HELP_STRING): Add a FIXME about quadrigraphs.
2560         * lib/m4sugar/m4sugar.m4 (m4_text_wrap): Likewise; and rephrase the
2561           comment and reduce m4_default([foo], []) to [foo].
2562         (m4_strip): Update the explanation.
2564 2005-04-19  Paul Eggert  <eggert@cs.ucla.edu>
2566         * lib/autoconf/general.m4 (_AC_INIT_PREPARE, _AC_RUN_IFELSE):
2567         Remove core.conftest.* too; it's generated by Tru64 5.1.
2568         Problem reported by Jennis Pruett.
2569         * lib/autoconf/functions.m4
2570         (AC_FUNC_SETVBUF_REVERSED, AC_FUNC_UTIME_NULL):
2571         Don't bother to remove core files; AC_RUN_IFELSE should do that
2572         for you.
2574 2005-04-19  Stepan Kasal  <kasal@ucw.cz>
2576         * lib/m4sugar/m4sugar.m4 (m4_bpatsubsts): Add the b- to comment, too.
2578 2005-04-19  Alexandre Duret-Lutz  <adl@gnu.org>
2580         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ARGS): Handle --docdir.
2581         Report from Horst Wente.
2583 2005-04-15  Stepan Kasal  <kasal@ucw.cz>
2585         * lib/autoconf/general.m4 (_AC_ARG_VAR_VALIDATE): Fixed a typo in
2586           the comment.
2588 2005-04-14  Gregorio Guidi  <greg_g@gentoo.org>
2590         * doc/autoconf.texi (External Software, Package Options): Add
2591           examples showing how to implement --with-* and --enable-* options.
2593 2005-04-13  Paul Eggert  <eggert@cs.ucla.edu>
2595         * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): Look for configure.ac
2596         as well as configure.in.  Problem reported by Gregorio Guidi.
2598 2005-04-10  Paul Eggert  <eggert@cs.ucla.edu>
2600         * doc/autoconf.texi (Particular Functions): Use gnulib's current
2601         pattern for alloca snippet.
2603 2005-04-04  Stepan Kasal  <kasal@ucw.cz>
2605         * lib/autotest/general.m4 (_AT_DECIDE_TRACEABLE): Fix a typo.
2607 2005-04-01  Stepan Kasal  <kasal@ucw.cz>
2609         * doc/autoconf.texi (Generic Programs): Fix a typo.
2611 2005-04-01  Paul Eggert  <eggert@cs.ucla.edu>
2613         * lib/autotest/general.m4 (AT_INIT): Don't assume that "date +%s"
2614         fails if %s isn't supported.  Problem reported by Ralf Wildenhues.
2616 2005-03-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2618         * lib/autoconf/fortran.m4 (_AC_FC_LIBRARY_LDFLAGS):
2619         Merge `-z option' as well for the benefit of Solaris link flags.  Pass
2620         whole-archive (-zallextract, -zdefaultextract) options in the hope of
2621         unique libraries, for the Sun Fortran 95 8.0 compiler.  Bug reported
2622         against Libtool by Yury Puhalsky <pooh@cryptopro.ru>.
2624 2005-03-22  Paul Eggert  <eggert@cs.ucla.edu>
2626         * NEWS: The configure command now warns you if you attempt to use
2627         a directory whose name contains a special character like space,
2628         newline, or "\".
2629         * doc/autoconf.texi (Installation Directory Variables): Allow
2630         "," in file names.  Do not use \@; it's not a portable regexp.
2631         * bin/Makefile.am (edit): Likewise.
2632         * lib/Makefile.am (edit): Likewise.
2633         * tests/Makefile.am (edit): Likewise.
2634         * tests/semantics.at: Likewise.
2635         * tests/torture.at: Likewise.
2636         * lib/autoconf/general.m4 (AC_ARG_PROGRAM): Likewise.
2637         * lib/autoconf/status.m4 (_AC_SRCDIRS): Likewise.
2638         * doc/autoconf.texi (File System Conventions): Warn about
2639         unportable file names.
2640         * lib/autoconf/general.m4 (_AC_INIT_DIRCHECK): New macro.
2641         (AC_INIT): Use it.
2642         (_AC_INIT_SRCDIR): Use ac_pwd rather than invoking pwd.
2643         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Propagate
2644         ac_pwd, and quote srcdir.
2645         * lib/autotest/general.m4 (AT_INIT): Quote file name args.
2647         * doc/autoconf.texi: Fix some systematic formatting problems.
2648         ".)"  needs a following @: if not at the end of a sentence, and
2649         similarly for "!)".  "etc." should be preceded by a comma.
2650         "n-th" -> "@var{n}th".  pdksh is still buggy, so update its date.
2652 2005-03-22  Bruno Haible  <bruno@clisp.org>
2654         * doc/autoconf.texi (Input): Mention that AC_CONFIG_AUX_DIR's
2655         argument is often called 'build-aux'.
2657 2005-03-07  Stepan Kasal  <kasal@ucw.cz>
2659         * doc/autoconf.texi (Quotation Rule Of Thumb): Mention that the
2660           macro AC_TRY_LINK is obsolete.
2661         (Installation Directory Variables): Change `AC_OUTPUT_FILES' to
2662           `AC_CONFIG_FILES'.
2664 2005-02-24  Stepan Kasal  <kasal@ucw.cz>
2666         * lib/autoconf/c.m4 (AC_PROG_CC): Be more careful to skip
2667           `/usr/ucb/cc'; use `cl.exe' to distinguish the MS compiler
2668           from a Common Lisp's `cl'.
2669         (AC_PROG_CXX): Behave according to the documentation: don't
2670           search for $ac_tool_prefix$CCC and $CCC, just set CXX=$CCC;
2671           make the variable CCC precious; use `cl.exe', not `cl'.
2673 2005-02-23  Paul Eggert  <eggert@cs.ucla.edu>
2674             Alexandre Duret-Lutz  <adl@gnu.org>
2676         * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS): Redirect stdin from
2677         /dev/null, as "configure" shouldn't read stdin, and this insulates
2678         us from problems (e.g., when testing for "cl").  Also, do this
2679         redirection before invoking "hostname" or "uname", and keep the
2680         original input stream available via...
2681         (AS_ORIGINAL_STDIN_FD): ... this new macro.
2682         (_AC_PREPROC_IFELSE, _AC_COMPILE_IFELSE, _AC_LINK_IFELSE): Don't
2683         bother with "</dev/null" since it's now done at the top of
2684         'configure'.
2685         * lib/autoconf/c.m4 (AC_PROG_CC, AC_PROG_CXX): Likewise.
2686         * lib/autoconf/fortran.m4 (_AC_PROG_FC): Likewise.
2687         * lib/autoconf/programs.m4 (_AC_PATH_PROG_FLAVOR_GNU): Likewise.
2688         * doc/autoconf.texi (File Descriptor Macros): New section.
2689         (Printing Messages): Mention it.
2690         * tests/base.at (Input/Output): New test.
2692 2005-02-23  Paul Eggert  <eggert@cs.ucla.edu>
2694         * lib/m4sugar/m4sh.m4 (_AS_ECHO_N_PREPARE): Don't set ECHO_C to
2695         newline if neither \c nor -n work, as that would output two
2696         newlines.  Prefer -n to \c.  Reported by Stepan Kasal.
2698 2005-02-12  Stepan Kasal  <kasal@ucw.cz>
2700         * lib/m4sugar/m4sh.m4 (AS_IF): Define by m4_defun, not m4_define.
2701         This causes that any required macros inside will get before the if.
2702         * doc/autoconf.texi (autom4te.cache): A typo.
2704 2005-02-12  Paul Eggert  <eggert@cs.ucla.edu>
2706         Undo previous change, except keep the change to
2707         lib/autoconf/programs.m4 that replaced grep with shell
2708         pattern-matching.  This is because net-snmp configure reads stdin.
2709         Reported by Noah Misch.
2711 2005-02-11  Paul Eggert  <eggert@cs.ucla.edu>
2713         * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS): Redirect stdin
2714         from /dev/null, as "configure" shouldn't read stdin, and this
2715         insulates us from problems (e.g., when testing for "cl").
2716         Suggested by Alexandre Duret-Lutz.  Also, do this redirection
2717         before invoking "hostname" or "uname".
2718         (_AC_PREPROC_IFELSE, _AC_COMPILE_IFELSE,
2719         _AC_LINK_IFELSE): Undo previous change, as it's no longer needed.
2720         * lib/autoconf/c.m4 (AC_PROG_CC, AC_PROG_CXX): Don't bother with
2721         "</dev/null" since it's now done at the top of 'configure'.
2722         * lib/autoconf/fortran.m4 (_AC_PROG_FC): Likewise.
2723         * lib/autoconf/programs.m4 (_AC_PATH_PROG_FLAVOR_GNU): Likewise.
2724         Also, replace grep with shell pattern-matching, to save a process.
2726 2005-02-10  Paul Eggert  <eggert@cs.ucla.edu>
2728         * lib/autoconf/general.m4 (_AC_PREPROC_IFELSE, _AC_COMPILE_IFELSE,
2729         _AC_LINK_IFELSE): Redirect stdin to /dev/null, in an attempt to
2730         avoid thinking that Allegro Common Lisp's "cl" command is a C++
2731         compiler.
2733 2005-02-09  Paul Eggert  <eggert@cs.ucla.edu>
2735         * doc/autoconf.texi (Limitations of Usual Tools): Document that
2736         grep -q isn't portable.  Improve grep -s explanation.
2737         Problem reported by Dan Manthey.
2739 2005-02-08  Paul Eggert  <eggert@cs.ucla.edu>
2741         * doc/autoconf.texi (Special Shell Variables): Clarify
2742         PATH_SEPARATOR wording; fix typo in IFS.  Reported by Gary V. Vaughan.
2744 2005-02-07  Paul Eggert  <eggert@cs.ucla.edu>
2746         * doc/autoconf.texi: Use @acronym for DJGPP.
2747         Fix some @code's that should have been @env's, and vice versa.
2748         Sort environment variable names.
2749         Mention that shells no longer inherit IFS.
2750         Don't recommend PATH_SEPARATOR=';' so strongly.
2751         Mention that $RANDOM might expand to the empty string.
2752         "symlink" and "soft link" -> "symbolic link".
2753         Improve mktemp description (reported by Bruno Haible).
2755 2005-02-05  Paul Eggert  <eggert@cs.ucla.edu>
2757         * tests/foreign.at (Libtool): Don't overquote AT_SETUP arg.
2758         * tests/m4sh.at (AS_DIRNAME, AS_BASENAME, AS_MKDIR_P, AS_HELP_STRING):
2759         Likewise.
2760         * tests/semantics.at (AC_C_BIGENDIAN, AC_PATH_PROG & AC_PATH_PROGS):
2761         Likewise.
2763 2005-02-04  Paul Eggert  <eggert@cs.ucla.edu>
2765         * NEWS: Mention AT_COPYRIGHT.
2767         * tests/local.at (AT_CMP): Use diff directly on input files rather
2768         than copying them.
2770         * lib/autoconf/programs.m4 (AC_PROG_SED): Don't look in
2771         /usr/xpg4/bin since that sed dumps core (at least on Solaris 8).
2773 2005-02-04  Noah Misch  <noah@cs.caltech.edu>
2774         and Paul Eggert  <eggert@cs.ucla.edu>
2776         * tests/autotest.at (Empty test suite): New test.
2777         * tests/torture.at (Substitute and define special characters)
2778         (Substitute a 2000-byte string, Define to a 2000-byte string)
2779         (Substitute a newline, Define a newline): New tests.
2781 2005-02-04  Noah Misch  <noah@cs.caltech.edu>
2783         * lib/m4sugar/m4sugar.m4 (m4_re_string, m4_re_word): Revert 2002-03-04.
2784         * tests/local.at (AT_CHECK_M4SUGAR): Add `m4sugar' to keywords.
2785         (AT_CHECK_ENV): Ignore LTLIBOBJS, FC variables, EGREP, FGREP, and SED.
2786         * tests/m4sugar.at (AT_CHECK_M4SUGAR_TEXT, AT_CHECK_M4RE): New macros.
2787         (Standard regular expressions): New test.
2788         (m4_warn, m4_require: circular dependencies, m4_text_wrap): Strip
2789         excess test name quoting.
2790         * tests/semantics.at (AC_CHECK_HEADERS_OLD, AC_CHECK_HEADERS_NEW): Pass
2791         CPPFLAGS to `configure' instead of setting it in `configure'.
2793         * lib/m4sugar/m4sh.m4 (AS_UNAME): Try only /usr/bin/hostinfo, not
2794         any `hostinfo' in $PATH, since hostinfo.exe is a popular file name
2795         on some platforms.
2797         * lib/autoconf/fortran.m4 (AC_LANG(Fortran), AC_FC_SRCEXT):
2798         s/FC_SRCEXT/ac_fc_srcext/; s/FCFLAGS_SRCEXT/ac_fcflags_srcext/.
2800         * tests/local.at (AT_CMP): New macro.
2801         (AT_DATA_AUTOCONF): Do not call AC_PROG_GREP.
2802         (AC_SAVE_STATE): Move environment grep...
2803         (AT_CHECK_ENV): to here.  Filter out `'$''.  Use AT_CMP.
2804         (AT_CONFIG_CMP): New macro.
2805         (AT_CHECK_MACRO): Run `configure' twice with cache and compare results.
2806         * tests/c.at (Extensions): Do not exit early.
2807         * tests/atlocal.in: Inherit $GREP.
2809         * lib/autoconf/c.m4 (_AC_C_STD_TRY): New macro.
2810         (_AC_PROG_CC_C89, _AC_PROG_CC_C99): Use it.
2812         * lib/autoconf/general.m4 (_AC_INIT_COPYRIGHT): Update for 2005.
2813         (AC_COPYRIGHT): Factor header comment portion out and move into...
2814         * lib/m4sugar/m4sh.m4 (AS_COPYRIGHT): This.
2815         * lib/autotest/general.at (AT_COPYRIGHT): New macro.
2816         (AT_INIT): Add Autotest copyright notice.  Display copyright notices in
2817         --version output.
2818         * tests/local.at: Add Autoconf test suite copyright notice.
2819         * doc/autoconf.texi (Writing testsuite.at): Document AT_COPYRIGHT.
2821 2005-02-04  Bruno Haible  <bruno@clisp.org>
2822         and Paul Eggert  <eggert@cs.ucla.edu>
2824         * doc/autoconf.texi (Limitations of Usual Tools): New mkstemp entry.
2826 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
2828         * lib/m4sugar/m4sugar.m4 (m4_re_escape): Escape ?, ^, \, $ too;
2829         this fixes a bug tickled by the AT_CAPTURE_FILE change noted below.
2831         Try not to generated lines of unlimited length, as POSIX places a
2832         2047-byte limit on line length of portable text files.
2833         * lib/autoconf/general.m4 (AC_SUBST, AC_SUBST_FILE):
2834         Use newline as a separator, not space.
2835         * lib/autotest/general.m4 (AT_TESTED, AT_KEYWORDS): Likewise.
2836         (AT_CAPTURE_FILE): Use space-backslash-newline as a separator, not
2837         space.
2839 2005-02-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2841         * lib/m4sugar/m4sh.m4 (_AS_SHELL_FN_WORK): Move func_* to
2842         as_func_*.  Add test to check whether positional parameters
2843         are restored after function return.
2845 2005-02-02  Paul Eggert  <eggert@cs.ucla.edu>
2847         * doc/autoconf.texi (Special Shell Variables): Mention _,
2848         BIN_SH, DUALCASE.  Say that variables other than "status" are safe
2849         if they contain a lower-case letter.  The DUALCASE problem was
2850         reported by Ralf Wildenhues.
2852         * bin/autoconf.as: Don't exit with status 0 after write failure
2853         with --help or --version.
2854         * lib/autoconf/general.m4 (_AC_INIT_HELP, _AC_INIT_VERSION): Likewise.
2855         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Likewise.
2857 2005-02-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2859         * doc/autoconf.texi (Limitations of Usual Tools):
2860         Unicos 9 sed limitations.
2861         * lib/autoconf/fortran.m4 (_AC_PROG_FC): Try cf77 before fort77
2862         to get the option-enhanced interface on older Crays.  Try ftn for
2863         Fortran 95 (newer Crays).
2865 2005-02-01  Paul Eggert  <eggert@cs.ucla.edu>
2867         * man/Makefile.am (.x.1): Go back to the simple solution, but take
2868         care to echo the commands, so the user knows what's going on.
2869         Modified from a suggestion by Stepan Kasal.
2871         * doc/autoconf.texi (autoreconf Invocation): Mention autopoint,
2872         with a cross reference.  Derived from a suggestion by Bruce Korb.
2874 2005-01-31  Paul Eggert  <eggert@cs.ucla.edu>
2876         * doc/autoconf.texi (config.status Invocation): Warn about
2877         discrepancy between CONFIG_SHELL and shell used to invoke 'configure'.
2878         * doc/install.texi (Defining Variables): Likewise.
2879         Based on a proposed patch by Ralf Wildenhues.
2881         * man/Makefile.am (.x.1): Make sure the required generated files
2882         are up to date.  Problem and original solution proposed by Stepan Kasal.
2883         $(dist_man_MANS:.1=-bin-prereq), $(dist_man_MANS:.1=-tests-prereq),
2884         implicit-man-prerequisites): New rules, used by the above.
2886         * doc/make-stds.texi, doc/standards.texi: Sync from gnulib.
2887         * config/config.guess, config/config.sub, config/install-sh: Likewise.
2888         * config/missing, config/texinfo.tex: Likewise.
2890 2005-01-29  Stepan Kasal  <kasal@ucw.cz>
2892         Simplify the implementation of m4_require (a.k.a. AC_REQUIRE).
2893         Update the long comment explaining it.
2895         m4_require no longer writes an ``is required by'' line to the
2896         execution stack.  It contains only one bit of non-redundant
2897         information: that the macro was required, not called.  And even
2898         this bit is useless in most situations: have you ever met a macro
2899         which both calls and requires the same macro?
2901         * lib/m4sugar/m4sugar.m4 (_m4_defun_pro): Don't push a diversion...
2902         (_m4_defun_pro_outer): ... only via this macro, for the outermost
2903           macro.
2904         (_m4_defun_epi, _m4_defun_epi_outer): Complementarily.
2905         (m4_expansion_stack_pop): Remove the misplaced comment.
2906         (m4_require): Don't put the ``is required by'' line to the
2907           execution stack; slightly improve the out-of-a-defun error message.
2908         (_m4_divert_grow): New macro, counter for the temporary diversions.
2909         (_m4_require_call): Use it.
2910         * tests/m4sugar.at (m4_require): Expect output without the
2911           ``is required by'' messages.
2913 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
2915         * doc/autoconf.texi (Limitations of Usual Tools): Recommend X
2916         rather than x for expr.
2918         * lib/autoconf/lang.m4 (_AC_COMPILER_OBJEXT): Avoid subshells when
2919         this is safe.
2920         * lib/autoconf/programs.m4 (AC_PROG_EGREP, AC_PROG_FGREP): Likewise.
2921         * lib/autoconf/specific.m4 (AC_SYS_LONG_FILE_NAMES): Likewise.
2922         * lib/autotest/general.m4 (AT_INIT): Likewise.
2923         * lib/m4sugar/m4sh.m4 (_AS_LINENO_WORKS): Likewise.
2924         * tests/mktests.sh: Likewise.
2926 2005-01-27  Akim Demaille  <akim@epita.fr>
2928         Have autoheader honor --force.
2930         * doc/make-stds.texi, doc/standards.texi: Update from masters.
2931         * lib/Autom4te/Channels.pm, lib/Autom4te/Configure_ac.pm
2932         * lib/Autom4te/FileUtils.pm, lib/Autom4te/XFile.pm: Update
2933         from masters, so that FileUtils.pm's update_file provide --force
2934         support.
2935         * bin/autoheader.in: Pass $force to update_file so that
2936         config.h.in is always recreated when --force.
2938 2005-01-24  Stepan Kasal  <kasal@ucw.cz>
2940         * doc/autoconf.texi (Introduction): Update Peter Simons' address.
2942 2005-01-21  Paul Eggert  <eggert@cs.ucla.edu>
2944         * doc/autoconf.texi (Limitations of Builtins): Clarify that
2945         "if test ! -d foo; ..." is portable.  Suggested by Stepan Kasal.
2947 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
2949         * doc/autoconf.texi (Shell Substitutions): Fix typo in case statement.
2950         Warn about newline stripping in `` and $().  Update Solaris
2951         version to 9.
2952         (Limitations of Builtins): Use expr "X...", not expr "x...", as
2953         X insulates us from future changes to Posix.
2954         (Limitations of Usual Tools): For AS_DIRNAME, warn about newline
2955         stripping.
2957 2005-01-19  Stepan Kasal  <kasal@ucw.cz>
2959         * doc/autoconf.texi (Defining Symbols): Delete the false comment that
2960           you cannot use AC_DEFINE to define macros containing `[' or `]'.
2962 2005-01-13  Paul Eggert  <eggert@cs.ucla.edu>
2964         * doc/autoconf.texi (Limitations of Usual Tools): Document bug
2965         in Solaris 8 join.  Problem reported by Tomohiro Suzuki on
2966         bug-tar mailing list.
2968 2005-01-05  Stepan Kasal  <kasal@ucw.cz>
2970         * lib/m4sugar/m4sugar.m4 (m4_copy): Fix the explanation.
2972 2005-01-05  Paul Eggert  <eggert@cs.ucla.edu>
2974         * lib/autoconf/c.m4 (AC_LANG_INT_SAVE(C)): Declare longval and
2975         ulongval to be static, to avoid unwanted GCC warning.  Problem
2976         reported by Michael Jennings via Daniel Reed; see
2977         <https://bugzilla.redhat.com/beta/show_bug.cgi?id=143852>.
2979 2005-01-05  Alexandre Duret-Lutz  <adl@gnu.org>
2981         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ARGS): Define datarootdir,
2982         docdir, htmldir, dvidir, pdfdir, psdir, and localdir.  Update
2983         datadir, infodir, and mandir.  Adjust argument parsing code.
2984         (_AC_INIT_HELP): Update help text.
2985         * doc/autoconf.texi (Installation Directory Variables): Document
2986         new variables.
2988 2005-01-04  Noah Misch  <noah@cs.caltech.edu>
2990         * lib/autoconf/programs.m4 (AC_PROG_MAKE_SET): If the Make program does
2991         not seem to work, assume it does set $(MAKE).
2992         * doc/autoconf.texi (AC_PROG_MAKE_SET): Update.
2994 2005-01-03  Stepan Kasal  <kasal@ucw.cz>
2996         * lib/m4sugar/m4sh.m4 (AS_REQUIRE): Add a comment about nesting.
2998 2005-01-03  Stepan Kasal  <kasal@ucw.cz>
3000         A cleanup of the diversion support in m4sugar.
3002         * lib/m4sugar/m4sugar.m4 (_m4_divert): A typo in description.
3003         (_m4_divert_n_stack): New macro; the expansion is
3004           <newline>m4_divert_stack, if m4_divert_stack is defined, and void
3005           otherwise.
3006         (m4_divert, m4_divert_push, m4_divert_pop, m4_init): Use it.
3007         (m4_divert_push, m4_divert_pop, _m4_defun_epi): Don't expand the word
3008           stored in _m4_divert_diversion or _m4_divert_dump.
3009         (m4_divert_pop): When the parameter is given, compare the symbolic
3010           name with the last diversion pushed on the stack.  Previously, the
3011           current diversion was compared with the numeric value of the
3012           diversion given as the parameter.
3013         (m4_require): If the macro hasn't been expanded yet, call ...
3014         (_m4_require_call): this new macro.
3016 2005-01-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3018         * lib/autoconf/general.m4 (_AC_INIT_PREPARE, _AC_ARG_VAR_VALIDATE):
3019         Workarounds for documented `case' limitations.
3021 2005-01-03  Paul Eggert  <eggert@cs.ucla.edu>
3023         * doc/autoconf.texi (Limitations of Usual Tools): Warn about
3024         sed 'command1;command2'.  Problem reported by Ralf Wildenhues.
3026 2005-01-02  Paul Eggert  <eggert@cs.ucla.edu>
3028         * bin/autoconf.as, bin/autoheader.in, bin/autom4te.in,
3029         bin/autoreconf.in, bin/autoscan.in, bin/autoupdate.in,
3030         bin/ifnames.in, tests/mktests.sh: Update copyright date to 2005.
3032         Patch from Roger Leigh (with some minor changes) as follows:
3033         * NEWS: New macros AC_PROG_CC_C89, AC_PROG_CC_C99.
3034         Resurrect AC_PROG_CC_STDC.
3035         * doc/autoconf.texi (C Compiler): Add AC_PROG_CC_STDC,
3036         AC_PROG_CC_C89, AC_PROG_CC_C99.
3037         (Obsolete Macros): Remove AC_PROG_CC_STDC; it's no longer obsolete.
3038         * lib/autoconf/c.m4 (_AC_PROG_CC_C89, _AC_PROG_CC_C99, AC_PROG_CC_C89,
3039         AC_PROG_CC_C99): New macros.
3040         (AC_PROG_CC_STDC): Use them.
3041         (_AC_PROG_CC_STDC): Remove.
3042         (AC_C_PROTOTYPES): Use ac_cv_prog_cc_c89, not ac_cv_prog_cc_stdc.
3043         * THANKS: Add Roger Leigh.
3045 2004-12-30  Noah Misch  <noah@cs.caltech.edu>
3047         * bin/autoreconf.in (autoreconf_current_directory):  AM_INIT_AUTOMAKE
3048         signals that the package uses Automake; a `Makefile.am' is typical but
3049         not essential.  Reported by Magnus Therning.
3050         * tests/torture.at (autoreconf.): New banner.
3051         (autoreconf and non-AC configure): Rename to `Non-Autoconf
3052         AC_CONFIG_SUBDIRS'.
3053         (autoreconf an empty directory): Rename to `Empty directory'.
3054         (Unusual Automake input files): New test.
3056 2004-12-30  Noah Misch  <noah@cs.caltech.edu>
3058         * lib/autotest/general.m4 (AT_CAPTURE_FILE): New macro.
3059         (AT_SETUP): Clear AT_capture_files.
3060         (_AT_CHECK): On failure, log each of AT_capture_files.  Fix comment.
3061         (AT_KEYWORDS): Fix comment typo.
3062         * tests/autotest.at (AT_CHECK_AT): Use AT_CAPTURE_FILE.
3063         * tests/local.at (AT_CHECK_CONFIGURE): Use AT_CAPTURE_FILE.
3064         * doc/autoconf.texi (Writing testsuite.at): Document AT_CAPTURE_FILE.
3066 2004-12-29  Albert Chin-A-Young  <china@thewrittenword.com>
3068         * lib/autoconf/programs.m4 (_AC_FEATURE_CHECK_LENGTH):
3069         If the variable to set is already set, set ac_cv_path_$1
3070         to the preset value so caller can assume ac_cv_path_$1
3071         is available.  (trivial change)
3073 2004-12-27  Noah Misch  <noah@cs.caltech.edu>
3075         * BUGS (Minor Problems): Warn about makefile limitations.
3076         * Makefile.am: Find and update `INSTALL' in $(srcdir).
3077         * man/Makefile.am: Find and update manual pages in $(srcdir).
3079 2004-12-24  Eric Blake  <ebb9@byu.net>
3081         * lib/m4sugar/m4sh.m4 (_AS_DETECT_BETTER_SHELL): Test candidate
3082         shells in subshell, to avoid noise from ash.  (trivial change)
3084 2004-12-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3086         * doc/autoconf.texi (Limitations of Builtins) <case>: Mention
3087         problems with SunOS ksh and backslash escaping, Bourne shells and
3088         closing brackets (both within character classes).  Bug reported
3089         against Libtool by Alexander Kurz <alexander.kurz@qsc.de>.
3090         <read>: New entry.  Mention non-availability of -r.
3092 2004-12-21  Akim Demaille  <akim@epita.fr>
3094         * lib/autotest/general.m4 (AT_LINE): Don't add srcdir here, to
3095         avoid cluttering displayed messages.  Rather, prepend srcdir where
3096         AT_LINE is used for log files.
3098 2004-12-21  Stepan Kasal  <kasal@ucw.cz>
3100         * lib/autoconf/status.m4: Quote ``$tmp'' in many places.
3101         * lib/m4sugar/m4sh.m4 (AS_TMPDIR): Fix the comment, as traps are
3102           no longer part of the macro, quote the occurrence of ``$tmp''.
3103         * doc/autoconf.texi (Forbidden Patterns): Typo.
3105 2004-12-21  Akim Demaille  <akim@epita.fr>
3107         * lib/autotest/general.m4 (AT_INIT): Make sure the "ok" etc. are
3108         separated from the test title by forcing a white space.
3110 2004-12-21  Akim Demaille  <akim@epita.fr>
3112         Enable Emacs navigation within testsuite.log files.
3114         * lib/autotest/general.m4 (AT_CLEANUP): Add an hint for Emacs to
3115         use the compilation mode.
3116         (AT_LINE): Point to the srcdir.
3118 2004-12-19  Noah Misch  <noah@cs.caltech.edu>
3120         * tests/Makefile.am (installcheck-local): Use $(bindir).
3121         (check-local, installcheck-local): Pass TESTSUITEFLAGS.
3122         * doc/autoconf.texi (Making testsuite Scripts): Recommend the same
3123         Makefile.am scheme Autoconf now uses.
3125 2004-12-18  Noah Misch  <noah@cs.caltech.edu>
3127         * lib/m4sugar/m4sugar.m4 (m4_qlen, m4_qdelta): New macros.
3128         * lib/autotest/general.m4 (AT_SETUP): Use m4_qdelta.
3130 2004-12-18  Noah Misch  <noah@cs.caltech.edu>
3132         * lib/autotest/general.m4 (_AT_DECIDE_TRACEABLE): New macro.
3133         (_AT_CHECK): Use it.
3134         * lib/m4sugar/m4sh.m4 (AS_ESCAPE_FOR_EXPAND): Remove.
3135         (AS_ESCAPE): Fix comment.
3136         * tests/autotest.at: Adjust section banner comments.
3137         (AT_CHECK_AT): Accept STATUS and STDERR.
3138         (AT_CHECK_AT_TEST): Likewise.
3139         (Invalid brace-enclosed parameter expansion)
3140         (Multiline command from M4 expansion)
3141         (Double-M4-quoted command): New tests.
3143 2004-12-17  Paul Eggert  <eggert@cs.ucla.edu>
3145         * doc/autoconf.texi: Update GNU FDL version from 1.1 to 1.2.
3147 2004-12-17  Akim Demaille  <akim@epita.fr>
3149         * lib/autoconf/general.m4 (AC_SUBST, AC_SUBST_FILES): Pass $1 to
3150         m4_pattern_allow.
3151         Suggested by Alexandre Duret-Lutz.
3152         * doc/autoconf.texi (Setting Output Variables): Catch up.
3154 2004-12-17  Stepan Kasal  <kasal@ucw.cz>
3156         * lib/m4sugar/m4sh.m4 (_AS_TEST_PREPARE): Fix comment.
3158 2004-12-17  Stepan Kasal  <kasal@ucw.cz>
3160         * lib/autoconf/general.m4 (_AC_LIBOBJ): We can use AC_SUBST/2,
3161           remove the comment which said we cannot.
3163 2004-12-17  Stepan Kasal  <kasal@ucw.cz>
3165         Add a specialized check for resolv.h.  Thanks to Gerrit P. Haase,
3166         Reini Urban and Paul Eggert for reporting the dependencies.
3168         * lib/autoconf/headers.m4 (AC_HEADER_RESOLV): New macro.
3169         * doc/autoconf.texi (AC_HEADER_RESOLV): Document it.
3170         (AC_HEADER_STAT): @cvindex{STAT_MACROS_BROKEN}, not @acindex.
3172 2004-12-17  Stepan Kasal  <kasal@ucw.cz>
3174         * bin/autoscan.in: Open autoscan.log only after ``parse_args'';
3175           so that eg. ``autoscan --help'' doesn't truncate it.
3177 2004-12-15  Nicolas Joly  <njoly@pasteur.fr>
3179         * lib/autoconf/programs.m4 (_AC_FEATURE_CHECK_LENGTH): Remove
3180         generated conftest files.
3182 2004-12-13  Noah Misch  <noah@cs.caltech.edu>
3184         * lib/autotest/general.m4 (_AT_CHECK) [--trace]: Do not enable shell
3185         tracing on commands with possibly-escaped newlines.
3186         * doc/autoconf.texi (Writing testsuite.at): Delete documentation of the
3187         discontinued behavior and its implications.
3188         * tests/autotest.at (BS-newline in command, ^BS-newline in command)
3189         (BSx641-newline in command, BS-BS-newline in command)
3190         (BSx640-newline in command, Newline-CODE-BS-newline in command)
3191         (Single-quote-BS-newline in command)
3192         (Single-quote-newline-BS-newline in command): New tests.
3194 2004-12-13  Stepan Kasal  <kasal@ucw.cz>
3196         * lib/m4sugar/m4sh.m4 (AS_EXECUTABLE_P): Use test -f && test -x
3197           on platforms where it works.
3198         (_AS_TEST_PREPARE): Test for ``test -x''.
3199         (_AS_BROKEN_TEST_PREPARE): Nuke.
3201 2004-12-13  Stepan Kasal  <kasal@ucw.cz>
3203         * lib/m4sugar/m4sh.m4 (AS_TMPDIR): Move the trap commands ...
3204         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): ... here;
3205           give only 4-letter prefix to AS_TMPDIR, comment fixed.
3206         * lib/autoconf/programs.m4 (_AC_PATH_PROG_FEATURE_CHECK): Don't
3207           create the temporary directory.
3208         (_AC_FEATURE_CHECK_LENGTH): Work in current directory.
3210 2004-12-12  Kelley Cook  <kcook@gcc.gnu.org>
3212         * bin/autoheader.in: Exit if no AC_CONFIG_HEADERS was found.
3213         (trivial change)
3215 2004-12-12  Alexandre Duret-Lutz  <adl@gnu.org>
3217         * doc/autoconf.texi (Limitations of Usual Tools) <expr (:)>: Typo.
3219 2004-12-11  Noah Misch  <noah@cs.caltech.edu>
3221         * lib/autotest/general.m4 (_AT_CHECK) [--trace]: Rework a shell pattern
3222         to avoid using a negated character class.  Reported by Nicolas Joly.
3223         * tests/local.at (AT_CHECK_SHELL_SYNTAX): Check for similar constructs.
3225 2004-12-10  Paul Eggert  <eggert@cs.ucla.edu>
3227         * man/Makefile.am (autoconf.1, autoheader.1, autom4te.1, autoreconf.1,
3228         autoscan.1, autoupdate.1, ifnames.1, config.guess.1, config.sub.1):
3229         Don't depend on .x file explicitly, since "make" does that for us.
3230         Suggested by Stepan Kasal.
3232         * bin/Makefile.am (MOSTLYCLEANFILES): Renamed from CLEANFILES.
3233         Add *.tmp.
3234         (autoconf, autoheader, autom4te, autoreconf, autoscan, autoupdate,
3235         ifnames): Factor common code.  And they said it couldn't be done!
3237 2004-12-09  Paul Eggert  <eggert@cs.ucla.edu>
3239         * bin/.cvsignore: Add autoconf.in.
3240         * tests/.cvsignore: Add wrapper.in.
3241         * lib/autotest/general.m4: Escape '$' in case pattern.
3243 2004-12-09  Noah Misch  <noah@cs.caltech.edu>
3245         * man/Makefile.am (autoconf.1): Regenerate when `autoconf.as' changes.
3247         * lib/autotest/general.m4 [--trace] (AT_INIT): Do not `set -v'.
3249         * tests/autotest.at: New file.
3250         * tests/suite.at: Include it.
3251         * tests/Makefile.am: Distribute it.
3253         * lib/autotest/general.m4 [--trace] (_AT_CHECK): Do not enable
3254           shell tracing on a command that could contain multiple lines.
3255         * doc/autoconf.text: Document that fact and its implications.
3256         * lib/m4sugar/m4sh.m4 (AS_ESCAPE_FOR_EXPAND): New macro.
3257         * tests/autotest.at (Multiline backquote command substitution,
3258           Multiline parameter expansion, Literal multiline command,
3259           Multiline parenthetical command substitution): Remove XFAIL.
3261 2004-12-09  Paul Eggert  <eggert@cs.ucla.edu>
3263         * doc/autoconf.texi (Libraries): Clarify problems with AC_CHECK_LIB
3264         and suggest AC_SEARCH_LIBS.  Suggested by Noah Misch and Stepan Kasal.
3266 2004-12-08  Noah Misch  <noah@cs.caltech.edu>
3268         * configure.ac (test suite): Cease to generate wrapper scripts.
3269         * configure: Regenerate.
3270         * lib/freeze.mk (MY_AUTOM4TE): Wrap the uninstalled autom4te directly.
3271         (m4f_dependencies): Adjust accordingly.
3272         * tests/Makefile.am (Wrappers): Generate wrapper scripts.
3273         (wrapper.in): Generate it in the build directory.
3274         (MAINTAINERCLEANFILES): Delete wrapper.in.
3275         (CLEANFILES): Add wrapper.in.
3276         * tests/wrapper.as: Move AS_INIT to very top, preserving copyright in
3277         the output.  Replace each $as_me with a @wrap_program@.
3278         * tests/wrapper.in: Delete it; we always build it.
3280         * bin/Makefile.am (autoconf.in): Generate it in the build directory.
3281         (EXTRA_DIST): Remove autoconf.in.
3282         (CLEANFILES): Add autoconf.in.
3283         (autoconf): Find autoconf.in in the build directory.
3284         * bin/autoconf.in: Delete it; we always build it.
3286 2004-12-08  Noah Misch  <noah@cs.caltech.edu>
3288         * lib/autotest/general.m4 (AT_INIT): Replace a `tr' with a `sed'.  Join
3289         PATH members so as to not prepend an empty element.  Move a comment.
3290         * Makefile.am (SUBDIRS): Build in `tests' last.
3291         * tests/Makefile.am (installcheck-local): Add check-local dependencies.
3293 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
3295         * lib/mdate-sh: Don't use "set - x`$ls_command /`", as zsh mishandles
3296         the spaces inside $ls_command.  Problem reported by Loulou Pouchet in
3297         <http://lists.gnu.org/archive/html/autoconf/2004-12/msg00074.html>.
3298         Don't use "set - x"; plain "set x" is enough, and simplifies debugging.
3300 2004-12-07  Stepan Kasal  <kasal@ucw.cz>
3302         * lib/autoconf/functions.m4 (AC_FUNC_GETMNTENT): Fix typo in previous
3303         patch: extra "-l"s.
3305 2004-12-06  Paul Eggert  <eggert@cs.ucla.edu>
3307         * lib/autoconf/functions.m4 (AC_FUNC_GETMNTENT): Check libc before
3308         looking elsewhere for getmntent.  Problem reported by Mark D. Baushke.
3309         * doc/autoconf.texi (Particular Functions): Mention new behavior.
3311 2004-12-03  Stepan Kasal  <kasal@ucw.cz>
3313         * lib/autoconf/general.m4 (AC_DEFINE, AC_DEFINE_UNQUOTED): Factor
3314           out the common code to ...
3315         (_AC_DEFINE_Q): ... a new macro; simplify the condition about the
3316           value of the #define--default to 1, iff the macro was called
3317           with exactly one parameter.
3319 2004-12-02  Paul Eggert  <eggert@cs.ucla.edu>
3321         * lib/autoconf/functions.m4 (AC_FUNC_MEMCMP): Use
3322         "char c = '\200';" rather than "char c = 0x80;" as the
3323         latter doesn't conform to the strict C standard due to
3324         overflow on signed char hosts.
3326         * lib/autoconf/c.m4 (_AC_PROG_CC_STDC): Prefer -qlanglvl=extc89
3327         to -qlanglvl=ansi.  We don't want to disable extensions.
3329 2004-11-29  Paul Eggert  <eggert@cs.ucla.edu>
3331         * doc/autoconf.texi (Particular Programs): @code{$PATH} -> @env{PATH}.
3332         (Using Autotest, testsuite Scripts, Writing testsuite.at):
3333         Reword slightly to avoid some English-language problems noted
3334         by Ralf Wildenhues in:
3335         http://lists.gnu.org/archive/html/autoconf-patches/2004-11/msg00027.html
3337 2004-11-29  Stepan Kasal  <kasal@ucw.cz>
3339         * NEWS: Add ^L above each release.
3341 2004-11-28  Paul Eggert  <eggert@cs.ucla.edu>
3343         Fix documentation problems reported by Russ Boylan in
3344         <http://lists.gnu.org/archive/html/bug-autoconf/2004-11/msg00056.html>,
3345         along with some nearby cruft.
3346         * doc/autoconf.texi (Libtool): Libtool can be used without
3347         Automake (not without Autoconf).
3348         (Introduction): Mention lists.gnu.org.
3349         * BUGS: Don't mention bugs.gnu.org.
3350         Remove mention of ancient libtool compatibility problem.
3351         * NEWS: Mention that bugs.gnu.org is kaput.
3352         * README: Likewise.  Mention where mailing list archives can be found.
3354 2004-11-28  Stepan Kasal  <kasal@ucw.cz>
3356         * HACKING: Refer to "coreutils", not "File, Shell or Text utils".
3357         * lib/m4sugar/m4sh.m4 (AS_HELP_STRING): A typo in the comment.
3359 2004-11-26  Paul Eggert  <eggert@cs.ucla.edu>
3361         * doc/autoconf.texi (Pretty Help Strings): Go back to
3362         single-quoting assignments to cache variables.
3364 2004-11-23  Stepan Kasal  <kasal@ucw.cz>
3366         * doc/autoconf.texi (Pretty Help Strings): Fix quoting issues
3367         with the examples; fix the bug in MY_ARG_WITH example reported
3368         by Alexandre Duret-Lutz.
3369         * lib/autoconf/general.m4 (AC_ARG_ENABLE, AC_ARG_ENABLE): Enable
3370         expansion of $1 in the comment emitted to configure.
3372 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
3374         * doc/autoconf.texi (Pretty Help Strings): Fix typo
3375         in my editing of the previous patch.  Problem reported
3376         by Alexandre Duret-Lutz.
3378 2004-11-22  Stepan Kasal  <kasal@ucw.cz>
3380         * doc/autoconf.texi (Autoconf Language): Explain that
3381         ``descriptions'' may not be double quotes.
3382         (Quotation Rule Of Thumb): Likewise.
3383         (Pretty Help Strings): Likewise; remove the wrong comment;
3384         simplify the examples and improve their quoting.
3386 2004-11-13  Stepan Kasal  <kasal@ucw.cz>
3388         * lib/autoconf/programs.m4 (_AC_FEATURE_CHECK_LENGTH): Don't check
3389         the $1_found variable, don't test whether the file is executable;
3390         Both things are checked ...
3391         (_AC_PATH_PROG_FEATURE_CHECK): ... here; AS_EXECUTABLE_P replaces
3392         the former ``test -f''.
3393         * lib/m4sugar/m4sh.m4 (_AS_TEST_PREPARE): Fix a typo.
3395 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
3397         * doc/autoconf.texi (Limitations of Usual Tools): Avoid cp -r;
3398         use cp -R instead.
3400 2004-11-10  Derek R. Price  <derek@ximbiot.com>
3402         * doc/autoconf.texi (Limitations of Usual Tools): Note `cp -r'
3403         limitations.  Reorder paragraphs for clarity.
3405 2004-10-11  Paul Eggert  <eggert@cs.ucla.edu>
3407         * doc/autoconf.texi: Standardize spelling of "Posix" (as opposed
3408         to "POSIX" or "@acronym{POSIX}"), and similarly for "DOS
3409         variants", "Unix", and some related minor wording fixups.
3411         (Shellology, Special Shell Variables): Document that the Zsh
3412         problem with NULLCMD was fixed in zsh 3.1.6-dev-18.  Thanks
3413         to Alexandre Duret-Lutz for this info.
3415 2004-10-10  Alexandre Duret-Lutz  <adl@gnu.org>
3417         * doc/autoconf.texi (One-Shot Macros): New node.
3419 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
3421         * doc/autoconf.texi (Function Portability): Fix misdescription
3422         of putenv.  Problem reported by Michael Wardle.
3424 2004-09-22  Paul Eggert  <eggert@cs.ucla.edu>
3426         * doc/autoconf.texi (auindex): New macro.
3427         (AU_DEFUN): Use it to fix the bug when the index contained AC_AU_DEFUN.
3428         Problem reported by Stepan Kasal.
3430 2004-09-05  Paul Eggert  <eggert@cs.ucla.edu>
3432         Fix problems reported by Andreas Buening in:
3433         http://lists.gnu.org/archive/html/autoconf-patches/2004-04/msg00004.html
3434         * lib/autoconf/programs.m4 (AC_PROG_MAKE_SET): Set SHELL=/bin/sh
3435         in test makefile.
3436         * lib/autotest/general.m4 (AT_INIT): Don't assume /dev/null is
3437         readable; it's not true in OS/2-emx.
3439 2004-09-04  Paul Eggert  <eggert@cs.ucla.edu>
3441         * lib/autoconf/libs.m4 (_AC_PATH_X_XMKMF): If xmkmf returns
3442         "/usr/include", clear ac_x_includes instead of leaving it as "no"
3443         (trivial change).  Problem and patch reported by Andrew Church in:
3444         http://lists.gnu.org/archive/html/bug-autoconf/2004-04/msg00016.html
3446 2004-09-03  Paul Eggert  <eggert@cs.ucla.edu>
3448         * doc/autoconf.texi: Give AC_DEFINE and AC_DEFINE_UNQUOTED
3449         three args in examples.  Problem reported by Frederik Fouvry in:
3450         http://lists.gnu.org/archive/html/bug-autoconf/2004-09/msg00017.html
3451         Also, fix some minor spacing and punctuation bugs.
3453 2004-09-02  Akim Demaille  <akim@epita.fr>
3455         * doc/autoconf.texi (Limitations of Builtins): Swap "cd" and
3456         "case" to restore ordering.
3457         Reported by Stepan Kasal.
3459 2004-08-26  Akim Demaille  <akim@epita.fr>
3461         * doc/autoconf.texi: Minor typos and stylos.
3463 2004-08-20  Paul Eggert  <eggert@cs.ucla.edu>
3465         * configure.ac (AC_INIT): Bump to 2.59c.
3467 2004-08-20  Paul Eggert  <eggert@cs.ucla.edu>
3469         Version 2.59b.
3471         * README: Add advice about m4 1.4.2.
3473         * Makefile.cfg (wget_files): Remove config.guess, config.sub,
3474         texinfo.tex for now (done by hand now).
3475         * Makefile.maint (wget_files, cvs_files):
3476         Remove ansi2knr.c; nobody uses it.
3477         (ansi2knr.c-url_prefix): Remove.
3478         (cvs-update): Fix test for failure.  I don't know why it ever
3479         worked...
3481         * doc/autoconf.texi: Update URLs, some of which went stale.
3482         Use @uref rather than @href.
3484         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ARGS): Have configure
3485         handle "--" as per POSIX.  Suggested by Paul Pogonyshev.
3487         * config/config.guess, config/config.sub, config/elisp-comp,
3488         config/install-sh, config/mkinstalldirs, config/texinfo.tex,
3489         doc/fdl.texi, doc/standards.texi: Sync with master copy.
3491         * NEWS, TODO, configure.ac, bin/autoscan.in,
3492         bin/autoupdate.in, bin/ifnames.in, doc/autoconf.texi,
3493         doc/install.texi, lib/Autom4te/Configure_ac.pm,
3494         lib/Autom4te/FileUtils.pm, lib/autoconf/general.m4,
3495         lib/autoconf/programs.m4, lib/autoconf/status.m4,
3496         lib/autotest/general.m4, lib/m4sugar/m4sh.m4,
3497         lib/m4sugar/m4sugar.m4, tests/local.at, tests/m4sh.at,
3498         tests/tools.at, tests/torture.at:
3499         Use "file name" rather than "filename" or "path",
3500         to be consistent with the terminology of the GNU coding standards.
3502 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
3504         * lib/autoconf/c.m4 (AC_LANG_BOOL_COMPILE_TRY(C),
3505         AC_C_LONG_DOUBLE): Undo 2004-06-04 change, as it didn't work with
3506         HP-UX 11.23 cc/aCC or Tru64 4.0 cc.  Problem reported by Noah Misch in
3507         <http://lists.gnu.org/archive/html/autoconf/2004-07/msg00004.html>.
3509         More fixes to support spaces in the name of the build directory.
3510         This isn't a complete fix but it's an improvement.
3512         * bin/autoconf.as (autom4te_options): New var.
3513         Use it instead of appending to AUTOM4TE, so that we can allow
3514         spaces in the build directory's absolute name.
3515         * bin/autoheader.in ($autoconf): Allow spaces in file names.
3516         * lib/autotest/general.m4 (AT_INIT, AT_CLEANUP, _AT_CHECK,
3517         AT_CHECK_NOESCAPE): Likewise.
3518         * tests/wrapper.as (testdir, AUTOM4TE_CFG, autom4te_perllibdir,
3519         main program): Likewise.
3521 2004-08-18  Paul Eggert  <eggert@cs.ucla.edu>
3523         * lib/autoconf/general.m4 (_AC_INIT_HELP): Quote $ac_popdir uses.
3524         From Ralf Corsepius in:
3525         http://lists.gnu.org/archive/html/autoconf-patches/2004-08/msg00014.html
3527 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
3529         * doc/autoconf.texi (Function Portability): Document isinf and
3530         and isnan.  From a suggestion by Kevin Ryde.
3532         * lib/Autom4te/General.pm (END): Return correct exit status even
3533         if unlink succeeds and sets $?.  Needed with Solaris 8's perl 5.00503.
3535 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
3537         * tests/torture.at (Deep Package): Use configure.in, not configure.ac,
3538         for compatibility with Automake 1.4.  Reported by J C Fitzgerald in
3539         <http://lists.gnu.org/archive/html/bug-autoconf/2003-08/msg00051.html>.
3541 2004-08-04  Alexandre Duret-Lutz  <adl@gnu.org>
3543         * lib/autoconf/general.m4 (AC_REQUIRE_AUX_FILE): New empty macro.
3544         (AC_CANONICAL_BUILD): Call it to require config.sub and config.guess.
3545         * lib/autoconf/programs.m4 (AC_PROG_INSTALL): Likewise for install-sh.
3546         * doc/autoconf.texi (Input): Document AC_REQUIRE_AUX_FILE.
3547         * lib/autom4te.in (Automake-preselections): Preselect
3548         AC_REQUIRE_AUX_FILE.  Automake 1.10 will trace it.
3550 2004-08-02  Alexandre Duret-Lutz  <adl@gnu.org>
3552         * lib/autom4te.in (Automake-preselections): Preselect
3553         AC_CANONICAL_BUILD and AC_CANONICAL_TARGET.  Automake 1.9.1 will
3554         trace them.
3556 2004-07-29  Paul Eggert  <eggert@cs.ucla.edu>
3558         * lib/m4sugar/m4sh.m4 (_AS_BOURNE_COMPATIBLE): Set BIN_SH, for
3559         Tru64.
3560         * doc/autoconf.texi (Shellology): Mention BIN_SH.
3561         Document problem with "`""`" in pdksh POSIX mode.
3563 2004-07-27  Paul Eggert  <eggert@cs.ucla.edu>
3565         * lib/m4sugar/m4sh.m4 (_AS_BOURNE_COMPATIBLE): Use "set -o posix"
3566         with pdksh, too.  Problem reported by Patrick Welche via
3567         Gary V. Vaughan.
3568         * doc/autoconf.texi (Shellology): Note that set -o posix is
3569         useful for pkdsh, too.
3571 2004-06-24  Paul Eggert  <eggert@cs.ucla.edu>
3573         * lib/m4sugar/m4sh.m4 (_AS_DETECT_BETTER_SHELL): Require
3574         _AS_UNSET_PREPARE, so that we can use $as_unset directly.
3575         Don't fail if ENV or BASH_ENV is readonly.
3576         (AS_SHELL_SANITIZE): Don't fail if ENV, MAIL, MAILPATH, LC_ALL,
3577         etc. are read only.  Problem reported by Ludovic Courtes.
3579 2004-06-23  Noah Misch  <noah@cs.caltech.edu>
3581         * lib/m4sugar/m4sh.m4 (_AS_BOURNE_COMPATIBLE): If the shell is
3582         zsh, disable GLOB_SUBST to avoid backslash handling problems.
3583         (trivial change)
3585 2004-06-04  Paul Eggert  <eggert@cs.ucla.edu>
3587         * doc/autoconf.texi (File System Conventions): Warn about
3588         names like "aux".  Problem reported by Eric Blake.
3590         * lib/autoconf/c.m4 (AC_LANG_BOOL_COMPILE_TRY (C)): Use division
3591         by zero instead of array size, so that we can use any arithmetic
3592         constant expression (instead of requiring an integer constant
3593         expression).  This allows us to test expressions like DBL_MAX <
3594         LDBL_MAX, which didn't conform to the C standard using the old
3595         method.
3596         (AC_C_LONG_DOUBLE): Put back in the tests for LDBL_MAX and LDBL_EPSILON,
3597         now that we can do floating-point tests at compile time.
3599 2004-06-02  Paul Eggert  <eggert@cs.ucla.edu>
3601         * lib/autoconf/c.m4 (AC_C_LONG_DOUBLE): Don't check LDBL_MAX
3602         and LDBL_EPSILON, as the resulting expression isn't an
3603         integer constant expression and violates the C standard.
3604         Problem reported by Nelson H. F. Beebe.  Also, check
3605         for "L" suffix, and check that long double doesn't have
3606         worse range or precision than double, that mixed-mode
3607         arithmetic doesn't generate a diagnostic, that double
3608         constants fit in long double.
3610 2004-06-03  Kevin Ryde  <user42@zip.com.au>
3612         * doc/autoconf.texi (Function Portability): Add notes on free(NULL),
3613         malloc(0) and realloc(NULL,size).
3615         * doc/autoconf.texi (Shell Substitutions): Spelling error reported by
3616         Bob Proulx.
3618 2004-05-31  Paul Eggert  <eggert@cs.ucla.edu>
3620         * lib/autoconf/headers.m4 (HAVE_STDBOOL_H): Detect _Bool bug
3621         in HP aC++/ANSI C B3910B A.05.55 [Dec 04 2003].  Problem reported
3622         by Jim Meyering.
3624 2004-05-26  Paul Eggert  <eggert@cs.ucla.edu>
3626         * doc/autoconf.texi (Limitations of Builtins): Mention that ! COMMAND
3627         can be rewritten using if-then-else.  Suggested by Bruno Haible.
3629 2004-05-25  Paul Eggert  <eggert@cs.ucla.edu>
3631         * doc/autoconf.texi (testsuite Scripts): Fix typo.
3632         Problem reported by Stepan Kasal.
3634 2004-05-24  Paul Eggert  <eggert@cs.ucla.edu>
3636         * tests/Makefile.am (autoconfdir): Fix to match comment (trivial
3637         change).  Patch reported by Ralf Wildenhues in
3638         <http://mail.gnu.org/archive/html/bug-autoconf/2004-05/msg00092.html>.
3640         * lib/autoconf/functions.m4 (AC_FUNC_MBRTOWC): Don't assume that a
3641         function F exists if the compiler and linker let you compile an
3642         expression like (F != 0).  Recent versions of GCC optimize away
3643         the reference to F in that case, since every function address must
3644         be nonzero, so the link succeeds even if F does not exist.
3645         Problem reported by Manu in
3646         <http://mail.gnu.org/archive/html/bug-gnu-utils/2004-05/msg00060.html>.
3648         * doc/autoconf.texi (Systemology): Standardize on the spelling of
3649         "Unix".  Many uses changed.
3650         (Limitations of Builtins): Explain better why the ! command isn't
3651         portable.
3653 2004-05-22  Alexandre Duret-Lutz  <adl@gnu.org>
3655         * lib/autom4te.in (Automake-preselections): Preselect
3656         LT_SUPPORTED_TAG in lieu of AC_LIBTOOL_TAGS.
3658 2004-05-19  Kevin Ryde  <user42@zip.com.au>
3660         * doc/autoconf.texi (Function Portability): Add strerror_r, cross
3661         referencing AC_FUNC_STRERROR_R.
3663         * doc/autoconf.texi (Particular Functions): In AC_FUNC_CLOSEDIR_VOID,
3664         note pessimistic assumption when cross compiling.
3666 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
3668         * doc/autoconf.texi (Limitations of Make): Note that BSD make
3669         (until 2004) invoked subcommands with sh -e, contra POSIX.
3670         Reported by Kevin Ryde.
3672 2004-05-10  Eric Sunshine  <sunshine@sunshineco.com>
3674         * programs.m4 (_AC_PROG_GREP): Fixed bug where PATH argument handed to
3675         _AC_PATH_PROG_FEATURE_CHECK contained leading whitespace (i.e.
3676         "        $PATH:/usr/xpg4/bin"). This resulted in bogus tests, such as
3677         `test -f "        /usr/bin/grep"', which _always_ failed.
3678         (AC_PROG_SED): Ditto bogus PATH fix.
3679         * autoconf.texi (AC_PROG_GREP): Properly document that this macro
3680         requires that grep correctly supports _multiple_ `-e' options, rather
3681         than stating only that grep should accept `-e'.
3683 2004-05-03  Paul Eggert  <eggert@cs.ucla.edu>
3685         Port to C99, which requires that 'exit' be declared.
3687         * lib/autoconf/c.m4 (AC_C_BIGENDIAN): Use AC_INCLUDES_DEFAULT
3688         to ensure that stdlib.h is included.
3689         * lib/autoconf/functions.m4 (_AC_LIBOBJ_ALLOCA, AC_FUNC_SETPGRP,
3690         AC_FUNC_STRTOD, AC_FUNC_SETVBUF_REVERSED, AC_FUNC_FORK, _AC_FUNC_FORK,
3691         _AC_FUNC_VFORK, AC_FUNC_WAIT3): Likewise.
3692         * lib/autoconf/specific.m4 (AC_SYS_RESTARTABLE_SYSCALLS): Likewise.
3693         * lib/autoconf/types.m4 (AC_TYPE_GETGROUPS): Likewise.
3694         * lib/autoconf/headers.m4 (AC_HEADER_STDC): Include <stdlib.h>
3695         when using 'exit' in a test; C99 requires that 'exit' be declared.
3697 2004-05-02  Paul Eggert  <eggert@cs.ucla.edu>
3699         * doc/autoconf.texi (Particular Programs): AC_PROG_GREP
3700         now prefers 'grep' implementations that accept -e.
3701         (Limitations of Usual Tools): Describe problems of traditional
3702         egrep and fgrep with long input lines, and of traditional grep
3703         with -e.
3704         * lib/autoconf/programs.m4 (AC_PROG_GREP): Check for -e, too.
3705         (_AC_PROG_GREP): Assume 3rd arg is properly quoted for the shell.
3706         All callers changed.  Append /usr/xpg4/bin to the PATH, for
3707         Solaris.
3708         (_AC_FEATURE_CHECK_LENGTH): Discard stderr, so we don't bother
3709         the user with complaints about multiple -e options.
3710         * tests/local.at (AC_STATE_SAVE): Use $GREP, not grep.
3711         Define it with AC_PROG_GREP.
3712         * configure.ac (AC_PROG_GREP): Add.
3713         * lib/freeze.mk (GREP): New macro.
3715 2004-05-02  Eric Sunshine  <sunshine@sunshineco.com>
3717         * lib/m4sugar/m4sh.m4 (_AS_DETECT_BETTER_SHELL): Consult $SHELL as
3718         a possible candidate only after all others fail, rather than
3719         consulting it first.  This improves backward compatibility by
3720         better reflecting the way shell selection occurred in previous
3721         versions of Autoconf, and should help to avoid triggering latent
3722         problems in other packages, such as the one in Automake where zsh
3723         is not handled robustly:
3724         http://mail.gnu.org/archive/html/automake/2004-04/msg00095.html
3725         Although it is not Autoconf's responsibility to work around
3726         problems in Automake, it nevertheless makes sense to avoid
3727         introducing unnecessary incompatibilites.
3729 2004-04-22  Albert Chin-A-Young  <china@thewrittenword.com>,
3730             Gary V. Vaughan  <gary@gnu.org>
3732         * lib/autoconf/programs.m4 (_AC_FEATURE_CHECK_LENGTH): Don't guess
3733         how deeply nested we are when a suitable tool is found, set the
3734         ac_path_TOOL_found flag.
3735         (_AC_PATH_PROG_FEATURE_CHECK): Encapsulate knowledge of how deeply
3736         nested we are in this macro.  Break out of all 3 nested loops if
3737         ac_path_TOOL_found is set.
3739 2004-04-21  Gary V. Vaughan  <gary@gnu.org>
3741         * lib/autoconf/programs.m4 (_AC_FEATURE_CHECK_LENGTH): Break out
3742         of the _AS_PATH_WALK loop too if GNU flavor is found.
3744 2004-04-21  Alexandre Duret-Lutz  <adl@gnu.org>
3746         * doc/autoconf.texi (Limitations of Make): Update documentation
3747         for `$<'.  New entry `Long lines', based on a report from Simon
3748         Josefsson.  Augment the documentation for SHELL = @SHELL@ with a
3749         paragraph about DJGPP, based on a mail from Richard Dawe.
3751 2004-04-20  Paul Eggert  <eggert@twinsun.com>
3753         * tests/c.at (C keywords): Don't assume that GCC supports
3754         "restrict" and "inline", as sufficiently-old GCC versions do not
3755         (also, GCC configured to be in pedantic C89 mode does not).
3756         Problem reported by Sumit Pandya in:
3757         http://mail.gnu.org/archive/html/autoconf/2004-04/msg00092.html
3759         * lib/autoconf/c.m4 (_AC_PROG_CC_G, _AC_PROG_CXX_G): Don't
3760         consider -g to work if it generates warnings when plain compiles
3761         don't.  Problem reported by Braden McDaniel in:
3762         http://mail.gnu.org/archive/html/autoconf-patches/2003-07/msg00014.html
3764         * doc/autoconf.texi (Slashes): New section, to document a problem
3765         reported by Jim Meyering in:
3766         http://mail.gnu.org/archive/html/bug-coreutils/2004-02/msg00060.html
3768         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Remove potential
3769         linker output files before linking, to work around IRIX 6 linker bug.
3770         Problem reported by Rainer Orth in:
3771         http://mail.gnu.org/archive/html/autoconf-patches/2004-02/msg00007.html
3773 2004-04-20  Gary V. Vaughan  <gary@gnu.org>
3775         * lib/autoconf/programs.m4 (_AC_FEATURE_CHECK_LENGTH): Make the
3776         best tool so far counter rely on the tool path variable name to
3777         avoid checks for one tool being affected by the results of running
3778         the length check on a previous tool.
3780         * lib/autoconf/programs.m4 (_AC_PROG_GREP): Take an additional
3781         match expression argument, as different greps have different
3782         regular expression flavours.
3783         (AC_PROG_FGREP): Pass 'FGREP'. fgrep treats all match chars as
3784         literals.
3785         (AC_PROG_EGREP): Pass 'EGREP$'.
3786         (AC_PROG_GREP): Pass 'GREP$'.
3788 2004-04-20  Albert Chin-A-Young  <china@thewrittenword.com>
3790         * lib/autoconf/programs.m4 (AC_PROG_GREP): Cache variable
3791         is `ac_cv_path_GREP', not `oc_cv_path_GREP'.
3793 2004-03-29  Paul Eggert  <eggert@twinsun.com>
3795         * doc/autoconf.texi (Particular Headers, Particular Types, Generic
3796         Types, Specific Compiler Characteristics, System Services,
3797         Obsolete Macros): Use 'long int', 'short int', 'unsigned int'
3798         etc. consistently instead of 'long', 'short', 'unsigned' etc.
3799         * lib/autoconf/c.m4 (AC_LANG_INT_SAVE(C), AC_C_BIGENDIAN): Likewise.
3800         * lib/autoconf/functions.m4 (AC_FUNC_MMAP, AC_FUNC_SELECT_ARGTYPES):
3801         Likewise.
3802         * lib/autoconf/headers.m4 (AC_HEADER_SYS_WAIT): Likewise.
3803         * lib/autoconf/types.m4 (AC_TYPE_GETGROUPS, AC_TYPE_SIZE_T,
3804         AC_TYPE_OFF_T): Likewise.
3805         * tests/semantics.at (AC_CHECK_TYPES: backward compatibility):
3806         Likewise.
3808         * tests/foreign.at (Libtool): Create an empty aclocal.m4, to
3809         pacify libtool 1.5.2.  Fix quoting problems in sed command.
3811 2004-03-28  Paul Eggert  <eggert@twinsun.com>
3813         * doc/autoconf.texi (Particular Structures): AC_STRUCT_TIMEZONE
3814         now defines HAVE_DECL_TZNAME if it is declared, when
3815         HAVE_STRUCT_TM_TM_ZONE is not defined.
3816         * lib/autoconf/types.m4 (AC_STRUCT_TIMEZONE): Implement this.
3817         Do not assume atoi.  Rely on HAVE_DECL_TZNAME when testing
3818         for HAVE_TZNAME.
3820 2004-03-28  Steven G. Johnson  <stevenj@fftw.org>
3822         * lib/autoconf/fortran.m4 (_AC_PROG_FC_V_OUTPUT): Corrected
3823         superfluous backslashing of quotes (") in sed expressions;
3824         thanks to Paul Eggert.
3826 2004-03-26  Steven G. Johnson  <stevenj@alum.mit.edu>
3828         * lib/autoconf/fortran.m4 (_AC_PROG_FC): new name of Intel
3829         Fortran compiler is ifort, also added pghpf; thanks to Nelson
3830         H. F. Beebe for the bug report.
3832 2004-03-26  Steven G. Johnson  <stevenj@fftw.org>
3834         * lib/autoconf/fortran.m4 (_AC_PROG_FC_V_OUTPUT): fix for
3835         quoted -cmdline argument in Portland Group compiler (bug
3836         reported by Jeffrey J. Barteet).
3838 2004-03-25  Kevin Ryde  <user42@zip.com.au>
3840         * doc/autoconf.texi (Specifying Names): Move cross_compiling ovindex to
3841         (Run Time): ... here, where it's now mentioned.
3843 2004-03-19  Alexandre Duret-Lutz  <adl@gnu.org>
3845         * doc/autoconf.texi (autom4te Invocation): Language Autoconf
3846         inherits from language Autoconf-without-aclocal-m4.
3847         (Customizing autom4te): Adjust example; the cache must now be
3848         disabled for language Autoconf-without-aclocal-m4.
3850 2004-03-16  Paolo Bonzini  <bonzini@gnu.org>
3851             Nathanael Nerode  <neroden@twcny.rr.com>
3853         * lib/autoconf/programs.m4 (AC_PATH_TOOL, AC_CHECK_TOOL,
3854         AC_CHECK_TOOLS): Warn if a cross-tool is found without
3855         a prefix.
3856         (AC_PATH_TARGET_TOOL, AC_CHECK_TARGET_TOOL,
3857         AC_CHECK_TARGET_TOOLS): New macros.
3858         * doc/autoconf.texi (Generic Programs): Document
3859         (AC_PATH_TARGET_TOOL, AC_CHECK_TARGET_TOOL,
3860         AC_CHECK_TARGET_TOOLS, and warn for future changes
3861         in the behavior of AC_PATH_TOOL, AC_CHECK_TOOL and
3862         AC_CHECK_TOOLS.
3863         (Specifying Names): Document the reason for these future
3864         behavioral changes.
3865         * tests/mktests.sh: Do not generate tests for the
3866         new macros.
3867         * NEWS: Document these changes.
3869         * doc/autoconf.texi: Avoid macros with unbraced arguments,
3870         they make TeX hang up.
3872 2004-03-15  Paul Eggert  <eggert@bogus.example.com>
3874         * NEWS: New macro AC_CHECK_ALIGNOF.
3875         * doc/autoconf.texi (Generic Compiler Characteristics): Document it.
3876         * lib/autoconf/types.m4 (AC_CHECK_SIZEOF): Use long int rather than
3877         int; avoid "a `$1'" since this isn't grammatical if $1 begins with a
3878         vowel.
3879         (AC_CHECK_ALIGNOF): New macro.
3880         * tests/mktests.sh (ac_exclude_list): Exclude AC_CHECK_ALIGNOF.
3881         * tests/semantics.at (AC_CHECK_ALIGNOF): Add tests similar to
3882         those for sizeof.
3884 2004-03-03  Paul Eggert  <eggert@twinsun.com>
3886         * bin/Makefile.am (edit): Don't use $< in a context where
3887         POSIX doesn't require support for it.  Use $@.in instead.
3888         Problem reported by Anthony N. Frasso in
3889         <http://mail.gnu.org/archive/html/autoconf/2004-03/msg00008.html>.
3890         * bin/autoscan.in, bin/autoupdate.in: Add @configure_input@ comment.
3892 2004-02-23  Gary V. Vaughan  <gary@gnu.org>
3894         * bin/autoreconf.in (autoreconf_current_directory): Recognize LT_INIT
3895         from the next generation of Libtool.
3896         * lib/autom4te.in (Autoreconf-preselections): Ditto.
3898 2004-02-20  Alexandre Duret-Lutz  <adl@gnu.org>
3900         * doc/autoconf.texi (Limitations of Usual Tools) <mkdir>: `mkdir -p'
3901         is not always thread-safe.  Report from Nathanael Nerode.
3903 2004-02-18  Paul Eggert  <eggert@twinsun.com>
3905         Fix a dependencies problem, stemming from a Autoconf 2.59 build
3906         problem on QNX reported by Stephen Rasku in
3907         <http://mail.gnu.org/archive/html/bug-autoconf/2004-02/msg00066.html>.
3909         * bin/Makefile.am ($(srcdir)/autoconf.in): Depend on
3910         $(m4sh_m4f_dependencies); this removes a FIXME.
3911         * tests/Makefile.am ($(srcdir)/wrapper.in): Likewise.
3912         (MAINTAINERCLEANFILES): Split into pieces,
3913         one per related section.  Add $(srcdir)/wrapper.in.
3915 2004-02-09  Paul Eggert  <eggert@twinsun.com>
3917         * doc/autoconf.texi (Setting Output Variables): Emphasize that
3918         AC_SUBST provides no portable way to escape literal newlines.
3920         * lib/autoconf/fortran.m4 (_AC_FC_LIBRARY_LDFLAGS): Ignore all
3921         flags of the form -lcrt*.o, not just -lcrt[01].o and -lcrtbegin.o.
3922         Darwin uses -lcrt2.o and there's little point to cataloging all
3923         the system variants.  Partial fix reported by Andreas Waechter in:
3924         http://mail.gnu.org/archive/html/autoconf-patches/2004-02/msg00006.html
3925         for bug reported by Nelson H. F. Beebe in:
3926         http://mail.gnu.org/archive/html/bug-autoconf/2003-12/msg00090.html
3928 2004-02-04  Paolo Bonzini  <bonzini@gnu.org>
3930         * doc/autoconf.texi (AU_DEFUN): Fix English,
3931         suggested by Paul Eggert.
3932         * lib/autoconf/autoupdate.m4: Correct reference to
3933         acobsolete.m4, suggested by Alexandre Duret-Lutz.
3935 2004-02-02  Paolo Bonzini  <bonzini@gnu.org>
3937         * bin/autoupdate.in: Define __file__ so that warnings
3938         refer to the correct file.
3939         * doc/autoconf.texi (AU_DEFUN): Describe more correctly
3940         the behavior of the third argument.
3941         * lib/autoconf/autoupdate.m4 (AU_DEFUN): Describe more
3942         correctly the behavior of the third argument.  Document
3943         what the three macros that AU_DEFUN defines do.  Fix
3944         warning message when the third argument includes $0
3945         (reported by Alexandre Duret-Lutz).
3947 2004-01-30  Paolo Bonzini  <bonzini@gnu.org>
3948             Eric Sunshine  <sunshine@sunshineco.com>
3949             Paul Eggert  <eggert@twinsun.com>
3951         * lib/m4sugar/m4sh.m4 (M4SH-SANITIZE): New diversion.
3952         (AS_INIT): Output shell initialization there. Removed optional
3953         parameter. Expand _AS_SHELL_FN_SPY.
3954         (AS_INIT_WITH_SHELL_FN): Removed.
3955         (_AS_SHELL_FN_SPY): New macro.
3956         (AS_DETECT_REQUIRED, AS_DETECT_SUGGESTED): New
3957         macros.
3958         (AS_SHELL_SANITIZE): Remove loop to find better shell
3959         and documentation for the parameter.
3960         (_AS_DETECT_BETTER_SHELL): Move it here.
3961         (_AS_SHELL_FN_WORK): Remove shell invocation, reformat.
3962         (_AS_RUN): Move it here, support testing with eval.
3963         (AS_REQUIRE_SHELL_FN): Require shell functions when
3964         it is used.
3965         (_AS_LINENO_WORKS): Put around braces, we do not
3966         trigger the bash bug anymore.
3967         * lib/autotest/general.m4: Document M4SH-SANITIZE, do not
3968         use AS_INIT_WITH_SHELL_FN.
3969         * bin/autoconf.in, tests/wrapper.in: Regenerated.
3971 2004-01-30  Paolo Bonzini  <bonzini@gnu.org>
3973         * bin/autoupdate.in: Trace AU_DEFINE instead of AU_DEFUN.
3974         * doc/autoconf.texi: Don't say that the third parameter
3975         is broken.
3976         * lib/autoconf/autoupdate.m4 (AU_DEFINE): New dummy macro.
3977         (AU_DEFUN): Honor the third parameter, create autoupdate
3978         macros with AU_DEFINE.
3979         * lib/autoconf/headers.m4 (AC_USG, AC_MEMORY_H,
3980         AC_DIR_HEADER): Use AU_DEFUN's third parameter.
3981         * lib/autoconf/lang.m4 (AC_LANG_SAVE): Likewise.
3982         * lib/autoconf/programs.m4 (AC_RSH): Likewise.
3983         * lib/autoconf/specific.m4 (AC_HAVE_POUNDBANG,
3984         AC_ARG_ARRAY, AC_CYGWIN, AC_EMXOS2, AC_MINGW32,
3985         AC_XENIX_DIR): Likewise.
3986         * lib/autoconf/types.m4 (AC_INT_16_BITS, AC_LONG_64_BITS,
3987         AC_STRUCT_ST_BLKSIZE, AC_STRUCT_ST_RDEV): Likewise.
3988         * lib/autoconf/status.m4: Remove FIXME.
3989         * tests/local.at (AT_CHECK_AU_MACRO): Ignore stderr, check
3990         that the macro is not present anymore in the updated
3991         configure.ac.
3992         * tests/tools.at (autoupdate AC_LINK_FILES): Ignore stderr
3993         of autoupdate.
3995 2004-01-28  Paul Eggert  <eggert@twinsun.com>
3997         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): Add 2004 to
3998         copyright years.
3999         * lib/autoconf/general.m4 (_AC_INIT_COPYRIGHT): Add 1992 thorugh
4000         2003 (except 1997) to the list of copyright years.  This undoes
4001         the 2003-05-22 change, which removed the older years from the list.
4002         * lib/autoconf/status.m4 (AC_OUTPUT): Update copyright date to 2004.
4004 2004-01-27  Gary V. Vaughan  <gary@gnu.org>
4005             Albert Chin-A-Young  <china@thewrittenword.com>
4007         * lib/autoconf/programs.m4 (AC_PROG_GREP): New macro to test for a
4008         grep or ggrep program in PATH that accepts as long lines as
4009         possible.
4010         * lib/autoconf/programs.m4 (_AC_PROG_GREP): Factor out the core of
4011         AC_PROG_GREP.
4012         (AC_PROG_EGREP, AC_PROG_FGREP): Use it to find best available
4013         egrep and fgrep respectively if $GREP -E/-F don't work.
4014         (_AC_PATH_PROG_FEATURE_CHECK): Factor out the common core of
4015         _AC_PROG_GREP, and AC_PROG_SED.
4016         (_AC_FEATURE_CHECK_LENGTH): New helper macro for finding the
4017         longest input length accepted by a command.
4018         (AC_PROG_SED): Use it.
4019         * doc/autoconf.texi (Particular Programs): Document the changes.
4020         * NEWS: Updated.
4022 2004-01-27  Paul Eggert  <eggert@twinsun.com>
4024         * bin/autoconf.as ($version): Update copyright from 2003 to 2004.
4025         * bin/autoheader.in, bin/autom4te.in, bin/autoreconf.in,
4026         bin/autoscan.in, bin/autoupdate.in, bin/ifnames.in: Likewise.
4027         * lib/autoconf/general.m4 (_AC_INIT_COPYRIGHT): Likewise.
4029         * Makefile.in, aclocal.m4, configure, bin/Makefile.in,
4030         bin/autoconf.in, config/Makefile.in, config/config.guess,
4031         config/config.sub, config/install-sh, config/mdate-sh,
4032         config/mkinstalldirs, config/texinfo.tex, doc/Makefile.in,
4033         lib/Makefile.in, lib/Autom4te/Makefile.in,
4034         lib/autoconf/Makefile.in, lib/autoscan/Makefile.in,
4035         lib/autotest/Makefile.in, lib/emacs/Makefile.in,
4036         lib/m4sugar/Makefile.in, man/Makefile.in, man/autoconf.1,
4037         man/autoheader.1, man/autom4te.1, man/autoreconf.1,
4038         man/autoscan.1, man/autoupdate.1, man/config.guess.1,
4039         man/config.sub.1, man/ifnames.1, tests/Makefile.in,
4040         tests/acc.at, tests/acfortran.at, tests/acfunctions.at,
4041         tests/acgeneral.at, tests/acheaders.at, tests/aclang.at,
4042         tests/aclibs.at, tests/acspecific.at, tests/acstatus.at,
4043         tests/actypes.at: Regenerate and/or sync with original
4044         sources.
4046 2004-01-26  Paul Eggert  <eggert@twinsun.com>
4048         * doc/autoconf.texi (Default Includes): Include <stdint.h> even if
4049         HAVE_INTTYPES_H is defined.  This is needed on Tru64 5.1b with
4050         Compac C V6.5-207 (dtk), which defines uintmax_t in <stdint.h> but
4051         not <inttypes.h>.  Problem reported by Tim Mooney in
4052         <http://mail.gnu.org/archive/html/bug-coreutils/2004-01/msg00147.html>.
4053         * lib/autoconf/headers.m4 (_AC_INCLUDES_DEFAULT_REQUIREMENTS):
4054         Likewise.
4056         * lib/autoconf/programs.m4 (AC_PROG_SED): Use diff, not sed;
4057         otherwise "make check" fails because it forbids cmp (I guess
4058         because cmp treats files as binary on DOS-like systems).
4060         * tests/mktests.sh: Update copyright date to 2004, since some tests
4061         have changed in 2004.
4063 2004-01-23  Gary V. Vaughan  <gary@gnu.org>
4065         * lib/autoconf/programs.m4 (AC_PROG_SED):  New macro to test for a
4066         non-truncating sed or gsed program in PATH.
4067         * tests/acprograms.at: Add it.
4068         * doc/autoconf.texi (Particular Programs): Document it.
4069         * NEWS: Updated.
4071 2004-01-15  Paul Eggert  <eggert@twinsun.com>
4073         * lib/autoconf/c.m4 (_AC_PROG_CC_STDC): Try -std, not -std1, since
4074         -std1 disables some useful extensions on Tru64.  Problem reported
4075         by N. Lichtmaier in
4076         <http://mail.gnu.org/archive/html/autoconf/2004-01/msg00100.html>.
4078 2004-01-14  Paul Eggert  <eggert@twinsun.com>
4080         * doc/autoconf.texi (Programming in M4sh): Document that
4081         AS_MKDIR_P succeeds if the destination is a symbolic link
4082         to an existing directory.
4083         (Limitations of Usual Tools): Note that mkdir -p might not
4084         succeed on symlinks to directories.
4086 2004-01-13  Paul Hilfinger  <hilfinger@CS.Berkeley.EDU>
4088         * lib/autoconf/autoupdate.m4 (AU_DEFUN): Grammar fix in comment.
4089         * bin/autoheader.in: Grammar fix in message.
4090         * lib/m4sugar/m4sh.m4 (AS_MKDIR_P):
4091         Test for dir before calling mkdir -p.  (trivial changes)
4093 2004-01-13  Eric Blake  <ebb9@byu.net>
4095         * doc/autoconf.texi (Obsolete Macros): In AC_TRY_COMPILE and
4096         AC_TRY_LINK, s/AC_LANG_SOURCE/AC_LANG_PROGRAM/.  (trivial change)
4098 2004-01-10  Jim Meyering  <jim@meyering.net>
4100         * doc/autoconf.texi (Running the Preprocessor): Correct grammar.
4102 2004-01-09  Paul Eggert  <eggert@twinsun.com>
4104         * lib/autoconf/general.m4: Fix bug: AC_CHECK_SIZEOF evokes a warning
4105         with `autoconf -Wall,error'.  Bug reported by Eric Blake in:
4106         http://mail.gnu.org/archive/html/autoconf-patches/2004-01/msg00000.html
4107         (_AC_COMPUTE_INT_COMPILE): Invoke _AC_COMPILE_IFELSE, not
4108         AC_COMPILE_IFELSE, since we now assume our caller invokes
4109         AC_LANG_COMPILER_REQUIRE, for symmetry with _AC_COMPUTE_INT_RUN.
4110         (_AC_COMPUTE_INT_RUN): Likewise, for _AC_RUN_IFELSE instead
4111         of AC_RUN_IFELSE; this avoids the warning mentioned above.
4112         (_AC_COMPUTE_INT): Invoke AC_LANG_COMPILER_REQUIRE.
4114 2004-01-07  Paul Eggert  <eggert@twinsun.com>
4116         * lib/autoconf/general.m4 (_AC_LIBOBJS_NORMALIZE): Avoid \$ inside
4117         `"'...'"`, as it's confusing (and I suspect it may not work on
4118         some platforms).  The code was incorrect anyway, as it assumed
4119         that \$ evaluated to itself in that context.  Reported by
4120         Alexandre Duret-Lutz.
4122 2004-01-07  Alexandre Duret-Lutz  <adl@gnu.org>
4124         * lib/autom4te.in (Automake-preselections): Preselect AC_LIBTOOL_TAGS
4125         and _LT_AC_TAGCONFIG.
4127 2004-01-06  Paul Eggert  <eggert@twinsun.com>
4129         * doc/autoconf.texi (One Macro Call): Fix an incorrect
4130         example, and add more examples.  Reported by Eric Sunshine.
4132 2004-01-05  Paul Eggert  <eggert@twinsun.com>
4134         * doc/autoconf.texi (Limitations of Usual Tools):
4135         Remove warning against "rm -fr" introduced yesterday; it
4136         was a false alarm.
4138         * bin/Makefile.am (autoconf, autoheader, autom4te, autoreconf,
4139         autoscan, autoupdate, ifnames): Don't use chmod -w.
4140         * lib/Makefile.am (autom4te.cfg): Likewise.
4141         * doc/autoconf.texi (Limitations of Usual Tools): Warn against
4142         "chmod -w".
4144 2004-01-04  Paul Eggert  <eggert@twinsun.com>
4145             Paolo Bonzini  <bonzini@gnu.org>
4147         * lib/m4sugar/m4sh.m4 (_AS_LINENO_PREPARE): Speed up sed scripts
4148         by doing lineno substitution only on lines containing "$LINENO".
4150 2004-01-04  Paul Eggert  <eggert@twinsun.com>
4152         * lib/autoconf/general.m4 (AC_ARG_PROGRAM):
4153         Use "rm -f" to remove conftest.sed, not plain "rm".
4154         Bug reported by David Relson in
4155         <http://mail.gnu.org/archive/html/autoconf/2004-01/msg00011.html>.
4157         * Makefile.am (autom4te-update):
4158         Replace "rm -rf" and "rm -fr" with "rm -f -r", as POSIX requires.
4159         * Makefile.maint (my-distcheck, do-po-update): Likewise.
4160         * doc/autoconf.texi (Guidelines): Likewise.
4161         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Likewise.
4162         * lib/autoconf/libs.m4 (_AC_PATH_X_XMKMF): Likewise.
4163         * lib/autoconf/specific.m4 (AC_SYS_LONG_FILE_NAMES): Likewise.
4164         * lib/autotest/general.m4 (AT_INIT): Likewise.
4165         * lib/m4sugar/m4sh.m4 (AS_TMPDIR): Likewise.
4166         * tests/Makefile.am (clean-local): Likewise.
4167         * tests/tortue.at (AC_CONFIG_FILES, HEADERS, LINKS and COMMANDS,
4168         srcdir): Likewise.
4169         * doc/autoconf.texi (Limitations of Usual Tools):
4170         Warn against "rm -fr".
4172 2004-01-03  Paul Eggert  <eggert@twinsun.com>
4174         * doc/autoconf.texi (Limitations of Usual Tools): Mention that cc
4175         -c -o might not work.  From a suggestion by Kevin Ryde.
4176         (C Compiler, Generating Sources, Limitations
4177         of Usual Tools, Limitations of Make, Making testsuite Scripts):
4178         Don't put '-o' after non-options, as POSIX doesn't allow this.
4179         Mention that cc's name might be gcc or c89 or whatever.
4181 2004-01-04  Kevin Ryde  <user42@zip.com.au>
4183         * doc/autoconf.texi: Add various further index entries.
4185 2003-12-29  Paul Eggert  <eggert@twinsun.com>
4187         * bin/autoreconf.in (autoreconf_current_directory):
4188         Fix typo: mkdir without umask arg.
4190 2003-12-27  Alexandre Duret-Lutz  <adl@gnu.org>
4192         * doc/autoconf.texi (Limitations of Make) <Automatic rule rewriting>:
4193         Documents OSF1/Tru64 make behavior.  Replace `VPATH = ../src' by
4194         `VPATH = ../pkg/src' in examples to make the OSF1/Tru64 make
4195         explanation clearer.
4197 2003-12-24  Andreas Schwab  <schwab@suse.de>
4199         * doc/autoconf.texi (Default Includes): Fix misspelling of
4200         AC_INCLUDES_DEFAULT.
4202 2003-12-03  Paolo Bonzini  <bonzini@gnu.org>
4204         * configure.ac: Test if sh -n works.
4205         * configure: Regenerate.
4206         * tests/atlocal.in: Store the result here.
4207         * tests/local.at (AT_CHECK_SHELL_SYNTAX): Extracted from
4208         tools.at, looking in atlocal's ac_cv_sh_n_works instead
4209         of explicitly testing.
4210         (AT_CHECK_PERL_SYNTAX): Moved from tools.at.
4211         (AT_CHECK_AUTOCONF): Test for the configure script syntax.
4212         * tests/tools.at (Syntax of the shell scripts): Simplify
4213         using AT_CHECK_SHELL_SYNTAX.
4214         (Syntax of the Perl scripts): Remove definition of
4215         AT_CHECK_PERL_SYNTAX.
4217 2003-12-03  Paolo Bonzini  <bonzini@gnu.org>
4219         * lib/m4sugar/m4sh.m4 (_AS_SHELL_FN_WORK): Redirect
4220         stderr to /dev/null.
4221         * bin/autoconf.in: Regenerate.
4222         * bin/wrapper.in: Regenerate.
4224 2003-11-26  Paolo Bonzini  <bonzini@gnu.org>
4226         * lib/m4sugar/m4sh.m4 (_AS_BOURNE_COMPATIBLE):
4227         Extracted from AS_SHELL_SANITIZE.
4228         (_AS_SHELL_FN_WORK, AS_INIT_WITH_SHELL_FN): New
4229         macros.
4230         (AS_SHELL_SANITIZE): Move reinvocation code from
4231         _AS_LINENO_WORKS, use it to find out if shell
4232         functions work.
4233         (_AS_LINENO_WORKS): Don't find another shell if $LINENO
4234         does not work.
4235         (AS_INIT): Pass parameter down to AS_SHELL_SANITIZE.
4236         (AS_REQUIRE_SHELL_FN): Test that AS_INIT_WITH_SHELL_FN
4237         was called.
4238         * lib/autotest/general.m4: Use AS_INIT_WITH_SHELL_FN.
4239         * bin/autoconf.in: Regenerate.
4240         * tests/wrapper.in: Regenerate.
4241         * tests/tools.at: Test the syntax of tests/autoconf
4242         and tests/testsuite.
4244 2003-11-24  Akim Demaille  <akim@epita.fr>
4246         * config/announce-gen (&print_locations, &print_signatures)
4247         (&sizes): New.
4248         Use them.
4249         No longer rely on Gnus to inline the list of signatures: compute
4250         them on the fly.
4252 2003-11-24  Akim Demaille  <akim@epita.fr>
4254         * doc/autoconf.texi (Particular Programs): AC_PROG_LEX can
4255         override some files.
4256         (Input): AC_CONFIG_AUX_DIR(aux) is a bad idea on DOS.
4257         From Debian Autoconf 2.58.
4259 2003-11-24  Akim Demaille  <akim@epita.fr>
4261         * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): Quote $ac_popdir
4262         uses.
4263         From Debian Autoconf 2.58.
4265 2003-11-24  Paolo Bonzini  <bonzini@gnu.org>
4267         * TODO: Remove already done things.  Update the part about finding
4268         tools for the target.
4270 2003-11-24  Paolo Bonzini  <bonzini@gnu.org>
4272         * lib/autoconf/headers.m4 (AC_USG, AC_MEMORY_H, AC_DIR_HEADER):
4273         Make wording more consistent.
4274         * lib/autoconf/specific.m4 (AC_CYGWIN, AC_EMXOS2, AC_MINGW32):
4275         Explain the transition better.
4276         * lib/autoconf/types.m4 (AC_INT_16_BITS, AC_LONG_64_BITS): Explain
4277         the transition better.
4279 2003-11-24  Paolo Bonzini  <bonzini@gnu.org>
4281         * doc/autoconf.texi (Obsoleting Macros): Don't document the third
4282         parameter of AU_DEFUN.
4283         * lib/autoconf/autoupdate.m4 (AU_DEFINE): Remove.
4284         (AU_DEFUN): Remove the third parameter, it was not used.
4285         Use AC_DEFUN directly, not AU_DEFINE.
4286         * lib/autoconf/status.m4 (AC_LINK_FILES): Move the message into
4287         the expanded body, consistently with other macros such as AC_USG.
4289 2003-11-17  Paul Eggert  <eggert@twinsun.com>
4291         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Put at least 14 bytes
4292         into the initial confdefs.h, to work around a bug in NextStep 3.3
4293         patch 3 reported by Eric Sunshine.
4295 2003-11-15  Kevin Ryde  <user42@zip.com.au>
4297         * doc/autoconf.texi (Using System Type): Revise, showing $host rather
4298         than $target since the latter is not usual, add guidelines on when to
4299         use or not use the system type.
4301 2003-11-12  Derek Price  <derek@ximbiot.com>
4303         * doc/autoconf.texi (Limitations of Usual Tools): Fix what looks like a
4304         typo misrepaired by an auto-spellcheck.
4306 2003-11-12  Akim Demaille  <akim@epita.fr>
4308         * bin/autoreconf.in (&parse_args): Don't call automake with
4309         --force-missing unless it actually supports it.
4310         From Debian #219336.
4312 2003-11-12  Akim Demaille  <akim@epita.fr>
4314         * configure.ac: Bump to 2.59a.
4315         Require 2.59.
4317 2003-11-06  Akim Demaille  <akim@epita.fr>
4319         Version 2.59.
4321 2003-11-05  Alexandre Duret-Lutz  <adl@gnu.org>
4323         * lib/autoconf/status.m4 (_AC_SRCPATHS): Fix use of AS_SET_CATFILE
4324         so that ac_abs_builddir, ac_abs_top_builddir, ac_abs_srcdir,
4325         and ac_abs_top_srcdir are absolute paths.
4326         * lib/m4sugar/m4sh.m4 (AS_SET_CATFILE): Remove misleading comment.
4328 2003-11-05  Akim Demaille  <akim@epita.fr>
4330         * configure.ac: Bump to 2.58a.
4332 2003-11-05  Kevin Ryde  <user42@zip.com.au>
4334         * doc/autoconf.texi (Using Autotest): Avoid @strong{Note: ...}, since
4335         it provokes a warning from makeinfo about looking like a cross
4336         reference in info output.
4338         * doc/autoconf.texi (Function Portability): Add notes on signal
4339         handler return type, as per AC_TYPE_SIGNAL.
4341 2003-11-04  Akim Demaille  <akim@epita.fr>
4343         Version 2.58.
4344         * doc/standards.texi: Update from master.
4346         * tests/mktests.sh (ac_exclude_list): Add AC_FC_FREEFORM.
4348 2003-11-04  Akim Demaille  <akim@epita.fr>
4350         AC_CONFIG_FILE([d1/foo:d2/foo]) triggers error messages when
4351         computing the absolute path to d1 in the source hierarchy: it may
4352         not exist at all.  So don't cd into it.
4353         From Alexandre Duret-Lutz.
4354         http://mail.gnu.org/archive/html/bug-autoconf/2003-10/msg00205.html
4356         * lib/m4sugar/m4sh.m4 (AS_SET_CATFILE): New.
4357         From Paul Eggert, but named after Perl's IO::Spec->catfile.
4358         * doc/autoconf.texi (Programming in M4sh): Document.
4359         * lib/autoconf/status.m4 (_AC_SRCPATHS): Use it.
4361 2003-11-03  Pavel Roskin  <proski@gnu.org>
4363         * doc/autoconf.texi (Generic Structure Checks): Describe
4364         action-if-found and action-if-not-found in AC_CHECK_MEMBERS.
4366 2003-10-31  Akim Demaille  <akim@epita.fr>
4368         * tests/fortran.at (GNU Fortran 77): Don't run FC macros.
4369         (GNU Fortran): New.
4370         * doc/autoconf.texi (Language Choice): Document.
4371         * lib/autoconf/fortran.m4 (AC_FC_SRCEXT, AC_FC_FREEFORM): Assert
4372         the current language is Fortran.
4374 2003-10-31  Akim Demaille  <akim@epita.fr>
4376         * bin/autom4te.in (&freeze): Use a less likely warning separator
4377         than `\n\n', so that `\n\n\n' is valid in warnings.
4378         Reported by Steve Huston.
4380 2003-10-28  Akim Demaille  <akim@epita.fr>
4382         * Makefile.cfg (local_updates, executable-update): Tweak to be
4383         robust to parallel makes.
4384         Suggested by Alexandre Duret-Lutz.
4386 2003-10-27  Akim Demaille  <akim@epita.fr>
4388         * Makefile.cfg (executable-update): New.
4389         (local_updates): Call it.
4391 2003-10-27  Akim Demaille  <akim@epita.fr>
4393         * lib/autoconf/general.m4 (_AC_RUN_IFELSE, _AC_INIT_PREPARE):
4394         Don't remove core.* as it may remove valid user files.
4395         * lib/autoconf/functions.m4 (AC_FUNC_SETVBUF_REVERSED)
4396         (AC_FUNC_UTIME_NULL): Likewise.
4398 2003-10-23  Akim Demaille  <akim@epita.fr>
4400         Version 2.57g.
4401         * config/config.guess, config/config.sub: Upgrade from masters.
4403 2003-10-23  Akim Demaille  <akim@epita.fr>
4405         * lib/autoconf/fortran.m4 (AC_FC_SRCEXT): Functions using
4406         AC_COMPILE_IFELSE that use break skip the clean up.  So do it by
4407         hand...
4409 2003-10-23  Akim Demaille  <akim@epita.fr>
4411         * lib/autoconf/general.m4 (_AC_LINK_IFELSE, _AC_COMPILE_IFELSE):
4412         Don't forget to remove conftest.err.
4414 2003-10-23  Akim Demaille  <akim@epita.fr>
4416         * lib/autoconf/general.m4 (_AC_LIBOBJ): Don't insert twice the
4417         same object file in $LIBOBJS.
4418         Reported by Alexandre Duret-Lutz & Derek Robert Price.
4419         * doc/autoconf.texi (Generic Functions): Adjust.
4421 2003-10-20  Paul Eggert  <eggert@twinsun.com>
4423         * lib/m4sugar/m4sh.m4 (_AS_TR_SH_PREPARE, _AS_TR_CPP_PREPARE):
4424         Use 'eval', so that the resulting configure scripts work even if
4425         the current directory has a weird file name like 'y%s+%pp%;s%@%_%g'.
4427 2003-10-20  Daniel Jacobowitz  <drow@mvista.com>
4429         * lib/autoconf/lang.m4 (AC_LANG_WERROR): New macro.
4430         * lib/autoconf/general.m4 (_AC_COMPILE_IFELSE, _AC_PREPROC_IFELSE)
4431         (_AC_LINK_IFELSE): Check the werror flag.
4432         * doc/autoconf.texi (Generic Compiler Characteristics): Document
4433         AC_LANG_WERROR.
4434         * NEWS: Mention it.
4436 2003-10-20  Daniel Jacobowitz  <drow@mvista.com>
4438         * lib/autoconf/lang.m4 (AC_NO_EXECUTABLES): Override
4439         _AC_COMPILER_EXEEXT to attempt a link.  If linking fails,
4440         override AC_LINK_IFELSE.
4442 2003-10-15  Paul Eggert  <eggert@twinsun.com>
4444         * lib/m4sugar/m4sh.m4 (_AS_UNSET_PREPARE): Work around a bug in
4445         pdksh 5.2.14.  Bug reported by Ralf Corsepius.
4446         * doc/autoconf.texi (Shellology): Mention the Korn shell and pdksh.
4447         Mention /usr/dt/bin/dtksh on Solaris.
4448         (Shell Substitutions): Warn about $((...)).
4449         (Parentheses): New section.
4451 2003-10-15  Kevin Ryde  <user42@zip.com.au>
4453         * doc/autoconf.texi (Function Portability): Add @prindex for exit.
4454         Add putenv and unsetenv.  Add sysconf _SC_PAGE_SIZE.
4456 2003-10-13  Nathanael Nerode  <neroden@gcc.gnu.org>
4458         * lib/autoconf/functions.m4 (AC_FUNC_FORK): Trivial fix for vfork
4459         cross test.
4461 2003-10-11  Steven G. Johnson  <stevenj@alum.mit.edu>
4463         * lib/autoconf/fortran.m4 (_AC_PROG_FC): Use the new official
4464         name for the GNU Fortran 95+ compiler, 'gfortran', not 'g95'.
4466 2003-10-10  Andreas Schwab  <schwab@suse.de>
4468         * bin/autoheader.in: Avoid empty first line in --version and
4469         --help output.
4470         * bin/ifnames.in: Likewise.
4472 2003-10-09  Paul Eggert  <eggert@twinsun.com>
4474         * lib/Autom4te/XFile.pm: Don't assume -j is solo.
4475         Issue a more-informative diagnostic.
4476         Problems reported by Eric Sunshine.
4478 2003-10-08  Steven G. Johnson  <stevenj@alum.mit.edu>
4480         * lib/autoconf/fortran.m4 (_AC_PROG_FC_V_OUTPUT): Omit quoted
4481         -mGLOB_options_string stuff for Intel ifc, which can cause
4482         _AC_FC_LIBRARY_LDFLAGS to fail.  Use (faster) case for
4483         pattern-matching instead of grep.
4485 2003-10-08  Steven G. Johnson  <stevenj@alum.mit.edu>
4487         * doc/autoconf.texi: Document new FC Fortran macros.
4489 2003-10-08  Gary V. Vaughan  <gary@gnu.org>
4491         * lib/autoconf/general.m4 (AC_CONFIG_MACRO_DIR): Stub out a macro
4492         that future autopoint/aclocal/automake/autoreconf will be able
4493         to trace to find where to install local m4 macros.
4494         * doc/autoconf.texi (Input): Document it.
4495         * NEWS: Updated.
4497 2003-10-06  Gary V. Vaughan  <gary@gnu.org>
4499         * lib/autoconf/fortran.m4 (_AC_FC_LIBRARY_LDFLAGS): Add
4500         -lcrtbegin.o to list of ignored flags and fix underquoting of
4501         -lcrt[01].o.
4503 2003-10-04  Steven G. Johnson  <stevenj@ab-initio.mit.edu>
4505         * lib/autoconf/fortran.m4 (_AC_PROG_FC_G): Use language-specific
4506         cache variable instead of $G77 to decide whether to include -O2,
4507         since $G77 is specific to Fortran 77.
4509 2003-10-03  Steven G. Johnson  <stevenj@alum.mit.edu>
4511         * lib/autoconf/fortran.m4 (AC_FC_FREEFORM): Support Absoft "-f
4512         free" flag.  Re-order flags tested into rough order of popularity.
4514 2003-10-03  Steven G. Johnson  <stevenj@alum.mit.edu>
4516         * lib/autoconf/fortran.m4 (AC_PROG_FC): Reverse the order of the
4517         arguments so that it can be used with syntax identical to
4518         AC_PROG_F77, and so that we can more easily decide to
4519         remove/deprecate the DIALECT optional argument in the future if it
4520         proves troublesome.
4521         (AC_FC_FREEFORM): Exit 77 upon failure to fix test suite for
4522         non-freeform-supporting compilers.  Document freeform flags.
4524 2003-10-03  Akim Demaille  <akim@epita.fr>
4526         * configure.ac: Look for emacs, not macs.
4527         Reported by Eric Sunshine.
4529 2003-10-03  Akim Demaille  <akim@epita.fr>
4531         * lib/autom4te.in (Autoreconf-preselections): Trace AC_CONFIG_AUX_DIR.
4532         * bin/autoreconf.in (autoreconf_current_directory): Create the
4533         AUX_DIR if needed, for sake of automake --add-missing etc.
4534         Suggested by Alexandre Duret-Lutz.
4536 2003-10-03  Akim Demaille  <akim@epita.fr>
4538         * configure.ac: Quotation and formatting changes.
4539         (EMACS): Don't set it if it is not recent enough to support
4540         autoconf-mode.el.
4541         From Eric Sunshine.
4543 2003-10-02  Akim Demaille  <akim@epita.fr>
4545         * bin/ifnames.in (&scan_file): Skip C++ comments.
4546         From Jeremy Yallop.
4548 2003-10-01  Pavel Roskin  <proski@gnu.org>
4550         * doc/autoconf.texi (Particular Structure Checks):
4551         Fix misspelling of HAVE_STRUCT_STAT_ST_BLOCKS.
4553 2003-10-01  Akim Demaille  <akim@epita.fr>
4555         Version 2.57f.
4557 2003-09-30  Paul Eggert  <eggert@twinsun.com>
4559         * lib/Autom4te/XFile.pm: Use Errno.
4560         (lock): Ignore ENOLCK errors.  Problem reported Andreas Schwab in
4561         <http://mail.gnu.org/archive/html/bug-autoconf/2003-09/msg00141.html>.
4563 2003-09-30  Akim Demaille  <akim@epita.fr>
4565         * config/announce-gen (&print_news_deltas): Extracted from...
4566         (&print_changelog_deltas): here.
4567         (&news_file): Rename as...
4568         (@news_file): this.
4570 2003-09-30  Nicolas Joly  <njoly@pasteur.fr>
4572         * lib/autoconf/fortran.m4 (_AC_PROG_FC): Remove files which might
4573         have been created when invoking the compiler.
4574         * tests/fortran.at (GNU Fortran 77): Quote $G77.
4576 2003-09-29  Akim Demaille  <akim@epita.fr>
4578         Version 2.57e.
4580         * config/mkinstalldirs: Upgrade.
4582 2003-09-28  Paul Eggert  <eggert@twinsun.com>
4584         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Set DUALCASE=1, for MKS sh.
4585         Problem reported by Lars J. Aas in
4586         <http://mail.gnu.org/archive/html/autoconf/2003-07/msg00042.html>.
4587         (_AS_MKDIR_P_PREPARE): Change "rm -fr ./-p" to the more-conservative
4588         "test -d ./-p && rmdir ./-p".  Suggested by Andreas Schwab in:
4589         http://mail.gnu.org/archive/html/autoconf-patches/2003-09/msg00039.html
4591 2003-09-26  Akim Demaille  <akim@epita.fr>
4593         * lib/autoconf/status.m4 (_AC_OUTPUT_COMMANDS): Make sure the
4594         directory for AC_CONFIG_COMMANDS' first argument exists.
4595         This makes valid the invocation of _AC_SRCPATH that follows.
4596         Reported by Eric Sunshine.
4597         * doc/autoconf.texi (Configuration Commands): Adjust.
4599 2003-09-26  Akim Demaille  <akim@epita.fr>
4601         * bin/autoscan.in (Autom4te::FileUtils): Use it for find_file.
4602         Reported by Ralf Corsepius.
4604 2003-09-26  Akim Demaille  <akim@epita.fr>
4606         * lib/autoconf/general.m4 (AC_HELP_STRING): Don't overquote the
4607         arguments.
4608         Actually, use AU_ALIAS.
4609         From Bruno Haible.
4611 2003-09-26  Paul Eggert  <eggert@twinsun.com>
4613         * lib/m4sugar/m4sh.m4 (_AS_MKDIR_P_PREPARE): If mkdir -p . fails,
4614         rm -fr ./-p to remove junk left behind on NextStep and OpenStep.
4615         Problem reported by Eric Sunshine in:
4616         http://mail.gnu.org/archive/html/autoconf-patches/2002-12/msg00014.html
4618 2003-09-26  Akim Demaille  <akim@epita.fr>
4620         The test suite are sometimes assigning timings incorrectly.
4621         Reported by Henk Krus.
4622         Diagnosed by Nicolas Joly.
4624         * lib/autotest/general.m4 (AT_CLEANUP): Rename AT_help as
4625         AT_help_all.
4626         Instead of making AT_help a sequence of assignments to grow
4627         $at_help_all, just make AT_help_all be the growing contents of
4628         $at_help_all, and make a single assignment in...
4629         (AT_INIT): here.
4630         (at_times_skip): Flip the meaning and rename as...
4631         (at_times_p): this.
4632         (AT_INIT): When summarizing the test that ran, remove
4633         $at_times_file after use, and check it is present before trying to
4634         use it.
4636 2003-09-25  Akim Demaille  <akim@epita.fr>
4638         Version 2.57d.
4640         * bin/Makefile.am (edit): Handle '@configure_input@'.
4641         (autoconf, autoheader, autom4te, autoreconf, autoscan, autoupdate)
4642         (ifnames): chmod -w.
4643         * tests/wrapper.as (AUTOCONF, AUTOM4TE, ): Point to tests/
4644         executables, not bin/ executables!  Otherwise all the magic needed
4645         to find non installed files is turned off.  This caused a failure
4646         of test 40 and 41 that ran aclocal 1.8 which in turn ran autom4te
4647         as found in its environment (sent by tests/autoreconf): pointing
4648         to bin/autom4te that could not find its files.
4649         * tests/mktests.sh: Force the replacement of generated files, for
4650         the sake of "mv" program that are interactive when overwriting a
4651         -w file.
4652         * config/install-sh: Upgrade from CVS Automake.
4654 2003-09-23  Paul Eggert  <eggert@twinsun.com>
4656         * doc/autoconf.texi (Limitations of Builtins): Document test -h
4657         versus test -L issues.
4659 2003-09-23  Daniel Jacobowitz  <drow@mvista.com> and
4660             Paul Eggert  <eggert@twinsun.com>
4662         Trivial change to support GCC's configuration procedure.
4663         * lib/autoconf/c.m4 (AC_PROG_CPP_WERROR): New macro.
4664         * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_MONGREL): Don't warn
4665         about inconsistency if the preprocessor is set to give errors for
4666         any warning.
4667         * doc/autoconf.texi (C Compiler Characteristics): Document this.
4669 2003-09-13  Alexandre Duret-Lutz  <adl@gnu.org>
4671         * Makefile.am (autom4te-update, autom4te_files): Fetch Struct.pm
4672         and XFile.pm from Automake.
4673         * lib/Autom4te/XFile.pm: Update from Automake.
4675 2003-09-12  Akim Demaille  <akim@epita.fr>
4677         Version 2.57c.
4679 2003-09-12  Akim Demaille  <akim@epita.fr>
4681         * config/config.guess, config/config.sub, config/missing,
4682         * lib/Autom4te/Channels.pm, lib/Autom4te/Configure_ac.pm: Update
4683         from masters.
4685 2003-09-12  Akim Demaille  <akim@epita.fr>
4687         * doc/autoconf.texi (Header Portability): Promote linux/types.h,
4688         not asm/types.h.
4690 2003-09-11  Akim Demaille  <akim@epita.fr>
4692         * doc/autoconf.texi (Header Portability): linux/random.h.
4693         From Peter Hendrickson.
4695 2003-09-10  Akim Demaille  <akim@epita.fr>
4697         * tests/mktests.sh (au_exclude_egrep): Make it harder to be
4698         willing to edit the output files.
4700 2003-09-10  Akim Demaille  <akim@epita.fr>
4702         * tests/fortran.at (GNU Fortran 77): Also exercise AC_FC_SRCEXT
4703         and AC_FC_FREEFORM.
4704         * tests/mktests.sh: Skip AC_FC_SRCEXT.
4705         * lib/autoconf/fortran.m4 (AC_FC_SRCEXT, AC_FC_FREEFORM): Likewise.
4707 2003-09-09  Akim Demaille  <akim@epita.fr>
4709         * lib/Autom4te/FileUtils.pm (&update_file): s/cannot not/cannot/g.
4710         Reported by Gary Vaughan.
4711         * bin/autom4te.in (handle_m4): Likewise.
4713 2003-09-09  Akim Demaille  <akim@epita.fr>
4715         * lib/Autom4te/FileUtils.pm (&update_file): Be sure not to leave
4716         trailing files.
4718 2003-09-07  Paul Eggert  <eggert@twinsun.com>
4720         * lib/autoconf/specific.m4 (AC_SYS_RESTARTABLE_SYSCALLS):
4721         Improve the accuracy of the wording about obsolescence.
4722         From a suggestion by Ian Lance Taylor in
4723         <http://mail.gnu.org/archive/html/autoconf/2003-09/msg00044.html>.
4725 2003-09-05  Paul Eggert  <eggert@twinsun.com>
4727         * lib/autoconf/fortran.m4 (AC_FC_FREEFORM): Try -ffree-form too,
4728         for the benefit of g77 3.2.  Fix suggested by Steven G. Johnson.
4730 2003-09-04  Akim Demaille  <akim@epita.fr>
4732         * tests/mktests.sh (ac_exclude_list): Fix the filtering of
4733         AC_FUNC_WAIT3.
4735 2003-09-04  Akim Demaille  <akim@epita.fr>
4737         * bin/autom4te.in: Use &fatal where more appropriate than &error.
4738         (freeze): When exiting, use $exit_code.
4739         * lib/autoconf/fortran.m4: Comment changes.
4741 2003-09-04  Akim Demaille  <akim@epita.fr>
4743         * tests/mktests.sh (ac_exclude_list): Add AC_FC_FUNC.
4745 2003-09-02  Steven G. Johnson  <stevenj@alum.mit.edu>
4747         Add support for newer Fortran dialects.  The F77 interface is
4748         unchanged, and continues to support Fortran 77.  New FC macros
4749         correspond to all the old F77 macros, with output variables FC,
4750         FCFLAGS, and FCLIBS.  AC_PROG_FC defaults to picking the newest
4751         available dialect, but older dialects can be specified.  There are
4752         new macros AC_FC_SRCEXT to set the source extension, and
4753         AC_FC_FREEFORM to accept free-form source files.
4755         * lib/autoconf/c.m4 (_AC_LANG_PREFIX(C), _AC_LANG_PREFIX(C++)):
4756         New macros.
4757         (AC_LANG_PROGRAM(C)): Invoke _AC_LANG_PROGRAM_C_FC_HOOKS if defined.
4758         * lib/autoconf/fortran.m4 (AC_LANG(Fortran), _AC_FORTRAN_ASSERT,
4759         _AC_LANG_ABBREV(Fortran), _AC_LANG_PREFIX(Fortran 77),
4760         _AC_LANG_PREFIX(Fortran), _AC_FC, AC_LANG_SOURCE(Fortran),
4761         AC_LANG_PROGRAM(Fortran), AC_LANG_CALL(Fortran),
4762         AC_LANG_PREPROC(Fortran), AC_LANG_COMPILER(Fortran),
4763         _AC_FC_DIALECT_YEAR, _AC_F95_FC, _AC_F90_FC, _AC_F77_FC,
4764         _AC_PROG_FC, AC_PROG_FC, _AC_PROG_FC_G, _AC_PROG_FC_C_O,
4765         AC_PROG_FC_C_O, _AC_PROG_FC_V_OUTPUT, _AC_PROG_FC_V,
4766         _AC_FC_LIBRARY_LDFLAGS, AC_FC_LIBRARY_LDFLAGS, _AC_FC_DUMMY_MAIN,
4767         AC_FC_DUMMY_MAIN, _AC_FC_MAIN, AC_FC_MAIN, __AC_FC_NAME_MANGLING,
4768         _AC_FC_WRAPPERS, AC_FC_WRAPPERS, _AC_FC_FUNC, AC_FC_FUNC,
4769         AC_FC_SRCEXT, AC_FC_FREEFORM):
4770         New macros.
4771         (AC_PROG_F77, AC_PROG_F77_C_O, AC_F77_LIBRARY_LDFLAGS,
4772         AC_F77_DUMMY_MAIN, AC_F77_MAIN, _AC_F77_NAME_MANGLING,
4773         AC_F77_NAME_MANGLING, AC_F77_WRAPPERS, AC_F77_FUNC):
4774         Rewrite in terms of the above.
4775         (_AC_PROG_F77_G, _AC_PROG_F77_V_OUTPUT, _AC_PROG_F77_V): Remove.
4776         * lib/autoconf/lang.m4 (_AC_LANG_PREFIX): New macro.
4777         * tests/acfortran.at: Test AC_FC_FREEFORM, AC_FC_FUNC,
4778         AC_FC_MAIN, AC_FC_SRCEXT, AC_FC_WRAPPERS, AC_PROG_FC_C_O.
4780 2003-09-02  Paul Eggert  <eggert@twinsun.com>
4782         * doc/autoconf.texi (Limitations of Usual Tools, Limitations of Make):
4783         Document problems with timestamp resolution that 'make', 'cp -p', and
4784         'touch -r' have.
4786 2003-08-27  Akim Demaille  <akim@epita.fr>
4788         * tests/m4sugar.at (cross_warning): Make sure to enable the
4789         output, so that we can track spurious m4sugar output.
4790         * tests/local.at: Require 2.57.
4791         (AT_CHECK_M4SUGAR, AT_CHECK_M4SH): Don't m4_default the arguments that
4792         are defaulted by AT_CHECK anyway.
4793         Use AT_CHECK_AUTOM4TE.
4794         * lib/m4sugar/m4sugar.m4: There should be no output at all: add a
4795         missing dnl.
4797 2003-08-27  Akim Demaille  <akim@epita.fr>
4799         * bin/autoheader.in: Issue the "Using auxiliary..." message only
4800         when -Wobsolete is set.
4801         Set it on by default.
4802         Suggested by Klee Dienes.
4804 2003-08-27  Akim Demaille  <akim@epita.fr>
4806         * doc/autoconf.texi (AC_FUNC_FSEEKO, AC_SYS_LARGEFILE): More
4807         documentation.
4808         From Guido Draheim.
4810 2003-08-26  Akim Demaille  <akim@epita.fr>
4812         * doc/autoconf.texi (Output): Make clear that one can run code
4813         after AC_OUTPUT.
4815 2003-08-25  Akim Demaille  <akim@epita.fr>
4817         * config/announce-gen, GNUmakefile, Makefile.maint: Update from
4818         CVS Bison.
4820 2003-08-25  Alexandre Duret-Lutz  <adl@gnu.org>
4822         * bin/autoreconf.in (parse_args): Do not pass --no-force to
4823         Automake versions prior to 1.8.
4825 2003-08-25  Akim Demaille  <akim@epita.fr>
4827         * doc/autoconf.texi (Header Portability): netinet/if_ether.h.
4828         From Ville Karaila.
4830 2003-08-24  Akim Demaille  <akim@epita.fr>
4832         * configure.ac: Bump to 2.57c.
4834 2003-08-22  Akim Demaille  <akim@epita.fr>
4836         Version 2.57b.
4838         * Makefile.cfg (local-checks-to-skip): New.
4839         * Makefile.maint (local-check): Rename as...
4840         (local-checks-available): this.
4841         (local-check): New.
4843         * Makefile.am (EXTRA_DIST): Add Makefile.cfg.
4844         * configure.ac: Require Automake 1.7.6.
4846 2003-08-22  Akim Demaille  <akim@epita.fr>
4848         Output stack traces in warnings.
4850         * lib/m4sugar/m4sugar.m4 (_m4_warn): New.
4851         Replace the former...
4852         (m4_warn): Pass the call stack to _m4_warn.
4853         * bin/autom4te.in: Adjust to output the call stack.
4854         * tests/m4sugar.at (m4@&t@_warn): Adjust.
4856 2003-08-22  Akim Demaille  <akim@epita.fr>
4858         * lib/Autom4te/Request.pm, lib/Autom4te/C4che.pm: New.
4859         * bin/autom4te.in: Adjust.
4861 2003-08-21  Akim Demaille  <akim@epita.fr>
4863         * lib/Autom4te/General.pm (&file_name_is_absolute): Remove.
4864         (&verbose): Remove.
4865         (&getopt): Adjust the note and verb channels, depending upon
4866         --verbose.
4867         * bin/autoheader.in, bin/autom4te.in, bin/autoscan.in,
4868         * bin/autoupdate.in: Adjust.
4869         Use &verb, not &verbose.
4871 2003-08-21  Akim Demaille  <akim@epita.fr>
4873         * bin/autoheader.in (&parse_args): Use &parse_warnings and
4874         &parse_WARNINGS.
4875         ($help): Use Autom4te::ChannelDefs::usage.
4876         * bin/autoscan.in: Use Autom4te::ChannelDefs.
4877         * lib/Autom4te/General.pm: Don't export error: you don't own it.
4879 2003-08-21  Akim Demaille  <akim@epita.fr>
4881         First stab at preserving warnings between calls to autom4te,
4882         including when the cache is used.
4884         There are still several issues: (i) there are too many runs of m4
4885         (one for include, one for warnings, and some more), (ii) warnings
4886         spreading on several lines are not handled gracefully, (iii) the
4887         code meant to have the call stack display for errors does not work
4888         (its handling should move from m4 to autom4te).
4890         * bin/autom4te.in Autom4te::Channels, Autom4te::ChannelDefs):
4891         Use them.
4892         (@preselect): Add m4_warn.
4893         ($exit_status): Remove, use $exit_code.
4894         ($help): Use Autom4te::ChannelDefs::usage.
4895         (&handle_m4): No longer define the m4_warnings.
4896         At each run, extract and report the warnings.
4897         Always cache the result, including if the exit status is on
4898         failure, since if nothing changes, we should result in the same
4899         failure, hence we can use the cache.
4900         * lib/m4sugar/m4sugar.m4 (m4_warning_ifelse, _m4_warning_ifelse)
4901         (_m4_warning_error_ifelse, __m4_warning_error_ifelse, _m4_warn):
4902         Remove.
4903         (m4_warn): Redefine as a do-nothing: it is its invocation that
4904         matters, as warnings are now reported via traces.
4905         * lib/autoconf/general.m4 (AC_DIAGNOSE): Don't make it a copy of
4906         the contents of m4_warn: make it _call_ m4_warn, so that tracing
4907         the latter reveals calls to the former.
4909         Adjust the tests.
4911         * tests/m4sugar.at (m4@&t@_warn): Use existing warning categories.
4913 2003-08-21  Akim Demaille  <akim@epita.fr>
4915         * bin/autoreconf.pm (Autom4te::Channels, Autom4te::ChannelDefs):
4916         Use them.
4918 2003-08-21  Akim Demaille  <akim@epita.fr>
4920         * lib/Autom4te/FileUtils.pm (&find_file): Walk the @include in
4921         forward order.
4922         * lib/Autom4te/ChannelDefs.pm: Doc typos.
4923         (&parse_warnings): Accept a list of warning requests.
4924         (&usage): Return a string, not a side effect.
4925         (cross): New warning category.
4927 2003-08-21  Akim Demaille  <akim@epita.fr>
4929         * lib/Autom4te/Configure_ac.pm (&find_configure_ac)
4930         (&require_configure_ac): Accept an optional directory argument.
4931         ($configure_ac): Remove.
4932         * lib/Autom4te/General.pm (&find_configure_ac, &canonfile)
4933         (&catfile): Remove.
4934         * bin/autoheader.in, bin/autoreconf.in, bin/autoupdate.in,
4935         * bin/autoscan.in: Adjust.
4937 2003-08-20  Akim Demaille  <akim@epita.fr>
4939         * bin/autoheader.in: Remove duplicate 'use Autom4te::FileUtils'.
4940         Reported by Alexandre Duret-Lutz.
4942 2003-08-20  Akim Demaille  <akim@epita.fr>
4944         * bin/autoupdate.in, bin/autoheader.in, bin/autoreconf.in,
4945         * bin/autom4te: Adjust.
4946         In particular, be Autoconf tools are really silent when properly
4947         working, bind the verbosity of the 'note' channel to $verbose.
4948         * lib/Autom4te/General.pm (&find_file, &mtime, &update_file)
4949         (&xsystem, &contents): Remove, since they are exported by...
4950         * lib/Autom4te/FileUtils.pm: this.
4951         More perldoc.
4952         * lib/Autom4te/General.pm (&up_to_date_p): Move to...
4953         * lib/Autom4te/FileUtils.pm: here.
4955 2003-08-20  Akim Demaille  <akim@epita.fr>
4957         * lib/Autom4te/Channels.pm, lib/Autom4te/ChannelDefs.pm
4958         * lib/Autom4te/Configure_ac.pm, lib/Autom4te/FileUtils.pm: New,
4959         from CVS Automake.
4961 2003-08-20  Akim Demaille  <akim@epita.fr>
4963         * Makefile.am (automake_cvsweb, automake_cvsargs, autom4te_files)
4964         (autom4te-update): New.
4965         * Makefile.cfg (update): Bind autom4te-update.
4967 2003-08-19  Derek Price  <derek@ximbiot.com>
4969         * lib/autotest/general.m4: Comment various HELP_* diversions.
4970         (PARSE_ARGS_BEGIN): New section for option parsing related
4971         initialization.
4972         (AT_ARG_OPTION,AT_ARG_OPTION_ARG,_AT_ARG_OPTION): New macros to define
4973         package specific options and associated help.
4975 2003-08-19  Akim Demaille  <akim@epita.fr>
4977         * config/announce-gen, Makefile.cfg: New.
4978         * Makefile.am: Adjust.
4979         * GNUmakefile, Makefile.maint: Update from CVS Coreutils.
4981 2003-08-19  Alexandre Duret-Lutz  <adl@gnu.org>
4983         * lib/autom4te.in (Automake-preselections): Preselect
4984         AC_CONFIG_LIBOBJ_DIR, AC_CONFIG_LINKS, m4_include,
4985         and m4_sinclude.
4987 2003-08-19  Alexandre Duret-Lutz  <adl@gnu.org>
4989         * lib/autom4te.in (Autoconf): Move all args except aclocal.m4? into ...
4990         (Autoconf-without-aclocal-m4): ... this new language.
4991         * doc/autoconf.texi (autom4te Invocation): Mention
4992         Autoconf-without-aclocal-m4.
4994 2003-08-18  Derek Price  <derek@ximbiot.com>
4996         * doc/autoconf.texi (Writing testsuite.at): Document RUN-IF-FAIL &
4997         RUN-IF-PASS optional arguments.
4999 2003-08-18  Derek Price  <derek@ximbiot.com>
5001         * doc/autoconf.texi (Programming in M4sh): Add doc for AS_IF.
5003 2003-08-16  Derek Price  <derek@ximbiot.com>
5005         * doc/autoconf.texi (Writing testsuite.at): Document defaults for
5006         STDOUT & STDERR arguments.
5008 2003-08-14  Derek Price  <derek@ximbiot.com>
5010         * lib/autotestgeneral.m4 (AT_INIT): Reformat test summary line to print
5011         DESCRIPTION rather than FILE and LINE.  Shorten result to fit in new,
5012         shorter column three.  Add DESCRIPTION to log file content.
5014 2003-08-13  Derek Price  <derek@ximbiot.com>
5016         * lib/autotest/general.m4 (AT_INIT): Correct typo in final status
5017         output.
5019 2003-08-12  Derek Price  <derek@ximbiot.com>
5021         * lib/autotest/general.m4 (AT_CHECK): Use new _AT_CHECK API.
5022         (AT_CHECK_NOESCAPE): Move core functionality to...
5023         (_AT_CHECK): ...this new macro.
5025 2003-08-07  Derek Price  <derek@ximbiot.com>
5027         * lib/autotest/general.m4 (AT_CHECK): Move core functionality...
5028         (AT_CHECK_NOESCAPE): ...to this new macro.
5030 2003-07-31  Paul Eggert  <eggert@twinsun.com>
5032         * lib/m4sugar/m4sh.m4 (_AS_UNSET_PREPARE): Work around a bug
5033         in Bash 2.01.  Problem reported by Brian Gough in
5034         <http://mail.gnu.org/archive/html/bug-autoconf/2003-07/msg00106.html>.
5036 2003-07-25  John W. Eaton  <jwe@bevo.che.wisc.edu>
5038         * lib/autoconf/fortran.m4 (AC_F77_LIBRARY_LDFLAGS): Also ignore
5039         -lcrt1.o, for OS X.  (trivial change)
5041 2003-07-07  Paul Eggert  <eggert@twinsun.com>
5043         * lib/autoconf/c.m4 (AC_C_INLINE): Wrap the '#define inline ...'
5044         inside '#ifndef __cplusplus'.  Problem reported by
5045         Bob Friesenhahn.
5047 2003-07-06  Bill Clarke  <llib@computer.org>
5049         * lib/autoconf/functions.m4 (AC_FUNC_MMAP): Cast pointer to
5050         'long', not 'int', for benefit of Sun's recent C++ compilers
5051         (trivial change).  See:
5052         http://mail.gnu.org/archive/html/autoconf-patches/2003-07/msg00007.html
5053         (This really should be 'intptr_t', not 'long', but that would
5054         take more work.)
5056 2003-06-25  Akim Demaille  <akim@epita.fr>
5058         * lib/Makefile.am (autom4te.cfg): Make it read only.
5059         Depend on Makefile since it contains substitutions.
5060         From Paolo Bonzini.
5061         * lib/autom4te.in (args): Add local.at? for Autotest args.
5062         This change was made on autom4te.cfg which is generated.
5063         Reported by Raja R. Harinath.
5065 2003-06-25  Akim Demaille  <akim@epita.fr>
5067         * doc/autoconf.texi (Header Portability): sys/mount.h.
5068         From Gareth McCaughan.
5070 2003-06-23  Akim Demaille  <akim@epita.fr>
5072         * lib/autotest/general.m4 (AT_INIT): Report a single config.log,
5073         not all of them.  This fixes 1. the fact that when testing
5074         Autoconf there are many many config.log, 2. the incorrect use of
5075         top_srcdir to find config.log.
5076         Don't mix the detailed output of failed test with the summary of
5077         failures.  Rather, append detailed log afterwards.
5079 2003-06-23  Akim Demaille  <akim@epita.fr>
5081         * tests/local.at (AT_CHECK_CONFIGURE): Adjust to the verbose being
5082         always run: output config.log on $at_group_log.
5084 2003-06-23  Akim Demaille  <akim@epita.fr>
5086         * tests/torture.at (#define header templates): Don't use quotes in
5087         C++ comments as it puzzles Emacs' sh font-lock-mode.
5089 2003-06-23  Akim Demaille  <akim@epita.fr>
5091         * tests/mktests.sh (au_exclude_egrep): Fix output copyright notice.
5092         * lib/autom4te.cfg (args): Add local.at? for Autotest args.
5093         * tests/atspecific.m4: Rename as...
5094         * tests/local.at: This.
5095         * tests/suite.at: Move the globals into...
5096         * tests/local.at: here.
5097         * tests/Makefile.am: Adjust.
5098         * doc/autoconf.texi (testsuite Scripts): Adjust.
5100 2003-06-21  Kevin Ryde  <user42@zip.com.au>
5102         * lib/autoconf/c.m4 (_AC_PROG_CC_STDC): Extend test program to get an
5103         error from OSF 4.0 Compaq cc in its default almost-ANSI mode, thereby
5104         ensuring we add -std1 for full-ANSI.
5106         * doc/autoconf.texi (hdrindex): New macro.
5107         Add index entries for portability of various standard header files.
5109 2003-06-20  Akim Demaille  <akim@epita.fr>
5111         * configure.ac: Bump to 2.57b.
5113 2003-06-20  Akim Demaille  <akim@epita.fr>
5115         Version 2.57a.
5117 2003-06-20  Akim Demaille  <akim@epita.fr>
5119         * bin/autom4te.in: Don't rely on $HOME being defined.
5120         Reported by Marc Espie as PR/233.
5122 2003-06-20  Akim Demaille  <akim@epita.fr>
5124         * lib/autotest/general.m4: Use at_times_file only if used.
5125         From Nicolas Joly.
5127 2003-06-20  Akim Demaille  <akim@epita.fr>
5129         * config/config.guess, config/config.sub, config/elisp-comp,
5130         * config/install-sh, config/mkinstalldirs, doc/standards.texi:
5131         Update from masters.
5133 2003-06-11  Paolo Bonzini  <bonzini@gnu.org>
5135         * doc/autoconf.texi (Writing testsuite.at): Document AT_XFAIL_IF
5136         * lib/autotest/general.m4 (AT_XFAIL_IF): New macro.
5137         (TEST_SCRIPT): New diversion.
5138         (AT_SETUP): Divert output to TEST_SCRIPT and move some code...
5139         (AT_CLEANUP): ...to here.  Undivert TEST_SCRIPT.
5140         (AT_INIT): Support for expected failures.
5142 2003-06-02  Akim Demaille  <akim@epita.fr>
5144         * bin/autom4te.in, bin/autoscan.in, bin/autoheader.in: White space
5145         changes.
5146         * lib/Autom4te/General.pm (&backname): Remove, no longer used by
5147         Autoconf nor Automake.
5148         (&contents): New, from Automake.
5149         PODify.
5151 2003-05-28  Paul Eggert  <eggert@twinsun.com>
5153         * NEWS, doc/autoconf.texi (Particular Functions),
5154         lib/autoconf/functions.m4 (AC_FUNC_MKTIME): Check that mktime
5155         is the inverse of localtime.
5157 2003-05-25  Alexandre Duret-Lutz  <adl@gnu.org>
5159         * lib/Autom4te/General.pm (END): Print diagnostics to STDERR.
5160         (handle_exec_errors): New function.  Work around $! being
5161         altered by WEXITSTATUS.
5162         (xqx, xsystem): Use handle_exec_errors.
5164 2003-05-23  Alexandre Duret-Lutz  <adl@gnu.org>
5166         * lib/Autom4te/General.pm (END): Rewrite exit code processing.
5167         Do not call `_exit()', simply modify `$?'.
5168         (xsystem): Reset $! before running system, and check it afterward.
5169         * tests/tools.at (autoupdating AC_PREREQ): Expect exit status
5170         63 for version mismatches.
5172 2003-05-23  Akim Demaille  <akim@epita.fr>
5174         * lib/autoconf/status.m4: Prefer "TAB-SP" to "SP-TAB", because of
5175         Emacs' dangerous whitespace.el behavior (smashing "useless" spaces in
5176         the middle of a line).
5177         * lib/m4sugar/m4sugar.m4: Likewise.
5178         Remove useless spaces in comments.
5180 2003-05-23  Akim Demaille  <akim@epita.fr>
5182         * lib/m4sugar/m4sugar.m4 (m4_version_prereq): Failure causes an
5183         exit 63, so that we (or Automake's "missing") can tell the
5184         difference with a plain failure.
5185         * doc/autoconf.texi (Notices): Adjust.
5187 2003-05-23  Akim Demaille  <akim@epita.fr>
5189         * Makefile.am, bin/Makefile.am, config/Makefile.am,
5190         * doc/Makefile.am, lib/autoconf/Makefile.am, tests/Makefile.am:
5191         White spaces cleanup.
5193 2003-05-22  Jim Meyering  <jim@meyering.net>
5194             Paul Eggert  <eggert@twinsun.com>
5196         * lib/autoconf/c.m4 (_AC_PROG_CXX_EXIT_DECLARATION):
5197         Remove `#include <stdlib.h>' from the list; we should never
5198         make confdefs.h include <stdlib.h> or <cstdlib>, because the
5199         resulting namespace pollution would cause other tests to fail.
5200         Configure scripts run with some older versions of g++ and HP's
5201         aCC would fail due to such an #include.  Problems reported by
5202         Matthew Mueller in <http://bugs.debian.org/120704> and by
5203         Keith Bostic in
5204         <http://mail.gnu.org/archive/html/autoconf/2003-05/msg00063.html>.
5205         In the test, use the test declaration before including <stdlib.h>,
5206         as that's closer to how it'll be used.
5208 2003-05-23  Akim Demaille  <akim@epita.fr>
5210         * doc/autoconf.texi (Header Portability): ucred.h.
5211         From Ian Redfern.
5213 2003-05-22  Paolo Bonzini  <bonzini@gnu.org>
5215         Overhaul Autotest's logging: generate separate log files
5216         in testsuite.dir/NNN/testsuite.log, and append them to
5217         testsuite.log instead of re-running the test verbosely.
5219         * lib/autotest/general.m4 (AT_INIT): Use a single redirected
5220         file descriptor, write 0 to at_status_file instead of setting
5221         at_status=0, initialize some new variables (at_status_file,
5222         at_group_log, at_suite_log, at_tee_pipe).  Remove the cruft
5223         to rerun the tests, instead append the at_group_log to the
5224         at_suite_log when a test fails.
5225         (AT_SETUP): pipe the test case's output into at_tee_pipe,
5226         with the AS_MESSAGE_LOG_FD redirected to stdout.
5227         (AT_CLEANUP): save the output status in $at_status_file
5228         and restore it, redirect the AS_MESSAGE_LOG_FD back to
5229         its original place.
5230         (AT_CHECK): since tests are run with a redirected stdout,
5231         and used to be re-run in verbose mode, turn some $at_verbose
5232         into echo, and don't redirect the output of testing stdout
5233         and stderr.
5235         * lib/autotest/autoconf.texi (testsuite Scripts): Update
5236         the name of the debugging directory and information about
5237         its contents.
5239 2003-05-22  Paolo Bonzini  <bonzini@gnu.org>
5241         * lib/m4sugar/m4sh.m4 (AS_REQUIRE): Actually use the 2nd
5242         parameter.
5244 2003-05-22  Akim Demaille  <akim@epita.fr>
5246         * lib/autoconf/autotest.m4, lib/autoconf/autoupdate.m4
5247         * lib/autoconf/fortran.m4 lib/autoconf/general.m4
5248         * lib/autoconf/headers.m4 lib/autoconf/oldnames.m4
5249         * lib/autoconf/status.m4: Fix and adjust copyright notices.
5251 2003-05-22  Akim Demaille  <akim@epita.fr>
5253         * aclocal.m4, bin/autoconf.as, lib/autoconf/autoconf.m4,
5254         * lib/autoconf/autoheader.m4, lib/autoconf/autoupdate.m4,
5255         * lib/autoconf/c.m4, lib/autoconf/fortran.m4,
5256         * lib/autoconf/general.m4, lib/autoconf/headers.m4,
5257         * lib/autoconf/lang.m4, lib/autoconf/libs.m4,
5258         * lib/autoconf/programs.m4, lib/autoconf/specific.m4,
5259         * lib/autoconf/status.m4, lib/autoconf/types.m4,
5260         * lib/autotest/general.m4, lib/m4sugar/m4sugar.m4,
5261         * tests/atspecific.m4, tests/base.at, tests/compile.at,
5262         * tests/foreign.at, tests/m4sh.at, tests/semantics.at,
5263         * tests/tools.at, tests/torture.at:
5264         Whitespace clean up.
5265         Suggested by Jim Meyering.
5267 2003-05-22  Akim Demaille  <akim@epita.fr>
5269         * lib/autoconf/functions.m4 (AC_FUNC_GETLOADAVG): Restore smashed
5270         ' \t' as '\t ' so that Emacs' whitespace.el keep it.
5271         Reported by Jim Meyering.
5273 2003-05-22  Akim Demaille  <akim@epita.fr>
5275         * doc/autoconf.texi: Replace AC_HELP_STRING AS_HELP_STRING.
5276         Add AC_HELP_STRING  to the obsolete macros section.
5277         Typos.
5278         Use '@.' for sentences that ended in a capital letter.
5279         From Art Haas.
5281 2003-05-22  Akim Demaille  <akim@epita.fr>
5283         * config/config.guess, config/config.sub, config/elisp-comp,
5284         * config/install-sh, config/mdate-sh, config/mkinstalldirs,
5285         * config/texinfo.tex, doc/standards.texi: Update from masters.
5287 2003-05-21  Paolo Bonzini  <bonzini@gnu.org>
5289         * lib/m4sugar/m4sh.m4 (AS_VAR_SET): Escape the RHS before passing
5290         it to eval.
5292 2003-05-21  Akim Demaille  <akim@epita.fr>
5294         * bin/autoupdate.in ($m4): Fix quotation.
5295         Reported by Martin Mokrejs.
5297 2003-05-19  Paul Eggert  <eggert@twinsun.com>
5299         * ChangeLog, ChangeLog.2, THANKS, lib/m4sugar/m4sugar.m4:
5300         Remove non-ASCII characters.
5302 2003-05-18  Paolo Bonzini  <bonzini@gnu.org>
5304         * tests/semantics.at (AC_SEARCH_LIBS): New test.
5305         * tests/semantics.at (AC_CHECK_HEADERS_OLD,
5306         AC_CHECK_HEADERS_NEW): New tests.
5308 2003-05-17  Akim Demaille  <akim@epita.fr>
5310         * lib/autoconf/functions.m4: Use the default includes so that
5311         memcmp be declared before being tested.
5312         Reported by Sander Niemeijer.
5313         (AC_FUNC_ERROR_AT_LINE, AC_FUNC_GETGROUPS, AC_FUNC_STRNLEN): Likewise.
5314         * doc/autoconf.texi (Default Includes): Document
5315         AC_INCLUDES_DEFAULT.
5317 2003-05-17  Akim Demaille  <akim@epita.fr>
5319         * lib/autoconf/specific.m4: Include signal.h and unistd.h.
5320         * doc/autoconf.texi (Obsolete Macros): Adjust.
5321         Reported by Werner LEMBERG and Debian Bug 190886.
5323 2003-05-16  Akim Demaille  <akim@epita.fr>
5325         * lib/m4sugar/m4sh.m4 (_AS_UNSET_PREPARE): s/FOO/as_foo/ to avoid
5326         user name space clashes.
5327         Reported by Bruno Haible.
5329 2003-05-16  Akim Demaille  <akim@epita.fr>
5331         * bin/autoheader.in, bin/autom4te.in, bin/autoreconf.in,
5332         * bin/autoscan.in, bin/autoupdate.in, bin/ifnames.in (BEGIN): Make
5333         them uniform, and more robust to Perl special characters.
5334         Reported by Martin Mokrejs.
5336 2003-05-14  Akim Demaille  <akim@epita.fr>
5338         * tests/foreign.at (Libtool): Skip all Libtools pre 1.4.
5340 2003-05-14  Akim Demaille  <akim@epita.fr>
5342         * doc/autoconf.texi (Header Portability): X11/extensions/scrnsaver.h,
5343         linux/irda.h.
5345 2003-05-12  Akim Demaille  <akim@epita.fr>
5347         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Improve the
5348         message.
5349         From Matthias Andree.
5351 2003-05-07  Alexandre Duret-Lutz  <adl@gnu.org>
5353         * lib/Autom4te/XFile.pm (lock, truncate): Do not pass @_ to flock
5354         and truncate.
5356 2003-05-06  Akim Demaille  <akim@epita.fr>
5358         Don't try to be smart with aclocal 1.8+ because (i) aclocal no
5359         longer updates aclocal.m4 if useless, (ii) if a file m4_included
5360         by aclocal.m4 is changed it might require the importing of another
5361         m4 extension file, i.e., aclocal must be run.
5363         * bin/autoreconf.in (&run_aclocal, $aclocal_supports_force): New.
5364         (&parse_args): Use --force with aclocal if required and supported.
5365         (&autoreconf_current_directory): Use &run_aclocal.
5367 2003-05-06  Akim Demaille  <akim@epita.fr>
5369         Lock autom4te's cache.
5371         * lib/Autom4te/XFile.pm ($me, &name, &lock, &truncate, &seek): New.
5372         * bin/autom4te.in (&Request::save, &Request::load): Use an IO::File
5373         argument instead of a file name, so that the request file remains
5374         open during the whole autom4te run.
5375         ($icache_file): New.
5376         (&freeze): Lock the $icache_file.
5378 2003-04-29  Derek Price  <derek@ximbiot.com>
5380         * lib/autotest/general.m4 (AT_KEYWORDS): Don't use a comma as the
5381         seperator with m4_append_uniq().  It doesn't work.
5382         (AT_CLEANUP): Add `;' to end of at_help_all.
5383         (AT_INIT): Allow --keywords to be specified more than once.  When
5384         grepping $at_help_all for keywords, use the field and keyword
5385         seperators to ensure a complete keyword match.  Alter at_prev handling
5386         to support the new --keywords behavior.
5388 2003-04-27  Karl Berry  <karl@freefriends.org>
5390         * doc/autoconf.texi: Make the dir entries in the autoconf manual
5391         align better with others.  I also made some of the individual
5392         entries on one line, for brevity and to make it easier for me to
5393         sort my dir-example file in the Texinfo distribution :).
5395 2003-04-12  Jim Meyering  <jim@meyering.net>
5397         * NEWS: Mention the new macro.
5398         * lib/autoconf/c.m4 (AC_C_RESTRICT): New macro.
5399         * doc/autoconf.texi (C Compiler): Describe AC_C_RESTRICT.
5400         * tests/c.at: Test AC_C_RESTRICT.
5401         * tests/mktests.sh (ac_exclude_list): Add exclusion for AC_C_RESTRICT.
5403 2003-04-08  Akim Demaille  <akim@epita.fr>
5405         * bin/ifnames.in: Skip C++ comments.
5406         From Jeremy Yallop.
5408 2003-04-08  Akim Demaille  <akim@epita.fr>
5410         * GNUmakefile (SHELL): Don't assume sh is in /bin/.
5411         From Ilya Zakharevich.
5413 2003-04-08  Akim Demaille  <akim@epita.fr>
5415         * doc/autoconf.texi (Particular Headers): Some about sys/socket.h,
5416         net/if.h, stdlib.h.
5418 2003-04-01  Derek Price  <derek@ximbiot.com>
5420         * lib/autoconf/programs.m4 (AC_PROG_INSTALL): Correct syntax error
5421         from Akim's checkin of 2003-03-29.
5423 2003-04-01  Derek Price  <derek@ximbiot.com>
5425         * tests/torture.at (Configuring subdirectories): Add missing
5426         close-quote for Akim's change from 2003-03-28.
5428 2003-04-01  Akim Demaille  <akim@epita.fr>
5430         * doc/autoconf.texi (ac, at, ms): Rename these indexes as...
5431         (AC, AT, MS): these.
5432         (shortindexflag, @acindex, @ahindex, @asindex, @atindex, @msindex):
5433         New.
5434         Use them.
5435         * doc/Makefile.am (CLEANFILES): Adjust.
5436         (TEXI2DVI): Make it --batch.
5438 2003-03-31  Derek Price  <derek@ximbiot.com>
5440         * lib/autotest/general.m4: Revert the checkin from 2003-03-27
5441         which removed the main loop.
5442         Thanks to Akim Demaille.
5444 2003-03-29  Akim Demaille  <akim@epita.fr>
5446         * lib/autoconf/programs.m4 (AC_PROG_INSTALL): Skip OS/2's install,
5447         that starts a GUI.
5448         From Ilya Zakharevich.
5450 2003-03-29  Akim Demaille  <akim@epita.fr>
5452         * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_MONGREL): The
5453         documentation to read is Autoconf's.
5454         Suggested by Paul Eggert.
5456 2003-03-28  Akim Demaille  <akim@epita.fr>
5458         * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_MONGREL): Suggest
5459         reading the section "Present But Cannot Be Compiled" when the
5460         header causes problems.
5462 2003-03-28  Akim Demaille  <akim@epita.fr>
5464         * tests/torture.at (Configuring subdirectories): Require aclocal
5465         1.4, otherwise the test fails, as it does support configure.ac.
5466         This fixes the "test 40 failed" bug reports.
5468 2003-03-28  Akim Demaille  <akim@epita.fr>
5470         * doc/autoconf.texi (C Compiler): `#line' portability.
5471         From Paul Eggert and Nelson H. F. Beebe.
5473 2003-03-27  Derek Price  <derek@ximbiot.com>
5475         * lib/autotest/general.m4: Eliminate main loop and reorganize test
5476         layout in order to allow scripting around test groups.
5478 2003-03-27  Derek Price  <derek@ximbiot.com>
5480         * lib/autotest/general.m4 (PARSE_ARGS,PARSE_ARGS_END,HELP,HELP_MODES,
5481         HELP_TUNING,HELP_OTHER,HELP_END,PREPARE_TESTS,TESTS_END): Define and
5482         use new diversions in preparation for accepting new arguments and
5483         allowing scripting around tests.
5484         (OPTIONS,TAIL): Remove these diversions to make way for the ones above.
5486 2003-03-26  Derek Price  <derek@ximbiot.com>
5488         * lib/autoconf/general.m4 (AC_ARG_VAR): Use AS_HELP_STRING instead of
5489         obsolete AC_HELP_STRING.
5490         (AC_HELP_STRING): AU_DEFUN to...
5491         * lib/m4sugar/m4sh.m4 (AS_HELP_STRING): ...here.
5492         * tests/m4sh.at (AS_HELP_STRING): New test.
5494         * tests/acgeneral.at: Regenerated.
5496 2003-03-26  Derek Price  <derek@ximbiot.com>
5498         * lib/autotest/general.m4: s/DEFAULT/DEFAULTS/ since it makes more
5499         sense.  Verbosify the diversion definitions comment.
5501 2003-03-26  Derek Price  <derek@ximbiot.com>
5503         * lib/autotest/general.m4 (AT_INIT): Remove redundant call to
5504         AS_PREPARE.
5506 2003-03-21  Eric Siegerman  <eric_97@pobox.com>
5508         * doc/autoconf.texi (Present But Cannot Be Compiled):
5509         Grammar fixes and minor rewording. (trivial change)
5511 2003-03-06  Paul Eggert  <eggert@twinsun.com>
5513         Work around a problem noted by Nelson H. F. Beebe with coreutils
5514         4.5.9: Sun c89 (Sun WorkShop 6 update 2 C 5.3 Patch 111679-08
5515         2002/05/09) rejects '#line 32768 "configure"' because the line
5516         number overflows.
5517         * lib/autoconf/c.m4 (AC_LANG_SOURCE(C)): Do not generate
5518         #line directives.
5519         * lib/autoconf/lang.m4 (AC_LANG_SOURCE): Fix comment to match this.
5520         * doc/autoconf.texi (Generating Sources): Document this.
5522 2003-03-01  Richard Dawe  <rich@phekda.freeserve.co.uk>
5524         * tests/atspecific.m4 (AT_CHECK_AUTOM4TE): Normalize
5525         file name for the m4 program, when it has an "exe" file extension.
5526         DJGPP's error messages include the error code in brackets -
5527         remove the error code during normalization.
5529 2003-02-28  Akim Demaille  <akim@epita.fr>
5531         * doc/autoconf.texi (Present But Cannot Be Compiled): New.
5533 2003-02-28  Alexandre Duret-Lutz  <adl@gnu.org>
5535         * doc/autoconf.texi (Limitations of Make): Remove the section
5536         about `$<' in inference rules, it was a bogus interpretation of
5537         an old Automake change.  Discuss NetBSD, FreeBSD, OpenBSD, and
5538         Tru64 make in the "target lookup" section.
5539         (Automake): Automake 1.5+ no longer requires special tools to be
5540         present on the developer's host.
5542 2003-02-26  Richard Dawe  <rich@phekda.freeserve.co.uk>
5544         * bin/autoheader.in (BEGIN): For DJGPP SHELL may not be set
5545         to a shell that can handle redirection or quoting correctly.
5546         Override SHELL with the shell detected by configure.
5547         Use of $^O suggested by Tim van Holder.
5548         * bin/autom4te.in (BEGIN): Likewise.
5549         * bin/autoreconf.in (BEGIN): Likewise.
5550         * bin/autoscan.in (BEGIN): Likewise.
5551         * bin/autoupdate.in (BEGIN): Likewise.
5552         * bin/ifnames.in (BEGIN): Likewise.
5554         * bin/ifnames.in: Add final newline to help and version messages.
5556         * lib/autoconf/programs.m4 (AC_PROG_MAKE_SET): Translate colons,
5557         to cope with DOS-style absolute paths, when constructing
5558         ${ac_make}.
5560         * lib/autoconf/status.m4 (_AC_OUTPUT_HEADERS, _AC_OUTPUT_FILES):
5561         When constructing paths with IFS=:, quote the path. If we're
5562         constructing a DOS-style absolute path, we don't want to split it
5563         on the colon.
5565         * tests/atspecific.m4 (AT_CHECK_CONFIGURE): Fix typo
5566         in description.
5568 2003-02-25  Pavel Roskin  <proski@gnu.org>
5570         * bin/autoheader.in: Add missing newline when printing
5571         suggestion how change AC_DEFINE call.
5573 2003-02-24  Paul Eggert  <eggert@twinsun.com>
5575         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Fix typo in
5576         2002-09-01 patch by replacing "test -n" with "test -z".
5577         This fixes a bug found by Jeff Painter and reported by Tom Epperly in
5578         <http://mail.gnu.org/archive/html/autoconf/2003-02/msg00139.html>.
5580         * doc/autoconf.texi (Shell Substitutions): test -n -> test -z,
5581         to fix a mismatch between example and discussion.
5583 2003-02-24  Kevin Ryde  <user42@zip.com.au>
5585         * doc/autoconf.texi (Limitations of Builtins): Add notes on printf
5586         format starting with "-".
5588 2003-02-20  Alexandre Duret-Lutz  <adl@gnu.org>
5590         * doc/autoconf.texi (Limitations of Make): `foo=bar make -e'
5591         is not portable inside Makefile.
5593 2003-02-20  Akim Demaille  <akim@epita.fr>
5595         * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_MONGREL): When
5596         compiler says yeah, but preproc says nope, compiler is right.
5597         Conversely, prompt the reader to send a bug report to the
5598         maintainers of the package, not of Autoconf.
5600 2003-02-20  Klee Dienes  <kdienes@apple.com>
5602         * bin/autoreconf.in (autoreconf_current_directory): Properly
5603         handle an empty aclocal.m4.
5605 2003-02-20  Akim Demaille  <akim@epita.fr>
5607         * lib/autoconf/general.m4 (AC_PREFIX_PROGRAM): Quote
5608         $ac_prefix_program.
5609         From Larry Jones.
5611 2002-12-23  Paul Eggert  <eggert@twinsun.com>
5613         * lib/autoconf/c.m4 (AC_LANG_FUNC_LINK_TRY(C)): Define $1 to an
5614         innocuous variant befor including <limits.h> or <assert.h>.  This
5615         works around a bug reported by Albert Chin: HP-UX 11i
5616         (and earlier versions) have a <limits.h> that declares
5617         gettimeofday and many other functions.
5619 2002-12-03  Paul Eggert  <eggert@twinsun.com>
5621         Version 2.57.
5623         * NEWS, configure.ac: Update version.
5625         * doc/fdl.texi: Upgrade to FDL version 1.2.
5627         * lib/autoconf/c.m4 (AC_LANG_FUNC_LINK_TRY(C)): Use the function f
5628         nontrivially in main's body, so that f's external declaration is
5629         not optimized away in AIX.  This should fix the bug reported by
5630         Martin Frydl in
5631         <http://mail.gnu.org/pipermail/autoconf/2002-November/014508.html>.
5633         * lib/autoconf/c.m4 (AC_LANG_FUNC_LINK_TRY(C),
5634         _AC_PROG_PREPROC_WORKS_IFELSE): Use <limits.h> if __STDC__ is
5635         defined, to support freestanding compilers.  This should fix the
5636         bug reported by Momchil Velkov in
5637         <http://mail.gnu.org/pipermail/autoconf/2002-November/014490.html>.
5639         * doc/autoconf.texi (Obsolete Macros): Fix typos (insert empty
5640         arg, AC_DEFINE -> AC_DEFINE_UNQUOTED) in documentation for
5641         obsolete AC_CHECK_TYPE.  The missing empty arg was reported
5642         by Simon Josefsson in
5643         <http://mail.gnu.org/pipermail/autoconf-patches/2002-December/008830.html>.
5645         * Makefile.maint (www-gnu): New macro.
5646         (standards.texi-url_prefix, make-stds.texi-url_prefix): Use it, as
5647         the location has moved.
5649 2002-12-02  Martin Frydl  <martin@systinet.com>
5651         * bin/autom4te.in (at_flatten): rewritten to avoid M4 problem when
5652         \(.*\) match is too long and there is something more to be checked.
5653         <http://mail.gnu.org/pipermail/autoconf/2002-November/014524.html>
5655 2002-11-15  Akim Demaille  <akim@epita.fr>
5657         Version 2.56.
5659         * config/install-sh: chmod +x.
5660         From Paul Eggert.
5661         * config/move-if-change: Indenting changes.
5662         * Makefile.am (AUTOMAKE_OPTIONS): Move to...
5663         * configure.ac (AM_INIT_AUTOMAKE): here.
5664         Require 1.7.1.
5666 2002-11-14  Akim Demaille  <akim@epita.fr>
5668         Version 2.55.
5670         * config/config.guess, config/config.sub, config/install-sh:
5671         Update from masters.
5673 2002-11-14  Akim Demaille  <akim@epita.fr>
5675         * Makefile.maint: Sync with Bison, i.e.:
5676         (po-check): Scan .l and .y files instead of the
5677         .c and the .h files that they generate.  This fixes the bug
5678         reported by Tim Van Holder in:
5679         <http://mail.gnu.org/pipermail/bison-patches/2002-November/001352.html>
5680         Look for N_ as well as for _.  Try to avoid matching #define for
5681         N_ and _.
5682         From Paul Eggert.
5684 2002-11-14  Akim Demaille  <akim@epita.fr>
5686         * doc/autoconf.texi (C Compiler): Compiling several files at once.
5687         From Paul Eggert and Albert Chin-A-Young.
5689 2002-11-14  Akim Demaille  <akim@epita.fr>
5691         * doc/autoconf.texi (C Compiler): Solitary backslashes.
5692         From Paul Eggert and Albert Chin-A-Young.
5694 2002-11-14  Kevin Ryde  <user42@zip.com.au>
5696         * lib/autoconf/c.m4 (AC_LANG_FUNC_LINK_TRY(C)): Initialize f=$1 rather
5697         than assigning in main, to avoid HP cc +O3 optimizing it away.
5699 2002-11-12  Peter Eisentraut  <peter_e@gmx.net>
5701         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Add -q
5702         option.  Process --recheck after parsing all options.  Pass -q
5703         option to configure on --recheck.
5704         (AC_OUTPUT): Pass -q from configure to config.status.
5705         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Strip -q from
5706         arguments to record.
5707         * doc/autoconf.texi (config.status Invocation): Document
5708         config.status -q option.
5710 2002-11-07  Alexandre Duret-Lutz  <adl@gnu.org>
5712         * bin/autoscan.in (scan_file): Scan Makefile.am too. Ignore
5713         Makefile.in if Makefile.am exists.
5714         (output): Strip `.am' from Makefiles.  Don't
5715         output AC_CONFIG_FILES if no Makefiles were found.
5717 2002-11-07  Akim Demaille  <akim@epita.fr>
5719         * Makefile.am (cvs_files): Add elisp-comp, mdate-sh.
5720         (local_updates): New.
5721         * Makefile.maint: Update, from CVS Bison.
5722         (local_updates): New.
5724 2002-11-06  Akim Demaille  <akim@epita.fr>
5726         * lib/autoconf/c.m4 (AC_LANG_FUNC_LINK_TRY): Wrap the `f'
5727         declaration in extern "C" too.
5728         Reported by Roberto Bagnara.
5730 2002-11-06  Akim Demaille  <akim@epita.fr>
5732         * tests/torture.at (Configuring subdirectories): Don't use grep
5733         -w.
5734         * doc/autoconf.texi (Limitations of Usual Tools): Grep -w.
5735         Reported by Ezra Peisach.
5737 2002-11-05  Akim Demaille  <akim@epita.fr>
5739         * lib/autoconf/autoheader.m4 (_AH_TEMPLATE_OLD, _AH_VERBATIM_OLD):
5740         Remove.
5741         We _have_ to stop using the old compatibility scheme that tried to
5742         avoid useless backslashes because Libtool 1.4.3 contains a
5743         AC_DEFINE([error_t], [int],
5744         [Define to a type to use for \`error_t' if it is not
5745         otherwise available.])
5746         We _have_ to quote the single quote and backslashes with \.  The
5747         old compatibility scheme saw that ` was backslashed, and therefore
5748         did not quote the single quote.  Hence before this patch, Autoconf
5749         was not compatible with Libtool.
5751 2002-11-04  Paul Eggert  <eggert@twinsun.com>
5753         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Set the following variables,
5754         too: LC_ADDRESS, LC_IDENTIFICATION, LC_MEASUREMENT, LC_MONETARY,
5755         LC_NAME, LC_PAPER, LC_TELEPHONE.
5756         * doc/autoconf.texi (Special Shell Variables): Mention those vars.
5758 2002-11-04  Akim Demaille  <akim@epita.fr>
5760         Version 2.54c.
5762         * Makefile.maint (update, cvs-update, po-update, do-po-update):
5763         New.
5764         * config/texinfo.tex: Update.
5766 2002-11-03  Akim Demaille  <akim@epita.fr>
5768         * bin/autoreconf.in (&autoreconf_current_directory): New, extracted
5769         from...
5770         (&autoreconf): here.
5771         ($help, $make, &parse_args, &autoreconf_current_directory):
5772         Support -m/--make.
5773         * doc/autoconf.texi (autoreconf Invocation): Adjust.
5775 2002-10-31  Bruno Haible  <bruno@clisp.org>
5777         * lib/autoconf/functions.m4 (_AC_FUNC_MALLOC_IF): Change message.
5778         Change name of cache variable to ac_cv_func_malloc_0_nonnull.
5779         (AC_FUNC_MALLOC): Change description of HAVE_MALLOC macro.
5780         (_AC_FUNC_REALLOC_IF): Change message. Change name of cache variable
5781         to ac_cv_func_realloc_0_nonnull.
5782         (AC_FUNC_REALLOC): Change description of HAVE_REALLOC macro.
5784 2002-10-31  Akim Demaille  <akim@epita.fr>
5786         The test suite was no longer checking for trailing envvars and files.
5788         * tests/atspecific.m4 (AC_STATE_SAVE): Don't use quadrigraphs here.
5789         (AT_CHECK_ENV): Make sure the `state-ls.before file exists.
5791 2002-10-31  Akim Demaille  <akim@epita.fr>
5793         * lib/autoconf/programs.m4 (AC_PROG_MAKE_SET): Use and display
5794         `$(MAKE)' instead of '${MAKE}' to emphasize that we refer to the
5795         Make variable, not a shell variable.
5796         Suggested by Bruno Haible.
5798 2002-10-31  Akim Demaille  <akim@epita.fr>
5800         * bin/autom4te.in (load_configuration): Reject #args out of any
5801         language.
5803 2002-10-31  Akim Demaille  <akim@epita.fr>
5805         * lib/autoconf/general.m4 (_AC_MSG_LOG_CONFTEST): New.
5806         (_AC_PREPROC_IFELSE, _AC_COMPILE_IFELSE, _AC_LINK_IFELSE)
5807         (_AC_RUN_IFELSE): Use it.
5808         * lib/autoconf/lang.m4 (_AC_COMPILER_OBJEXT):
5809         (_AC_COMPILER_EXEEXT_DEFAULT): Likewise.
5810         * lib/autoconf/c.m4 (AC_LANG_SOURCE): Don't include confdefs.h,
5811         inline it.
5813 2002-10-30  Akim Demaille  <akim@epita.fr>
5815         * bin/autom4te.in (&parse_args, $help): Support --no-cache.
5816         * doc/autoconf.texi (autom4te Invocation): Adjust.
5817         Suggested by Tim van Holder.
5819 2002-10-29  Paul Eggert  <eggert@twinsun.com>
5821         * doc/autoconf.texi (Particular Functions): AC_FUNC_MALLOC and
5822         AC_FUNC_REALLOC check for compatibility with glibc, not POSIX.
5823         Problem reported by Bruno Haible.
5825 2002-10-29  Akim Demaille  <akim@epita.fr>
5827         * doc/autoconf.texi (Header Templates): Put also in words what the
5828         pictures says to assist free style readers.
5829         (Customizing autom4te): s/--cache=/--cache /.
5831 2002-10-29  Akim Demaille  <akim@epita.fr>
5833         * lib/autoconf/functions.m4 (_AC_FUNC_VFORK): Include stdlib.h and
5834         sys/wait.h.
5835         sparc_address_test returns void.
5836         Use it with an argument, as prototyped.
5837         From Bruno Haible.
5839 2002-10-29  Akim Demaille  <akim@epita.fr>
5841         * doc/autoconf.texi (Subdirectories): Cygnus dirs have
5842         configure.in, not configure.ac.
5843         Reported by Bruno Haible.
5845 2002-10-29  Akim Demaille  <akim@epita.fr>
5847         * tests/torture.at (Deep Package): New test.
5848         (Configuring subdirectories): Don't use a testSubDir as Autotest
5849         now does it itself.
5851 2002-10-29  Akim Demaille  <akim@epita.fr>
5853         * bin/autoreconf.in (&parse_args, $help): Support --warnings.
5854         * doc/autoconf.texi (Invoking autom4te): Rename as...
5855         (autom4te Invocation): this, for consistency with the other nodes.
5857 2002-10-29  Akim Demaille  <akim@epita.fr>
5859         * lib/autom4te.in (Autoconf): s/automate/autom4te/.
5860         Reported by Ralf Corsepius.
5862 2002-10-29  Akim Demaille  <akim@epita.fr>
5864         * lib/m4sugar/m4sh.m4 (_AS_QUOTE): The warning about quoted
5865         characters is a back as an `obsolete' warning now.
5866         Reported by Ralf Corsepius.
5868 2002-10-28  Akim Demaille  <akim@epita.fr>
5870         * configure.ac: Bump to 2.54c.
5872 2002-10-28  Akim Demaille  <akim@epita.fr>
5874         Version 2.54b.
5876         * tests/foreign.at (Libtool): Adjust to broken libtoolize.
5878 2002-10-28  Akim Demaille  <akim@epita.fr>
5880         * tests/atspecific.m4 (AT_CHECK_AUTOM4TE): Be robust to different
5881         m4 executable names, and different GNU M4 version.
5882         Reported by Ezra Peisach and Paul Jarc.
5884 2002-10-27  Akim Demaille  <akim@epita.fr>
5886         * lib/autoconf/functions.m4 (_AC_FUNC_VFORK): Really use
5887         AC_RUN_IFELSE.
5889 2002-10-27  Akim Demaille  <akim@epita.fr>
5891         * doc/autoconf.texi: More AC_MSG_FAILURE promotion.
5892         * lib/autoconf/fortran.m4 (_AC_F77_NAME_MANGLING):
5893         Die when a simple Fortran program cannot be compiled.
5894         * lib/autoconf/lang.m4 (AC_LANG_CALL, AC_LANG_FUNC_LINK_TRY):
5895         Issue a warning if no function is given.
5897 2002-10-27  Akim Demaille  <akim@epita.fr>
5899         * doc/autoconf.texi (Run Time): Document AC_RUN_IFELSE.
5900         Move the documentation of AC_TRY_RUN to...
5901         (Obsolete Macros): here.
5902         Adjust all the old samples still using AC_TRY_RUN to AC_RUN_IFELSE.
5903         (autoconf Invocation): Remove the duplicates with `invoking
5904         autom4te'.
5905         * lib/autoconf/headers.m4 (AC_HEADER_STDC): Don't use AC_TRY_RUN.
5906         * lib/autoconf/c.m4 (AC_C_BIGENDIAN): Likewise.
5908 2002-10-27  Akim Demaille  <akim@epita.fr>
5910         * doc/autoconf.texi (Generating Sources): Document AC_LANG_CALL
5911         and AC_LANG_FUNC_LINK_TRY.
5912         (Examining Libraries): Rename as...
5913         (Running the Linker): this.
5914         Document AC_LINK_IFELSE.
5915         Move the documentation of AC_TRY_LINK and AC_TRY_LINK_FUNC to...
5916         (Obsolete Macros): here.
5917         * lib/autoconf/fortran.m4 (_AC_F77_NAME_MANGLING): Don't use
5918         AC_TRY_LINK_FUNC nor AC_TRY_LINK.
5919         * lib/autoconf/libs.m4 (AC_CHECK_LIB, AC_PATH_XTRA): Likewise.
5920         * lib/autoconf/headers.m4 (AC_USG): Likewise.
5922 2002-10-27  Akim Demaille  <akim@epita.fr>
5924         * lib/autoconf/headers.m4 (AC_HEADER_STDC): Don't use AC_TRY_CPP.
5926         More `check config.log' messages.
5928         * lib/autoconf/general.m4 (AC_MSG_FAILURE): New.
5929         * doc/autoconf.texi (Printing Messages): Document it.
5930         * lib/autoconf/types.m4 (AC_CHECK_SIZEOF): Use it when
5931         appropriate.
5932         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT)
5933         (_AC_COMPILER_EXEEXT_WORKS, _AC_COMPILER_EXEEXT_O)
5934         (_AC_COMPILER_OBJEXT): Likewise.
5935         * lib/autoconf/general.m4 (AC_RUN_IFELSE): Likewise.
5936         * lib/autoconf/fortran.m4 (_AC_LANG_PROGRAM_C_F77_HOOKS):
5937         Likewise.
5938         * lib/autoconf/c.m4 (AC_PROG_CPP, AC_PROG_CC, AC_PROG_CXXCPP):
5939         Likewise.
5941         Deprecate macros with unusual interfaces.
5943         * lib/autoconf/general.m4 (AC_TRY_CPP, AC_TRY_LINK)
5944         (AC_TRY_COMPILE, AC_TRY_RUN): AU_DEFUN'ed.
5946         Document the new ones, and proper style.
5948         * doc/autoconf.texi (Generating Sources): New.
5949         Document AC_LANG_CONFTEST, AC_LANG_SOURCE, AC_LANG_PROGRAM.
5950         (Examining Declarations): Rename as...
5951         (Running the Preprocessor): this.
5952         Document AC_PREPROC_IFELSE.
5953         (Examining Syntax): Rename as...
5954         (Running the Compiler): this.
5955         (AC_FOO_IFELSE vs AC_TRY_FOO): New section.
5956         (Obsolete Macros): Move the definition of AC_TRY_CPP and
5957         AC_TRY_COMPILE here.
5959 2002-10-27  Akim Demaille  <akim@epita.fr>
5961         Move sections around.
5963         * doc/autoconf.texi (Customizing autom4te): Remove a lost
5964         sentence.
5965         Reported by Burno Haible.
5966         (Language Choice): Now the first section of...
5967         (Writing Tests): this section.
5968         Make the introduction less C-centric.
5969         (Guidelines, Test Functions): Move to...
5970         (Writing Test Programs): this new section.
5971         (Test Programs): Merge into...
5972         (Run Time): this.
5974 2002-10-27  Akim Demaille  <akim@epita.fr>
5976         * lib/freeze.mk ($(AUTOM4TE_CFG)): Add a missing dependency on
5977         autom4te.in that resulted in the need for two `make' runs.
5979 2002-10-27  Akim Demaille  <akim@epita.fr>
5981         * configure.ac: Bump to 2.54b.
5983 2002-10-25  Akim Demaille  <akim@epita.fr>
5985         Version 2.54a.
5987         * Makefile.maint: Update from the Coreutils.
5988         (AMTAR): Remove, obsolete.
5989         (automake_repo): Update to redhat.com.
5990         (cvs_file): New.
5991         Adjust to the fact that ansi2knr is now hosted by Automake.
5992         * Makefile.am (cvs_files): Add install-sh and mkinstalldirs.
5993         * config/config.guess, config/mkinstalldirs, config/texinfo.tex:
5994         Update from masters.
5995         * lib/autoscan/Makefile.am (EXTRA_DIST, nodist_autoscanlib_DATA):
5996         autoscan.pre is not to be installed, and autoscan.list is not to
5997         be shipped.
5998         (CLEANFILES): Add autoscan.list.
5999         (autoscan.list): Disable the cache.
6000         * bin/Makefile.am: Include freeze.mk.
6002 2002-10-25  Akim Demaille  <akim@epita.fr>
6004         * bin/autom4te.in (&load_configuration): Take the file as
6005         argument.
6006         (&parse_args): Handle -C, --cache.
6007         ($help): Adjust.
6008         (MAIN): Load ~/.autom4te.cfg and ./.autom4te.cfg.
6009         * lib/autom4te.in (Autoconf): Pass --cache=autom4te.cache.
6010         * doc/autoconf.texi (Invoking autom4te): Document --cache.
6011         Now a subsection of...
6012         (Using autom4te): This new section.
6013         (Customizing autom4te): New.
6014         (autom4te.cache): Adjust.
6016 2002-10-25  Akim Demaille  <akim@epita.fr>
6018         * doc/autoconf.texi (Generic Headers): More information on how to
6019         use AC_CHECK_HEADERS.
6021 2002-10-25  Akim Demaille  <akim@epita.fr>
6023         * bin/autoconf.as, bin/autoconf.in, bin/autoupdate.in ($help):
6024         Space changes.
6026 2002-10-25  Akim Demaille  <akim@epita.fr>
6028         * bin/autoscan.in (output): Output AC_PREREQ.
6029         (%needed_macros): Add AC_PREREQ so that configure.ac without one
6030         be reported.
6032 2002-10-23  Akim Demaille  <akim@epita.fr>
6034         * doc/autoconf.texi (Particular Headers): In AC_HEADER_STDBOOL,
6035         document _Bool.
6037 2002-10-23  Akim Demaille  <akim@epita.fr>
6039         * bin/autom4te.in (handle_traces): Handle @&t@ in traces.
6040         Reported by Peter Eisentraut.
6042 2002-10-23  Akim Demaille  <akim@epita.fr>
6044         * lib/autoconf/headers.m4 (AC_HEADER_STDBOOL): Also look for the
6045         type _Bool.
6046         Fix a typo.
6047         * doc/autoconf.texi (Particular Headers): Adjust according to Paul
6048         Eggert's recommandations.
6050 2002-10-22  Akim Demaille  <akim@epita.fr>
6052         * lib/autoconf/headers.m4 (AC_HEADER_STDBOOL): New, based on CVS
6053         Bison, by Paul Eggert.
6054         * doc/autoconf.texi (Particular Headers): Document it.
6056 2002-10-22  Aaron M. Ucko  <amu@alum.mit.edu>
6058         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Avoid duplicates in
6059         `$ac_configure_args'.
6061 2002-10-22  Akim Demaille  <akim@epita.fr>
6063         * doc/autoconf.texi: Use AC_CONFIG_HEADERS in examples.
6064         (AC_ST_BLKSIZE, AC_ST_RDEV): Directly point to AC_CHECK_MEMBERS.
6065         From Art Haas.
6067 2002-10-22  Akim Demaille  <akim@epita.fr>
6069         Restore the 2002-10-11  Akim Demaille  <akim@epita.fr> patch:
6071         * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_MONGREL)
6072         (AC_CHECK_HEADER, _AC_CHECK_HEADER_NEW,_AC_CHECK_HEADER_OLD): Restore.
6073         (_AC_CHECK_HEADER_NEW): Rename as...
6074         (AC_CHECK_HEADER): this.
6076 2002-10-22  Akim Demaille  <akim@epita.fr>
6078         * doc/autoconf.texi (Limitations of Usual Tools): Remove incorrect
6079         words about HP-UX cmp: it was actually a user-written cmp.
6081 2002-10-22  Akim Demaille  <akim@epita.fr>
6083         * tests/foreign.at (Libtool): Don't check autoconf's stderr: there
6084         are a few warnings.
6085         * lib/autoconf/autoheader.m4 (AH_VERBATIM, _AH_VERBATIM_OLD):
6086         Quote for Perl '' strings, not "".
6087         * bin/autoheader.in: Invoke autoconf to get '' strings, not ""
6088         strings.
6090 2002-10-22  Akim Demaille  <akim@epita.fr>
6092         * lib/m4sugar/m4sh.m4 (_AS_QUOTE): The warning about quoted
6093         characters is a syntax warning now.
6094         (_AS_QUOTE): Accept $2 as list of characters to quote.
6095         * lib/autoconf/autoheader.m4 (AH_VERBATIM, _AH_VERBATIM_OLD):
6096         Quote for Perl, not sh.
6097         * bin/autoheader.in: When $debug, report the file which is
6098         `do'ne.
6099         * tests/tools.at (autom4te, autoheader): Exercise @bar, not merely
6100         `@', to tickle Perl's lists.
6101         Reported by Carlos Velasco.
6103 2002-10-18  Akim Demaille  <akim@epita.fr>
6105         * bin/autom4te.in (handle_m4): Pass --fatal-warning to m4, so that
6106         missing included files _are_ errors.
6107         Thanks to Alexandre Duret-Lutz.
6108         * tests/tools.at (autom4te cache): Adjust.
6109         * tests/atspecific.m4 (AT_CHECK_AUTOM4TE): New.
6110         (AT_CHECK_M4SUGAR): Use it.
6111         * tests/m4sugar.at (m4_warn, m4_require: circular dependencies):
6112         Adjust.
6113         * tests/tools.at (autom4te): Now it does exit 1.
6115 2002-10-17  Akim Demaille  <akim@epita.fr>
6117         * lib/autoconf/general.m4 (AC_CACHE_SAVE): Don't use cmp.
6118         Fixes the `AC_ARG_VAR' test failures.
6119         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES): Don't use cmp.
6120         * lib/freeze.mk (check-forbidden-patterns): New.
6121         * lib/autoconf/Makefile.am, lib/autotest/Makefile.am
6122         * lib/m4sugar/Makefile.am (check-local): Use it to catch `cmp'.
6123         * doc/autoconf.texi (Limitations of Usual Tools): HP-UX' cmp and
6124         /dev/null.
6125         Reported months ago by H. Merijn Brand.
6127 2002-10-17  Akim Demaille  <akim@epita.fr>
6129         * tests/tools.at (autoheader): Put randoms `@' to stress Perl.
6131 2002-10-16  Paul Eggert  <eggert@twinsun.com>
6133         * Makefile.maint (wget_files): Remove ansi2knr.c.
6134         (ansi2knr.c-url_prefix): Remove.
6136 2002-10-16  Akim Demaille  <akim@epita.fr>
6138         Because of caching, some files that no longer exist and are no
6139         longer required can still cause errors.
6140         Reported by Alexandre Duret-Lutz.
6142         * bin/autom4te.in (&parse_args): Do not prepend `--reload-state'
6143         to frozen files in @ARGV, as @ARGV must remain being a list of
6144         files.  Rather, at M4 call sites, use this...
6145         (&files_to_options): New function.
6146         (&freeze): Use &error.
6147         (&up_to_date): If a file that was included according to the cache
6148         is no longer there, then the output is out dated.
6149         (&main): Don't even check whether a file is up to date is anyway
6150         --force is given.
6151         * tests/tools.at (autom4te cache): New.
6153 2002-10-16  Akim Demaille  <akim@epita.fr>
6155         * bin/autoconf.as: Kill dead options.
6156         * bin/autoupdate.in (&parse_args): Kill old options.
6157         * bin/autoreconf.in (&parse_args): Remove dead options.
6158         Factor some code.
6159         (&autoreconf): Report the directories we enter *and leave*, so
6160         that error messages can be easily located, and use GNU Make
6161         format, so that Emacs' compile mode understands us.
6162         * lib/Autom4te/General.pm (&update_file): Use `verbose' to report
6163         if some file was changed instead of `print'.
6164         * bin/autoheader.in: Suggest AC_DEFINE with 3 args when needed.
6165         (&parse_args): Remove the dead options.
6166         * tests/atspecific.m4 (AT_CHECK_AUTOHEADER): Adjust to the new
6167         autoheader's quiet mode.
6168         (AT_CHECK_AUTOUPDATE): Likewise.
6169         * tests/tools.at (autoupdate): Adjust.
6170         * tests/semantics.at (AC_C_BIGENDIAN): Likewise.
6172 2002-10-11  Akim Demaille  <akim@epita.fr>
6174         No longer use CPP to check for the existing of headers: use CC to
6175         check for compilability.
6177         * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_MONGREL)
6178         (AC_CHECK_HEADER, _AC_CHECK_HEADER_OLD): Remove.
6179         (_AC_CHECK_HEADER_NEW): Rename as...
6180         (AC_CHECK_HEADER): this.
6182         * lib/autotest/general.m4 (AT_INIT): Include the failed test
6183         numbers in the Subject suggestion.
6185 2002-10-11  Akim Demaille  <akim@epita.fr>
6187         * lib/autoconf/specific.m4 (AC_DECL_SYS_SIGLIST): Obsolete.
6188         Suggest using AC_CHECK_DECLS instead.
6190 2002-10-11  Akim Demaille  <akim@epita.fr>
6192         * tests/torture.at (AC_ARG_VAR): Have configure report the value
6193         of `precious'.
6195 2002-10-11  Akim Demaille  <akim@epita.fr>
6197         * lib/m4sugar/m4sh.m4 (_AS_PATH_SEPARATOR_PREPARE): Use $$ in the
6198         file name to enable parallel executions.
6199         From Sam Varshavchik.
6201 2002-10-08  Akim Demaille  <akim@epita.fr>
6203         * bin/autoreconf.in (&autoreconf): Run autopoint before the first
6204         aclocal invocation, as Gettext macros might not be visible to
6205         aclocal.
6206         Instead of blindly running autopoint, scan configure.ac (not the
6207         traces) for AM_GNU_GETTEXT_VERSION uses, as autopoint does.
6208         Reported by Paul D. Smith.
6210 2002-10-08  Paul Eggert  <eggert@twinsun.com>
6212         Work around problems found when POSIXLY_CORRECT=1 is set.
6213         None of this seems to have anything to do with POSIX, really,
6214         but it's how Perl getopt works.
6215         * bin/autom4te.in (parse_args): Configure GetOpt with
6216         "permute", too.
6217         * doc/autoconf.texi (Invoking autom4te):
6218         --warning -> --warnings.
6219         * lib/autom4te.in: --warning -> --warnings.
6221 2002-09-28  Akim Demaille  <akim@epita.fr>
6223         * doc/autoconf.texi (autom4te.cache): New section.
6225 2002-09-28  Akim Demaille  <akim@epita.fr>
6227         * lib/autom4te.in (Autoscan-preselections, Autoreconf-preselections)
6228         (Automake-preselections): Update.
6229         * bin/autoreconf.in, bin/autoheader.in: Comment changes.
6231 2002-09-28  Akim Demaille  <akim@epita.fr>
6233         * lib/autoscan/autoscan.pre: Move all the remaining rules to...
6234         * lib/autoconf/c.m4, lib/autoconf/functions.m4,
6235         * lib/autoconf/headers.m4, lib/autoconf/libs.m4,
6236         * lib/autoconf/specific.m4, lib/autoconf/types.m4: here.
6238 2002-09-28  Akim Demaille  <akim@epita.fr>
6240         * tests/torture.at (Configuring subdirectories): Be robust to
6241         users who use config.site to require for a cache: in this case,
6242         the two last configure runs, using two different sets of
6243         arguments, trigger a legitimate error.
6245 2002-09-28  Akim Demaille  <akim@epita.fr>
6247         * tests/m4sh.at (Functions Support, Functions and return Support):
6248         New.
6250 2002-09-28  Akim Demaille  <akim@epita.fr>
6252         * bin/Makefile.am (ETAGS_SH, ETAGS_PERL): Update: ifnames and
6253         autoheader are Perl programs.
6254         (autoconf, autoheader, autoreconf, autoupdate, ifnames, autoscan)
6255         (autom4te): Specify that the sources are in the $srcdir.
6256         * doc/autoconf.texi (Installation Directory Variables): Adjust.
6258 2002-09-28  Akim Demaille  <akim@epita.fr>
6260         * lib/autoscan/autoscan.pre (st_blksize, st_blocks, st_rdev)
6261         (tm_zone): Move their rules to...
6262         * lib/autoconf/types.m4: here, using AN_ macros.
6263         * lib/autoscan/autoscan.pre (AWK, BISON, INSTALL, LEX, LN, MAKE)
6264         (RANLIB, YACC, awk, bison, byacc, flex, gawk, install, lex, ln)
6265         (make, mawk, nawk, ranlib, yacc): Similarly, move to...
6266         * lib/autoconf/programs.m4: here.
6267         * lib/freeze.mk (ETAGS_FOR_M4, ETAGS_FOR_M4SUGAR)
6268         (ETAGS_FOR_AUTOCONF): New.
6269         Use it.
6271 2002-09-28  Akim Demaille  <akim@epita.fr>
6273         * lib/autoconf/autoscan.m4: New file.
6274         * lib/autoconf/autoconf.m4: Include it.
6275         * lib/autoconf/functions.m4: Use AN_FUNCTION for all the functions
6276         that were listed in the original autoscan.list.
6277         * lib/autoconf/headers.m4: Similarly with headers.
6278         * lib/freeze.mk (autoconf_m4f_dependencies): Add autoscan.m4.
6279         (.m4.m4f): Don't pass --prepend-include, since that's done by
6280         tests/autom4te itself.
6281         * lib/autoscan/Makefile.am: Include freeze.mk.
6282         (autoscan.list): New target --this file is no longer a source.
6283         (autoscan.pre): New file.
6285 2002-09-28  Akim Demaille  <akim@epita.fr>
6287         * bin/autoscan.in (@kinds): Make them singular.
6288         Adjust all uses.
6289         (&init_tables): When --debug, report the list of rules to ease
6290         tracking changes in autoscan.list.
6291         * lib/autoscan/autoscan.list (function): Strip comments, sort.
6293 2002-09-28  Akim Demaille  <akim@epita.fr>
6295         * lib/autoscan/functions, lib/autoscan/headers,
6296         * lib/autoscan/identifiers, lib/autoscan/makevars,
6297         * lib/autoscan/programs: Merge into...
6298         * lib/autoscan/autoscan.list: this.
6299         * bin/autoscan.in (&init_tables): Adjust.
6301 2002-09-28  Akim Demaille  <akim@epita.fr>
6303         * lib/autoscan/functions, lib/autoscan/headers,
6304         * lib/autoscan/identifiers, lib/autoscan/makevars,
6305         * lib/autoscan/programs: Make the `kind' explicit, i.e., each
6306         `functions' line is now prefixed with `function:'.
6307         * bin/autoscan.in (&init_tables): Adjust.
6309 2002-09-28  Akim Demaille  <akim@epita.fr>
6311         From now on, autoscan files must always map a macro name to a
6312         word: there is no `default' macro for autoscan.
6314         * bin/autoscan.in (&init_tables): Reject entries with no macro at
6315         all.
6316         * lib/autoscan/functions, lib/autoscan/headers: Make the macro
6317         explicit.
6319 2002-09-28  Akim Demaille  <akim@epita.fr>
6321         * bin/autoscan.in (%c_keywords): Remove.
6322         (&used): Keep only track of the words we might be interested in.
6323         (&output_kind): It is no longer needed to look for non active
6324         checks.
6326 2002-09-27  Akim Demaille  <akim@epita.fr>
6328         * lib/autoconf/functions.m4 (AC_FUNC_MBRTOWC): New, stolen from
6329         jm_FUNC_MBRTOWC, by Paul Eggert, from the Coreutils 4.5.1.
6330         * lib/autoscan/functions: Adjust.
6331         * doc/autoconf.texi (Particular Functions): Adjust.
6333 2002-09-27  Akim Demaille  <akim@epita.fr>
6335         * doc/autoconf.texi (Limitations of Usual Tools): Some about mv
6336         from /tmp.
6337         Thanks to Bill Moseley and Paul Eggert.
6338         * lib/m4sugar/m4sh.m4 (AS_TMPDIR): $2 is the directory into which
6339         the tmpdir must be created.
6340         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Have the tmp
6341         dir be in the build tree, instead of $TMPDIR.
6343 2002-09-27  Akim Demaille  <akim@epita.fr>
6345         * bin/autoscan.in: Improve the comments.
6346         (&parse_args): Drop obsolete undocumented options.
6347         (&output_kind): Output warnings.
6348         * lib/autoscan/functions: (dcgettext): Now trigger AM_GNU_GETTEXT.
6349         (getwd): Trigger a warning.
6351 2002-09-26  Akim Demaille  <akim@epita.fr>
6353         * bin/autoreconf.in: Clarify that -s is meaningless without -i.
6354         Reported by Ralf Corsepius.
6355         * doc/autoconf.texi (autoreconf Invocation): Likewise.
6357 2002-09-26  Akim Demaille  <akim@epita.fr>
6359         Single suffix rules and seperated dependencies are not portable.
6361         * doc/autoconf.texi (Installation Directory Variables): Update.
6362         (Limitations of Make): Some about `Single Suffix Rules and
6363         Separated Dependencies'.
6364         * bin/Makefile.am (autoconf, autoheader, autoreconf, autoupdate)
6365         (ifnames, autoscan, autom4te): Un-factor into several rules.
6367 2002-09-25  Paul Eggert  <eggert@twinsun.com>
6369         * BUGS (Interoperability bugs): New section.  Mention libtool
6370         1.4.2, configure.ac, and AC_CONFIG_AUX_DIR interoperability bug.
6372 2002-09-24  Paul Eggert  <eggert@twinsun.com>
6374         Fix a portability bug reported by Alexandre Duret-Lutz: Solaris 8
6375         make handles suffix-rules differently from GNU make.
6377         * bin/Makefile.am (SUFFIXES, .in): Remove.
6378         (autoconf autoheader autoreconf autoupdate ifnames autoscan autom4te):
6379         Move the body of the old .in rule here.
6381 2002-09-16  Akim Demaille  <akim@epita.fr>
6383         i960 compilers create `b.out' files by default.
6384         Reported by Ralf Corsepius.
6386         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT): Remove b.out files.
6387         (_AC_COMPILER_EXEEXT_DEFAULT): Adjust to b.out.
6389 2002-09-13  Paul Eggert  <eggert@twinsun.com>
6391         * doc/autoconf.texi (Particular Headers): Remove obsolete
6392         reference to `struct timezone' in the description of
6393         AC_HEADER_TIME.
6395 2002-09-13  Akim Demaille  <akim@epita.fr>
6397         Version 2.54.
6399         * config/config.sub, config/config.guess: Update.
6400         * Makefile.maint: Update from bits of the Coreutils 4.5.1.
6401         * Makefile.am: Adjust.
6403 2002-09-13  Akim Demaille  <akim@epita.fr>
6405         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Suggest
6406         reading config.log when the compiler is rejected.
6407         Suggested by Guido Draheim.
6409 2002-09-13  Akim Demaille  <akim@epita.fr>
6411         * bin/autoreconf.in: Don't use Cwd::chdir, since in its internals
6412         (chdir_init) might hang when stat'ing mounted directories.
6413         Reported by Vance Shipley.
6415 2002-09-12  Akim Demaille  <akim@epita.fr>
6417         * bin/autoscan.in (&parse_args): Pass a reference to the lists, not
6418         the lists.
6420 2002-09-12  Akim Demaille  <akim@epita.fr>
6422         * doc/autoconf.texi (Defining Symbols): Present two different
6423         prototypes for AC_DEFINE and AC_DEFINE_UNQUOTED to emphasize the
6424         difference between 1 argument calls, and 2-3 argument calls.
6426 2002-09-12  Peter Eisentraut  <peter_e@gmx.net>
6428         * doc/autoconf.texi: Review grammar and punctuation.
6430 2002-09-11  Paul Eggert  <eggert@twinsun.com>
6432         * doc/autoconf.texi: Fix minor formatting, spelling, and
6433         grammatical typos.
6434         (Defining Symbols): Explain that AC_DEFINE(var) defaults to 1, but
6435         AC_DEFINE(var,,description) does not; and the AC_DEFINE(var) case
6436         is obsolescent.
6438 2002-09-11  Akim Demaille  <akim@epita.fr>
6440         * doc/autoconf.texi (Questions): Rename as...
6441         (FAQ): this.
6442         (Defining Directories): New.
6444 2002-09-09  Akim Demaille  <akim@epita.fr>
6446         * doc/autoconf.texi (Making testsuite Scripts): Update.
6447         Suggested by Nishio Futoshi.
6449 2002-09-09  Koji Arai  <JCA02266@nifty.ne.jp>
6451         * doc/autoconf.texi (Making testsuite Scripts): Use `@@' where a
6452         plain `@' is wanted.
6454 2002-09-09  Akim Demaille  <akim@epita.fr>
6456         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Keep the
6457         `duplicates', since the algorithm was too naive and could keep
6458         `--prefix=1 --prefix=2 --prefix=1' as `--prefix=1 --prefix=2', and
6459         keep `--prefix foo --prefix bar' as `--prefix foo bar'.
6460         Reported by Ralf Corsepius.
6461         * tests/torture.at (Configuring subdirectories): Exercise these
6462         cases.
6464 2002-09-09  Akim Demaille  <akim@epita.fr>
6466         * lib/autoconf/functions.m4 (AC_FUNC_GETLOADAVG): Use $srcdir when
6467         looking for a replacement file.
6468         * lib/autoconf/general.m4 (AC_CHECK_DECLS): Check that the
6469         directory is relative.
6470         * doc/autoconf.texi (Generic Functions): Clarify the replacement
6471         directory definition.
6472         Reported by Andreas Schwab and Jim Meyering.
6474 2002-09-06  Akim Demaille  <akim@epita.fr>
6476         * doc/autoconf.texi (Setting Output Variables): Clarify what
6477         precious variables are.
6478         Suggested by Pontus Skoeld.
6480 2002-09-05  Akim Demaille  <akim@epita.fr>
6482         * bin/Makefile.am (autoconf, autoheader, autoreconf, autoupdate)
6483         (ifnames, autoscan, autom4te): Since we don't only depend on
6484         configure.ac variables (such as VERSION etc.), but also on prefix
6485         and so forth, depend on Makefile, not configure.ac.
6486         Reported by Alexandre Duret-Lutz.
6487         * doc/autoconf.texi (Installation Directory Variables): Adjust.
6489 2002-09-05  Kevin Ryde  <user42@zip.com.au>
6491         * doc/autoconf.texi (Limitations of Make): HP-UX trailing backslashes
6492         doesn't seem to be confined to ia64, just say "some versions".
6494 2002-09-04  Akim Demaille  <akim@epita.fr>
6496         * Makefile.am, doc/Makefile.am: Remove pdf targets, handled by
6497         Automake 1.6c.
6498         * Makefile.am (maintainer-clean-local): Remove.
6499         (MAINTAINERCLEANFILES): Remove COPYING.
6501 2002-09-03  Paul Eggert  <eggert@twinsun.com>
6503         * doc/autoconf.texi (Configuration Commands): Remove obsolete
6504         example for AC_CONFIG_COMMANDS_PRE.  Problem reported by Marcus
6505         Brinkmann.
6507 2002-09-03  Akim Demaille  <akim@epita.fr>
6509         * configure.ac: Bump to 2.53d.
6510         * Makefile.am (AUTOMAKE_OPTIONS): Require 1.6c, i.e., CVS Automake
6511         as of today, on Automake's team suggestion.
6513 2002-09-03  Akim Demaille  <akim@epita.fr>
6515         Version 2.53c.
6517 2002-09-02  Akim Demaille  <akim@epita.fr>
6519         * bin/autom4te.in (parse_args): Don't honor AUTOM4TE_PATH and
6520         SITE_MACRO_DIR.
6521         * configure.ac: Disable SITE_MACRO_DIR.
6523 2002-09-02  Jim Meyering  <meyering@lucent.com>
6525         * doc/autoconf.texi (AC_SYS_POSIX_TERMIOS): Reflect renaming: s/am/ac/,
6526         i.e., change am_cv_sys_posix_termios to ac_cv_sys_posix_termios.
6527         Also, tweak grammar: s/make sure to/be sure to/.
6529 2002-09-02  Paul Eggert  <eggert@twinsun.com>
6531         * doc/autoconf.texi (Limitations of Builtins): Explain why logical
6532         directory names are generally preferable to physical names.
6534 2002-09-02  Akim Demaille  <akim@epita.fr>
6536         * lib/Autom4te/General.pm (&update_file): s/die/error/.
6537         Reported by Raja R. Harinath.
6538         * bin/autoheader.in, bin/autoreconf.in, bin/autoscan.in,
6539         * bin/autoupdate.in: Use error instead of die.
6541 2002-09-01  Paul Eggert  <eggert@twinsun.com>
6543         * tests/mktests.sh (ac_exclude_egrep, au_exclude_egrep): Use
6544         ordinary shell concatenation rather than echo+tr+sed command that
6545         runs afoul of a long-line-related sed bug in Solaris 8.
6547         * bin/autoheader.in (parse_args): --warning -> --warnings.
6549         * bin/autoconf.as: Work even if "ls" outputs "FOO not found" to
6550         stdout, as traditional "ls" does.
6551         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT,
6552         _AC_COMPILER_EXEEXT_O): Likewise.
6553         * doc/autoconf.texi (Limitations of Usual Tools): Add "ls".
6555         * bin/autoconf.as: Add --prepend-include option.  This patch was
6556         applied to bin/autoconf.in in the 2002-07-17 patch by Mark D. Roth,
6557         but bin/autoconf.in is generated automatically from bin/autoconf.as.
6559         * bin/autoconf.in, configure: Regenerate.
6561         * doc/autoconf.texi (Special Shell Variables): Mention
6562         ENV, MAIL, MAILPATH, PS1, PS2, PS4.  Index PWD.
6564         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Unset ENV, MAIL,
6565         MAILPATH and set PS1, PS2, PS4 to default values, to work
6566         around bug in pre-3.0 UWIN ksh reported by Bruce Lilly.
6567         For LC_ALL etc, first try to set to "C" as POSIX requires and as
6568         the Autoconf documentation specifies; fall back to "unset" only if
6569         this fails.  Use a shell for-loop for this rather than an m4 loop,
6570         to shorten the output script.
6572 2002-08-30  Paul Eggert  <eggert@twinsun.com>
6574         * doc/autoconf.texi (Special Shell Variables): Mention POSIX
6575         1003.1-2001's requirements for CDPATH.  Give a simpler workaround
6576         for the CDPATH problem.  Document PWD.
6577         (Limitations of Builtins): Document the problem that "cd $foo" and
6578         "ls $foo" may refer to different directories in shells conforming
6579         to POSIX 1003.1-2001.  Use PS1 rather than CDPATH for "unset"
6580         example, since the old example is now out of date.
6582         * lib/autoconf/general.m4 (_AC_INIT_SRCDIR): Reject FOO if "cd
6583         FOO" and "ls FOO" talk about different directories; this catches
6584         problems when POSIX 1003.1-2001 "cd" fails due to symlink
6585         spaghetti.
6587         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Use AS_UNSET instead
6588         of rolling our own unset.
6589         (_AS_PREPARE): $as_unset CDPATH instead of AS_UNSETting it, since
6590         in practice we needn't worry about CDPATH if unset doesn't work.
6592         * Makefile.in, aclocal.m4, bin/Makefile.in,
6593         config/Makefile.in, doc/Makefile.in, lib/Makefile.in,
6594         lib/Autom4te/Makefile.in, lib/autoconf/Makefile.in,
6595         lib/autoscan/Makefile.in, lib/autotest/Makefile.in,
6596         lib/emacs/Makefile.in, lib/m4sugar/Makefile.in, man/Makefile.in,
6597         tests/Makefile.in: Regenerate with Automake 1.6.3.
6599         * config/config.guess, config/config.sub, config/mkinstalldirs:
6600         Update.
6602         * configure: Regenerate with self.
6604 2002-08-30  Kevin Ryde  <user42@zip.com.au>
6606         * doc/autoconf.texi (Limitations of Usual Tools): Notes on "cc"
6607         default output.
6609 2002-08-29  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
6611         * bin/autom4te.in (Request::load): Correctly test for "do" read
6612         failure.
6614 2002-08-29  Akim Demaille  <akim@epita.fr>
6616         * lib/Autom4te/General.pm (&xqx): New.
6617         (&xsystem): Use WIFEXITED and WEXITSTATUS instead of decoding $? by
6618         hand, which is not portable.
6619         (&error): New.
6620         * bin/autom4te.in: Use them.
6621         Use &error instead of die.
6622         * tests/m4sugar.at (m4_warn, m4_require: circular dependencies):
6623         Adjust.
6625 2002-08-17  Paul Eggert  <eggert@twinsun.com>
6627         * lib/autoconf/fortran.m4 (AC_PROG_F77): Remove fc from the
6628         default list of compilers to try, since it was long ago superseded
6629         by the ksh fc builtin.  Suggested by Steven G. Johnson.
6631 2002-07-31  Alexandre Duret-Lutz  <duret_g@epita.fr>
6633         * doc/autoconf.texi (Invoking autom4te): End the option table,
6634         fixing a bug introduced by the previous patch.
6635         (Limitations of Make): Add a 'target lookup' subentry in the
6636         'VPATH' entry.  Rewrite all `make' occurences as `@command{make}'.
6638 2002-07-29  Mark D. Roth  <roth@feep.net>
6640         * bin/autom4te.in: Remove --include-envvar and --site-macro-subdir
6641         options and use $AUTOM4TE_PATH.
6642         * doc/autoconf.texi: Remove documentation of autom4te
6643         --include-envvar and --site-macro-subdir options and document
6644         use of $AUTOM4TE_PATH.
6645         * lib/autom4te.in: Remove --include-envvar and --site-macro-subdir
6646         arguments from each language section.
6648 2002-07-29  Paul Eggert  <eggert@twinsun.com>
6650         * doc/install.texi: Include copyright symbol in copyright notice.
6652         * Makefile.am (MAKEINFO): Remove; it's a user-specified macro.
6653         Replace with:
6654         (AM_MAKEINFOFLAGS): New macro.
6655         * doc/Makefile.am (MAKEINFO, AM_MAKEINFOFLAGS): Likewise.
6656         * Makefile.am (INSTALL): Use the new macros.
6657         Use -o rather than --output, since "missing" does not grok --output.
6659 2002-07-25  Alexandre Duret-Lutz  <duret_g@epita.fr>
6661         * doc/autoconf.texi (Limitations of Make): Escaped newlines in
6662         comments do not always work. Never trust the exit status of
6663         `make -k'.
6665 2002-07-24  Kevin Ryde  <user42@zip.com.au>
6667         * doc/autoconf.texi (Limitations of Make, Making testsuite Scripts):
6668         Untabify, since tabs are not enjoyed by texi2dvi and makeinfo.
6670 2002-07-23  Paul Eggert  <eggert@twinsun.com>
6672         * lib/m4sugar/m4sh.m4 (_AS_PATH_SEPARATOR_PREPARE):
6673         Use PATH="/nonexistent;.", not PATH=".;.", as FreeBSD ksh2002
6674         apparently treats PATH="nonexistent" as if it contained ".".
6675         Bug reported by Stefan `Sec' Zehl.
6677 2002-07-22  Alexandre Duret-Lutz  <duret_g@epita.fr>
6679         * doc/autoconf.texi (Limitations of Make): Mention the special
6680         handling of the obj/ directory by BSD make.
6682 2002-07-20  Kevin Ryde  <user42@zip.com.au>
6684         * doc/autoconf.texi (Limitations of Make): Add HP-UX IA-64 trailing
6685         backslashes.
6687 2002-07-19  Akim Demaille  <akim@epita.fr>
6689         * doc/autoconf.texi (Function Portability): `exit'.
6690         (Programming in M4sh): Ethymology of M4sh.
6692 2002-07-19  Akim Demaille  <akim@epita.fr>
6694         * doc/autoconf.texi (AC_LIBOBJ vs LIBOBJS): More about $U.
6696 2002-07-18  Akim Demaille  <akim@epita.fr>
6698         Version 2.53b.
6700 2002-07-18  Akim Demaille  <akim@epita.fr>
6702         * config/config.guess, config/config.sub: Update.
6704 2002-07-18  Akim Demaille  <akim@epita.fr>
6706         Handle LIBOBJS and LTLIBOBJS once for all, including Libtool's and
6707         Automake's parts.
6709         * lib/autoconf/general.m4 (_AC_LIBOBJS_NORMALIZE): New.
6710         * lib/autoconf/status.m4 (AC_OUTPUT_COMMANDS_PRE): Call it.
6711         * tests/semantics.at (AC_REPLACE_FUNCS): Adjust.
6713 2002-07-18  Akim Demaille  <akim@epita.fr>,
6714             Alexandre Duret-Lutz  <duret_g@epita.fr>
6716         * lib/autoconf/status.m4 (_AC_OUTPUT_HEADERS): Install
6717         _AC_AM_CONFIG_HEADER_HOOK for Automake 1.7.
6719 2002-07-17  Russ Allbery  <rra@stanford.edu>
6721         * doc/autoconf.texi (Initializing configure): Clarify the
6722         description of the tarname default.
6724 2002-07-17  Andreas Buening  <andreas.buening@nexgo.de>
6726         * lib/autoconf/functions.m4 (AC_FUNC_FORK): Don't set
6727         ac_cv_func_fork_works before running _AC_FUNC_FORK, do it if the
6728         latter was not run.
6730 2002-07-17  Akim Demaille  <akim@epita.fr>
6732         * lib/Autom4te/General.pm (find_file): Browse the directories in
6733         the order they are given.
6735 2002-07-17  Akim Demaille  <akim@epita.fr>
6737         * tests/wrapsh.as, tests/wrappl.as: Merge into...
6738         * tests/wrapper.as: this.
6739         * tests/Makefile.am, configure.ac: Adjust.
6741 2002-07-17  Mark D. Roth  <roth@feep.net>
6743         * configure.ac: Add --enable-site-macro-dir option.
6744         * bin/Makefile.am: Expand @SITE_MACRO_DIR@.
6745         * bin/autom4te.in: Add --prepend-include, --include-envvar, and
6746         --site-macro-subdir options.
6747         * bin/autoconf.in: Add --prepend-include option.
6748         * bin/autoheader.in: Add --prepend-include option.
6749         * bin/autoreconf.in: Add --prepend-include option.
6750         * bin/autoscan.in: Add --prepend-include option.
6751         * bin/autoupdate.in: Add --prepend-include option.
6752         * doc/autoconf.texi: Document use of $AC_MACRO_PATH and site
6753         macro directory, remove note that include path directories are
6754         used in reverse order, and document --prepend-include option.
6755         * lib/autom4te.in: Use --prepend-include instead of --include.
6756         * tests/wrapsh.in: Use --prepend-include instead of --include.
6758 2002-07-17  Akim Demaille  <akim@epita.fr>
6760         * lib/autoconf/general.m4 (_AC_INIT_PACKAGE): `_' is allowed in
6761         tarnames.
6762         * doc/autoconf.texi (Initializing configure): Adjust.
6764 2002-07-17  Akim Demaille  <akim@epita.fr>
6766         * lib/autoconf/functions.m4 (AC_FUNC_REALLOC, _AC_FUNC_REALLOC)
6767         (_AC_FUNC_MALLOC): New.
6768         (AC_FUNC_MALLOC): Use the latter.
6769         Define HAVE_MALLOC to 0 if broken.
6770         * doc/autoconf.texi (Particular Functions): Adjust.
6772 2002-07-16  Akim Demaille  <akim@epita.fr>
6774         * lib/autoconf/c.m4 (AC_C_BACKSLASH_A): New.
6775         * doc/autoconf.texi (C Compiler): Adjust.
6777 2002-07-09  Akim Demaille  <akim@epita.fr>
6779         * doc/autoconf.texi: Properly set the ``header'' part.
6781 2002-07-09  Akim Demaille  <akim@epita.fr>
6783         * doc/autoconf.texi (Systemology): Some about Darwin.
6785 2002-07-09  Alexandre Duret-Lutz  <duret_g@epita.fr>
6787         * lib/autoconf/specific.m4 (AC_CYGWIN, AC_EMXOS2, AC_MINGW32):
6788         Don't use AC_REQUIRE in AU_DEFUN.
6790 2002-07-09  Art Haas  <ahaas@neosoft.com>
6792         * doc/autoconf.texi: Use @enddots{} or @dots{} where appropriate.
6794 2002-07-02  Alexandre Duret-Lutz  <duret_g@epita.fr>
6796         * bin/autoheader.in, bin/autom4te.in, bin/autoreconf.in,
6797         bin/autoupdate.in, bin/ifnames.in, lib/Autom4te/General.pm,
6798         lib/Autom4te/Struct.pm, lib/Autom4te/XFile.pm: Add local variables
6799         so that Emacs setups GNU style for perl-mode and cperl-mode.
6801 2002-06-27  Paul Eggert  <eggert@twinsun.com>
6803         * config/install-sh: Quote $src.  Prefer || to test's -o option,
6804         as per "Limitations of Builtins".
6805         * tests/atspecific.m4 (AT_CHECK_ENV): Likewise, for && vs test -a.
6806         * tests/semantics.at (AC_C_BIGENDIAN): Likewise.
6808         * tests/mktests.sh: Use grep instead of fgrep, as per
6809         "Limitations of Builtins".
6811 2002-06-15  Paul Eggert  <eggert@twinsun.com>
6813         * tests/wrapsh.as (AUTOCONF, AUTOHEADER, AUTOM4TE, AUTOM4TE_CFG,
6814         autom4te_perllibdir): Set to top build dir or src dir as appropriate,
6815         so that we consistently test the just-built programs.
6816         * tests/wrappl.as: Likewise.
6818 2002-06-12  Paul Eggert  <eggert@twinsun.com>
6820         * bin/autoconf.as (AUTOM4TE): Default to a fully qualified path
6821         name, so that symlinks to 'autoconf' work properly.  Bug reported
6822         by Bruno Haible.
6823         * bin/autoheader.in (AUTOM4TE): Likewise.
6824         * bin/autoreconf.in (autoconf, autoheader): Likewise.
6825         * bin/autoscan.in (autom4te): Likewise.
6826         * bin/autoupdate.in (autom4te): Likewise.
6828         * lib/autoconf/functions.m4 (_AC_LIBOBJ_FNMATCH): Also check for
6829         btowc, to fix a portability bug with diffutils-2.8.2/lib/fnmatch.c
6830         on Solaris 2.5.1.
6832 2002-06-11  Andreas Schwab  <schwab@suse.de>
6834         * doc/autoconf.texi: Add more dir entries.
6836 2002-06-10  Alexandre Duret-Lutz  <duret_g@epita.fr>
6838         * bin/autom4te.in ($cache): Don't define using `$me', the name
6839         of the cache should not depend on the name under which autom4te
6840         was installed.
6842 2002-06-07  Akim Demaille  <akim@epita.fr>
6844         * tests/tools.at (autoconf: forbidden tokens, basic)
6845         (autoconf: forbidden tokens, exceptions): Adjust to the change of
6846         words in autom4te.in.
6848 2002-06-07  Peter Eisentraut  <peter_e@gmx.net>
6850         * lib/autoconf/c.m4 (AC_LANG_PROGRAM(C)): Use
6851         _AC_LANG_PROGRAM_C_F77_HOOKS.
6853 2002-06-07  Akim Demaille  <akim@epita.fr>
6855         * lib/autoconf/functions.m4 (AC_REPLACE_FUNC_FNMATCH): Typo,
6856         rename as...
6857         (AC_REPLACE_FNMATCH): this.
6858         * tests/mktests.sh (exclude_list): Exclude AC_REPLACE_FNMATCH,
6859         AC_FUNC_FNMATCH_GNU.
6861 2002-06-07  Akim Demaille  <akim@epita.fr>
6863         * doc/autoconf.texi (Systemology): Point to Tru64 docs, and the
6864         Rosetta Stone for Unix.
6866 2002-06-07  Akim Demaille  <akim@epita.fr>
6868         * bin/autom4te.in (warn_forbidden): When rejecting a token,
6869         suggest m4_pattern_allow.
6870         Suggested by Adam J. Richter.
6872 2002-06-07  Akim Demaille  <akim@epita.fr>
6874         * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS): Initialize
6875         ac_config_libobj_dir.
6876         (AC_CONFIG_LIBOBJ_DIR): New.
6877         * lib/autoconf/functions.m4 (_AC_FUNC_FNMATCH): Split into...
6878         (_AC_FUNC_FNMATCH_IF, _AC_LIBOBJ_FNMATCH): these.
6879         Use ac_config_libobj_dir to find the replacement files.
6880         (AC_FUNC_FNMATCH, AC_FUNC_FNMATCH_GNU): Split into...
6881         (AC_FUNC_FNMATCH, AC_FUNC_FNMATCH_GNU, AC_REPLACE_FNMATCH)
6882         (AC_REPLACE_FNMATCH_GNU): these.
6883         (AC_FUNC_GETLOADAVG): Use ac_config_libobj_dir.
6884         * doc/autoconf.texi (Particular Functions, Generic Functions): Adjust.
6885         * tests/mktests.sh (ac_exclude_list): Don't check
6886         AC_FUNC_GETLOADAVG as it requires getloadavg.c which is not shipped.
6888 2002-06-06  Paul Eggert  <eggert@twinsun.com>
6890         * lib/autoconf/status.m4 (_AC_OUTPUT_LINKS): Fall back on cp
6891         if ln doesn't work.
6892         * NEWS: Likewise.
6893         * doc/autoconf.texi (Configuration Links): Likewise.
6894         (Limitations of Usual Tools): Prefer $(LN_S) to ln -s || ln.
6896 2002-06-05  Paul Eggert  <eggert@twinsun.com>
6898         * config/config.guess, config/config.sub, config/texinfo.tex:
6899         Update from masters.
6901 2002-05-29  Paul Eggert  <eggert@twinsun.com>
6903         * bin/autom4te.in ($m4): Do not assume that egrep and fgrep exist.
6904         * lib/autoconf/c.m4 (AC_C_BIGENDIAN): Likewise.
6905         * lib/autoconf/general.m4 (_AC_RUN_LOG_STDERR, AC_EGREP_CPP):
6906         Likewise.
6907         * lib/autoconf/Makefile.am (check-local): Likewise.
6908         * lib/autoconf/status.m4 (AC_CONFIG_HEADER): Likewise.
6909         * lib/autoconf/types.m4 (commentary only): Likewise.
6910         * lib/autotest/general.m4 (AT_INIT, AT_CHECK): Likewise.
6911         * lib/autotest/Makefile.am (check-local): Likewise.
6912         * lib/m4sugar/Makefile.am (check-local): Likewise.
6913         * tests/atspecific.m4 (AT_CONFIGURE_AC, AT_CHECK_DEFINES): Likewise.
6914         * tests/mktests.sh (egrep): New var; use it instead of plain egrep.
6916         * lib/autoconf/programs.m4 (AC_PROG_EGREP, AC_PROG_FGREP): New macros.
6917         * doc/autoconf.texi (Particular Programs): Document them.
6918         (Limitations of Usual Tools): Warn that egrep and fgrep may not exist.
6919         * NEWS: Likewise.
6921 2002-05-27  Paul Eggert  <eggert@twinsun.com>
6923         * lib/autoconf/types.m4 (AC_TYPE_MBSTATE_T): New macro.
6924         * NEWS, doc/autoconf.texi (Particular Types): Document it.
6925         * lib/autoconf/functions.m4 (_AC_FUNC_FNMATCH): Require it
6926         instead of AC_MBSTATE_T, which never existed.
6928 2002-05-23  Akim Demaille  <akim@epita.fr>
6930         * doc/autoconf.texi (Hosts and Cross-Compilation): Specify the
6931         version of Autoconf that is discussed.
6933 2002-05-22  Paul Eggert  <eggert@twinsun.com>
6935         * lib/autoconf/fortran.m4 (AC_PROG_F77): Remove cf77 and cft77
6936         from the default list of compilers to try.  Suggested by
6937         Kate Hedstrom.
6938         * NEWS: Document the above.
6939         * doc/autoconf.texi (Fortran 77 Compiler): Don't suggest cf77.
6941 2002-05-17  Paul Eggert  <eggert@twinsun.com>
6943         * lib/autoconf/types.m4 (AC_CHECK_MEMBER): Work correctly even if
6944         the member is itself an aggregate.  Bug reported by Sergey Poznyakoff.
6945         This improves on an earlier suggestion by H. Peter Anvin.
6947 2002-05-16  Paul Eggert  <eggert@twinsun.com>
6949         AC_FUNC_FNMATCH now tests only for POSIX compatibility.
6950         AC_FUNC_FNMATCH_GNU also tests for GNU extensions.
6951         Both macros now accept an optional source-dir arg.
6952         New macro AC_GNU_SOURCE to define _GNU_SOURCE.
6954         * NEWS: Document this.
6955         * doc/autoconf.texi (Particular Functions, UNIX Variants): Likewise.
6957         * lib/autoconf/functions.m4 (_AC_FUNC_FNMATCH): New macro.
6958         (AC_FUNC_FNMATCH): Use it.  Test only for POSIX conformance,
6959         not for GNU extensions; this undoes part of the 2000-11-03 change,
6960         reverting to 2.13-compatible behavior.
6961         Add new optional argument DIR.
6962         (AC_FUNC_FNMATCH_GNU): New macro.
6964         * lib/autoconf/specific.m4 (AC_GNU_SOURCE): New macro.
6966 2002-05-08  Paul Eggert  <eggert@twinsun.com>
6968         * lib/autoconf/headers.m4 (AC_HEADER_TIOCGWINSZ):
6969         Don't require AC_SYS_POSIX_TERMIOS.  The test is unnecessary,
6970         and it causes a 'test' syntax error if it fails.
6971         Bug reported by Stephen Gildea.
6973         * lib/autoconf/functions.m4 (AC_FUNC_SETVBUF_REVERSED):
6974         If prototypes are supported, use them to check this at compile-time,
6975         instead of trying to check it at run-time.  If we must do a run-time
6976         check, assume that setvbuf is standard when cross-compiling, as
6977         nonstandard setvbuf occurs only on ancient and unlikely hosts.
6978         Bug reported by Paul D. Smith.
6980         * lib/autoconf/functions.m4 (AC_FUNC_GETLOADAVG): Add optional
6981         argument specifying location of getloadavg.c.  This removes a
6982         FIXME.  This idea was taken from Jim Meyering's implementation in
6983         textutils.
6984         * doc/autoconf.texi (Particular Functions): Document this.
6985         Also, mention HAVE_NLIST_H rather than NLIST_STRUCT, since
6986         that's what the code does; this fixes a bug reported by
6987         Paul D. Smith.
6989 2002-05-03  Akim Demaille  <akim@epita.fr>
6991         * bin/autoreconf.in (autoreconf): Rewrite to use Gettext's
6992         autopoint instead of gettextize.
6993         ($uses_alocal): Rename as...
6994         ($uses_aclocal): this.
6995         * doc/autoconf.texi (autoreconf Invocation): Adjust.
6996         Suggested by Bruno Haible.
6998 2002-05-03  Akim Demaille  <akim@epita.fr>
7000         * lib/m4sugar/m4sugar.m4 (m4_map_sep): New.
7002 2002-04-29  Paul Eggert  <eggert@twinsun.com>
7004         * bin/autoreconf.in (autoreconf): Don't age aclocal.m4's input
7005         files to be 1 second older; just set them to be the same time.
7006         Also, sleep 1 second after the first aclocal, to work around
7007         problems with sub-second time stamps on the input files.
7009 2002-04-29  Thien-Thi Nguyen  <ttn@gnu.org>
7011         * doc/autoconf.texi: Mention "set -e -x" lossage
7012         under node "Limitations of Builtins".
7014 2002-04-29  Akim Demaille  <akim@epita.fr>
7016         * doc/install.texi: Better wording for setting variables when
7017         running configure.
7018         From Christian Cornelssen.
7020 2002-04-29  Akim Demaille  <akim@epita.fr>
7022         * tests/m4sh.at (LINENO): If testsuite itself is rewritten because
7023         of lack of $LINENO support, then the test will compare the $LINENO
7024         in testsuite vs. the lineno in the test file.  This is wrong, of
7025         course.
7026         Be sure to protect it.
7027         Reported by Patrick Welche.
7029 2002-04-25  Akim Demaille  <akim@epita.fr>
7031         * doc/autoconf.texi (Obsolete Macros): Typo.
7032         Reported by Vladimir Volovich.
7034 2002-04-25  Akim Demaille  <akim@epita.fr>
7036         * bin/autoreconf.in (autoreconf): Don't let aclocal.m4 be older
7037         than some of the input files, hence, on the second run of aclocal,
7038         if some of its input are younger, make them older.
7039         Suggested by Paul Eggert.
7041 2002-04-25  Akim Demaille  <akim@epita.fr>
7043         * doc/autoconf.texi (Limitations of Usual Tools): sed and `!'.
7044         Thanks to Paul Eggert.
7046 2002-04-25  Akim Demaille  <akim@epita.fr>
7048         * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS): Let ac_subst_files
7049         and ac_subst_vars be sh variables containing the list of
7050         AC_SUBST_FILES'ed and AC_SUBST'ed identifiers.  Output them in the
7051         DEFAULT diversion.
7052         (_AC_INIT_PREPARE): Use them to log them.
7053         (_AC_SUBST, _AC_SUBST_SED_PROGRAM): Remove.
7054         (AC_SUBST, AC_SUBST_FILE): Instead of buliding the
7055         _AC_SUBST_SED_PROGRAM, store the list of output files/variables in
7056         _AC_SUBST_FILES and _AC_SUBST_VARS.
7057         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES): Adjust.
7059 2002-04-24  Akim Demaille  <akim@epita.fr>
7061         * bin/autoreconf.in (autoreconf): Run automake after autoconf and
7062         autoheader, so that automake does not complain about a missing
7063         config.h.in that was to be created.
7065 2002-04-23  Akim Demaille  <akim@epita.fr>
7067         * bin/autoheader.in (parse_args): --warning takes an argument.
7068         Fixes PR/220.
7070 2002-04-22  Peter Eisentraut  <peter_e@gmx.net>
7072         * lib/autoconf/general.m4 (_AC_RUN_IFELSE): Remove gmon.out
7073         and bb.out when cleaning up.
7075 2002-04-22  Akim Demaille  <akim@epita.fr>
7077         Version 2.53a.
7079 2002-04-22  Akim Demaille  <akim@epita.fr>
7081         * tests/m4sh.at (LINENO): Fix the Zsh skip pattern.
7083 2002-04-22  Akim Demaille  <akim@epita.fr>
7085         * doc/autoconf.texi (Pretty Help Strings): Remove a spurious
7086         comma.
7087         Reported by Gregory Giannoni.
7089 2002-04-22  Akim Demaille  <akim@epita.fr>
7091         * tests/m4sh.at (LINENO): Skip the test if LINENO cannot be unset.
7092         Fixes false failures on Darwin.
7094 2002-04-21  Paul Eggert  <eggert@twinsun.com>
7096         * TODO, bin/autoupdate.in, doc/autoconf.texi,
7097         lib/autoconf/general.m4, lib/autoconf/libs.m4,
7098         lib/autoconf/status.m4, lib/m4sugar/m4sugar.m4, tests/m4sh.at,
7099         tests/tools.at: Minor spelling and grammar fixes.
7101 2002-04-20  Paul Eggert  <eggert@twinsun.com>
7103         * doc/autoconf.texi (Shell Substitutions): Fix typos in yesterday's
7104         ZSH_VERSION fixes.  Bug reported by Raja R Harinath.
7105         * lib/autotest/general.m4 (AT_INIT): Likewise.
7106         * tests/atgeneral.m4 (AT_INIT): Likewise.
7108 2002-04-19  Paul Eggert  <eggert@twinsun.com>
7110         * NEWS, TODO, bin/autom4te.in, bin/autoreconf.in, bin/autoupdate.in,
7111         doc/autoconf.texi, lib/freeze.mk, lib/Autom4te/Struct.pm,
7112         lib/autoconf/autoheader.m4, lib/autoconf/c.m4,
7113         lib/autoconf/functions.m4, lib/autoconf/general.m4,
7114         lib/autoconf/lang.m4, lib/autoconf/libs.m4, lib/autoscan/identifiers,
7115         lib/autotest/general.m4, lib/m4sugar/m4sh.m4, tests/atgeneral.m4,
7116         tests/atspecific.m4, tests/semantics.at, tests/torture.at:
7117         Minor spelling and grammar fixes.
7119         * doc/autoconf.texi: Follow the outline suggested in the GNU
7120         Sample Texts sections of the Texinfo 4.2 manual.  Most
7121         importantly, this makes sure that the copyright notices appear in
7122         all output formats.  You probably need Texinfo 4.2 to generate
7123         the manual now.
7125         Fix some bugs when using "$@" when there might be zero positional
7126         arguments in cases where this matters.
7128         * bin/autoconf.as: Rewrite so that the problem does not come up.
7129         * lib/autoconf/programs.m4 (AC_CHECK_PROG): Likewise.
7130         * lib/autoconf/status.m4 (AC_OUTPUT): Likewise.
7131         * lib/autotest/general.m4 (AT_INIT): Likewise.
7133         * bin/autoheader.in: Use 'case' statement to work around problem.
7134         * bin/auto4mte.in: Likewise.
7135         * bin/autoreconf.in: Likewise.
7136         * bin/autoscan.in: Likewise.
7137         * bin/autoupdate.in: Likewise.
7138         * bin/ifnames.in: Likewise.
7140         * doc/autoconf.texi (Shell Substitutions): Document the problem.
7142         * lib/autotest/general.m4 (AT_INIT):
7143         Use Zsh alias to work around problem.
7144         * tests/atgeneral.m4 (AT_INIT): Likewise.
7146         * tests/c.at: We can't have zero arguments, so remove workaround
7147         that is not portable to Zsh.
7149 2002-04-19  Alexandre Duret-Lutz  <duret_g@epita.fr>
7151         * bin/autoupdate.in (handle_autoconf_macros): Honor AU_DEFUNs
7152         from aclocal.m4 too.
7154 2002-04-12  Akim Demaille  <akim@epita.fr>
7156         * tests/wrappl.as: New, M4sh precursor of wrappl.in.
7158 2002-04-10  Akim Demaille  <akim@epita.fr>
7160         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Install the Zsh
7161         workaround for ${1+"$@"}.
7162         * doc/autoconf.texi (Shell Substitutions): Explain it.
7163         From Oliver Kiddle and Peter Stephenson.
7165         Have M4sh perform minimal shell sanitizing.
7167         * lib/m4sugar/m4sh.at (AS_SHELL_SANITIZE): Split the `_AS_PREPARE_*'
7168         part into...
7169         (_AS_PREPARE): this new macro.
7170         (AS_PREPARE): New.
7171         (AS_INIT): Invoke AS_SHELL_SANITIZE.
7172         * tests/m4sh.at (AT_DATA_LINENO): Use _AS_PREPARE.
7174         Adjust Autoconf and Autotest.
7176         * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS): Don't invoke
7177         AS_SHELL_SANITIZE, AS_INIT did it, but invoke AS_PREPARE.
7178         * lib/autotest/general.m4 (AT_INIT): Likewise.
7179         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS):
7180         Invoke _AS_PREPARE (not AS_PREPARE) in addition to
7181         AS_SHELL_SANITIZE.
7183         Use this M4sh to generate Autoconf's shell scripts.
7185         * tests/wrapsh.as: New, precursor of wrapsh.in.
7186         * tests/Makefile.am: Include lib/freeze.mk to get the dependencies
7187         on Autotest and M4sh.
7188         ($(TESTSUITE)): Use $(autotest_m4f_dependencies).
7189         (wrapsh.in): New target.
7190         * bin/autoconf.as: New, precursor of autoconf.in.
7191         (autoconf.in): New target.
7193 2002-04-09  Alexandre Duret-Lutz  <duret_g@epita.fr>
7195         * doc/autoconf.texi (Limitations of Make): Mention the issue
7196         with indented comments in rules.
7198 2002-04-09  Andreas Schwab  <schwab@suse.de>
7200         * lib/autoconf/status.m4 (_AC_SRCPATHS): Handle empty
7201         ac_top_builddir when setting ac_abs_top_builddir.
7203 2002-04-06  Kevin Ryde  <user42@zip.com.au>
7205         * doc/autoconf.texi (Systemology): Add link to Unix V7 online docs.
7206         (Portable Shell): Cross reference to Systemology.
7208 2002-04-05  Akim Demaille  <akim@epita.fr>
7210         * bin/autoreconf.in (autoreconf): Be sure to accumulate the
7211         directories when descending in a SUBDIRS.
7212         Reported by Ezra Peisach.
7214 2002-04-04  Andreas Schwab  <schwab@suse.de>
7216         * lib/m4sugar/m4sh.m4 (_AS_PATH_WALK): Only simplify if path
7217         contains no literal separators.
7219 2002-04-03  Akim Demaille  <akim@epita.fr>
7221         * lib/autoconf/status.m4 (_AC_CONFIG_FILE, _AC_CONFIG_HEADER)
7222         (_AC_CONFIG_COMMAND, _AC_CONFIG_LINK): New.
7223         Use dnl, not the KILL diversion.
7224         Extracted from...
7225         (AC_CONFIG_FILES, AC_CONFIG_HEADERS, AC_CONFIG_COMMANDS)
7226         (AC_CONFIG_LINKS): here.
7227         Adjust.
7228         Don't use the KILL diversion, as it kills spurious output, which
7229         results in failures being hidden.
7230         Use m4_defn where appropriate.
7231         (AC_CONFIG_IF_MEMBER): Kill the real bug: a spurious parenthesis
7232         after the second argument.
7233         Use m4_defn.
7234         * lib/autom4te.in (Autoconf, Autotest, M4sh): Don't pass --warning
7235         syntax, as it is provided by M4sugar.
7236         * tests/torture.at (Multiple AC_CONFIG_FILES): New.
7238 2002-04-03  Andreas Schwab  <schwab@suse.de>
7240         * lib/m4sugar/m4sugar.m4 (m4_bmatch): Make sure m4_bregexp is not
7241         expanded if $# <= 2.
7243         * bin/autoreconf.in (autoreconf): Run automake after rerunning
7244         aclocal.
7246 2002-04-03  Akim Demaille  <akim@epita.fr>
7248         * lib/autoconf/lang.m4 (_AC_COMPILER_OBJEXT_REJECT)
7249         (_AC_COMPILER_EXEEXT_REJECT): New.
7250         Also recognize *.bb and *.bbg as compilation byproducts.
7251         (_AC_COMPILER_EXEEXT_DEFAULT, _AC_COMPILER_EXEEXT_O)
7252         (_AC_COMPILER_OBJEXT): Use them.
7253         Fixes Debian #138666.
7255 2002-04-02  Peter Eisentraut  <peter_e@gmx.net>
7257         Integrate AC_PROG_CC_STDC into AC_PROG_CC.
7259         * lib/autoconf/c.m4 (AC_PROG_CC_STDC): Rename to _AC_PROG_CC_STDC.
7260         AU_DEFUN old name.  Use _AC_COMPILE_IFELSE.
7261         (AC_PROG_CC): Call _AC_PROG_CC_STDC.
7262         (AC_C_INLINE): Do not require AC_PROG_CC_STDC.
7263         (AC_C_CONST): Same.
7264         (AC_C_INLINE): Same.
7265         (AC_C_PROTOTYPES): Same.  Require AC_PROG_CC instead.
7266         * doc/autoconf.texi, NEWS: Document.
7267         * tests/mktests.sh (au_exclude_list): Add AC_PROG_CC_STDC and
7268         AC_C_CROSS.
7270 2002-04-02  Akim Demaille  <akim@epita.fr>
7272         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Invoke
7273         _AS_MKDIR_P_PREPARE.
7275 2002-03-28  Kevin Ryde  <user42@zip.com.au>
7277         * lib/autoconf/c.m4 (AC_C_INLINE): Test with a typedef return value,
7278         to avoid versions of HP C which don't allow that.
7280 2002-03-27  Paul Eggert  <eggert@twinsun.com>
7282         * lib/m4sugar/m4sh.m4 (_AS_BASENAME_PREPARE): New macro.
7283         (AS_SHELL_SANITIZE): Invoke it.
7284         (AS_BASENAME): AS_REQUIRE it, and use $as_basename.
7286 2002-03-26  Akim Demaille  <akim@epita.fr>
7288         * doc/autoconf.texi (Portable Shell): Add pointers to FAQs.
7290 2002-03-26  Akim Demaille  <akim@epita.fr>
7292         * doc/autoconf.texi (Introduction): The GNATS base moved.
7294 2002-03-25  Paul Eggert  <eggert@twinsun.com>
7296         * tests/m4sh.at: Don't rely on "PATH=test:$PATH test-1" working
7297         as POSIX requires, as it doesn't work with Zsh.
7298         * doc/autoconf.texi (Assignments): Document the problem.
7300 2002-03-25  Alexandre Duret-Lutz  <duret_g@epita.fr>
7302         * doc/autoconf.texi (Limitations of Make): Mention more issue
7303         about VPATH, overriding of macros in sub-makes, and handling of
7304         SHELL.
7306 2002-03-21  Paul Eggert  <eggert@twinsun.com>
7308         * doc/autoconf.texi (Here-Documents): Mention Solaris 8 dtksh
7309         problem with here-document buffer boundaries.
7311         * lib/m4sugar/m4sh.m4 (_AS_LINENO_PREPARE): Unset ENV and BASH_ENV
7312         when reinvoking the shell, to work around problems with installers
7313         who put strange things like "cd" commands in their environments.
7315 2002-03-19  Akim Demaille  <akim@epita.fr>
7317         * tests/semantics.at (AC_C_BIGENDIAN): s/unknow/unknown/.
7318         From Aaron Ucko.
7320 2002-03-19  Akim Demaille  <akim@epita.fr>
7322         * bin/autoscan.in (scan_file): Specify the location in `&used'
7323         invocations.
7324         From Nicolas Joly.
7326 2002-03-19  Akim Demaille  <akim@epita.fr>
7328         * doc/autoconf.texi: Adjust @code/@command, @xref/@ref usage.
7329         From Nishio Futoshi.
7331 2002-03-19  Akim Demaille  <akim@epita.fr>
7333         * lib/m4sugar/m4sugar.m4 (m4_define_default, m4_fst, m4_map): New.
7335 2002-03-18  Paul Eggert  <eggert@twinsun.com>
7337         * doc/autoconf.texi (Programming in M4sh): Add AS_MKDIR_P.
7338         (Limitations of Usual Tools): Add mkdir section.
7340         * lib/m4sugar/m4sh.m4 (_AS_MKDIR_P_PREPARE): New macro.
7341         (AS_MKDIR_P): Require it.  Use mkdir -p if available, falling
7342         back on AS_DIRNAME to compute prefixes otherwise; this is
7343         roughly what mkinstalldirs does.  That way, we need not have
7344         our own filename disassembler.  The old disassembler did not
7345         work with Solaris 8 dtksh, which is ksh Version M-12/28/93d.
7347         * lib/autotest/general.m4 (AT_INIT, AT_CLEANUP):
7348         Create at_test_all by a series of assignments,
7349         not by a single assignment of a long string.  The latter causes ksh
7350         version 11/16/88g to silently misbehave on OpenServer 5.0.6a,
7351         presumably because of a buffer overrun.
7353 2002-03-14  Paul Eggert  <eggert@twinsun.com>
7355         * lib/autotest/general.m4 (at_times_skip):
7356         Renamed from at_times.  Now a boolean.
7357         ksh93 Version M-12/28/93d doesn't like 'x=times; $x'; it
7358         says 'times: not found'.
7360 2002-03-14  Akim Demaille  <akim@epita.fr>
7362         * bin/autoreconf.in (&study_gettextize): New.
7363         (&autoreconf): Handle newest gettextize.
7364         Rerun aclocal if needed.
7365         Suggested by Andreas Schwab.
7367 2002-03-13  Akim Demaille  <akim@epita.fr>
7369         * doc/autoconf.texi (Special Shell Variables): More about IFS.
7371 2002-03-13  Akim Demaille  <akim@epita.fr>
7373         * doc/autoconf.texi (Header Portability): New.
7374         Add information about stdint.h and inttypes.h from Paul Eggert.
7376 2002-03-13  Akim Demaille  <akim@epita.fr>
7378         * doc/autoconf.texi (Limitations of Usual Tools): Some about `cp
7379         -p'.
7380         From Bob Proulx.
7382 2002-03-12  Akim Demaille  <akim@epita.fr>
7384         * lib/m4sugar/m4sh.m4 (AS_BASENAME_EXPR): AS_REQUIRE, not
7385         m4_require.
7387 2002-03-11  Andreas Schwab  <schwab@suse.de>
7389         * configure.ac: Explicitly check for EMACS since AM_PATH_LISPDIR
7390         does not do it if --with-lispdir is given.
7392 2002-03-08  Akim Demaille  <akim@epita.fr>
7394         Version 2.53.
7396 2002-03-08  Akim Demaille  <akim@epita.fr>
7398         * doc/autoconf.texi (Subdirectories): Clarify that the
7399         subdirectory should exist.
7401 2002-03-08  Akim Demaille  <akim@epita.fr>
7403         * Makefile.am (AUTOMAKE_OPTIONS): 1.6.
7405 2002-03-08  Akim Demaille  <akim@epita.fr>
7407         * bin/autom4te.in (&handle_m4): Do not foreach with `$_' as it
7408         aliases the actual variables, and modifications of the former
7409         affect the latter.
7411 2002-03-08  Akim Demaille  <akim@epita.fr>
7413         * bin/autom4te.in (&handle_m4): Protect us from corrupted file
7414         because of C-c: have m4 output in tmp files, then mv them.
7416 2002-03-08  Akim Demaille  <akim@epita.fr>
7418         * bin/autoconf.in, bin/autoheader.in, bin/autom4te.in,
7419         * bin/autoreconf.in, bin/autoscan.in, bin/autoupdate.in,
7420         * bin/ifnames.in: Copyright update.
7422 2002-03-08  Akim Demaille  <akim@epita.fr>
7424         * doc/autoconf.texi (Invoking autom4te): New.
7426 2002-03-05  Akim Demaille  <akim@epita.fr>
7428         * doc/autoconf.texi (Specifying Names): Clarification suggested by
7429         Kevin Ryde.
7431 2002-03-05  Akim Demaille  <akim@epita.fr>
7433         Version 2.52i.
7435 2002-03-04  Akim Demaille  <akim@epita.fr>
7437         * doc/autoconf.texi (AC_LIBOBJ vs. LIBOBJS): New.
7438         * lib/autoconf/general.m4 (AC_INIT): More informative error
7439         message for LIBOBJ.
7441 2002-03-04  Akim Demaille  <akim@epita.fr>
7443         * lib/freeze.mk ($(build_libdir)/m4sugar/version.m4): New, for
7444         parallel builds.
7446 2002-03-04  Akim Demaille  <akim@epita.fr>
7448         * doc/autoconf.texi (Transforming Names): Equality between target
7449         and host is irrelevant.
7450         (Specifying Names, Canonicalizing): Remove all references to the
7451         backward compatibility hooks.  Rather, collect them all into...
7452         (Hosts and Cross-Compilation): this new section.
7453         * doc/install.texi (System Type): Ditto.
7454         * lib/autoconf/general.m4 (AC_CANONICAL_HOST): Explicitly state
7455         that `--host' implies cross-compilation.
7457 2002-03-04  Akim Demaille  <akim@epita.fr>
7459         * doc/autoconf.texi (Evaluation Macros): New.
7460         * lib/m4sugar/m4sugar.m4 (m4_lquote): Remove, it is totally
7461         useless.
7462         (_m4_foreach): Define the variant with immediate evaluation so
7463         that it contains exactly the items, not an expression which
7464         evaluation is the current item.
7465         (m4_re_string, m4_re_word): Don't over quote them.
7467 2002-03-04  Akim Demaille  <akim@epita.fr>
7469         Instead of having stacking `shift's evaluated at the end, let
7470         `foreach' loops immediately evaluate them.
7472         * lib/m4sugar/m4sugar.m4 (m4_quote, m4_dquote): Use $@ rather than
7473         $*.  This is the n-th time I change my mind, but hopefully this is
7474         the last...
7475         (m4_lquote): New.
7476         (m4_text_wrap): Use m4_foreach, which is finally correct _and_
7477         efficient.
7478         (m4_foreach_quoted, m4_car_quoted, _m4_foreach_quoted): Remove, as
7479         it was only a hack for m4_text_wrap.
7480         (m4_car2): Remove, replaced by...
7481         (m4_cdr): New.
7482         (_m4_foreach): Adjust.
7483         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Adjust, and use
7484         m4_bpatsubst for clarification.
7486 2002-03-04  Akim Demaille  <akim@epita.fr>
7488         * doc/autoconf.texi (Changequote is Evil): New.
7490 2002-03-03  Kevin Ryde  <user42@zip.com.au>
7492         * doc/autoconf.texi (Portable Shell): Mention 32-byte #! length limit
7493         on old systems like SunOS.
7495 2002-03-01  Peter Eisentraut  <peter_e@gmx.net>
7497         * lib/autoconf/c.m4, lib/autoconf/fortran.m4,
7498         lib/autoconf/functions.m4, lib/autoconf/general.m4,
7499         lib/autoconf/headers.m4, lib/autoconf/lang.m4,
7500         lib/autoconf/programs.m4, lib/autoconf/status.m4: Improve spelling
7501         of messages.
7503 2002-02-28  Akim Demaille  <akim@epita.fr>
7505         * lib/autotest/general.m4 (AT_INIT): Suggest a title to the
7506         message to be sent.
7508 2002-02-28  Kevin Ryde  <user42@zip.com.au>
7510         * doc/autoconf.texi (Function Portability): Add va_copy and va_list.
7512 2002-02-25  Akim Demaille  <akim@epita.fr>
7514         * lib/autoconf/functions.m4 (AC_FUNC_SETPGRP): Fix the test.
7515         From Akinori Musha.
7517 2002-02-13  Alexandre Duret-Lutz  <duret_g@epita.fr>
7519         * lib/Autom4te/XFile.pm (getline, getlines): New functions,
7520         translate \r\n to \n.
7522 2002-02-07  Akim Demaille  <akim@epita.fr>
7524         Version 2.52h.
7526 2002-02-07  Akim Demaille  <akim@epita.fr>
7528         Fix Autoconf PR/209.
7529         Also reported by Frank Denis.
7531         * lib/m4sugar/m4sh.m4 (_AS_PATH_WALK): Don't over quote.
7533 2002-02-07  Akim Demaille  <akim@epita.fr>
7535         Fix Autoconf PR/207:
7536         AC_PREFIX_PROGRAM fails with dashed program names
7538         * lib/autoconf/general.m4 (AC_PREFIX_PROGRAM): Just use a fresh
7539         variable when looking for the prefix program.
7540         Now it also works for shell variables.
7542 2002-02-07  Akim Demaille  <akim@epita.fr>
7544         * doc/autoconf.texi (Limitations of Builtins): More about
7545         case/esac.
7547 2002-02-06  Akim Demaille  <akim@epita.fr>
7549         * lib/autoconf/status.m4 (_AC_OUTPUT_COMMANDS): Don't output empty
7550         case/esac, some shells don't support it.
7551         Reported by Zack Weinberg.
7552         * tests/torture.at (AC_CONFIG_COMMANDS with empty commands): New.
7554 2002-02-06  Akim Demaille  <akim@epita.fr>
7556         * lib/autotest/general.m4 (AT_INIT): When handling --keywords, be
7557         sure not to introduce newlines in at_groups.
7558         * lib/autotest/Makefile.am (autotest.m4f): Typo.
7560 2002-02-06  Akim Demaille  <akim@epita.fr>
7562         * tests/torture.at (Configuring subdirectories): Skip if aclocal
7563         is not available.
7565 2002-02-05  Paul Eggert  <eggert@twinsun.com>
7567         * doc/autoconf.texi (Specific Compiler Characteristics):
7568         Describe HP-UX cc bug workaround more accurately.
7569         * lib/autoconf/types.m4 (AC_CHECK_SIZEOF): Cast to long,
7570         not unsigned long.
7571         * tests/semantics.at (AC_CHECK_SIZEOF): Check non-GCC
7572         cross-compilers, too.  This undoes some of the most recent change
7573         to this file.
7575 2002-02-05  Akim Demaille  <akim@epita.fr>
7577         * tests/Makefile.am (check_SCRIPTS): Use it, instead of WRAPPERS,
7578         to make sure they are up to date when `check' is run.
7580 2002-02-05  Akim Demaille  <akim@epita.fr>
7582         * doc/autoconf.texi (Making testsuite Scripts): Document
7583         package.m4.
7585 2002-02-05  Akim Demaille  <akim@epita.fr>
7587         * lib/freeze.mk: New.
7589 2002-02-05  Akim Demaille  <akim@epita.fr>
7591         Implement `autom4te --freeze'.
7593         * bin/autom4te.in (&freeze): New.
7594         * lib/autoconf/autoconf.m4, lib/autotest/general.m4,
7595         * lib/m4sugar/m4sh.m4: Don't include files given by autom4te.
7597 2002-02-05  Akim Demaille  <akim@epita.fr>
7599         * bin/autom4te.in (&parse_args): Implement `frozen files are
7600         optional are the sum of the previous files on the command line'.
7601         Also, pass `--reload-state=' on them, so...
7602         (handle_m4): don't.
7603         * lib/autom4te.in (Autotest, Autoconf): Rely on M4sh.
7604         (M4sh): Rely on M4sugar.
7605         (Autotest, M4sh, M4sugar): Use frozen files.
7607 2002-01-31  Akim Demaille  <akim@epita.fr>
7609         * lib/autoconf/general.m4 (_AC_INIT_PACKAGE): Accept $4.
7610         * doc/autoconf.texi (Initializing configure): Adjust.
7612 2002-01-30  Akim Demaille  <akim@epita.fr>
7614         * lib/autoconf/general.m4 (_AC_INIT_PACKAGE): Map non
7615         alphanumeric to `-' instead of `_'.
7617 2002-01-30  Akim Demaille  <akim@epita.fr>
7619         * tests/semantics.at (AC_CHECK_SIZEOF): Split into two tests: one
7620         for plain code, the other for cross-compilation code.  The latter
7621         is now run with GCC only.
7622         * doc/autoconf.texi (Compilers and Preprocessors): New.
7624 2002-01-30  Akim Demaille  <akim@epita.fr>
7626         * lib/autoconf/general.m4 (_AC_INIT_PACKAGE): Support pre-defined
7627         values.
7628         * doc/autoconf.texi (Initializing configure): Explain how to
7629         change AC_INIT default values.
7631 2002-01-29  Akim Demaille  <akim@epita.fr>
7633         * tests/torture.at (Configuring subdirectories): Use configure.in,
7634         so that aclocal 1.4 works.
7635         Reported by Alexandre Duret-Lutz and Larry Schmitt.
7637 2002-01-28  Akim Demaille  <akim@epita.fr>
7639         * doc/autoconf.texi (Writing testsuite.at): AT_CLEANUP no longer
7640         needs an argument.
7642 2002-01-28  Akim Demaille  <akim@epita.fr>
7644         * lib/autotest/general.m4 (AT_INIT): Don't be ridiculous: adjust
7645         AUTOTEST_PATH *after* it was set.
7646         Don't put `.' in the PATH: the user should be precise and `./' if
7647         needed.  In addition, given that the test suite does some `cd', if
7648         `.' is in the path, the `tested programs' sections will report
7649         programs found in the test suite's directory, while during the
7650         tests (performed in their own directory), these programs are no
7651         longer visible.  In other words, the results is confusing and
7652         useless.
7653         * tests/m4sh.at: Adjust: don't rely on `.' being in the PATH.
7655 2002-01-24  Akim Demaille  <akim@epita.fr>
7657         Version 2.52g.
7659 2002-01-24  Akim Demaille  <akim@epita.fr>
7661         * bin/autoheader.in, bin/autoconf.in, bin/autoscan.in,
7662         * doc/autoconf.texi: Finally add Akim as an author.
7664 2002-01-24  Akim Demaille  <akim@epita.fr>
7666         * lib/m4sugar/m4sh.m4 (_AS_LINENO_PREPARE): Use PATH_SEPARATOR.
7667         (_AS_PATH_SEPARATOR_PREPARE): Don't expect $SHELL to be
7668         Bourne. Use /bin/sh.
7669         From Andreas Buening.
7671 2002-01-24  Akim Demaille  <akim@epita.fr>
7673         * config/config.guess, config/config.sub, config/texinfo.tex:
7674         Update from masters.
7676 2002-01-24  Akim Demaille  <akim@epita.fr>
7678         * Makefile.am (AUTOMAKE_OPTIONS): 1.5b.
7679         * config/auxdir.m4, config/cond.m4, config/depend.m4,
7680         * config/init.m4, config/install-sh.m4, config/lispdir.m4,
7681         * config/missing.m4, config/sanity.m4, config/select.m4,
7682         * config/strip.m4: Remove, to ease sync'ing with any version of
7683         Automake.
7685 2002-01-24  Akim Demaille  <akim@epita.fr>
7687         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ARGS)
7688         (_AC_INIT_PREPARE): Support -n as --no-create, as documented.
7689         Reported by Geir Ove Myhr.
7691 2002-01-21  Akim Demaille  <akim@epita.fr>
7693         * lib/autoconf/functions.m4 (AC_FUNC_MMAP): #Undef malloc.
7695 2002-01-21  Akim Demaille  <akim@epita.fr>
7697         * lib/Autom4te/General.pm (getopt): Use a more GNUish error
7698         message on invalid options.
7699         * bin/autom4te.in (parse_args): Don't use
7700         Autoconf::General::getopt with non valid options.
7702 2002-01-17  Jim Meyering  <meyering@lucent.com>
7704         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Initialize
7705         $ac_cv_exeext so we don't use an old, invalid, cached value.
7707 2002-01-11  Akim Demaille  <akim@epita.fr>
7709         * lib/autoconf/functions.m4 (AC_FUNC_STRNLEN): New, from Jim
7710         Meyering.
7711         * doc/autoconf.texi (Function Portability): Document the strnlen
7712         limitation.
7713         (Particular Functions): Document AC_FUNC_STRNLEN.
7714         * lib/autoscan/functions: Adjust.
7716 2002-01-06  Akim Demaille  <akim@epita.fr>
7718         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): Don't create
7719         package.m4, since is really depends upon configure.ac, not
7720         configure.
7721         * doc/autoconf.texi (testsuite Scripts): Adjust.
7722         * tests/Makefile.am (package.m4): New.
7723         EXTRA_DIST it since its a source.
7725 2002-01-06  Akim Demaille  <akim@epita.fr>
7727         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ARGS): Move the AC_SUBST
7728         of PACKAGE_NAME, PACKAGE_TARNAME, PACKAGE_VERSION, PACKAGE_STRING,
7729         and PACKAGE_BUGREPORT from here...
7730         (_AC_INIT_DEFAULTS): to here, since it is unrelated to the
7731         arguments.
7732         (_AC_INIT_PREPARE): AC_DEFINE these symbols.
7733         * lib/autotest/general.m4: Use AT_PACKAGE_*, not PACKAGE_*.
7734         (AT_INIT): No longer catch `^PACKAGE_(BUGREPORT|STRING)$'.
7735         * tests/tools.at (autoheader): Adjust.
7736         * tests/atspecific.m4 (AT_CHECK_DEFINES): Adjust.
7738 2002-01-06  Akim Demaille  <akim@epita.fr>
7740         * bin/autoscan.in (scan_file): Use `&used'.
7742 2002-01-03  Akim Demaille  <akim@epita.fr>
7744         * doc/autoconf.texi (Output): Improved wording regarding use of
7745         AC_OUTPUT.
7746         From Olly Betts.
7748 2001-12-18  Kevin Ryde  <user42@zip.com.au>
7750         * doc/autoconf.texi (Function Portability): Add notes on sscanf
7751         sometimes needing writable input.
7753 2001-12-17  Jim Meyering  <meyering@lucent.com>
7755         * doc/autoconf.texi (New Macros): Tweak wording.
7757 2001-12-14  Akim Demaille  <akim@epita.fr>
7759         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): We cleaning up the
7760         trailing files, don't apply `-rf' to files which might not be
7761         created by configure (core, core.*, and *.core), but just `rm -f'.
7762         Suggested by Jonathan Kamens.
7764 2001-12-14  Aaron M. Ucko  <amu@alum.mit.edu>
7766         * lib/autoconf/general.m4: Avoid duplicates in `$ac_configure_args'.
7768 2001-12-14  Akim Demaille  <akim@epita.fr>
7770         * Makefile.am (MAINTAINERCLEANFILES): Remove configure.
7772 2001-12-13  Peter Eisentraut  <peter_e@gmx.net>
7774         * lib/autoconf/status.m4 (_AC_SRCPATHS): Rename buildpath to
7775         abs_builddir, top_buildpath to abs_top_builddir, srcpath to
7776         abs_srcdir, top_srcpath to abs_top_srcdir.
7777         (_AC_OUTPUT_FILES): Adjust.
7778         * NEWS, doc/autoconf.texi, lib/autoconf/autotest.m4,
7779         * tests/atspecific.m4, tests/autoreconf.in, tests/tools.at,
7780         * tests/wrappl.in, tests/wrapsh.in: Adjust.
7782 2001-12-12  Steven G. Johnson  <stevenj@alum.mit.edu>
7784         * lib/autoconf/fortran.m4 (_AC_PROG_F77_V_OUTPUT): Fix failed
7785         C/Fortran linking on HP/UX, by extracting the Fortran library
7786         search path from the LPATH line in the $F77 -v output.
7788 2001-12-12  Kevin Ryde  <user42@zip.com.au>
7790         * doc/autoconf.texi (File Descriptors): Use a clearer layout for the
7791         forbidden file descriptors table.
7793 2001-11-26  Akim Demaille  <akim@epita.fr>
7795         * bin/autoscan.in (%c_keywords): Build it at top level.
7796         Map to 1 in order to simplify its uses.
7798 2001-11-26  Akim Demaille  <akim@epita.fr>
7800         * bin/autoscan.in (&scan_c_file, &scan_sh_file, &scan_makefile):
7801         Remove $filepath, useless.
7802         (&scan_makefile): Don't remove the $(FOO), ${FOO} and @FOO@
7803         variables, they are really part of the tokens.
7804         Split the input line on spaces and then look for tokens.
7805         Now autoscan ceases to ask for AC_PROG_LEX for the package Bison
7806         because of `lex$U.$(OBJEXT)'.
7807         (&scan_files): Use "@list" instead of join.
7808         * doc/Makefile.am (CLEANFILES): Add *.fns.
7810 2001-11-26  Akim Demaille  <akim@epita.fr>
7812         * tests/autoreconf.in, tests/autom4te.in, tests/autoupdate.in:
7813         Remove, replaced by...
7814         * tests/wrappl.in: Be common for all the Perl executables.
7815         In particular autoscan and autoheader want -I.
7816         * configure.ac: Adjust.
7817         * lib/autoscan/headers: errno.h is portable.
7819 2001-11-26  Akim Demaille  <akim@epita.fr>
7821         * bin/autoscan.in (used): New.
7822         Use it.
7824 2001-11-26  Akim Demaille  <akim@epita.fr>
7826         * bin/autoscan.in (&scan_c_file): Better parsing of CPP
7827         directives.
7828         (&scan_sh_file): Remove a duplicate pattern.
7829         (&check_configure_ac): Use long options.
7830         * lib/autoscan/headers (alloca.h): Check with AC_FUNC_ALLOCA.
7832 2001-11-26  Akim Demaille  <akim@epita.fr>
7834         * bin/autoscan.in (scan_c_file): Fix the handling of C comments.
7835         Before, having a line containing the opening of a multi line
7836         comment made the whole line be ignored.
7838 2001-11-26  Akim Demaille  <akim@epita.fr>
7840         * doc/autoconf.texi (Using an Autotest Test Suite): New.
7841         (testsuite Scripts): Be one of its subsection.
7842         (Autotest Logs): New.
7844 2001-11-26  Akim Demaille  <akim@epita.fr>
7846         Test groups are now run two directories deeper.
7848         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): Replace srcdir,
7849         top_srcdir and top_builddir with at_srcdir, at_top_srcdir and
7850         at_top_builddir.
7851         * lib/autotest/general.m4 (AT_INIT): Compute srcdir,
7852         top_srcdir, builddir and top_builddir.
7853         Use `at_*dir' relatively to the directory containing the
7854         suite, use `*dir' when relatively to the current group dir.
7856 2001-11-25  Joseph S. Myers  <jsm28@cam.ac.uk>
7858         * doc/autoconf.texi, TODO, lib/autoconf/fortran.m4,
7859         lib/autoconf/functions.m4, lib/autoconf/headers.m4,
7860         tests/atgeneral.m4, tests/tools.at, tests/atspecific.m4: Fix
7861         spelling errors.
7863 2001-11-22  Alexandre Duret-Lutz  <duret_g@epita.fr>
7865         * doc/autoconf.texi (Using System Type): Add an example of `case
7866         $host' usage so people quit using `case $target' everywhere.
7868 2001-11-22  Akim Demaille  <akim@epita.fr>
7870         * doc/autoconf.texi (Installation Directory Variables): Englishoes
7871         spotted by Jim Meyering.
7873 2001-11-16  Paul Eggert  <eggert@twinsun.com>
7875         This patch implements a `long double' suggestion by Oliver Kiddle.
7877         * lib/autoconf/c.m4 (AC_LANG_BOOL_COMPILE_TRY(C)): Make the array
7878         static, to catch errors if the value isn't known at compile-time
7879         and the compiler supports dynamic arrays.  Change its name from
7880         `_array_' to `test_array' to avoid potential name clashes.
7881         (AC_C_LONG_DOUBLE): Make it a compile-time test, not a run-time
7882         test.  Do not define HAVE_LONG_DOUBLE if `long double' is no
7883         better than double.  Catch a bug in GCC 2.95.2 x86.
7884         * doc/autoconf.texi (C Compiler): Document the above.
7885         * NEWS: Likewise.
7887 2001-11-13  Akim Demaille  <akim@epita.fr>
7889         * tests/m4sh.at (LINENO): Protect from autom4te's substitution by
7890         hand.
7891         * tests/tools.at: Don't protect dnl, AT_DATA_M4SH does.
7893 2001-11-13  Akim Demaille  <akim@epita.fr>
7895         * lib/autotest/general.m4 (AT_INIT): After having run the test
7896         group, go back to the initial directory, not to at_suite_dir.
7898 2001-11-13  Akim Demaille  <akim@epita.fr>
7900         * tests/atspecific.m4 (AT_DATA_M4SUGAR, AT_DATA_M4SH)
7901         (AT_DATA_AUTOCONF):  Also protect @&t@ from autom4te.
7902         (AT_CHECK_AUTOCONF, AT_CHECK_AUTOHEADER): Pass no --include
7903         option.
7904         (AT_CHECK_CONFIGURE): Use absolute paths.
7905         (_AT_CHECK_AC_MACRO): Create aclocal.m4 with AC_STATE_SAVE in it.
7906         The problem is still the old one: there is no means in M4 (that I
7907         know about) to create a defining macro, because there is no means
7908         to create `$1' etc., therefore, the defining macro ``swallows''
7909         all the arguments meant to the defined macro.
7911 2001-11-13  Akim Demaille  <akim@epita.fr>
7913         * tests/atspecific.m4 (AT_DATA_AUTOCONF): New.
7914         (AT_CONFIGURE_AC): Output the definition of AC_STATE_SAVE in
7915         configure.ac.
7916         * tests/aclocal.m4: Remove, as it is no longer used.
7918 2001-11-13  Akim Demaille  <akim@epita.fr>
7920         * lib/autotest/general.m4: Change `tests?' into `groups?' in
7921         variable names when referring to a single test group, or to
7922         `suite' when referring to the whole test suite.
7923         `at_last_test' is removed: m4 compute at_format itself.
7924         (at_stdout, at_stder1, at_stderr): New variables.
7925         (AT_CHECK): Use them.
7927 2001-11-13  Akim Demaille  <akim@epita.fr>
7929         * lib/autotest/general.m4 (AT_INIT): Be sure to put `.', relative,
7930         in PATH.
7931         Create `testsuite.dir/003/run' instead of `testsuite.003'.
7932         Do it as soon as a test fails, don't wait till the end of the test
7933         suite.
7934         Don't remove $as_me.[0-9]*, since these files no longer exist.
7936 2001-11-13  Akim Demaille  <akim@epita.fr>
7938         * tests/tools.at: Use absolute paths, since we are no longer run
7939         in place.
7941 2001-11-13  Akim Demaille  <akim@epita.fr>
7943         Now that tests are running in their own private dir, there is no
7944         need to list the files to remove at the end of tests groups.
7946         * lib/autotest/general.m4 (_AT_CLEANUP_FILE, AT_CLEANUP_FILES):
7947         (AT_data_files, at_data_files): Remove.
7948         (AT_CLEANUP, AT_DATA): Simplify.
7949         (AT_INIT): Adjust.
7950         Remove the group dir if !debug && !failed.
7951         * tests/atspecific.m4: Adjust.
7953 2001-11-13  Akim Demaille  <akim@epita.fr>
7955         Start a new layout for Autotest: `testsuite' creates
7956         `testsuite.dir' in which the at-check-line etc. files are to be
7957         found, and `testsuite.dir/003' where the test group 3 is run.
7959         * lib/autotest/general.m4 (AT_INIT): at_tests_dir,
7960         at_check_line_file, at_format, at_test_normalized, at_group_dir
7961         are new variables.
7962         Create the directories.
7963         Use absolute paths for at- files.
7964         (AT_CHECK): Adjust.
7966 2001-11-11  Michael Matz  <matz@kde.org>
7968         * m4sugar.m4 (_m4_foreach): Make it linear instead quadratic.
7969         (m4_car2): New.
7970         (m4_car): Properly quote arguments.
7972 2001-11-13  Akim Demaille  <akim@epita.fr>
7974         * tests/aclocal.m4 (AC_STATE_SAVE): s/LIBOBJS/LIB@&t@OBJS/ to cope
7975         with stricter rules on LIBOBJS.
7977 2001-11-12  Paul Eggert  <eggert@twinsun.com>
7979         * lib/autoconf/c.m4 (AC_C_PROTOTYPES): Define __PROTOTYPES too.
7980         * doc/autoconf.texi (C Compiler): AC_C_PROTOTYPES now defines
7981         __PROTOTYPES too.
7983 2001-11-12  Akim Demaille  <akim@epita.fr>
7985         * lib/autoconf/functions.m4 (AC_FUNC_GETMNTENT): Use AC_CHECK_FUNCS.
7987 2001-11-12  Akim Demaille  <akim@epita.fr>
7989         * lib/autoconf/c.m4, lib/autoconf/fortran.m4,
7990         * lib/autoconf/functions.m4, lib/autoconf/general.m4,
7991         * lib/autoconf/headers.m4, lib/autoconf/libs.m4,
7992         * lib/autoconf/programs.m4, lib/autoconf/specific.m4,
7993         * lib/autoconf/types.m4: When invoking AC_DEFINE and friends,
7994         specify to what the macro should be defined (typically to 1).
7996 2001-11-12  Akim Demaille  <akim@epita.fr>
7998         * lib/autoconf/functions.m4 (AC_FUNC_STRTOD): AC_SUBST POW_LIB.
7999         From Jim Meyering.
8001 2001-11-12  Akim Demaille  <akim@epita.fr>
8003         * lib/autoconf/programs.m4 (_AC_PROG_LEX_YYTEXT_DECL): Use
8004         AC_TRY_EVAL to run $LEX, not AC_TRY_COMMAND.  This validates the
8005         definition used by Automake where LEX is +/- "${missing} lex" and
8006         `missing' itself contains variables.
8008 2001-11-12  Akim Demaille  <akim@epita.fr>
8010         * lib/autotest/general.m4 (AT_INIT): Push KILL at the end.
8011         Now that M4sh pushes BODY, the comments were output at the end of
8012         the test suites.
8014 2001-11-08  Akim Demaille  <akim@epita.fr>
8016         * bin/autoreconf.in (&autoreconf): Run aclocal before tracing, so
8017         that we can trace macros from aclocal.m4.
8018         Trace AC_PROG_LIBTOOL, not AM_PROG_LIBTOOL, since the latter is
8019         obsoleted, and redirect to the former anyway.
8020         Reported by Ralf Corsepius.
8022 2001-11-08  Akim Demaille  <akim@epita.fr>
8024         * bin/autoreconf.in (&autoreconf): AC_CONFIG_SUBIDRS are to be
8025         processed only if present.
8026         * tests/torture.at (Configuring subdirectories): Use autoreconf
8027         instead of successive calls to autoconf.
8028         Add a nonexistent subdirectory to exercise the patch above.
8029         Reported by Ralf Corsepius.
8031 2001-11-08  Kevin Ryde  <user42@zip.com.au>
8033         * doc/autoconf.texi (Limitations of Usual Tools): Note HP-UX cc
8034         doesn't accept .S files.
8036 2001-11-07  Akim Demaille  <akim@epita.fr>
8038         * lib/m4sugar/m4sugar.m4 (m4_pattern_forbid): Accepts $2.
8039         * lib/autoconf/general.m4 (AC_INTI): Forbid LIBOBJS.
8040         (_AC_LIBOBJ): s/LIBOBJS/LIB@&t@OBJS/.
8041         * bin/autom4te.in (warn_forbidden): New.
8042         (handle_output): Use it.
8043         Read m4_pattern_forbid with messages.
8045 2001-11-05  Akim Demaille  <akim@epita.fr>
8047         * bin/autom4te.in (--normalize): Remove.
8048         * lib/autom4te.in: Adjust.
8050 2001-11-05  Akim Demaille  <akim@epita.fr>
8052         * tests/Makefile.am (testsuite): Rename this target as...
8053         ($(TESTSUITE)): this.
8054         From Nicolas Joly.
8056 2001-11-05  Alexandre Duret-Lutz  <duret_g@epita.fr>
8058         * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): When removing
8059         the --prefix option, also remove it's argument.
8061 2001-11-05  Akim Demaille  <akim@epita.fr>
8063         * doc/autoconf.texi (testsuite Invocation): Update.
8064         (Writing testsuite.at): Update.
8066 2001-11-03  Akim Demaille  <akim@epita.fr>
8068         * doc/autoconf.texi: s/@code/@command/ where appropriate.
8070 2001-11-03  Akim Demaille  <akim@epita.fr>
8072         * lib/Autom4te/General.pm: (&catfile, &canonfile)
8073         (&file_name_is_absolute): New, wrappers around routines from
8074         File::Spec.
8075         Use and export them.
8076         (&find_configure_ac): Optionally take a directory where to look at.
8077         * bin/autoreconf.in (&parse_args): Trim the configure.ac part of
8078         the arguments.
8079         Default @ARGV to `.', not find_configure_ac.
8080         (&autoreconf): Argument is a directory.
8081         Trace AC_CONFIG_SUBDIRS and schedule the subdirs for autoreconf'ing.
8082         * doc/autoconf.texi (autoreconf Invocation): Update.
8084 2001-11-03  Akim Demaille  <akim@epita.fr>
8086         * lib/Autom4te/General.pm (@export_vars, @export_subs)
8087         (@export_forward_subs): New.
8088         Add basename, dirname, and fileparse.
8089         (@EXPORT): Adjust.
8090         * bin/autoreconf.in (&autoreconf): Fix call to fileparse.
8091         Don't look for aclocal flags if we already know aclocal is not
8092         used.
8093         Move aclocal.m4t only if it exists.
8094         Reported by Ezra Peisach.
8096 2001-11-03  Akim Demaille  <akim@epita.fr>
8098         * bin/autoreconf.in (&parse_args): Work only on the configure.ac
8099         passed on command line, defaulting to ./configure.ac if present.
8100         (&maybe_autoreconf, File::Find): Remove, unused.
8101         (&autoreconf): If autoconf is not used, don't try to trace.
8103 2001-11-02  Akim Demaille  <akim@epita.fr>
8105         * configure.ac: Bump to 2.52g.
8107 2001-11-02  Akim Demaille  <akim@epita.fr>
8109         Version 2.52f.
8111 2001-11-02  Akim Demaille  <akim@epita.fr>
8113         * config/config.guess, config/config.sub, doc/standards.texi:
8114         * config/lispdir.m4: Update from masters.
8115         * configure.ac: Bump to 2.52f.
8117 2001-11-02  Akim Demaille  <akim@epita.fr>
8119         * bin/autoreconf.in (&autoreconf): Set `$aclocal_flags' to ''.
8120         Don't run aclocal when aclocal.m4 is not from aclocal.
8121         From Ezra Peisach.
8122         Don't run libtoolize and gettextize if --install is not given.
8124 2001-11-01  Paul Eggert  <eggert@twinsun.com>
8126         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): _AS_CR_PREPARE needs to
8127         be invoked before _AS_LINENO_PREPARE.
8128         (_AS_LINENO_PREPARE): Use as_cr_digits and as_cr_alnum rather
8129         than character ranges.
8131         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Fix NLS before
8132         invoking AS_BASENAME.  Set the locale variables to 'C' if
8133         possible, as POSIX requires this to get the traditional
8134         behavior.
8135         * doc/autoconf.texi (Special Shell Variables): Describe the above.
8137 2001-10-31  Paul Eggert  <eggert@twinsun.com>
8139         * lib/m4sugar/m4sh.m4 (_AS_LINENO_WORKS): Do not surround body
8140         with {}, as that triggers a bug in Bash 2.05.
8142         (_AS_LINENO_PREPARE): Use Sed rather than
8143         Awk.  Fix the sed prepass to work even if there are multiple
8144         instances of $LINENO on the same line.  Do not substitute for
8145         other variables like $LINENOT.  Do not check file dates; such a
8146         check is unreliable on sufficiently fast machines, and removing
8147         the check makes the code simpler and more reliable.  Check for
8148         output and chmod failures.
8150         * doc/autoconf.texi (Special Shell Variables): Document
8151         the above.
8153 2001-10-31  Akim Demaille  <akim@epita.fr>
8155         * tests/Makefile.am (atconfig): Remove this target, Automake
8156         handles it now.
8158 2001-10-31  Akim Demaille  <akim@epita.fr>
8160         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): Do not
8161         AC_CONFIG_FILES(atlocal) as it means a file atlocal.in *must* be
8162         provided, while it is optional.
8163         * configure.ac: Adjust.
8165 2001-10-26  Paul Eggert  <eggert@twinsun.com>
8167         * NEWS, README, configure.ac, lib/Autom4te/General.pm,
8168           lib/Autom4te/Struct.pm:
8169         Require Perl 5.005_03 instead of just 5.005, as some tests fail
8170         with 5.005_02.
8172         * doc/autoconf.texi (Special Shell Variables): Document some
8173         more LINENO gotchas, particularly with respect to the Awk+Sed hack.
8175         * lib/m4sugar/m4sh.m4 (_AS_LINENO_WORKS): New macro.
8176         (_AS_LINENO_PREPARE): Use it instead of shell eval, since
8177         eval $LINENO is not portable in practice.
8179 2001-10-24  Akim Demaille  <akim@epita.fr>
8181         * lib/Autom4te/General.pm (backname): New.
8183 2001-10-24  Akim Demaille  <akim@epita.fr>
8185         * m4/: Remove, merged into...
8186         * config/: here.
8188 2001-10-23  Tim Van Holder  <tim.van.holder@pandora.be>
8190         * doc/autoconf.texi (Shellology): Mention the problems with bash
8191         2.05's use of ANSI quoting in its `set' builtin.
8193 2001-10-22  Paul Eggert  <eggert@twinsun.com>
8195         * lib/autoconf/functions.m4 (AC_FUNC_STRERROR_R):
8196         Rename ac_cv_func_strerror_r_works to ac_cv_func_strerror_r_char_p,
8197         and rename HAVE_WORKING_STRERROR_R to STRERROR_R_CHAR_P, since
8198         POSIX decided to standardize on the int flavor of strerror_r.
8199         Always do char* test, as there's no reason not to.
8200         Assign to a char* var, to catch strerror_r that returns int*.
8202         * doc/autoconf.texi (Particular Functions):
8203         Document the above changes.  Also, document the fact that
8204         AC_FUNC_STRERROR_R defines HAVE_DECL_STRERROR_R.
8206         * NEWS: Mention HAVE_WORKING_STRERROR_R -> STRERROR_R_CHAR_P.
8208 2001-10-20  Akim Demaille  <akim@epita.fr>
8210         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): The name of
8211         the executable was missing from the log.
8213 2001-10-20  Akim Demaille  <akim@epita.fr>
8215         * lib/Autom4te/General.pm (&update_file): If destination is
8216         unchanged, remove the source.
8217         (&up_to_date_p): Don't be verbose, be debug.
8218         * bin/autoreconf.in: No longer support --m4dir.
8219         (&autoreconf): Display the full path of the configure.ac we are
8220         studying.
8221         Trace it only once.
8222         Be sure to honor --force with gettextize.
8223         Always run aclocal.
8224         * doc/autoconf.texi: Adjust.
8226 2001-10-20  Akim Demaille  <akim@epita.fr>
8228         * bin/autoheader.in ($localdir, $m4, $SIMPLE_BACKUP_SUFFIX):
8229         Remove, dead.
8230         * bin/autoreconf.in (&autoreconf): Do not run gettextize when
8231         `intl' is already present, as it refuses unless --force.
8232         (&parse_args): Use -I, --include instead of the old Autoconf
8233         options.
8234         ($localdir, $autoconf_dir): Remove.
8235         (@include): New.
8236         (&maybe_autoreconf): New, to preserve $_ for File::Find.
8238 2001-10-19  Jens Petersen  <petersen@redhat.com>
8240         * lib/autoconf/programs.m4 (AC_PROG_AWK): Prefer gawk to mawk.
8241         * doc/autoconf.texi (Particular Programs): Likewise.
8243 2001-10-19  Akim Demaille  <akim@epita.fr>
8245         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES): Name the generated
8246         file in @configure_input@.
8247         Don't mention `automatically' in addition to `generated'.
8248         * tests/torture.at (#define header templates): Adjust.
8250 2001-10-19  Akim Demaille  <akim@epita.fr>
8252         * lib/emacs/autoconf-mode.el, lib/emacs/autotest-mode.el: In a
8253         comment, explain how to install automatic mode selection.
8254         From Russ Allbery.
8256 2001-10-19  Ezra Peisach  <epeisach@zif.mit.edu>
8258         * bin/autoreconf.in (autoreconf): Display the path to the
8259         configure.ac being studied.
8261 2001-10-18  Paul Eggert  <eggert@twinsun.com>
8263         * lib/autoconf/types.m4 (AC_CHECK_SIZEOF): Cast sizeof to unsigned
8264         long, to work around a bug in the HP C compiler version HP92453-01
8265         B.11.11.23709.GP.
8267         * lib/m4sugar/m4sh.m4 (AS_DIRNAME): Use 'dirname' if that works.
8268         (AS_BASENAME_EXPR): New macro.
8269         (AS_BASENAME_SED): Do not assume GNU sed semantics.
8270         (AS_BASENAME): Use 'basename' if that works; then try 'expr';
8271         and fall back on 'sed' only if the other two fail.  This makes
8272         AS_BASENAME act more like AS_DIRNAME.
8273         (as_me): Shell-quote the argument of AS_BASENAME, in case $0
8274         contains white space.
8275         * lib/autoconf/general.m4 (_AC_INIT_SRCDIR):
8276         Use AS_DIRNAME, since I think it's now DOS-friendly.
8277         * tests/m4sh.at (DIRNAME_TEST): New arg $3.
8278         Allow "dirname //FOO" to return either / or //, as POSIX allows
8279         either behavior.
8281 2001-10-10  Akim Demaille  <akim@epita.fr>
8283         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Recognize
8284         `a_out.exe' for OpenVMS 7.1, DEC C 5.5 compiler, via GNV.
8285         From Eric Sharkey.
8287 2001-10-10  Akim Demaille  <akim@epita.fr>
8289         * lib/m4sugar/m4sh.m4 (_AS_ECHO_N_PREPARE): m4_defun, not
8290         m4_define, since...
8291         (_AS_ECHO_N): AS_REQUIREs it.
8293 2001-10-10  Akim Demaille  <akim@epita.fr>
8295         * lib/autoconf/general.m4 (_AC_INCLUDES_DEFAULT_REQUIREMENTS)
8296         (AC_INCLUDES_DEFAULT): Move to...
8297         * lib/autoconf/headers.m4: here.
8298         * lib/autoconf/types.m4: Comment changes.
8299         * doc/autoconf.texi: Specify where the default includes are used
8300         in the macro prototypes.
8302 2001-10-09  Akim Demaille  <akim@epita.fr>
8304         * lib/autoconf/autoconf.m4 (m4_patsubst, m4_regexp): New
8305         transition code.
8307 2001-10-08  Akim Demaille  <akim@epita.fr>
8309         * bin/autoreconf.in (&autoreconf): Remove debugging code.
8310         (&parse_args): Pass verbosity/debugging options to subtools when
8311         --debug, not when --verbose.
8312         * lib/autom4te.in (Autoreconf-preselections): New.
8313         (Autoconf): Use it.
8315 2001-10-08  Akim Demaille  <akim@epita.fr>
8317         * bin/autoreconf.in (autoreconf): Run libtoolize when appropriate.
8319 2001-10-08  Akim Demaille  <akim@epita.fr>
8321         * doc/autoconf.texi (autoreconf Invocation): Adjust.
8322         * bin/autoreconf.in (autoreconf): Run gettextize when appropriate.
8324 2001-10-08  Akim Demaille  <akim@epita.fr>
8326         * tests/tools.at (AT_CHECK_PERL_SYNTAX): Check autoreconf.
8327         (Syntax of the shell scripts): Don't.
8328         * bin/autoheader.in, bin/autom4te.in, bin/autoreconf.in: Don't
8329         bother with $force since...
8330         * lib/Autom4te/General.pm: does.
8332 2001-10-08  Akim Demaille  <akim@epita.fr>
8334         * bin/autoreconf.in: Rewrite in Perl.
8335         * configure.ac: Adjust.
8336         * lib/Autom4te/General.pm (&up_to_date_p): New.
8337         * bin/autom4te.in (&up_to_date_p): Use it.
8338         Rename as...
8339         (&up_to_date): this.
8341 2001-10-08  Akim Demaille  <akim@epita.fr>
8343         * lib/m4sugar/m4sugar.m4 (m4_case, m4_bmatch, m4_normalize)
8344         (m4_list_cmp): Use $0 to reinvoke yourself.
8345         (m4_patsubsts): New.
8346         (m4_strip, m4_version_unletter): Use it.
8347         * tests/atspecific.m4 (AT_DATA_M4SUGAR, AT_DATA_M4SH): Likewise.
8349 2001-10-08  Akim Demaille  <akim@epita.fr>
8351         * lib/autoconf/autoconf.m4, lib/autoconf/general.m4,
8352         * lib/autoconf/libs.m4, lib/autoconf/status.m4,
8353         * lib/autoconf/types.m4, lib/autotest/general.m4,
8354         * lib/m4sugar/m4sh.m4, lib/m4sugar/m4sugar.m4, tests/atspecific.m4,
8355         * tests/torture.at: Rename m4_regexp, m4_patsubst, and m4_match to
8356         m4_bregexp, m4_bpatsubst, and m4_bmatch.
8357         * doc/autoconf.texi (Redefined M4 Macros): Adjust.
8359 2001-10-08  Akim Demaille  <akim@epita.fr>
8361         * lib/m4sugar/m4sh.m4: Use AS_REQUIRE.
8363 2001-10-08  Akim Demaille  <akim@epita.fr>
8365         * lib/m4sugar/m4sh.m4 (AS_DIRNAME_EXPR): Use AS_REQUIRE.
8366         * tests/tools.at (AT_DATA_FORBIDDEN): Rename/move/duplicate to...
8367         * tests/atspecific.m4 (AT_DATA_M4SUGAR, AT_DATA_M4SH): here.
8368         * tests/tools.at, tests/m4sh.at: Use it.
8369         * tests/m4sh.at: Don't rely on Autoconf macros.
8370         (DIRNAME_TEST): Also exercise the expr variant.
8371         * tests/m4sugar.at, tests/atspecific.m4 (AT_CHECK_M4SUGAR): The
8372         preferred M4sugar extension is now `.4s'.
8373         * tests/README: Remove.
8375 2001-10-08  Akim Demaille  <akim@epita.fr>
8377         * lib/m4sugar/m4sugar.m4 (m4_provide_ifelse): Rename as...
8378         (m4_provide_if): this.
8379         * lib/m4sugar/m4sh.m4 (AS_REQUIRE): New.
8380         * lib/autoconf/general.m4 (AS_DEFUN, AC_DEFUN_ONCE, AC_BEFORE)
8381         (AC_REQUIRE, AC_PROVIDE, AC_PROVIDE_IFELSE): Be exact copy of the
8382         M4sugar peer, i.e., drop the `AC_PROVIDE_$1' broken marker.
8384 2001-10-08  Akim Demaille  <akim@epita.fr>
8386         Use `add-log-current-defun-function' for ChangeLog creation.
8387         Suggested by Tom Tromey.
8389         * lib/emacs/autotest-mode.el (autotest-mode-map): New.
8390         (autotest-mode): Adjust.
8391         * lib/emacs/autoconf-mode.el (autoconf-mode-map): Modernize, map
8392         'comment-region onto `C-c ;'.
8393         Comments are `#', not `dnl'.
8394         (autoconf-current-defun): New.
8395         (autoconf-font-lock-keywords): Recognize `m4_defun'.
8397 2001-10-08  Akim Demaille  <akim@epita.fr>
8399         * lib/autoconf/general.m4 (_m4_divert(BODY)): Move to...
8400         * lib/m4sugar/m4sh.m4: here.
8401         (AS_INIT): Push the BODY diversion, set the #! /bin/sh line.
8402         * lib/autoconf/general.m4 (AC_PLAIN_SCRIPT) : Remove.
8403         (AT_INIT): Replace AC_PLAIN_SCRIPT with AS_INIT invocation,
8404         include handle the m4_pattern_*, no longer push the
8405         BODY diversion nor set the /bin/sh line, AS_INIT does it.
8406         * lib/autotest/general.m4 (AT_INIT): Likewise.
8407         * tests/base.at: Adjust the tests to use AS_INIT.
8408         * tests/tools.at (AT_DATA_FORBIDDEN): New.
8409         (autoconf: forbidden tokens): Adjust to work on M4sh instead of
8410         Autoconf.
8412 2001-10-07  Paul Eggert  <eggert@twinsun.com>
8414         * doc/autoconf.texi (config.status Invocation):
8415         CONFIG_SHELL defaults to a shell that supports LINENO if available.
8417         * lib/m4sugar/m4sh.m4 (_AS_LINENO_PREPARE): If the current
8418         shell does not support LINENO, and if CONFIG_SHELL is unset or
8419         empty, and if we can find a shell that does support LINENO,
8420         then set CONFIG_SHELL to that shell and then re-execute
8421         ourselves with CONFIG_SHELL.
8423 2001-10-05  Paul Eggert  <eggert@twinsun.com>
8425         * tests/Makefile.am (clean-local): Don't invoke $(TESTSUITE) if it
8426         doesn't exist.  Remove *.tmp, as a .tmp file is created during the
8427         build of $(TESTSUITE).
8429 2001-10-05  Akim Demaille  <akim@epita.fr>
8431         * lib/m4sugar/m4sh.m4 (_AS_LINENO_PREPARE): Look in the path
8432         iff we are a bareword.
8433         Reported by Raja R Harinath.
8435 2001-10-05  Akim Demaille  <akim@epita.fr>
8437         * tests/m4sh.at (LINENO): New.
8438         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Be sure to set
8439         PATH_SEPARATOR before using it.
8440         Fix the absolute path case/esac pattern.
8441         Provide $0 as fallback for as_myself.
8442         Reported by Raja R Harinath.
8444 2001-10-05  Akim Demaille  <akim@epita.fr>
8446         * Makefile.am, config/Makefile.am, lib/emacs/Makefile.am,
8447         * m4/Makefile.am, man/Makefile.am: Add/adjust MAINTAINERCLEANFILES.
8449 2001-10-05  Akim Demaille  <akim@epita.fr>
8451         * lib/m4sugar/m4sh.m4 (_AS_LINENO_PREPARE): New, extracted from...
8452         (AS_SHELL_SANITIZE): here.  Use it.
8453         (_AS_LINENO_PREPARE): Preserve the exit status of $0.lineno.
8454         From Paul Eggert.
8456 2001-10-04  Akim Demaille  <akim@epita.fr>
8458         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Use a portable
8459         combination of Awk and sed to replace $LINENO.
8461 2001-10-02  Paul Eggert  <eggert@twinsun.com>
8463         * doc/autoconf.texi (Limitations of Builtins): You can't use
8464         "source"; it's not portable.  Remove confusing and
8465         somewhat-incorrect example involving "." and "/".
8467         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): "source" -> ".", for
8468         compatibility with POSIX shells.
8470 2001-10-02  Akim Demaille  <akim@epita.fr>
8472         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Just source 40.lineno
8473         instead of exec'ing to preserve $0 and $@.
8475 2001-10-01  Akim Demaille  <akim@epita.fr>
8477         * tests/testsuite (AT_INIT) <at_pass_list>: New.
8478         Don't run twice the same test.
8480 2001-10-01  Akim Demaille  <akim@epita.fr>
8482         * lib/autotest/general.m4 (AT_INIT) <--help>: Catch up with reality.
8483         No longer output the list of tests.
8484         <--list>: New option.
8485         <--full-help>: Remove.
8486         Complete the short/long options duality.
8487         Various small adjustments.
8489 2001-10-01  Akim Demaille  <akim@epita.fr>
8491         * doc/autoconf.texi: Use @kbd for user input.
8492         Always use `$' as shell prompt.
8494 2001-09-30  Paul Eggert  <eggert@twinsun.com>
8496         * lib/autoconf/status.m4 (AC_OUTPUT_MAKE_DEFS):
8497         Don't use nested parenthesization.  This patch was originally
8498         suggested to bug-autoconf by Philippe De Muyter on 2000-05-28,
8499         but somehow it didn't get incorporated then.
8500         * doc/autoconf.texi (Limitations of Usual Tools):
8501         Clarify remark about sed and nested parenthesization.
8503         * lib/autoconf/types.m4 (AC_CHECK_SIZEOF):
8504         Report an error if the size cannot be determined even though
8505         the type exists.
8506         * lib/autoconf/general.m4 (_AC_COMPUTE_INT_COMPILE):
8507         Check for `expr' arithmetic overflow, and for compilation failure,
8508         and invoke a new argument $4 if either is discovered.
8509         This makes _AC_COMPUTE_INT_COMPILE more like _AC_COMPUTE_INT_RUN.
8510         (_AC_COMPUTE_INT): Pass IF-FAILS arg to _AC_COMPUTE_INT_COMPILE.
8512 2001-09-28  Akim Demaille  <akim@epita.fr>
8514         * lib/emacs/autoconf-mode.el, lib/emacs/autotest-mode.el: New.
8515         * m4/lispdir.m4: New.
8516         * aclocal.m4, configure.ac: Adjust.
8518 2001-09-28  Akim Demaille  <akim@epita.fr>
8520         * lib/autotest/general.m4 (AT_VICTIMS): Rename as...
8521         (AT_TESTED): this.
8522         (AT_INIT): More the wrapped section to where it will be expanded.
8523         Output `AT_tested' only when existing.
8524         Catch unexpanded PACKAGE_STRING and PACKAGE_BUGREPORT.
8526 2001-09-27  Akim Demaille  <akim@epita.fr>
8528         Fix the passing of $? to ACTION-IF-FAILED in AC_TRY_RUN, that
8529         generates too many bug reports.
8531         * lib/autoconf/general.m4 (_AC_RUN_IFELSE): Pass the right exit
8532         status when executing the ACTION-IF-FALSE.
8533         * tests/base.at (AC_TRY_*): Rename as...
8534         (AC_TRY_COMMAND): this.
8535         (AC_RUN_IFELSE): New.
8536         * tests/compile.at (Extensions, C keywords)
8537         (AC_PROG_CPP requires AC_PROG_CC, GNU Fortran 77)
8538         (Broken/missing compilers, AC_PROG_CPP with warnings)
8539         (AC_PROG_CPP without warnings, AC_PROG_CPP via CC): Move to...
8540         * tests/c.at (Extensions, C keywords)
8541         (Broken/missing compilers, AC_PROG_CPP with warnings)
8542         (AC_PROG_CPP without warnings, AC_PROG_CPP via CC)
8543         (AC_PROG_CPP requires AC_PROG_CC): here and...
8544         * tests/fortran.at (GNU Fortran 77): there.
8545         * doc/autoconf.texi (autoconf Invocation): Fix the example:
8546         AC_TRY_RUN is about compilation, not shell commands.
8547         (Test Programs): AC_TRY_RUN works as used to be advertised.
8549 2001-09-27  Akim Demaille  <akim@epita.fr>
8551         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Fix bugs spotted by
8552         Raja R Harinath:
8553         Be sure to detect when $LINENO always returns the same value.
8554         Look for the original script, basename($0) is certainly not
8555         enough.
8556         Pass the CLI arguments to `$as_me.lineno'.
8558 2001-09-25  Akim Demaille  <akim@epita.fr>
8560         * lib/autotest/general.m4 (AT_INIT): Dump the whole config.log.
8561         Be sure the close and reopen the LOG fd before and after using tee
8562         to extend the log.
8563         <at_tests_pattern>: Adjust to the new format of at_help_all.
8565 2001-09-23  Akim Demaille  <akim@epita.fr>
8567         * bin/autom4te.in (parse_args): There can be several invocations
8568         of --language now.
8570 2001-09-23  Akim Demaille  <akim@epita.fr>
8572         * doc/autoconf.texi (Top): Wrap in @ifnottex.
8574 2001-09-23  Akim Demaille  <akim@epita.fr>
8576         * lib/autoconf/status.m4 (_AC_SRCPATHS): Compute and provide
8577         ac_buildpath, ac_top_buildpath, ac_srcpath, and ac_top_srcpath.
8578         (_AC_OUTPUT_FILES): Also substitute srcpath, top_srcpath,
8579         builddir, buildpath, top_builddir, and top_buildpath.
8580         (_AC_OUTPUT_SUBDIRS): Compute the dir variables *before* changing
8581         the current directory.
8582         * lib/autoconf/general.m4 (_AC_INIT_HELP): Compute the dir
8583         variables *before* changing the current directory.
8584         Skip nonexistent dirs.
8585         * doc/autoconf.texi (Preset Output Variables): Document these
8586         variables.
8588         * lib/autotest/general.m4: Do not reset AT_victims.
8589         Don't compute at_srcdir nor at_top_srcdir.
8591         * tests/tools.at: Hence use top_srcdir.
8593         * tests/Makefile.am, tests/autoconf, tests/autoheader,
8594         * tests/autom4te, tests/autoreconf, tests/autoupdate, tests/ifnames:
8595         Remove.
8596         * tests/autoreconf.in, tests/wrappl.in, tests/autom4te.in,
8597         * tests/wrapsh.in, tests/autoupdate.in: New.
8598         * tests/Makefile.am (DISTCLEANFILES, EXTRA_DIST): Adjust.
8599         * configure.ac: Build the position independent wrappers.
8601         * man/Makefile.am: Now that test wrappers are position
8602         independent, use them and drop dark envvar magic.
8604 2001-09-23  Akim Demaille  <akim@epita.fr>
8606         * doc/autoconf.texi (Common Shell Constructs): Rename as...
8607         (Programming in M4sh): this.
8608         Promote to @section.
8610 2001-09-23  Akim Demaille  <akim@epita.fr>
8612         * lib/autotest/general.m4 (AT_INIT): Dump config.log last.
8613         Pass $at_debug_args to the rerun test suite.
8614         * lib/m4sugar/Makefile.am (DISTCLEANFILES): New.
8615         * bin/Makefile.am (ETAGS_SH): Don't use characters ranges.
8616         From Paul Eggert.
8618 2001-09-23  Akim Demaille  <akim@epita.fr>
8620         * bin/autom4te.in (@my_warning): Remove, handled by `autom4te.cfg'.
8622 2001-09-23  Akim Demaille  <akim@epita.fr>
8624         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Fix shell
8625         over-escaping.
8627 2001-09-23  Akim Demaille  <akim@epita.fr>
8629         * lib/Autom4te/General.pm (&debug): New.
8630         * bin/autom4te.in ($language): Move to...
8631         (parse_args): here.
8632         Handle --language in languages.
8633         * lib/autom4te.in (Automake-selections, Autoheader-selections)
8634         (Autoscan-selections): New.
8635         (Autoconf): Adjust.
8637 2001-09-23  Tim Van Holder  <tim.van.holder@pandora.be>
8639         * m4/auxdir.m4, m4/cond.m4, m4/depend.m4, m4/init.m4,
8640         * m4/install-sh.m4, m4/missing.m4, m4/sanity.m4, m4/strip.m4: Updated
8641         to match current versions from CVS Automake.
8643 2001-09-23  Alexandre Duret-Lutz  <duret_g@epita.fr>
8645         * doc/autoconf.texi (Special Shell Variables): Add pdksh output
8646         for $LINENO.
8648 2001-09-22  Akim Demaille  <akim@epita.fr>
8650         * lib/autoconf/autotest.m4: Create `package.m4'.
8651         * tests/Makefile.am (package.m4): Remove.
8653 2001-09-22  Akim Demaille  <akim@epita.fr>
8655         Rely on `$LINENO' when possible instead of `__oline__'.
8657         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Provide some form of
8658         `$LINENO' support replacement when not supported.
8659         (_AS_CR_PREPARE, _AS_TR_CPP_PREPARE, _AS_TR_SH_PREPARE): Invoke
8660         them explicitly to be sure they are not output before this section
8661         (via m4_require).  Cosmetic only.
8662         * lib/autoconf/c.m4, lib/autoconf/general.m4,
8663         * lib/autoconf/programs.m4: Replace all the occurrences of
8664         `__oline__' with `$LINENO'.
8665         * doc/autoconf.texi (Special Shell Variables): Document LINENO.
8667 2001-09-21  Tim Van Holder  <tim.van.holder@pandora.be>
8669         * lib/autoconf/functions.m4 (_AC_FUNC_FORK): Replaceded an 8-bit
8670         character (u: -> ue) in a code comment.
8671         (AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK): Only run 'ln -s' if we know
8672         it works.
8674 2001-09-21  Akim Demaille  <akim@epita.fr>
8676         * Makefile.maint (AUTOM4TE): Neutralize autom4te.
8677         Suggested by Jim Meyering.
8679 2001-09-20  Tim Van Holder  <tim.van.holder@pandora.be>
8681         * lib/autoconf/programs.m4: Use extensions listed in
8682         $ac_executable_extensions when looking for programs.
8684 2001-09-20  Tim Van Holder  <tim.van.holder@pandora.be>
8686         * lib/autoconf/general.m4: Fix a small Englisho.
8687         * lib/autoconf/status.m4: Fix a small typo.  Handle DOS paths when
8688         setting up ac_dir_suffix and ac_top_builddir.
8689         * lib/m4sugar/m4sh.m4: Default CDPATH to $PATH_SEPARATOR, not ':'.
8691 2001-09-20  Tim Van Holder  <tim.van.holder@pandora.be>
8693         * doc/autoconf.texi (File System Conventions): Clarify the use of
8694         PATH_SEPARATOR.
8695         (Special Shell Variables[PATH_SEPARATOR]): Ditto.
8696         (Special Shell Variables[CDPATH]): Mention that $PATH_SEPRATOR should
8697         be used instead of ':'.
8698         * lib/autotest/general.m4: Replace occurrences of ':' in
8699         AUTOTEST_PATH with $PATH_SEPARATOR at test suite startup.
8701 2001-09-20  Tim Van Holder  <tim.van.holder@pandora.be>
8703         * tests/atgeneral.m4: Add basic support for test ranges (e.g. 7-34) as
8704         arguments.  Fixed a typo.
8706 2001-09-20  Tim Van Holder  <tim.van.holder@pandora.be>
8708         * man/Makefile.am (.x.1): Use @PATH_SEPARATOR@, not ':' to set up
8709         $PATH.  Also set AUTOM4TE_CFG, so we can process autom4te properly.
8711 2001-09-20  Tim Van Holder  <tim.van.holder@pandora.be>
8713         * bin/autoscan.in: Add 'exec-perl-if-not-run-by-perl'.
8714         * bin/autoupdate.in: Ditto.
8715         * bin/autoheader.in: Reworded a few comments.
8716         * bin/autoconf.in: Reworded help text for a few options.
8717         * bin/autoheader.in, bin/autom4te.in, bin/autoreconf.in,
8718         * bin/autoscan.in, bin/autoupdate.in: Ditto.
8720 2001-09-20  Tim Van Holder  <tim.van.holder@pandora.be>
8722         * lib/Autom4te/XFile.pm (open): Simplified the error message (we
8723         already have $file).  Set output files to binary mode (helps avoid
8724         CR issues on DOSish systems).
8726 2001-09-19  Akim Demaille  <akim@epita.fr>
8728         * lib/autotest/general.m4: Englishoes.
8729         From Tim Van Holder and Alexey Mahotkin.
8731 2001-09-18  Paul Eggert  <eggert@twinsun.com>
8733         * doc/autoconf.texi (Common Shell Constructs): New node,
8734         documenting AS_DIRNAME.
8735         (Limitations of Usual Tools): Refer to it when discussing dirname.
8736         Also, update discussion of POSIX standard to reflect latest draft.
8738         * lib/autoconf/c.m4:
8739         (AC_LANG_INT_SAVE(C)): Also support negative values, down to LONG_MIN.
8741         * lib/autoconf/general.m4 (_AC_COMPUTE_INT_COMPILE):
8742         Do not pass a first argument with leading '-'
8743         to expr, by parenthesizing initial integers that might be negative.
8745         * doc/autoconf.texi (Particular Functions): AC_FUNC_GETPGRP
8746         now merely checks whether it is an error to pass an argument
8747         to getpgrp.
8749         * lib/autoconf/functions.m4 (_AC_FUNC_GETPGRP_TEST): Remove.
8750         (AC_FUNC_GETPGRP): Don't bother with a runtime test.  Just check
8751         whether it is a (compile-time) error to pass an argument to
8752         getpgrp.  This simpler test supports the revised documentation,
8753         and is all that AC_FUNC_GETPGRP's users really need.
8755 2001-09-18  Akim Demaille  <akim@epita.fr>
8757         * doc/autoconf.texi (Limitations of Make) <$<>: New.
8759 2001-09-18  Akim Demaille  <akim@epita.fr>
8761         * doc/autoconf.texi (Limitations of Usual Tools) <find>: More about
8762         `{}'.
8763         * lib/autotest/general.m4 (AT_INIT): Adjust.
8765 2001-09-18  Paul Wagland  <paul@wagland.net>
8767         * tests/m4sh.at: Ensure that AS_DIRNAME handles '/', '//' and '///'
8768         correctly.
8769         Add test for AS_BASENAME.
8770         * lib/m4sugar/m4sh.m4: Fix AS_BASENAME so that it passes the previous
8771         added test. It now correctly handles /1/2/3/, returning '3' not ''.
8772         Added AS_BASENAME_SED to make the interface the same as AS_DIRNAME.
8773         * tests/base.at: Fixed the expected responses. The old ones were
8774         one line out...
8775         * lib/autoconf/general.m4: Fixed AC_PREFIX_PROGRAM, it now behaves as
8776         the documentation claims it should (and how it behaved in 2.13).
8778 2001-09-18  Akim Demaille  <akim@epita.fr>
8780         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): No INIT-CMDS in
8781         the AC_CONFIG_COMMANDS invocation.
8782         This also solves the name clash problems.
8783         Don't set the package's ID.
8784         * lib/m4sugar/Makefile.am (version.m4): Revamp.
8785         No longer to be shipped.
8786         (version.in): Remove.
8787         * lib/m4sugar/m4sugar.m4, lib/autoconf/general.m4,
8788         * lib/autoconf/status.m4: Adjust.
8789         Use `m4_PACKAGE_STRING'.
8790         * lib/autotest/general.m4 (AT_INIT): N-th signature change: now
8791         the only optional argument is the name of the test suite.
8792         Expect `package.m4' to define the package signature.
8793         * lib/autom4te.in (Autotest): Add `package.m4?'.
8794         * tests/Makefile.am (package.m4): New.
8795         * tests/suite.at: ifnames is a victim.
8797 2001-09-18  Akim Demaille  <akim@epita.fr>
8799         * lib/autom4te.in (Autoconf): Preselect AM_CONDITIONAL,
8800         AC_LIBSOURCE, AC_CONFIG_FILES.
8801         * lib/autotest/general.m4 (AT_INIT): Don't abort when a tested
8802         program version string doesn't match the package's.
8803         * lib/autoconf/general.m4 (AC_CACHE_VAL): Reestablish the space
8804         after `(cached)'.
8806 2001-09-17  Paul Eggert  <eggert@twinsun.com>
8808         * lib/autoconf/c.m4: (AC_LANG_INT_SAVE(C)):
8809         Allow expression to return any value that can fit into unsigned long
8810         (not int, as before).  Check for output errors.
8812 2001-09-17  Bruno Haible  <haible@ilog.fr>
8814         * lib/autoconf/c.m4: (AC_LANG_INT_SAVE(C)):
8815         Always include <stdio.h> and <stdlib.h>. Evaluate
8816         the expression in an extra function before these includes. Call
8817         fprintf "%d" only after ensuring the argument is of type 'int'.
8818         Reported by Wayne Chapeskie <waynec@spinnaker.com>.
8820 2001-09-17  Paul Eggert  <eggert@twinsun.com>
8822         Fix bug reported by Paul Townsend on AIX 4.3.3.0 with CFLAGS=-O4
8823         or CFLAGS=-O5.  In that case, the linker has a relaxed view of
8824         fatal errors, and AC_CHECK_LIB causes it to include libraries even
8825         when they don't exist.
8827         * lib/autoconf/headers.m4 (AC_HEADER_DIRENT): Use AC_SEARCH_LIBS,
8828         not AC_CHECK_LIB, so that we don't use -ldir or -lx if we don't
8829         need it.
8831         * lib/autoconf/specific.m4 (AC_ISC_POSIX): Replace the old, crufty
8832         version with the version used by fileutils 4.1, except use
8833         AC_SEARCH_LIBS, not AC_CHECK_LIB, so that we don't use -lcposix if
8834         we don't need it.
8836         * doc/autoconf.texi (AC_ISC_POSIX): Describe new behavior.
8838 2001-09-13  Akim Demaille  <akim@epita.fr>
8840         * tests/base.at, tests/m4sh.at: Be sure to issue the bangshe line
8841         _first_.
8842         Reported by Gerrit P. Haase.
8844 2001-09-13  Akim Demaille  <akim@epita.fr>
8846         * lib/autotest/general.m4 (AT_INIT): Reset `AT_victims' so that
8847         m4_defn'ing is valid.
8849 2001-09-13  Akim Demaille  <akim@epita.fr>
8851         * lib/m4sugar/m4sugar.m4 (m4_append_uniq): New.
8852         * lib/autotest/general.m4 (AT_VICTIMS, AT_KEYWORDS, _AT_CLEANUP_FILE):
8853         Use it.
8855 2001-09-13  Akim Demaille  <akim@epita.fr>
8857         * lib/m4sugar/m4sugar.m4 (_AS_QUOTE_IFELSE, _AS_BOX_INDIR): Use
8858         m4_match.
8859         (m4_re_escape): New.
8860         * lib/autoconf/status.m4 (AC_CONFIG_IF_MEMBER): Use it.
8861         * lib/autoconf/general.m4 (AC_CACHE_SAVE): Use m4_match.
8862         * lib/autoconf/status.m4 (AC_CONFIG_IF_MEMBER, AC_CONFIG_LINKS):
8863         Likewise.
8864         * lib/autoconf/types.m4 (_AC_CHECK_TYPE_REPLACEMENT_TYPE_P)
8865         (_AC_CHECK_TYPE_MAYBE_TYPE_P, AC_CHECK_MEMBER): Likewise.
8866         * lib/autotest/general.m4 (AT_INIT): Rename AT_TESTS_ALL as
8867         AT_tests_all for consistency.
8868         Set at_victims.
8869         (AT_VICTIMS): Similar to AT_KEYWORDS.
8870         (_AT_CLEANUP_FILE_IF): Use m4_match and m4_re_escape.
8872 2001-09-13  Akim Demaille  <akim@epita.fr>
8874         * lib/autotest/general.m4 (AT_INIT): Fix stupid bugs.
8876 2001-09-13  Akim Demaille  <akim@epita.fr>
8878         * lib/autotest/general.m4 (AT_INIT): Create and remove
8879         `$as_me.[0-9]+' instead of `debug-[0-9]+.sh', so that multiple
8880         test suites can cohabit.
8882 2001-09-13  Akim Demaille  <akim@epita.fr>
8884         * tests/mktests.sh: Don't output banners for empty test files.
8886 2001-09-13  Akim Demaille  <akim@epita.fr>
8888         Test suites can be run independently of configure.
8890         * lib/m4sugar/m4sh.m4 (_AS_ECHO, _AS_ECHO_N_PREPARE): New.
8891         * lib/autoconf/programs.m4 (_AC_PROG_ECHO): Remove.
8892         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Adjust: AC_SUBST
8893         ECHO_N etc.
8894         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): Don't ask for at_n
8895         and at_c.
8896         * lib/autotest/general.m4: Use ECHO_*.
8898 2001-09-13  Akim Demaille  <akim@epita.fr>
8900         * bin/ifnames.in: Rewrite in Perl.
8901         * configure.ac: Don't look for AWK.
8902         * tests/tools.at (AWK portability): Remove.
8903         (Syntax of the shell scripts): Don't check ifnames.
8904         (AT_CHECK_PERL_SYNTAX): New.
8905         (Syntax of the Perl scripts): Check ifnames.
8906         * tests/ifnames: New.
8908 2001-09-13  Akim Demaille  <akim@epita.fr>
8910         * lib/autotest/general.m4 (AT_INIT): Let --keywords also match
8911         test group titles.
8912         * tests/atspecific.m4 (AT_CHECK_AU_MACRO): AT_KEYWORDS(autoupdate).
8913         Remove all the other keywords.
8915 2001-09-10  Akim Demaille  <akim@epita.fr>
8917         * lib/autotest/general.m4 (AT_INIT): Remove the diversion HELP and
8918         SETUP: no longer used.
8919         Support -k, --keywords.
8920         <at_help>: Be `no', `short', or `long'.
8921         <at_help_all>: New variable.
8922         (AT_KEYWORDS): New.
8923         (AT_CLEANUP_FILE_IFELSE, AT_CLEANUP_FILE): Rename as...
8924         (_AT_CLEANUP_FILE_IF, _AT_CLEANUP_FILE): these.
8925         (_AT_CLEANUP_FILE_IF): Simplify the regexp.
8926         (AT_SETUP): Reset AT_line, AT_keywords, AT_description.
8927         No longer fill the HELP diversion.
8928         (AT_CLEANUP): Use them.
8929         * lib/m4sugar/m4sugar.m4 (m4_append): Support a separator.
8930         (m4_list_append): Remove.
8932         Spread a few keywords in the Autoconf test suite.
8934 2001-09-10  Akim Demaille  <akim@epita.fr>
8936         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): Don't pass
8937         PATH_SEPARATOR, let M4sh compute it.
8938         * lib/m4sugar/m4sh.m4 (_AS_PATH_SEPARATOR_PREPARE): New.
8939         * lib/autoconf/programs.m4 (AC_SHELL_PATH_WALK): Use PATH_SEPARATOR.
8940         Move to...
8941         * lib/m4sugar/m4sh.m4 (_AS_PATH_WALK): Here.
8942         Simplify when the path is not a literal.
8943         (AS_UNAME): Use it to report PATH.
8944         * lib/autoconf/general.m4 (_AC_INIT_PREPARE_FS_SEPARATORS): Remove.
8945         (_AC_INIT_DEFAULTS): AC_SUBST PATH_SEPARATOR.
8946         * lib/autoconf/programs.m4 (AC_PROG_INSTALL): Use _AS_PATH_WALK.
8947         * lib/autotest/general.m4 (AT_INIT): Use _AS_PATH_WALK to
8948         normalize the path, and to look for victims.
8949         * tests/semantics.at (AC_PATH_PROG & AC_PATH_PROGS)
8950         (AC_CHECK_PROG & AC_CHECK_PROGS): Use PATH_SEPARATOR.
8952 2001-09-07  Akim Demaille  <akim@epita.fr>
8954         * bin/autom4te.in (&handle_m4): `< /dev/null' so that GNU M4 1.5
8955         doesn't neutralize SIGINT, making autoconf etc. non interruptible.
8956         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): Move the package
8957         related variables into `at_package_*'.
8958         * lib/autotest/general.m4 (AT_VICTIMS): New.
8959         (AT_INIT): Adjust for stand-alone/embedded test suites.
8960         (AS_MESSAGE_LOG_FD): Define and use it.
8961         * tests/suite.at (AT_VICTIMS): Use it.
8962         * tests/tools.at (autoupdating AC_PREREQ): Don't depend upon
8963         at_version.
8965 2001-09-07  Akim Demaille  <akim@epita.fr>
8967         Move toward possibly stand-alone test suites.
8969         * lib/autotest/general.m4: Stop displaying srcdir everywhere as,
8970         in addition, it introduces useless differences in logs.
8971         (AT_INIT): Let atconfig and atlocal be both optional.
8972         Adjust PATH computation.
8973         * lib/m4sugar/m4sh.m4 (AS_UNAME): More readable display of PATH.
8975 2001-09-07  Akim Demaille  <akim@epita.fr>
8977         * lib/autoconf/Makefile.am (autoconf.m4f): Depends upon
8978         m4sugar/version.m4.
8980 2001-09-05  Akim Demaille  <akim@epita.fr>
8982         * lib/autoconf/c.m4 (AC_LANG_BOOL_COMPILE_TRY(C)): Use `_array_'
8983         to avoid GCC warnings.
8984         From Uwe Seimet.
8986 2001-09-05  Akim Demaille  <akim@epita.fr>
8988         * bin/autom4te.in: --language is -l, not -s.
8990 2001-09-05  Akim Demaille  <akim@epita.fr>
8992         Be ready to handle filenames as stupid as `dnl.at', for if even
8993         the maintainer is dumb enough to do that...
8995         * lib/autotest/general.m4 (AT_SETUP, AT_LINE): Demonstrates your
8996         excellence in M4 quotation: consider `__file__' is active.
8998         And BTW, when invoking m4, pass the --include in the right order:
8999         the wrong one.
9001         * bin/autom4te.in, bin/autoupdate.in: Use reverse when kingtal to
9002         4m.
9004 2001-09-05  Akim Demaille  <akim@epita.fr>
9006         * lib/Autom4te/XFile.pm: New lib file.
9007         * bin/autoupdate.in, bin/autoscan.pl, bin/autom4te.in,
9008         * bin/autoheader.in: Use it.
9010 2001-09-05  Akim Demaille  <akim@epita.fr>
9012         * bin/autoupdate.in (&handle_m4_macros) <unm4.m4>: Undefine iff
9013         defined.
9015 2001-09-05  Akim Demaille  <akim@epita.fr>
9017         * lib/Autom4te/General.pm (&getopt): Work around the `-' Getopt bug.
9018         * bin/autoheader.in, bin/autoupdate.in (&parse_args): Adjust.
9020         * bin/autoscan.in: Use `getopt' and `find_files' etc.
9021         Add -I, --include support.
9022         * doc/autoconf.texi (autoscan Invocation): Adjust.
9024 2001-09-05  Akim Demaille  <akim@epita.fr>
9026         CVS GNU M4 doesn't like `undefine(undefined)'.
9028         * bin/autoupdate.in (&handle_m4_macros, &handle_autoconf_macros):
9029         New, extracted from main.
9030         Use IO::File wherever possible.
9031         (input.m4): Be constant, use -I instead of hard coding $tmp.
9032         Therefore be a quoted heredoc.
9033         Don't invoke `_au_disable', since ac was not loaded, but just
9034         `unm4.m4'.
9036 2001-08-31  Akim Demaille  <akim@epita.fr>
9038         Version 2.52d.
9040 2001-08-31  Akim Demaille  <akim@epita.fr>
9042         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Fix the
9043         previous patch.
9044         * tests/atspecific.m4 (AT_CHECK_AUTOHEADER): Can create `config.hin~'.
9046 2001-08-31  Akim Demaille  <akim@epita.fr>
9048         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): DU 5.0 has
9049         serious problems handling heredocs in heredocs.
9050         Reported by Nicolas Joly.
9052 2001-08-31  Akim Demaille  <akim@epita.fr>
9054         * doc/autoconf.texi: Don't promote non `m4_*' M4 macros.
9055         (Making testsuite Scripts): Update.
9057 2001-08-31  Akim Demaille  <akim@epita.fr>
9059         * lib/Makefile.am (CLEANFILES): Add autom4te.cfg.
9061 2001-08-31  Akim Demaille  <akim@epita.fr>
9063         * doc/autoconf.texi (Quadrigraphs): Document `@&t@'.
9064         (testsuite Scripts): There is no such thing as `atconfig.in'.
9065         And actually one diagram is missing: test suite runtime.
9067 2001-08-31  Akim Demaille  <akim@epita.fr>
9069         * lib/Autom4te/General.pm (&find_file): Browse the includes in the
9070         inverse order.
9072 2001-08-31  Akim Demaille  <akim@epita.fr>
9074         * bin/autoupdate.in (@include): `installcheck' revealed the path
9075         to m4sugar was lacking!
9077 2001-08-31  Akim Demaille  <akim@epita.fr>
9079         * man/Makefile.am (.x.1): We really have to pass
9080         autom4te_perllibdir.
9082 2001-08-31  Akim Demaille  <akim@epita.fr>
9084         * lib/autotest/general.m4 (AT_INIT): Don't pass all the args to
9085         debug scripts, in particular passing explicitly listed tests to
9086         run is stupid.
9088 2001-08-31  Akim Demaille  <akim@epita.fr>
9090         * bin/autom4te.in (&parse_args): Strip `.' from `@include'.
9091         * bin/autoupdate.in: Use --include, -I, and --force, -f, too.
9092         Use directly autom4te, not autoconf.
9093         * tests/autoupdate: $top_srcdir/lib is needed too for melt files.
9095 2001-08-31  Akim Demaille  <akim@epita.fr>
9097         * tests/semantics.at (AC_C_BIGENDIAN): Missing eol.
9098         * bin/autoheader.in (%symbol): Strip arguments of macros.
9100 2001-08-31  Akim Demaille  <akim@epita.fr>
9102         * doc/autoconf.texi: Catch up -I, --include changes.
9104 2001-08-31  Akim Demaille  <akim@epita.fr>
9106         * bin/autom4te.in (&parse_args): Die on unknown languages.
9107         * bin/autoheader.in: Run directly autom4te --mode=autoconf, no
9108         need for autoconf.
9109         Promote --include over --macrodir and other obsolete options.
9111 2001-08-31  Akim Demaille  <akim@epita.fr>
9113         * lib/Autom4te/General.pm ($version, $help, &getopt): New.
9114         * bin/autoupdate.in, bin/autoheader.in, bin/autom4te.in: Use them.
9115         * bin/autom4te.in ($autoconf): Pass --force.
9116         `print $out' doesn't print `$_' but `$out'.
9117         * tests/tools.at (Syntax of the Perl scripts): Pass the lib dir.
9118         (autoheader): Pass --force since the test suite goes too fast for
9119         the time stamps.
9120         Adjust to the new autoheader messages.
9122 2001-08-31  Akim Demaille  <akim@epita.fr>
9124         * bin/autoheader.in: Handle the acconfig.h etc. junk files.
9125         Check the completeness of the #template.
9126         * lib/Autom4te/General.pm (&update_file): s/remove/unlink/.
9127         * tests/semantics.at (AC_C_BIGENDIAN): Adjust AT_CHECK_AUTOHEADER
9128         invocation.
9130 2001-08-31  Akim Demaille  <akim@epita.fr>
9132         * lib/Autom4te/General.pm (&find_file, &update_file): New.
9133         * bin/autoupdate.in, bin/autoheader.in: Adjust.
9134         Drop AC_MACRODIR dead for real.
9135         * tests/atspecific.m4 (AT_CHECK_AUTOHEADER): Now autoheader says
9136         `autoheader: `config.hin' is created'.
9137         * tests/tools.at (Syntax of the Perl scripts): Check autoheader.
9139 2001-08-31  Akim Demaille  <akim@epita.fr>
9141         * bin/autoheader.in: Rewrite in Perl.
9142         * tests/autoheader: Adjust.
9144 2001-08-31  Akim Demaille  <akim@epita.fr>
9146         * bin/autoconf.in (--include, -I): New option.
9147         Map --localdir, --autoconf-dir onto it.
9148         Forward autom4te's options instead of interpreting them.
9149         * bin/autoconf.in, bin/autoheader.in (AC_MACRODIR, autoconf_dir):
9150         There is no such envvar since the inception of autom4te.cfg.
9151         * bin/autom4te.in (&parse_args): Uniquify `@include'.
9152         * bin/autoupdate.in: Adjust, and perform more control.
9153         * tests/atspecific.m4 (AT_CHECK_AUTOCONF): Adjust.
9154         * tests/autoconf: Dittowise.
9156 2001-08-31  Akim Demaille  <akim@epita.fr>
9158         * bin/autoconf.in: Don't bother with `acsite.m4' and `aclocal.m4'.
9159         * bin/autom4te.in (&find_file): Support `FILE?' standing for
9160         optionally `FILE'.
9161         Use -e, not -f, since /dev/null for instance is OK.
9162         (&parse_args): Adjust.
9163         * lib/autom4te.in (Autoconf): Add `acsite.m4?' and `aclocal.m4?'.
9165 2001-08-31  Akim Demaille  <akim@epita.fr>
9167         * configure.ac: Also find tested executables in bin.
9168         * bin/autoconf.in, bin/autoheader.in, bin/autoreconf.in,
9169         * bin/autoscan.in, autoupdate.in: Use exclusively the name of the
9170         installed peer executables, only PATH is allowed to resolve it.
9171         Pass `autoconf_dir' via options, not via invisible envvars.
9172         * lib/Autom4te/General.pm (&find_peer): Remove.
9173         * lib/autotest/general.m4 (AT_INIT): `AUTOTEST_PATH=a:b' gives
9174         `abuild:asrc:bbuild:bsrc', not `abuild:bbuild:asrc:bsrc'.
9175         * man/Makefile.am: Let help2man rely on PATH instead of trying to
9176         find the executables for it.
9177         * tests/Makefile.am: Major cleanup.  Too lazy to document...
9178         * tests/atlocal.in: Remove all the obscure envvar manipulations.
9179         We only need PERL.
9180         * tests/atspecific.m4, tests/tools.at: Passing --localdir is
9181         indeed related to running the test suite, while passing
9182         --autoconf-dir and others is related to running non installed
9183         Autoconf executables.  So don't do that, leave it to...
9184         * tests/autoconf, tests/autoheader, tests/autom4te, tests/autoupdate,
9185         * tests/autoscan: New.
9186         * tests/atspecific.m4 (AT_CHECK_M4SUGAR, AT_CHECK_M4SH): Don't
9187         refer to library files: rely on --language.
9189 2001-08-29  Akim Demaille  <akim@epita.fr>
9191         * bin/autom4te.in, lib/autom4te.in, bin/autoconf.in:
9192         s/--set/--language/.
9194 2001-08-29  Akim Demaille  <akim@epita.fr>
9196         * doc/autoconf.texi: Strip the @nodes.
9197         Suggested by Paul Eggert.
9198         (Initializing configure): Typo.
9200 2001-08-29  Akim Demaille  <akim@epita.fr>
9202         * bin/autom4te.in (&handle_output): s/@__@/@&t@/.
9203         Suggested by Paul Eggert.
9205 2001-08-29  Akim Demaille  <akim@epita.fr>
9207         * Makefile.maint (do-po-update): Wget refuses to overwrite files:
9208         download in a tmp dir.
9210 2001-08-29  Akim Demaille  <akim@epita.fr>
9212         * lib/autotest/general.m4: s/AT-devnull/devnull/ since there are
9213         case insensitive OSes out there :(
9214         From Tim Van Holder.
9216 2001-08-29  Akim Demaille  <akim@epita.fr>
9218         * lib/autom4te.in: New.
9219         * lib/Makefile.am (edit, autom4te.cfg): New.
9220         * bin/autom4te.in (BEGIN): Simplify.
9221         Rely on `AC_MACRODIR' in addition of `autom4te_perllibdir'.
9222         (&load_configuration): New.  Use it.
9223         (&parse_args): Support --mode, --set, and --melt.
9224         * bin/autoconf.in: Simplify and adjust.
9225         * tests/Makefile.am (AUTOMAKE): Use --set.
9226         * tests/atlocal.in: Adjust.
9227         * BUGS: distcheck and check are weak.
9229 2001-08-29  Akim Demaille  <akim@epita.fr>
9231         * lib/autotest/general.m4: Use
9232                 foo=`(command) 2>/dev/null`
9233         not
9234                 foo=`command` 2>/dev/null
9235         (at-devnull): Rename as...
9236         (AT-devnull): this.
9237         (--clean): Remove AT-* files too.
9238         * doc/autoconf.texi (Limitations of Usual Tools): Document `date'.
9239         Reported by Nicolas Joly.
9241 2001-08-28  Akim Demaille  <akim@epita.fr>
9243         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Don't use single
9244         quotes inside single quotes.
9245         Reported by Nicolas Joly.
9247 2001-08-28  Kevin Ryde  <user42@zip.com.au>
9249         * doc/autoconf.texi (Function Portability): Mention C right shifts.
9251 2001-08-27  Tim Van Holder  <tim.van.holder@pandora.be>
9253         * lib/autotest/general.m4: Reword some messages.
9254         (AT_INIT): Check for the `times' builtin before using it.
9255         Support test ranges as arguments to the testsuite.
9256         Have -e imply -d as the help text suggested.
9258 2001-08-27  Akim Demaille  <akim@epita.fr>
9260         * Makefile.maint: Formatting changes.
9261         (do-po-update, po-update, cvs-update, update): New targets.
9262         (AMTAR): Remove.
9264 2001-08-27  Akim Demaille  <akim@epita.fr>
9266         * lib/autotest/general.m4 (AT_INIT) <at_cmd_line>: Remove.
9267         <at_cmd_line>: New.
9268         Pass it to debug-*.sh scripts.
9269         <AUTOTEST_PATH>: May contain absolute dir names.
9271 2001-08-27  Akim Demaille  <akim@epita.fr>
9273         * lib/autotest/general.m4 (AT_INIT): Log the command line.
9274         Support `VAR=VAL' as arguments.
9275         Compute PATH _after_ the options processing, so that AUTOTEST_PATH
9276         may be set via the command line.
9278 2001-08-27  Akim Demaille  <akim@epita.fr>
9280         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): $2 defaults to $1.
9281         * lib/autotest/autotest.m4 (AT_INIT): Expand AUTOTEST_PATH into
9282         first the build dirs, then the src dirs.
9283         * configure.ac (AC_CONFIG_TESTDIR): Adjust.
9285 2001-08-27  Akim Demaille  <akim@epita.fr>
9287         * lib/autotest/general.m4 (AT_INIT): Output the definition of
9288         at_data_files earlier.
9289         (--clean, -c): New option.
9290         * tests/Makefile.am: Use this option.
9292 2001-08-27  Akim Demaille  <akim@epita.fr>
9294         * lib/autoconf/status.m4 (_AC_SRCPATHS): Rename `ac_dots' as
9295         `ac_top_builddir' to mimic Automake's vocabulary, which much more
9296         readable.
9297         Adjust callers.
9298         * doc/autoconf.texi (Configuration Actions): Document the vars
9299         available in commands.
9300         Emphasize the risks of collisions in init-cmds.
9302 2001-08-27  Akim Demaille  <akim@epita.fr>
9304         * doc/autoconf.texi (Input) <AC_INIT>: Move to..
9305         (Initializing configure): this new node.
9307 2001-08-27  Akim Demaille  <akim@epita.fr>
9309         * Makefile.am (EXTRA_DIST): INSTALL.txt is a dead hack.
9311 2001-08-27  Akim Demaille  <akim@epita.fr>
9313         * m4/atconfig.m4 (AT_CONFIG): Remove, replaced by...
9314         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): this.
9315         New file.
9316         * m4/Makefile.am (EXTRA_DIST): Oops, adjust...
9318 2001-08-27  Akim Demaille  <akim@epita.fr>
9320         * lib/autoconf/general.m4 (AU_DEFINE, AU_DEFUN, AU_ALIAS): Move
9321         to...
9322         * lib/autoconf/autoheader.m4: this new file.
9323         * lib/autoconf/general.m4 (AH_OUTPUT, AH_VERBATIM)
9324         (_AH_VERBATIM_OLD, AH_TEMPLATE, _AH_TEMPLATE_OLD, AH_TOP, AH_BOTTOM):
9325         Move to...
9326         * lib/autoconf/autoupdate.m4: this new file.
9328 2001-08-27  Akim Demaille  <akim@epita.fr>
9330         * lib/autoconf/status.m4 (_AC_SRCPATHS): New.
9331         (_AC_OUTPUT_LINKS, _AC_OUTPUT_FILES, _AC_OUTPUT_SUBDIRS): Use it.
9332         Standardize the var names (ac_sub_srcdir -> ac_srcdir, ac_subdir
9333         -> ac_dir).
9334         (_AC_OUTPUT_HEADERS): AS_DIRNAME always return a dir name.
9335         * lib/autoconf/general.m4 (_AC_INIT_HELP): Ditto.
9337 2001-08-27  Akim Demaille  <akim@epita.fr>
9339         * lib/autoconf/autoconf.m4 (AC_CONFIG_COMMANDS)
9340         (AC_CONFIG_COMMANDS_POST, AC_CONFIG_COMMANDS_PRE, AC_CONFIG_FILES)
9341         (AC_CONFIG_HEADER, AC_CONFIG_HEADERS, AC_CONFIG_IF_MEMBER)
9342         (AC_CONFIG_LINKS, AC_CONFIG_SUBDIRS, AC_FILE_DEPENDENCY_TRACE)
9343         (AC_LINK_FILES, AC_LIST_COMMANDS, AC_LIST_COMMANDS_COMMANDS)
9344         (AC_LIST_FILES, AC_LIST_FILES_COMMANDS, AC_LIST_HEADERS)
9345         (AC_LIST_HEADERS_COMMANDS, AC_LIST_LINKS, AC_LIST_LINKS_COMMANDS)
9346         (AC_OUTPUT, AC_OUTPUT_COMMANDS, AC_OUTPUT_COMMANDS_POST)
9347         (AC_OUTPUT_COMMANDS_PRE, AC_OUTPUT_MAKE_DEFS)
9348         (_AC_CONFIG_COMMANDS_INIT, _AC_CONFIG_DEPENDENCIES)
9349         (_AC_CONFIG_DEPENDENCY, _AC_CONFIG_UNIQUE, _AC_LINK_FILES_CNT)
9350         (_AC_LIST_SUBDIRS, _AC_OUTPUT_COMMANDS, _AC_OUTPUT_COMMANDS_CNT)
9351         (_AC_OUTPUT_COMMANDS_INIT, _AC_OUTPUT_CONFIG_STATUS)
9352         (_AC_OUTPUT_FILES, _AC_OUTPUT_HEADERS, _AC_OUTPUT_LINKS)
9353         (_AC_OUTPUT_SUBDIRS): Move to...
9354         * lib/autoconf/status.m4: this new file.
9355         * lib/autoconf/general.m4, lib/autoconf/Makefile.am: Adjust.
9356         * tests/Makefile.am, tests/suite.at: Adjust.
9358 2001-08-27  Akim Demaille  <akim@epita.fr>
9360         Automake 1.5.
9362         * Makefile.am (AUTOMAKE_OPTIONS): Add 1.5 and dist-bzip2.
9363         (AMTAR): Help automake define it.
9364         (INSTALL, install-data-hook): The INSTALL.txt trick is no longer
9365         needed, 1.5 can have a macro and a target with the same name.
9366         * m4/auxdir.m4, m4/cond.m4, m4/depend.m4, m4/install-sh.m4,
9367         * m4/strip.m4: New.
9368         * m4/init.m4, m4/sanity.m4: Update.
9369         * doc/Makefile.am (CLEANFILES): 1.5 knows the texi2dvi files.
9370         * lib/autoconf/Makefile.am, lib/autotest/Makefile.am,
9371         * lib/m4sugar/Makefile.am, lib/autoscan/Makefile.am,
9372         * lib/Autom4te/Makefile.am, man/Makefile.am: Use dist/nodist.
9374 2001-08-27  Akim Demaille  <akim@epita.fr>
9376         Provide a mean to ``AC_PREREQ'' for M4sugar, M4sh and Autotest.
9378         * lib/autoconf/version.in: Remove.
9379         * lib/m4sugar/version.in: New.
9380         * lib/m4sugar/m4sugar.m4 (m4_acversion, m4_version_prereq): New.
9381         Adjust callers.
9382         * bin/autoupdate.in: Distinguish M4sugar vs. Autoconf macros by
9383         the name of the directory they're in, instead of the filename,
9384         since version.m4 is now in m4sugar, but m4_acversion must not be
9385         classified as an Autoconf macro.
9386         ($input_m4): Don't qualify the path to m4sugar.
9387         Rather, pass autoconf_dir to m4.
9388         * tests/Makefile.am (testsuite): Remove -I top_srcdir, unneeded.
9389         * tests/suite.at: Require 2.52c.
9391 2001-08-27  Akim Demaille  <akim@epita.fr>
9393         testsuite.log should include config.log.
9395         * lib/autotest/autotest.m4: New.
9396         * lib/autotest/general.m4, tests/atspecific.m4: Adjust.
9397         * tests/suite.at : Adjust.
9398         (AT_INIT): Log config.log.
9399         * lib/m4sugar/m4sugar.m4 (m4_text_box): New.
9400         * lib/m4sugar/m4sh.m4 (_AS_BOX_LITERAL): Adjust.
9401         * lib/autoconf/general.m4 (_AC_INIT_CONFIG_LOG): Use them.
9402         (_AC_INIT_PREPARE): Fix the incredibly messy and buggy completion
9403         of config.log on traps.
9404         (_AC_OUTPUT_CONFIG_STATUS): Use AS_BOX.
9405         Use consistently `_ACEOF' for configure's here docs, and `_CSEOF'
9406         for config.status'.
9407         Open the log as soon as possible.
9408         Use the same log introduction as configure's.
9410 2001-08-22  Paul Eggert  <eggert@twinsun.com>
9412         * doc/autoconf.texi (Indices): New node.
9413         Move indices out of the top level menu and into this submenu.
9415 2001-08-22  Akim Demaille  <akim@epita.fr>
9417         * lib/autoconf/programs.m4 (_AC_PROG_LEX_YYTEXT_DECL): Use
9418         AC_TRY_COMMAND.
9419         (AC_DECL_YYTEXT): Fix the previous patch: it points to AC_PROG_LEX.
9421 2001-08-22  Akim Demaille  <akim@epita.fr>
9423         * lib/autoconf/general.m4 (AC_SHELL_PATH_WALK, AC_CHECK_PROG)
9424         (AC_CHECK_PROGS, AC_PATH_PROG, AC_PATH_PROGS, AC_CHECK_TOOL_PREFIX)
9425         (AC_PATH_TOOL, AC_CHECK_TOOL, AC_CHECK_TOOLS): Move to...
9426         * lib/autoconf/programs.m4: here.
9427         * lib/autoconf/specific.m4 (_AC_PROG_ECHO, AC_PROG_MAKE_SET)
9428         (AC_PROG_RANLIB, AC_PROG_YACC, AC_PROG_LEX, _AC_DECL_YYTEXT)
9429         (AC_PROG_INSTALL, AC_PROG_LN_S, AC_RSH): Move to...
9430         * lib/autoconf/programs.m4: here.
9431         (_AC_DECL_YYTEXT): Rename as...
9432         (_AC_PROG_LEX_YYTEXT_DECL): this.
9433         * lib/autoconf/autoconf.m4, lib/autoconf/Makefile.am
9434         * tests/Makefile.am, tests/suite.am: Adjust.
9436 2001-08-22  Akim Demaille  <akim@epita.fr>
9438         * lib/autoconf/general.m4 (AC_LIST_MEMBER_OF, AC_LINKER_OPTION):
9439         Move to...
9440         * lib/autoconf/fortran.m4 (_AC_LIST_MEMBER_IF, _AC_LINKER_OPTION):
9441         here.
9442         * lib/autoconf/general.m4 (AC_TRY_LINK_FUNC): Move to...
9443         * lib/autoconf/functions.m4: here.
9444         * lib/autoconf/general.m4 (AC_SEARCH_LIBS, AC_CHECK_LIB)
9445         (AH_CHECK_LIB): Move to...
9446         * lib/autoconf/libs: this new file.
9447         * lib/autoconf/specific.m4 (_AC_PATH_X_XMKMF, _AC_PATH_X_DIRECT)
9448         (_AC_PATH_X, AC_PATH_X, AC_PATH_XTRA): Move to...
9449         * lib/autoconf/libs.m4: here.
9450         * lib/autoconf/autoconf.m4, lib/autoconf/Makefile.am: Adjust.
9452 2001-08-22  Akim Demaille  <akim@epita.fr>
9454         * lib/m4sugar/m4sh.m4 (AS_MKDIR_P): Fail if fails.
9455         * lib/autoconf/general.m4 (_AC_OUTPUT_SUBDIRS): Adjust.
9456         (AC_SITE_LOAD): Better logging of config.site.
9458 2001-08-20  Akim Demaille  <akim@epita.fr>
9460         * configure.ac (AT_CONFIG): Fix the path.
9461         * m4/atconfig.m4 (AT_CONFIG): Don't use EOF but ATEOF so that 2.52
9462         can be used.
9464 2001-08-20  Alexandre Duret-Lutz  <duret_g@epita.fr>
9466         * lib/autoconf/c.m4 (AC_C_BIGENDIAN): Prepare the cross-compile
9467         program with AC_LANG_PROGRAM before feeding it to
9468         AC_COMPILE_IFELSE.  Cleanup grep usage.
9470 2001-08-20  Akim Demaille  <akim@epita.fr>
9472         * ChangeLog, ChangeLog.0, ChangeLog.1, ChangeLog.2, AUTHORS, BUGS,
9473         * NEWS, README, README-alpha, TODO, tests/README: This package is
9474         `Autoconf', not `autoconf' (the executable).
9476 2001-08-20  Akim Demaille  <akim@epita.fr>
9478         Info readers seem to need `Index' in the index node title :(
9480         * doc/autoconf.texi: Reverse the 2001-08-15 change which
9481         simplified index node names.
9483 2001-08-20  Akim Demaille  <akim@epita.fr>
9485         * lib/autoconf/general.m4 (_AC_INIT_PACKAGE): Warn if the
9486         arguments are not literals.
9487         * doc/autoconf.texi (Input) <AC_INIT>: Arguments must be literals.
9488         Specify the output variables, and macros defined.
9490 2001-08-20  Akim Demaille  <akim@epita.fr>
9492         * doc/autoconf.texi (Examining Declarations) <AC_TRY_CPP>:
9493         (Examining Syntax) <AC_TRY_COMPILE>
9494         (Examining Libraries) <AC_TRY_LINK>
9495         (Test Programs) <AC_TRY_RUN>: These macros double quote some of
9496         their arguments.
9497         Reported by Werner Lemberg.
9499 2001-08-20  Akim Demaille  <akim@epita.fr>
9501         * lib/autotest/general.m4 (AT_INIT): Compute top_builddir,
9502         top_srcdir and srcdir from at_topbuild_2_topsrc and at_testdir.
9503         Load atlocal late enough to dump it in the log.
9504         * m4/atconfig.m4 (AT_CONFIG): Pass them to atconfig.
9506 2001-08-20  Akim Demaille  <akim@epita.fr>
9508         * tests/torture.at (Configuring subdirectories): New test.
9509         * lib/autoconf/general.m4 (_AC_INIT_SRCDIR): Say what you are
9510         looking for.
9511         * m4/atconfig.m4: Be sure the let $[0] be expandable.
9512         (top_srcdir): Fix its computation.
9514 2001-08-20  Akim Demaille  <akim@epita.fr>
9516         * lib/autoconf/general.m4 (_AC_OUTPUT_COMMANDS): Say what you do.
9517         * m4/atconfig.m4 (AT_CONFIG): $1 is now the directory where the
9518         test suite lives.
9519         Create `atconfig' automagically.
9520         Configure atlocal.in if present.
9521         * tests/atconfig.in: Remove.
9522         * tests/atlocal.in: New.
9523         * tests/Makefile.am: Adjust.
9525 2001-08-20  Akim Demaille  <akim@epita.fr>
9527         Huh!?!?!  There are still some user EOF tags used, which prevents
9528         their use in AC_CONFIG_COMMANDS for instance...
9530         * lib/autoconf/general.m4, lib/autoconf/specific.m4,
9531         * lib/autotest/general.m4: Rename the EOF tags as `_ACEOF',
9532         `_CSEOF', or `_ATEOF', as appropriate.
9533         * lib/m4sugar/Makefile.am, lib/autoconf/Makefile.am,
9534         * lib/autotest/Makefile.am (check-local): Enforce this constraint.
9536 2001-08-20  Akim Demaille  <akim@epita.fr>
9538         * tests/base.at, tests/m4sh.at, tests/m4sugar.at,
9539         * tests/semantics.at, tests/tools.at, tests/torture.at:
9540         s/^AT_DATA\(([^][]+),/AT_DATA([$1],/.
9542 2001-08-20  Akim Demaille  <akim@epita.fr>
9544         Autotest invokes M4sh's initialization.
9546         * lib/autotest/general.m4: Adjust the diversion names.
9547         (AT_INIT): Run AS_INIT.
9548         Use the BINSH diversion to invoke /bin/sh.
9549         * tests/base.at, tests/m4sh.at, tests/m4sugar.at, tests/tools.at:
9550         * tests/torture.at: Respect M4sugar and M4sh macro name spaces.
9552 2001-08-20  Akim Demaille  <akim@epita.fr>
9554         Let M4sh have its own diversions.
9556         * lib/autoconf/general.m4 (_m4_divert(BINSH), _m4_divert(REVISION))
9557         (_m4_divert(NOTICE)): Rename as...
9558         * lib/m4sugar/m4msh.m4 (_m4_divert(BINSH), _m4_divert(HEADER-REVISION))
9559         (_m4_divert(HEADER-COMMENT)): these.
9560         (_m4_divert(HEADER-COPYRIGHT), _m4_divert(HEADER-COPYRIGHT)): New.
9561         (_m4_divert(NOTICE)): New, for Libtool.
9562         * lib/autoconf/general.m4 (_m4_divert(PREPARE)): Remove, replaced
9563         long ago with `_m4_divert(GROW)'.
9564         (AC_COPYRIGHT, AC_REVISION, _AC_INIT_NOTICE): Adjust.
9566 2001-08-20  Akim Demaille  <akim@epita.fr>
9568         * tests/base.at, tests/compile.at, tests/foreign.at,
9569         * tests/m4sh.at, tests/m4sugar.at, tests/mktests.sh,
9570         * tests/semantics.at, tests/suite.at, tests/tools.at,
9571         * tests/torture.at: Ask Autotest mode, not Autoconf mode.
9573 2001-08-20  Akim Demaille  <akim@epita.fr>
9575         * bin/autom4te.in (handle_output): Handle @__@.
9577 2001-08-20  Akim Demaille  <akim@epita.fr>
9579         * lib/autoconf/autoconf.m4, lib/autoconf/oldnames.m4,
9580         * lib/autotest/general.m4: Adjust the license.
9582 2001-08-17  Paul Eggert  <eggert@twinsun.com>
9584         * doc/autoconf.texi (Function Portability): Mention snprintf,
9585         following up on a suggestion by Kevin Ryde.
9587 2001-08-17  Akim Demaille  <akim@epita.fr>
9589         * doc/install.texi, doc/autoconf.texi: Use `autoconf', not
9590         `autoconf_manual', as texinfo.tex 2001-06-21.10 chokes on it.
9592 2001-08-17  Akim Demaille  <akim@epita.fr>
9594         * lib/autotest/general.m4 (AT_INIT): Refer to `$as_me.log', not
9595         `$0.log' as for projects where testsuite is in src, we'd have
9596         testsuite.log created in src.
9598 2001-08-17  Akim Demaille  <akim@epita.fr>
9600         * bin/autom4te.in (&parse_args): Recognize --normalize.
9602 2001-08-17  Akim Demaille  <akim@epita.fr>
9604         Start implementing the AC_CHECK_HEADER transition scheme.
9606         * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_NEW)
9607         (_AC_CHECK_HEADER_OLD, _AC_CHECK_HEADER_MONGREL): New.
9608         (AC_CHECK_HEADER): Use them.
9610 2001-08-17  Akim Demaille  <akim@epita.fr>
9612         * doc/autoconf.texi: Work around Texinfo buglets.
9613         (Transformation Rules): One example is enough, users are expected
9614         to have their brains on. And BTW, use DESTDIR.
9615         (dvar): New macro.  Use it.
9617 2001-08-17  Akim Demaille  <akim@epita.fr>
9619         * doc/autoconf.texi (Writing testsuite.at) <AT_CHECK>: Complete.
9620         * lib/autotest/general.m4 (AT_INIT): Use the relative dir when
9621         looking for ChangeLogs.
9623 2001-08-17  Akim Demaille  <akim@epita.fr>
9625         * bin/autom4te.in: --normalize is a new option.
9626         * bin/autoconf.in: Use it.
9628 2001-08-17  Akim Demaille  <akim@epita.fr>
9630         * bin/Makefile.am, lib/Autom4te/Makefile.am, lib/autoconf/Makefile.am
9631         * lib/autotest/Makefile.am, lib/m4sugar/Makefile.am: Add TAGS support.
9633 2001-08-16  Paul Eggert  <eggert@twinsun.com>
9635         * doc/autoconf.texi, doc/install.texi: Put copyright notice at
9636         start, not at end.
9638 2001-08-15  Akim Demaille  <akim@epita.fr>
9640         * doc/Makefile.am (fu): New index, can't use fn because of defmac.
9641         Use it.
9643 2001-08-15  Akim Demaille  <akim@epita.fr>
9645         * doc/autoconf.texi (pr): New index.
9646         (prindex, findex): Use, merge, and output them.
9647         (Environment Variable Index, Output Variable Index)
9648         (Preprocessor Symbol Index, Autoconf Macro Index, M4 Macro Index)
9649         (Autotest Macro Index): Rename as...
9650         (Environment Variables, Output Variables,Preprocessor Symbols)
9651         (Autoconf Macros, M4 Macros, Autotest Macros): these.
9652         * doc/install.texi: Use @command.
9653         (Environment Variables): Rename as...
9654         (Defining Variables): this.
9656 2001-08-15  Akim Demaille  <akim@epita.fr>
9658         * doc/autoconf.texi (Function Portability): sprintf's return
9659         value.
9660         From Kevin Ryde.
9662 2001-08-15  Akim Demaille  <akim@epita.fr>
9664         * Makefile.maint (CVS): New.
9665         (local-check): Run changelog-check. last.
9666         (alpha): Don't depend upon local-check, since...
9667         (cvs-dist): depends upon it.
9669 2001-08-15  Tim Van Holder  <tim.van.holder@pandora.be>
9671         * tests/Makefile.am: Use a clean-local rule to remove
9672         autom4te.cache (it's a directory, not a file.
9673         * Makefile.am: Ditto (but maintainer-clean-local).
9675 2001-08-15  Akim Demaille  <akim@epita.fr>
9677         * bin/autom4te.in (@m4_warning): New.
9678         (&handle_m4): Use it.
9679         * tests/m4sugar.at (m4_warn): Pass `-f' to autom4te to ensure the
9680         warnings are issued at each run.
9681         * tests/atspecific.m4 (AT_CHECK_M4SUGAR, AT_CHECK_M4SH): M4sugar
9682         is in the src tree.
9684 2001-08-15  Akim Demaille  <akim@epita.fr>
9686         * tests/atspecific.m4 (AT_CHECK_AUTOUPDATE): Perl is now required:
9687         don't waste time running `autoupdate --version' works.
9688         * tests/tools.at (autoupdating AC_PREREQ): Likewise.
9690 2001-08-13  Akim Demaille  <akim@epita.fr>
9692         * doc/autoconf.texi (ma): Rename this index as...
9693         (ac): this.
9695 2001-08-13  Akim Demaille  <akim@epita.fr>
9697         * Makefile.am: Remove dead code and dead comments.
9698         (pdf, html): New targets.
9699         * doc/autoconf.texi (Using Autotest): New chapter.
9700         * doc/Makefile.am (pdf): New targets.
9701         (CLEANFILES): Adjust.
9703 2001-08-13  Akim Demaille  <akim@epita.fr>
9705         * lib/autotest/general.m4 (AT_INIT): Log the start/stop dates and
9706         duration of the test suite.
9708 2001-08-12  Alexandre Duret-Lutz  <duret_g@epita.fr>
9710         * tests/semantics.at (AC_C_BIGENDIAN): Explicitelly save and load
9711         endianness for comparison instead of relying on AT_CHECK_ENV.
9713 2001-08-11  Paul Eggert  <eggert@twinsun.com>
9715         * doc/autoconf.texi, doc/install.texi: Add a copyright notice
9716         to the INSTALL file.
9718 2001-08-11  Paul Eggert  <eggert@twinsun.com>
9720         * NEWS: The autoconf manual now is distributed under the terms
9721         of the GNU Free Documentation License.
9723         * doc/autoconf.texi: Switch from old style copyright notice to FDL.
9724         Add an appendix "Copying This Manual" for the FDL.
9726         * doc/fdl.texi: New file, from
9727         <http://www.gnu.org/licenses/fdl.texi>.
9729         * doc/Makefile.am (autoconf_TEXINFOS): Add fdl.texi.
9731 2001-08-10  Paul Eggert  <eggert@twinsun.com>
9733         * AUTHORS, BUGS, ChangeLog, ChangeLog.0, ChangeLog.1,
9734         ChangeLog.2, GNUmakefile, Makefile.maint, NEWS, README,
9735         README-alpha, TODO, configure.ac, lib/autoconf/Makefile.am,
9736         m4/atconfig.m4, m4/init.m4, m4/m4.m4, m4/missing.m4,
9737         m4/sanity.m4, tests/README, tests/aclocal.m4,
9738         tests/atspecific.m4, tests/base.at, tests/compile.at,
9739         tests/foreign.at, tests/m4sh.at, tests/m4sugar.at,
9740         tests/semantics.at, tests/suite.at, tests/tools.at,
9741         tests/torture.at: Add copyright notice.
9743         * tests/mktests.sh: Update year in copyright notice.
9745 2001-08-12  Alexandre Duret-Lutz  <duret_g@epita.fr>
9747         * tests/semantics.at (AC_C_BIGENDIAN): New test.
9749 2001-08-11  Alexandre Duret-Lutz  <duret_g@epita.fr>
9751         * lib/autoconf/c.m4 (AC_C_BIGENDIAN): Handle ACTION-IF-TRUE,
9752         ACTION-IF-FALSE, and ACTION-IF-UNKNOWN.
9753         * doc/autoconf.texi (C Compiler Characteristics): Update
9754         documentation for AC_C_BIGENDIAN.
9756 2001-08-11  Alexandre Duret-Lutz  <duret_g@epita.fr>
9758         * lib/autoconf/c.m4 (AC_C_BIGENDIAN): Guess endianness by grep'ing
9759         magic values from an object file when cross-compiling.
9760         Based on code by Guido Draheim <Guido.Draheim@gmx.de>.
9762 2001-08-10  Akim Demaille  <akim@epita.fr>
9764         * bin/autom4te.in (&handle_output): Don't use `grep' with side
9765         effects.
9766         Suggested by Russ Allbery.
9768 2001-08-10  Ralf Corsepius  <corsepiu@faw.uni-ulm.de>
9770         * lib/autoconf/general.m4 (_AC_OUTPUT_SUBDIRS): Propagate the
9771         current $prefix to the sub-configures.
9773 2001-08-09  Tim Van Holder  <tim.van.holder@pandora.be>
9775         * lib/autoconf/lang.m4: Ignore *.xSYM when looking for an executable
9776         extension (needed on BeOS).  Reported by Guido van Rossum.
9778 2001-08-09  Akim Demaille  <akim@epita.fr>
9780         * bin/autom4te.in ($icache): Load it only if older than autom4te.
9782 2001-08-07  Akim Demaille  <akim@epita.fr>
9784         * lib/autotest/general.m4 (AT_INIT): All the `at-*' are to be
9785         removed.
9786         (at-setup-line): Huh?  Be a variable `at_setup_line', not a file.
9787         No need to remove the files before and after the each test, before
9788         each test and at the end of the suite is enough.
9789         Display only the children `times', not the shell's.
9790         If the test failed or was skipped, at-times is not available.
9792 2001-08-07  Akim Demaille  <akim@epita.fr>
9794         Always produce testsuite.log, including when there are no
9795         failures.  This helps getting information on skipped tests, and
9796         duration of the tests.  Err, implement the latter btw.
9798         * lib/autotest/general.m4 (AT_INIT): Set up fd 6 for the log.
9799         Dump information on the first run of each test.
9800         (AT_CLEANUP): Create `at-times' containing the duration of the
9801         test group.
9803 2001-08-07  Akim Demaille  <akim@epita.fr>
9805         The use of `dumpstat' revealed that `len' was used although it
9806         should not.  m4_text_wrap was using it, but in the Autoconf world
9807         where it is legal.  Hence (i) test M4sh in its own world, not
9808         Autoconf's, and (ii), ahem, fix the bug :)
9810         * lib/autotest/general.m4: Be sure the set good quotes, as tracing
9811         does not like `' instead of [].
9812         (AT_INIT): Forbid `^_?AT_'.
9813         And don't output such tokens.
9814         * tests/Makefile.am (CLEANFILES): Add `script', `script.s4g',
9815         `script.as', and `autom4te.cache'.
9816         Remove `empty' and `macro' which are no longer used.
9817         * tests/atspecific.m4 (AT_CHECK_M4SUGAR, AT_CHECK_M4SH): New.
9818         * tests/m4sugar.at: Use it.
9819         * lib/m4sugar/m4sugar.m4: Use `m4_len' not `len'.
9821 2001-08-07  Akim Demaille  <akim@epita.fr>
9823         * bin/autoconf.in, bin/autoheader.in: --force, -f is a new option.
9825 2001-08-07  Alexandre Duret-Lutz  <duret_g@epita.fr>
9827         * bin/autom4te.in (handle_output): Typo in quadrigraph substitution.
9829 2001-08-04  Akim Demaille  <akim@epita.fr>
9831         * lib/autoconf/functions.m4 (AC_FUNC_ALLOCA, AC_FUNC_ERROR_AT_LINE)
9832         (AC_FUNC_FSEEKO, AC_FUNC_OBSTACK): Use AC_LANG_IFELSE, not
9833         AC_TRY_LINK.
9834         * lib/autoconf/headers.m4 (AC_HEADER_MAJOR): Likewise.
9835         * lib/autoconf/fortran.m4 (_AC_LANG_PROGRAM_C_F77_HOOKS)
9836         (AC_F77_MAIN): Likewise.
9838 2001-08-04  Akim Demaille  <akim@epita.fr>
9840         Don't rely on M4sugar outputting the patterns in files, since we
9841         might process the output _without_ running m4, hence without these
9842         files.
9844         * lib/m4sugar/m4sugar.m4 (m4_init): No need for `m4_tmpdir'.
9845         * bin/autom4te.in (@Request::includes): Remove, unused.
9846         (@Request::source): Rename as...
9847         (@Request::input): this.
9848         (@preselect): Add `m4_pattern_forbid' and `m4_pattern_allow'.
9849         (&handle_output): Fetch the patterns from the traces.
9850         `$forbidden' and `$allowed' are constant: use m//o.
9851         (&handle_m4): M4sugar no longer wants `m4_tmpdir'.
9852         (m4_pattern_forbid, m4_pattern_allow): Adjust for tracing only.
9854 2001-08-04  Akim Demaille  <akim@epita.fr>
9856         `autoconf && autoheader' is sped up.  Now, speed up `autoheader &&
9857         autoconf', i.e., in addition to caching traces, cache the output.
9859         * bin/autom4te.in (Request::cache): Rename as...
9860         (Request::id): this.
9861         ($cache, $icache, $tcache, $ocache): New.
9862         (&handle_m4): Save M4 output in the cache instead of $tmp.
9863         (&handle_output): Adjust.
9864         (&up_to_date_p): Check that the output cache is up to date too.
9865         (top level): Run `&handle_m4' iff force or the cache is invalid.
9866         Run `&handle_output' if the output cache is more recent.
9868 2001-08-04  Akim Demaille  <akim@epita.fr>
9870         * bin/autom4te.in ($force): New.
9871         (&parse_args, &print_usage): -f, --force is a new option.
9872         (&handle_output): CPP directives might have spaces after `#'.
9873         (&parse_args): The first file only can be frozen.
9875 2001-08-04  Akim Demaille  <akim@epita.fr>
9877         Don't let autom4te compute the `include' traces several times:
9878         first check that the trace cache file is up to date, and then
9879         compare its timestamp with that of the output.
9881         * bin/autom4te.in, bin/autoupdate.in, bin/autoscan.in: Normalize
9882         the preamble.  Don't require 5.005 as Autom4te::General does it,
9883         and better yet (use `use', not `require'!).
9884         * lib/Autom4te/Struct.pm: Rename the last occurrences of
9885         Class::Struct as Autom4te::Struct.
9886         * lib/Autom4te/General.pm (File::stat): Use it.
9887         (&mtime): New, export it.
9888         * bin/autom4te.in: Use it.
9889         Declare `$req' is invalid if it is outdated.
9890         Don't declare it valid before saving it if something went wrong.
9892 2001-08-04  Akim Demaille  <akim@epita.fr>
9894         Autom4te shall not encode Autoconf data, and preselecting traces
9895         must be proposed to the users.
9897         * bin/autom4te.in (@required_trace): Remove.
9898         (@preselect): New.
9899         (&parse_args, &print_usage): -p, --preselect is a new option.
9900         (&up_to_date_p): Adjust.
9901         * bin/autoconf.in: Preselect some Autoconf macros.
9903 2001-08-04  Akim Demaille  <akim@epita.fr>
9905         * tests/tools.at (autoconf --trace: user macros): Check traces on
9906         macros invoked without arguments, and macros invoked with multiple
9907         lines arguments.
9909 2001-08-03  Alexandre Duret-Lutz  <duret_g@epita.fr>
9911         * bin/autom4te.in (handle_traces): Fix rewriting of traces without
9912         arguments.
9914 2001-08-03  Akim Demaille  <akim@epita.fr>
9916         * bin/autoconf.in ($@): Work around the usual sh bug.
9917         From Nicolas Joly.
9919 2001-08-03  Akim Demaille  <akim@epita.fr>
9921         Clean up the handling of the M4 builtins tracing exception.
9923         * bin/autom4te.in (Request::request): Don't complete M4 builtins
9924         trace requests.
9925         (@m4_builtins): Rename as...
9926         (@m4_builtin): this.
9927         (%m4_builtin_alternate_name): New.
9928         (&parse_args): Complete the trace requests with alternate names.
9929         (&handle_traces): Hence no longer do it here.
9930         (&trace_requests): Remove, unused.
9932 2001-08-03  Akim Demaille  <akim@epita.fr>
9934         * doc/autoconf.texi (Redefined M4 Macros): Document m4_exit,
9935         m4_if, and m4_wrap.
9937 2001-08-03  Akim Demaille  <akim@epita.fr>
9939         * lib/m4sugar/m4sugar.m4 (m4_init): Also forbid `_m4_*' tokens.
9940         (m4_divert_pop): Dump the whole diversion stack when a diversion
9941         mismatch happens.
9942         * bin/autom4te.in (&handle_output): Remember of the first
9943         occurrence of a possibly undefined macro, not the last.
9944         Complain about the possibly undefined macros in the same order as
9945         the appear in the output.
9946         * lib/autoconf/Makefile.am (autoconf.m4f): List its dependencies.
9947         * tests/tools.at (autoconf: forbidden tokens, basic)
9948         (autoconf: forbidden tokens, exceptions): No longer sort
9949         autoconf's stderr, as it is now deterministic.
9950         Check that `dnl' is caught.
9952 2001-08-01  Akim Demaille  <akim@epita.fr>
9954         * configure.ac: Bump to 2.52c.
9956 2001-08-01  Akim Demaille  <akim@epita.fr>
9958         Version 2.52b.
9960         * lib/Autom4te/Makefile.am (perllibdir): s/Autoconf/Autom4te/.
9962 2001-08-01  Akim Demaille  <akim@epita.fr>
9964         Version 2.52a.
9966 2001-08-01  Akim Demaille  <akim@epita.fr>
9968         * lib/Autom4te/General.pm: Use `carp' and `croak', not `warn' and
9969         `die'.
9970         (&END): New.
9971         * bin/autoconf.in, bin/autom4te.in, bin/autoupdate.in: Remove your
9972         `END', as `Autom4te::General::END' will be triggered.
9973         * bin/autoupdate.in, bin/autoscan.in: Improve error messages accuracy.
9974         * bin/autoupdate.in (File::Compare, File::Copy): Use them instead of
9975         system to run `mv', `rm', and `cmp'.
9977 2001-08-01  Akim Demaille  <akim@epita.fr>
9979         * lib/Autom4te/General.pm (&unique): New.
9980         * bin/autoscan.in (&output): Use it to issue trace requests once.
9982 2001-08-01  Akim Demaille  <akim@epita.fr>
9984         * lib/Autom4te/General.pm: New.
9985         * bin/autom4te.in (Autom4te::General): Use it.
9986         ($me, $tmp, $verbose, $debug, &mktmpdir, &verbose, &xsystem)
9987         (&find_configure_ac, &find_slave): Remove.
9988         * bin/autoscan.in: Likewise.
9989         * bin/autoupdate.in: Likewise.
9991 2001-08-01  Akim Demaille  <akim@epita.fr>
9993         * autoconf.in, autom4te.in, autoscan.in, ifnames.in,
9994         * autoheader.in, autoreconf.in, autoupdate.in: Move to...
9995         * bin: here, new directory.
9996         * lib/Autoconf: Rename as...
9997         * lib/Autom4te: this, to please case insensitive junkie OSes.
9999 2001-08-01  Akim Demaille  <akim@epita.fr>
10001         * autom4te.in ($m4): Handle the --nesting-limit.
10002         * autoconf.in (M4): Remove.
10004 2001-08-01  Akim Demaille  <akim@epita.fr>
10006         * autoconf.in ($AWK): Remove, no longer used.
10007         * test/tools.at: Use AT_CHECK_AUTOCONF.
10008         (AWK portability): Remove, for autoconf no longer uses AWK.
10009         (Syntax of the Perl scripts): New.
10010         * configure.ac: autoconf no longer needs an AWK with a good
10011         regexp engine.
10012         Use a static test on AC_PACKAGE_VERSION.
10013         * autom4te.in (&up_to_date_p): Output depends on the arguments.
10014         * lib/autoconf/Makefile.am: Ship version.m4, maintainer file.
10015         * tests/atconfig.in (PERL): New.
10017 2001-08-01  Akim Demaille  <akim@epita.fr>
10019         * lib/autoconf/lang.m4 (AC_LANG(C), AC_LANG_C, _AC_LANG_ABBREV(C))
10020         (AC_LANG(C++), AC_LANG_CPLUSPLUS, _AC_LANG_ABBREV(C++))
10021         (AC_LANG_SOURCE(C), AC_LANG_PROGRAM(C), AC_LANG_CALL(C))
10022         (AC_LANG_FUNC_LINK_TRY(C), AC_LANG_BOOL_COMPILE_TRY(C))
10023         (AC_LANG_INT_SAVE(C), _AC_ARG_VAR_CPPFLAGS, _AC_ARG_VAR_LDFLAGS)
10024         (AC_LANG_PREPROC(C), _AC_PROG_PREPROC_WORKS_IFELSE, AC_PROG_CPP)
10025         (AC_LANG_COMPILER(C), ac_cv_prog_gcc, AC_PROG_CC, _AC_PROG_CC_G)
10026         (AC_PROG_GCC_TRADITIONAL, AC_PROG_CC_C_O, AC_LANG_PREPROC(C++))
10027         (AC_PROG_CXXCPP, AC_LANG_COMPILER(C++), ac_cv_prog_gxx)
10028         (AC_PROG_CXX, _AC_PROG_CXX_G, _AC_PROG_CXX_EXIT_DECLARATION)
10029         (AC_PROG_CC_STDC, AC_C_CROSS, AC_C_CHAR_UNSIGNED, AC_C_LONG_DOUBLE)
10030         (AC_C_BIGENDIAN, AC_C_INLINE, AC_C_CONST, AC_C_VOLATILE)
10031         (AC_C_STRINGIZE, AC_C_PROTOTYPES): Move to...
10032         * lib/autoconf/c.m4: here, new file.
10034         * lib/autoconf/lang.m4 (AC_LANG(Fortran 77), AC_LANG_FORTRAN77)
10035         (_AC_LANG_ABBREV(Fortran 77), AC_LANG_SOURCE(Fortran 77))
10036         (AC_LANG_PROGRAM(Fortran 77), AC_LANG_CALL(Fortran 77))
10037         (AC_LANG_PREPROC(Fortran 77), AC_LANG_COMPILER(Fortran 77))
10038         (ac_cv_prog_g77, AC_PROG_F77, _AC_PROG_F77_G, AC_PROG_F77_C_O)
10039         (_AC_PROG_F77_V_OUTPUT, _AC_PROG_F77_V, AC_F77_LIBRARY_LDFLAGS)
10040         (AC_F77_DUMMY_MAIN, _AC_LANG_PROGRAM_C_F77_HOOKS, AC_F77_MAIN)
10041         (_AC_F77_NAME_MANGLING, AC_F77_NAME_MANGLING, AC_F77_WRAPPERS)
10042         (AC_F77_FUNC): Move to...
10043         * lib/autoconf/fortran.m4: here, new file.
10045 2001-08-01  Akim Demaille  <akim@epita.fr>
10047         * acfunctions.m4: Rename as...
10048         * lib/autoconf/functions.m4: this.
10049         * acgeneral.m4: Rename as...
10050         * lib/autoconf/general.m4: this.
10051         * acheaders.m4: Rename as...
10052         * lib/autoconf/headers.m4: this.
10053         * aclang.m4: Rename as...
10054         * lib/autoconf/lang.m4: this.
10055         * acoldnames.m4: Rename as...
10056         * lib/autoconf/oldnames.m4: this.
10057         * acspecific.m4: Rename as...
10058         * lib/autoconf/specific.m4: this.
10059         * actypes.m4: Rename as...
10060         * lib/autoconf/types.m4: this.
10061         * autoconf.m4: Rename as...
10062         * lib/autoconf/autoconf.m4: this.
10064         * m4sugar.m4: Rename as...
10065         * lib/m4sugar/m4sugar.m4: this.
10066         * m4sh.m4: Rename as...
10067         * lib/m4sugar/m4sh.m4: this.
10069         * tests/atgeneral.m4: Rename as...
10070         * lib/autotest/general.m4: this.
10072         * acfunctions: Rename as...
10073         * lib/autoscan/functions: this.
10074         * acheaders: Rename as...
10075         * lib/autoscan/headers: this.
10076         * acidentifiers: Rename as...
10077         * lib/autoscan/identifiers: this.
10078         * aclibraries: Rename as...
10079         * lib/autoscan/libraries: this.
10080         * acmakevars: Rename as...
10081         * lib/autoscan/makevars: this.
10082         * acprograms: Rename as...
10083         * lib/autoscan/programs: this.
10085 2001-08-01  Akim Demaille  <akim@epita.fr>
10087         * doc/autoconf.texi: Moving/deleting open files is not portable.
10088         Portability issues for `.' (source), and more information about sed.
10090 2001-07-25  Steven G. Johnson  <stevenj@alum.mit.edu>
10092         * aclang.m4 (AC_F77_LIBRARY_LDFLAGS): Ignore -libmil (on Solaris),
10093         which has a special meaning and is not a reference to libibmil.a.
10094         Reported by Matteo Frigo.
10096 2001-07-25  Pavel Roskin  <proski@gnu.org>
10098         * autom4te.in (mktmpdir): Strip trailing newline from mktemp
10099         output.
10101 2001-07-25  Akim Demaille  <akim@epita.fr>
10103         * autoconf.in: Try to define the variables before using them.
10104         * autom4te.in ($perllibdir): Use `$autom4te_perllibdir' as envvar
10105         instead of `$perllibdir'.
10106         * tests/atconfig.in ($autom4te_perllibdir): Export it.
10108 2001-07-25  Akim Demaille  <akim@epita.fr>
10110         * autoconf.in (ac_LF_and_DOT): Remove, unused.
10112 2001-07-24  Akim Demaille  <akim@epita.fr>
10114         Let autoconf use autom4te for traces.
10116         * autoconf.in ($task, task trace): Remove, merely pass --trace to
10117         autom4te.
10118         * autoheader.in: Don't pass `-' to autoconf, rather, a tmp file.
10119         (Because I found no way for autom4te to accept `-').
10120         * autom4te.in (&Request::request): Beware of M4 builtins.
10121         (END): Don't try to remove the content of an empty dir.
10122         (&parse_args): Default is `$f:$l:$n:$%', not `$f:$l:$n:$*'.
10123         (&handle_output): Set a default value to `$forbidden'.
10124         * autoupdate.in (&verbose, &xsystem): New, from autom4te.in.
10125         ($autoconf): Pass --debug and --verbose.
10126         * tests/atspecific.m4 (AT_CHECK_AUTOCONF): Clean up autom4te's
10127         cache.
10129 2001-07-24  Akim Demaille  <akim@epita.fr>
10131         Let autoconf use autom4te to create configure.
10133         * autoconf.in ($automate): New var.
10134         (task script): Use autom4te.
10135         * autom4te.in (File::Spec): Use it.
10136         (&find_file): New.
10137         (&parse_args): --warning is -W, not -w.
10138         Find the top level files.
10139         (&handle_m4): Pass the warnings flags.
10140         Don't report verbosely m4's failures, unless requested.
10141         (&handle_output): Don't complain for forbidden tokens in comments.
10142         Be sure to report all the forbidden tokens within a single line.
10143         (&trace_format_to_m4): Preserve `$_'.
10144         (&handle_traces): Sort the output macros.
10145         (&up_to_date_p): Find the files before trying to get its time stamp.
10147 2001-07-24  Akim Demaille  <akim@epita.fr>
10149         * Makefile.am: Ship, build and install Autom4te.
10150         (SUBDIRS): Add lib.
10151         * lib/Autoconf/Struct.pm: New, from Automake 1.5.
10152         * configure.in: Require Perl.
10153         * man/autom4te.in: New.
10155 2001-07-19  Paul Eggert  <eggert@twinsun.com>
10157         * doc/autoconf.texi (Cache Checkpointing): Use AC_MSG_ERROR in
10158         example, rather than (exit 1); exit (which isn't portable).
10160 2001-07-18  Akim Demaille  <akim@epita.fr>
10162         Version 2.52.
10164 2001-07-18  Akim Demaille  <akim@epita.fr>
10166         The C-Fortran 77 hooks are available only once AC_F77_DUMMY_MAIN
10167         was run, while they are needed also when it is expanded.
10168         Reported by Nicolas Joly.
10170         * aclang.m4 (AC_F77_DUMMY_MAIN): Define _AC_LANG_PROGRAM_C_F77_HOOKS.
10171         (AC_LANG_PROGRAM(C)): Use it instead of depending upon
10172         AC_F77_DUMMY_MAIN being expanded.
10174 2001-07-18  Akim Demaille  <akim@epita.fr>
10176         * configure.in: Bump to 2.51a.
10178 2001-07-17  Akim Demaille  <akim@epita.fr>
10180         Version 2.51.
10182 2001-07-17  Akim Demaille  <akim@epita.fr>
10184         * aclang.m4 (AC_F77_DUMMY_MAIN): Let the interface be more
10185         Autoconfy: $1 = action-if-found, $2 = action-if-not-found.
10187 2001-07-17  Akim Demaille  <akim@epita.fr>
10189         The runtime test for AC_FUNC_GETPGRP fails when prototypes are
10190         used.  Well, then use the prototypes when you can, and runtime as
10191         a last resort.
10192         Reported by Artur Frysiak
10194         * acfunctions.m4 (_AC_FUNC_GETPGRP_TEST): New.
10195         (AC_FUNC_GETPGRP): Use it.
10196         First try to compile with 0-ary or 1-ary calls.
10198 2001-07-17  Akim Demaille  <akim@epita.fr>
10200         * actypes.m4 (_AC_CHECK_TYPE_REPLACEMENT_TYPE_P): `foo_t' is a
10201         replacement type.
10202         From Paul Eggert.
10204 2001-07-17  Akim Demaille  <akim@epita.fr>
10206         * Makefile.maint: Sync. with cppi 1.10.
10208 2001-07-17  Akim Demaille  <akim@epita.fr>
10210         * aclang.m4 (AC_LANG_PROGRAM(C)): Output F77_DUMMY_MAIN only when
10211         AC_F77_DUMMY_MAIN has been run.
10212         From Pavel Roskin and Steven G. Johnson.
10214 2001-07-17  Akim Demaille  <akim@epita.fr>
10216         * configure.in: Rename as...
10217         * configure.ac: this.
10219 2001-07-17  Akim Demaille  <akim@epita.fr>
10221         * Makefile.am (INSTALL.txt): Don't use $@ and $< in non suffix
10222         rules.
10223         From Marc Espie.
10224         * Makefile.maint (release-archive-dir): Rename as...
10225         (release_archive_dir): this, so that it can be specialized in
10226         Makefile.
10228 2001-07-14  Akim Demaille  <akim@epita.fr>
10230         * configure.in: Bump to 2.50d.
10232 2001-07-14  Akim Demaille  <akim@epita.fr>
10234         Version 2.50c.
10235         * Makefile.maint (alpha): Typo.
10237 2001-07-14  Akim Demaille  <akim@epita.fr>
10239         * doc/autoconf.texi (Limitations of Make): Macro names and underscore.
10241 2001-07-14  Akim Demaille  <akim@epita.fr>
10243         * config/config.guess, config/config.sub, config/texinfo.tex
10244         * doc/standards.texi, doc/make-stds.texi: Update.
10246 2001-07-14  Akim Demaille  <akim@epita.fr>
10248         * Makefile.maint (cvs-check, cvs-tag-check, cvs-diff-check): New.
10250 2001-07-14  Akim Demaille  <akim@epita.fr>
10252         * Makefile.maint (maintainer-check): Rename as...
10253         (maintainer-distcheck): this.
10254         (changelog-check, static-check): New.
10255         Use them.
10257 2001-07-14  Kevin Ryde  <user42@zip.com.au>
10259         * doc/autoconf.texi (C++ Compilers Characteristics): Last resort
10260         for CXX is g++, not gcc.
10262 2001-07-14  Akim Demaille  <akim@epita.fr>
10264         * doc/autoconf.texi (Files): New subsection.
10266 2001-07-14  Akim Demaille  <akim@epita.fr>
10268         * doc/autoconf.texi (C Compiler, Fortran 77 Compiler): Be subsections
10269         of...
10270         (Generic Compiler Characteristics): this.
10271         (C++ Compiler): New subsection.
10273 2001-07-14  Akim Demaille  <akim@epita.fr>
10275         * autoscan.in: Use IO::File.
10276         Adjust all the routines to use it.
10277         ($log): New file (autoscan.log).
10278         (output): Dump detailed logs into $log, and a shortened version to
10279         stderr.
10280         (&scan_makefile): Refine the regexp catching tokens in the code.
10281         * doc/autoconf.texi (autoscan Invocation): Document `autoscan.log'
10282         and the `configure.ac' checking feature.
10284 2001-07-12  Akim Demaille  <akim@epita.fr>
10286         For some AWK, such as on HPUX 11, `xfoo' does not match `foo|^bar'.
10287         Reported by Michael Elizabeth Chastain.
10289         * autoconf.in: Refuse such AWK.
10290         * configure.in: Likewise.
10291         * Makefile.am (acversion.m4): Do not use move-if-change this file
10292         has dependencies.
10293         * doc/autoconf.texi (Fortran 77 Compiler): Some typos.
10295 2001-07-10  Jens Petersen  <petersen@redhat.com>
10297         * autoscan.in (&scan_makefile): Improve programs regexp to parse
10298         things like "g++", "file.c" and "some-conf" as tokens.
10299         (&scan_file): Match C++ files extensions.
10300         If the filename extension is C++ then ask for c++.
10302 2001-07-05  Steven G. Johnson  <stevenj@alum.mit.edu>
10304         * aclang.m4 (AC_F77_DUMMY_MAIN): Use AC_TRY_LINK, not
10305         AC_TRY_LINK_FUNC, to check whether defining a dummy
10306         main-like routine is needed for linking with F77 libs.
10308 2001-07-05  Pavel Roskin  <proski@gnu.org>
10310         * aclocal.m4 (_AC_PROG_CXX_EXIT_DECLARATION): Remove conftest*
10311         after using break.
10312         (_AC_PROG_F77_V_OUTPUT): Remove conftest*, not conftest.* after
10313         linking.
10315 2001-07-05  Akim Demaille  <akim@epita.fr>
10317         * Makefile.am (move_if_change): New.  Use it instead of `mv'.
10318         (acversion.m4): Name it `$(srcdir)/acversion.m4' to ease broken
10319         Makes' lives.
10320         Reported by Nicolas Joly.
10322 2001-07-04  Akim Demaille  <akim@epita.fr>
10324         * acgeneral.m4 (_AC_RUN_IFELSE): Remove conftest.o when cleaning
10325         up.
10326         * acfunctions.m4 (AC_FUNC_WAIT3): Use `break' to silent some
10327         warnings from compilers.
10328         * aclang.m4 (_AC_LANG_COMPILER_GNU): Log the version information
10329         for all the compilers, not only GNU.  Hence move from here...
10330         (AC_PROG_CC, AC_PROG_CXX, AC_PROG_F77): to here.
10332 2001-07-04  Akim Demaille  <akim@epita.fr>
10334         * acfunctions.m4 (AC_FUNC_STRTOD, AC_FUNC_STRERROR_R)
10335         (AC_FUNC_STRCOLL, AC_FUNC_WAIT3): Use AC_RUN_IFELSE and
10336         AC_COMPILE_IFELSE.
10338 2001-07-04  Akim Demaille  <akim@epita.fr>
10340         * acgeneral.m4 (_AC_INCLUDES_DEFAULT_REQUIREMENTS): Actually apply
10341         the ``strings.h'' change claimed below.
10343 2001-07-04  Akim Demaille  <akim@epita.fr>
10345         * aclang.m4 (_AC_LANG_COMPILER_GNU): s/-dumpspecs/-v/.
10347 2001-07-04  Akim Demaille  <akim@epita.fr>
10349         * acgeneral.m4 (_AC_INCLUDES_DEFAULT_REQUIREMENTS): Include
10350         strings.h if usable with string.h.
10351         Suggested by Paul Eggert.
10353 2001-07-04  Akim Demaille  <akim@epita.fr>
10355         * autoscan.in (&scan_file): Skip FILE if there is FILE.in.
10356         From Jens Petersen.
10358 2001-07-03  Akim Demaille  <akim@epita.fr>
10360         * acgeneral.m4 (_AC_OUTPUT_CONFIG_STATUS): Specify CONFIG_FILES
10361         etc. in the log.
10363 2001-07-03  Akim Demaille  <akim@epita.fr>
10365         * acheaders.m4 (AC_CHECK_HEADER): When INCLUDES are set, use the
10366         compiler, not the preprocessor.
10367         * acgeneral.m4 (_AC_INCLUDES_DEFAULT_REQUIREMENTS): No longer use
10368         dedicated code to check for inttypes.h, as AC_CHECK_HEADERS does
10369         the right thing.
10370         * Makefile.am (.m4.m4f): Emphasize M4 error messages and fail
10371         earlier if there are.
10373 2001-07-03  Akim Demaille  <akim@epita.fr>
10375         * autoscan.in ($initfile): Remove.
10376         (&find_file): Rename as...
10377         (&scan_file): this.
10378         Immediately scan the current file, instead of gathering them, and
10379         later having them handled by &scan_files.
10380         (&scan_files): Merely invoke Find::File.
10381         Adjust.
10383 2001-07-02  Akim Demaille  <akim@epita.fr>
10385         * autoscan.in: Formatting changes, matching the invocation order.
10386         (File::Find): Use it instead of Perl 4's `find.pl'.
10387         (&wanted): Rename as...
10388         (&find_file): this.
10390 2001-07-01  Pavel Roskin  <proski@gnu.org>
10392         * aclang.m4 (AC_F77_DUMMY_MAIN): Remove conftest* after using
10393         break in the argument to AC_TRY_LINK_FUNC.
10394         (AC_F77_MAIN): Remove conftest* after using break in the
10395         argument to AC_TRY_LINK.
10397 2001-07-01  Steven G. Johnson  <stevenj@alum.mit.edu>
10399         Add alternate 'main' routine detection for linking C/C++ with Fortran,
10400         fixing link failures for e.g. AC_F77_WRAPPERS on NetBSD.
10402         * aclang.m4 (AC_F77_DUMMY_MAIN): New macro to detect whether a
10403         dummy alternate main is required even if the user provides her own
10404         'main'.
10405         (AC_F77_MAIN): New macro to detect whether it is possible to
10406         provide an alternate 'main' function name, using the 'main' from
10407         the Fortran libraries.
10408         (AC_LANG_PROGRAM(C)): Use F77_DUMMY_MAIN, if it is defined, so that
10409         cross-language link tests can be performed successfully.
10410         (_AC_F77_NAME_MANGLING): Require AC_F77_DUMMY_MAIN.  Also put $FLIBS
10411         after $LIBS, for consistency; this should be the general rule since
10412         the user may want to link to Fortran libraries that require $FLIBS.
10413         * doc/autoconf.texi: Document AC_F77_DUMMY_MAIN and AC_F77_MAIN.
10415 2001-06-29  Pavel Roskin  <proski@gnu.org>
10417         * atgeneral.m4 (AT_CHECK): Add a newline to the end of
10418         at-stdout and at-stderr instead of removing the newline
10419         from the echo output, which is not guaranteed to work.
10421 2001-06-28  Jens Petersen  <petersen@redhat.com>
10423         * aclang.m4 (_AC_PROG_CXX_EXIT_DECLARATION): Only add declaration to
10424         confdefs.h when non-zero.
10426 2001-06-28  Akim Demaille  <akim@epita.fr>
10428         * configure.in: Bump to 2.50c.
10430 2001-06-26  Akim Demaille  <akim@epita.fr>
10432         Version 2.50b.
10434 2001-06-26  Akim Demaille  <akim@epita.fr>
10436         Version 2.50a.
10438 2001-06-25  Pavel Roskin  <proski@gnu.org>
10440         * tests/atspecific.m4 (AT_CHECK_MACRO): Accept one more
10441         argument, AUTOCONF-FLAGS.
10442         * tests/mktests.sh (update_exclude_list): Add
10443         AC_SYS_RESTARTABLE_SYSCALLS and AC_FUNC_WAIT3.
10444         * tests/semantics.at: Test AC_SYS_RESTARTABLE_SYSCALLS and
10445         AC_FUNC_WAIT3 with "-W no-obsolete".
10447 2001-06-25  Akim Demaille  <akim@epita.fr>
10449         * tests/foreign.at (libtool): Fix the `libtoolize --version' decoding.
10451 2001-06-25  Akim Demaille  <akim@epita.fr>
10453         * autoscan.in (%macro): Now maps from word to list of macros.
10454         (&init_tables): Die when a word which is already handled by
10455         explicit macros is mapped to the default macro.
10456         (&print_unique): Remove, inlined in...
10457         (&output_kind): here.
10458         (File::Basename): Use it.
10459         (&output): Sort the CONFIG_FILES.
10460         * acheaders: Normalize.
10461         * acfunctions: Likewise.
10463 2001-06-25  Akim Demaille  <akim@epita.fr>
10465         * aclang.m4 (_AC_LANG_COMPILER_GNU): If GNU, dump the compiler
10466         characteristics in the logs.
10467         Suggested by Mo DeJong.
10469 2001-06-24  Akim Demaille  <akim@epita.fr>
10471         * acfunctions.m4 (AM_FUNC_ERROR_AT_LINE, AM_FUNC_FNMATCH)
10472         (AM_FUNC_MKTIME, AM_FUNC_OBSTACK, AM_FUNC_STRTOD): Reactivated.
10473         * doc/autoconf.texi (Autoconf 2.13): New section.
10475 2001-06-24  Akim Demaille  <akim@epita.fr>
10477         * autoconf.in (Task traces): Separate the error messages from the
10478         traces to improve robustness.
10480 2001-06-23  Akim Demaille  <akim@epita.fr>
10482         * tests/torture.at (AC_ARG_VAR): Make it a single test instead of
10483         three as failures are unlikely, and speed matters.
10485 2001-06-23  Akim Demaille  <akim@epita.fr>
10487         * doc/autoconf.texi (Redefined M4 Macros): New.
10489 2001-06-23  Akim Demaille  <akim@epita.fr>
10491         * acgeneral.m4 (_AC_INCLUDES_DEFAULT_REQUIREMENTS): Consider
10492         inttypes.h is missing if it conflicts with sys/types.h, as on IRIX
10493         5.3.
10495 2001-06-23  Paolo Bonzini  <bonzini@gnu.org>
10497         * acgeneral.m4 (_AC_OUTPUT_CONFIG_STATUS): Defer parsing of
10498         config.status targets to after the evaluation of the INIT-CMDS.
10499         Double quote config.status targets (used to be single quoted).
10501 2001-06-23  Akim Demaille  <akim@epita.fr>
10503         * tests/torture.at (CONFIG_FILES, HEADERS, LINKS and COMMANDS):
10504         Check the content of the created file.
10505         Check the ./config.status command line invocation.
10507 2001-06-23  Akim Demaille  <akim@epita.fr>
10509         * tests/foreign.at (Libtool): Reject prehistoric versions.
10511 2001-06-23  Akim Demaille  <akim@epita.fr>
10513         * aclang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Try to be robust to
10514         preexisting files matching a.*.
10516 2001-06-23  Akim Demaille  <akim@epita.fr>
10518         * acgeneral.m4 (_AC_ARG_VAR_VALIDATE): Output error messages on
10519         stderr.
10520         * doc/autoconf.texi (AC_ARG_VAR): Update.
10522 2001-06-21  Akim Demaille  <akim@epita.fr>
10524         * acgeneral.m4 (_AC_ARG_VAR_VALIDATE): Die instead of warning when
10525         precious variables have changed.
10526         * tests/torture.at (AC_ARG_VAR): Adjust.
10528 2001-06-21  Akim Demaille  <akim@epita.fr>
10530         ./configure --program-suffix=foo produces `transform=s,$$,foo,;',
10531         but some sed choke on multiple `;', and other tools (e.g.,
10532         Automake), include the separator themselves.
10534         * acgeneral.m4 (AC_ARG_VAR): Be sure not to leave extra `;'.
10536 2001-06-19  Tim Van Holder  <tim.van.holder@pandora.be>
10538         * doc/autoconf.texi (Functions Portability): Rename as...
10539         (Function Portability): this.
10540         (Function Portability): Document potential problems with unlink().
10542 2001-06-19  Paul Eggert  <eggert@twinsun.com>
10544         * NEWS, doc/autoconf.texi: Document quadrigraphs.
10546 2001-06-18  Akim Demaille  <akim@epita.fr>
10548         * acfunctions.m4 (AC_FUNC_FORK): Fix typos.
10550 2001-06-18  Ruediger Kuhlmann  <info@ruediger-kuhlmann.de>
10552         * acfunctions.m4: (AC_FUNC_VFORK) rename as...
10553         (_AC_FUNC_VFORK): this.
10554         Remove AC_DEFINEs and don't guess cross-compilation values.
10555         (_AC_FUNC_FORK): New, check whether fork() isn't just a stub.
10556         (AC_FUNC_FORK): New, use _AC_FUNC_VFORK and _AC_FUNC_FORK to
10557         define HAVE_WORKING_FORK, HAVE_WORKING_VFORK; and vfork to fork if
10558         vfork doesn't work.
10559         Guess values if cross-compiling, but warn.
10560         * acfunctions: Add AC_FUNC_FORK.
10561         * doc/autoconf.texi: Document AC_FUNC_FORK. Give example to define
10562         and vfork appropriately.
10564 2001-06-18  Akim Demaille  <akim@epita.fr>
10566         * doc/autoconf.texi (Functions Portability): New section.
10568 2001-06-18  Akim Demaille  <akim@epita.fr>
10570         * autoconf.in (M4): Pass --nesting-limit=1024, unless already set
10571         in $M4.
10572         Suggested by Andreas Schwab.
10574 2001-06-18  Akim Demaille  <akim@epita.fr>
10576         * acfunctions.m4 (AC_FUNC_CHOWN, AC_FUNC_CLOSEDIR_VOID)
10577         (AC_FUNC_GETPGRP, AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK)
10578         (AC_FUNC_MMAP, AC_FUNC_SELECT_ARGTYPES, _AC_FUNC_STAT)
10579         (AC_FUNC_UTIME_NULL): Use AC_INCLUDES_DEFAULT.
10580         Don't use AC_TRY_RUN, which double quotes, prefer AC_RUN_IFELSE,
10581         and either AC_LANG_SOURCE or AC_LANG_PROGRAM.
10582         (AC_FUNC_CLOSEDIR_VOID): Protect C++ from `int closedir ();' (or
10583         the converse).
10585 2001-06-18  Akim Demaille  <akim@epita.fr>
10587         * doc/autoconf.texi (ms): New index.
10588         (Macro Index): Rename as...
10589         (Autoconf Macro Index): this.
10590         (M4 Macro Index): New appendix.
10591         (Programming in M4): New chapter.
10592         Define M4sugar, M4sh, m4_pattern_forbid, and m4_pattern_allow.
10593         (Quoting): Rename as...
10594         (M$ Quotation): this.
10595         Be part of `Programming in M4).
10597 2001-06-18  Nicolas Joly  <njoly@pasteur.fr>
10599         * tests/torture.at (AC_ARG_VAR): Set variables and export them
10600         in separate statements for compatibility with Tru64 v5.1.
10602 2001-06-17  Akim Demaille  <akim@epita.fr>
10604         * acgeneral.m4 (_AC_ARG_VAR_VALIDATE): Be sure to cache the
10605         current values of the precious variables, not the previously
10606         cached values.
10607         Pass precious variables which are set to config.status.
10608         * doc/autoconf.texi (Setting Output Variables): Document AC_ARG_VAR.
10609         * tests/torture.at (AC_ARG_VAR): New.
10611 2001-06-15  Paul Eggert  <eggert@twinsun.com>
10613         * doc/autoconf.texi: Move AC_FUNC_WAIT3 and
10614         AC_SYS_RESTARTABLE_SYSCALLS to the obsolete section,
10615         and explain why and how to replace them.
10616         * acfunctions.m4 (AC_FUNC_WAIT3): Warn as obsolete.
10617         * acspecific.m4 (AC_SYS_RESTARTABLE_SYSCALLS): Likewise.
10619 2001-06-15  Akim Demaille  <akim@epita.fr>
10621         `build_alias', `host_alias', and `target_alias' are not AC_SUBST'd.
10622         Reported by Bruno Haible.
10624         * acgeneral.m4 (AC_ARG_VAR): Move the AC_SUBST, from here...
10625          (_AC_ARG_VAR_PRECIOUS): to here.
10627 2001-06-15  Pavel Roskin  <proski@gnu.org>
10629         * acheaders.m4 (_AC_CHECK_HEADER_DIRENT): Instead of defining
10630         an unused pointer use cast to this type and `if' statement to
10631         avoid warnings from the compiler.
10632         (AC_HEADER_TIME): Likewise.
10633         * actypes.m4 (AC_CHECK_MEMBER): s/foo/ac_aggr/. Use the member
10634         in `if' statement to avoid warnings from the compiler. Declare
10635         ac_aggr static to avoid the need to initialize it.
10637 2001-06-14  Akim Demaille  <akim@epita.fr>
10639         * doc/autoconf.texi (Portable Shell): Move to follow `Writing
10640         Macros'.
10642 2001-06-13  Akim Demaille  <akim@epita.fr>
10644         * m4/missing.m4, config/missing: Updated to Automake 1.4g's.
10645         Suggested by Alexander Mai.
10647 2001-06-13  Akim Demaille  <akim@epita.fr>
10649         * acgeneral.m4 (_AC_INCLUDES_DEFAULT_REQUIREMENTS): Guard
10650         sys/types.h and sys/stat.h, and check for them.
10652 2001-06-13  Akim Demaille  <akim@epita.fr>
10654         * acheaders.m4 (AC_CHECK_HEADER, AC_CHECK_HEADERS): Support $4 =
10655         INCLUDES.
10657 2001-06-12  Maciej W. Rozycki  <macro@ds2.pg.gda.pl>
10659         * acspecific.m4 (AC_PATH_XTRA): Check if linking against libX11
10660         succeeds and only try adding libdnet upon a failure.
10662 2001-06-12  Akim Demaille  <akim@epita.fr>
10664         * autoscan.in (&output_kind): Output the comment only if it exists.
10665         (%kind_comment): Add entry for `programs'.
10666         (&output_programs): Use &output_kind.
10667         (&output_functions, &output_identifiers, &output_headers)
10668         (&output_programs): Inline, and remove.
10670 2001-06-12  Akim Demaille  <akim@epita.fr>
10672         * autoscan.in (%kind_comment): New.
10673         (output_kind): New.
10674         (output_functions, output_identifiers, output_headers): Use it.
10676 2001-06-12  Akim Demaille  <akim@epita.fr>
10678         * autoscan.in (&print_unique): Take `$kind' and `$word' as
10679         arguments, to factor indirections into `%macro' and `%used'.
10680         (%generic_macro): Fix a typo.
10682 2001-06-12  Akim Demaille  <akim@epita.fr>
10684         * aclibraries: New.
10685         * autoscan.in (@kinds): Add `libraries'.
10686         Use `@kinds' instead of hard coded lists.
10687         (%programs, %headers, %identifiers, %makevars, %libraries, %functions):
10688         Remove, replaced by...
10689         (%used): this.
10691 2001-06-12  Akim Demaille  <akim@epita.fr>
10693         * autoscan.in (%functions_macros %headers_macros)
10694         (%identifiers_macros %programs_macros %makevars_macros): Remove,
10695         replaced by...
10696         (%macro): New.
10698 2001-06-11  Raja R Harinath  <harinath@cs.umn.edu>
10700         * aclang.m4 (AC_NO_EXECUTABLES): Override
10701         _AC_COMPILER_EXEEXT_WORKS, not _AC_LANG_COMPILER_WORKS.
10703 2001-06-11  Akim Demaille  <akim@epita.fr>
10705         * aclang.m4 (AC_NO_EXECUTABLES): Define the macros with their
10706         trailing new line.
10707         Reported by Andreas Schwab.
10709 2001-06-11  Akim Demaille  <akim@epita.fr>
10711         * Makefile.am, Makefile.maint: Typos.
10713 2001-06-09  Akim Demaille  <akim@epita.fr>
10715         * doc/autoconf.texi (Here-Documents): New section, gathering
10716         documentation about here-documents.
10717         Use `href', not `uref', and other changes.
10719 2001-06-09  Akim Demaille  <akim@epita.fr>
10721         * doc/autoconf.texi (Portable Shell Programming): Promoted as a
10722         chapter.
10724 2001-06-09  Akim Demaille  <akim@epita.fr>
10726         * doc/autoconf.texi (Limitations of Builtins): Complete the
10727         description of the here-docs penalties with Alexandre Oliva's
10728         explanations.
10730 2001-06-01  Paul Eggert  <eggert@twinsun.com>
10732         * doc/autoconf.texi: Talk about here documents and speedups.
10733         Do not use "echo" on arbitrary strings.
10734         Spell "here-documents" consistently with the standard.
10736 2001-06-09  Akim Demaille  <akim@epita.fr>
10738         * doc/autoconf.texi (Concept Index): Introduce it.
10739         Regenerate the menus.
10741 2001-06-09  Akim Demaille  <akim@epita.fr>
10743         * Makefile.maint, GNUmakefile: New, from Jim Meyering.
10744         * config/prev-version.txt: New.
10745         * config/move-if-change: New, for GNU libc.
10747 2001-06-06  Pavel Roskin  <proski@gnu.org>
10749         * tests/atgeneral.m4 (AT_INIT): Remove "/bin/sh" after $SHELL.
10751 2001-06-06  Akim Demaille  <akim@epita.fr>
10753         * acgeneral.m4 (AC_CHECK_LIB): Fix the cache var name to work
10754         properly when $1 is not a literal.
10755         Fixes PR Autoconf/187, reported by Bram Moolenaar.
10757 2001-06-06  Akim Demaille  <akim@epita.fr>
10759         Invoking AC_COPYRIGHT before AC_INIT fails.
10761         * Makefile.am (.m4.m4f): Pass --fatal-warnings to m4.
10762         * acgeneral.m4 (_m4_divert(VERSION_FSF))
10763         (_m4_divert(VERSION_USER)): New.
10764         (AC_COPYRIGHT): $2 is the diversion to use.
10765         (_AC_INIT_COPYRIGHT): Use the FSF diversion.
10766         (AC_INIT): Remove dead comments as now it's commutative.
10768 2001-06-06  Akim Demaille  <akim@epita.fr>
10770         * tests/semantics.at (AC_CHECK_LIB): Strengthen to reflect
10771         PR autoconf/187.
10773 2001-06-05  Akim Demaille  <akim@epita.fr>
10775         * acgeneral.m4 (_AC_INIT_PARSE_ARGS): `prefix' and `exec_prefix'
10776         can be empty.
10777         `*dir' variables cannot be NONE.
10778         Reported by Mark Kettenis.
10780 2001-06-05  Paul Eggert  <eggert@twinsun.com>
10782         * doc/autoconf.texi: Fix references to Solaris and SunOS versions.
10784 2001-06-04  Akim Demaille  <akim@epita.fr>
10786         * acgeneral.m4 (AC_VAR_SET, AC_VAR_GET, AC_VAR_TEST_SET)
10787         (AC_VAR_SET_IFELSE, AC_VAR_PUSHDEF and AC_VAR_POPDEF, AC_TR_CPP)
10788         (AC_TR_SH): Move as...
10789         * m4sh.m4 (AS_VAR_SET, AS_VAR_GET, AS_VAR_TEST_SET)
10790         (AS_VAR_SET_IF, AC_VAR_PUSHDEF, AS_VAR_POPDEF, AS_TR_CPP)
10791         (AS_TR_SH): these.
10792         (_AS_TR_PREPARE, _AS_CR_PREPARE, _AS_TR_CPP_PREPARE)
10793         (_AS_TR_SH_PREPARE): New.
10794         (AS_SHELL_SANITIZE): Invoke _AS_TR_PREPARE.
10795         * tests/aclocal.m4 (AC_STATE_SAVE): `as_' vars can be modified.
10797 2001-06-02  Akim Demaille  <akim@epita.fr>
10799         * Makefile.am (.m4.m4f): Pass the options first.
10800         Fixes PR autoconf/182.
10802 2001-06-02  Nathan Sidwell  <nathan@codesourcery.com>
10804         GNU getopt, when POSIXLY_CORRECT does not permute options and
10805         arguments.  So pass the options first.
10806         Fixes PR autoconf/184.
10808         * autoconf.sh (m4_prefiles, m4f_prefiles): New variables.
10809         (run_m4): Remove files.
10810         (run_m4f): Remove.
10811         Update remainder of script to use them.
10812         (for warning in): Do not use a literal comma as it will not be
10813         split by IFS.
10815 2001-06-02  Christian Marquardt  <marq@gfz-potsdam.de>
10817         * aclang.m4 (AC_PROG_F77): Add Fujitsu's "frt" to the list of
10818         Fortran compilers to check.
10819         (_AC_PROG_F77_V): Add '-###' as a possible option to print
10820         information on library and object files.
10821         (AC_PROG_CXX): Add Fujitsu's "FCC" to the list of C++ compilers
10822         to check.
10824 2001-06-02  Akim Demaille  <akim@epita.fr>
10826         * autom4te.in (Request::@request): Declare with `vars', not `my',
10827         as it prevents updates via `do FILENAME'.
10829 2001-06-02  Akim Demaille  <akim@epita.fr>
10831         * configure.in (standards_texi): Remove, dead code.
10833 2001-06-02  Akim Demaille  <akim@epita.fr>
10835         * autom4te.in: New.
10837 2001-06-02  Pavel Roskin  <proski@gnu.org>
10839         * acgeneral.m4 (_AC_INIT_PREPARE): Don't rely on $? in the traps
10840         for signals other than 0 - exit with code 1.
10841         * m4sh.m4 (AS_TMPDIR): Likewise.
10842         * autoconf.in: Likewise. Also don't rely on exit == exit $?.
10843         * autoheader.in: Likewise.
10844         * autoreconf.in: Likewise.
10845         * tests/torture.at (Signal handling): New test for the above.
10847 2001-06-01  Akim Demaille  <akim@epita.fr>
10849         * m4sugar.m4 (m4_defn, m4_undefine, m4_popdef): Clarify the error
10850         message.
10852 2001-05-31  Akim Demaille  <akim@epita.fr>
10854         * acfunctions, acheaders, acidentifiers, acmakevars, acprograms:
10855         Add copyright and comments.
10856         * acheaders: Add stdint.h.
10857         Suggested by Paul Eggert.
10859 2001-05-31  Akim Demaille  <akim@epita.fr>
10861         * atgeneral.m4 (AT_INIT): Use $SHELL.
10862         * atspecific.m4 (AT_CHECK_DEFINES): Skip HAVE_STDINT_H.
10864 2001-05-31  Akim Demaille  <akim@epita.fr>
10866         * acgeneral.m4 (_AC_INCLUDES_DEFAULT_REQUIREMENTS): Include
10867         stdint.h.
10868         From Paul Eggert and Lars Hecking.
10870 2001-05-31  Akim Demaille  <akim@epita.fr>
10872         * tests/base.at: Adjust line numbers in error messages.
10874 2001-05-31  Akim Demaille  <akim@epita.fr>
10876         * tests/base.at, tests/m4sh.at: When using AC_PLAIN_SCRIPT be sure
10877         to emit the bangshe line.
10878         Reported by David Carter.
10880 2001-05-30  Steven G. Johnson  <stevenj@alum.mit.edu>
10882         * aclang.m4 (AC_PROG_F77): Add Compaq's "fort" to the list of
10883         Fortran (95) compilers to check.
10885 2001-05-29  Alexandre Duret-Lutz  <duret_g@epita.fr>
10887         * doc/autoconf.texi (Introduction, Pointers): Update the Autoconf
10888         Macro Archive URL.
10890 2001-05-23  Pavel Roskin  <proski@gnu.org>
10892         * aclang.m4 (AC_PROG_CPP): Use `break' instead of `break 2' since
10893         _AC_PROG_PREPROC_WORKS_IFELSE expands arguments outside the loop.
10894         (AC_PROG_CXXCPP): Likewise.
10896 2001-05-22  Akim Demaille  <akim@epita.fr>
10898         * config: New directory.
10899         * configure.in: AC_CONFIG_AUX_DIR it.
10900         * tests/atspecific.m4 (AT_CONFIGURE_AC): Adjust.
10902 2001-05-22  Akim Demaille  <akim@epita.fr>
10904         * autoconf.in, autoreconf.in, autoheader.in, autoscan.in, ifnames.in,
10905         * autoupdate.in: Specify the Emacs mode.
10906         * acversion.m4.in: Rename as...
10907         * acversion.m4: this.
10908         * tests/Makefile.am (CLEANFILES): More garbage.
10910 2001-05-22  Akim Demaille  <akim@epita.fr>
10912         * autoconf.sh, autoreconf.sh, autoheader.sh, autoscan.pl, ifnames.sh:
10913         Rename as...
10914         * autoconf.in, autoreconf.in, autoheader.in, autoscan.in, ifnames.in:
10915         these.
10917 2001-05-21  Akim Demaille  <akim@epita.fr>
10919         * configure.in: Bump to 2.50a.
10921 -----
10923 Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
10925 This file is part of GNU Autoconf.
10927 GNU Autoconf is free software; you can redistribute it and/or modify
10928 it under the terms of the GNU General Public License as published by
10929 the Free Software Foundation; either version 2, or (at your option)
10930 any later version.
10932 GNU Autoconf is distributed in the hope that it will be useful,
10933 but WITHOUT ANY WARRANTY; without even the implied warranty of
10934 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
10935 GNU General Public License for more details.
10937 You should have received a copy of the GNU General Public License
10938 along with autoconf; see the file COPYING.  If not, write to
10939 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
10940 Boston, MA 02110-1301, USA.