* NEWS: Reword notice for AC_TRY_COMMAND, AC_TRY_EVAL,
[autoconf.git] / ChangeLog
blobb197a32a33db529dbf6c4c7e1594737e41341cab
1 2006-05-27  Paul Eggert  <eggert@cs.ucla.edu>
3         * NEWS: Reword notice for AC_TRY_COMMAND, AC_TRY_EVAL,
4         ac_config_guess, ac_config_sub, ac_configure.
5         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS):
6         Fix typo that prevented an unnecessary space from being removed.
7         Problems reported by Ralf Wildenhues in:
8         http://lists.gnu.org/archive/html/autoconf-patches/2006-05/msg00143.html
10 2006-05-26  Paul Eggert  <eggert@cs.ucla.edu>
12         * doc/autoconf.texi (Particular Programs, Limitations of Usual Tools):
13         Use better wording to talk about AC_PROG_MKDIR_P's thread-safety.
14         Don't use the term "thread-safe" to talk about mkdir race
15         conditions, since the problem is more a process than a thread
16         issue.  Problem reported by Stepan Kasal in:
17         http://lists.gnu.org/archive/html/autoconf-patches/2006-05/msg00088.html
18         * lib/autoconf/programs.m4 (AC_PROG_MKDIR_P): Use code that mimics
19         the test for 'install' more closely.  Look at MKDIR_P first.
20         Look in the PATH, and at /opt/sfw/bin.
21         Look for a 'gmkdir' program as well (Solaris 10 /opt/sfw/bin/gmkdir).
22         Don't bother to try mkdir -p, since we already check mkdir --version;
23         just look at the version number.  (There's no easy way to check
24         for race-free implementations.)
25         * tests/tools.at (autoconf: subdirectories): Adjust to above
26         changes, since MKDIR_P now might end in "/mkdir -p".
28         * doc/autoconf.texi (autoheader Invocation): Mention that the
29         first arg of AC_DEFINE_UNQUOTED must not be a literal.
30         Problem reported by Ben Pfaff in
31         <http://lists.gnu.org/archive/html/bug-autoconf/2006-05/msg00090.html>.
33         * NEWS: Mention that AC_TRY_COMMAND and AC_TRY_EVAL may be removed.
34         * doc/autoconf.texi (Special Chars in Variables): New section.
35         (Preset Output Variables): Warn about special chars in CPPFLAGS.
36         (Installation Directory Variables): Quote $(datadir) better.
37         (Limitations of Builtins): Describe some of eval's trickiness.
39         * lib/autoconf/c.m4 (AC_PROG_CC_C_O): Simplify quoting.
40         * lib/autoconf/fortram.m4 (_AC_PROG_FC_V_OUTPUT): Likewise.
41         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Put leading space
42         in front of every arg, not just trailing args.  Quote apostrophes.
43         (_AC_EVAL_ECHO): New macro.
44         (_AC_EVAL, AC_EVAL_STDERR): Use it.  Quote arg of eval.
45         (AC_TRY_EVAL, AC_TRY_COMMAND): Mention that these macros might get
46         removed.
47         (_AC_LINK_IFELSE): Use proper rule for shell continuation lines,
48         exposed by quoting of eval argument.  Put the command on line line
49         so it logs better.
50         * lib/autoconf/libs.m4 (_AC_PATH_X_XMKMF): Use eval more safely.
51         (_AC_PATH_X, AC_PATH_X): Quote more safely.
52         * lib/autoconf/programs.m4 (AC_PROG_MAKE_SET): Use eval more safely.
53         * lib/autoconf/specific.m4 (AC_SYS_LONG_FILE_NAMES): Don't use eval.
54         * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): Minor style change.
55         Handle special chars in prefix, ac_srcdir, ac_aux_dir.
56         Use eval more safely.
57         (_AC_OUTPUT_CONFIG_STATUS): Adjust to above changes.
58         * lib/m4sugar/m4sh.m4 (AS_VAR_GET): Note that this API needs
59         to be replaced.
60         * tests/base.at (AC_TRY_COMMAND): Use proper rule for shell continuation
61         lines, exposed by quoting of eval argument.
63 2006-05-26  Stepan Kasal  <kasal@ucw.cz>
64         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
66         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Drop the
67         initialization of `ac_cv_exeext', do not override it if it was
68         already set, unless it was set to `no', for compatibility with
69         Autoconf-2.13, and comment this.
70         Do not export `ac_cv_exeext', Libtool hasn't needed this for years.
71         (_AC_COMPILER_EXEEXT_DEFAULT): Likewise, do not export it.
72         (_AC_COMPILER_EXEEXT_WORKS, _AC_COMPILER_EXEEXT_CROSS): Typos.
73         * doc/autoconf.texi (Compilers and Preprocessors) <EXEEXT>:
74         Document that this test may be overridden by setting
75         `ac_cv_exeext'.
77 2006-05-26  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
79         Revert these two patches:
81         2006-04-06  Eric Blake  <ebb9@byu.net>
82         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_O): Inside cache
83         check, s/ac_exeext/ac_cv_exeext/.  Fixes regression introduced
84         2006-04-01.
86         2006-04-01  Stepan Kasal  <kasal@ucw.cz>
87         Clean up _AC_COMPILER_EXEEXT* macros.
88         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Don't try to
89           detect exeext, it will be done by _AC_COMPILER_EXEEXT_O; just set
90           ac_file to the name of the default output file and call
91           _AC_COMPILER_EXEEXT_WORKS.  Move the definition of ac_files and the
92           initial `rm' of the candidate files...
93         (_AC_COMPILER_EXEEXT): ... here and simplify them.  Moreover, use
94           the same list in subsequent `rm' calls, and for the temporary
95           redefinition of ac_clean_files; call _AC_COMPILER_OBJEXT at the end,
96           and don't call the other _AC_COMPILER_EXEEXT_* macros directly, use...
97         (_AC_COMPILER_EXEEXT_TESTS): ... this new macro.
98         (_AC_COMPILER_EXEEXT_O): Don't export ac_cv_exeext, it's not needed (or
99           no longer needed) by libtool.  Make it a cache check.
100         (_AC_COMPILER_EXEEXT_CROSS): Remove the comment, it was obviously
101           copied here by mistake.
102         (AC_NO_EXECUTABLES): Redefine _AC_COMPILER_EXEEXT_TESTS, not
103           _AC_COMPILER_EXEEXT.
104         * lib/autoconf/c.m4 (AC_PROG_CC, AC_PROG_CXX, AC_PROG_OBJC): Do not call
105           _AC_COMPILER_OBJEXT directly.
106         * lib/autoconf/fortran.m4 (_AC_PROG_FC): Likewise.
108 2006-05-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
110         * doc/autoconf.texi (Limitations of Usual Tools) < sed (`t')>:
111         Fix description of how the buggy `sed' works.
113 2006-05-25  Noah Misch  <noah@cs.caltech.edu>
115         Sync from Automake:
117         * lib/Autom4te/XFile.pm (lock): Allow EOPNOTSUPP, besides
118         ENOLCK.  Only mention `make -j' when applicable.  Only raise
119         fatal errors when `make -j' is involved.  Improve error message.
121 2006-05-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
123         * doc/autoconf.texi (Here-Documents): We now know more about
124         the variable expansion in here documents bug.
125         Thanks to Tim Rice and Stepan Kasal.
127         * doc/autoconf.texi (Making testsuite Scripts): Add an example
128         how to use TESTSUITEFLAGS.  Suggested by Eric Blake.
130 2006-05-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
132         * tests/autotest.at (Multiline command from M4 expansion):
133         No failure to be expected if the shell quotes newlines in
134         commands in the `set -x' output.  Report by Tim Rice.
135         * THANKS: Update.
137 2006-05-23  Paul Eggert  <eggert@cs.ucla.edu>
139         * lib/autoconf/status.m4 (_AC_OUTPUT_HEADER): Don't use shell
140         expansion in the here-documents used by config.status, as that
141         runs afoul of the Korn shell version M-12/28/93d bug described in
142         the Autoconf manual, and this in turn causes a Coreutils 5.95 build to
143         fail as described by Tim Rice and diagnosed by Ralf Wildenhues in
144         <http://lists.gnu.org/archive/html/bug-autoconf/2006-05/msg00082.html>.
146 2006-05-23  Jim Meyering  <jim@meyering.net>
148         * lib/autoconf/functions.m4 (AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK):
149         Fix typo introduced with 2006-04-02 change.  It reversed the sense
150         of the test.
152 2006-05-23  Paul Eggert  <eggert@cs.ucla.edu>
154         * lib/autoconf/status.m4 (_AC_OUTPUT_HEADER): Simplify ac_dA and
155         ac_dB slightly, to save bytes in the script.
156         Max out at 50 lines, rather than 96; this is more likely
157         (though not guaranteed) to avoid obscure 'sed' failures.
159 2006-05-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
161         * lib/autotest/general.m4 (AT_INIT): UnixWare `tr' may interpret
162         `tr -d -' as bad option argument.  Work around this by deleting
163         an unrelated character.
164         Report by Tim Rice <tim@multitalents.net>.
166 2006-05-22  Paul Eggert  <eggert@cs.ucla.edu>,
167             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>,
168             Stepan Kasal  <kasal@ucw.cz>
170         * doc/autoconf.texi (Particular Programs): Do not promise that
171         we always prefer the GNU version of the program, and that we
172         search according to PATH; both rules can have exceptions.
173         Update description of AC_PROG_GREP, AC_PROG_EGREP, AC_PROG_FGREP,
174         AC_PROG_SED.  Move descriptions of limitations
175         to the Limitations of Usual Tools section.
176         (Limitations of Usual Tools) <sed>: Mention script length
177         limitations with Solaris /usr/ucb/sed.
178         <grep>: Fix wording for empty alternative.  Mention that -c and
179         -l should not be combined, and that -E and -F should not be
180         combined.
182 2006-05-21  Paul Eggert  <eggert@cs.ucla.edu>
183         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
185         * lib/autoconf/programs.m4 (AC_PROG_SED): Catch script length
186         limits in Solaris 8 /usr/ucb/sed by testing a long script.
188 2006-05-22  Stepan Kasal  <kasal@ucw.cz>
190         * doc/autoconf.texi (Defining Symbols): Literal parameter of
191         AC_DEFINE is now passed to m4_pattern_allow.
192         * NEWS: Mention that; likewise for AC_SUBST.
193         * lib/autoconf/general.m4 (AC_DEFINE_TRACE_LITERAL): Pass
194         the parameter to m4_pattern_allow.
195         * tests/tools.at: Add a check for that.
197 2006-05-22  Stepan Kasal  <kasal@ucw.cz>
199         * lib/autoconf/status.m4: Fix typos.
201 2006-05-21  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
203         * lib/autoconf/programs.m4 (_AC_FEATURE_CHECK_LENGTH): Remove
204         only the files that this macro generates.
206 2006-05-21  Paul Eggert  <eggert@cs.ucla.edu>
208         * doc/autoconf.texi (Limitations of Usual Tools) <sed>: For
209         the HP-UX sed limitation of 99 commands, labels do not count.
210         * lib/autoconf/status.m4 (_AC_SED_CMD_LIMIT): Mention that
211         in the comment.
212         (_AC_OUTPUT_HEADER): Revert the change from 2006-05-19.
214 2006-05-21  Paul Eggert  <eggert@cs.ucla.edu>
216         * lib/autoconf/functions.m4 (AC_FUNC_GETMNTENT):
217         Import the following fix from coreutils:
219         2006-01-13  Jim Meyering  <jim@meyering.net>
221         Invoke AC_CHECK_FUNCS(getmntent) unconditionally so that tests of
222         $ac_cv_func_getmntent (e.g., in gl_LIST_MOUNTED_FILE_SYSTEMS) need
223         not double-quote uses of that variable, to accommodate the rare
224         case in which getmntent is available in none of the libraries
225         checked.  This happens at least on FreeBSD 5.0.
227 2006-05-20  Paul Eggert  <eggert@cs.ucla.edu>
229         * lib/autoconf/general.m4 (AC_CONFIG_AUX_DIRS): Bring back
230         ac_config_guess, ac_config_sub, and ac_configure, since evidently
231         some other programs unwisely rely on these undocumented vars.
232         But put in warning comments about them.
233         Problem reported by Ralf Wildenhues in
234         <http://lists.gnu.org/archive/html/autoconf-patches/2006-05/msg00068.html>.
235         * NEWS: Document that these variables are intended to go away.
237 2006-05-20  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
239         * lib/autoconf/c.m4 (AC_PROG_CXX_C_O): Require AC_PROG_CXX,
240         and set the language to C++ (analogous to the equivalent Fortran
241         tests).
243         * lib/autoconf/c.m4 (AC_PROG_CXX_C_O): New macro.
244         * doc/autoconf.texi (C++ Compiler): Document it.
245         * lib/autoconf/fortran.m4 (_AC_PROG_FC_C_O): Adjust comment.
246         * NEWS: Update.
248 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
250         * lib/autoconf/status.m4 (_AC_OUTPUT_HEADER): Fix off-by-one bug
251         that caused config.status to generate 100-command sed scripts; the
252         portable limit is 99.
254 2006-05-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
256         * lib/autoconf/programs.m4 (AC_PROG_MKDIR_P): Name temporary
257         variable `ac_d' instead of `d' to avoid infringing namespace.
258         Report by Ralf Menzel.
260 2006-05-18  Paul Eggert  <eggert@cs.ucla.edu>
262         * lib/autoconf/status.m4 (_AC_OUTPUT_FILE): Don't prepend
263         $ac_top_build_prefix to $MKDIR_P if it's just 'mkdir -p'.
264         * tests/tools.at (autoconf: subdirectories): New test, taken from
265         the corresponding problem report by Ralf Wildenhues in:
266         http://lists.gnu.org/archive/html/autoconf-patches/2006-05/msg00053.html
268         * lib/autoconf/functions.m4 (AC_REPLACE_FNMATCH, AC_FUNC_FNMATCH_GNU):
269         Quote some uses of shell variables if they might suffer unexpected
270         globbing.  This doesn't fix all instances of quoting problems that
271         I found, just the easy ones that look safe.
272         * lib/autoconf/general.m4 (_AC_INIT_SRCDIR, _AC_INIT_HELP):
273         (AC_CONFIG_AUX_DIR, AC_CONFIG_AUX_DIR_DEFAULT, AC_CONFIG_AUX_DIRS):
274         (AC_CANONICAL_BUILD, AC_CANONICAL_HOST, AC_CANONICAL_TARGET):
275         (AC_CACHE_LOAD, AC_CACHE_SAVE): Likewise.
276         * lib/autoconf/libs.m4 (_AC_PATH_X_XMKMF, _AC_PATH_X_DIRECT): Likewise.
277         * lib/autoconf/specific.m4 (AC_SYS_LONG_FILE_NAMES): Likewise.
278         * lib/autoconf/status.m4 (_AC_OUTPUT_LINK, _AC_OUTPUT_SUBDIRS):
279         Likewise.
280         * lib/autotest/general.m4 (_AC_INIT_PARSE_ARGS): Likewise.
281         * lib/m4sugar/m4sh.m4 (_AS_DETECT_BETTER_SHELL): Likewise.
283 2006-05-18  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
285         * bin/autoreconf.in ($help): Reword according to the manual.
286         Suggested by Olly Betts.
288 2006-05-17  Olly Betts  <olly@survex.com>  (tiny change)
289         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
291         * bin/autoreconf.in: Pass the directory argument to
292         `require_configure_ac'.  Fix comment.
293         * tests/torture.at (Configuring subdirectories): Expose this.
294         Reported by Olly Betts.
296 2006-05-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
298         * lib/Automake/Configure_ac.pm, lib/Automake/Channels.pm,
299         lib/Automake/FileUtils.pm, lib/Automake/Struct.pm: Sync from
300         Automake as follows:
302         * lib/Autom4te/Configure_ac.pm (find_configure_ac): Use
303         `$configure_in' instead of `configure.in', to preserve
304         directory component.
306 2006-05-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
308         * config/config.guess, config/config.sub, config/texinfo.tex,
309         doc/make-stds.texi, doc/standards.texi: Sync from upstream.
311 2006-05-14  Paul Eggert  <eggert@cs.ucla.edu>
313         * lib/autoconf/headers.m4 (AC_HEADER_STDBOOL): Fix overly-picky
314         test for C99 conformance; (bool) 0.5 is an integer constant
315         expression, but (bool) -0.5 is not.  Problem reported by Fedor
316         Sergeev in <http://forum.sun.com/jive/thread.jspa?threadID=96202>.
318 2006-05-13  Paul Eggert  <eggert@cs.ucla.edu>
320         * doc/autoconf.texi (Particular Programs): AC_PROG_MKDIR_P now
321         sets MKDIR_P, not mkdir_p, to avoid collisions with Automake.
322         Warn about obsolete install-sh files.  Remove stray sentence
323         fragment and fix cross reference.
324         * lib/autoconf/programs.m4 (AC_PROG_INSTALL): Don't insist on
325         install -d; this undoes the 2006-05-10 change.
326         (MKDIR_P): Mark with AN_MAKEVAR.
327         (AC_PROG_MKDIR_P): Fall back on $ac_install_sh, not $INSTALL, so
328         that we don't require $INSTALL to be thread-safe.  Move comments
329         out of generated code.  Require AC_CONFIG_AUX_DIR_DEFAULT instead
330         of AC_PROG_INSTALL.  Output a message saying that we're checking
331         mkdir -p.  Set MKDIR_P rather than mkdir_p.  Do special magic for
332         MKDIR_P instead of AC_SUBST.
333         * lib/autoconf/status.m4 (_AC_OUTPUT_FILE, _AC_OUTPUT_CONFIG_STATUS):
334         Special magic for MKDIR_P, too.
335         * lib/m4sugar/m4sh.m4 (AS_MKDIR_P): Remove comment that defeated
336         a dnl.
337         * tests/local.at (AT_CHECK_ENV): mkdir_p -> MKDIR_P.
339 2006-05-11  Paul Eggert  <eggert@cs.ucla.edu>
341         Sync from Automake, as follows:
343         2006-05-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
344         * config/install-sh: Initialize IFS, so field splitting isn't
345         turned off later.
346         * config/mkinstalldirs: Likewise.
347         * config/missing: Remove superfluous quotes.  Replace all uses of
348         `[' by `test', for consistency, and for..
349         * config/missing (sed_minuso, sed_output): New variables.
350         (autom4te, help2man, makeinfo): Use them.  Unifies detection of
351         `-o FILE', `--output FILE', `--output=FILE', stricter regex.
352         Fixes `missing' to detect `--output' for help2man.  Fixes
353         PR automake/483.  Report by Dennis J. Linse.
354         (autom4te): Document in `missing --help'.
356 2006-05-10  Paul Eggert  <eggert@cs.ucla.edu>
358         * NEWS: New macro AC_PROG_MKDIR_P.  AS_MKDIR_P is now more robust.
359         * config/install-sh: Don't use 'path' to talk about file names,
360         as per GNU coding standards.  Close a race condition reported by Ralf
361         Wildenhues and Stepan Kasal.  There is still a race condition
362         on hosts that predate Posix 1003.1-1992, but we can't help this.
363         Don't mishandle weird characters like space on pre-Posix hosts.
364         Invoke mkdir at most once per dir arg on pre-Posix hosts.
365         * doc/autoconf.texi (Programming in M4sh): Cross-reference to
366         AC_PROG_MKDIR_P from AS_MKDIR_P.
367         (Limitations of Usual Tools): Cross-reference to AC_PROG_MKDIR_P
368         from mkdir.  Mention that Autoconf 2.60 install-sh is safe but
369         earlier editions are not (including Automake 1.8.3).
370         Do not suggest mkinstalldirs for thread-safety.
371         * lib/autoconf/programs.m4 (AC_PROG_INSTALL): Insist on an 'install'
372         that understands -d, so that AC_PROG_MKDIR_P can fall back on $INSTALL.
373         * lib/m4sugar/m4sh.m4 (AS_MKDIR_P): Make it more robust in the
374         presence of special characters and race conditions.
375         * tests/local.at (AT_CHECK_ENV): Add mkdir_p to the list of variables
376         in Autoconf's name space.
378 2006-05-10  Bruno Haible  <bruno@clisp.org>
379         and Paul Eggert  <eggert@cs.ucla.edu>
381         * lib/autoconf/programs.m4 (AC_PROG_MKDIR_P): New macro, taken
382         from Automake with minor changes.
383         * doc/autoconf.texi (Particular Programs): Document AC_PROG_MKDIR_P.
385 2006-05-10  Paul Eggert  <eggert@cs.ucla.edu>
387         * config/install-sh: Update to Automake CVS version, as follows:
388         2006-04-25  Stepan Kasal  <kasal@ucw.cz>
389         * lib/install-sh: Simplify the expr implementation of dirname.
390         2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
391         * lib/install-sh: Handle --, and diagnose unknown options.
393 2006-05-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
395         * tests/Makefile.am (AUTOTEST): Use `$(MY_AUTOM4TE)' instead of
396         `./autom4te' to create `./testsuite', since the `all' target
397         will ensure its presence, but `installcheck' should not create
398         the uninstalled wrappers.
400         * tests/torture.at (Unusual Automake input files): Skip if we
401         detect automake < 1.8.
403 2006-05-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
405         * lib/autoconf/c.m4 (AC_PROG_CC_STDC): If ac_cv_prog_cc_stdc
406         is set to `no', then that overrides and sets ac_cv_prog_cc_c89
407         and ac_cv_prog_cc_c99 to `no', for backward compatibility.
408         * NEWS: Update.
410 2006-05-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
412         * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): Take care not to
413         munge (multiple) white space and other oddities.
414         * tests/torture.at (AT_CHECK_AC_ARG_VAR): Make sure to M4-escape
415         single quotes in variable assignment.
416         (AC_ARG_VAR, configure invocation): Adjust tests to expose this
417         and similar failures by adding multiple spaces, tabs, and other
418         special characters.
419         Report and different test suggested by Francesco Romani
420         <fromani@gmail.com> and Andrew Church <achurch@achurch.org>.
422         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): When we escape
423         single quotes, we only need to search for single quotes; this
424         both simplifies the search pattern, and makes us less
425         susceptible to `echo' variations for arguments not containing
426         single quotes.
427         (_AC_ARG_VAR_VALIDATE): Likewise.
429 2006-05-04  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
431         * doc/autoconf.texi (Special Shell Variables) <IFS>: Document
432         `$*' and IFS concatenation issue with traditional shells and
433         bash-2.04.  Report by Seanster@Seanster.com.
435 2006-05-03  Bruno Haible  <bruno@clisp.org>
437         * doc/autoconf.texi (Limitations of Usual Tools): Identify more
438         precisely which Mac OS X versions have the od problem.
440 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
442         * doc/autoconf.texi: Use @option systematically.
443         (Integer Overflow):
445 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
446         and Bruno Haible  <bruno@clisp.org>
448         * doc/autoconf.texi (Limitations of Usual Tools): Add a paragraph
449         about 'od'.
450         (Integer Overflow): Mention the special case of integer division
451         overflow.
453 2006-05-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
455         * lib/autoconf/general.m4 (_AC_CANONICAL_SPLIT): Cater for
456         traditional shells like the Solaris one that do not use the
457         first IFS character for assembling `$*'.
458         Prompted by a related report from autoconf_bug@nro.ca.
460 2006-05-01  Paul Eggert  <eggert@cs.ucla.edu>
461         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
463         * doc/autoconf.texi (Limitations of Builtins, Limitations of Make):
464         Mention more problems with the -e option.
466 2006-04-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
468         * NEWS: Typo.
469         * doc/autoconf.texi (Systemology): Mention the Heirloom Project.
471         * doc/autoconf.texi (Introduction, Pointers): Use `@/' liberally
472         in URLs to improve DVI formatted output (requires texinfo 4.6).
473         (System Services, Systemology, Shellology): Likewise.
474         (Limitations of Usual Tools): Rewrite Mac OS X example for nicer
475         output.
477         * doc/autoconf.texi (Fortran Compiler): Do not use `@ovar' in
478         continuous text.
479         (Runtime): Fix macro argument names to match description:
480         `action-if-found' -> `action-if-true' and similarly.
481         (Obsolete Macros): Likewise.
482         * lib/autoconf/general.m4 (_AC_COMPILE_IFELSE): Likewise.
483         (AC_COMPILE_IFELSE, AC_TRY_COMPILE, _AC_LINK_IFELSE)
484         (AC_LINK_IFELSE, AC_TRY_LINK, AC_COMPILE_CHECK): Likewise.
486 2006-04-29  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
488         * doc/autoconf.texi (Limitations of Make): Clean up markup.
490         * ChangeLog: Typo.
491         * doc/autoconf.texi (Portable Shell): Allow wrapped URLs, for
492         DVI output.
494 2006-04-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
496         * doc/autoconf.texi (Limitations of Builtins): Document FreeBSD
497         /bin/sh set unsorted output.
498         * lib/autoconf/general.m4 (_AC_CACHE_DUMP): Adjust.
499         * tests/local.at: Likewise.
501 2006-04-26  Paul Eggert  <eggert@cs.ucla.edu>
503         * doc/autoconf.texi (Portable C and C++, Varieties of Unportability):
504         (Integer Overflow, Null Pointers, Buffer Overruns):
505         (Floating Point Portability, Exiting Portably): New sections.
506         (Writing Test Programs): Fix some langauge.  Recommend exiting
507         with status 1, not merely nonzero.  Clarify exit declaration.
508         (Run Time): Move C exit status stuff to new Exiting Portably section.
509         (Systemology): Mention Posix and levenez.  Update v7 reference.
510         (Portable Shell): Mention the Posix shell.
512 2006-04-25  Stepan Kasal  <kasal@ucw.cz>
514         * bin/autoconf.as (me): Replace by as_me.
516 2006-04-25  Paul Eggert  <eggert@cs.ucla.edu>
518         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Don't use AS_ERROR,
519         since as_me isn't set yet.
521 2006-04-23  Paul Eggert  <eggert@cs.ucla.edu>
523         Prepare for deprecation of AS_BASENAME and AS_DIRNAME, and fix
524         a few minor bugs in this area.
526         * doc/autoconf.texi (Programming in M4sh): Comment out the
527         documentation of AS_BASENAME, for now.
528         (Shell Substitutions): Do not use AS_DIRNAME in an example.
529         (Limitations of Builtins) <basename>: Do not refer to
530         AS_BASENAME.
531         * bin/autoconf.as (me): Don't use AS_BASENAME.
532         (dir): Remove the unused variable.
533         * lib/m4sugar/m4sh.m4 (_AS_DETECT_REQUIRED): Renamed from
534         AS_DETECT_REQUIRED.  All uses changed.
535         (_AS_DETECT_SUGGESTED): Renamed from AS_DETECT_SUGGESTED.
536         All uses changed.
537         (_AS_DETECT_BETTER_SHELL): Put ;; at the end of a case.
538         (AS_BASENAME): Use "basename --" to protect against leading "-".
539         (_AS_BASENAME_EXPR): Renamed from AS_BASENAME_EXPR.  All uses changed.
540         (_AS_BASENAME_SED): Renamed from AS_BASENAME_SED.  All uses changed.
541         (_AS_BASENAME_PREPARE): Reject implementations that cannot handle "--".
542         (_AS_DIRNAME_PREPARE): Likewise.
543         (_AS_DIRNAME_EXPR): Renamed from AS_DIRNAME_EXPR.  All uses changed.
544         (_AS_DIRNAME_SED): Renamed from AS_DIRNAME_SED.  All uses changed.
545         (AS_DIRNAME): Use "dirname --".
547 2006-04-23  Paul Eggert  <eggert@cs.ucla.edu>
549         * doc/autoconf.texi (Runtime): Renamed from "Run Time".  All uses
550         of "run time" and "run-time" changed to "runtime", for consistency.
551         * lib/autoconf/fortran.m4: Likewise (in comment).
552         * lib/autoconf/functions.m4: Likewise.
553         * lib/autoconf/general.m4: Likewise.
554         * lib/autoconf/headers.m4: Likewise.
556         * doc/autoconf.texi (Run Time): Document the exit status situation
557         with more accuracy and detail.
559 2006-04-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
561         * doc/autoconf.texi (Introduction): The GNU Autoconf Macro
562         Archive is not officially `GNU' any more.  Update URL.
563         (Defining Directories): Likewise
564         * lib/autoconf/c.m4 (AC_C_RESTRICT): Update URL.
566 2006-04-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
568         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Remove the leading
569         newline from the `trap' code to finish `config.log'; the NetBSD
570         /bin/sh resets the exit status after an empty command, as
571         documented in doc/autoconf.texi.
572         Reported by Dalibor Topic <robilad@kaffe.org>.
574 2006-04-19  Paul Eggert  <eggert@cs.ucla.edu>
576         * doc/autoconf.texi (C Compiler): Clarify AC_C_TYPEOF.
577         Suggested by Bruno Haible.
579 2006-04-18  Paul Eggert  <eggert@cs.ucla.edu>
581         * configure.ac (ac_cv_sh_n_works): Don't try to test for it, since
582         some shells (e.g., Solaris 8 /bin/sh) implement it verrrry slowly.
583         Instead, just list the shells that we know work.
584         * tests/local.at (AT_CHECK_SHELL_SYNTAX): Remove 2nd arg.  All uses
585         changed.  Be more cautious about the _cv_ variable.
586         * tests/tools.at (Syntax of the shell scripts): Check the
587         _cv_ variable once, at first, to avoid an internal autoconf error
588         when sh -n does not work.
590 2006-04-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
592         * lib/Autom4te/FileUtils.pm: Sync from Automake.
594 2006-04-16  Paul Eggert  <eggert@cs.ucla.edu>
596         * lib/autoconf/general.m4 (_AC_INIT_CONFIG_LOG): Don't
597         use ">&-" since we're only 99.999% sure that this is portable,
598         and since the MinGW bug is fixed in a different way.
599         * lib/autotest/general.m4 (AT_INIT): Likewise.
601 2006-04-16  Stepan Kasal  <kasal@ucw.cz>
603         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Handle --recheck
604         before opening config.log, to avoid hitting a bug on MinGW.
606 2006-04-14  Paul Eggert  <eggert@cs.ucla.edu>
608         * lib/autoconf/general.m4 (_AC_INIT_CONFIG_LOG): Close
609         AS_MESSAGE_LOG_FD before reopening it onto the log file.
610         This works around a MinGW bug reported by Eric Paire.
611         Make sure that all writes to the log file append to it,
612         rather than possibly losing data.
613         * lib/autotest/general.m4 (AT_INIT): Likewise.
615 2006-04-14  Stepan Kasal  <kasal@ucw.cz>
617         * lib/Autom4te/FileUtils.pm (find_file): Fix a typo in the
618         description.
620 2006-04-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
622         * NEWS: Update.
624         * configure.ac (AC_INIT): Bump to 2.59d.
626 2006-04-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
628         Version 2.59c.
630         * Makefile.maint (news-date-check): Do not require a leading `*'
631         before the release date in NEWS.
633 2006-04-12  Stepan Kasal  <kasal@ucw.cz>
634         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
636         * lib/autoconf/status.m4 (_AC_OUTPUT_FILE): If the templates for
637         the instantiated file do not contain the string 'datarootdir'
638         but contain @datadir@, @docdir@, @infodir@, @localedir@, or
639         @mandir@, replace the reference '${datarootdir}' by the value.
640         * tests/torture.at (datarootdir workaround): New test.
641         * NEWS: Advertise this temporary fixup.
642         Based on a patch by Bruno Haible, reported and analyzed by
643         Paul Eggert and Noah Misch.
645 2006-04-12  Eric Blake  <ebb9@byu.net>
647         * tests/autotest.at (Debugging a failed test): Fix comment.
649 2006-04-12  Stepan Kasal  <kasal@ucw.cz>
651         * lib/m4sugar/m4sh.m4 (_AS_LN_S_PREPARE): Simplify the summary of
652         all the changes since 2006-04-07.
654 2006-04-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
656         * lib/m4sugar/m4sh.m4 (_AS_LN_S_PREPARE): If `ln -s file1 file2'
657         succeeded, but `ln -s file dir' failed, take care to remove the
658         leftover target before the next test, to prevent its spurious
659         failure; also make sure `ln file dir' works before selecting it.
660         Thanks to Keith Marshall for pointing this out.
661         * THANKS: Update.
663         * lib/autotest/general.m4 (AT_INIT): Store quoted variable
664         assignments in `at_debug_args', so that we put them correctly
665         in the `run' script.
666         * tests/autotest.at (Debugging a failed test): Unmark XFAIL.
667         Reported by Eric Blake.
669 2006-04-11  Eric Blake  <ebb9@byu.net>
671         * tests/autotest.at (AT_CHECK_AT): Add new argument, to allow
672         top-level tests after micro-suite has been run.   Used in...
673         (Debugging a successful test, Debugging script and environment),
674         (Debugging a failed test): ...these new tests.  The first of these
675         is fixed by...
676         * lib/autotest/general.m4 (_AT_CREATE_DEBUGGING_SCRIPT): New
677         macro, split out from...
678         (AT_INIT): ...here, so that using -d also generates a run script.
679         Document that -d inhibits top-level logging.
680         * doc/autoconf.texi (testsuite Invocation): Document that -d only
681         inhibits top-level logging; debug scripts are created.
683         * lib/autotest/general.m4 (_AT_CHECK): Avoid syntax error on empty
684         check.
685         * tests/autotest.at (Empty test, Empty check): New test to check it.
687         * lib/autoconf/c.m4 (AC_C_CONST, AC_C_VOLATILE): Avoid warnings
688         from gcc.
690 2006-04-10  Stepan Kasal  <kasal@ucw.cz>
692         * tests/mktests.sh: Use "trap '' 0", not "trap 0".  Do not touch
693         the files if a problem appears.  Make the empty *.at files
694         read-only, too.  Proposed by Ralf Wildenhues.
696 2006-04-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
698         * config/Makefile.am: Add comment to force updated Makefile.in.
700         * lib/freeze.mk: Fix typo in comment.  Unlike the last, white
701         space only patch to this file, this patch causes the Makefile.in
702         files that include freeze.mk to be updated, and thus have a
703         newer time stamp again, which in turn makes a pristine CVS
704         checkout have correct time stamps.
706         * Makefile.maint (cvs-sv): New macro, to be used..
707         (config.guess-url_prefix, config.sub-url_prefix)
708         (texinfo.tex-url_prefix, standards.texi-url_prefix): ..here;
709         point to CVS text checkout of Gnulib files.
710         (copyright-check): Bump current year.
711         (announcement): Do not hard-wire `./announce-gen'.
712         (cvs-update): Propagate failures of `cvs' and `move-if-change'
713         correctly.
714         * Makefile.cfg (executable-update): Use `chmod a+x' instead of
715         `chmod +x'.
716         (wget_files): Update config.guess, config.sub, texinfo.tex by
717         `wget-update', now that their URLs work again.
719 2006-04-10  Paul Eggert  <eggert@cs.ucla.edu>
721         * doc/autoconf.texi (Particular Types): Don't use AC_CHECK_TYPE.
722         Problem noted by Paul D. Smith.
724 2006-04-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
726         * doc/autoconf.texi: Remove unused words from word list.
727         * .x-sc_prohibit_atoi_atof, .x-sc_space_tab, .x-sc_sun_os_names,
728         .x-sc_trailing_space: New files.
730         * doc/standards.texi: Sync from gnulib.
732         * NEWS, doc/autoconf.texi (AC_LIBOBJ vs LIBOBJS): Mark
733         `LIBOBJDIR' as experimental.
735         * lib/m4sugar/m4sh.m4 (_AS_LN_S_PREPARE): MSYS `ln -s' fails
736         with a target directory; it's internally implemented as `cp'
737         anyway, but since Autoconf advertises the possibility to use
738         a target directory when LN_S is `ln -s', we need to find out.
739         Reported by Rolf Ebert <rolf.ebert.gcc@gmx.de> against MSYS,
740         analyzed by Keith Marshall <keith.marshall@total.com>.
742         * THANKS: Update.
744 2006-04-10  Paul Eggert  <eggert@cs.ucla.edu>
746         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Just output
747         confdefs.h as-is.  In general, if it has backslash-newline or the
748         like, then it doesn't work either to sort or to remove empty
749         lines.
751 2006-04-09  Stepan Kasal  <kasal@ucw.cz>
753         * tests/Makefile.am (AUTOCONF_FILES): Fix typo in the comment.
755 2006-04-09  Alexandre Duret-Lutz  <adl@gnu.org>
757         * lib/autom4te.in (Automake-preselections): Preselect
758         _AM_SUBST_NOTMAKE.
760 2006-04-08  Paul Eggert  <eggert@cs.ucla.edu>
762         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Use '\'' for an
763         apostrophe within a single-quoted string, as this is the usual
764         tradition and is easier to read than '"'"'.  Don't rely on the
765         shell treating "$/" like '$/'.  Use a more-consistent indenting
766         style for the trap.
768 2006-04-09  Eric Blake  <ebb9@byu.net>
770         * tests/autotest.at (Backquote command substitution),
771         (Multiline backquote command substitution): Remove mistaken
772         AT_NO_CMDSUBST from the 2006-03-14 patch, which was meant to be
773         applied...
774         (Parenthetical command substitution, Multiline parenthetical
775         command substitution): here.
777 2006-04-08  Paul Eggert  <eggert@cs.ucla.edu>
779         Import macros from gnulib (often changing their name).
781         * NEWS: AC_C_TYPE_LONG_DOUBLE is now obsolete.
782         New macros AC_CHECK_DECLS_ONCE, AC_CHECK_FUNCS_ONCE,
783         AC_CHECK_HEADERS_ONCE, AC_FUNC_STRTOLD, AC_HEADER_ASSERT,
784         AC_STRUCT_DIRENT_D_INO, AC_STRUCT_DIRENT_D_TYPE,
785         AC_TYPE_LONG_DOUBLE, AC_TYPE_LONG_DOUBLE_WIDER, AC_TYPE_INT8_T,
786         AC_TYPE_INT16_T, AC_TYPE_INT32_T, AC_TYPE_INT64_T,
787         AC_TYPE_INTMAX_T, AC_TYPE_INTPTR_T, AC_TYPE_LONG_LONG_INT,
788         AC_TYPE_UINT8_T, AC_TYPE_UINT16_T, AC_TYPE_UINT32_T,
789         AC_TYPE_UINT64_T, AC_TYPE_UINTMAX_T, AC_TYPE_UINTPTR_T,
790         AC_TYPE_UNSIGNED_LONG_LONG_INT, AC_USE_SYSTEM_EXTENSIONS.
791         The manual mentions Gnulib more prominently.
792         * doc/autoconf.texi (Gnulib): New node.
793         (Pointers): Add Gnulib URL.
794         (Particular Functions): Alphabetize.  Add AC_FUNC_STRTOLD.
795         (Generic Functions): Add AC_CHECK_FUNCS_ONCE.  Refer to new
796         Gnulib section.
797         (Particular Headers): Add AC_HEADER_ASSERT.  For stdbool.h,
798         suggest a #define rather than a typedef for _Bool, and mention
799         Gnulib rather than trying to substitute stdbool code.
800         (Generic Headers): Add AC_CHECK_HEADERS_ONCE.
801         (Generic Declarations): Add AC_CHECK_DECLS_ONCE.
802         (Particular Structures): Add AC_STRUCT_DIRENT_D_INO,
803         AC_STRUCT_DIRENT_D_TYPE.
804         (Particular Types): Mention stdint.h and inttypes.h as standard
805         headers too.
806         Add AC_TYPE_INT8_T, AC_TYPE_INT16_T, AC_TYPE_INT32_T, AC_TYPE_INT64_T,
807         AC_TYPE_INTMAX_T, AC_TYPE_INTPTR_T, AC_TYPE_LONG_DOUBLE,
808         AC_TYPE_LONG_DOUBLE_WIDER, AC_TYPE_LONG_LONG_INT, AC_TYPE_UINT8_T,
809         AC_TYPE_UINT16_T, AC_TYPE_UINT32_T, AC_TYPE_UINT64_T,
810         AC_TYPE_UINTMAX_T, AC_TYPE_UINTPTR_T, AC_TYPE_UNSIGNED_LONG_LONG_INT.
811         (C Compiler): Move AC_C_LONG_DOUBLE to ...
812         (Obsolete Macros): here.  Under AC_LONG_DOUBLE, mention
813         AC_TYPE_LONG_DOUBLE or AC_TYPE_LONG_DOUBLE_WIDER instead.
814         (Posix Variants): Add AC_USE_SYSTEM_EXTENSIONS.
815         (Coding Style).  Don't mention m4_expand_once.
816         * lib/autoconf/c.m4 (AC_C_LONG_DOUBLE): Implement via
817         AC_TYPE_LONG_DOUBLE_WIDER.  Now obsolete.
818         * lib/autoconf/functions.m4 (_AH_CHECK_FUNCS): New macro.
819         (AC_CHECK_FUNCS): Use it.
820         (AC_CHECK_FUNCS_ONCE, AC_FUNC_STRTOLD): New macros.
821         (AC_FUNC_WAIT3): "the Open Group standards" -> "POSIX".
822         * lib/autoconf/general.m4 (AC_CHECK_DECLS_ONCE): New macro.
823         * lib/autoconf/headers.m4 (AC_CHECK_HEADERS_ONCE): New macro.
824         (AC_HEADER_ASSERT): New macro.
825         (AC_HEADER_STDBOOL): Don't assume "#error" works.
826         Catch a bug in IBM AIX xlc compiler version 6.0.0.0.
827         Catch a bug in an HP-UX C compiler.
828         * lib/autoconf/specific.m4 (AC_USE_SYSTEM_EXTENSIONS): New macro.
829         * lib/autoconf/types.m4 (AC_TYPE_INTMAX_T. AC_TYPE_UINTMAX_T):
830         (AC_TYPE_INTPTR_T, AC_TYPE_UINTPTR_T. AC_TYPE_LONG_DOUBLE):
831         (AC_TYPE_LONG_DOUBLE_WIDER, AC_C_LONG_DOUBLE, AC_TYPE_LONG_LONG_INT):
832         (AC_TYPE_UNSIGNED_LONG_LONG_INT, _AC_TYPE_INT, _AC_TYPE_UNSIGNED_INT):
833         (_AC_STRUCT_DIRENT, AC_STRUCT_DIRENT_D_INO, AC_STRUCT_DIRENT_D_TYPE):
834         New macros.
836         * tests/mktests.sh (ac_exclude_list, au_exclude_list): Do not
837         use /^foo|bar$/, it does not mean /^(foo|bar)$/.
839 2006-04-08  Stepan Kasal  <kasal@ucw.cz>
841         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Fix the wording
842         of the warning introduced by the 2001-08-28 change.
844 2006-04-08  Stepan Kasal  <kasal@ucw.cz>,
845             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
847         * lib/autoconf/general.m4 (AC_CACHE_SAVE): All `ac_cv_env_foo'
848         variables shall be overriden by the cache.
849         * tests/torture.at (AC_ARG_VAR): Test also with a first value
850         that contains braces.
852 2006-04-07  Stepan Kasal  <kasal@ucw.cz>
854         Revert the patch from 2006-04-01 and only improve
855         _AS_DETECT_BETTER_SHELL:
857         * lib/m4sugar/m4sh.m4 (_AS_PATH_WALK): Do not optimize; do not
858         skip nonexistent directories.
859         (_AS_DETECT_BETTER_SHELL): The optimization is moved here--try
860         only shell candidates which exist.
861         (AS_UNAME): No need to give three parameters to _AS_PATH_WALK.
862         * lib/autotest/general.m4 (AT_INIT): No need to give three
863         parameters to _AS_PATH_WALK.
865 2006-04-07  Stepan Kasal  <kasal@ucw.cz>,
866             Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
868         * bin/autoupdate.in (handle_autoconf_patches): Change the way we
869         distinguish m4sugar macros.
870         * tests/tools.at (autoupdating with aclocal and m4_include):
871         New test.  Bug reported by Gary V. Vaughan <gary@gnu.org>,
872         test case by Noah Misch <noah@cs.caltech.edu>.
874 2006-04-07  Stepan Kasal  <kasal@ucw.cz>
876         Revert my change from 2006-03-17, in other words:
877         * lib/m4sugar/m4sh.m4 (AS_BOURNE_COMPATIBLE): Insert BIN_SH=xpg4
878           and DUALCASE=1.
879         (AS_SHELL_SANITIZE): Remove DUALCASE=1.
880         * doc/autoconf.texi (Special Shell Variables) <BIN_SH>: Say that
881           it is set.
883 2006-04-07  Eric Blake  <ebb9@byu.net>
885         * doc/autoconf.texi (Programming in M4sh): Document that
886         AS_MKDIR_P exits the script on failure.
887         * lib/autotest/general.m4: Remove redundant AS_ERROR.
889 2006-04-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
891         * config/elisp-comp, config/install-sh, config/mdate-sh,
892         config/missing, config/mkinstalldirs: Sync from Automake.
894         * lib/Autom4te/FileUtils.pm, lib/Autom4te/Struct.pm: Sync
895         from Automake.
897         * doc/make-stds.texi: Sync from gnulib.
899 2006-04-06  Eric Blake  <ebb9@byu.net>
901         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_O): Inside cache
902         check, s/ac_exeext/ac_cv_exeext/.  Fixes regression introduced
903         2006-04-01.
905 2006-04-06  Stepan Kasal  <kasal@ucw.cz>,
906             Eric Blake  <ebb9@byu.net>,
907             Paul Eggert  <eggert@cs.ucla.edu>,
908             Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
910         * lib/autoconf/general.m4 (_AC_CACHE_DUMP): Fix the detection of
911         whether `set' quotes correctly: redirect stderr of the tested
912         `set', and use a subshell, for Ultrix; use `sed' instead of
913         `grep' for zsh `set' which may write binary output; match only
914         at the beginning of a line, to avoid false positives.
915         In order to avoid false positives by unrelated variables with
916         multiline content, put the dump algorithm in a subshell and
917         unset all variables containing newlines (except some which are
918         special to the shell).  Warn about cache variables that are
919         unset.
921 2006-04-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
923         * config/config.guess, config/config.sub, config/texinfo.tex:
924         Sync from upstream.
926         * tests/mktests.sh: Reword comments.
928         * tests/mktests.sh: Only skip internal macros starting with
929         `_AC_' or `__AC_'.  Noted by Stepan Kasal.
930         Update exclusion lists for the test suite to this end:
931         (AC_ARG_VAR): Do test this now.
932         (AC_SEARCH_LIBS, AC_REPLACE_FUNCS): Need an argument.
933         (AC_LINKER_OPTION): Remove (renamed to _AC_LINKER_OPTION).
934         (AC_LIST_MEMBER_OF): Likewise (renamed to _AC_LIST_MEMBER_IF).
935         (AC_LINK_FILES): Obsoleted since (and thus AU_DEFUN'ed).
937         * doc/autoconf.texi (Shell Substitutions): Mention the MSYS
938         shell issue with double-quoted command substitutions of native
939         commands.
940         Reported to MSYS by Mark Cave-Ayland, to Autoconf by Keith
941         Marshall.
943         * Makefile.maint (sc_cast_of_argument_to_free): Do not fail when
944         no file matches the glob, discard the warning, set `nullglob'.
945         (syntax-check): Likewise.
946         (sc_cast_of_x_alloc_return_value): Likewise.
947         (sc_cast_of_alloca_return_value, sc_error_exit_success)
948         (sc_prohibit_jm_in_m4, .re-list, sc_unmarked_diagnostics)
949         (m4-check): Likewise.
950         (sc_system_h_headers): Do not print rule on execution.
951         (sc_tight_scope): Do not fail for non-existing `src' directory.
952         (sc_changelog): Skip the Copyright footer.
953         * lib/autoconf/lang.m4: Remove trailing space.
955         * lib/autoconf/status.m4: More replacements to
956         <tab><space> where this makes sense.
958 2006-04-06  Stepan Kasal  <kasal@ucw.cz>
960         * tests/Makefile.am (maintainer-check-posix):
961           s/POSIXLY_CORRECTLY/POSIXLY_CORRECT/
963         * lib/autoconf/status.m4 (_AC_CONFIG_FOOS): Append TAGS to
964           ac_config_<foo>s again, sometimes normalized, sometimes not.
965         (AC_CONFIG_FILES, AC_CONFIG_HEADERS, AC_CONFIG_LINKS):
966         (AC_CONFIG_COMMANDS): Do not do so here.
967         (_AC_CONFIG_REGISTER_DEST): Double quote the tags in macros _AC_LIST_TAGS
968           and_AC_LIST_TAG_COMMANDS; fixes another regression introduced by the
969           2005-07-25 rewrite.  Noticed by Noah Misch.
971         * lib/autoconf/general.m4 (AC_PRESERVE_HELP_ORDER): Do not define
972           _AC_PRESERVE_HELP_ORDER, ...
973         (AC_ARG_ENABLE, AC_ARG_WITH): ... use AC_PROVIDE_IFELSE insetad.
975         * lib/autoconf/general.m4 (AC_ARG_VAR): Do not use m4_divert_once
976           inside m4_expand_once; it is redundant.
978         * lib/autoconf/general.m4 (_AC_INIT_HELP): Remove the broken support
979           for --help from Cygnus `configure.'
981 2006-04-06  Paul Eggert  <eggert@cs.ucla.edu>
983         * doc/autoconf.texi (C Compiler): Warn about #error.  Follows up
984         on a patch proposed by Ralf Wildenhues.
986 2006-04-05  Paul Eggert  <eggert@cs.ucla.edu>
988         * lib/autoconf/status.m4: Replace <space>''<tab> with
989         <tab><space> where this makes sense.
991 2006-04-05  Howard Chu  <hyc@highlandsun.com>  (trivial change)
992             Noah Misch  <noah@cs.caltech.edu>
994         * lib/autoconf/general.m4 (AC_PRESERVE_HELP_ORDER): New macro.
995         (AC_ARG_ENABLE, AC_ARG_WITH): Adjust.
996         * doc/autoconf.texi (Help Formatting): New node.
997         * NEWS: Announce AC_PRESERVE_HELP_ORDER.
999 2006-04-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1001         * TODO, config/Makefile.am, lib/freeze.mk, lib/autoconf/c.m4,
1002         lib/autoconf/specific.m4, lib/autoconf/status.m4,
1003         lib/autoconf/types.m4, lib/autotest/general.m4,
1004         tests/mktests.sh, tests/torture.at: White space cleanup:
1005         remove some SPACE before TAB, or add quoting ('' or @&t@).
1007         * NEWS, TODO, bin/autoreconf.in: `filesystem' -> `file system'.
1009         * doc/autoconf.texi (Shell Substitutions): Document `^' vs. `|'.
1011 2006-04-05  Eric Blake  <ebb9@byu.net>
1013         * lib/autotest/general.m4 (AT_INIT): Prep AT_*_all, so that an
1014         empty test suite works.
1015         * tests/autotest.at (Empty test suite): Remove xfail.
1017 2006-04-05  Noah Misch  <noah@cs.caltech.edu>
1019         * lib/autoconf/status.m4 (_AC_CONFIG_FOOS): Do not append normalized
1020         TAGS to ac_config_<foo>s.
1021         (AC_CONFIG_FILES, AC_CONFIG_HEADERS, AC_CONFIG_LINKS): Do so here.
1022         (AC_CONFIG_COMMANDS): Append NAME to ac_config_commands without
1023         normalizing it, consistent it with previous releases.
1024         * tests/torture.at (Macro calls in AC_CONFIG_COMMANDS tags): New test.
1026 2006-04-05  Paul Eggert  <eggert@cs.ucla.edu>
1028         * lib/m4sugar/m4sh.m4 (AS_BASENAME_EXPR, AS_DIRNAME_EXPR):
1029         Use simplified args that Eric Blake originally suggested.
1031 2006-04-04  Paul Eggert  <eggert@cs.ucla.edu>
1033         * tests/mktests.sh: Don't use 'cat'; just read the files directly.
1034         Prefer 'sort -u' to 'sort | uniq'.  Filter data before sorting it.
1035         Use 'comm' rather than N instances of grep; this also fixes a bug
1036         whereby substrings were incorrectly matched, causing us to not
1037         generate tests for AC_F77_NAME_MANGLING and AC_FUNC_LSTAT.
1038         (exclude_list): Exclude empty macros.
1039         (ac_exclude_list): Exclude AC_INCLUDES_DEFAULT.
1041         Use awk rather than grep -E or egrep, to avoid
1042         portability problems with regular expressions containing newlines.
1043         (exclude_list, ac_exclude_list, au_exclude_list, ac_exclude_script):
1044         Switch from grep to awk syntax.
1045         (ac_exclude_script): Renamed from ac_exclude_egrep.
1046         (au_exclude_script): Renamed from au_exclude_egrep.
1048 2006-04-04  Noah Misch  <noah@cs.caltech.edu>
1050         * lib/autoconf/general.m4 (_AC_INIT_HELP): Only `configure.in' evidences
1051         a subdirectory subject to Cygnus `configure'.
1052         * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): Likewise.
1054         * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_MONGREL): Omit the bug
1055         report request when we have no AC_PACKAGE_BUGREPORT.
1057 2006-04-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1059         * THANKS: Update.
1061         * tests/mktests.sh: Update copyright year in the header of the
1062         generated files.
1064         * lib/autoconf/c.m4 (AC_C_INLINE): Do not skip cleanup code.
1065         (AC_C_RESTRICT): Likewise.  Furthermore, add a function with a
1066         typedef'ed restricted pointer, to catch a compiler bug on
1067         HP-UX 11.x, and fix warnings so it passes with -Werror.
1068         (_AC_PROG_CC_C99): Likewise.
1069         Reported by Albert Chin <china@thewrittenword.com>.
1070         * tests/mktests.sh: Do not skip AC_C_INLINE, AC_C_RESTRICT.
1072 2006-04-03  Noah Misch  <noah@cs.caltech.edu>
1074         * bin/autoscan.in (subdirs): New global.
1075         (scan_file): Prune directories with configure{,.{ac,in,gnu}}.
1076         (output): Emit AC_CONFIG_SUBDIRS as needed.
1077         * tests/autoscan.at (autoscan): Remove XFAIL.
1079 2006-04-03  Noah Misch  <noah@cs.caltech.edu>
1081         * lib/autoconf/general.m4 (AC_CACHE_SAVE): Use AC_MSG_NOTICE.
1083 2006-04-03  Eric Blake  <ebb9@byu.net>
1085         * THANKS: Add myself.
1087 2006-04-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1089         * lib/autotest/general.m4 (AT_INIT): Add `at_testdir' to pointer
1090         to log, point to testsuite output tree.
1092 2006-04-02  Paul Eggert  <eggert@cs.ucla.edu>
1094         * NEWS: AC_PROG_CC and AC_PROG_CXX no longer declare 'exit'.
1095         * doc/autoconf.texi (Function Portability): Mention that C++
1096         has trouble with 'exit'.
1097         (Guidelines): Test programs shouldn't use 'exit'.
1098         * lib/autoconf/c.m4 (_AC_PROG_CXX_EXIT_DECLARATION):
1099         Remove; all uses removed.
1100         (AC_LANG_INT_SAVE(C), AC_C_BIGENDIAN):
1101         Return from 'main' instead of calling 'exit'.
1102         * lib/autoconf/functions.m4 (_AC_LIBOBJ_ALLOCA, AC_FUNC_CLOSEDIR_VOID):
1103         (_AC_FUNC_FNMATCH_IF, AC_FUNC_GETGROUPS):
1104         (AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK, _AC_FUNC_MALLOC_IF):
1105         (AC_FUNC_MEMCMP, AC_FUNC_MKTIME, AC_FUNC_MMAP, _AC_FUNC_REALLOC_IF):
1106         (AC_FUNC_SETPGRP, _AC_FUNC_STAT, AC_FUNC_STRTOD, AC_FUNC_STRERROR_R):
1107         (AC_FUNC_STRNLEN, AC_FUNC_SETVBUF_REVERSED, AC_FUNC_UTIME_NULL):
1108         (_AC_FUNC_FORK, _AC_FUNC_VFORK, AC_FUNC_WAIT3): Likewise.
1109         * lib/autoconf/headers.m4 (AC_HEADER_STDC): Likewise.
1110         * lib/autoconf/specific.m4 (AC_SYS_RESTARTABLE_SYSCALLS): Likewise.
1111         * lib/autoconf/types.m4 (AC_TYPE_GETGROUPS): Likewise.
1112         * tests/compile.at: Likewise.
1114 2006-04-02  Pavel Roskin  <proski@gnu.org>
1116         * doc/autoconf.texi (AC_PATH_X): Update per 2005-08-26 change.
1118 2006-04-01  Stepan Kasal  <kasal@ucw.cz>
1120         Clean up _AC_COMPILER_EXEEXT* macros.
1122         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Don't try to
1123           detect exeext, it will be done by _AC_COMPILER_EXEEXT_O; just set
1124           ac_file to the name of the default output file and call
1125           _AC_COMPILER_EXEEXT_WORKS.  Move the definition of ac_files and the
1126           initial `rm' of the candidate files...
1127         (_AC_COMPILER_EXEEXT): ... here and simplify them.  Moreover, use
1128           the same list in subsequent `rm' calls, and for the temporary
1129           redefinition of ac_clean_files; call _AC_COMPILER_OBJEXT at the end,
1130           and don't call the other _AC_COMPILER_EXEEXT_* macros directly, use...
1131         (_AC_COMPILER_EXEEXT_TESTS): ... this new macro.
1132         (_AC_COMPILER_EXEEXT_O): Don't export ac_cv_exeext, it's not needed (or
1133           no longer needed) by libtool.  Make it a cache check.
1134         (_AC_COMPILER_EXEEXT_CROSS): Remove the comment, it was obviously
1135           copied here by mistake.
1136         (AC_NO_EXECUTABLES): Redefine _AC_COMPILER_EXEEXT_TESTS, not
1137           _AC_COMPILER_EXEEXT.
1138         * lib/autoconf/c.m4 (AC_PROG_CC, AC_PROG_CXX, AC_PROG_OBJC): Do not call
1139           _AC_COMPILER_OBJEXT directly.
1140         * lib/autoconf/fortran.m4 (_AC_PROG_FC): Likewise.
1142 2006-04-01  Stepan Kasal  <kasal@ucw.cz>
1144         * lib/m4sugar/m4sh.m4 (_AS_DIRNAME_PREPARE): New macro.
1145         (AS_DIRNAME): Use it.
1146         (_AS_PREPARE): Add _AS_DIRNAME_PREPARE.
1148         * tests/*.at: Remove the generated ones.
1150 2006-04-01  Stepan Kasal  <kasal@ucw.cz>
1152         * lib/autotest/general.m4 (AT_INIT): Don't optimize the first PATH walk.
1154 2006-04-01  Eric Blake  <ebb9@byu.net>
1156         * lib/m4sugar/m4sh.m4 (_AS_PATH_WALK): Optimize nonexistent
1157         directories, unless optional third argument supplied.
1158         (AS_UNAME): Don't optimize PATH walk.
1160         * lib/Autom4te/Struct.pm, lib/autoconf/c.m4: s/non-existent/nonexistent/
1162 2006-04-01  Eric Blake  <ebb9@byu.net>
1163         and Stepan Kasal  <kasal@ucw.cz>
1165         * lib/m4sugar/m4sh.m4: Sort sections as implied by the comments,
1166         and fix some typos.
1168 2006-04-01  Noah Misch  <noah@cs.caltech.edu>
1170         * lib/autoconf/general.m4 (_AC_INIT_VERSION): Emit script name and
1171         Autoconf version number despite a zero- or one-argument AC_INIT.
1173         * bin/autoreconf.in (parse_args): Multiple -v send --verbose to
1174         subordinate tools.
1175         * lib/Autom4te/General.pm (getopt): Make -v and -d incremental.
1176         * doc/autoconf.texi (autoreconf Invocation): Document it.
1178         * doc/autoconf.texi: Use `Cygwin', `MinGW', and `license' consistently.
1179         Append LocalWords so ispell-buffer passes cleanly.  Spelling fixes.
1181 2006-04-01  Eric Blake  <ebb9@byu.net>
1183         * lib/m4sugar/m4sh.m4 (AS_MKDIR_P): Allow use in shell lists.
1184         * lib/autotest/general.m4: Be tolerant of existing directory when
1185           rm failed to remove it.
1187 2006-04-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1189         * bin/autoupdate.in: Redefine m4_location so that warnings print
1190         the correct lines of the input file by subtracting..
1191         (_au__first_line): ..this new definition.
1193         * lib/autoconf/general.m4 (AC_COMPILE_CHECK): Prefer
1194         AC_MSG_CHECKING over obsolete AC_CHECKING in autoupdated code.
1195         Remove stray newline in output.
1196         (AC_FOREACH): AU_DEFUN this as literal for autoupdate, and also
1197         AC_DEFUN this for autoconf, including the obsoletion diagnose.
1198         Fixes autoupdating of code where the replacement output contains
1199         m4sugar macros.
1200         * lib/autoconf/lang.m4 (AC_LANG_SAVE): Likewise.
1201         * tests/mktests.sh (ac_exclude_list): Add AC_FOREACH.
1202          (au_exclude_list): Add AC_LANG_SAVE.
1203         * tests/tools.at: Several new tests for all of this.
1204         * doc/autoconf.texi (Obsoleting Macros): Give a hint about the
1205         hairy details.
1206         The AC_LANG_SAVE issue was reported against Libtool by
1207         Dalibor Topic <robilad@kaffe.org>, and against Autoconf 2.57 by
1208         Kristian Kvilekval <kris@cs.ucsb.edu>.
1210 2006-04-01  Stepan Kasal  <kasal@ucw.cz>
1212         * bin/autoupdate.in: Handle m4 builtins and m4sugar macros together--
1213           switch all of them on and of when necessary.  Fixes the bug when
1214           m4sugar macros (e.g., m4_define) were expanded after the first
1215           automatic update (e.g., after AC_PREREQ or AC_INIT).
1217 2006-03-31  Paul Eggert  <eggert@cs.ucla.edu>
1219         * doc/autoconf.texi (Programming in M4sh): Sharpen the descriptions
1220         of AS_BASENAME and AS_DIRNAME.  Reported by Stepan Kasal.
1222         * lib/m4sugar/m4sh.m4 (AS_BASENAME_EXPR): Handle ///, ////, etc.
1223         correctly.  Problem reported by Eric Blake.
1224         (_AS_EXPR_PREPARE): Detect Tru64 expr bug.  Problem reported by
1225         Ralf Wildenhues.
1227 2006-03-30  Paul Eggert  <eggert@cs.ucla.edu>
1229         * doc/autoconf.texi (Programming in M4sh, Limitations of Usual Tools):
1230         Tighten up the basename/dirname wording.
1232 2006-03-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1234         * Makefile.maint (sc_texi_notab): New check: do not use TABs
1235         in texinfo files outside of verbatim environments.
1236         (syntax-check-rules): Update.
1237         * doc/autoconf.texi (Configuration Headers): Conform to it.
1239 2006-03-30  Chris Pickett <cpicke@cs.mcgill.ca>  (tiny change)
1241         * doc/autoconf.texi (autoreconf Invocation): Mention that -I for
1242           aclocal cannot be given on the command line.
1244 2006-03-29  Paul Eggert  <eggert@cs.ucla.edu>
1246         * doc/autoconf.texi (Programming in M4sh): Mention AS_BASENAME.
1247         Give an example for AS_DIRNAME instead of referring to Posix..
1248         (File System Conventions): Put discussion of // versus / here, and
1249         modernize it a bit.
1250         (Limitations of Usual Tools): Add basename.  Remove verbiage
1251         after dirname, since it got moved to the above sections.
1252         All this was inspired by a patch proposed earlier by Eric Blake.
1254 2006-03-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1256         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Quote
1257         `$0' to protect against spaces.
1258         * lib/autotest/general.m4 (AT_INIT): Likewise.
1259         * lib/m4sugar/m4sh.m4 (_AS_LINENO_PREPARE): Likewise, for
1260         `$0', $as_me.
1262 2006-03-26  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1264         * bin/autoscan.in: The value of find_configure_ac should be
1265         checked for existence, so we don't barf over a nonexisting
1266         configure.ac.  Reported by Laurence Darby <ldarby@tuffmail.com>.
1268 2006-03-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1270         * bin/autoupdate.in: Fix some typos.
1272 2006-03-21  Stepan Kasal  <kasal@ucw.cz>
1274         * doc/autoconf.texi (Installation Directory Variables): Fix typo.
1276         * lib/autoscan/autoscan.list: Refreshed.
1278 2006-03-20  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1280         * tests/local.at (AT_CHECK_ENV): Ignore AC_SUBSTed Objective C
1281         and Erlang related variables.
1283         * lib/autoconf/c.m4 (AC_LANG(Objective C), AC_LANG_OBJC)
1284         (_AC_LANG_ABBREV(Objective C), _AC_LANG_PREFIX(Objective C))
1285         (AC_LANG_SOURCE(Objective C), AC_LANG_PROGRAM(Objective C))
1286         (AC_LANG_CALL(Objective C), AC_LANG_FUNC_LINK_TRY(Objective C))
1287         (AC_LANG_BOOL_COMPILE_TRY(Objective C))
1288         (AC_LANG_INT_SAVE(Objective C), AC_LANG_PREPROC(Objective C))
1289         (AC_PROG_OBJCPP, AC_LANG_COMPILER(Objective C), AC_PROG_OBJC)
1290         (_AC_PROG_OBJC_G): New macros.
1291         (_AC_ARG_VAR_CPPFLAGS): Adjusted.
1292         * doc/autoconf.texi (Objective C Compiler): New node.
1293         (Preset Output Variables): Document OBJCFLAGS.
1294         (Language Choice): Document `Objective C' language.
1295         (Fortran Compiler): Fix typo.
1296         * NEWS: Updated.
1297         Inspired by a patch from David M. Lloyd <dmlloyd@tds.net>.
1299 2006-03-20  Stepan Kasal  <kasal@ucw.cz>
1301         * doc/autoconf.texi (Default Includes): Fix typo
1302           s/AC_HEADERS_STDC/AC_HEADER_STDC/
1303         (Limitations of Usual Tools): s/unwriteable/unwritable/
1304         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT, _AC_COMPILER_EXEEXT):
1305           Fix typos in the comments.
1307 2006-03-17  Stepan Kasal  <kasal@ucw.cz>
1309         * lib/autoconf/programs.m4 (AC_PATH_TOOL, AC_CHECK_TOOL, AC_CHECK_TOOLS):
1310           Factor out the warning to...
1311         (_AC_TOOL_WARN): ... this new macro; use `cross_compiling'.
1312         * tests/local.at (AT_CHECK_MACRO_CROSS): Avoid this warning.
1313         * tests/semantics.at (AC_C_BIGENDIAN): Likewise.
1315         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE): Do not special
1316           case `ac_delim' when writing the sed script.
1318         * lib/m4sugar/m4sh.m4 (AS_BOURNE_COMPATIBLE): Removed BIN_SH=xpg4,
1319           moved DUALCASE=1 ...
1320         (AS_SHELL_SANITIZE): ... here.
1321         * doc/autoconf.texi (Special Shell Variables) <BIN_SH>: Do not say
1322           that it is set.
1324         * lib/autoconf/programs.m4 (AC_CHECK_PROG): Quote the parameter of
1325           AC_SUBST.
1326         (_AC_PATH_PROG): Store the result to VARIABLE.
1327         (AC_PATH_PROG): No need to set VARIABLE again.
1329         * tests/local.at (AT_CHECK_MACRO_CROSS): New macro, creates two tests:
1330           the first one is usual AT_CHECK_MACRO test, the second one checks
1331           that the same works when cross-compiling.
1332         * tests/semantics.at (AC_CHECK_ALIGNOF, AC_CHECK_ALIGNOF struct):
1333         (AC_CHECK_SIZEOF, AC_CHECK_SIZEOF struct): Use it.
1335 2006-03-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1337         * lib/m4sugar/m4sh.m4 (_AS_DETECT_BETTER_SHELL): Prepend
1338         the directory `/usr/bin/posix' in the shell search, to prefer
1339         the Posix shell not only in subsequent spawns as with `$BIN_SH'
1340         on Tru64.
1342         * doc/autoconf.texi (contents): To fix texi2html output, hide
1343         `@setcontentsaftertitlepage' for HTML.
1344         (Writing Autoconf Macros): Likewise, insert space after `@c'.
1345         (Leviticus, Numbers, Deuteronomy): Likewise, change `@,c' to
1346         `@,{c}'.
1348 2006-03-16  Stepan Kasal  <kasal@ucw.cz>
1350         * lib/m4sugar/m4sh.m4 (_AS_PREPARE): Move the IFS setup and CDPATH
1351           sanitizing...
1352         (AS_SHELL_SANITIZE): ...here; mention _AS_PATH_WALK needs IFS set.
1353         * lib/autoconf/general.m4 (_AC_CANONICAL_SPLIT): Add an explanation
1354           why IFS is restored so late; thank you, Ralf, for reminding us.
1356 2006-03-15  Stepan Kasal  <kasal@ucw.cz>
1358         * doc/autoconf.texi (Pretty Help Strings): No need to use cached
1359           variables in the examples.
1361 2006-03-14  Romain Lenglet  <rlenglet@users.forge.objectweb.org>
1363         * doc/autoconf.texi (several sections): Cleaned up documentation for
1364         macros in erlang.m4.
1366 2006-03-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1368         * tests/autotest.at (AT_NO_CMDSUBST): New macro to determine
1369         failure condition for `$(cmd)' style command substitutions.
1370         (Parenthetical command substition, Multiline parenthetical
1371         command substition): Use it.
1373         * doc/autoconf.texi (Special Shell Variables): Missing word.
1374         Reported by Keith Marshall <keith.marshall@total.com>.
1376         * lib/m4sugar/m4sh.m4 (_AS_PATH_WALK): Do not forget to reset
1377         IFS even in case of empty `$PATH'.
1379 2006-03-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1381         * lib/autotest/general.m4 (AT_INIT) <at_optarg>: Optimize
1382         `expr' away if there is nothing to do.
1383         < --keywords >: Simplify and robustify argument handling.
1384         Revert erroneous comment from 2005-08-23.  Extend to allow
1385         keyword negation with `!'.
1386         Update help message.  Remove broken code to prevent running
1387         tests multiple times.
1388         * doc/autoconf.texi (testsuite Invocation) < --keywords >:
1389         Update and fix the documentation accordingly.
1390         * tests/autotest.at (Keywords): Renamed to..
1391         (Keywords and ranges): .. this.  Extended to make sure negated
1392         keywords, keywords taken from AT_SETUP arguments, and numeric
1393         test ranges work, and that matching is case-insensitive.
1395 2006-03-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1397         * lib/autoconf/types.m4 (_AC_CHECK_TYPE_NEW): Use a typedef to
1398         allow to pass unnamed structs even in C++.
1399         (AC_CHECK_SIZEOF):  Likewise.
1400         Also fix quoting error in `AC_MSG_FAILURE' arguments.
1401         * tests/semantics.at (AC_CHECK_ALIGNOF struct, AC_CHECK_SIZEOF
1402         struct): New tests for unnamed structs, each both native and
1403         cross-compiling.
1405         * lib/autoconf/c.m4 (AC_C_TYPEOF): Use typedef to avoid defining
1406         a structure inside a cast, for C++ conformance.
1407         * lib/autoconf/types.m4 (AC_CHECK_ALIGNOF): Likewise.
1408         Also fix quoting error in `AC_MSG_FAILURE' arguments.
1410         * lib/autoconf/c.m4 (AC_PROG_CC_STDC): If we cannot enable C99
1411         nor C89 mode, set `$ac_cv_prog_cc_stdc' to `no' instead of
1412         trying to execute the command `no'.
1414         * lib/autoconf/lang.m4 (AC_LANG_CONFTEST): AC_DEFUN this, not
1415         m4_define, so that the requirements of `AC_INCLUDES_DEFAULT' are
1416         expanded outside.
1418         * doc/autoconf.texi (autoconf Invocation): Fix typos in trace
1419         example.  Do not emphasize `$%', it is hardly new and special.
1420         Reported by Edouard Bechetoille <ebecheto@ens-lyon.fr>.
1422         * doc/autoconf.texi (Limitations of Usual Tools): Document
1423         OpenBSD and traditional `grep' failure to handle multiple
1424         patterns separated by newlines.
1426 2006-03-10  Romain Lenglet  <rlenglet@users.forge.objectweb.org>
1428         * doc/autoconf.texi (several sections): Add documentation for macros
1429         in erlang.m4.
1431 2006-03-10  Eric Blake  <ebb9@byu.net>
1433         * doc/autoconf.texi (Obsolete Macros): Fix wording of
1434         AC_TRY_LINK_FUNC.
1436 2006-03-10  Paul Eggert  <eggert@cs.ucla.edu>
1438         * doc/autoconf.texi: Use @acronym more consistently for acronyms
1439         like BSD, GPL, LGPL.  Fix minor English typos.
1440         (AC_STDC_HEADERS, AC_PROG_GCC_TRADITIONAL):
1441         Mention that these macros are becoming obsolete.
1442         (AC_STDC_HEADERS, AC_PROG_CC, AC_C_CONST, AC_C_VOLATILE):
1443         Use more modern terminology for which standard is what.
1444         (AC_PROG_CC): Mention gcc first, and remove obsolete references to egcs
1445         and to ansi2knr.
1446         (AC_PROG_CXX): Likewise.
1447         (AC_C_PROTOTYPES, Test Functions, AC_LIBOBJ vs LIBOBJS):
1448         Remove obsolete discussion about how to port to K&R.
1449         (Guidelines for Test Programs): Suggest AC_HEADER_STDBOOL rather than
1450         the obsolescent AC_HEADER_STDC.
1451         (AC_FOO_IFELSE vs AC_TRY_FOO): Don't use #error; test programs
1452         can't rely on it.
1454 2006-03-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1456         * tests/c.at (AC_PROG_CPP without warnings, AC_PROG_CPP via CC):
1457         Remove stdin redirection from /dev/null to allow pipe to work.
1459 2006-03-08  Paul Eggert  <eggert@cs.ucla.edu>
1461         * tests/c.at (AC_PROG_CPP without warnings, AC_PROG_CPP via CC):
1462         Require that /lib/cpp include stdio.h correctly.  Solaris 10's
1463         doesn't.  Problem reported by D'Arcy A MacIsaac and diagnosed by
1464         Ralf Wildenhues.
1466 2006-03-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1468         * lib/autoconf/status.m4 (_AC_SED_CMD_LIMIT): The limit for
1469         HP-UX sed is 99 commands, not 100.
1470         (_AC_OUTPUT_FILES_PREPARE): Do not count the `}' of an
1471         _AC_SUBST_FILES fragment.  Separate `{' and `r' commands by
1472         newline for portability.
1473         * tests/torture.at (Torturing config.status): Also test 100
1474         AC_SUBST_FILE invocations.  Fix test to actually verify the
1475         AC_CONFIG_FILES output.
1476         * doc/autoconf.texi (Limitations of Usual Tools): Document HP-UX
1477         command, label, and read-file `r' limits.  Unify HP-UX spelling.
1479         * tests/Makefile.am (edit, $(wrappers)): Do not use `$<' in
1480         non-suffix rule.
1481         ($(TESTSUITE_GENERATED_AT)): Use `$(srcdir)` for the benefit of
1482         non-GNU make.
1483         (autoconfdir, $(AUTOCONF_FILES)): Likewise.
1484         * tests/mktests.sh: Small shell portability fixes.
1486 2006-03-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1488         * doc/autoconf.texi (Caching Results): Fix the examples to use a
1489         recommended quoting style and discard unwanted output.
1491 2006-03-05  Paul Eggert  <eggert@cs.ucla.edu>
1493         * lib/autotest/general.m4 (_AT_NORMALIZE_TEST_GROUP_NUMBER): New macro.
1494         (AT_INIT): Use it, to remove arbitrary limit of 999,999 test
1495         cases, and to work around Tru64 expr bug.
1497 2006-03-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1499         * doc/autoconf.texi (Limitations of Usual Tools): Mention Tru64
1500         expr bug that turns the result of a regex match into a number if
1501         possible.
1503 2006-03-04  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1505         * lib/autoconf/types.m4 (AC_CHECK_ALIGNOF): Work around
1506         HPUX compiler bug, similarly to AC_CHECK_SIZEOF, as documented
1507         in section `Specific Compiler Characteristics'.
1509 2006-03-04  Eric Blake  <ebb9@byu.net>
1511         * lib/autoconf/functions.m4 (AC_FUNC_STRERROR_R): Avoid unused
1512         variable warning.
1514 2006-03-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1516         * lib/autoconf/status.m4 (_AC_OUTPUT_HEADER): Force correct
1517         order of variable initialization, so even the Solaris 2.6 shell
1518         can create a config header correctly.  Fixes lots of test suite
1519         failures.
1521 2006-02-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1523         * doc/autoconf.texi (Text processing Macros): New node to
1524         document the m4sugar macros m4_re_escape, m4_tolower,
1525         m4_toupper, m4_split, m4_normalize, m4_append, m4_append_uniq.
1527 2006-02-22  Paul Eggert  <eggert@cs.ucla.edu>
1529         * lib/autoconf/libs.m4 (_AC_PATH_X_DIRECT): Fix typo:
1530         XrmInitialize (0) -> XrmInitialize ().
1531         Reported by Toshio Kuratomi.
1533 2006-02-21  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1535         * lib/m4sugar/m4sh.m4 (AS_IF): Extend to allow more than one
1536         test, as in `if tests; then cmd1; elif ...; else ...; fi'.
1537         * doc/autoconf.texi (Programming in M4sh): Adjusted.
1538         * tests/m4sh.at (AS_IF and AS_CASE): Test this.  Also make sure
1539         both macros are defun'ed so that required macros are evaluated
1540         outside.
1542         * doc/autoconf.texi (Prerequisite Macros): State more precisely
1543         where a required macro will be expanded.
1544         (Coding Style): Another reason not to use `m4_define'.
1546 2006-02-21  Eric Blake  <ebb9@byu.net>
1548         * lib/autoconf/general.m4 (_AC_LIBOBJ): Minor optimization.
1550 2006-02-20  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1552         * doc/autoconf.texi (Looping constructs): New node, to
1553         document m4_for, m4_foreach, m4_foreach_w, and mention
1554         obsolete AC_FOREACH.
1555         (Obsolete Macros): Document AC_FOREACH.
1556         * lib/m4sugar/m4sugar.m4 (_m4_for): Fix declaration comment.
1557         (m4_for): Fix to never loop (almost) endlessly, work correctly
1558         with arithmetic expressions in arguments, a step of zero or
1559         non-integer multiple of the interval, and avoid integer
1560         overflow.
1561         * tests/m4sugar.at: New test for m4_for, m4_foreach, and
1562         m4_foreach_w.
1564 2006-02-20  Romain Lenglet  <rlenglet@users.forge.objectweb.org>
1566         Add basic support for Erlang, both for configuring Erlang/OTP
1567         tools, and Erlang as a conf test language.
1568         * lib/autoconf/erlang.m4: New file.
1569         * lib/autoconf/autoconf.m4: Add erlang.m4.
1570         * lib/autoconf/Makefile.am (dist_autoconflib_DATA): Likewise.
1571         * lib/freeze.mk (autoconf_m4f_dependencies): Likewise.
1572         * NEWS: Add short description of new macros.
1573         * THANKS: Add Romain Lenglet.
1575 2006-02-20  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1577         * doc/autoconf.texi (Shellology) <pdksh>: Document that pdksh as
1578         native /bin/sh may not set KSH_VERSION (seen on OpenBSD).
1580 2006-02-15  Eric Blake  <ebb9@byu.net>
1582         * lib/autoconf/general.m4 (AC_CHECK_DECL): Avoid unused variable
1583         warning.
1585 2006-02-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1587         * lib/m4sugar/m4sh.m4 (AS_CASE): New macro.
1588         (_AS_CASE): Private helper macro.
1589         * tests/m4sh.at: Basic tests for AS_IF and AS_CASE.
1590         * doc/autoconf.texi (Programming in M4sh): Document AS_CASE.
1591         Fix syntax of AS_IF description
1592         (Prerequisite Macros): Mention AS_IF and AS_CASE as workarounds
1593         for the AC_REQUIRE mess.
1594         * NEWS: Mention AS_CASE, AS_BOURNE_COMPATIBLE, and
1595         AS_SHELL_SANITIZE.
1597 2006-02-14  Paul Eggert  <eggert@cs.ucla.edu>
1599         * doc/autoconf.texi: Minor style cleanup.
1600         Be consistent about spaces after commas.
1601         Insert [] where empty args look a bit funny.
1602         Fix some "i.e." and "e.g." usages.
1603         Try to avoid "X/Y" usages.
1604         Don't be pedantic about "ISO C99"; just say C99.
1605         Prefer GNU style for spaces in front of parens.
1606         (Function Portability): Comment about C89 versus C99
1607         signed integer division.
1608         (Particular Headers): Use current gnulib style for dirent
1609         includes.
1611 2006-02-14  Stepan Kasal  <kasal@ucw.cz>
1612         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1614         * bin/autoupdate.in (handle_autoconf_macros): Fix updating of
1615         macros without parameters.
1616         * lib/autoconf/autoupdate.m4 (AU_ALIAS): Likewise.
1617         * doc/autoconf.texi (Obsoleting Macros): Document AU_ALIAS.
1618         * tests/tools.at (autoupdating AU_ALIAS): New test for AU_ALIAS
1619         `$#' bug.
1620         (autoupdate): Updated to match AU_ALIAS fix.
1622 2006-02-13 Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1623         and Paul Eggert  <eggert@cs.ucla.edu>
1625         * doc/autoconf.texi (Programming in M4sh): Document
1626         AS_BOURNE_COMPATIBLE and AS_SHELL_SANITIZE.
1628 2006-02-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1630         * lib/m4sugar/m4sh.m4 (_AS_BOURNE_COMPATIBLE): Renamed to..
1631         (AS_BOURNE_COMPATIBLE): ..this.
1632         (_AS_RUN, AS_SHELL_SANITIZE): Adjusted all callers.
1634 2006-02-12  Paul Eggert  <eggert@cs.ucla.edu>
1636         * doc/install.texi (Defining Variables): Tighten up the
1637         CONFIG_SHELL wording.
1639 2006-02-12 Paul Eggert  <eggert@cs.ucla.edu>
1640         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1642         * lib/m4sugar/m4sh.m4 (_AS_BOURNE_COMPATIBLE): Look at the output
1643         of (set -o) rather than testing whether (set -o posix) succeeds,
1644         to work around a bug in the AIX 5.3 shell.  Problem originally
1645         reportd by Howard Chu for libtool.
1647 2006-02-10  J.T. Conklin  <jtc@acorntoolworks.com>
1649         * doc/autoconf.texi (Running the Compiler, Running the Linker):
1650         Changes the macro arguments in summaries to match the
1651         descriptions.
1653 2006-02-04  Stepan Kasal  <kasal@ucw.cz>
1655         * doc/install.texi (Defining Variables): Classify the `CONFIG_SHELL'
1656         hint as ``a workaround for a bug.''
1658 2006-01-31  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1660         * bin/autoreconf.in: New option `--no-recursive'.
1661         Improve wording for subpackages a bit.
1662         * doc/autoconf.texi (autoreconf Invocation): Updated.
1663         * NEWS: Updated.
1665         * doc/install.texi (Defining Variables): Put `CONFIG_SHELL'
1666         in environment of `configure', not the command line.
1667         Reported by Howard Chu <hyc@highlandsun.com>.
1669 2006-01-25  Paul Eggert  <eggert@cs.ucla.edu>
1671         * doc/autoconf.texi (Limitations of Builtins): Document the
1672         problem with "trap -".
1674 2006-01-23  Steven G. Johnson  <stevenj@fftw.org>
1676         * lib/autoconf/fortran.m4 (_AC_FC_LIBRARY_LDFLAGS, _AC_FC_DUMMY_MAIN):
1677         (_AC_FC_MAIN, __AC_FC_NAME_MANGLING): Use _AC_LANG in check
1678         messages to differentiate Fortran and Fortran 77 tests.
1679         (AC_FC_SRCEXT, AC_FC_FREEFORM): Use AC_LANG_PUSH/POP instead of
1680         AC_LANG_ASSERT, to allow use in mixed-language projects.
1682 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
1684         * lib/autoconf/c.m4 (AC_LANG_FUNC_LINK_TRY(C)): Prefer "defined
1685         FOO" to "defined (FOO)".
1686         * lib/autoconf/functions.m4 (_AC_LIBOBJ_ALLOCA): Likewise.
1687         * lib/autoconf/headers.m4 (AC_HEADER_STAT): Likewise.
1688         * lib/autoconf/specific.m4 (AC_XENIX_DIR): Likewise.
1689         * tests/tools.at (ifnames): Likewise.
1691 2006-01-21  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1693         * lib/m4sugar/m4sh.m4 (AS_TMPDIR): Do not pass `-q' to mktemp.
1694         * lib/Autom4te/General.pm (mktmpdir): Likewise.
1695         (END): Improve error message a bit.
1696         Reported by Bruce Korb <bkorb@gnu.org>.
1698 2006-01-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1700         * lib/autoconf/fortran.m4 (_AC_FC_LIBRARY_LDFLAGS): Ignore
1701         `-LIST:' and `-LNO:', for PathScale 2.3 compilers.
1703 2006-01-11  Stepan Kasal  <kasal@ucw.cz>
1705         * doc/autoconf.texi (Header Portability): On Solaris 8, sys/ptem.h
1706         requires sys/stream.h.  Reported by Oliver Kiddle.
1708 2006-01-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1709             Stepan Kasal  <kasal@ucw.cz>
1711         * lib/autotest/general.m4 (AT_INIT): When ensuring writability
1712         before the removals of test dirs, use `find' to avoid modification
1713         of symlinked directories.
1715 2006-01-11  Steven G. Johnson  <stevenj@alum.mit.edu>
1717         * lib/autoconf/fortran.m4 (AC_F77_DUMMY_MAIN, AC_FC_DUMMY_MAIN):
1718         Don't ignore the macro arguments.
1720 2006-01-11  David Thompson  <dthompsn@vizsolutions.com>
1722         * lib/autoconf/c.m4 (_AC_PROG_CXX_EXIT_DECLARATION): Add `exit'
1723         declaration that works for MSVC.
1725 2006-01-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1727         * lib/autoconf/lang.m4 (_AC_COMPILER_OBJEXT_REJECT):
1728         Add `*.map' and `.inf' for Green Hills compiler.
1729         Reported by Stefan Seefeld <stefan@codesourcery.com>.
1731         * lib/m4sugar/m4sugar.m4 (m4_text_wrap): Handle quadrigraphs
1732         correctly: pad with spaces after FIRST_PREFIX if necessary,
1733         and compute string lenghts with `m4_qlen' instead of `m4_len'.
1734         * lib/m4sugar/m4sh.m4 (AS_HELP_STRING): Comments updated.
1735         * tests/m4sh.at (AS_HELP_STRING): Test extended.
1736         * NEWS: Updated.
1737         Reported by numerous people, numerous times.
1739 2006-01-05  Paul Eggert  <eggert@cs.ucla.edu>
1741         * bin/autoconf.as, bin/autoheader.in, bin/autom4te.in
1742         * bin/autoreconf.in, bin/autoscan.in, bin/autoupdate.in, bin/ifnames.in:
1743         * lib/autoconf/general.m4, lib/autoconf/status.m4:
1744         * lib/autotest/general.m4, tests/local.at:
1745         Update copyright year to 2006.
1747         * Makefile.maint (sc_root_tests): Use the recommended style s/a/b/ for
1748         sed substitutions.
1749         * doc/autoconf.texi (Installation Directory Variables): Use s|a|b|
1750         for file names, again.  Reported by Noah Misch.
1751         (Coding Style): Explain that s|a|b| is preferred for file names.
1752         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE): Prefer s/a/b/.
1753         (AC_OUTPUT_MAKE_DEFS): Likewise.
1754         * lib/autotest/general.m4 (AT_INIT): Likewise.
1755         * lib/m4sugar/m4sh.m4 (_AS_LINENO_PREPARE): Likewise.
1756         * tests/local.at (AT_CHECK_AUTOM4TE): Likewise.
1758         Fix Posix-conformance bugs re use of { command in sed scripts,
1759         and improve the sed-related documentation a bit.
1760         * doc/autoconf.texi (Installation Directory Variables): Use
1761         our own style advice re 's,a,b,' versus 's|a|b|'.  Use "Sed"
1762         rather than "sed" when talking about Sed in general.
1763         (Particular Programs): Likewise.
1764         (Coding Style): y is like s with respect to / and ,.
1765         (Limitations of Usual Tools): Document the weird restrictions
1766         that Posix has about { }.  Use better quoting.
1767         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE, _AC_OUTPUT_HEADER):
1768         Rewrite to conform to Posix rules about { } in sed scripts.
1769         * lib/m4sugar/m4sh.m4 (AS_DIRNAME_SED, AS_BASENAME_SED): Likewise.
1770         * tests/foreign.at (Libtool): Likewise.
1771         * tests/semantics.at (AC_CHECK_PROG & AC_CHECK_PROGS):
1772         Use our own style advice re 's,a,b,' versus 's|a|b|'.
1774 2006-01-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1776         * lib/autoconf/status.m4: Fix typo.
1778         * lib/autoconf/fortran.m4 (_AC_FC_LIBRARY_LDFLAGS): Ignore
1779         singly- or doubly-quoted arguments to `-cmdline', `-ignore',
1780         `-def', for the benefit of Portland `pgf90 -Mipa'.
1781         Reported by Christopher Hulbert <cchgroupmail@gmail.com>.
1783 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
1785         * doc/autoconf.texi: Update copyright (and other) dates to 2006.
1786         * doc/autoconf.texi (Shellology): Mac OS X 10.2 changed the default
1787         shell from zsh to bash.
1789 2005-12-31  Stepan Kasal  <kasal@ucw.cz>
1791         * lib/autoconf/programs.m4 (_AC_PROG_GREP): Use $PATH_SEPARATOR;
1792           ":" caused problems on OS/2-EMX.  Suggested by Andrew Belov.
1794 2005-12-29  Paul Eggert  <eggert@cs.ucla.edu>
1796         * doc/autoconf.texi (Shell Substitutions): Warn about unbalanced
1797         parentheses in $(...).  Problem reported by Eric Blake.
1799 2005-12-12  Paul Eggert  <eggert@cs.ucla.edu>
1801         * doc/autoconf.texi (Limitations of Usual Tools):
1802         Mention which characters can be escaped with \ in portable regular
1803         expressions used in grep, sed, expr.  Mention the leading ^ problem
1804         with expr.  Clean up some confusing wording.  Mention which
1805         grep options are portable.
1807 2005-12-09  Stepan Kasal  <kasal@ucw.cz>
1809         * tests/local.at (AT_CHECK_AUTOM4TE): Fix typo in the comment.
1811 2005-12-02  Paul Eggert  <eggert@cs.ucla.edu>
1813         * doc/autoconf.texi (Limitations of Builtins): Fix typos in previous
1814         patch, noted by Ralf Wildenhues.
1816 2005-12-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1818         * lib/m4sugar/m4sh.m4 (_AS_BOURNE_COMPATIBLE): Try `set -o
1819         posix' unconditionally, for pdksh in `native sh' emulation.
1821 2005-12-01  Paul Eggert  <eggert@cs.ucla.edu>
1823         * doc/autoconf.texi (Shellology): Document eval $? problem
1824         with ash.
1825         (Limitations of Builtins): Likewise.
1827 2005-11-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1829         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Pass
1830         CONFIG_SHELL in the environment of the configure rerun.
1831         * doc/autoconf.texi (Here-Documents, config.status Invocation):
1832         Suggest passing CONFIG_SHELL absolute, and in the environment
1833         rather than as option.
1835 2005-11-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1837         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE):
1838         Fix quoting of output line (triggered for many AC_SUBST_FILEs).
1839         Fix macro quoting.  Fix output for n * 98 substituted variables.
1841 2005-11-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1843         * lib/autoconf/status.m4 (_AC_OUTPUT_MAIN_LOOP): Initialize
1844         `tmp' to avoid file removal race.
1846 2005-11-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1848         * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS): Initialize
1849         ac_clean_files and LIBOBJS.
1851 2005-11-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1853         * lib/autoconf/programs.m4 (AC_CHECK_PROG, AC_PATH_PROG):
1854         Factor functionality to..
1855         (_AC_CHECK_PROG, _AC_PATH_PROG): these new macros, but only
1856         `AC_SUBST($1)' in the public version.
1857         (AC_CHECK_TOOL, AC_PATH_TOOL, AC_PATH_TARGET_TOOL)
1858         (AC_CHECK_TARGET_TOOL): Use internal versions for ac_ct_* and
1859         ac_pt_* variables.
1861 2005-11-01  Stepan Kasal  <kasal@ucw.cz>
1863         * lib/autoconf/c.m4 (AC_PROG_CC_C_O): Remove the comment about 8+3
1864         filesystems.
1866 2005-11-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1868         * NEWS: Move AH_HEADER mention to right place.
1870 2005-10-27  Stepan Kasal  <kasal@ucw.cz>
1872         * lib/autoconf/c.m4 (AC_PROG_CC_C_O): "conftst2" -> "conftest2"
1873         * lib/autoconf/fortran.m4 (_AC_PROG_FC_C_O): Likewise.
1875 2005-10-25  Stepan Kasal  <kasal@ucw.cz>
1877         * lib/autoconf/c.m4 (AC_PROG_CC_C_O): rm -f conftst2.*, not only
1878         conftst2.$ac_objext.
1879         * lib/autoconf/fortran.m4 (_AC_PROG_FC_C_O): Likewise.
1881 2005-10-24  Stepan Kasal  <kasal@ucw.cz>
1883         * lib/autoconf/c.m4 (AC_PROG_CC_C_O): Use conftst2.o instead of
1884         conftest.o, to see whether the compiler really obeys; rm the object
1885         file before and after the test and register it with ac_clean_files.
1886         * lib/autoconf/fortran.m4 (_AC_PROG_FC_C_O): Likewise.
1888 2005-10-21  Stepan Kasal  <kasal@ucw.cz>
1890         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE): When determining,
1891         the delimiter CEOF$ac_eof: fix quoting of CEOF[0-9]* and modify the
1892         code so that the most common case requires less forks.
1894 2005-10-20  Stepan Kasal  <kasal@ucw.cz>
1896         * doc/autoconf.texi (Shell Substitutions}: Document that ${10} is
1897         not portable; thanks to Paul Eggert and Alexandre.
1899         * NEWS: Fix an old typo.
1901 2005-10-20  Jim Meyering  <jim@meyering.net>
1903         * doc/autoconf.texi: Typo: s/feature/features/ in ``the features of
1904         the latter'', in two places.
1906 2005-10-19  Paul Eggert  <eggert@cs.ucla.edu>
1908         * doc/autoconf.texi (Generating Sources): AC_LANG_PROGRAMS ->
1909         AC_LANG_PROGRAM, fixing a typo.  Don't give details about
1910         the inner workings of AC_LANG_FUNC_LINK_TRY.
1911         * lib/autoconf/c.m4 (AC_LANG_CALL(C)): Reformat to match
1912         AC_LANG_FUNC_LINK_TRY.  This involves returning the value returned
1913         by the function rather than ignoring it.
1914         (AC_LANG_FUNC_LINK_TRY(C)): Call the function rather than simply
1915         comparing its address.  Intel's interprocedural optimization was
1916         outsmarting the old heuristic.  Problem reported by
1917         Mikulas Patocka.
1919 2005-10-19  Stepan Kasal  <kasal@ucw.cz>
1921         * lib/autoconf/general.m4 (AC_SUBST): Remove an obsolete comment.
1923 2005-10-05  Paul Eggert  <eggert@cs.ucla.edu>
1925         * lib/m4sugar/m4sugar.m4 (_m4_map): New macro.
1926         (m4_map, m4_map_sep): Use it.  Handle the empty list correctly.
1928 2005-10-04  Stepan Kasal  <kasal@ucw.cz>
1930         * lib/autotest/general.m4 (AT_INIT): Really make the subtree writable
1931         before removing it (chmod -R u+rwx); there are three instances of this.
1933 2005-10-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1934             Stepan Kasal  <kasal@ucw.cz>
1936         * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): Balance parentheses.
1937         * lib/autotest/general.m4 (AT_INIT): If the test dir already exists,
1938         make its content writable before removing it.  Remove an errorneous
1939         comment from the end, where the logs of the failed tests are copied
1940         to the main log file.
1942 2005-09-27  Stepan Kasal  <kasal@ucw.cz>
1944         * tests/semantics.at (AC_C_BIGENDIAN): Pass --force to autoheader,
1945           in case the computer is too quick.  Double quote the configure.ac
1946           snippets.
1948         * tests/local.at (AT_CHECK_AUTOCONF): Always pass --force to prevent
1949           problems if the testsuite were running too fast.
1951 2005-09-18  Paul Eggert  <eggert@cs.ucla.edu>
1953         * lib/autoconf/libs.m4 (_AC_PATH_X_DIRECT): Look for X11/Xlib.h
1954         and XrmInitialize rather than X11/Intrinsic.h and XtMalloc
1955         (which belong to Xt, not X itself).  See Debian bug 327655.
1956         * NEWS: Mention this.
1958 2005-09-07  Stepan Kasal  <kasal@ucw.cz>
1960         * lib/autoconf/c.m4 (AC_LANG_SOURCE(C)): Remove an incorrect comment.
1962 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
1964         * config/move-if-change: Don't output "$2 is unchanged";
1965         suggested by Ben Elliston.  Handle weird characters correctly.
1967 2005-09-06  Stepan Kasal  <kasal@ucw.cz>
1969         * lib/autoconf/libs.m4 (AC_SEARCH_LIBS): Merge the two AC_LINK_IFELSE
1970           calls, so that the final expansion of this macro is shorter.
1971           Create the conftest.$ac_ext outside the `for' loop, to speed the run.
1972           Do not use `break' in the argument to AC_LINK_IFELSE, it would skip
1973           the cleanup there.  Use AS_VAR_* macros, to be more general.
1974         * tests/semantics.at (AC_SEARCH_LIBS): Check for the cleanup.
1976         * lib/autoconf/general.m4: Use AS_IF where appropriate.
1978         * lib/m4sugar/m4sh.m4 (AS_IF): Use m4_default.
1980 2005-09-01  Stepan Kasal  <kasal@ucw.cz>
1982         * doc/autoconf.texi (Configuration Headers): Add an index entry
1983           for AH_HEADER.
1985 2005-08-26  Pavel Roskin  <proski@gnu.org>
1987         * lib/autoconf/libs.m4 (_AC_PATH_X_XMKMF): Use shell variable
1988         XMKMF to locate xmkmf.  Make XMKMF precious.  Export CC when
1989         running xmkmf.
1991 2005-08-26  Paul Eggert  <eggert@cs.ucla.edu>
1993         * lib/m4sugar/m4sh.m4 (_AS_VERSION_COMPARE_PREPARE):
1994         The previous patch didn't work, so try a better one.
1996 2005-08-26  Stepan Kasal  <kasal@ucw.cz>
1998         * doc/autoconf.texi (Programming in M4sh) <AS_TR_CPP>: Fix m4 quoting
1999         in the example.  Reported by Bruno Haible.
2000         <AS_TR_SH>: Likewise.  Also modify the example to be more convincing:
2001         "if $undefined_var;" succeeds with my shell.
2003         * lib/autoconf/general.m4 (AC_CANONICAL_BUILD, AC_CANONICAL_HOST,
2004         AC_CANONICAL_TARGET): Define by AC_DEFUN, no need to use AC_DEFUN_ONCE;
2005         but change the m4_divert_text to m4_divert_once.
2007 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
2009         * lib/m4sugar/m4sh.m4 (_AS_VERSION_COMPARE_PREPARE):
2010         Work around bug in Solaris /usr/xpg4/bin/awk.
2011         The bug is present in at least Solaris 8 through 10.
2013 2005-08-24  Stepan Kasal  <kasal@ucw.cz>
2015         * lib/autoconf/general.m4 (_AC_CANONICAL_SPLIT): Simplify; rejecting
2016         some evil values and relying on the fact that $* concatenates the
2017         parameters by the first character from IFS.
2019 2005-08-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>,
2020             Stepan Kasal  <kasal@ucw.cz>
2022         * lib/autoconf/status.m4 (_AC_CONFIG_REGISTER_DEST): When the
2023         first header appears, define AH_HEADER.
2024         * doc/autoconf.texi (Configuration Headers): Document AH_HEADER.
2025         Update limitations about when to call AC_CONFIG_HEADERS.
2026         (Configuration Commands): Document that AC_CONFIG_COMMANDS_PRE
2027         parameter can call AC_SUBST, AC_DEFINE, or AC_CONFIG_FOOS; explain
2028         that AC_CONFIG_COMMANDS_PRE and AC_CONFIG_COMMANDS_POST are not
2029         ``Configuration Actions''; fix their index entries.
2031         * lib/autotest/general.m4 (AT_INIT): Process multiple keywords
2032         options correctly.  Process N-M as M-N if M is smaller than N.
2033         Process ranges correctly so that N-N will run only N.
2034         Sort and uniquify the tests that will be run.  If there is more
2035         than one test, reinsert the banners for the tests.
2036         * tests/autotest.at (Keywords): Unmark XFAIL.
2038 2005-08-23  Stepan Kasal  <kasal@ucw.cz>
2040         * lib/autoconf/general.m4 (_AC_DEFINE_Q): Strip the parameter list
2041           before passing the macro name to AH_TEMPLATE.
2043         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): config.status
2044           now opens log after option processing; in particular, --version
2045           and --help do not touch config.log.
2047         * Makefile.maint: Revert the change from 2005-08-12.
2049 2005-08-22  Stepan Kasal  <kasal@ucw.cz>
2051         * lib/autoconf/general.m4 (AC_ARG_ENABLE, AC_ARG_WITH): Factor out
2052           common code to...
2053         (_AC_ENABLE_IF, _AC_ENABLE_IF_ACTION): ... these new macros.
2055 2005-08-21  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2057         * doc/autoconf.texi (Using Autotest, testsuite Scripts)
2058         (Autotest Logs, Writing testsuite.at, testsuite Invocation):
2059         Language cleanup.
2061         * doc/autoconf.texi (Defining Symbols, Changed Results):
2062         Prepend to LIBS, not append, in examples.
2064 2005-08-16  Stepan Kasal  <kasal@ucw.cz>
2066         When building in place, set srcdir="."; suggested by Tim Van Holder.
2068         * lib/autoconf/general.m4 (_AC_INIT_SRCDIR): Do this; to recognize
2069           build in place, we need ac_pwd, and thus have to AC_REQUIRE ...
2070         (_AC_INIT_DIRCHECK): ... this macro and AC_DEFUN both of them.
2071         * lib/autoconf/status.m4 (_AC_SRCDIRS): Fix a comment: srcdir="."
2072           does not mean "no --srcdir option".
2074 2005-08-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2076         * tests/autoscan.at (autoscan): New file.
2077         * tests/suite.at: Use it.
2078         * tests/Makefile.am (TESTSUITE_HAND_AT): Add it.
2079         Reported against Libtool by Gideon Go <gideon.go@gmail.com>.
2081         * tests/autotest.at (Keywords): Test keywords combinations.
2083 2005-08-12  Stepan Kasal  <kasal@ucw.cz>
2085         * Makefile.maint (GZIP_ENV): When checking the help text of gzip,
2086           add "2>&1"; gzip 1.2.4 prints help on stderr.
2088 2005-07-27  Stepan Kasal  <kasal@ucw.cz>
2090         * lib/autotest/general.m4 (_AT_DECIDE_TRACEABLE): The symbol at_reason
2091         was pushdef'ed twice while popped only once.  Push it only once.
2092         (_AT_CHECK): Cosmetic changes to the "case $at_status" command.
2094 2005-07-26  Stepan Kasal  <kasal@ucw.cz>
2096         * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): The message is now
2097         prefixed by mere "===", not "configure: === ".
2099 2005-07-25  Paul Eggert  <eggert@cs.ucla.edu>
2101         * Makefile.maint: Update from Bison.
2103         * lib/m4sugar/m4sugar.m4 (m4_strip): Comment fix---change tab to
2104         "<tab>" in comment, so that the point is understandable.
2106 2005-07-25  Stepan Kasal  <kasal@ucw.cz>
2108         Rewrite substantial part of lib/autoconf/status.m4.
2109         The main change is that CONFIG_FILES, CONFIG_HEADERS, CONFIG_LINKS,
2110         and CONFIG_COMMANDS are not processed in four separate loops.
2111         Instead, there is one main loop.  This alows that the common code
2112         is expanded only once, thus config.status (and configure) is smaller.
2114         The registration mechnism in AC_CONFIG_FILES and cousins also changed;
2115         the AC_LIST_FILES and cousins macros are no longer used.
2117         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES, _AC_OUTPUT_HEADERS,
2118         _AC_OUTPUT_LINKS, _AC_OUTPUT_COMMANDS): Renamed to ...
2119         (_AC_OUTPUT_FILE, _AC_OUTPUT_HEADER, _AC_OUTPUT_LINK,
2120         _AC_OUTPUT_COMMAND): ..., respectively.  These macros no longer
2121         contain the initialization, nor the for loop, nor the associated
2122         commands; all these go to ...
2123         (_AC_OUTPUT_MAIN_LOOP): ... this new macro, called from
2124         _AC_OUTPUT_CONFIG_STATUS.
2125         (_AC_CONFIG_SPLIT, _AC_CONFIG_SPLIT_SOURCE_DEST, _AC_CONFIG_SPLIT_FILE_IN):
2126         Nuked; the code was merged into _AC_OUTPUT_MAIN_LOOP.
2127         (_AC_OUTPUT_FILE): The creation of the sed script ...
2128         (AC_OUTPUT): ... and the setup of ac_vpsub goes to ...
2129         (_AC_OUTPUT_FILES_PREPARE): ... a new macro, also called from
2130         _AC_OUTPUT_MAIN_LOOP.
2131         (_AC_CONFIG_FILES, _AC_CONFIG_HEADERS, _AC_CONFIG_LINKS,
2132         _AC_CONFIG_COMMANDS): Use ...
2133         (_AC_CONFIG_FOOS): ... this new macro, which uses these ...
2134         (_AC_CONFIG_REGISTER, _AC_CONFIG_REGISTER_DEST): ... new macros.
2135         (_AC_CONFIG_FILE, _AC_CONFIG_HEADER, _AC_CONFIG_LINK,
2136         _AC_CONFIG_COMMAND, _AC_CONFIG_DEPENDENCIES): No longer needed.
2137         (_AC_CONFIG_DEPENDENCY): Update, it uses these ...
2138         (_AC_CONFIG_DEPENDENCY_DEFAULT, _AC_FILE_DEPENDENCY_TRACE_COLON):
2139         ... new macros.
2140         (_AC_CONFIG_UNIQUE): Update.
2141         (AC_LIST_FILES, AC_LIST_HEADERS, AC_LIST_LINKS, AC_LIST_COMMANDS):
2142         Replaced by this ...
2143         (_AC_LIST_TAGS): ... new common macro.
2144         (AC_LIST_FILE_COMMANDS, AC_LIST_HEADER_COMMANDS, AC_LIST_LINK_COMMANDS,
2145         AC_LIST_COMMAND_COMMANDS): Replaced by this ...
2146         (_AC_LIST_TAG_COMMANDS): ... new common macro.
2147         (_AC_CONFIG_COMMANDS_INIT): Moved top to the `registration' section;
2148         this didn't belong to the `config commands' section.
2149         (_AC_OUTPUT_COMMANDS_INIT): Don't initialize, m4_ifdef is our friend.
2150         (AC_CONFIG_COMMANDS_PRE, AC_OUTPUT_COMMANDS_PRE,
2151         AC_CONFIG_COMMANDS_POST): Moved to a new section, these didn't belong
2152         to the `config commands' section either.
2153         (AC_CONFIG_SUBDIRS): Don't touch diversion DEFAULTS.
2154         (_AC_LIST_SUBDIRS): Don't initialize, m4_ifdef is our friend.
2156         ... and many changes to the comments nearby.
2158         * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS): At the end of the day,
2159         set ac_subdirs_all='_AC_LIST_SUBDIRS'.
2160         * tests/torture.at (AC_CONFIG_FILES, HEADERS, LINKS and COMMANDS):
2161         AC_CONFIG_COMMANDS(command:input,...) is no longer allowed.
2162         (#define header templates): The comment at the top of the generated
2163         header now includes the name(s) of the source file(s).
2165         Several unrelated small changes:
2167         * lib/autoconf/general.m4 (AC_CACHE_VAL): Be didactic, quote the first
2168         parameter to AC_DIAGNOSE.
2169         * lib/autoconf/status.m4 (AC_CONFIG_SUBDIRS): Likewise.
2170         (_AC_LINK_FILES_CNT): Don't AU_DEFUN this; it causes confusing messages
2171         with autoupdate; use m4_define_default inside AU_DEFUNed AC_LINK_FILES.
2172         (AC_OUTPUT): In the compatibility code, use m4_ifvaln, to be consistent
2173         with AU::AC_OUTPUT.
2174         (AU::AC_OUTPUT): Don't double-quote $2 and $3, the compatibility code
2175         in AC_OUTPUT doesn't double-quote it either.
2176         * tests/tools.at (autoupdate): AU::AC_OUTPUT no longer double-quotes the
2177         parameters.
2179 2005-07-10  Stepan Kasal  <kasal@ucw.cz>
2181         * lib/autoconf/fortran.m4 (_AC_PROG_FC_V_OUTPUT): Document which
2182         versions of Portland Group compiler produce single- and double-quoted
2183         -cmdline argument.  Reported by Steven G. Johnson <stevenj@fftw.org>
2184         and Ole Holm Nielsen <Ole.H.Nielsen@fysik.dtu.dk>.
2186 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
2188         * tests/local.at (AT_CONFIG_CMP): Ignore lines like "LIBS=''" too.
2189         This is a corrected version of yesterday's patch.
2191 2005-07-07  Stepan Kasal  <kasal@ucw.cz>
2193         * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): Report the full
2194         path, too; insert a "===" to emphasize the line.
2196         * lib/autoconf/general.m4 (AC_CANONICAL_BUILD): Rename
2197           ac_cv_build_alias to ac_build_alias.
2198         (AC_CANONICAL_HOST, AC_CANONICAL_TARGET): Simplify.
2200         On 2005-02-24, an unintentional AC_SUBST([CC]) was introduced; this
2201         change eliminates it.  Problem reported by Alexandre Duret-Lutz.
2202         * lib/autoconf/general.m4 (_AC_ARG_VAR_PRECIOUS): Move the AC_SUBST ...
2203         (AC_ARG_VAR): ... here.
2204         (_AC_INIT_PREPARE): Call AC_SUBST for build_alias, host_alias and
2205           target_alias.
2207         Keep a list of all precious variables and process them with one simple
2208         for loop, instead of expanding all commands, or, OTOH, complicated
2209         processing of output of "set".
2210         * lib/autoconf/general.m4 (_AC_ARG_VAR_PRECIOUS): Acumulate the
2211         variable names in new macro...
2212         (_AC_PRECIOUS_VARS): ... which will be assigned to ac_precious_vars.
2213         (_AC_ARG_VAR_STORE): New macro which writes to diversion PARSE_ARGS
2214           a loop to assign all ac_env_* and ac_cv_env_* variables.
2215         (_AC_ARG_VAR_VALIDATE): Use shell variable ac_precious_vars, divert
2216           to INIT_PREPARE.
2217         (_AC_INIT_DEFAULTS): At the end, if _AC_PRECIOUS_VARS is set, assign
2218           its value to shell variable ac_precious_vars and call
2219           _AC_ARG_VAR_STORE and _AC_ARG_VAR_VALIDATE.
2220         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Don't call
2221           _AC_ARG_VAR_VALIDATE.
2223         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Move AC_LANG_PUSH(C)
2224           and the AC_SUBSTs ...
2225         (AC_INIT): ... here.
2227         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Changed the title of
2228           the ac_subst_files section in config.log.
2230         * tests/local.at (AT_CONFIG_CMP): Revert Paul's previous change.
2232 2005-07-06  Paul Eggert  <eggert@cs.ucla.edu>
2234         * NEWS: New macro AC_C_TYPEOF.
2235         * doc/autoconf.texi (C Compiler): Document AC_C_TYPEOF.
2236         * lib/autoconf/c.m4 (AC_C_TYPEOF): New macro.
2237         * tests/c.at (C keywords): Test AC_C_TYPEOF.
2239         Fix problems reported by Nicolas Joly.
2240         * tests/base.at (Input/Output): Ignore 'loading site script' chatter.
2241         * tests/local.at (AT_CONFIG_CMP): Ignore lines like "LIBS=''" too.
2242         They are generated by the Tru64 v5.1B shell.
2244 2005-07-05  Stepan Kasal  <kasal@ucw.cz>
2246         Fix my changes from 2005-07-01; reported by Noah Misch.
2247         * lib/autoconf/status.m4 (_AC_CONFIG_DEPENDENCIES): Fix the
2248         description, the macro now accepts only a single tag.
2249         (_AC_CONFIG_UNIQUE): Likewise; s/AC_File/[$1]/
2251         Fix cases when the varsions of Autoconf and Autotest don't match.
2252         Reported by Noah Misch.
2253         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): Set also
2254         at_top_builddir, for compatibility with older autotest.
2255         * lib/autotest/general.m4 (AT_INIT): If at_top_build_prefix
2256         is not set, use at_top_builddir, for compatibility with older
2257         versions of autoconf.
2259 2005-07-04  Paul Eggert  <eggert@cs.ucla.edu>
2261         * bin/autom4te.in ($m4): Catch usages like --nesting-limit=2048.
2262         Problem reported by Patrick Welche.
2264 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
2266         * lib/autoconf/general.m4 (AC_ARG_PROGRAM): Use &, not |, in
2267         sed substitution command, so that we allow | in program prefixes
2268         and program suffixes.  (& is a problem anyway; we're not fixing
2269         that here.)
2270         * lib/autoconf/status.m4 (AC_CONFIG_FILES): Likewise, for
2271         configure_input, top_builddir, srcdir, etc.
2272         * lib/autotest/general.m4 (AT_INIT): Likewise, for
2273         PATH_SEPARATOR in AUTOTEST_PATH.
2275 2005-07-02  Alexandre Duret-Lutz  <adl@gnu.org>
2277         * lib/autoconf/general.m4 (AC_SITE_LOAD): Rewrite the
2278         for loop over config.site files using `set', to allow
2279         directory names containing IFS characters.
2281 2005-07-01  Paul Eggert  <eggert@cs.ucla.edu>
2283         * lib/autoconf/general.m4 (_AC_INIT_DIRCHECK): Remove the tests for
2284         directories with weird names.  Apparently some people like living
2285         on the edge.  However, improve the test that "pwd" actually does
2286         report a name for the working directory.
2287         * NEWS: Remove the claim that we test for funny chars in dir names.
2289 2005-07-01  Stepan Kasal  <kasal@ucw.cz>
2291         * lib/autoconf/general.m4 (AC_FOREACH): Make obsolete; it's
2292         replaced ...
2293         * lib/m4sugar/m4sugar.m4 (m4_foreach_w): ... by this new macro.
2294         * lib/autoconf/status.m4 (_AC_CONFIG_DEPENDENCIES, _AC_CONFIG_UNIQUE):
2295         Now accept a single tag, not whitespace separated list.
2296         (AC_CONFIG_SUBDIRS): Call _AC_CONFIG_UNIQUE in a m4_foreach_w loop.
2298 2005-06-30  Stepan Kasal  <kasal@ucw.cz>
2300         * doc/autoconf.texi (Configuration Headers): Change the explanation
2301         about #include <config.h>.
2302         (Generic Functions): Mention the Gnulib project.
2303         (Limitations of Usual Tools) <sed>: Another minor rephrasing.
2305         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Use a here
2306         document to output the default config_* lists to config.status.
2307         Don't recognize option --file, if the functionality is not there.
2308         Likewise for --header; moreover, recognize --he and --h as shortcuts
2309         for --help in that case.
2311         * lib/autoconf/status.m4: Fix the order of the "sections", so that it
2312         matches the order of execution.  No code changed.
2314 2005-06-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2316         * lib/autoconf/fortran.m4 (_AC_PROG_FC_V_OUTPUT): Fix also for
2317         single-quoted -cmdline argument in Portland Group compiler.
2318         Reported against LAM by Ole Holm Nielsen <Ole.H.Nielsen@fysik.dtu.dk>.
2320 2005-06-30  Alexandre Duret-Lutz  <adl@gnu.org>
2322         * lib/autom4te.in (Automake-preselections): Preselect AC_SUBST_TRACE.
2324 2005-06-29  Stepan Kasal  <kasal@ucw.cz>
2326         * doc/autoconf.texi (File Descriptors): ksh doesn't pass open file
2327         descriptors to child processes; reported by Norman Gray.
2329 2005-06-29  Stepan Kasal  <kasal@ucw.cz>
2331         * lib/autoconf/general.m4 (AC_ARG_VAR): Move next to _AC_ARG_PRECIOUS.
2333         * lib/autoconf/general.m4 (AC_SUBST_TRACE): New macro, to be traced
2334         instead of AC_SUBST; proposed by Alexandre Duret-Lutz.
2335         (AC_SUBST): Call it.
2336         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES): Call AC_SUBST_TRACE for
2337         the directory specific variables; but don't call it for configure_input.
2339 2005-06-28  Derek Price  <derek@ximbiot.com>
2341         * doc/autoconf.texi (Limitations of Usual Tools) <sed>: Reword recent
2342         addition.
2344 2005-06-23  Paul Eggert  <eggert@cs.ucla.edu>
2346         * NEWS: Don't worry about spaces in bindir etc.  Only srcdir and working
2347         directory have inherent problems with special characters like spaces,
2348         due to limitations in Make syntax.  Problem reported by Alexandre
2349         Duret-Lutz.
2350         * lib/autoconf/general.m4 (_AC_INIT_DIRCHECK): Implement the above.
2351         Also, fix Tru64 porting problem with shell patterns,
2352         reported by Ralf Wildenhues.
2354 2005-06-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2356         * doc/autoconf.texi (Subdirectories): Fix markup typos.
2358 2005-06-23  Paul Eggert  <eggert@cs.ucla.edu>
2360         * tests/local.at (AT_CHECK_ENV): Simplify regexp slightly.
2362         Fix some more shell quoting problems.  Prompted by a bug report
2363         from Justace Clutter.
2364         * lib/autoconf/general.m4 (_AC_INIT_DIRCHECK): Put name of invalid
2365         variable into diagnostic.  Make the diagnostic an error, not a warning,
2366         because we really don't support spaces and suchlike in dir names.
2367         (_AC_INIT_SRCDIR): Allow special characters in $ac_unique_file.
2368         Don't worry about backslashes in srcdir; it can't happen now.
2369         (_AC_INIT_PARSE_ARGS): Allow weird characters in ac_optarg.
2370         Simplify ac_optarg handling.
2371         (_AC_ARG_VAR_VALIDATE): Remove unnecessary and inconsistent quotes.
2373 2005-06-22  Stepan Kasal  <kasal@ucw.cz>
2375         Fix AT_CONFIG_CMP for Solaris hosts; idea from Ralf Menzel.
2376         * configure.ac: Call AC_PROG_EGREP and AC_PROG_SED.
2377         * tests/atlocal.in: Propagate $EGREP and $SED.
2378         * tests/local.at (AT_CHECK_ENV): Use $EGREP, not $GREP -E.
2379         (AT_CONFIG_CMP): Use sed instead of grep plumbing.
2381         * doc/autoconf.texi (Limitations of Usual Tools) <grep>: Mention
2382         that '\|' is not allowed in BREs; recommend using newline separated
2383         list of patterns instead of multiple -e options.
2385         * lib/autoconf/fortran.m4 (_AC_PROG_FC_V_OUTPUT): Remove an old comment.
2387         * lib/autoconf/general.m4 (_AC_CANONICAL_SPLIT): Use AC_SUBST/2.
2389 2005-06-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2391         * lib/autoconf/general.m4 (_AC_CANONICAL_SPLIT): Fix typo.
2393 2005-06-21  Stepan Kasal  <kasal@ucw.cz>
2395         * doc/autoconf.texi (Limitations of Usual Tools) <sed>: Document that
2396         b, t, r, w commands require single space, while : cannot have any.
2397         (Special Shell Variables): Fix sed code this in the example.
2398         * lib/autoconf/status.m4 (_AC_OUTPUT_HEADERS): Likewise; and fix a typo.
2399         * lib/autotest/general.m4 (AT_ARG_OPTION): Fix typo in the description.
2401         * lib/m4sugar/m4sugar.m4 (m4_split): If the parameter is empty,
2402         expand to the empty list.  Don't use two pairs of m4_changequote,
2403         it's not necessary.
2405 2005-06-20  Derek Price  <derek@ximbiot.com>
2407         * lib/m4/programs.m4 (AC_PROG_YACC): Declare YACC & YFLAGS precious.
2409 2005-06-17  Paul Eggert  <eggert@cs.ucla.edu>
2411         * lib/m4sugar/m4sh.m4 (as_awk_strverscmp): Port to Solaris /bin/awk.
2412         * doc/autoconf.texi:
2413         Don't mention Solaris versions so much, if a
2414         problem is common to all extant versions of Solaris.  Say "SunOS
2415         4" instead of "SunOS" for SunOS 4.
2416         (awk): Mention more of the limitations of traditional Awk.
2417         (cat): Don't talk about cat -v.
2419 2005-06-16  Paul Eggert  <eggert@cs.ucla.edu>
2421         * lib/m4sugar/m4sh.m4 (_AS_VERSION_COMPARE_PREPARE): New macro.
2422         (AS_VERSION_COMPARE): New macro.  The API is taken from CVS,
2423         but the implementation is entirely different and is designed
2424         to be compatible with glibc strverscmp.
2425         * tests/m4sh.at (AS_VERSION_COMPARE): New test.
2427         * doc/autoconf.texi (Limitations of Usual Tools): Mention expr bug
2428         on Mac OS X 10.4 reported by Peter O'Gorman in:
2429         http://lists.gnu.org/archive/html/autoconf-patches/2005-06/msg00041.html
2430         * lib/autoconf/general.m4 (_AC_CANONICAL_SPLIT):
2431         Use shell builtins rather than 'expr', to work around expr bug.
2433 2005-06-10  Paul Eggert  <eggert@cs.ucla.edu>
2435         * doc/autoconf.texi: "filesystem" -> "file system".
2436         "behaviour" -> "behavior".
2437         Warn about \(...\)* in Solaris sed (written by Ralf Menzel).
2438         * lib/autoconf/general.m4: Omit blank after ":" sed command,
2439         as per POSIX.
2440         * lib/m4sugar/m4sh.m4: Likewise.
2441         * lib/autoconf/status.m4 (_AC_OUTPUT_HEADERS): Work around problem
2442         with Solaris sed.  Fix by Ralf Menzel and Stepan Kasal.
2444         * man/Makefile.am (MOSTLYCLEANFILES): Add $(srcdir)/*.t.
2445         (.x.1): Ignore the time stamp in the .TH line when deciding whether
2446         to update the man page.  That way, we don't have to check in new
2447         man pages every month.
2449         * lib/m4sugar/m4sh.m4 (AS_VAR_TEST_SET): Work even if $1 contains
2450         quotes and backslashes.  Patch from Derek Price.
2452 2005-06-10  Derek Price  <derek@ximbiot.com>
2454         * doc/autoconf.texi (Programming in M4sh): Document AS_TR_CPP &
2455         AS_TR_SH.
2457 2005-06-08  Paul Eggert  <eggert@cs.ucla.edu>
2459         * lib/autotest/general.m4 (AT_INIT): Don't accept Solaris 9's diff
2460         -u, since it outputs chatter if the input files are the same.
2461         Problem reported by Ralf Menzel.
2463 2005-06-08  Derek Price  <derek@ximbiot.com>
2465         * lib/m4sugar/m4sugar.m4: Undefine include & sinclude rather than
2466         renaming them since they are about to be redefined anyhow.
2468 2005-06-08  Derek Price  <derek@ximbiot.com>
2470         * doc/autoconf.texi (Redefined M4 Macros): Add index entries for most
2471         redefined M4 macros to this node.  Document m4_include & m4_sinclude.
2472         Move m4_undefine to alphabetical order.
2474 2005-06-07  Paul Eggert  <eggert@cs.ucla.edu>
2476         * README: Recommend GNU M4 1.4.3 or later.
2477         * doc/autoconf.texi (Introduction): Likewise.
2478         Reword to avoid some formatting glitches.
2479         Use "#!/bin/sh", not "#! /bin/sh"; the space isn't needed these days.
2480         Clarify explanation of HP compiler bug.
2481         Redo example output tp match current CVS snapshot.
2482         Use @example.org in email addresses when the examples
2483         might get inadvertently cut-and-pasted into user code.
2484         Remove example of autom4te usage that doesn't seem to work now.
2485         Use modern AC_INIT (except when the example is meant to be
2486         shown with Autoconf 2.13).
2487         Update ksh info for Solaris 9 and later.
2488         KB -> kB.
2489         Modernize description of Automake versions a bit.
2490         Don't claim a future version of Autoconf is near.
2491         * doc/install.texi: Reword to avoid some formatting glitches.
2493 2005-06-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2495         * doc/autoconf.texi: Add [] to examples, so that the manual
2496         follows its own advice about quoting better.
2497         Reword to avoid some formatting glitches.
2498         * doc/installt.exi: Reword to avoid some formatting glitches.
2500         * doc/autoconf.texi (Limitations of Builtins) <case>: Mention
2501         Tru64 ksh pattern matching bug.  Reported against Libtool by
2502         Albert Chin <libtool@mlists.thewrittenword.com> and
2503         Nicolas Joly <njoly@pasteur.fr>.
2505 2005-06-06  Stepan Kasal  <kasal@ucw.cz>
2507         m4_cdr of one-member list was [[]] (one-member list containing an
2508         empty string) instead of [] (an empty list.  Callers were skewed to
2509         match this misbehaviour.  As a consequence of this:
2510          - m4_foreach([x], [], [foo]) expanded to `foo', while
2511          - the expansion of m4_foreach([x], [[]], [foo]) was empty.
2512         This bug has been fixed:
2514         * lib/m4sugar/m4sugar.m4 (m4_cdr): If only one argument is given,
2515           expand to an empty string; print error msg if called without
2516           an argument list.
2517         (m4_foreach, m4_map, m4_map_sep): Don't expect the previous
2518           misbehaviour; handle [] and [[]] correctly.
2520 2005-06-06  Stepan Kasal  <kasal@ucw.cz>
2522         * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS): Nuke ac_max_here_lines.
2523         * lib/autoconf/status.m4 (_AC_OUTPUT_HEADERS): Simplify the sed
2524           scripts created and the loop applying them, use _AC_SED_CMD_LIMIT.
2526 2005-06-06  Ralf Menzel <menzel@ls6.cs.uni-dortmund.de>  (trivial change)
2528         * doc/autoconf.texi (Limitations of Usual Tools): Solaris' awk cannot
2529           swallow records with more than 99 fields.
2530         * lib/autotest/general.m4 (AT_INIT): Use the awk builtin `split' to
2531           parse the long line.
2533 2005-06-04  Stepan Kasal  <kasal@ucw.cz>
2535         * doc/autoconf.texi (Limitations of Usual Tools): AIX awk cannot
2536           swallow literals longer than 399.  Reported by Ralf Wildenhues.
2537         * lib/autotest/general.m4 (AT_INIT): Pass $at_groups though stdin,
2538           to workaround this limitation.
2540 2005-06-03  Steven G. Johnson  <stevenj@alum.mit.edu>
2542         * lib/autoconf/fortran.m4 (_AC_PROG_FC): Find g95 in addition
2543         to gfortran, and make these the first two compiler names
2544         checked (following the general autoconf preference for gcc).
2546 2005-06-03  Stepan Kasal  <kasal@ucw.cz>
2548         * tests/Makefile.am (check_SCRIPTS): Set to $(wrappers).
2549         (DISTCLEANFILES): Remove $(check_SCRIPTS).
2550         (testsuite): Make sure autotest.m4f is up-to-date before using it.
2552 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
2554         * lib/autotest/general.m4 (AT_INIT): Don't create a regular
2555         expression of unbounded size when processing the --list
2556         option.  This runs afoul of a limit of 399 bytes per regular
2557         expression on AIX.  Problem reported by Ralf Wildenhues.
2559 2005-06-01  Paul Eggert  <eggert@cs.ucla.edu>
2561         * NEWS: Note yesterday's changes to AC_SUBST and AC_SUBST_FILE.
2562         * doc/autoconf.texi (Particular Headers): Reword example
2563         for multiline stdbool replacement.
2564         (Setting Output Variables): Reword text a bit.  Don't
2565         give all the details about |#_!!_#|.
2566         Reword description of line replacement.
2568 2005-05-31  Dan Manthey  <dan_manthey@partech.com>
2570         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES): Output variables may
2571         now contain newlines, and substituted files must be referenced on
2572         a line alone; the sed scripts to substitute them are now very
2573         different.
2574         (_AC_SED_CMD_LIMIT): Added; single place to store limit on how many
2575         commands can be put in a sed script portably.
2576         * doc/autoconf.texi (Setting Output Variables): Document above
2577         changes.  (Particular Header Checks) <AC_HEADER_STDBOOL>: Give exaple
2578         use of multiline substitution.
2579         * tests/torture.at: No longer expect substitution of newline to fail.
2581 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
2583         * lib/m4sugar/m4sh.m4 (_AS_SHELL_FN_WORK): Fix diagnostics.
2584         From Ralf Menzel (trivial change).
2586 2005-05-25  Paul Eggert  <eggert@cs.ucla.edu>
2588         * tests/local.at: Don't attempt to check for negated character
2589         classes in shell scripts.  The test was too brittle.
2591 2005-05-25  Stepan Kasal  <kasal@ucw.cz>
2593         * bin/autoconf.as: Don't use "shift 2"; it's not portable enough.
2594         * doc/autoconf.texi (Limitations of Builtins): Document this
2595           limitation.
2597 2005-05-24  Stepan Kasal  <kasal@ucw.cz>
2599         * lib/m4sugar/m4sh.m4 (_AS_ECHO_LOG): New macro to factor out
2600           common code; used in many places in the tree.
2601         (AS_ESCAPE): Make the pattern a bit simpler; use \& insetad of \1.
2602         (_AS_ECHO_UNQUOTED): Move the macro lower; no code change.
2604         * lib/m4sugar/m4sugar.m4 (m4_ifset): Use m4_ifval.
2606         * lib/autoconf/general.m4 (_AC_INIT_SRCDIR): Merge the two error
2607           messages when ac_unique_file is not found.
2608         (AC_CONFIG_MACRO_DIR): Simplify the `if' at the end.
2609         (AC_MSG_CHECKING, AC_MSG_RESULT): Put braces around the two echo
2610           commands, for consistency with AC_MSG_ERROR and such.
2612         * bin/autoconf.as: Make more use of "shift 2" in option processing.
2614         * bin/Makefile.am: Merge the two rules for creating scripts.
2616 2005-05-23  Stepan Kasal  <kasal@ucw.cz>
2618         * lib/autoconf/general.m4 (AC_MSG_RESULT_UNQUOTED): Make
2619         obsolete; it was never documented.
2620         (AC_CACHE_CHECK): Use AC_MSG_RESULT instead.
2622 2005-05-20  Stepan Kasal  <kasal@ucw.cz>
2624         * NEWS: @top_builddir@ is now a dirname, ac_top_builddir will follow.
2625         * lib/autoconf/status.m4 (_AC_SRCDIRS): Rename ...
2626         (ac_top_builddir): ... this ...
2627         (ac_top_build_prefix): ... to this; the old name is also kept, for
2628           backward compatibility.
2629         (ac_top_builddir_sub): New variable, without the trailing slash,
2630           always nonempty.
2631         (_AC_OUTPUT_FILES): s/@top_builddir@/$ac_top_builddir_sub/
2632         * doc/autoconf.texi (Configuration Actions): Rename
2633           ac_top_builddir to ac_top_build_prefix.
2634         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): Rename
2635           at_top_builddir to at_top_build_prefix.
2636         * lib/autotest/general.m4 (AT_INIT): Likewise.
2638 2005-05-20  Stepan Kasal  <kasal@ucw.cz>
2640         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Simplify the init
2641           of confdefs.h .
2643 2005-05-17  Stepan Kasal  <kasal@ucw.cz>
2645         * lib/m4sugar/m4sugar.m4 (m4_text_wrap): Don't m4_quote the second
2646           argument to m4_foreach.  I guess it was necessary in the past,
2647           but I think it's a no-op now.
2649 2005-05-17  Stepan Kasal  <kasal@ucw.cz>
2651         * lib/autoconf/general.m4 (_AC_INIT_HELP): Merge two consecutive
2652           ``cat <<_ACEOF'' commands to one.
2653         (_AC_CANONICAL_SPLIT): Use expr, not ``echo|sed.''
2654         * lib/autoconf/status.m4: On various places, use expr instead of
2655           ``echo|sed.''
2656         (_AC_CONFIG_SPLIT, _AC_CONFIG_SPLIT_SOURCE_DEST):
2657         (_AC_CONFIG_SPLIT_FILE_IN): New macros, to factor out common code.
2658         * lib/autotest/general.m4 (AT_INIT): Use expr to get the numbers from
2659           a range.
2660         * tests/local.at (AT_CHECK_SHELL_SYNTAX): Use awk to search for
2661           the wrong patterns between ``case'' and ``esac.''  The previous
2662           code had false positives.
2664 2005-05-14  Alexandre Duret-Lutz  <adl@gnu.org>
2666         * lib/autoconf/functions.m4 (_AC_LIBOBJ_ALLOCA): Prepend ${LIBOBJDIR},
2667         as on 2005-05-02.
2668         * doc/autoconf.texi (Particular Functions) <AC_FUNC_ALLOCA>:
2669         Mention LIBOBJDIR.
2671 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
2673         * AUTHORS, BUGS, COPYING, ChangeLog, ChangeLog.0, ChangeLog.1,
2674         ChangeLog.2, GNUmakefile, HACKING, Makefile.am, Makefile.cfg,
2675         Makefile.maint, NEWS, README, README-alpha, TODO, configure.ac,
2676         bin/Makefile.am, bin/autoconf.as, bin/autoheader.in,
2677         bin/autom4te.in, bin/autoreconf.in, bin/autoscan.in,
2678         bin/autoupdate.in, bin/ifnames.in, config/Makefile.am,
2679         config/config.guess, config/config.sub, config/elisp-comp,
2680         config/m4.m4, config/mdate-sh, config/missing, config/texinfo.tex,
2681         doc/Makefile.am, doc/fdl.texi, lib/Makefile.am, lib/autom4te.in,
2682         lib/freeze.mk, lib/Autom4te/C4che.pm, lib/Autom4te/ChannelDefs.pm,
2683         lib/Autom4te/Channels.pm, lib/Autom4te/Configure_ac.pm,
2684         lib/Autom4te/FileUtils.pm, lib/Autom4te/General.pm,
2685         lib/Autom4te/Request.pm, lib/Autom4te/Struct.pm,
2686         lib/Autom4te/XFile.pm, lib/autoconf/Makefile.am,
2687         lib/autoconf/autoconf.m4, lib/autoconf/autoheader.m4,
2688         lib/autoconf/autoscan.m4, lib/autoconf/autotest.m4,
2689         lib/autoconf/autoupdate.m4, lib/autoconf/c.m4,
2690         lib/autoconf/fortran.m4, lib/autoconf/functions.m4,
2691         lib/autoconf/general.m4, lib/autoconf/headers.m4,
2692         lib/autoconf/lang.m4, lib/autoconf/libs.m4,
2693         lib/autoconf/oldnames.m4, lib/autoconf/programs.m4,
2694         lib/autoconf/specific.m4, lib/autoconf/status.m4,
2695         lib/autoconf/types.m4, lib/autoscan/Makefile.am,
2696         lib/autoscan/autoscan.list, lib/autoscan/autoscan.pre,
2697         lib/autotest/Makefile.am, lib/autotest/autotest.m4,
2698         lib/autotest/general.m4, lib/emacs/Makefile.am,
2699         lib/emacs/autoconf-mode.el, lib/emacs/autotest-mode.el,
2700         lib/m4sugar/Makefile.am, lib/m4sugar/m4sh.m4,
2701         lib/m4sugar/m4sugar.m4, man/Makefile.am, tests/Makefile.am,
2702         tests/atlocal.in, tests/autotest.at, tests/base.at, tests/c.at,
2703         tests/compile.at, tests/foreign.at, tests/fortran.at,
2704         tests/local.at, tests/m4sh.at, tests/m4sugar.at, tests/mktests.sh,
2705         tests/semantics.at, tests/suite.at, tests/tools.at,
2706         tests/torture.at, tests/wrapper.as:
2707         Update FSF postal mail address.
2709 2005-05-13  Stepan Kasal  <kasal@ucw.cz>
2711         * lib/autoconf/general.m4 (AC_CONFIG_LIBOBJ_DIR): Remove the broken
2712           check.
2713         * lib/m4sugar/m4sugar.m4 (m4_bmatch): Halt with error if we don't get
2714           enough arguments, similarly as in m4_bpatsubsts.
2716 2005-05-12  Stepan Kasal  <kasal@ucw.cz>
2718         * lib/autoconf/status.m4 (_AC_SRCDIRS): Simplify the computation
2719           of absolute paths.
2721 2005-05-11  Stepan Kasal  <kasal@ucw.cz>
2723         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ARGS): Make the check
2724           for absolute directory names in one loop.
2725         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Handle
2726           abbreviations of --version and --debug.
2728 2005-05-10  Paul Eggert  <eggert@cs.ucla.edu>
2730         * doc/autoconf.texi (Autoconf Language): Be more precise about
2731         quoting rules.  Problems noted by Stepan Kasal.
2732         Also, throughout this document, be more careful about white space.
2733         "blank", "white space", and "space" all have different meanings
2734         and we should be careful to say what we mean.
2736 2005-05-05  Paul Eggert  <eggert@cs.ucla.edu>
2738         Fix C++ related problems reported by Werner Lemberg.
2739         * doc/autoconf.texi (C++ Compiler): Mention .cpp extension.
2740         * lib/autoconf/c.m4 (AC_LANG(C++)): Set ac_ext to .cpp, not .cc.
2741         * lib/autoconf/types.m4 (AC_TYPE_SIGNAL): Simplify test, to
2742         avoid problems with C++ and throw.
2743         * tests/compile.at: .cpp, not .cc.
2745         * tests/semantics.at: Prepend LIBOBJDIR, as per 2005-05-02 change.
2747 2005-05-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2749         * doc/autoconf.texi (Generic Functions): Typos.
2751 2005-05-02  Gary V. Vaughan  <gary@gnu.org>
2753         * lib/autoconf/general.m4 (_AC_LIBOBJS_NORMALIZE): Prepend each
2754         object named in LIBOBJS and LTLIBOBJS with the ${LIBOBJDIR}, as
2755         set by latest automake.
2757 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
2759         * doc/autoconf.texi (Limitations of Usual Tools): "expr '' \| ''"
2760         outputs 0 on GNU/Linux these days.
2762 2005-04-29  Paul Eggert  <eggert@cs.ucla.edu>
2764         * doc/autoconf.texi (Autoconf Language): Add more description
2765         about quoting heuristics.
2766         (Limitations of Builtins): Describe "set -" problems.
2768 2005-04-29  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2770         * lib/autotest/general.m4 (AT_KEYWORDS): Separate by space,
2771         not newline.
2773         * doc/autoconf.texi (External Software): Replace AC_DEFINE_UNQUOTED
2774         by AC_DEFINE; it was a mistake.
2775         From bug reported against libtool by Dalibor Topic <robilad@kaffe.org>.
2777 2005-04-25  Stepan Kasal  <kasal@ucw.cz>
2779         * lib/autoconf/status.m4 (_AC_OUTPUT_HEADERS): A tiny optimization.
2781 2005-04-22  Stepan Kasal  <kasal@ucw.cz>
2783         * doc/autoconf.texi (External Software): Quadrigraphs are not
2784           processed correctly in AS_HELP_STRING; avoid this in the examples.
2785         * lib/m4sugar/m4sh.m4 (AS_HELP_STRING): Add a FIXME about quadrigraphs.
2786         * lib/m4sugar/m4sugar.m4 (m4_text_wrap): Likewise; and rephrase the
2787           comment and reduce m4_default([foo], []) to [foo].
2788         (m4_strip): Update the explanation.
2790 2005-04-19  Paul Eggert  <eggert@cs.ucla.edu>
2792         * lib/autoconf/general.m4 (_AC_INIT_PREPARE, _AC_RUN_IFELSE):
2793         Remove core.conftest.* too; it's generated by Tru64 5.1.
2794         Problem reported by Jennis Pruett.
2795         * lib/autoconf/functions.m4
2796         (AC_FUNC_SETVBUF_REVERSED, AC_FUNC_UTIME_NULL):
2797         Don't bother to remove core files; AC_RUN_IFELSE should do that
2798         for you.
2800 2005-04-19  Stepan Kasal  <kasal@ucw.cz>
2802         * lib/m4sugar/m4sugar.m4 (m4_bpatsubsts): Add the b- to comment, too.
2804 2005-04-19  Alexandre Duret-Lutz  <adl@gnu.org>
2806         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ARGS): Handle --docdir.
2807         Report from Horst Wente.
2809 2005-04-15  Stepan Kasal  <kasal@ucw.cz>
2811         * lib/autoconf/general.m4 (_AC_ARG_VAR_VALIDATE): Fixed a typo in
2812           the comment.
2814 2005-04-14  Gregorio Guidi  <greg_g@gentoo.org>
2816         * doc/autoconf.texi (External Software, Package Options): Add
2817           examples showing how to implement --with-* and --enable-* options.
2819 2005-04-13  Paul Eggert  <eggert@cs.ucla.edu>
2821         * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): Look for configure.ac
2822         as well as configure.in.  Problem reported by Gregorio Guidi.
2824 2005-04-10  Paul Eggert  <eggert@cs.ucla.edu>
2826         * doc/autoconf.texi (Particular Functions): Use gnulib's current
2827         pattern for alloca snippet.
2829 2005-04-04  Stepan Kasal  <kasal@ucw.cz>
2831         * lib/autotest/general.m4 (_AT_DECIDE_TRACEABLE): Fix a typo.
2833 2005-04-01  Stepan Kasal  <kasal@ucw.cz>
2835         * doc/autoconf.texi (Generic Programs): Fix a typo.
2837 2005-04-01  Paul Eggert  <eggert@cs.ucla.edu>
2839         * lib/autotest/general.m4 (AT_INIT): Don't assume that "date +%s"
2840         fails if %s isn't supported.  Problem reported by Ralf Wildenhues.
2842 2005-03-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2844         * lib/autoconf/fortran.m4 (_AC_FC_LIBRARY_LDFLAGS):
2845         Merge `-z option' as well for the benefit of Solaris link flags.  Pass
2846         whole-archive (-zallextract, -zdefaultextract) options in the hope of
2847         unique libraries, for the Sun Fortran 95 8.0 compiler.  Bug reported
2848         against Libtool by Yury Puhalsky <pooh@cryptopro.ru>.
2850 2005-03-22  Paul Eggert  <eggert@cs.ucla.edu>
2852         * NEWS: The configure command now warns you if you attempt to use
2853         a directory whose name contains a special character like space,
2854         newline, or "\".
2855         * doc/autoconf.texi (Installation Directory Variables): Allow
2856         "," in file names.  Do not use \@; it's not a portable regexp.
2857         * bin/Makefile.am (edit): Likewise.
2858         * lib/Makefile.am (edit): Likewise.
2859         * tests/Makefile.am (edit): Likewise.
2860         * tests/semantics.at: Likewise.
2861         * tests/torture.at: Likewise.
2862         * lib/autoconf/general.m4 (AC_ARG_PROGRAM): Likewise.
2863         * lib/autoconf/status.m4 (_AC_SRCDIRS): Likewise.
2864         * doc/autoconf.texi (File System Conventions): Warn about
2865         unportable file names.
2866         * lib/autoconf/general.m4 (_AC_INIT_DIRCHECK): New macro.
2867         (AC_INIT): Use it.
2868         (_AC_INIT_SRCDIR): Use ac_pwd rather than invoking pwd.
2869         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Propagate
2870         ac_pwd, and quote srcdir.
2871         * lib/autotest/general.m4 (AT_INIT): Quote file name args.
2873         * doc/autoconf.texi: Fix some systematic formatting problems.
2874         ".)"  needs a following @: if not at the end of a sentence, and
2875         similarly for "!)".  "etc." should be preceded by a comma.
2876         "n-th" -> "@var{n}th".  pdksh is still buggy, so update its date.
2878 2005-03-22  Bruno Haible  <bruno@clisp.org>
2880         * doc/autoconf.texi (Input): Mention that AC_CONFIG_AUX_DIR's
2881         argument is often called 'build-aux'.
2883 2005-03-07  Stepan Kasal  <kasal@ucw.cz>
2885         * doc/autoconf.texi (Quotation Rule Of Thumb): Mention that the
2886           macro AC_TRY_LINK is obsolete.
2887         (Installation Directory Variables): Change `AC_OUTPUT_FILES' to
2888           `AC_CONFIG_FILES'.
2890 2005-02-24  Stepan Kasal  <kasal@ucw.cz>
2892         * lib/autoconf/c.m4 (AC_PROG_CC): Be more careful to skip
2893           `/usr/ucb/cc'; use `cl.exe' to distinguish the MS compiler
2894           from a Common Lisp's `cl'.
2895         (AC_PROG_CXX): Behave according to the documentation: don't
2896           search for $ac_tool_prefix$CCC and $CCC, just set CXX=$CCC;
2897           make the variable CCC precious; use `cl.exe', not `cl'.
2899 2005-02-23  Paul Eggert  <eggert@cs.ucla.edu>
2900             Alexandre Duret-Lutz  <adl@gnu.org>
2902         * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS): Redirect stdin from
2903         /dev/null, as "configure" shouldn't read stdin, and this insulates
2904         us from problems (e.g., when testing for "cl").  Also, do this
2905         redirection before invoking "hostname" or "uname", and keep the
2906         original input stream available via...
2907         (AS_ORIGINAL_STDIN_FD): ... this new macro.
2908         (_AC_PREPROC_IFELSE, _AC_COMPILE_IFELSE, _AC_LINK_IFELSE): Don't
2909         bother with "</dev/null" since it's now done at the top of
2910         'configure'.
2911         * lib/autoconf/c.m4 (AC_PROG_CC, AC_PROG_CXX): Likewise.
2912         * lib/autoconf/fortran.m4 (_AC_PROG_FC): Likewise.
2913         * lib/autoconf/programs.m4 (_AC_PATH_PROG_FLAVOR_GNU): Likewise.
2914         * doc/autoconf.texi (File Descriptor Macros): New section.
2915         (Printing Messages): Mention it.
2916         * tests/base.at (Input/Output): New test.
2918 2005-02-23  Paul Eggert  <eggert@cs.ucla.edu>
2920         * lib/m4sugar/m4sh.m4 (_AS_ECHO_N_PREPARE): Don't set ECHO_C to
2921         newline if neither \c nor -n work, as that would output two
2922         newlines.  Prefer -n to \c.  Reported by Stepan Kasal.
2924 2005-02-12  Stepan Kasal  <kasal@ucw.cz>
2926         * lib/m4sugar/m4sh.m4 (AS_IF): Define by m4_defun, not m4_define.
2927         This causes that any required macros inside will get before the if.
2928         * doc/autoconf.texi (autom4te.cache): A typo.
2930 2005-02-12  Paul Eggert  <eggert@cs.ucla.edu>
2932         Undo previous change, except keep the change to
2933         lib/autoconf/programs.m4 that replaced grep with shell
2934         pattern-matching.  This is because net-snmp configure reads stdin.
2935         Reported by Noah Misch.
2937 2005-02-11  Paul Eggert  <eggert@cs.ucla.edu>
2939         * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS): Redirect stdin
2940         from /dev/null, as "configure" shouldn't read stdin, and this
2941         insulates us from problems (e.g., when testing for "cl").
2942         Suggested by Alexandre Duret-Lutz.  Also, do this redirection
2943         before invoking "hostname" or "uname".
2944         (_AC_PREPROC_IFELSE, _AC_COMPILE_IFELSE,
2945         _AC_LINK_IFELSE): Undo previous change, as it's no longer needed.
2946         * lib/autoconf/c.m4 (AC_PROG_CC, AC_PROG_CXX): Don't bother with
2947         "</dev/null" since it's now done at the top of 'configure'.
2948         * lib/autoconf/fortran.m4 (_AC_PROG_FC): Likewise.
2949         * lib/autoconf/programs.m4 (_AC_PATH_PROG_FLAVOR_GNU): Likewise.
2950         Also, replace grep with shell pattern-matching, to save a process.
2952 2005-02-10  Paul Eggert  <eggert@cs.ucla.edu>
2954         * lib/autoconf/general.m4 (_AC_PREPROC_IFELSE, _AC_COMPILE_IFELSE,
2955         _AC_LINK_IFELSE): Redirect stdin to /dev/null, in an attempt to
2956         avoid thinking that Allegro Common Lisp's "cl" command is a C++
2957         compiler.
2959 2005-02-09  Paul Eggert  <eggert@cs.ucla.edu>
2961         * doc/autoconf.texi (Limitations of Usual Tools): Document that
2962         grep -q isn't portable.  Improve grep -s explanation.
2963         Problem reported by Dan Manthey.
2965 2005-02-08  Paul Eggert  <eggert@cs.ucla.edu>
2967         * doc/autoconf.texi (Special Shell Variables): Clarify
2968         PATH_SEPARATOR wording; fix typo in IFS.  Reported by Gary V. Vaughan.
2970 2005-02-07  Paul Eggert  <eggert@cs.ucla.edu>
2972         * doc/autoconf.texi: Use @acronym for DJGPP.
2973         Fix some @code's that should have been @env's, and vice versa.
2974         Sort environment variable names.
2975         Mention that shells no longer inherit IFS.
2976         Don't recommend PATH_SEPARATOR=';' so strongly.
2977         Mention that $RANDOM might expand to the empty string.
2978         "symlink" and "soft link" -> "symbolic link".
2979         Improve mktemp description (reported by Bruno Haible).
2981 2005-02-05  Paul Eggert  <eggert@cs.ucla.edu>
2983         * tests/foreign.at (Libtool): Don't overquote AT_SETUP arg.
2984         * tests/m4sh.at (AS_DIRNAME, AS_BASENAME, AS_MKDIR_P, AS_HELP_STRING):
2985         Likewise.
2986         * tests/semantics.at (AC_C_BIGENDIAN, AC_PATH_PROG & AC_PATH_PROGS):
2987         Likewise.
2989 2005-02-04  Paul Eggert  <eggert@cs.ucla.edu>
2991         * NEWS: Mention AT_COPYRIGHT.
2993         * tests/local.at (AT_CMP): Use diff directly on input files rather
2994         than copying them.
2996         * lib/autoconf/programs.m4 (AC_PROG_SED): Don't look in
2997         /usr/xpg4/bin since that sed dumps core (at least on Solaris 8).
2999 2005-02-04  Noah Misch  <noah@cs.caltech.edu>
3000         and Paul Eggert  <eggert@cs.ucla.edu>
3002         * tests/autotest.at (Empty test suite): New test.
3003         * tests/torture.at (Substitute and define special characters)
3004         (Substitute a 2000-byte string, Define to a 2000-byte string)
3005         (Substitute a newline, Define a newline): New tests.
3007 2005-02-04  Noah Misch  <noah@cs.caltech.edu>
3009         * lib/m4sugar/m4sugar.m4 (m4_re_string, m4_re_word): Revert 2002-03-04.
3010         * tests/local.at (AT_CHECK_M4SUGAR): Add `m4sugar' to keywords.
3011         (AT_CHECK_ENV): Ignore LTLIBOBJS, FC variables, EGREP, FGREP, and SED.
3012         * tests/m4sugar.at (AT_CHECK_M4SUGAR_TEXT, AT_CHECK_M4RE): New macros.
3013         (Standard regular expressions): New test.
3014         (m4_warn, m4_require: circular dependencies, m4_text_wrap): Strip
3015         excess test name quoting.
3016         * tests/semantics.at (AC_CHECK_HEADERS_OLD, AC_CHECK_HEADERS_NEW): Pass
3017         CPPFLAGS to `configure' instead of setting it in `configure'.
3019         * lib/m4sugar/m4sh.m4 (AS_UNAME): Try only /usr/bin/hostinfo, not
3020         any `hostinfo' in $PATH, since hostinfo.exe is a popular file name
3021         on some platforms.
3023         * lib/autoconf/fortran.m4 (AC_LANG(Fortran), AC_FC_SRCEXT):
3024         s/FC_SRCEXT/ac_fc_srcext/; s/FCFLAGS_SRCEXT/ac_fcflags_srcext/.
3026         * tests/local.at (AT_CMP): New macro.
3027         (AT_DATA_AUTOCONF): Do not call AC_PROG_GREP.
3028         (AC_SAVE_STATE): Move environment grep...
3029         (AT_CHECK_ENV): to here.  Filter out `'$''.  Use AT_CMP.
3030         (AT_CONFIG_CMP): New macro.
3031         (AT_CHECK_MACRO): Run `configure' twice with cache and compare results.
3032         * tests/c.at (Extensions): Do not exit early.
3033         * tests/atlocal.in: Inherit $GREP.
3035         * lib/autoconf/c.m4 (_AC_C_STD_TRY): New macro.
3036         (_AC_PROG_CC_C89, _AC_PROG_CC_C99): Use it.
3038         * lib/autoconf/general.m4 (_AC_INIT_COPYRIGHT): Update for 2005.
3039         (AC_COPYRIGHT): Factor header comment portion out and move into...
3040         * lib/m4sugar/m4sh.m4 (AS_COPYRIGHT): This.
3041         * lib/autotest/general.at (AT_COPYRIGHT): New macro.
3042         (AT_INIT): Add Autotest copyright notice.  Display copyright notices in
3043         --version output.
3044         * tests/local.at: Add Autoconf test suite copyright notice.
3045         * doc/autoconf.texi (Writing testsuite.at): Document AT_COPYRIGHT.
3047 2005-02-04  Bruno Haible  <bruno@clisp.org>
3048         and Paul Eggert  <eggert@cs.ucla.edu>
3050         * doc/autoconf.texi (Limitations of Usual Tools): New mkstemp entry.
3052 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
3054         * lib/m4sugar/m4sugar.m4 (m4_re_escape): Escape ?, ^, \, $ too;
3055         this fixes a bug tickled by the AT_CAPTURE_FILE change noted below.
3057         Try not to generated lines of unlimited length, as POSIX places a
3058         2047-byte limit on line length of portable text files.
3059         * lib/autoconf/general.m4 (AC_SUBST, AC_SUBST_FILE):
3060         Use newline as a separator, not space.
3061         * lib/autotest/general.m4 (AT_TESTED, AT_KEYWORDS): Likewise.
3062         (AT_CAPTURE_FILE): Use space-backslash-newline as a separator, not
3063         space.
3065 2005-02-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3067         * lib/m4sugar/m4sh.m4 (_AS_SHELL_FN_WORK): Move func_* to
3068         as_func_*.  Add test to check whether positional parameters
3069         are restored after function return.
3071 2005-02-02  Paul Eggert  <eggert@cs.ucla.edu>
3073         * doc/autoconf.texi (Special Shell Variables): Mention _,
3074         BIN_SH, DUALCASE.  Say that variables other than "status" are safe
3075         if they contain a lower-case letter.  The DUALCASE problem was
3076         reported by Ralf Wildenhues.
3078         * bin/autoconf.as: Don't exit with status 0 after write failure
3079         with --help or --version.
3080         * lib/autoconf/general.m4 (_AC_INIT_HELP, _AC_INIT_VERSION): Likewise.
3081         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Likewise.
3083 2005-02-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3085         * doc/autoconf.texi (Limitations of Usual Tools):
3086         Unicos 9 sed limitations.
3087         * lib/autoconf/fortran.m4 (_AC_PROG_FC): Try cf77 before fort77
3088         to get the option-enhanced interface on older Crays.  Try ftn for
3089         Fortran 95 (newer Crays).
3091 2005-02-01  Paul Eggert  <eggert@cs.ucla.edu>
3093         * man/Makefile.am (.x.1): Go back to the simple solution, but take
3094         care to echo the commands, so the user knows what's going on.
3095         Modified from a suggestion by Stepan Kasal.
3097         * doc/autoconf.texi (autoreconf Invocation): Mention autopoint,
3098         with a cross reference.  Derived from a suggestion by Bruce Korb.
3100 2005-01-31  Paul Eggert  <eggert@cs.ucla.edu>
3102         * doc/autoconf.texi (config.status Invocation): Warn about
3103         discrepancy between CONFIG_SHELL and shell used to invoke 'configure'.
3104         * doc/install.texi (Defining Variables): Likewise.
3105         Based on a proposed patch by Ralf Wildenhues.
3107         * man/Makefile.am (.x.1): Make sure the required generated files
3108         are up to date.  Problem and original solution proposed by Stepan Kasal.
3109         $(dist_man_MANS:.1=-bin-prereq), $(dist_man_MANS:.1=-tests-prereq),
3110         implicit-man-prerequisites): New rules, used by the above.
3112         * doc/make-stds.texi, doc/standards.texi: Sync from gnulib.
3113         * config/config.guess, config/config.sub, config/install-sh: Likewise.
3114         * config/missing, config/texinfo.tex: Likewise.
3116 2005-01-29  Stepan Kasal  <kasal@ucw.cz>
3118         Simplify the implementation of m4_require (a.k.a. AC_REQUIRE).
3119         Update the long comment explaining it.
3121         m4_require no longer writes an ``is required by'' line to the
3122         execution stack.  It contains only one bit of non-redundant
3123         information: that the macro was required, not called.  And even
3124         this bit is useless in most situations: have you ever met a macro
3125         which both calls and requires the same macro?
3127         * lib/m4sugar/m4sugar.m4 (_m4_defun_pro): Don't push a diversion...
3128         (_m4_defun_pro_outer): ... only via this macro, for the outermost
3129           macro.
3130         (_m4_defun_epi, _m4_defun_epi_outer): Complementarily.
3131         (m4_expansion_stack_pop): Remove the misplaced comment.
3132         (m4_require): Don't put the ``is required by'' line to the
3133           execution stack; slightly improve the out-of-a-defun error message.
3134         (_m4_divert_grow): New macro, counter for the temporary diversions.
3135         (_m4_require_call): Use it.
3136         * tests/m4sugar.at (m4_require): Expect output without the
3137           ``is required by'' messages.
3139 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
3141         * doc/autoconf.texi (Limitations of Usual Tools): Recommend X
3142         rather than x for expr.
3144         * lib/autoconf/lang.m4 (_AC_COMPILER_OBJEXT): Avoid subshells when
3145         this is safe.
3146         * lib/autoconf/programs.m4 (AC_PROG_EGREP, AC_PROG_FGREP): Likewise.
3147         * lib/autoconf/specific.m4 (AC_SYS_LONG_FILE_NAMES): Likewise.
3148         * lib/autotest/general.m4 (AT_INIT): Likewise.
3149         * lib/m4sugar/m4sh.m4 (_AS_LINENO_WORKS): Likewise.
3150         * tests/mktests.sh: Likewise.
3152 2005-01-27  Akim Demaille  <akim@epita.fr>
3154         Have autoheader honor --force.
3156         * doc/make-stds.texi, doc/standards.texi: Update from masters.
3157         * lib/Autom4te/Channels.pm, lib/Autom4te/Configure_ac.pm
3158         * lib/Autom4te/FileUtils.pm, lib/Autom4te/XFile.pm: Update
3159         from masters, so that FileUtils.pm's update_file provide --force
3160         support.
3161         * bin/autoheader.in: Pass $force to update_file so that
3162         config.h.in is always recreated when --force.
3164 2005-01-24  Stepan Kasal  <kasal@ucw.cz>
3166         * doc/autoconf.texi (Introduction): Update Peter Simons' address.
3168 2005-01-21  Paul Eggert  <eggert@cs.ucla.edu>
3170         * doc/autoconf.texi (Limitations of Builtins): Clarify that
3171         "if test ! -d foo; ..." is portable.  Suggested by Stepan Kasal.
3173 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
3175         * doc/autoconf.texi (Shell Substitutions): Fix typo in case statement.
3176         Warn about newline stripping in `` and $().  Update Solaris
3177         version to 9.
3178         (Limitations of Builtins): Use expr "X...", not expr "x...", as
3179         X insulates us from future changes to Posix.
3180         (Limitations of Usual Tools): For AS_DIRNAME, warn about newline
3181         stripping.
3183 2005-01-19  Stepan Kasal  <kasal@ucw.cz>
3185         * doc/autoconf.texi (Defining Symbols): Delete the false comment that
3186           you cannot use AC_DEFINE to define macros containing `[' or `]'.
3188 2005-01-13  Paul Eggert  <eggert@cs.ucla.edu>
3190         * doc/autoconf.texi (Limitations of Usual Tools): Document bug
3191         in Solaris 8 join.  Problem reported by Tomohiro Suzuki on
3192         bug-tar mailing list.
3194 2005-01-05  Stepan Kasal  <kasal@ucw.cz>
3196         * lib/m4sugar/m4sugar.m4 (m4_copy): Fix the explanation.
3198 2005-01-05  Paul Eggert  <eggert@cs.ucla.edu>
3200         * lib/autoconf/c.m4 (AC_LANG_INT_SAVE(C)): Declare longval and
3201         ulongval to be static, to avoid unwanted GCC warning.  Problem
3202         reported by Michael Jennings via Daniel Reed; see
3203         <https://bugzilla.redhat.com/beta/show_bug.cgi?id=143852>.
3205 2005-01-05  Alexandre Duret-Lutz  <adl@gnu.org>
3207         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ARGS): Define datarootdir,
3208         docdir, htmldir, dvidir, pdfdir, psdir, and localdir.  Update
3209         datadir, infodir, and mandir.  Adjust argument parsing code.
3210         (_AC_INIT_HELP): Update help text.
3211         * doc/autoconf.texi (Installation Directory Variables): Document
3212         new variables.
3214 2005-01-04  Noah Misch  <noah@cs.caltech.edu>
3216         * lib/autoconf/programs.m4 (AC_PROG_MAKE_SET): If the Make program does
3217         not seem to work, assume it does set $(MAKE).
3218         * doc/autoconf.texi (AC_PROG_MAKE_SET): Update.
3220 2005-01-03  Stepan Kasal  <kasal@ucw.cz>
3222         * lib/m4sugar/m4sh.m4 (AS_REQUIRE): Add a comment about nesting.
3224 2005-01-03  Stepan Kasal  <kasal@ucw.cz>
3226         A cleanup of the diversion support in m4sugar.
3228         * lib/m4sugar/m4sugar.m4 (_m4_divert): A typo in description.
3229         (_m4_divert_n_stack): New macro; the expansion is
3230           <newline>m4_divert_stack, if m4_divert_stack is defined, and void
3231           otherwise.
3232         (m4_divert, m4_divert_push, m4_divert_pop, m4_init): Use it.
3233         (m4_divert_push, m4_divert_pop, _m4_defun_epi): Don't expand the word
3234           stored in _m4_divert_diversion or _m4_divert_dump.
3235         (m4_divert_pop): When the parameter is given, compare the symbolic
3236           name with the last diversion pushed on the stack.  Previously, the
3237           current diversion was compared with the numeric value of the
3238           diversion given as the parameter.
3239         (m4_require): If the macro hasn't been expanded yet, call ...
3240         (_m4_require_call): this new macro.
3242 2005-01-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3244         * lib/autoconf/general.m4 (_AC_INIT_PREPARE, _AC_ARG_VAR_VALIDATE):
3245         Workarounds for documented `case' limitations.
3247 2005-01-03  Paul Eggert  <eggert@cs.ucla.edu>
3249         * doc/autoconf.texi (Limitations of Usual Tools): Warn about
3250         sed 'command1;command2'.  Problem reported by Ralf Wildenhues.
3252 2005-01-02  Paul Eggert  <eggert@cs.ucla.edu>
3254         * bin/autoconf.as, bin/autoheader.in, bin/autom4te.in,
3255         bin/autoreconf.in, bin/autoscan.in, bin/autoupdate.in,
3256         bin/ifnames.in, tests/mktests.sh: Update copyright date to 2005.
3258         Patch from Roger Leigh (with some minor changes) as follows:
3259         * NEWS: New macros AC_PROG_CC_C89, AC_PROG_CC_C99.
3260         Resurrect AC_PROG_CC_STDC.
3261         * doc/autoconf.texi (C Compiler): Add AC_PROG_CC_STDC,
3262         AC_PROG_CC_C89, AC_PROG_CC_C99.
3263         (Obsolete Macros): Remove AC_PROG_CC_STDC; it's no longer obsolete.
3264         * lib/autoconf/c.m4 (_AC_PROG_CC_C89, _AC_PROG_CC_C99, AC_PROG_CC_C89,
3265         AC_PROG_CC_C99): New macros.
3266         (AC_PROG_CC_STDC): Use them.
3267         (_AC_PROG_CC_STDC): Remove.
3268         (AC_C_PROTOTYPES): Use ac_cv_prog_cc_c89, not ac_cv_prog_cc_stdc.
3269         * THANKS: Add Roger Leigh.
3271 2004-12-30  Noah Misch  <noah@cs.caltech.edu>
3273         * bin/autoreconf.in (autoreconf_current_directory):  AM_INIT_AUTOMAKE
3274         signals that the package uses Automake; a `Makefile.am' is typical but
3275         not essential.  Reported by Magnus Therning.
3276         * tests/torture.at (autoreconf.): New banner.
3277         (autoreconf and non-AC configure): Rename to `Non-Autoconf
3278         AC_CONFIG_SUBDIRS'.
3279         (autoreconf an empty directory): Rename to `Empty directory'.
3280         (Unusual Automake input files): New test.
3282 2004-12-30  Noah Misch  <noah@cs.caltech.edu>
3284         * lib/autotest/general.m4 (AT_CAPTURE_FILE): New macro.
3285         (AT_SETUP): Clear AT_capture_files.
3286         (_AT_CHECK): On failure, log each of AT_capture_files.  Fix comment.
3287         (AT_KEYWORDS): Fix comment typo.
3288         * tests/autotest.at (AT_CHECK_AT): Use AT_CAPTURE_FILE.
3289         * tests/local.at (AT_CHECK_CONFIGURE): Use AT_CAPTURE_FILE.
3290         * doc/autoconf.texi (Writing testsuite.at): Document AT_CAPTURE_FILE.
3292 2004-12-29  Albert Chin-A-Young  <china@thewrittenword.com>
3294         * lib/autoconf/programs.m4 (_AC_FEATURE_CHECK_LENGTH):
3295         If the variable to set is already set, set ac_cv_path_$1
3296         to the preset value so caller can assume ac_cv_path_$1
3297         is available.  (trivial change)
3299 2004-12-27  Noah Misch  <noah@cs.caltech.edu>
3301         * BUGS (Minor Problems): Warn about makefile limitations.
3302         * Makefile.am: Find and update `INSTALL' in $(srcdir).
3303         * man/Makefile.am: Find and update manual pages in $(srcdir).
3305 2004-12-24  Eric Blake  <ebb9@byu.net>
3307         * lib/m4sugar/m4sh.m4 (_AS_DETECT_BETTER_SHELL): Test candidate
3308         shells in subshell, to avoid noise from ash.  (trivial change)
3310 2004-12-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3312         * doc/autoconf.texi (Limitations of Builtins) <case>: Mention
3313         problems with SunOS ksh and backslash escaping, Bourne shells and
3314         closing brackets (both within character classes).  Bug reported
3315         against Libtool by Alexander Kurz <alexander.kurz@qsc.de>.
3316         <read>: New entry.  Mention non-availability of -r.
3318 2004-12-21  Akim Demaille  <akim@epita.fr>
3320         * lib/autotest/general.m4 (AT_LINE): Don't add srcdir here, to
3321         avoid cluttering displayed messages.  Rather, prepend srcdir where
3322         AT_LINE is used for log files.
3324 2004-12-21  Stepan Kasal  <kasal@ucw.cz>
3326         * lib/autoconf/status.m4: Quote ``$tmp'' in many places.
3327         * lib/m4sugar/m4sh.m4 (AS_TMPDIR): Fix the comment, as traps are
3328           no longer part of the macro, quote the occurrence of ``$tmp''.
3329         * doc/autoconf.texi (Forbidden Patterns): Typo.
3331 2004-12-21  Akim Demaille  <akim@epita.fr>
3333         * lib/autotest/general.m4 (AT_INIT): Make sure the "ok" etc. are
3334         separated from the test title by forcing a white space.
3336 2004-12-21  Akim Demaille  <akim@epita.fr>
3338         Enable Emacs navigation within testsuite.log files.
3340         * lib/autotest/general.m4 (AT_CLEANUP): Add an hint for Emacs to
3341         use the compilation mode.
3342         (AT_LINE): Point to the srcdir.
3344 2004-12-19  Noah Misch  <noah@cs.caltech.edu>
3346         * tests/Makefile.am (installcheck-local): Use $(bindir).
3347         (check-local, installcheck-local): Pass TESTSUITEFLAGS.
3348         * doc/autoconf.texi (Making testsuite Scripts): Recommend the same
3349         Makefile.am scheme Autoconf now uses.
3351 2004-12-18  Noah Misch  <noah@cs.caltech.edu>
3353         * lib/m4sugar/m4sugar.m4 (m4_qlen, m4_qdelta): New macros.
3354         * lib/autotest/general.m4 (AT_SETUP): Use m4_qdelta.
3356 2004-12-18  Noah Misch  <noah@cs.caltech.edu>
3358         * lib/autotest/general.m4 (_AT_DECIDE_TRACEABLE): New macro.
3359         (_AT_CHECK): Use it.
3360         * lib/m4sugar/m4sh.m4 (AS_ESCAPE_FOR_EXPAND): Remove.
3361         (AS_ESCAPE): Fix comment.
3362         * tests/autotest.at: Adjust section banner comments.
3363         (AT_CHECK_AT): Accept STATUS and STDERR.
3364         (AT_CHECK_AT_TEST): Likewise.
3365         (Invalid brace-enclosed parameter expansion)
3366         (Multiline command from M4 expansion)
3367         (Double-M4-quoted command): New tests.
3369 2004-12-17  Paul Eggert  <eggert@cs.ucla.edu>
3371         * doc/autoconf.texi: Update GNU FDL version from 1.1 to 1.2.
3373 2004-12-17  Akim Demaille  <akim@epita.fr>
3375         * lib/autoconf/general.m4 (AC_SUBST, AC_SUBST_FILES): Pass $1 to
3376         m4_pattern_allow.
3377         Suggested by Alexandre Duret-Lutz.
3378         * doc/autoconf.texi (Setting Output Variables): Catch up.
3380 2004-12-17  Stepan Kasal  <kasal@ucw.cz>
3382         * lib/m4sugar/m4sh.m4 (_AS_TEST_PREPARE): Fix comment.
3384 2004-12-17  Stepan Kasal  <kasal@ucw.cz>
3386         * lib/autoconf/general.m4 (_AC_LIBOBJ): We can use AC_SUBST/2,
3387           remove the comment which said we cannot.
3389 2004-12-17  Stepan Kasal  <kasal@ucw.cz>
3391         Add a specialized check for resolv.h.  Thanks to Gerrit P. Haase,
3392         Reini Urban and Paul Eggert for reporting the dependencies.
3394         * lib/autoconf/headers.m4 (AC_HEADER_RESOLV): New macro.
3395         * doc/autoconf.texi (AC_HEADER_RESOLV): Document it.
3396         (AC_HEADER_STAT): @cvindex{STAT_MACROS_BROKEN}, not @acindex.
3398 2004-12-17  Stepan Kasal  <kasal@ucw.cz>
3400         * bin/autoscan.in: Open autoscan.log only after ``parse_args'';
3401           so that eg. ``autoscan --help'' doesn't truncate it.
3403 2004-12-15  Nicolas Joly  <njoly@pasteur.fr>
3405         * lib/autoconf/programs.m4 (_AC_FEATURE_CHECK_LENGTH): Remove
3406         generated conftest files.
3408 2004-12-13  Noah Misch  <noah@cs.caltech.edu>
3410         * lib/autotest/general.m4 (_AT_CHECK) [--trace]: Do not enable shell
3411         tracing on commands with possibly-escaped newlines.
3412         * doc/autoconf.texi (Writing testsuite.at): Delete documentation of the
3413         discontinued behavior and its implications.
3414         * tests/autotest.at (BS-newline in command, ^BS-newline in command)
3415         (BSx641-newline in command, BS-BS-newline in command)
3416         (BSx640-newline in command, Newline-CODE-BS-newline in command)
3417         (Single-quote-BS-newline in command)
3418         (Single-quote-newline-BS-newline in command): New tests.
3420 2004-12-13  Stepan Kasal  <kasal@ucw.cz>
3422         * lib/m4sugar/m4sh.m4 (AS_EXECUTABLE_P): Use test -f && test -x
3423           on platforms where it works.
3424         (_AS_TEST_PREPARE): Test for ``test -x''.
3425         (_AS_BROKEN_TEST_PREPARE): Nuke.
3427 2004-12-13  Stepan Kasal  <kasal@ucw.cz>
3429         * lib/m4sugar/m4sh.m4 (AS_TMPDIR): Move the trap commands ...
3430         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): ... here;
3431           give only 4-letter prefix to AS_TMPDIR, comment fixed.
3432         * lib/autoconf/programs.m4 (_AC_PATH_PROG_FEATURE_CHECK): Don't
3433           create the temporary directory.
3434         (_AC_FEATURE_CHECK_LENGTH): Work in current directory.
3436 2004-12-12  Kelley Cook  <kcook@gcc.gnu.org>
3438         * bin/autoheader.in: Exit if no AC_CONFIG_HEADERS was found.
3439         (trivial change)
3441 2004-12-12  Alexandre Duret-Lutz  <adl@gnu.org>
3443         * doc/autoconf.texi (Limitations of Usual Tools) <expr (:)>: Typo.
3445 2004-12-11  Noah Misch  <noah@cs.caltech.edu>
3447         * lib/autotest/general.m4 (_AT_CHECK) [--trace]: Rework a shell pattern
3448         to avoid using a negated character class.  Reported by Nicolas Joly.
3449         * tests/local.at (AT_CHECK_SHELL_SYNTAX): Check for similar constructs.
3451 2004-12-10  Paul Eggert  <eggert@cs.ucla.edu>
3453         * man/Makefile.am (autoconf.1, autoheader.1, autom4te.1, autoreconf.1,
3454         autoscan.1, autoupdate.1, ifnames.1, config.guess.1, config.sub.1):
3455         Don't depend on .x file explicitly, since "make" does that for us.
3456         Suggested by Stepan Kasal.
3458         * bin/Makefile.am (MOSTLYCLEANFILES): Renamed from CLEANFILES.
3459         Add *.tmp.
3460         (autoconf, autoheader, autom4te, autoreconf, autoscan, autoupdate,
3461         ifnames): Factor common code.  And they said it couldn't be done!
3463 2004-12-09  Paul Eggert  <eggert@cs.ucla.edu>
3465         * bin/.cvsignore: Add autoconf.in.
3466         * tests/.cvsignore: Add wrapper.in.
3467         * lib/autotest/general.m4: Escape '$' in case pattern.
3469 2004-12-09  Noah Misch  <noah@cs.caltech.edu>
3471         * man/Makefile.am (autoconf.1): Regenerate when `autoconf.as' changes.
3473         * lib/autotest/general.m4 [--trace] (AT_INIT): Do not `set -v'.
3475         * tests/autotest.at: New file.
3476         * tests/suite.at: Include it.
3477         * tests/Makefile.am: Distribute it.
3479         * lib/autotest/general.m4 [--trace] (_AT_CHECK): Do not enable
3480           shell tracing on a command that could contain multiple lines.
3481         * doc/autoconf.text: Document that fact and its implications.
3482         * lib/m4sugar/m4sh.m4 (AS_ESCAPE_FOR_EXPAND): New macro.
3483         * tests/autotest.at (Multiline backquote command substitution,
3484           Multiline parameter expansion, Literal multiline command,
3485           Multiline parenthetical command substitution): Remove XFAIL.
3487 2004-12-09  Paul Eggert  <eggert@cs.ucla.edu>
3489         * doc/autoconf.texi (Libraries): Clarify problems with AC_CHECK_LIB
3490         and suggest AC_SEARCH_LIBS.  Suggested by Noah Misch and Stepan Kasal.
3492 2004-12-08  Noah Misch  <noah@cs.caltech.edu>
3494         * configure.ac (test suite): Cease to generate wrapper scripts.
3495         * configure: Regenerate.
3496         * lib/freeze.mk (MY_AUTOM4TE): Wrap the uninstalled autom4te directly.
3497         (m4f_dependencies): Adjust accordingly.
3498         * tests/Makefile.am (Wrappers): Generate wrapper scripts.
3499         (wrapper.in): Generate it in the build directory.
3500         (MAINTAINERCLEANFILES): Delete wrapper.in.
3501         (CLEANFILES): Add wrapper.in.
3502         * tests/wrapper.as: Move AS_INIT to very top, preserving copyright in
3503         the output.  Replace each $as_me with a @wrap_program@.
3504         * tests/wrapper.in: Delete it; we always build it.
3506         * bin/Makefile.am (autoconf.in): Generate it in the build directory.
3507         (EXTRA_DIST): Remove autoconf.in.
3508         (CLEANFILES): Add autoconf.in.
3509         (autoconf): Find autoconf.in in the build directory.
3510         * bin/autoconf.in: Delete it; we always build it.
3512 2004-12-08  Noah Misch  <noah@cs.caltech.edu>
3514         * lib/autotest/general.m4 (AT_INIT): Replace a `tr' with a `sed'.  Join
3515         PATH members so as to not prepend an empty element.  Move a comment.
3516         * Makefile.am (SUBDIRS): Build in `tests' last.
3517         * tests/Makefile.am (installcheck-local): Add check-local dependencies.
3519 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
3521         * lib/mdate-sh: Don't use "set - x`$ls_command /`", as zsh mishandles
3522         the spaces inside $ls_command.  Problem reported by Loulou Pouchet in
3523         <http://lists.gnu.org/archive/html/autoconf/2004-12/msg00074.html>.
3524         Don't use "set - x"; plain "set x" is enough, and simplifies debugging.
3526 2004-12-07  Stepan Kasal  <kasal@ucw.cz>
3528         * lib/autoconf/functions.m4 (AC_FUNC_GETMNTENT): Fix typo in previous
3529         patch: extra "-l"s.
3531 2004-12-06  Paul Eggert  <eggert@cs.ucla.edu>
3533         * lib/autoconf/functions.m4 (AC_FUNC_GETMNTENT): Check libc before
3534         looking elsewhere for getmntent.  Problem reported by Mark D. Baushke.
3535         * doc/autoconf.texi (Particular Functions): Mention new behavior.
3537 2004-12-03  Stepan Kasal  <kasal@ucw.cz>
3539         * lib/autoconf/general.m4 (AC_DEFINE, AC_DEFINE_UNQUOTED): Factor
3540           out the common code to ...
3541         (_AC_DEFINE_Q): ... a new macro; simplify the condition about the
3542           value of the #define--default to 1, iff the macro was called
3543           with exactly one parameter.
3545 2004-12-02  Paul Eggert  <eggert@cs.ucla.edu>
3547         * lib/autoconf/functions.m4 (AC_FUNC_MEMCMP): Use
3548         "char c = '\200';" rather than "char c = 0x80;" as the
3549         latter doesn't conform to the strict C standard due to
3550         overflow on signed char hosts.
3552         * lib/autoconf/c.m4 (_AC_PROG_CC_STDC): Prefer -qlanglvl=extc89
3553         to -qlanglvl=ansi.  We don't want to disable extensions.
3555 2004-11-29  Paul Eggert  <eggert@cs.ucla.edu>
3557         * doc/autoconf.texi (Particular Programs): @code{$PATH} -> @env{PATH}.
3558         (Using Autotest, testsuite Scripts, Writing testsuite.at):
3559         Reword slightly to avoid some English-language problems noted
3560         by Ralf Wildenhues in:
3561         http://lists.gnu.org/archive/html/autoconf-patches/2004-11/msg00027.html
3563 2004-11-29  Stepan Kasal  <kasal@ucw.cz>
3565         * NEWS: Add ^L above each release.
3567 2004-11-28  Paul Eggert  <eggert@cs.ucla.edu>
3569         Fix documentation problems reported by Russ Boylan in
3570         <http://lists.gnu.org/archive/html/bug-autoconf/2004-11/msg00056.html>,
3571         along with some nearby cruft.
3572         * doc/autoconf.texi (Libtool): Libtool can be used without
3573         Automake (not without Autoconf).
3574         (Introduction): Mention lists.gnu.org.
3575         * BUGS: Don't mention bugs.gnu.org.
3576         Remove mention of ancient libtool compatibility problem.
3577         * NEWS: Mention that bugs.gnu.org is kaput.
3578         * README: Likewise.  Mention where mailing list archives can be found.
3580 2004-11-28  Stepan Kasal  <kasal@ucw.cz>
3582         * HACKING: Refer to "coreutils", not "File, Shell or Text utils".
3583         * lib/m4sugar/m4sh.m4 (AS_HELP_STRING): A typo in the comment.
3585 2004-11-26  Paul Eggert  <eggert@cs.ucla.edu>
3587         * doc/autoconf.texi (Pretty Help Strings): Go back to
3588         single-quoting assignments to cache variables.
3590 2004-11-23  Stepan Kasal  <kasal@ucw.cz>
3592         * doc/autoconf.texi (Pretty Help Strings): Fix quoting issues
3593         with the examples; fix the bug in MY_ARG_WITH example reported
3594         by Alexandre Duret-Lutz.
3595         * lib/autoconf/general.m4 (AC_ARG_ENABLE, AC_ARG_ENABLE): Enable
3596         expansion of $1 in the comment emitted to configure.
3598 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
3600         * doc/autoconf.texi (Pretty Help Strings): Fix typo
3601         in my editing of the previous patch.  Problem reported
3602         by Alexandre Duret-Lutz.
3604 2004-11-22  Stepan Kasal  <kasal@ucw.cz>
3606         * doc/autoconf.texi (Autoconf Language): Explain that
3607         ``descriptions'' may not be double quotes.
3608         (Quotation Rule Of Thumb): Likewise.
3609         (Pretty Help Strings): Likewise; remove the wrong comment;
3610         simplify the examples and improve their quoting.
3612 2004-11-13  Stepan Kasal  <kasal@ucw.cz>
3614         * lib/autoconf/programs.m4 (_AC_FEATURE_CHECK_LENGTH): Don't check
3615         the $1_found variable, don't test whether the file is executable;
3616         Both things are checked ...
3617         (_AC_PATH_PROG_FEATURE_CHECK): ... here; AS_EXECUTABLE_P replaces
3618         the former ``test -f''.
3619         * lib/m4sugar/m4sh.m4 (_AS_TEST_PREPARE): Fix a typo.
3621 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
3623         * doc/autoconf.texi (Limitations of Usual Tools): Avoid cp -r;
3624         use cp -R instead.
3626 2004-11-10  Derek R. Price  <derek@ximbiot.com>
3628         * doc/autoconf.texi (Limitations of Usual Tools): Note `cp -r'
3629         limitations.  Reorder paragraphs for clarity.
3631 2004-10-11  Paul Eggert  <eggert@cs.ucla.edu>
3633         * doc/autoconf.texi: Standardize spelling of "Posix" (as opposed
3634         to "POSIX" or "@acronym{POSIX}"), and similarly for "DOS
3635         variants", "Unix", and some related minor wording fixups.
3637         (Shellology, Special Shell Variables): Document that the Zsh
3638         problem with NULLCMD was fixed in zsh 3.1.6-dev-18.  Thanks
3639         to Alexandre Duret-Lutz for this info.
3641 2004-10-10  Alexandre Duret-Lutz  <adl@gnu.org>
3643         * doc/autoconf.texi (One-Shot Macros): New node.
3645 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
3647         * doc/autoconf.texi (Function Portability): Fix misdescription
3648         of putenv.  Problem reported by Michael Wardle.
3650 2004-09-22  Paul Eggert  <eggert@cs.ucla.edu>
3652         * doc/autoconf.texi (auindex): New macro.
3653         (AU_DEFUN): Use it to fix the bug when the index contained AC_AU_DEFUN.
3654         Problem reported by Stepan Kasal.
3656 2004-09-05  Paul Eggert  <eggert@cs.ucla.edu>
3658         Fix problems reported by Andreas Buening in:
3659         http://lists.gnu.org/archive/html/autoconf-patches/2004-04/msg00004.html
3660         * lib/autoconf/programs.m4 (AC_PROG_MAKE_SET): Set SHELL=/bin/sh
3661         in test makefile.
3662         * lib/autotest/general.m4 (AT_INIT): Don't assume /dev/null is
3663         readable; it's not true in OS/2-emx.
3665 2004-09-04  Paul Eggert  <eggert@cs.ucla.edu>
3667         * lib/autoconf/libs.m4 (_AC_PATH_X_XMKMF): If xmkmf returns
3668         "/usr/include", clear ac_x_includes instead of leaving it as "no"
3669         (trivial change).  Problem and patch reported by Andrew Church in:
3670         http://lists.gnu.org/archive/html/bug-autoconf/2004-04/msg00016.html
3672 2004-09-03  Paul Eggert  <eggert@cs.ucla.edu>
3674         * doc/autoconf.texi: Give AC_DEFINE and AC_DEFINE_UNQUOTED
3675         three args in examples.  Problem reported by Frederik Fouvry in:
3676         http://lists.gnu.org/archive/html/bug-autoconf/2004-09/msg00017.html
3677         Also, fix some minor spacing and punctuation bugs.
3679 2004-09-02  Akim Demaille  <akim@epita.fr>
3681         * doc/autoconf.texi (Limitations of Builtins): Swap "cd" and
3682         "case" to restore ordering.
3683         Reported by Stepan Kasal.
3685 2004-08-26  Akim Demaille  <akim@epita.fr>
3687         * doc/autoconf.texi: Minor typos and stylos.
3689 2004-08-20  Paul Eggert  <eggert@cs.ucla.edu>
3691         * configure.ac (AC_INIT): Bump to 2.59c.
3693 2004-08-20  Paul Eggert  <eggert@cs.ucla.edu>
3695         Version 2.59b.
3697         * README: Add advice about m4 1.4.2.
3699         * Makefile.cfg (wget_files): Remove config.guess, config.sub,
3700         texinfo.tex for now (done by hand now).
3701         * Makefile.maint (wget_files, cvs_files):
3702         Remove ansi2knr.c; nobody uses it.
3703         (ansi2knr.c-url_prefix): Remove.
3704         (cvs-update): Fix test for failure.  I don't know why it ever
3705         worked...
3707         * doc/autoconf.texi: Update URLs, some of which went stale.
3708         Use @uref rather than @href.
3710         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ARGS): Have configure
3711         handle "--" as per POSIX.  Suggested by Paul Pogonyshev.
3713         * config/config.guess, config/config.sub, config/elisp-comp,
3714         config/install-sh, config/mkinstalldirs, config/texinfo.tex,
3715         doc/fdl.texi, doc/standards.texi: Sync with master copy.
3717         * NEWS, TODO, configure.ac, bin/autoscan.in,
3718         bin/autoupdate.in, bin/ifnames.in, doc/autoconf.texi,
3719         doc/install.texi, lib/Autom4te/Configure_ac.pm,
3720         lib/Autom4te/FileUtils.pm, lib/autoconf/general.m4,
3721         lib/autoconf/programs.m4, lib/autoconf/status.m4,
3722         lib/autotest/general.m4, lib/m4sugar/m4sh.m4,
3723         lib/m4sugar/m4sugar.m4, tests/local.at, tests/m4sh.at,
3724         tests/tools.at, tests/torture.at:
3725         Use "file name" rather than "filename" or "path",
3726         to be consistent with the terminology of the GNU coding standards.
3728 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
3730         * lib/autoconf/c.m4 (AC_LANG_BOOL_COMPILE_TRY(C),
3731         AC_C_LONG_DOUBLE): Undo 2004-06-04 change, as it didn't work with
3732         HP-UX 11.23 cc/aCC or Tru64 4.0 cc.  Problem reported by Noah Misch in
3733         <http://lists.gnu.org/archive/html/autoconf/2004-07/msg00004.html>.
3735         More fixes to support spaces in the name of the build directory.
3736         This isn't a complete fix but it's an improvement.
3738         * bin/autoconf.as (autom4te_options): New var.
3739         Use it instead of appending to AUTOM4TE, so that we can allow
3740         spaces in the build directory's absolute name.
3741         * bin/autoheader.in ($autoconf): Allow spaces in file names.
3742         * lib/autotest/general.m4 (AT_INIT, AT_CLEANUP, _AT_CHECK,
3743         AT_CHECK_NOESCAPE): Likewise.
3744         * tests/wrapper.as (testdir, AUTOM4TE_CFG, autom4te_perllibdir,
3745         main program): Likewise.
3747 2004-08-18  Paul Eggert  <eggert@cs.ucla.edu>
3749         * lib/autoconf/general.m4 (_AC_INIT_HELP): Quote $ac_popdir uses.
3750         From Ralf Corsepius in:
3751         http://lists.gnu.org/archive/html/autoconf-patches/2004-08/msg00014.html
3753 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
3755         * doc/autoconf.texi (Function Portability): Document isinf and
3756         and isnan.  From a suggestion by Kevin Ryde.
3758         * lib/Autom4te/General.pm (END): Return correct exit status even
3759         if unlink succeeds and sets $?.  Needed with Solaris 8's perl 5.00503.
3761 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
3763         * tests/torture.at (Deep Package): Use configure.in, not configure.ac,
3764         for compatibility with Automake 1.4.  Reported by J C Fitzgerald in
3765         <http://lists.gnu.org/archive/html/bug-autoconf/2003-08/msg00051.html>.
3767 2004-08-04  Alexandre Duret-Lutz  <adl@gnu.org>
3769         * lib/autoconf/general.m4 (AC_REQUIRE_AUX_FILE): New empty macro.
3770         (AC_CANONICAL_BUILD): Call it to require config.sub and config.guess.
3771         * lib/autoconf/programs.m4 (AC_PROG_INSTALL): Likewise for install-sh.
3772         * doc/autoconf.texi (Input): Document AC_REQUIRE_AUX_FILE.
3773         * lib/autom4te.in (Automake-preselections): Preselect
3774         AC_REQUIRE_AUX_FILE.  Automake 1.10 will trace it.
3776 2004-08-02  Alexandre Duret-Lutz  <adl@gnu.org>
3778         * lib/autom4te.in (Automake-preselections): Preselect
3779         AC_CANONICAL_BUILD and AC_CANONICAL_TARGET.  Automake 1.9.1 will
3780         trace them.
3782 2004-07-29  Paul Eggert  <eggert@cs.ucla.edu>
3784         * lib/m4sugar/m4sh.m4 (_AS_BOURNE_COMPATIBLE): Set BIN_SH, for
3785         Tru64.
3786         * doc/autoconf.texi (Shellology): Mention BIN_SH.
3787         Document problem with "`""`" in pdksh POSIX mode.
3789 2004-07-27  Paul Eggert  <eggert@cs.ucla.edu>
3791         * lib/m4sugar/m4sh.m4 (_AS_BOURNE_COMPATIBLE): Use "set -o posix"
3792         with pdksh, too.  Problem reported by Patrick Welche via
3793         Gary V. Vaughan.
3794         * doc/autoconf.texi (Shellology): Note that set -o posix is
3795         useful for pkdsh, too.
3797 2004-06-24  Paul Eggert  <eggert@cs.ucla.edu>
3799         * lib/m4sugar/m4sh.m4 (_AS_DETECT_BETTER_SHELL): Require
3800         _AS_UNSET_PREPARE, so that we can use $as_unset directly.
3801         Don't fail if ENV or BASH_ENV is readonly.
3802         (AS_SHELL_SANITIZE): Don't fail if ENV, MAIL, MAILPATH, LC_ALL,
3803         etc. are read only.  Problem reported by Ludovic Courtes.
3805 2004-06-23  Noah Misch  <noah@cs.caltech.edu>
3807         * lib/m4sugar/m4sh.m4 (_AS_BOURNE_COMPATIBLE): If the shell is
3808         zsh, disable GLOB_SUBST to avoid backslash handling problems.
3809         (trivial change)
3811 2004-06-04  Paul Eggert  <eggert@cs.ucla.edu>
3813         * doc/autoconf.texi (File System Conventions): Warn about
3814         names like "aux".  Problem reported by Eric Blake.
3816         * lib/autoconf/c.m4 (AC_LANG_BOOL_COMPILE_TRY (C)): Use division
3817         by zero instead of array size, so that we can use any arithmetic
3818         constant expression (instead of requiring an integer constant
3819         expression).  This allows us to test expressions like DBL_MAX <
3820         LDBL_MAX, which didn't conform to the C standard using the old
3821         method.
3822         (AC_C_LONG_DOUBLE): Put back in the tests for LDBL_MAX and LDBL_EPSILON,
3823         now that we can do floating-point tests at compile time.
3825 2004-06-02  Paul Eggert  <eggert@cs.ucla.edu>
3827         * lib/autoconf/c.m4 (AC_C_LONG_DOUBLE): Don't check LDBL_MAX
3828         and LDBL_EPSILON, as the resulting expression isn't an
3829         integer constant expression and violates the C standard.
3830         Problem reported by Nelson H. F. Beebe.  Also, check
3831         for "L" suffix, and check that long double doesn't have
3832         worse range or precision than double, that mixed-mode
3833         arithmetic doesn't generate a diagnostic, that double
3834         constants fit in long double.
3836 2004-06-03  Kevin Ryde  <user42@zip.com.au>
3838         * doc/autoconf.texi (Function Portability): Add notes on free(NULL),
3839         malloc(0) and realloc(NULL,size).
3841         * doc/autoconf.texi (Shell Substitutions): Spelling error reported by
3842         Bob Proulx.
3844 2004-05-31  Paul Eggert  <eggert@cs.ucla.edu>
3846         * lib/autoconf/headers.m4 (HAVE_STDBOOL_H): Detect _Bool bug
3847         in HP aC++/ANSI C B3910B A.05.55 [Dec 04 2003].  Problem reported
3848         by Jim Meyering.
3850 2004-05-26  Paul Eggert  <eggert@cs.ucla.edu>
3852         * doc/autoconf.texi (Limitations of Builtins): Mention that ! COMMAND
3853         can be rewritten using if-then-else.  Suggested by Bruno Haible.
3855 2004-05-25  Paul Eggert  <eggert@cs.ucla.edu>
3857         * doc/autoconf.texi (testsuite Scripts): Fix typo.
3858         Problem reported by Stepan Kasal.
3860 2004-05-24  Paul Eggert  <eggert@cs.ucla.edu>
3862         * tests/Makefile.am (autoconfdir): Fix to match comment (trivial
3863         change).  Patch reported by Ralf Wildenhues in
3864         <http://mail.gnu.org/archive/html/bug-autoconf/2004-05/msg00092.html>.
3866         * lib/autoconf/functions.m4 (AC_FUNC_MBRTOWC): Don't assume that a
3867         function F exists if the compiler and linker let you compile an
3868         expression like (F != 0).  Recent versions of GCC optimize away
3869         the reference to F in that case, since every function address must
3870         be nonzero, so the link succeeds even if F does not exist.
3871         Problem reported by Manu in
3872         <http://mail.gnu.org/archive/html/bug-gnu-utils/2004-05/msg00060.html>.
3874         * doc/autoconf.texi (Systemology): Standardize on the spelling of
3875         "Unix".  Many uses changed.
3876         (Limitations of Builtins): Explain better why the ! command isn't
3877         portable.
3879 2004-05-22  Alexandre Duret-Lutz  <adl@gnu.org>
3881         * lib/autom4te.in (Automake-preselections): Preselect
3882         LT_SUPPORTED_TAG in lieu of AC_LIBTOOL_TAGS.
3884 2004-05-19  Kevin Ryde  <user42@zip.com.au>
3886         * doc/autoconf.texi (Function Portability): Add strerror_r, cross
3887         referencing AC_FUNC_STRERROR_R.
3889         * doc/autoconf.texi (Particular Functions): In AC_FUNC_CLOSEDIR_VOID,
3890         note pessimistic assumption when cross compiling.
3892 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
3894         * doc/autoconf.texi (Limitations of Make): Note that BSD make
3895         (until 2004) invoked subcommands with sh -e, contra POSIX.
3896         Reported by Kevin Ryde.
3898 2004-05-10  Eric Sunshine  <sunshine@sunshineco.com>
3900         * programs.m4 (_AC_PROG_GREP): Fixed bug where PATH argument handed to
3901         _AC_PATH_PROG_FEATURE_CHECK contained leading whitespace (i.e.
3902         "        $PATH:/usr/xpg4/bin"). This resulted in bogus tests, such as
3903         `test -f "        /usr/bin/grep"', which _always_ failed.
3904         (AC_PROG_SED): Ditto bogus PATH fix.
3905         * autoconf.texi (AC_PROG_GREP): Properly document that this macro
3906         requires that grep correctly supports _multiple_ `-e' options, rather
3907         than stating only that grep should accept `-e'.
3909 2004-05-03  Paul Eggert  <eggert@cs.ucla.edu>
3911         Port to C99, which requires that 'exit' be declared.
3913         * lib/autoconf/c.m4 (AC_C_BIGENDIAN): Use AC_INCLUDES_DEFAULT
3914         to ensure that stdlib.h is included.
3915         * lib/autoconf/functions.m4 (_AC_LIBOBJ_ALLOCA, AC_FUNC_SETPGRP,
3916         AC_FUNC_STRTOD, AC_FUNC_SETVBUF_REVERSED, AC_FUNC_FORK, _AC_FUNC_FORK,
3917         _AC_FUNC_VFORK, AC_FUNC_WAIT3): Likewise.
3918         * lib/autoconf/specific.m4 (AC_SYS_RESTARTABLE_SYSCALLS): Likewise.
3919         * lib/autoconf/types.m4 (AC_TYPE_GETGROUPS): Likewise.
3920         * lib/autoconf/headers.m4 (AC_HEADER_STDC): Include <stdlib.h>
3921         when using 'exit' in a test; C99 requires that 'exit' be declared.
3923 2004-05-02  Paul Eggert  <eggert@cs.ucla.edu>
3925         * doc/autoconf.texi (Particular Programs): AC_PROG_GREP
3926         now prefers 'grep' implementations that accept -e.
3927         (Limitations of Usual Tools): Describe problems of traditional
3928         egrep and fgrep with long input lines, and of traditional grep
3929         with -e.
3930         * lib/autoconf/programs.m4 (AC_PROG_GREP): Check for -e, too.
3931         (_AC_PROG_GREP): Assume 3rd arg is properly quoted for the shell.
3932         All callers changed.  Append /usr/xpg4/bin to the PATH, for
3933         Solaris.
3934         (_AC_FEATURE_CHECK_LENGTH): Discard stderr, so we don't bother
3935         the user with complaints about multiple -e options.
3936         * tests/local.at (AC_STATE_SAVE): Use $GREP, not grep.
3937         Define it with AC_PROG_GREP.
3938         * configure.ac (AC_PROG_GREP): Add.
3939         * lib/freeze.mk (GREP): New macro.
3941 2004-05-02  Eric Sunshine  <sunshine@sunshineco.com>
3943         * lib/m4sugar/m4sh.m4 (_AS_DETECT_BETTER_SHELL): Consult $SHELL as
3944         a possible candidate only after all others fail, rather than
3945         consulting it first.  This improves backward compatibility by
3946         better reflecting the way shell selection occurred in previous
3947         versions of Autoconf, and should help to avoid triggering latent
3948         problems in other packages, such as the one in Automake where zsh
3949         is not handled robustly:
3950         http://mail.gnu.org/archive/html/automake/2004-04/msg00095.html
3951         Although it is not Autoconf's responsibility to work around
3952         problems in Automake, it nevertheless makes sense to avoid
3953         introducing unnecessary incompatibilites.
3955 2004-04-22  Albert Chin-A-Young  <china@thewrittenword.com>,
3956             Gary V. Vaughan  <gary@gnu.org>
3958         * lib/autoconf/programs.m4 (_AC_FEATURE_CHECK_LENGTH): Don't guess
3959         how deeply nested we are when a suitable tool is found, set the
3960         ac_path_TOOL_found flag.
3961         (_AC_PATH_PROG_FEATURE_CHECK): Encapsulate knowledge of how deeply
3962         nested we are in this macro.  Break out of all 3 nested loops if
3963         ac_path_TOOL_found is set.
3965 2004-04-21  Gary V. Vaughan  <gary@gnu.org>
3967         * lib/autoconf/programs.m4 (_AC_FEATURE_CHECK_LENGTH): Break out
3968         of the _AS_PATH_WALK loop too if GNU flavor is found.
3970 2004-04-21  Alexandre Duret-Lutz  <adl@gnu.org>
3972         * doc/autoconf.texi (Limitations of Make): Update documentation
3973         for `$<'.  New entry `Long lines', based on a report from Simon
3974         Josefsson.  Augment the documentation for SHELL = @SHELL@ with a
3975         paragraph about DJGPP, based on a mail from Richard Dawe.
3977 2004-04-20  Paul Eggert  <eggert@twinsun.com>
3979         * tests/c.at (C keywords): Don't assume that GCC supports
3980         "restrict" and "inline", as sufficiently-old GCC versions do not
3981         (also, GCC configured to be in pedantic C89 mode does not).
3982         Problem reported by Sumit Pandya in:
3983         http://mail.gnu.org/archive/html/autoconf/2004-04/msg00092.html
3985         * lib/autoconf/c.m4 (_AC_PROG_CC_G, _AC_PROG_CXX_G): Don't
3986         consider -g to work if it generates warnings when plain compiles
3987         don't.  Problem reported by Braden McDaniel in:
3988         http://mail.gnu.org/archive/html/autoconf-patches/2003-07/msg00014.html
3990         * doc/autoconf.texi (Slashes): New section, to document a problem
3991         reported by Jim Meyering in:
3992         http://mail.gnu.org/archive/html/bug-coreutils/2004-02/msg00060.html
3994         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Remove potential
3995         linker output files before linking, to work around IRIX 6 linker bug.
3996         Problem reported by Rainer Orth in:
3997         http://mail.gnu.org/archive/html/autoconf-patches/2004-02/msg00007.html
3999 2004-04-20  Gary V. Vaughan  <gary@gnu.org>
4001         * lib/autoconf/programs.m4 (_AC_FEATURE_CHECK_LENGTH): Make the
4002         best tool so far counter rely on the tool path variable name to
4003         avoid checks for one tool being affected by the results of running
4004         the length check on a previous tool.
4006         * lib/autoconf/programs.m4 (_AC_PROG_GREP): Take an additional
4007         match expression argument, as different greps have different
4008         regular expression flavours.
4009         (AC_PROG_FGREP): Pass 'FGREP'. fgrep treats all match chars as
4010         literals.
4011         (AC_PROG_EGREP): Pass 'EGREP$'.
4012         (AC_PROG_GREP): Pass 'GREP$'.
4014 2004-04-20  Albert Chin-A-Young  <china@thewrittenword.com>
4016         * lib/autoconf/programs.m4 (AC_PROG_GREP): Cache variable
4017         is `ac_cv_path_GREP', not `oc_cv_path_GREP'.
4019 2004-03-29  Paul Eggert  <eggert@twinsun.com>
4021         * doc/autoconf.texi (Particular Headers, Particular Types, Generic
4022         Types, Specific Compiler Characteristics, System Services,
4023         Obsolete Macros): Use 'long int', 'short int', 'unsigned int'
4024         etc. consistently instead of 'long', 'short', 'unsigned' etc.
4025         * lib/autoconf/c.m4 (AC_LANG_INT_SAVE(C), AC_C_BIGENDIAN): Likewise.
4026         * lib/autoconf/functions.m4 (AC_FUNC_MMAP, AC_FUNC_SELECT_ARGTYPES):
4027         Likewise.
4028         * lib/autoconf/headers.m4 (AC_HEADER_SYS_WAIT): Likewise.
4029         * lib/autoconf/types.m4 (AC_TYPE_GETGROUPS, AC_TYPE_SIZE_T,
4030         AC_TYPE_OFF_T): Likewise.
4031         * tests/semantics.at (AC_CHECK_TYPES: backward compatibility):
4032         Likewise.
4034         * tests/foreign.at (Libtool): Create an empty aclocal.m4, to
4035         pacify libtool 1.5.2.  Fix quoting problems in sed command.
4037 2004-03-28  Paul Eggert  <eggert@twinsun.com>
4039         * doc/autoconf.texi (Particular Structures): AC_STRUCT_TIMEZONE
4040         now defines HAVE_DECL_TZNAME if it is declared, when
4041         HAVE_STRUCT_TM_TM_ZONE is not defined.
4042         * lib/autoconf/types.m4 (AC_STRUCT_TIMEZONE): Implement this.
4043         Do not assume atoi.  Rely on HAVE_DECL_TZNAME when testing
4044         for HAVE_TZNAME.
4046 2004-03-28  Steven G. Johnson  <stevenj@fftw.org>
4048         * lib/autoconf/fortran.m4 (_AC_PROG_FC_V_OUTPUT): Corrected
4049         superfluous backslashing of quotes (") in sed expressions;
4050         thanks to Paul Eggert.
4052 2004-03-26  Steven G. Johnson  <stevenj@alum.mit.edu>
4054         * lib/autoconf/fortran.m4 (_AC_PROG_FC): new name of Intel
4055         Fortran compiler is ifort, also added pghpf; thanks to Nelson
4056         H. F. Beebe for the bug report.
4058 2004-03-26  Steven G. Johnson  <stevenj@fftw.org>
4060         * lib/autoconf/fortran.m4 (_AC_PROG_FC_V_OUTPUT): fix for
4061         quoted -cmdline argument in Portland Group compiler (bug
4062         reported by Jeffrey J. Barteet).
4064 2004-03-25  Kevin Ryde  <user42@zip.com.au>
4066         * doc/autoconf.texi (Specifying Names): Move cross_compiling ovindex to
4067         (Run Time): ... here, where it's now mentioned.
4069 2004-03-19  Alexandre Duret-Lutz  <adl@gnu.org>
4071         * doc/autoconf.texi (autom4te Invocation): Language Autoconf
4072         inherits from language Autoconf-without-aclocal-m4.
4073         (Customizing autom4te): Adjust example; the cache must now be
4074         disabled for language Autoconf-without-aclocal-m4.
4076 2004-03-16  Paolo Bonzini  <bonzini@gnu.org>
4077             Nathanael Nerode  <neroden@twcny.rr.com>
4079         * lib/autoconf/programs.m4 (AC_PATH_TOOL, AC_CHECK_TOOL,
4080         AC_CHECK_TOOLS): Warn if a cross-tool is found without
4081         a prefix.
4082         (AC_PATH_TARGET_TOOL, AC_CHECK_TARGET_TOOL,
4083         AC_CHECK_TARGET_TOOLS): New macros.
4084         * doc/autoconf.texi (Generic Programs): Document
4085         (AC_PATH_TARGET_TOOL, AC_CHECK_TARGET_TOOL,
4086         AC_CHECK_TARGET_TOOLS, and warn for future changes
4087         in the behavior of AC_PATH_TOOL, AC_CHECK_TOOL and
4088         AC_CHECK_TOOLS.
4089         (Specifying Names): Document the reason for these future
4090         behavioral changes.
4091         * tests/mktests.sh: Do not generate tests for the
4092         new macros.
4093         * NEWS: Document these changes.
4095         * doc/autoconf.texi: Avoid macros with unbraced arguments,
4096         they make TeX hang up.
4098 2004-03-15  Paul Eggert  <eggert@bogus.example.com>
4100         * NEWS: New macro AC_CHECK_ALIGNOF.
4101         * doc/autoconf.texi (Generic Compiler Characteristics): Document it.
4102         * lib/autoconf/types.m4 (AC_CHECK_SIZEOF): Use long int rather than
4103         int; avoid "a `$1'" since this isn't grammatical if $1 begins with a
4104         vowel.
4105         (AC_CHECK_ALIGNOF): New macro.
4106         * tests/mktests.sh (ac_exclude_list): Exclude AC_CHECK_ALIGNOF.
4107         * tests/semantics.at (AC_CHECK_ALIGNOF): Add tests similar to
4108         those for sizeof.
4110 2004-03-03  Paul Eggert  <eggert@twinsun.com>
4112         * bin/Makefile.am (edit): Don't use $< in a context where
4113         POSIX doesn't require support for it.  Use $@.in instead.
4114         Problem reported by Anthony N. Frasso in
4115         <http://mail.gnu.org/archive/html/autoconf/2004-03/msg00008.html>.
4116         * bin/autoscan.in, bin/autoupdate.in: Add @configure_input@ comment.
4118 2004-02-23  Gary V. Vaughan  <gary@gnu.org>
4120         * bin/autoreconf.in (autoreconf_current_directory): Recognize LT_INIT
4121         from the next generation of Libtool.
4122         * lib/autom4te.in (Autoreconf-preselections): Ditto.
4124 2004-02-20  Alexandre Duret-Lutz  <adl@gnu.org>
4126         * doc/autoconf.texi (Limitations of Usual Tools) <mkdir>: `mkdir -p'
4127         is not always thread-safe.  Report from Nathanael Nerode.
4129 2004-02-18  Paul Eggert  <eggert@twinsun.com>
4131         Fix a dependencies problem, stemming from a Autoconf 2.59 build
4132         problem on QNX reported by Stephen Rasku in
4133         <http://mail.gnu.org/archive/html/bug-autoconf/2004-02/msg00066.html>.
4135         * bin/Makefile.am ($(srcdir)/autoconf.in): Depend on
4136         $(m4sh_m4f_dependencies); this removes a FIXME.
4137         * tests/Makefile.am ($(srcdir)/wrapper.in): Likewise.
4138         (MAINTAINERCLEANFILES): Split into pieces,
4139         one per related section.  Add $(srcdir)/wrapper.in.
4141 2004-02-09  Paul Eggert  <eggert@twinsun.com>
4143         * doc/autoconf.texi (Setting Output Variables): Emphasize that
4144         AC_SUBST provides no portable way to escape literal newlines.
4146         * lib/autoconf/fortran.m4 (_AC_FC_LIBRARY_LDFLAGS): Ignore all
4147         flags of the form -lcrt*.o, not just -lcrt[01].o and -lcrtbegin.o.
4148         Darwin uses -lcrt2.o and there's little point to cataloging all
4149         the system variants.  Partial fix reported by Andreas Waechter in:
4150         http://mail.gnu.org/archive/html/autoconf-patches/2004-02/msg00006.html
4151         for bug reported by Nelson H. F. Beebe in:
4152         http://mail.gnu.org/archive/html/bug-autoconf/2003-12/msg00090.html
4154 2004-02-04  Paolo Bonzini  <bonzini@gnu.org>
4156         * doc/autoconf.texi (AU_DEFUN): Fix English,
4157         suggested by Paul Eggert.
4158         * lib/autoconf/autoupdate.m4: Correct reference to
4159         acobsolete.m4, suggested by Alexandre Duret-Lutz.
4161 2004-02-02  Paolo Bonzini  <bonzini@gnu.org>
4163         * bin/autoupdate.in: Define __file__ so that warnings
4164         refer to the correct file.
4165         * doc/autoconf.texi (AU_DEFUN): Describe more correctly
4166         the behavior of the third argument.
4167         * lib/autoconf/autoupdate.m4 (AU_DEFUN): Describe more
4168         correctly the behavior of the third argument.  Document
4169         what the three macros that AU_DEFUN defines do.  Fix
4170         warning message when the third argument includes $0
4171         (reported by Alexandre Duret-Lutz).
4173 2004-01-30  Paolo Bonzini  <bonzini@gnu.org>
4174             Eric Sunshine  <sunshine@sunshineco.com>
4175             Paul Eggert  <eggert@twinsun.com>
4177         * lib/m4sugar/m4sh.m4 (M4SH-SANITIZE): New diversion.
4178         (AS_INIT): Output shell initialization there. Removed optional
4179         parameter. Expand _AS_SHELL_FN_SPY.
4180         (AS_INIT_WITH_SHELL_FN): Removed.
4181         (_AS_SHELL_FN_SPY): New macro.
4182         (AS_DETECT_REQUIRED, AS_DETECT_SUGGESTED): New
4183         macros.
4184         (AS_SHELL_SANITIZE): Remove loop to find better shell
4185         and documentation for the parameter.
4186         (_AS_DETECT_BETTER_SHELL): Move it here.
4187         (_AS_SHELL_FN_WORK): Remove shell invocation, reformat.
4188         (_AS_RUN): Move it here, support testing with eval.
4189         (AS_REQUIRE_SHELL_FN): Require shell functions when
4190         it is used.
4191         (_AS_LINENO_WORKS): Put around braces, we do not
4192         trigger the bash bug anymore.
4193         * lib/autotest/general.m4: Document M4SH-SANITIZE, do not
4194         use AS_INIT_WITH_SHELL_FN.
4195         * bin/autoconf.in, tests/wrapper.in: Regenerated.
4197 2004-01-30  Paolo Bonzini  <bonzini@gnu.org>
4199         * bin/autoupdate.in: Trace AU_DEFINE instead of AU_DEFUN.
4200         * doc/autoconf.texi: Don't say that the third parameter
4201         is broken.
4202         * lib/autoconf/autoupdate.m4 (AU_DEFINE): New dummy macro.
4203         (AU_DEFUN): Honor the third parameter, create autoupdate
4204         macros with AU_DEFINE.
4205         * lib/autoconf/headers.m4 (AC_USG, AC_MEMORY_H,
4206         AC_DIR_HEADER): Use AU_DEFUN's third parameter.
4207         * lib/autoconf/lang.m4 (AC_LANG_SAVE): Likewise.
4208         * lib/autoconf/programs.m4 (AC_RSH): Likewise.
4209         * lib/autoconf/specific.m4 (AC_HAVE_POUNDBANG,
4210         AC_ARG_ARRAY, AC_CYGWIN, AC_EMXOS2, AC_MINGW32,
4211         AC_XENIX_DIR): Likewise.
4212         * lib/autoconf/types.m4 (AC_INT_16_BITS, AC_LONG_64_BITS,
4213         AC_STRUCT_ST_BLKSIZE, AC_STRUCT_ST_RDEV): Likewise.
4214         * lib/autoconf/status.m4: Remove FIXME.
4215         * tests/local.at (AT_CHECK_AU_MACRO): Ignore stderr, check
4216         that the macro is not present anymore in the updated
4217         configure.ac.
4218         * tests/tools.at (autoupdate AC_LINK_FILES): Ignore stderr
4219         of autoupdate.
4221 2004-01-28  Paul Eggert  <eggert@twinsun.com>
4223         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): Add 2004 to
4224         copyright years.
4225         * lib/autoconf/general.m4 (_AC_INIT_COPYRIGHT): Add 1992 thorugh
4226         2003 (except 1997) to the list of copyright years.  This undoes
4227         the 2003-05-22 change, which removed the older years from the list.
4228         * lib/autoconf/status.m4 (AC_OUTPUT): Update copyright date to 2004.
4230 2004-01-27  Gary V. Vaughan  <gary@gnu.org>
4231             Albert Chin-A-Young  <china@thewrittenword.com>
4233         * lib/autoconf/programs.m4 (AC_PROG_GREP): New macro to test for a
4234         grep or ggrep program in PATH that accepts as long lines as
4235         possible.
4236         * lib/autoconf/programs.m4 (_AC_PROG_GREP): Factor out the core of
4237         AC_PROG_GREP.
4238         (AC_PROG_EGREP, AC_PROG_FGREP): Use it to find best available
4239         egrep and fgrep respectively if $GREP -E/-F don't work.
4240         (_AC_PATH_PROG_FEATURE_CHECK): Factor out the common core of
4241         _AC_PROG_GREP, and AC_PROG_SED.
4242         (_AC_FEATURE_CHECK_LENGTH): New helper macro for finding the
4243         longest input length accepted by a command.
4244         (AC_PROG_SED): Use it.
4245         * doc/autoconf.texi (Particular Programs): Document the changes.
4246         * NEWS: Updated.
4248 2004-01-27  Paul Eggert  <eggert@twinsun.com>
4250         * bin/autoconf.as ($version): Update copyright from 2003 to 2004.
4251         * bin/autoheader.in, bin/autom4te.in, bin/autoreconf.in,
4252         bin/autoscan.in, bin/autoupdate.in, bin/ifnames.in: Likewise.
4253         * lib/autoconf/general.m4 (_AC_INIT_COPYRIGHT): Likewise.
4255         * Makefile.in, aclocal.m4, configure, bin/Makefile.in,
4256         bin/autoconf.in, config/Makefile.in, config/config.guess,
4257         config/config.sub, config/install-sh, config/mdate-sh,
4258         config/mkinstalldirs, config/texinfo.tex, doc/Makefile.in,
4259         lib/Makefile.in, lib/Autom4te/Makefile.in,
4260         lib/autoconf/Makefile.in, lib/autoscan/Makefile.in,
4261         lib/autotest/Makefile.in, lib/emacs/Makefile.in,
4262         lib/m4sugar/Makefile.in, man/Makefile.in, man/autoconf.1,
4263         man/autoheader.1, man/autom4te.1, man/autoreconf.1,
4264         man/autoscan.1, man/autoupdate.1, man/config.guess.1,
4265         man/config.sub.1, man/ifnames.1, tests/Makefile.in,
4266         tests/acc.at, tests/acfortran.at, tests/acfunctions.at,
4267         tests/acgeneral.at, tests/acheaders.at, tests/aclang.at,
4268         tests/aclibs.at, tests/acspecific.at, tests/acstatus.at,
4269         tests/actypes.at: Regenerate and/or sync with original
4270         sources.
4272 2004-01-26  Paul Eggert  <eggert@twinsun.com>
4274         * doc/autoconf.texi (Default Includes): Include <stdint.h> even if
4275         HAVE_INTTYPES_H is defined.  This is needed on Tru64 5.1b with
4276         Compac C V6.5-207 (dtk), which defines uintmax_t in <stdint.h> but
4277         not <inttypes.h>.  Problem reported by Tim Mooney in
4278         <http://mail.gnu.org/archive/html/bug-coreutils/2004-01/msg00147.html>.
4279         * lib/autoconf/headers.m4 (_AC_INCLUDES_DEFAULT_REQUIREMENTS):
4280         Likewise.
4282         * lib/autoconf/programs.m4 (AC_PROG_SED): Use diff, not sed;
4283         otherwise "make check" fails because it forbids cmp (I guess
4284         because cmp treats files as binary on DOS-like systems).
4286         * tests/mktests.sh: Update copyright date to 2004, since some tests
4287         have changed in 2004.
4289 2004-01-23  Gary V. Vaughan  <gary@gnu.org>
4291         * lib/autoconf/programs.m4 (AC_PROG_SED):  New macro to test for a
4292         non-truncating sed or gsed program in PATH.
4293         * tests/acprograms.at: Add it.
4294         * doc/autoconf.texi (Particular Programs): Document it.
4295         * NEWS: Updated.
4297 2004-01-15  Paul Eggert  <eggert@twinsun.com>
4299         * lib/autoconf/c.m4 (_AC_PROG_CC_STDC): Try -std, not -std1, since
4300         -std1 disables some useful extensions on Tru64.  Problem reported
4301         by N. Lichtmaier in
4302         <http://mail.gnu.org/archive/html/autoconf/2004-01/msg00100.html>.
4304 2004-01-14  Paul Eggert  <eggert@twinsun.com>
4306         * doc/autoconf.texi (Programming in M4sh): Document that
4307         AS_MKDIR_P succeeds if the destination is a symbolic link
4308         to an existing directory.
4309         (Limitations of Usual Tools): Note that mkdir -p might not
4310         succeed on symlinks to directories.
4312 2004-01-13  Paul Hilfinger  <hilfinger@CS.Berkeley.EDU>
4314         * lib/autoconf/autoupdate.m4 (AU_DEFUN): Grammar fix in comment.
4315         * bin/autoheader.in: Grammar fix in message.
4316         * lib/m4sugar/m4sh.m4 (AS_MKDIR_P):
4317         Test for dir before calling mkdir -p.  (trivial changes)
4319 2004-01-13  Eric Blake  <ebb9@byu.net>
4321         * doc/autoconf.texi (Obsolete Macros): In AC_TRY_COMPILE and
4322         AC_TRY_LINK, s/AC_LANG_SOURCE/AC_LANG_PROGRAM/.  (trivial change)
4324 2004-01-10  Jim Meyering  <jim@meyering.net>
4326         * doc/autoconf.texi (Running the Preprocessor): Correct grammar.
4328 2004-01-09  Paul Eggert  <eggert@twinsun.com>
4330         * lib/autoconf/general.m4: Fix bug: AC_CHECK_SIZEOF evokes a warning
4331         with `autoconf -Wall,error'.  Bug reported by Eric Blake in:
4332         http://mail.gnu.org/archive/html/autoconf-patches/2004-01/msg00000.html
4333         (_AC_COMPUTE_INT_COMPILE): Invoke _AC_COMPILE_IFELSE, not
4334         AC_COMPILE_IFELSE, since we now assume our caller invokes
4335         AC_LANG_COMPILER_REQUIRE, for symmetry with _AC_COMPUTE_INT_RUN.
4336         (_AC_COMPUTE_INT_RUN): Likewise, for _AC_RUN_IFELSE instead
4337         of AC_RUN_IFELSE; this avoids the warning mentioned above.
4338         (_AC_COMPUTE_INT): Invoke AC_LANG_COMPILER_REQUIRE.
4340 2004-01-07  Paul Eggert  <eggert@twinsun.com>
4342         * lib/autoconf/general.m4 (_AC_LIBOBJS_NORMALIZE): Avoid \$ inside
4343         `"'...'"`, as it's confusing (and I suspect it may not work on
4344         some platforms).  The code was incorrect anyway, as it assumed
4345         that \$ evaluated to itself in that context.  Reported by
4346         Alexandre Duret-Lutz.
4348 2004-01-07  Alexandre Duret-Lutz  <adl@gnu.org>
4350         * lib/autom4te.in (Automake-preselections): Preselect AC_LIBTOOL_TAGS
4351         and _LT_AC_TAGCONFIG.
4353 2004-01-06  Paul Eggert  <eggert@twinsun.com>
4355         * doc/autoconf.texi (One Macro Call): Fix an incorrect
4356         example, and add more examples.  Reported by Eric Sunshine.
4358 2004-01-05  Paul Eggert  <eggert@twinsun.com>
4360         * doc/autoconf.texi (Limitations of Usual Tools):
4361         Remove warning against "rm -fr" introduced yesterday; it
4362         was a false alarm.
4364         * bin/Makefile.am (autoconf, autoheader, autom4te, autoreconf,
4365         autoscan, autoupdate, ifnames): Don't use chmod -w.
4366         * lib/Makefile.am (autom4te.cfg): Likewise.
4367         * doc/autoconf.texi (Limitations of Usual Tools): Warn against
4368         "chmod -w".
4370 2004-01-04  Paul Eggert  <eggert@twinsun.com>
4371             Paolo Bonzini  <bonzini@gnu.org>
4373         * lib/m4sugar/m4sh.m4 (_AS_LINENO_PREPARE): Speed up sed scripts
4374         by doing lineno substitution only on lines containing "$LINENO".
4376 2004-01-04  Paul Eggert  <eggert@twinsun.com>
4378         * lib/autoconf/general.m4 (AC_ARG_PROGRAM):
4379         Use "rm -f" to remove conftest.sed, not plain "rm".
4380         Bug reported by David Relson in
4381         <http://mail.gnu.org/archive/html/autoconf/2004-01/msg00011.html>.
4383         * Makefile.am (autom4te-update):
4384         Replace "rm -rf" and "rm -fr" with "rm -f -r", as POSIX requires.
4385         * Makefile.maint (my-distcheck, do-po-update): Likewise.
4386         * doc/autoconf.texi (Guidelines): Likewise.
4387         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Likewise.
4388         * lib/autoconf/libs.m4 (_AC_PATH_X_XMKMF): Likewise.
4389         * lib/autoconf/specific.m4 (AC_SYS_LONG_FILE_NAMES): Likewise.
4390         * lib/autotest/general.m4 (AT_INIT): Likewise.
4391         * lib/m4sugar/m4sh.m4 (AS_TMPDIR): Likewise.
4392         * tests/Makefile.am (clean-local): Likewise.
4393         * tests/tortue.at (AC_CONFIG_FILES, HEADERS, LINKS and COMMANDS,
4394         srcdir): Likewise.
4395         * doc/autoconf.texi (Limitations of Usual Tools):
4396         Warn against "rm -fr".
4398 2004-01-03  Paul Eggert  <eggert@twinsun.com>
4400         * doc/autoconf.texi (Limitations of Usual Tools): Mention that cc
4401         -c -o might not work.  From a suggestion by Kevin Ryde.
4402         (C Compiler, Generating Sources, Limitations
4403         of Usual Tools, Limitations of Make, Making testsuite Scripts):
4404         Don't put '-o' after non-options, as POSIX doesn't allow this.
4405         Mention that cc's name might be gcc or c89 or whatever.
4407 2004-01-04  Kevin Ryde  <user42@zip.com.au>
4409         * doc/autoconf.texi: Add various further index entries.
4411 2003-12-29  Paul Eggert  <eggert@twinsun.com>
4413         * bin/autoreconf.in (autoreconf_current_directory):
4414         Fix typo: mkdir without umask arg.
4416 2003-12-27  Alexandre Duret-Lutz  <adl@gnu.org>
4418         * doc/autoconf.texi (Limitations of Make) <Automatic rule rewriting>:
4419         Documents OSF1/Tru64 make behavior.  Replace `VPATH = ../src' by
4420         `VPATH = ../pkg/src' in examples to make the OSF1/Tru64 make
4421         explanation clearer.
4423 2003-12-24  Andreas Schwab  <schwab@suse.de>
4425         * doc/autoconf.texi (Default Includes): Fix misspelling of
4426         AC_INCLUDES_DEFAULT.
4428 2003-12-03  Paolo Bonzini  <bonzini@gnu.org>
4430         * configure.ac: Test if sh -n works.
4431         * configure: Regenerate.
4432         * tests/atlocal.in: Store the result here.
4433         * tests/local.at (AT_CHECK_SHELL_SYNTAX): Extracted from
4434         tools.at, looking in atlocal's ac_cv_sh_n_works instead
4435         of explicitly testing.
4436         (AT_CHECK_PERL_SYNTAX): Moved from tools.at.
4437         (AT_CHECK_AUTOCONF): Test for the configure script syntax.
4438         * tests/tools.at (Syntax of the shell scripts): Simplify
4439         using AT_CHECK_SHELL_SYNTAX.
4440         (Syntax of the Perl scripts): Remove definition of
4441         AT_CHECK_PERL_SYNTAX.
4443 2003-12-03  Paolo Bonzini  <bonzini@gnu.org>
4445         * lib/m4sugar/m4sh.m4 (_AS_SHELL_FN_WORK): Redirect
4446         stderr to /dev/null.
4447         * bin/autoconf.in: Regenerate.
4448         * bin/wrapper.in: Regenerate.
4450 2003-11-26  Paolo Bonzini  <bonzini@gnu.org>
4452         * lib/m4sugar/m4sh.m4 (_AS_BOURNE_COMPATIBLE):
4453         Extracted from AS_SHELL_SANITIZE.
4454         (_AS_SHELL_FN_WORK, AS_INIT_WITH_SHELL_FN): New
4455         macros.
4456         (AS_SHELL_SANITIZE): Move reinvocation code from
4457         _AS_LINENO_WORKS, use it to find out if shell
4458         functions work.
4459         (_AS_LINENO_WORKS): Don't find another shell if $LINENO
4460         does not work.
4461         (AS_INIT): Pass parameter down to AS_SHELL_SANITIZE.
4462         (AS_REQUIRE_SHELL_FN): Test that AS_INIT_WITH_SHELL_FN
4463         was called.
4464         * lib/autotest/general.m4: Use AS_INIT_WITH_SHELL_FN.
4465         * bin/autoconf.in: Regenerate.
4466         * tests/wrapper.in: Regenerate.
4467         * tests/tools.at: Test the syntax of tests/autoconf
4468         and tests/testsuite.
4470 2003-11-24  Akim Demaille  <akim@epita.fr>
4472         * config/announce-gen (&print_locations, &print_signatures)
4473         (&sizes): New.
4474         Use them.
4475         No longer rely on Gnus to inline the list of signatures: compute
4476         them on the fly.
4478 2003-11-24  Akim Demaille  <akim@epita.fr>
4480         * doc/autoconf.texi (Particular Programs): AC_PROG_LEX can
4481         override some files.
4482         (Input): AC_CONFIG_AUX_DIR(aux) is a bad idea on DOS.
4483         From Debian Autoconf 2.58.
4485 2003-11-24  Akim Demaille  <akim@epita.fr>
4487         * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): Quote $ac_popdir
4488         uses.
4489         From Debian Autoconf 2.58.
4491 2003-11-24  Paolo Bonzini  <bonzini@gnu.org>
4493         * TODO: Remove already done things.  Update the part about finding
4494         tools for the target.
4496 2003-11-24  Paolo Bonzini  <bonzini@gnu.org>
4498         * lib/autoconf/headers.m4 (AC_USG, AC_MEMORY_H, AC_DIR_HEADER):
4499         Make wording more consistent.
4500         * lib/autoconf/specific.m4 (AC_CYGWIN, AC_EMXOS2, AC_MINGW32):
4501         Explain the transition better.
4502         * lib/autoconf/types.m4 (AC_INT_16_BITS, AC_LONG_64_BITS): Explain
4503         the transition better.
4505 2003-11-24  Paolo Bonzini  <bonzini@gnu.org>
4507         * doc/autoconf.texi (Obsoleting Macros): Don't document the third
4508         parameter of AU_DEFUN.
4509         * lib/autoconf/autoupdate.m4 (AU_DEFINE): Remove.
4510         (AU_DEFUN): Remove the third parameter, it was not used.
4511         Use AC_DEFUN directly, not AU_DEFINE.
4512         * lib/autoconf/status.m4 (AC_LINK_FILES): Move the message into
4513         the expanded body, consistently with other macros such as AC_USG.
4515 2003-11-17  Paul Eggert  <eggert@twinsun.com>
4517         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Put at least 14 bytes
4518         into the initial confdefs.h, to work around a bug in NextStep 3.3
4519         patch 3 reported by Eric Sunshine.
4521 2003-11-15  Kevin Ryde  <user42@zip.com.au>
4523         * doc/autoconf.texi (Using System Type): Revise, showing $host rather
4524         than $target since the latter is not usual, add guidelines on when to
4525         use or not use the system type.
4527 2003-11-12  Derek Price  <derek@ximbiot.com>
4529         * doc/autoconf.texi (Limitations of Usual Tools): Fix what looks like a
4530         typo misrepaired by an auto-spellcheck.
4532 2003-11-12  Akim Demaille  <akim@epita.fr>
4534         * bin/autoreconf.in (&parse_args): Don't call automake with
4535         --force-missing unless it actually supports it.
4536         From Debian #219336.
4538 2003-11-12  Akim Demaille  <akim@epita.fr>
4540         * configure.ac: Bump to 2.59a.
4541         Require 2.59.
4543 2003-11-06  Akim Demaille  <akim@epita.fr>
4545         Version 2.59.
4547 2003-11-05  Alexandre Duret-Lutz  <adl@gnu.org>
4549         * lib/autoconf/status.m4 (_AC_SRCPATHS): Fix use of AS_SET_CATFILE
4550         so that ac_abs_builddir, ac_abs_top_builddir, ac_abs_srcdir,
4551         and ac_abs_top_srcdir are absolute paths.
4552         * lib/m4sugar/m4sh.m4 (AS_SET_CATFILE): Remove misleading comment.
4554 2003-11-05  Akim Demaille  <akim@epita.fr>
4556         * configure.ac: Bump to 2.58a.
4558 2003-11-05  Kevin Ryde  <user42@zip.com.au>
4560         * doc/autoconf.texi (Using Autotest): Avoid @strong{Note: ...}, since
4561         it provokes a warning from makeinfo about looking like a cross
4562         reference in info output.
4564         * doc/autoconf.texi (Function Portability): Add notes on signal
4565         handler return type, as per AC_TYPE_SIGNAL.
4567 2003-11-04  Akim Demaille  <akim@epita.fr>
4569         Version 2.58.
4570         * doc/standards.texi: Update from master.
4572         * tests/mktests.sh (ac_exclude_list): Add AC_FC_FREEFORM.
4574 2003-11-04  Akim Demaille  <akim@epita.fr>
4576         AC_CONFIG_FILE([d1/foo:d2/foo]) triggers error messages when
4577         computing the absolute path to d1 in the source hierarchy: it may
4578         not exist at all.  So don't cd into it.
4579         From Alexandre Duret-Lutz.
4580         http://mail.gnu.org/archive/html/bug-autoconf/2003-10/msg00205.html
4582         * lib/m4sugar/m4sh.m4 (AS_SET_CATFILE): New.
4583         From Paul Eggert, but named after Perl's IO::Spec->catfile.
4584         * doc/autoconf.texi (Programming in M4sh): Document.
4585         * lib/autoconf/status.m4 (_AC_SRCPATHS): Use it.
4587 2003-11-03  Pavel Roskin  <proski@gnu.org>
4589         * doc/autoconf.texi (Generic Structure Checks): Describe
4590         action-if-found and action-if-not-found in AC_CHECK_MEMBERS.
4592 2003-10-31  Akim Demaille  <akim@epita.fr>
4594         * tests/fortran.at (GNU Fortran 77): Don't run FC macros.
4595         (GNU Fortran): New.
4596         * doc/autoconf.texi (Language Choice): Document.
4597         * lib/autoconf/fortran.m4 (AC_FC_SRCEXT, AC_FC_FREEFORM): Assert
4598         the current language is Fortran.
4600 2003-10-31  Akim Demaille  <akim@epita.fr>
4602         * bin/autom4te.in (&freeze): Use a less likely warning separator
4603         than `\n\n', so that `\n\n\n' is valid in warnings.
4604         Reported by Steve Huston.
4606 2003-10-28  Akim Demaille  <akim@epita.fr>
4608         * Makefile.cfg (local_updates, executable-update): Tweak to be
4609         robust to parallel makes.
4610         Suggested by Alexandre Duret-Lutz.
4612 2003-10-27  Akim Demaille  <akim@epita.fr>
4614         * Makefile.cfg (executable-update): New.
4615         (local_updates): Call it.
4617 2003-10-27  Akim Demaille  <akim@epita.fr>
4619         * lib/autoconf/general.m4 (_AC_RUN_IFELSE, _AC_INIT_PREPARE):
4620         Don't remove core.* as it may remove valid user files.
4621         * lib/autoconf/functions.m4 (AC_FUNC_SETVBUF_REVERSED)
4622         (AC_FUNC_UTIME_NULL): Likewise.
4624 2003-10-23  Akim Demaille  <akim@epita.fr>
4626         Version 2.57g.
4627         * config/config.guess, config/config.sub: Upgrade from masters.
4629 2003-10-23  Akim Demaille  <akim@epita.fr>
4631         * lib/autoconf/fortran.m4 (AC_FC_SRCEXT): Functions using
4632         AC_COMPILE_IFELSE that use break skip the clean up.  So do it by
4633         hand...
4635 2003-10-23  Akim Demaille  <akim@epita.fr>
4637         * lib/autoconf/general.m4 (_AC_LINK_IFELSE, _AC_COMPILE_IFELSE):
4638         Don't forget to remove conftest.err.
4640 2003-10-23  Akim Demaille  <akim@epita.fr>
4642         * lib/autoconf/general.m4 (_AC_LIBOBJ): Don't insert twice the
4643         same object file in $LIBOBJS.
4644         Reported by Alexandre Duret-Lutz & Derek Robert Price.
4645         * doc/autoconf.texi (Generic Functions): Adjust.
4647 2003-10-20  Paul Eggert  <eggert@twinsun.com>
4649         * lib/m4sugar/m4sh.m4 (_AS_TR_SH_PREPARE, _AS_TR_CPP_PREPARE):
4650         Use 'eval', so that the resulting configure scripts work even if
4651         the current directory has a weird file name like 'y%s+%pp%;s%@%_%g'.
4653 2003-10-20  Daniel Jacobowitz  <drow@mvista.com>
4655         * lib/autoconf/lang.m4 (AC_LANG_WERROR): New macro.
4656         * lib/autoconf/general.m4 (_AC_COMPILE_IFELSE, _AC_PREPROC_IFELSE)
4657         (_AC_LINK_IFELSE): Check the werror flag.
4658         * doc/autoconf.texi (Generic Compiler Characteristics): Document
4659         AC_LANG_WERROR.
4660         * NEWS: Mention it.
4662 2003-10-20  Daniel Jacobowitz  <drow@mvista.com>
4664         * lib/autoconf/lang.m4 (AC_NO_EXECUTABLES): Override
4665         _AC_COMPILER_EXEEXT to attempt a link.  If linking fails,
4666         override AC_LINK_IFELSE.
4668 2003-10-15  Paul Eggert  <eggert@twinsun.com>
4670         * lib/m4sugar/m4sh.m4 (_AS_UNSET_PREPARE): Work around a bug in
4671         pdksh 5.2.14.  Bug reported by Ralf Corsepius.
4672         * doc/autoconf.texi (Shellology): Mention the Korn shell and pdksh.
4673         Mention /usr/dt/bin/dtksh on Solaris.
4674         (Shell Substitutions): Warn about $((...)).
4675         (Parentheses): New section.
4677 2003-10-15  Kevin Ryde  <user42@zip.com.au>
4679         * doc/autoconf.texi (Function Portability): Add @prindex for exit.
4680         Add putenv and unsetenv.  Add sysconf _SC_PAGE_SIZE.
4682 2003-10-13  Nathanael Nerode  <neroden@gcc.gnu.org>
4684         * lib/autoconf/functions.m4 (AC_FUNC_FORK): Trivial fix for vfork
4685         cross test.
4687 2003-10-11  Steven G. Johnson  <stevenj@alum.mit.edu>
4689         * lib/autoconf/fortran.m4 (_AC_PROG_FC): Use the new official
4690         name for the GNU Fortran 95+ compiler, 'gfortran', not 'g95'.
4692 2003-10-10  Andreas Schwab  <schwab@suse.de>
4694         * bin/autoheader.in: Avoid empty first line in --version and
4695         --help output.
4696         * bin/ifnames.in: Likewise.
4698 2003-10-09  Paul Eggert  <eggert@twinsun.com>
4700         * lib/Autom4te/XFile.pm: Don't assume -j is solo.
4701         Issue a more-informative diagnostic.
4702         Problems reported by Eric Sunshine.
4704 2003-10-08  Steven G. Johnson  <stevenj@alum.mit.edu>
4706         * lib/autoconf/fortran.m4 (_AC_PROG_FC_V_OUTPUT): Omit quoted
4707         -mGLOB_options_string stuff for Intel ifc, which can cause
4708         _AC_FC_LIBRARY_LDFLAGS to fail.  Use (faster) case for
4709         pattern-matching instead of grep.
4711 2003-10-08  Steven G. Johnson  <stevenj@alum.mit.edu>
4713         * doc/autoconf.texi: Document new FC Fortran macros.
4715 2003-10-08  Gary V. Vaughan  <gary@gnu.org>
4717         * lib/autoconf/general.m4 (AC_CONFIG_MACRO_DIR): Stub out a macro
4718         that future autopoint/aclocal/automake/autoreconf will be able
4719         to trace to find where to install local m4 macros.
4720         * doc/autoconf.texi (Input): Document it.
4721         * NEWS: Updated.
4723 2003-10-06  Gary V. Vaughan  <gary@gnu.org>
4725         * lib/autoconf/fortran.m4 (_AC_FC_LIBRARY_LDFLAGS): Add
4726         -lcrtbegin.o to list of ignored flags and fix underquoting of
4727         -lcrt[01].o.
4729 2003-10-04  Steven G. Johnson  <stevenj@ab-initio.mit.edu>
4731         * lib/autoconf/fortran.m4 (_AC_PROG_FC_G): Use language-specific
4732         cache variable instead of $G77 to decide whether to include -O2,
4733         since $G77 is specific to Fortran 77.
4735 2003-10-03  Steven G. Johnson  <stevenj@alum.mit.edu>
4737         * lib/autoconf/fortran.m4 (AC_FC_FREEFORM): Support Absoft "-f
4738         free" flag.  Re-order flags tested into rough order of popularity.
4740 2003-10-03  Steven G. Johnson  <stevenj@alum.mit.edu>
4742         * lib/autoconf/fortran.m4 (AC_PROG_FC): Reverse the order of the
4743         arguments so that it can be used with syntax identical to
4744         AC_PROG_F77, and so that we can more easily decide to
4745         remove/deprecate the DIALECT optional argument in the future if it
4746         proves troublesome.
4747         (AC_FC_FREEFORM): Exit 77 upon failure to fix test suite for
4748         non-freeform-supporting compilers.  Document freeform flags.
4750 2003-10-03  Akim Demaille  <akim@epita.fr>
4752         * configure.ac: Look for emacs, not macs.
4753         Reported by Eric Sunshine.
4755 2003-10-03  Akim Demaille  <akim@epita.fr>
4757         * lib/autom4te.in (Autoreconf-preselections): Trace AC_CONFIG_AUX_DIR.
4758         * bin/autoreconf.in (autoreconf_current_directory): Create the
4759         AUX_DIR if needed, for sake of automake --add-missing etc.
4760         Suggested by Alexandre Duret-Lutz.
4762 2003-10-03  Akim Demaille  <akim@epita.fr>
4764         * configure.ac: Quotation and formatting changes.
4765         (EMACS): Don't set it if it is not recent enough to support
4766         autoconf-mode.el.
4767         From Eric Sunshine.
4769 2003-10-02  Akim Demaille  <akim@epita.fr>
4771         * bin/ifnames.in (&scan_file): Skip C++ comments.
4772         From Jeremy Yallop.
4774 2003-10-01  Pavel Roskin  <proski@gnu.org>
4776         * doc/autoconf.texi (Particular Structure Checks):
4777         Fix misspelling of HAVE_STRUCT_STAT_ST_BLOCKS.
4779 2003-10-01  Akim Demaille  <akim@epita.fr>
4781         Version 2.57f.
4783 2003-09-30  Paul Eggert  <eggert@twinsun.com>
4785         * lib/Autom4te/XFile.pm: Use Errno.
4786         (lock): Ignore ENOLCK errors.  Problem reported Andreas Schwab in
4787         <http://mail.gnu.org/archive/html/bug-autoconf/2003-09/msg00141.html>.
4789 2003-09-30  Akim Demaille  <akim@epita.fr>
4791         * config/announce-gen (&print_news_deltas): Extracted from...
4792         (&print_changelog_deltas): here.
4793         (&news_file): Rename as...
4794         (@news_file): this.
4796 2003-09-30  Nicolas Joly  <njoly@pasteur.fr>
4798         * lib/autoconf/fortran.m4 (_AC_PROG_FC): Remove files which might
4799         have been created when invoking the compiler.
4800         * tests/fortran.at (GNU Fortran 77): Quote $G77.
4802 2003-09-29  Akim Demaille  <akim@epita.fr>
4804         Version 2.57e.
4806         * config/mkinstalldirs: Upgrade.
4808 2003-09-28  Paul Eggert  <eggert@twinsun.com>
4810         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Set DUALCASE=1, for MKS sh.
4811         Problem reported by Lars J. Aas in
4812         <http://mail.gnu.org/archive/html/autoconf/2003-07/msg00042.html>.
4813         (_AS_MKDIR_P_PREPARE): Change "rm -fr ./-p" to the more-conservative
4814         "test -d ./-p && rmdir ./-p".  Suggested by Andreas Schwab in:
4815         http://mail.gnu.org/archive/html/autoconf-patches/2003-09/msg00039.html
4817 2003-09-26  Akim Demaille  <akim@epita.fr>
4819         * lib/autoconf/status.m4 (_AC_OUTPUT_COMMANDS): Make sure the
4820         directory for AC_CONFIG_COMMANDS' first argument exists.
4821         This makes valid the invocation of _AC_SRCPATH that follows.
4822         Reported by Eric Sunshine.
4823         * doc/autoconf.texi (Configuration Commands): Adjust.
4825 2003-09-26  Akim Demaille  <akim@epita.fr>
4827         * bin/autoscan.in (Autom4te::FileUtils): Use it for find_file.
4828         Reported by Ralf Corsepius.
4830 2003-09-26  Akim Demaille  <akim@epita.fr>
4832         * lib/autoconf/general.m4 (AC_HELP_STRING): Don't overquote the
4833         arguments.
4834         Actually, use AU_ALIAS.
4835         From Bruno Haible.
4837 2003-09-26  Paul Eggert  <eggert@twinsun.com>
4839         * lib/m4sugar/m4sh.m4 (_AS_MKDIR_P_PREPARE): If mkdir -p . fails,
4840         rm -fr ./-p to remove junk left behind on NextStep and OpenStep.
4841         Problem reported by Eric Sunshine in:
4842         http://mail.gnu.org/archive/html/autoconf-patches/2002-12/msg00014.html
4844 2003-09-26  Akim Demaille  <akim@epita.fr>
4846         The test suite are sometimes assigning timings incorrectly.
4847         Reported by Henk Krus.
4848         Diagnosed by Nicolas Joly.
4850         * lib/autotest/general.m4 (AT_CLEANUP): Rename AT_help as
4851         AT_help_all.
4852         Instead of making AT_help a sequence of assignments to grow
4853         $at_help_all, just make AT_help_all be the growing contents of
4854         $at_help_all, and make a single assignment in...
4855         (AT_INIT): here.
4856         (at_times_skip): Flip the meaning and rename as...
4857         (at_times_p): this.
4858         (AT_INIT): When summarizing the test that ran, remove
4859         $at_times_file after use, and check it is present before trying to
4860         use it.
4862 2003-09-25  Akim Demaille  <akim@epita.fr>
4864         Version 2.57d.
4866         * bin/Makefile.am (edit): Handle '@configure_input@'.
4867         (autoconf, autoheader, autom4te, autoreconf, autoscan, autoupdate)
4868         (ifnames): chmod -w.
4869         * tests/wrapper.as (AUTOCONF, AUTOM4TE, ): Point to tests/
4870         executables, not bin/ executables!  Otherwise all the magic needed
4871         to find non installed files is turned off.  This caused a failure
4872         of test 40 and 41 that ran aclocal 1.8 which in turn ran autom4te
4873         as found in its environment (sent by tests/autoreconf): pointing
4874         to bin/autom4te that could not find its files.
4875         * tests/mktests.sh: Force the replacement of generated files, for
4876         the sake of "mv" program that are interactive when overwriting a
4877         -w file.
4878         * config/install-sh: Upgrade from CVS Automake.
4880 2003-09-23  Paul Eggert  <eggert@twinsun.com>
4882         * doc/autoconf.texi (Limitations of Builtins): Document test -h
4883         versus test -L issues.
4885 2003-09-23  Daniel Jacobowitz  <drow@mvista.com> and
4886             Paul Eggert  <eggert@twinsun.com>
4888         Trivial change to support GCC's configuration procedure.
4889         * lib/autoconf/c.m4 (AC_PROG_CPP_WERROR): New macro.
4890         * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_MONGREL): Don't warn
4891         about inconsistency if the preprocessor is set to give errors for
4892         any warning.
4893         * doc/autoconf.texi (C Compiler Characteristics): Document this.
4895 2003-09-13  Alexandre Duret-Lutz  <adl@gnu.org>
4897         * Makefile.am (autom4te-update, autom4te_files): Fetch Struct.pm
4898         and XFile.pm from Automake.
4899         * lib/Autom4te/XFile.pm: Update from Automake.
4901 2003-09-12  Akim Demaille  <akim@epita.fr>
4903         Version 2.57c.
4905 2003-09-12  Akim Demaille  <akim@epita.fr>
4907         * config/config.guess, config/config.sub, config/missing,
4908         * lib/Autom4te/Channels.pm, lib/Autom4te/Configure_ac.pm: Update
4909         from masters.
4911 2003-09-12  Akim Demaille  <akim@epita.fr>
4913         * doc/autoconf.texi (Header Portability): Promote linux/types.h,
4914         not asm/types.h.
4916 2003-09-11  Akim Demaille  <akim@epita.fr>
4918         * doc/autoconf.texi (Header Portability): linux/random.h.
4919         From Peter Hendrickson.
4921 2003-09-10  Akim Demaille  <akim@epita.fr>
4923         * tests/mktests.sh (au_exclude_egrep): Make it harder to be
4924         willing to edit the output files.
4926 2003-09-10  Akim Demaille  <akim@epita.fr>
4928         * tests/fortran.at (GNU Fortran 77): Also exercise AC_FC_SRCEXT
4929         and AC_FC_FREEFORM.
4930         * tests/mktests.sh: Skip AC_FC_SRCEXT.
4931         * lib/autoconf/fortran.m4 (AC_FC_SRCEXT, AC_FC_FREEFORM): Likewise.
4933 2003-09-09  Akim Demaille  <akim@epita.fr>
4935         * lib/Autom4te/FileUtils.pm (&update_file): s/cannot not/cannot/g.
4936         Reported by Gary Vaughan.
4937         * bin/autom4te.in (handle_m4): Likewise.
4939 2003-09-09  Akim Demaille  <akim@epita.fr>
4941         * lib/Autom4te/FileUtils.pm (&update_file): Be sure not to leave
4942         trailing files.
4944 2003-09-07  Paul Eggert  <eggert@twinsun.com>
4946         * lib/autoconf/specific.m4 (AC_SYS_RESTARTABLE_SYSCALLS):
4947         Improve the accuracy of the wording about obsolescence.
4948         From a suggestion by Ian Lance Taylor in
4949         <http://mail.gnu.org/archive/html/autoconf/2003-09/msg00044.html>.
4951 2003-09-05  Paul Eggert  <eggert@twinsun.com>
4953         * lib/autoconf/fortran.m4 (AC_FC_FREEFORM): Try -ffree-form too,
4954         for the benefit of g77 3.2.  Fix suggested by Steven G. Johnson.
4956 2003-09-04  Akim Demaille  <akim@epita.fr>
4958         * tests/mktests.sh (ac_exclude_list): Fix the filtering of
4959         AC_FUNC_WAIT3.
4961 2003-09-04  Akim Demaille  <akim@epita.fr>
4963         * bin/autom4te.in: Use &fatal where more appropriate than &error.
4964         (freeze): When exiting, use $exit_code.
4965         * lib/autoconf/fortran.m4: Comment changes.
4967 2003-09-04  Akim Demaille  <akim@epita.fr>
4969         * tests/mktests.sh (ac_exclude_list): Add AC_FC_FUNC.
4971 2003-09-02  Steven G. Johnson  <stevenj@alum.mit.edu>
4973         Add support for newer Fortran dialects.  The F77 interface is
4974         unchanged, and continues to support Fortran 77.  New FC macros
4975         correspond to all the old F77 macros, with output variables FC,
4976         FCFLAGS, and FCLIBS.  AC_PROG_FC defaults to picking the newest
4977         available dialect, but older dialects can be specified.  There are
4978         new macros AC_FC_SRCEXT to set the source extension, and
4979         AC_FC_FREEFORM to accept free-form source files.
4981         * lib/autoconf/c.m4 (_AC_LANG_PREFIX(C), _AC_LANG_PREFIX(C++)):
4982         New macros.
4983         (AC_LANG_PROGRAM(C)): Invoke _AC_LANG_PROGRAM_C_FC_HOOKS if defined.
4984         * lib/autoconf/fortran.m4 (AC_LANG(Fortran), _AC_FORTRAN_ASSERT,
4985         _AC_LANG_ABBREV(Fortran), _AC_LANG_PREFIX(Fortran 77),
4986         _AC_LANG_PREFIX(Fortran), _AC_FC, AC_LANG_SOURCE(Fortran),
4987         AC_LANG_PROGRAM(Fortran), AC_LANG_CALL(Fortran),
4988         AC_LANG_PREPROC(Fortran), AC_LANG_COMPILER(Fortran),
4989         _AC_FC_DIALECT_YEAR, _AC_F95_FC, _AC_F90_FC, _AC_F77_FC,
4990         _AC_PROG_FC, AC_PROG_FC, _AC_PROG_FC_G, _AC_PROG_FC_C_O,
4991         AC_PROG_FC_C_O, _AC_PROG_FC_V_OUTPUT, _AC_PROG_FC_V,
4992         _AC_FC_LIBRARY_LDFLAGS, AC_FC_LIBRARY_LDFLAGS, _AC_FC_DUMMY_MAIN,
4993         AC_FC_DUMMY_MAIN, _AC_FC_MAIN, AC_FC_MAIN, __AC_FC_NAME_MANGLING,
4994         _AC_FC_WRAPPERS, AC_FC_WRAPPERS, _AC_FC_FUNC, AC_FC_FUNC,
4995         AC_FC_SRCEXT, AC_FC_FREEFORM):
4996         New macros.
4997         (AC_PROG_F77, AC_PROG_F77_C_O, AC_F77_LIBRARY_LDFLAGS,
4998         AC_F77_DUMMY_MAIN, AC_F77_MAIN, _AC_F77_NAME_MANGLING,
4999         AC_F77_NAME_MANGLING, AC_F77_WRAPPERS, AC_F77_FUNC):
5000         Rewrite in terms of the above.
5001         (_AC_PROG_F77_G, _AC_PROG_F77_V_OUTPUT, _AC_PROG_F77_V): Remove.
5002         * lib/autoconf/lang.m4 (_AC_LANG_PREFIX): New macro.
5003         * tests/acfortran.at: Test AC_FC_FREEFORM, AC_FC_FUNC,
5004         AC_FC_MAIN, AC_FC_SRCEXT, AC_FC_WRAPPERS, AC_PROG_FC_C_O.
5006 2003-09-02  Paul Eggert  <eggert@twinsun.com>
5008         * doc/autoconf.texi (Limitations of Usual Tools, Limitations of Make):
5009         Document problems with timestamp resolution that 'make', 'cp -p', and
5010         'touch -r' have.
5012 2003-08-27  Akim Demaille  <akim@epita.fr>
5014         * tests/m4sugar.at (cross_warning): Make sure to enable the
5015         output, so that we can track spurious m4sugar output.
5016         * tests/local.at: Require 2.57.
5017         (AT_CHECK_M4SUGAR, AT_CHECK_M4SH): Don't m4_default the arguments that
5018         are defaulted by AT_CHECK anyway.
5019         Use AT_CHECK_AUTOM4TE.
5020         * lib/m4sugar/m4sugar.m4: There should be no output at all: add a
5021         missing dnl.
5023 2003-08-27  Akim Demaille  <akim@epita.fr>
5025         * bin/autoheader.in: Issue the "Using auxiliary..." message only
5026         when -Wobsolete is set.
5027         Set it on by default.
5028         Suggested by Klee Dienes.
5030 2003-08-27  Akim Demaille  <akim@epita.fr>
5032         * doc/autoconf.texi (AC_FUNC_FSEEKO, AC_SYS_LARGEFILE): More
5033         documentation.
5034         From Guido Draheim.
5036 2003-08-26  Akim Demaille  <akim@epita.fr>
5038         * doc/autoconf.texi (Output): Make clear that one can run code
5039         after AC_OUTPUT.
5041 2003-08-25  Akim Demaille  <akim@epita.fr>
5043         * config/announce-gen, GNUmakefile, Makefile.maint: Update from
5044         CVS Bison.
5046 2003-08-25  Alexandre Duret-Lutz  <adl@gnu.org>
5048         * bin/autoreconf.in (parse_args): Do not pass --no-force to
5049         Automake versions prior to 1.8.
5051 2003-08-25  Akim Demaille  <akim@epita.fr>
5053         * doc/autoconf.texi (Header Portability): netinet/if_ether.h.
5054         From Ville Karaila.
5056 2003-08-24  Akim Demaille  <akim@epita.fr>
5058         * configure.ac: Bump to 2.57c.
5060 2003-08-22  Akim Demaille  <akim@epita.fr>
5062         Version 2.57b.
5064         * Makefile.cfg (local-checks-to-skip): New.
5065         * Makefile.maint (local-check): Rename as...
5066         (local-checks-available): this.
5067         (local-check): New.
5069         * Makefile.am (EXTRA_DIST): Add Makefile.cfg.
5070         * configure.ac: Require Automake 1.7.6.
5072 2003-08-22  Akim Demaille  <akim@epita.fr>
5074         Output stack traces in warnings.
5076         * lib/m4sugar/m4sugar.m4 (_m4_warn): New.
5077         Replace the former...
5078         (m4_warn): Pass the call stack to _m4_warn.
5079         * bin/autom4te.in: Adjust to output the call stack.
5080         * tests/m4sugar.at (m4@&t@_warn): Adjust.
5082 2003-08-22  Akim Demaille  <akim@epita.fr>
5084         * lib/Autom4te/Request.pm, lib/Autom4te/C4che.pm: New.
5085         * bin/autom4te.in: Adjust.
5087 2003-08-21  Akim Demaille  <akim@epita.fr>
5089         * lib/Autom4te/General.pm (&file_name_is_absolute): Remove.
5090         (&verbose): Remove.
5091         (&getopt): Adjust the note and verb channels, depending upon
5092         --verbose.
5093         * bin/autoheader.in, bin/autom4te.in, bin/autoscan.in,
5094         * bin/autoupdate.in: Adjust.
5095         Use &verb, not &verbose.
5097 2003-08-21  Akim Demaille  <akim@epita.fr>
5099         * bin/autoheader.in (&parse_args): Use &parse_warnings and
5100         &parse_WARNINGS.
5101         ($help): Use Autom4te::ChannelDefs::usage.
5102         * bin/autoscan.in: Use Autom4te::ChannelDefs.
5103         * lib/Autom4te/General.pm: Don't export error: you don't own it.
5105 2003-08-21  Akim Demaille  <akim@epita.fr>
5107         First stab at preserving warnings between calls to autom4te,
5108         including when the cache is used.
5110         There are still several issues: (i) there are too many runs of m4
5111         (one for include, one for warnings, and some more), (ii) warnings
5112         spreading on several lines are not handled gracefully, (iii) the
5113         code meant to have the call stack display for errors does not work
5114         (its handling should move from m4 to autom4te).
5116         * bin/autom4te.in Autom4te::Channels, Autom4te::ChannelDefs):
5117         Use them.
5118         (@preselect): Add m4_warn.
5119         ($exit_status): Remove, use $exit_code.
5120         ($help): Use Autom4te::ChannelDefs::usage.
5121         (&handle_m4): No longer define the m4_warnings.
5122         At each run, extract and report the warnings.
5123         Always cache the result, including if the exit status is on
5124         failure, since if nothing changes, we should result in the same
5125         failure, hence we can use the cache.
5126         * lib/m4sugar/m4sugar.m4 (m4_warning_ifelse, _m4_warning_ifelse)
5127         (_m4_warning_error_ifelse, __m4_warning_error_ifelse, _m4_warn):
5128         Remove.
5129         (m4_warn): Redefine as a do-nothing: it is its invocation that
5130         matters, as warnings are now reported via traces.
5131         * lib/autoconf/general.m4 (AC_DIAGNOSE): Don't make it a copy of
5132         the contents of m4_warn: make it _call_ m4_warn, so that tracing
5133         the latter reveals calls to the former.
5135         Adjust the tests.
5137         * tests/m4sugar.at (m4@&t@_warn): Use existing warning categories.
5139 2003-08-21  Akim Demaille  <akim@epita.fr>
5141         * bin/autoreconf.pm (Autom4te::Channels, Autom4te::ChannelDefs):
5142         Use them.
5144 2003-08-21  Akim Demaille  <akim@epita.fr>
5146         * lib/Autom4te/FileUtils.pm (&find_file): Walk the @include in
5147         forward order.
5148         * lib/Autom4te/ChannelDefs.pm: Doc typos.
5149         (&parse_warnings): Accept a list of warning requests.
5150         (&usage): Return a string, not a side effect.
5151         (cross): New warning category.
5153 2003-08-21  Akim Demaille  <akim@epita.fr>
5155         * lib/Autom4te/Configure_ac.pm (&find_configure_ac)
5156         (&require_configure_ac): Accept an optional directory argument.
5157         ($configure_ac): Remove.
5158         * lib/Autom4te/General.pm (&find_configure_ac, &canonfile)
5159         (&catfile): Remove.
5160         * bin/autoheader.in, bin/autoreconf.in, bin/autoupdate.in,
5161         * bin/autoscan.in: Adjust.
5163 2003-08-20  Akim Demaille  <akim@epita.fr>
5165         * bin/autoheader.in: Remove duplicate 'use Autom4te::FileUtils'.
5166         Reported by Alexandre Duret-Lutz.
5168 2003-08-20  Akim Demaille  <akim@epita.fr>
5170         * bin/autoupdate.in, bin/autoheader.in, bin/autoreconf.in,
5171         * bin/autom4te: Adjust.
5172         In particular, be Autoconf tools are really silent when properly
5173         working, bind the verbosity of the 'note' channel to $verbose.
5174         * lib/Autom4te/General.pm (&find_file, &mtime, &update_file)
5175         (&xsystem, &contents): Remove, since they are exported by...
5176         * lib/Autom4te/FileUtils.pm: this.
5177         More perldoc.
5178         * lib/Autom4te/General.pm (&up_to_date_p): Move to...
5179         * lib/Autom4te/FileUtils.pm: here.
5181 2003-08-20  Akim Demaille  <akim@epita.fr>
5183         * lib/Autom4te/Channels.pm, lib/Autom4te/ChannelDefs.pm
5184         * lib/Autom4te/Configure_ac.pm, lib/Autom4te/FileUtils.pm: New,
5185         from CVS Automake.
5187 2003-08-20  Akim Demaille  <akim@epita.fr>
5189         * Makefile.am (automake_cvsweb, automake_cvsargs, autom4te_files)
5190         (autom4te-update): New.
5191         * Makefile.cfg (update): Bind autom4te-update.
5193 2003-08-19  Derek Price  <derek@ximbiot.com>
5195         * lib/autotest/general.m4: Comment various HELP_* diversions.
5196         (PARSE_ARGS_BEGIN): New section for option parsing related
5197         initialization.
5198         (AT_ARG_OPTION,AT_ARG_OPTION_ARG,_AT_ARG_OPTION): New macros to define
5199         package specific options and associated help.
5201 2003-08-19  Akim Demaille  <akim@epita.fr>
5203         * config/announce-gen, Makefile.cfg: New.
5204         * Makefile.am: Adjust.
5205         * GNUmakefile, Makefile.maint: Update from CVS Coreutils.
5207 2003-08-19  Alexandre Duret-Lutz  <adl@gnu.org>
5209         * lib/autom4te.in (Automake-preselections): Preselect
5210         AC_CONFIG_LIBOBJ_DIR, AC_CONFIG_LINKS, m4_include,
5211         and m4_sinclude.
5213 2003-08-19  Alexandre Duret-Lutz  <adl@gnu.org>
5215         * lib/autom4te.in (Autoconf): Move all args except aclocal.m4? into ...
5216         (Autoconf-without-aclocal-m4): ... this new language.
5217         * doc/autoconf.texi (autom4te Invocation): Mention
5218         Autoconf-without-aclocal-m4.
5220 2003-08-18  Derek Price  <derek@ximbiot.com>
5222         * doc/autoconf.texi (Writing testsuite.at): Document RUN-IF-FAIL &
5223         RUN-IF-PASS optional arguments.
5225 2003-08-18  Derek Price  <derek@ximbiot.com>
5227         * doc/autoconf.texi (Programming in M4sh): Add doc for AS_IF.
5229 2003-08-16  Derek Price  <derek@ximbiot.com>
5231         * doc/autoconf.texi (Writing testsuite.at): Document defaults for
5232         STDOUT & STDERR arguments.
5234 2003-08-14  Derek Price  <derek@ximbiot.com>
5236         * lib/autotestgeneral.m4 (AT_INIT): Reformat test summary line to print
5237         DESCRIPTION rather than FILE and LINE.  Shorten result to fit in new,
5238         shorter column three.  Add DESCRIPTION to log file content.
5240 2003-08-13  Derek Price  <derek@ximbiot.com>
5242         * lib/autotest/general.m4 (AT_INIT): Correct typo in final status
5243         output.
5245 2003-08-12  Derek Price  <derek@ximbiot.com>
5247         * lib/autotest/general.m4 (AT_CHECK): Use new _AT_CHECK API.
5248         (AT_CHECK_NOESCAPE): Move core functionality to...
5249         (_AT_CHECK): ...this new macro.
5251 2003-08-07  Derek Price  <derek@ximbiot.com>
5253         * lib/autotest/general.m4 (AT_CHECK): Move core functionality...
5254         (AT_CHECK_NOESCAPE): ...to this new macro.
5256 2003-07-31  Paul Eggert  <eggert@twinsun.com>
5258         * lib/m4sugar/m4sh.m4 (_AS_UNSET_PREPARE): Work around a bug
5259         in Bash 2.01.  Problem reported by Brian Gough in
5260         <http://mail.gnu.org/archive/html/bug-autoconf/2003-07/msg00106.html>.
5262 2003-07-25  John W. Eaton  <jwe@bevo.che.wisc.edu>
5264         * lib/autoconf/fortran.m4 (AC_F77_LIBRARY_LDFLAGS): Also ignore
5265         -lcrt1.o, for OS X.  (trivial change)
5267 2003-07-07  Paul Eggert  <eggert@twinsun.com>
5269         * lib/autoconf/c.m4 (AC_C_INLINE): Wrap the '#define inline ...'
5270         inside '#ifndef __cplusplus'.  Problem reported by
5271         Bob Friesenhahn.
5273 2003-07-06  Bill Clarke  <llib@computer.org>
5275         * lib/autoconf/functions.m4 (AC_FUNC_MMAP): Cast pointer to
5276         'long', not 'int', for benefit of Sun's recent C++ compilers
5277         (trivial change).  See:
5278         http://mail.gnu.org/archive/html/autoconf-patches/2003-07/msg00007.html
5279         (This really should be 'intptr_t', not 'long', but that would
5280         take more work.)
5282 2003-06-25  Akim Demaille  <akim@epita.fr>
5284         * lib/Makefile.am (autom4te.cfg): Make it read only.
5285         Depend on Makefile since it contains substitutions.
5286         From Paolo Bonzini.
5287         * lib/autom4te.in (args): Add local.at? for Autotest args.
5288         This change was made on autom4te.cfg which is generated.
5289         Reported by Raja R. Harinath.
5291 2003-06-25  Akim Demaille  <akim@epita.fr>
5293         * doc/autoconf.texi (Header Portability): sys/mount.h.
5294         From Gareth McCaughan.
5296 2003-06-23  Akim Demaille  <akim@epita.fr>
5298         * lib/autotest/general.m4 (AT_INIT): Report a single config.log,
5299         not all of them.  This fixes 1. the fact that when testing
5300         Autoconf there are many many config.log, 2. the incorrect use of
5301         top_srcdir to find config.log.
5302         Don't mix the detailed output of failed test with the summary of
5303         failures.  Rather, append detailed log afterwards.
5305 2003-06-23  Akim Demaille  <akim@epita.fr>
5307         * tests/local.at (AT_CHECK_CONFIGURE): Adjust to the verbose being
5308         always run: output config.log on $at_group_log.
5310 2003-06-23  Akim Demaille  <akim@epita.fr>
5312         * tests/torture.at (#define header templates): Don't use quotes in
5313         C++ comments as it puzzles Emacs' sh font-lock-mode.
5315 2003-06-23  Akim Demaille  <akim@epita.fr>
5317         * tests/mktests.sh (au_exclude_egrep): Fix output copyright notice.
5318         * lib/autom4te.cfg (args): Add local.at? for Autotest args.
5319         * tests/atspecific.m4: Rename as...
5320         * tests/local.at: This.
5321         * tests/suite.at: Move the globals into...
5322         * tests/local.at: here.
5323         * tests/Makefile.am: Adjust.
5324         * doc/autoconf.texi (testsuite Scripts): Adjust.
5326 2003-06-21  Kevin Ryde  <user42@zip.com.au>
5328         * lib/autoconf/c.m4 (_AC_PROG_CC_STDC): Extend test program to get an
5329         error from OSF 4.0 Compaq cc in its default almost-ANSI mode, thereby
5330         ensuring we add -std1 for full-ANSI.
5332         * doc/autoconf.texi (hdrindex): New macro.
5333         Add index entries for portability of various standard header files.
5335 2003-06-20  Akim Demaille  <akim@epita.fr>
5337         * configure.ac: Bump to 2.57b.
5339 2003-06-20  Akim Demaille  <akim@epita.fr>
5341         Version 2.57a.
5343 2003-06-20  Akim Demaille  <akim@epita.fr>
5345         * bin/autom4te.in: Don't rely on $HOME being defined.
5346         Reported by Marc Espie as PR/233.
5348 2003-06-20  Akim Demaille  <akim@epita.fr>
5350         * lib/autotest/general.m4: Use at_times_file only if used.
5351         From Nicolas Joly.
5353 2003-06-20  Akim Demaille  <akim@epita.fr>
5355         * config/config.guess, config/config.sub, config/elisp-comp,
5356         * config/install-sh, config/mkinstalldirs, doc/standards.texi:
5357         Update from masters.
5359 2003-06-11  Paolo Bonzini  <bonzini@gnu.org>
5361         * doc/autoconf.texi (Writing testsuite.at): Document AT_XFAIL_IF
5362         * lib/autotest/general.m4 (AT_XFAIL_IF): New macro.
5363         (TEST_SCRIPT): New diversion.
5364         (AT_SETUP): Divert output to TEST_SCRIPT and move some code...
5365         (AT_CLEANUP): ...to here.  Undivert TEST_SCRIPT.
5366         (AT_INIT): Support for expected failures.
5368 2003-06-02  Akim Demaille  <akim@epita.fr>
5370         * bin/autom4te.in, bin/autoscan.in, bin/autoheader.in: White space
5371         changes.
5372         * lib/Autom4te/General.pm (&backname): Remove, no longer used by
5373         Autoconf nor Automake.
5374         (&contents): New, from Automake.
5375         PODify.
5377 2003-05-28  Paul Eggert  <eggert@twinsun.com>
5379         * NEWS, doc/autoconf.texi (Particular Functions),
5380         lib/autoconf/functions.m4 (AC_FUNC_MKTIME): Check that mktime
5381         is the inverse of localtime.
5383 2003-05-25  Alexandre Duret-Lutz  <adl@gnu.org>
5385         * lib/Autom4te/General.pm (END): Print diagnostics to STDERR.
5386         (handle_exec_errors): New function.  Work around $! being
5387         altered by WEXITSTATUS.
5388         (xqx, xsystem): Use handle_exec_errors.
5390 2003-05-23  Alexandre Duret-Lutz  <adl@gnu.org>
5392         * lib/Autom4te/General.pm (END): Rewrite exit code processing.
5393         Do not call `_exit()', simply modify `$?'.
5394         (xsystem): Reset $! before running system, and check it afterward.
5395         * tests/tools.at (autoupdating AC_PREREQ): Expect exit status
5396         63 for version mismatches.
5398 2003-05-23  Akim Demaille  <akim@epita.fr>
5400         * lib/autoconf/status.m4: Prefer "TAB-SP" to "SP-TAB", because of
5401         Emacs' dangerous whitespace.el behavior (smashing "useless" spaces in
5402         the middle of a line).
5403         * lib/m4sugar/m4sugar.m4: Likewise.
5404         Remove useless spaces in comments.
5406 2003-05-23  Akim Demaille  <akim@epita.fr>
5408         * lib/m4sugar/m4sugar.m4 (m4_version_prereq): Failure causes an
5409         exit 63, so that we (or Automake's "missing") can tell the
5410         difference with a plain failure.
5411         * doc/autoconf.texi (Notices): Adjust.
5413 2003-05-23  Akim Demaille  <akim@epita.fr>
5415         * Makefile.am, bin/Makefile.am, config/Makefile.am,
5416         * doc/Makefile.am, lib/autoconf/Makefile.am, tests/Makefile.am:
5417         White spaces cleanup.
5419 2003-05-22  Jim Meyering  <jim@meyering.net>
5420             Paul Eggert  <eggert@twinsun.com>
5422         * lib/autoconf/c.m4 (_AC_PROG_CXX_EXIT_DECLARATION):
5423         Remove `#include <stdlib.h>' from the list; we should never
5424         make confdefs.h include <stdlib.h> or <cstdlib>, because the
5425         resulting namespace pollution would cause other tests to fail.
5426         Configure scripts run with some older versions of g++ and HP's
5427         aCC would fail due to such an #include.  Problems reported by
5428         Matthew Mueller in <http://bugs.debian.org/120704> and by
5429         Keith Bostic in
5430         <http://mail.gnu.org/archive/html/autoconf/2003-05/msg00063.html>.
5431         In the test, use the test declaration before including <stdlib.h>,
5432         as that's closer to how it'll be used.
5434 2003-05-23  Akim Demaille  <akim@epita.fr>
5436         * doc/autoconf.texi (Header Portability): ucred.h.
5437         From Ian Redfern.
5439 2003-05-22  Paolo Bonzini  <bonzini@gnu.org>
5441         Overhaul Autotest's logging: generate separate log files
5442         in testsuite.dir/NNN/testsuite.log, and append them to
5443         testsuite.log instead of re-running the test verbosely.
5445         * lib/autotest/general.m4 (AT_INIT): Use a single redirected
5446         file descriptor, write 0 to at_status_file instead of setting
5447         at_status=0, initialize some new variables (at_status_file,
5448         at_group_log, at_suite_log, at_tee_pipe).  Remove the cruft
5449         to rerun the tests, instead append the at_group_log to the
5450         at_suite_log when a test fails.
5451         (AT_SETUP): pipe the test case's output into at_tee_pipe,
5452         with the AS_MESSAGE_LOG_FD redirected to stdout.
5453         (AT_CLEANUP): save the output status in $at_status_file
5454         and restore it, redirect the AS_MESSAGE_LOG_FD back to
5455         its original place.
5456         (AT_CHECK): since tests are run with a redirected stdout,
5457         and used to be re-run in verbose mode, turn some $at_verbose
5458         into echo, and don't redirect the output of testing stdout
5459         and stderr.
5461         * lib/autotest/autoconf.texi (testsuite Scripts): Update
5462         the name of the debugging directory and information about
5463         its contents.
5465 2003-05-22  Paolo Bonzini  <bonzini@gnu.org>
5467         * lib/m4sugar/m4sh.m4 (AS_REQUIRE): Actually use the 2nd
5468         parameter.
5470 2003-05-22  Akim Demaille  <akim@epita.fr>
5472         * lib/autoconf/autotest.m4, lib/autoconf/autoupdate.m4
5473         * lib/autoconf/fortran.m4 lib/autoconf/general.m4
5474         * lib/autoconf/headers.m4 lib/autoconf/oldnames.m4
5475         * lib/autoconf/status.m4: Fix and adjust copyright notices.
5477 2003-05-22  Akim Demaille  <akim@epita.fr>
5479         * aclocal.m4, bin/autoconf.as, lib/autoconf/autoconf.m4,
5480         * lib/autoconf/autoheader.m4, lib/autoconf/autoupdate.m4,
5481         * lib/autoconf/c.m4, lib/autoconf/fortran.m4,
5482         * lib/autoconf/general.m4, lib/autoconf/headers.m4,
5483         * lib/autoconf/lang.m4, lib/autoconf/libs.m4,
5484         * lib/autoconf/programs.m4, lib/autoconf/specific.m4,
5485         * lib/autoconf/status.m4, lib/autoconf/types.m4,
5486         * lib/autotest/general.m4, lib/m4sugar/m4sugar.m4,
5487         * tests/atspecific.m4, tests/base.at, tests/compile.at,
5488         * tests/foreign.at, tests/m4sh.at, tests/semantics.at,
5489         * tests/tools.at, tests/torture.at:
5490         Whitespace clean up.
5491         Suggested by Jim Meyering.
5493 2003-05-22  Akim Demaille  <akim@epita.fr>
5495         * lib/autoconf/functions.m4 (AC_FUNC_GETLOADAVG): Restore smashed
5496         ' \t' as '\t ' so that Emacs' whitespace.el keep it.
5497         Reported by Jim Meyering.
5499 2003-05-22  Akim Demaille  <akim@epita.fr>
5501         * doc/autoconf.texi: Replace AC_HELP_STRING AS_HELP_STRING.
5502         Add AC_HELP_STRING  to the obsolete macros section.
5503         Typos.
5504         Use '@.' for sentences that ended in a capital letter.
5505         From Art Haas.
5507 2003-05-22  Akim Demaille  <akim@epita.fr>
5509         * config/config.guess, config/config.sub, config/elisp-comp,
5510         * config/install-sh, config/mdate-sh, config/mkinstalldirs,
5511         * config/texinfo.tex, doc/standards.texi: Update from masters.
5513 2003-05-21  Paolo Bonzini  <bonzini@gnu.org>
5515         * lib/m4sugar/m4sh.m4 (AS_VAR_SET): Escape the RHS before passing
5516         it to eval.
5518 2003-05-21  Akim Demaille  <akim@epita.fr>
5520         * bin/autoupdate.in ($m4): Fix quotation.
5521         Reported by Martin Mokrejs.
5523 2003-05-19  Paul Eggert  <eggert@twinsun.com>
5525         * ChangeLog, ChangeLog.2, THANKS, lib/m4sugar/m4sugar.m4:
5526         Remove non-ASCII characters.
5528 2003-05-18  Paolo Bonzini  <bonzini@gnu.org>
5530         * tests/semantics.at (AC_SEARCH_LIBS): New test.
5531         * tests/semantics.at (AC_CHECK_HEADERS_OLD,
5532         AC_CHECK_HEADERS_NEW): New tests.
5534 2003-05-17  Akim Demaille  <akim@epita.fr>
5536         * lib/autoconf/functions.m4: Use the default includes so that
5537         memcmp be declared before being tested.
5538         Reported by Sander Niemeijer.
5539         (AC_FUNC_ERROR_AT_LINE, AC_FUNC_GETGROUPS, AC_FUNC_STRNLEN): Likewise.
5540         * doc/autoconf.texi (Default Includes): Document
5541         AC_INCLUDES_DEFAULT.
5543 2003-05-17  Akim Demaille  <akim@epita.fr>
5545         * lib/autoconf/specific.m4: Include signal.h and unistd.h.
5546         * doc/autoconf.texi (Obsolete Macros): Adjust.
5547         Reported by Werner LEMBERG and Debian Bug 190886.
5549 2003-05-16  Akim Demaille  <akim@epita.fr>
5551         * lib/m4sugar/m4sh.m4 (_AS_UNSET_PREPARE): s/FOO/as_foo/ to avoid
5552         user name space clashes.
5553         Reported by Bruno Haible.
5555 2003-05-16  Akim Demaille  <akim@epita.fr>
5557         * bin/autoheader.in, bin/autom4te.in, bin/autoreconf.in,
5558         * bin/autoscan.in, bin/autoupdate.in, bin/ifnames.in (BEGIN): Make
5559         them uniform, and more robust to Perl special characters.
5560         Reported by Martin Mokrejs.
5562 2003-05-14  Akim Demaille  <akim@epita.fr>
5564         * tests/foreign.at (Libtool): Skip all Libtools pre 1.4.
5566 2003-05-14  Akim Demaille  <akim@epita.fr>
5568         * doc/autoconf.texi (Header Portability): X11/extensions/scrnsaver.h,
5569         linux/irda.h.
5571 2003-05-12  Akim Demaille  <akim@epita.fr>
5573         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Improve the
5574         message.
5575         From Matthias Andree.
5577 2003-05-07  Alexandre Duret-Lutz  <adl@gnu.org>
5579         * lib/Autom4te/XFile.pm (lock, truncate): Do not pass @_ to flock
5580         and truncate.
5582 2003-05-06  Akim Demaille  <akim@epita.fr>
5584         Don't try to be smart with aclocal 1.8+ because (i) aclocal no
5585         longer updates aclocal.m4 if useless, (ii) if a file m4_included
5586         by aclocal.m4 is changed it might require the importing of another
5587         m4 extension file, i.e., aclocal must be run.
5589         * bin/autoreconf.in (&run_aclocal, $aclocal_supports_force): New.
5590         (&parse_args): Use --force with aclocal if required and supported.
5591         (&autoreconf_current_directory): Use &run_aclocal.
5593 2003-05-06  Akim Demaille  <akim@epita.fr>
5595         Lock autom4te's cache.
5597         * lib/Autom4te/XFile.pm ($me, &name, &lock, &truncate, &seek): New.
5598         * bin/autom4te.in (&Request::save, &Request::load): Use an IO::File
5599         argument instead of a file name, so that the request file remains
5600         open during the whole autom4te run.
5601         ($icache_file): New.
5602         (&freeze): Lock the $icache_file.
5604 2003-04-29  Derek Price  <derek@ximbiot.com>
5606         * lib/autotest/general.m4 (AT_KEYWORDS): Don't use a comma as the
5607         seperator with m4_append_uniq().  It doesn't work.
5608         (AT_CLEANUP): Add `;' to end of at_help_all.
5609         (AT_INIT): Allow --keywords to be specified more than once.  When
5610         grepping $at_help_all for keywords, use the field and keyword
5611         seperators to ensure a complete keyword match.  Alter at_prev handling
5612         to support the new --keywords behavior.
5614 2003-04-27  Karl Berry  <karl@freefriends.org>
5616         * doc/autoconf.texi: Make the dir entries in the autoconf manual
5617         align better with others.  I also made some of the individual
5618         entries on one line, for brevity and to make it easier for me to
5619         sort my dir-example file in the Texinfo distribution :).
5621 2003-04-12  Jim Meyering  <jim@meyering.net>
5623         * NEWS: Mention the new macro.
5624         * lib/autoconf/c.m4 (AC_C_RESTRICT): New macro.
5625         * doc/autoconf.texi (C Compiler): Describe AC_C_RESTRICT.
5626         * tests/c.at: Test AC_C_RESTRICT.
5627         * tests/mktests.sh (ac_exclude_list): Add exclusion for AC_C_RESTRICT.
5629 2003-04-08  Akim Demaille  <akim@epita.fr>
5631         * bin/ifnames.in: Skip C++ comments.
5632         From Jeremy Yallop.
5634 2003-04-08  Akim Demaille  <akim@epita.fr>
5636         * GNUmakefile (SHELL): Don't assume sh is in /bin/.
5637         From Ilya Zakharevich.
5639 2003-04-08  Akim Demaille  <akim@epita.fr>
5641         * doc/autoconf.texi (Particular Headers): Some about sys/socket.h,
5642         net/if.h, stdlib.h.
5644 2003-04-01  Derek Price  <derek@ximbiot.com>
5646         * lib/autoconf/programs.m4 (AC_PROG_INSTALL): Correct syntax error
5647         from Akim's checkin of 2003-03-29.
5649 2003-04-01  Derek Price  <derek@ximbiot.com>
5651         * tests/torture.at (Configuring subdirectories): Add missing
5652         close-quote for Akim's change from 2003-03-28.
5654 2003-04-01  Akim Demaille  <akim@epita.fr>
5656         * doc/autoconf.texi (ac, at, ms): Rename these indexes as...
5657         (AC, AT, MS): these.
5658         (shortindexflag, @acindex, @ahindex, @asindex, @atindex, @msindex):
5659         New.
5660         Use them.
5661         * doc/Makefile.am (CLEANFILES): Adjust.
5662         (TEXI2DVI): Make it --batch.
5664 2003-03-31  Derek Price  <derek@ximbiot.com>
5666         * lib/autotest/general.m4: Revert the checkin from 2003-03-27
5667         which removed the main loop.
5668         Thanks to Akim Demaille.
5670 2003-03-29  Akim Demaille  <akim@epita.fr>
5672         * lib/autoconf/programs.m4 (AC_PROG_INSTALL): Skip OS/2's install,
5673         that starts a GUI.
5674         From Ilya Zakharevich.
5676 2003-03-29  Akim Demaille  <akim@epita.fr>
5678         * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_MONGREL): The
5679         documentation to read is Autoconf's.
5680         Suggested by Paul Eggert.
5682 2003-03-28  Akim Demaille  <akim@epita.fr>
5684         * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_MONGREL): Suggest
5685         reading the section "Present But Cannot Be Compiled" when the
5686         header causes problems.
5688 2003-03-28  Akim Demaille  <akim@epita.fr>
5690         * tests/torture.at (Configuring subdirectories): Require aclocal
5691         1.4, otherwise the test fails, as it does support configure.ac.
5692         This fixes the "test 40 failed" bug reports.
5694 2003-03-28  Akim Demaille  <akim@epita.fr>
5696         * doc/autoconf.texi (C Compiler): `#line' portability.
5697         From Paul Eggert and Nelson H. F. Beebe.
5699 2003-03-27  Derek Price  <derek@ximbiot.com>
5701         * lib/autotest/general.m4: Eliminate main loop and reorganize test
5702         layout in order to allow scripting around test groups.
5704 2003-03-27  Derek Price  <derek@ximbiot.com>
5706         * lib/autotest/general.m4 (PARSE_ARGS,PARSE_ARGS_END,HELP,HELP_MODES,
5707         HELP_TUNING,HELP_OTHER,HELP_END,PREPARE_TESTS,TESTS_END): Define and
5708         use new diversions in preparation for accepting new arguments and
5709         allowing scripting around tests.
5710         (OPTIONS,TAIL): Remove these diversions to make way for the ones above.
5712 2003-03-26  Derek Price  <derek@ximbiot.com>
5714         * lib/autoconf/general.m4 (AC_ARG_VAR): Use AS_HELP_STRING instead of
5715         obsolete AC_HELP_STRING.
5716         (AC_HELP_STRING): AU_DEFUN to...
5717         * lib/m4sugar/m4sh.m4 (AS_HELP_STRING): ...here.
5718         * tests/m4sh.at (AS_HELP_STRING): New test.
5720         * tests/acgeneral.at: Regenerated.
5722 2003-03-26  Derek Price  <derek@ximbiot.com>
5724         * lib/autotest/general.m4: s/DEFAULT/DEFAULTS/ since it makes more
5725         sense.  Verbosify the diversion definitions comment.
5727 2003-03-26  Derek Price  <derek@ximbiot.com>
5729         * lib/autotest/general.m4 (AT_INIT): Remove redundant call to
5730         AS_PREPARE.
5732 2003-03-21  Eric Siegerman  <eric_97@pobox.com>
5734         * doc/autoconf.texi (Present But Cannot Be Compiled):
5735         Grammar fixes and minor rewording. (trivial change)
5737 2003-03-06  Paul Eggert  <eggert@twinsun.com>
5739         Work around a problem noted by Nelson H. F. Beebe with coreutils
5740         4.5.9: Sun c89 (Sun WorkShop 6 update 2 C 5.3 Patch 111679-08
5741         2002/05/09) rejects '#line 32768 "configure"' because the line
5742         number overflows.
5743         * lib/autoconf/c.m4 (AC_LANG_SOURCE(C)): Do not generate
5744         #line directives.
5745         * lib/autoconf/lang.m4 (AC_LANG_SOURCE): Fix comment to match this.
5746         * doc/autoconf.texi (Generating Sources): Document this.
5748 2003-03-01  Richard Dawe  <rich@phekda.freeserve.co.uk>
5750         * tests/atspecific.m4 (AT_CHECK_AUTOM4TE): Normalize
5751         file name for the m4 program, when it has an "exe" file extension.
5752         DJGPP's error messages include the error code in brackets -
5753         remove the error code during normalization.
5755 2003-02-28  Akim Demaille  <akim@epita.fr>
5757         * doc/autoconf.texi (Present But Cannot Be Compiled): New.
5759 2003-02-28  Alexandre Duret-Lutz  <adl@gnu.org>
5761         * doc/autoconf.texi (Limitations of Make): Remove the section
5762         about `$<' in inference rules, it was a bogus interpretation of
5763         an old Automake change.  Discuss NetBSD, FreeBSD, OpenBSD, and
5764         Tru64 make in the "target lookup" section.
5765         (Automake): Automake 1.5+ no longer requires special tools to be
5766         present on the developer's host.
5768 2003-02-26  Richard Dawe  <rich@phekda.freeserve.co.uk>
5770         * bin/autoheader.in (BEGIN): For DJGPP SHELL may not be set
5771         to a shell that can handle redirection or quoting correctly.
5772         Override SHELL with the shell detected by configure.
5773         Use of $^O suggested by Tim van Holder.
5774         * bin/autom4te.in (BEGIN): Likewise.
5775         * bin/autoreconf.in (BEGIN): Likewise.
5776         * bin/autoscan.in (BEGIN): Likewise.
5777         * bin/autoupdate.in (BEGIN): Likewise.
5778         * bin/ifnames.in (BEGIN): Likewise.
5780         * bin/ifnames.in: Add final newline to help and version messages.
5782         * lib/autoconf/programs.m4 (AC_PROG_MAKE_SET): Translate colons,
5783         to cope with DOS-style absolute paths, when constructing
5784         ${ac_make}.
5786         * lib/autoconf/status.m4 (_AC_OUTPUT_HEADERS, _AC_OUTPUT_FILES):
5787         When constructing paths with IFS=:, quote the path. If we're
5788         constructing a DOS-style absolute path, we don't want to split it
5789         on the colon.
5791         * tests/atspecific.m4 (AT_CHECK_CONFIGURE): Fix typo
5792         in description.
5794 2003-02-25  Pavel Roskin  <proski@gnu.org>
5796         * bin/autoheader.in: Add missing newline when printing
5797         suggestion how change AC_DEFINE call.
5799 2003-02-24  Paul Eggert  <eggert@twinsun.com>
5801         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Fix typo in
5802         2002-09-01 patch by replacing "test -n" with "test -z".
5803         This fixes a bug found by Jeff Painter and reported by Tom Epperly in
5804         <http://mail.gnu.org/archive/html/autoconf/2003-02/msg00139.html>.
5806         * doc/autoconf.texi (Shell Substitutions): test -n -> test -z,
5807         to fix a mismatch between example and discussion.
5809 2003-02-24  Kevin Ryde  <user42@zip.com.au>
5811         * doc/autoconf.texi (Limitations of Builtins): Add notes on printf
5812         format starting with "-".
5814 2003-02-20  Alexandre Duret-Lutz  <adl@gnu.org>
5816         * doc/autoconf.texi (Limitations of Make): `foo=bar make -e'
5817         is not portable inside Makefile.
5819 2003-02-20  Akim Demaille  <akim@epita.fr>
5821         * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_MONGREL): When
5822         compiler says yeah, but preproc says nope, compiler is right.
5823         Conversely, prompt the reader to send a bug report to the
5824         maintainers of the package, not of Autoconf.
5826 2003-02-20  Klee Dienes  <kdienes@apple.com>
5828         * bin/autoreconf.in (autoreconf_current_directory): Properly
5829         handle an empty aclocal.m4.
5831 2003-02-20  Akim Demaille  <akim@epita.fr>
5833         * lib/autoconf/general.m4 (AC_PREFIX_PROGRAM): Quote
5834         $ac_prefix_program.
5835         From Larry Jones.
5837 2002-12-23  Paul Eggert  <eggert@twinsun.com>
5839         * lib/autoconf/c.m4 (AC_LANG_FUNC_LINK_TRY(C)): Define $1 to an
5840         innocuous variant befor including <limits.h> or <assert.h>.  This
5841         works around a bug reported by Albert Chin: HP-UX 11i
5842         (and earlier versions) have a <limits.h> that declares
5843         gettimeofday and many other functions.
5845 2002-12-03  Paul Eggert  <eggert@twinsun.com>
5847         Version 2.57.
5849         * NEWS, configure.ac: Update version.
5851         * doc/fdl.texi: Upgrade to FDL version 1.2.
5853         * lib/autoconf/c.m4 (AC_LANG_FUNC_LINK_TRY(C)): Use the function f
5854         nontrivially in main's body, so that f's external declaration is
5855         not optimized away in AIX.  This should fix the bug reported by
5856         Martin Frydl in
5857         <http://mail.gnu.org/pipermail/autoconf/2002-November/014508.html>.
5859         * lib/autoconf/c.m4 (AC_LANG_FUNC_LINK_TRY(C),
5860         _AC_PROG_PREPROC_WORKS_IFELSE): Use <limits.h> if __STDC__ is
5861         defined, to support freestanding compilers.  This should fix the
5862         bug reported by Momchil Velkov in
5863         <http://mail.gnu.org/pipermail/autoconf/2002-November/014490.html>.
5865         * doc/autoconf.texi (Obsolete Macros): Fix typos (insert empty
5866         arg, AC_DEFINE -> AC_DEFINE_UNQUOTED) in documentation for
5867         obsolete AC_CHECK_TYPE.  The missing empty arg was reported
5868         by Simon Josefsson in
5869         <http://mail.gnu.org/pipermail/autoconf-patches/2002-December/008830.html>.
5871         * Makefile.maint (www-gnu): New macro.
5872         (standards.texi-url_prefix, make-stds.texi-url_prefix): Use it, as
5873         the location has moved.
5875 2002-12-02  Martin Frydl  <martin@systinet.com>
5877         * bin/autom4te.in (at_flatten): rewritten to avoid M4 problem when
5878         \(.*\) match is too long and there is something more to be checked.
5879         <http://mail.gnu.org/pipermail/autoconf/2002-November/014524.html>
5881 2002-11-15  Akim Demaille  <akim@epita.fr>
5883         Version 2.56.
5885         * config/install-sh: chmod +x.
5886         From Paul Eggert.
5887         * config/move-if-change: Indenting changes.
5888         * Makefile.am (AUTOMAKE_OPTIONS): Move to...
5889         * configure.ac (AM_INIT_AUTOMAKE): here.
5890         Require 1.7.1.
5892 2002-11-14  Akim Demaille  <akim@epita.fr>
5894         Version 2.55.
5896         * config/config.guess, config/config.sub, config/install-sh:
5897         Update from masters.
5899 2002-11-14  Akim Demaille  <akim@epita.fr>
5901         * Makefile.maint: Sync with Bison, i.e.:
5902         (po-check): Scan .l and .y files instead of the
5903         .c and the .h files that they generate.  This fixes the bug
5904         reported by Tim Van Holder in:
5905         <http://mail.gnu.org/pipermail/bison-patches/2002-November/001352.html>
5906         Look for N_ as well as for _.  Try to avoid matching #define for
5907         N_ and _.
5908         From Paul Eggert.
5910 2002-11-14  Akim Demaille  <akim@epita.fr>
5912         * doc/autoconf.texi (C Compiler): Compiling several files at once.
5913         From Paul Eggert and Albert Chin-A-Young.
5915 2002-11-14  Akim Demaille  <akim@epita.fr>
5917         * doc/autoconf.texi (C Compiler): Solitary backslashes.
5918         From Paul Eggert and Albert Chin-A-Young.
5920 2002-11-14  Kevin Ryde  <user42@zip.com.au>
5922         * lib/autoconf/c.m4 (AC_LANG_FUNC_LINK_TRY(C)): Initialize f=$1 rather
5923         than assigning in main, to avoid HP cc +O3 optimizing it away.
5925 2002-11-12  Peter Eisentraut  <peter_e@gmx.net>
5927         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Add -q
5928         option.  Process --recheck after parsing all options.  Pass -q
5929         option to configure on --recheck.
5930         (AC_OUTPUT): Pass -q from configure to config.status.
5931         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Strip -q from
5932         arguments to record.
5933         * doc/autoconf.texi (config.status Invocation): Document
5934         config.status -q option.
5936 2002-11-07  Alexandre Duret-Lutz  <adl@gnu.org>
5938         * bin/autoscan.in (scan_file): Scan Makefile.am too. Ignore
5939         Makefile.in if Makefile.am exists.
5940         (output): Strip `.am' from Makefiles.  Don't
5941         output AC_CONFIG_FILES if no Makefiles were found.
5943 2002-11-07  Akim Demaille  <akim@epita.fr>
5945         * Makefile.am (cvs_files): Add elisp-comp, mdate-sh.
5946         (local_updates): New.
5947         * Makefile.maint: Update, from CVS Bison.
5948         (local_updates): New.
5950 2002-11-06  Akim Demaille  <akim@epita.fr>
5952         * lib/autoconf/c.m4 (AC_LANG_FUNC_LINK_TRY): Wrap the `f'
5953         declaration in extern "C" too.
5954         Reported by Roberto Bagnara.
5956 2002-11-06  Akim Demaille  <akim@epita.fr>
5958         * tests/torture.at (Configuring subdirectories): Don't use grep
5959         -w.
5960         * doc/autoconf.texi (Limitations of Usual Tools): Grep -w.
5961         Reported by Ezra Peisach.
5963 2002-11-05  Akim Demaille  <akim@epita.fr>
5965         * lib/autoconf/autoheader.m4 (_AH_TEMPLATE_OLD, _AH_VERBATIM_OLD):
5966         Remove.
5967         We _have_ to stop using the old compatibility scheme that tried to
5968         avoid useless backslashes because Libtool 1.4.3 contains a
5969         AC_DEFINE([error_t], [int],
5970         [Define to a type to use for \`error_t' if it is not
5971         otherwise available.])
5972         We _have_ to quote the single quote and backslashes with \.  The
5973         old compatibility scheme saw that ` was backslashed, and therefore
5974         did not quote the single quote.  Hence before this patch, Autoconf
5975         was not compatible with Libtool.
5977 2002-11-04  Paul Eggert  <eggert@twinsun.com>
5979         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Set the following variables,
5980         too: LC_ADDRESS, LC_IDENTIFICATION, LC_MEASUREMENT, LC_MONETARY,
5981         LC_NAME, LC_PAPER, LC_TELEPHONE.
5982         * doc/autoconf.texi (Special Shell Variables): Mention those vars.
5984 2002-11-04  Akim Demaille  <akim@epita.fr>
5986         Version 2.54c.
5988         * Makefile.maint (update, cvs-update, po-update, do-po-update):
5989         New.
5990         * config/texinfo.tex: Update.
5992 2002-11-03  Akim Demaille  <akim@epita.fr>
5994         * bin/autoreconf.in (&autoreconf_current_directory): New, extracted
5995         from...
5996         (&autoreconf): here.
5997         ($help, $make, &parse_args, &autoreconf_current_directory):
5998         Support -m/--make.
5999         * doc/autoconf.texi (autoreconf Invocation): Adjust.
6001 2002-10-31  Bruno Haible  <bruno@clisp.org>
6003         * lib/autoconf/functions.m4 (_AC_FUNC_MALLOC_IF): Change message.
6004         Change name of cache variable to ac_cv_func_malloc_0_nonnull.
6005         (AC_FUNC_MALLOC): Change description of HAVE_MALLOC macro.
6006         (_AC_FUNC_REALLOC_IF): Change message. Change name of cache variable
6007         to ac_cv_func_realloc_0_nonnull.
6008         (AC_FUNC_REALLOC): Change description of HAVE_REALLOC macro.
6010 2002-10-31  Akim Demaille  <akim@epita.fr>
6012         The test suite was no longer checking for trailing envvars and files.
6014         * tests/atspecific.m4 (AC_STATE_SAVE): Don't use quadrigraphs here.
6015         (AT_CHECK_ENV): Make sure the `state-ls.before file exists.
6017 2002-10-31  Akim Demaille  <akim@epita.fr>
6019         * lib/autoconf/programs.m4 (AC_PROG_MAKE_SET): Use and display
6020         `$(MAKE)' instead of '${MAKE}' to emphasize that we refer to the
6021         Make variable, not a shell variable.
6022         Suggested by Bruno Haible.
6024 2002-10-31  Akim Demaille  <akim@epita.fr>
6026         * bin/autom4te.in (load_configuration): Reject #args out of any
6027         language.
6029 2002-10-31  Akim Demaille  <akim@epita.fr>
6031         * lib/autoconf/general.m4 (_AC_MSG_LOG_CONFTEST): New.
6032         (_AC_PREPROC_IFELSE, _AC_COMPILE_IFELSE, _AC_LINK_IFELSE)
6033         (_AC_RUN_IFELSE): Use it.
6034         * lib/autoconf/lang.m4 (_AC_COMPILER_OBJEXT):
6035         (_AC_COMPILER_EXEEXT_DEFAULT): Likewise.
6036         * lib/autoconf/c.m4 (AC_LANG_SOURCE): Don't include confdefs.h,
6037         inline it.
6039 2002-10-30  Akim Demaille  <akim@epita.fr>
6041         * bin/autom4te.in (&parse_args, $help): Support --no-cache.
6042         * doc/autoconf.texi (autom4te Invocation): Adjust.
6043         Suggested by Tim van Holder.
6045 2002-10-29  Paul Eggert  <eggert@twinsun.com>
6047         * doc/autoconf.texi (Particular Functions): AC_FUNC_MALLOC and
6048         AC_FUNC_REALLOC check for compatibility with glibc, not POSIX.
6049         Problem reported by Bruno Haible.
6051 2002-10-29  Akim Demaille  <akim@epita.fr>
6053         * doc/autoconf.texi (Header Templates): Put also in words what the
6054         pictures says to assist free style readers.
6055         (Customizing autom4te): s/--cache=/--cache /.
6057 2002-10-29  Akim Demaille  <akim@epita.fr>
6059         * lib/autoconf/functions.m4 (_AC_FUNC_VFORK): Include stdlib.h and
6060         sys/wait.h.
6061         sparc_address_test returns void.
6062         Use it with an argument, as prototyped.
6063         From Bruno Haible.
6065 2002-10-29  Akim Demaille  <akim@epita.fr>
6067         * doc/autoconf.texi (Subdirectories): Cygnus dirs have
6068         configure.in, not configure.ac.
6069         Reported by Bruno Haible.
6071 2002-10-29  Akim Demaille  <akim@epita.fr>
6073         * tests/torture.at (Deep Package): New test.
6074         (Configuring subdirectories): Don't use a testSubDir as Autotest
6075         now does it itself.
6077 2002-10-29  Akim Demaille  <akim@epita.fr>
6079         * bin/autoreconf.in (&parse_args, $help): Support --warnings.
6080         * doc/autoconf.texi (Invoking autom4te): Rename as...
6081         (autom4te Invocation): this, for consistency with the other nodes.
6083 2002-10-29  Akim Demaille  <akim@epita.fr>
6085         * lib/autom4te.in (Autoconf): s/automate/autom4te/.
6086         Reported by Ralf Corsepius.
6088 2002-10-29  Akim Demaille  <akim@epita.fr>
6090         * lib/m4sugar/m4sh.m4 (_AS_QUOTE): The warning about quoted
6091         characters is a back as an `obsolete' warning now.
6092         Reported by Ralf Corsepius.
6094 2002-10-28  Akim Demaille  <akim@epita.fr>
6096         * configure.ac: Bump to 2.54c.
6098 2002-10-28  Akim Demaille  <akim@epita.fr>
6100         Version 2.54b.
6102         * tests/foreign.at (Libtool): Adjust to broken libtoolize.
6104 2002-10-28  Akim Demaille  <akim@epita.fr>
6106         * tests/atspecific.m4 (AT_CHECK_AUTOM4TE): Be robust to different
6107         m4 executable names, and different GNU M4 version.
6108         Reported by Ezra Peisach and Paul Jarc.
6110 2002-10-27  Akim Demaille  <akim@epita.fr>
6112         * lib/autoconf/functions.m4 (_AC_FUNC_VFORK): Really use
6113         AC_RUN_IFELSE.
6115 2002-10-27  Akim Demaille  <akim@epita.fr>
6117         * doc/autoconf.texi: More AC_MSG_FAILURE promotion.
6118         * lib/autoconf/fortran.m4 (_AC_F77_NAME_MANGLING):
6119         Die when a simple Fortran program cannot be compiled.
6120         * lib/autoconf/lang.m4 (AC_LANG_CALL, AC_LANG_FUNC_LINK_TRY):
6121         Issue a warning if no function is given.
6123 2002-10-27  Akim Demaille  <akim@epita.fr>
6125         * doc/autoconf.texi (Run Time): Document AC_RUN_IFELSE.
6126         Move the documentation of AC_TRY_RUN to...
6127         (Obsolete Macros): here.
6128         Adjust all the old samples still using AC_TRY_RUN to AC_RUN_IFELSE.
6129         (autoconf Invocation): Remove the duplicates with `invoking
6130         autom4te'.
6131         * lib/autoconf/headers.m4 (AC_HEADER_STDC): Don't use AC_TRY_RUN.
6132         * lib/autoconf/c.m4 (AC_C_BIGENDIAN): Likewise.
6134 2002-10-27  Akim Demaille  <akim@epita.fr>
6136         * doc/autoconf.texi (Generating Sources): Document AC_LANG_CALL
6137         and AC_LANG_FUNC_LINK_TRY.
6138         (Examining Libraries): Rename as...
6139         (Running the Linker): this.
6140         Document AC_LINK_IFELSE.
6141         Move the documentation of AC_TRY_LINK and AC_TRY_LINK_FUNC to...
6142         (Obsolete Macros): here.
6143         * lib/autoconf/fortran.m4 (_AC_F77_NAME_MANGLING): Don't use
6144         AC_TRY_LINK_FUNC nor AC_TRY_LINK.
6145         * lib/autoconf/libs.m4 (AC_CHECK_LIB, AC_PATH_XTRA): Likewise.
6146         * lib/autoconf/headers.m4 (AC_USG): Likewise.
6148 2002-10-27  Akim Demaille  <akim@epita.fr>
6150         * lib/autoconf/headers.m4 (AC_HEADER_STDC): Don't use AC_TRY_CPP.
6152         More `check config.log' messages.
6154         * lib/autoconf/general.m4 (AC_MSG_FAILURE): New.
6155         * doc/autoconf.texi (Printing Messages): Document it.
6156         * lib/autoconf/types.m4 (AC_CHECK_SIZEOF): Use it when
6157         appropriate.
6158         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT)
6159         (_AC_COMPILER_EXEEXT_WORKS, _AC_COMPILER_EXEEXT_O)
6160         (_AC_COMPILER_OBJEXT): Likewise.
6161         * lib/autoconf/general.m4 (AC_RUN_IFELSE): Likewise.
6162         * lib/autoconf/fortran.m4 (_AC_LANG_PROGRAM_C_F77_HOOKS):
6163         Likewise.
6164         * lib/autoconf/c.m4 (AC_PROG_CPP, AC_PROG_CC, AC_PROG_CXXCPP):
6165         Likewise.
6167         Deprecate macros with unusual interfaces.
6169         * lib/autoconf/general.m4 (AC_TRY_CPP, AC_TRY_LINK)
6170         (AC_TRY_COMPILE, AC_TRY_RUN): AU_DEFUN'ed.
6172         Document the new ones, and proper style.
6174         * doc/autoconf.texi (Generating Sources): New.
6175         Document AC_LANG_CONFTEST, AC_LANG_SOURCE, AC_LANG_PROGRAM.
6176         (Examining Declarations): Rename as...
6177         (Running the Preprocessor): this.
6178         Document AC_PREPROC_IFELSE.
6179         (Examining Syntax): Rename as...
6180         (Running the Compiler): this.
6181         (AC_FOO_IFELSE vs AC_TRY_FOO): New section.
6182         (Obsolete Macros): Move the definition of AC_TRY_CPP and
6183         AC_TRY_COMPILE here.
6185 2002-10-27  Akim Demaille  <akim@epita.fr>
6187         Move sections around.
6189         * doc/autoconf.texi (Customizing autom4te): Remove a lost
6190         sentence.
6191         Reported by Burno Haible.
6192         (Language Choice): Now the first section of...
6193         (Writing Tests): this section.
6194         Make the introduction less C-centric.
6195         (Guidelines, Test Functions): Move to...
6196         (Writing Test Programs): this new section.
6197         (Test Programs): Merge into...
6198         (Run Time): this.
6200 2002-10-27  Akim Demaille  <akim@epita.fr>
6202         * lib/freeze.mk ($(AUTOM4TE_CFG)): Add a missing dependency on
6203         autom4te.in that resulted in the need for two `make' runs.
6205 2002-10-27  Akim Demaille  <akim@epita.fr>
6207         * configure.ac: Bump to 2.54b.
6209 2002-10-25  Akim Demaille  <akim@epita.fr>
6211         Version 2.54a.
6213         * Makefile.maint: Update from the Coreutils.
6214         (AMTAR): Remove, obsolete.
6215         (automake_repo): Update to redhat.com.
6216         (cvs_file): New.
6217         Adjust to the fact that ansi2knr is now hosted by Automake.
6218         * Makefile.am (cvs_files): Add install-sh and mkinstalldirs.
6219         * config/config.guess, config/mkinstalldirs, config/texinfo.tex:
6220         Update from masters.
6221         * lib/autoscan/Makefile.am (EXTRA_DIST, nodist_autoscanlib_DATA):
6222         autoscan.pre is not to be installed, and autoscan.list is not to
6223         be shipped.
6224         (CLEANFILES): Add autoscan.list.
6225         (autoscan.list): Disable the cache.
6226         * bin/Makefile.am: Include freeze.mk.
6228 2002-10-25  Akim Demaille  <akim@epita.fr>
6230         * bin/autom4te.in (&load_configuration): Take the file as
6231         argument.
6232         (&parse_args): Handle -C, --cache.
6233         ($help): Adjust.
6234         (MAIN): Load ~/.autom4te.cfg and ./.autom4te.cfg.
6235         * lib/autom4te.in (Autoconf): Pass --cache=autom4te.cache.
6236         * doc/autoconf.texi (Invoking autom4te): Document --cache.
6237         Now a subsection of...
6238         (Using autom4te): This new section.
6239         (Customizing autom4te): New.
6240         (autom4te.cache): Adjust.
6242 2002-10-25  Akim Demaille  <akim@epita.fr>
6244         * doc/autoconf.texi (Generic Headers): More information on how to
6245         use AC_CHECK_HEADERS.
6247 2002-10-25  Akim Demaille  <akim@epita.fr>
6249         * bin/autoconf.as, bin/autoconf.in, bin/autoupdate.in ($help):
6250         Space changes.
6252 2002-10-25  Akim Demaille  <akim@epita.fr>
6254         * bin/autoscan.in (output): Output AC_PREREQ.
6255         (%needed_macros): Add AC_PREREQ so that configure.ac without one
6256         be reported.
6258 2002-10-23  Akim Demaille  <akim@epita.fr>
6260         * doc/autoconf.texi (Particular Headers): In AC_HEADER_STDBOOL,
6261         document _Bool.
6263 2002-10-23  Akim Demaille  <akim@epita.fr>
6265         * bin/autom4te.in (handle_traces): Handle @&t@ in traces.
6266         Reported by Peter Eisentraut.
6268 2002-10-23  Akim Demaille  <akim@epita.fr>
6270         * lib/autoconf/headers.m4 (AC_HEADER_STDBOOL): Also look for the
6271         type _Bool.
6272         Fix a typo.
6273         * doc/autoconf.texi (Particular Headers): Adjust according to Paul
6274         Eggert's recommandations.
6276 2002-10-22  Akim Demaille  <akim@epita.fr>
6278         * lib/autoconf/headers.m4 (AC_HEADER_STDBOOL): New, based on CVS
6279         Bison, by Paul Eggert.
6280         * doc/autoconf.texi (Particular Headers): Document it.
6282 2002-10-22  Aaron M. Ucko  <amu@alum.mit.edu>
6284         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Avoid duplicates in
6285         `$ac_configure_args'.
6287 2002-10-22  Akim Demaille  <akim@epita.fr>
6289         * doc/autoconf.texi: Use AC_CONFIG_HEADERS in examples.
6290         (AC_ST_BLKSIZE, AC_ST_RDEV): Directly point to AC_CHECK_MEMBERS.
6291         From Art Haas.
6293 2002-10-22  Akim Demaille  <akim@epita.fr>
6295         Restore the 2002-10-11  Akim Demaille  <akim@epita.fr> patch:
6297         * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_MONGREL)
6298         (AC_CHECK_HEADER, _AC_CHECK_HEADER_NEW,_AC_CHECK_HEADER_OLD): Restore.
6299         (_AC_CHECK_HEADER_NEW): Rename as...
6300         (AC_CHECK_HEADER): this.
6302 2002-10-22  Akim Demaille  <akim@epita.fr>
6304         * doc/autoconf.texi (Limitations of Usual Tools): Remove incorrect
6305         words about HP-UX cmp: it was actually a user-written cmp.
6307 2002-10-22  Akim Demaille  <akim@epita.fr>
6309         * tests/foreign.at (Libtool): Don't check autoconf's stderr: there
6310         are a few warnings.
6311         * lib/autoconf/autoheader.m4 (AH_VERBATIM, _AH_VERBATIM_OLD):
6312         Quote for Perl '' strings, not "".
6313         * bin/autoheader.in: Invoke autoconf to get '' strings, not ""
6314         strings.
6316 2002-10-22  Akim Demaille  <akim@epita.fr>
6318         * lib/m4sugar/m4sh.m4 (_AS_QUOTE): The warning about quoted
6319         characters is a syntax warning now.
6320         (_AS_QUOTE): Accept $2 as list of characters to quote.
6321         * lib/autoconf/autoheader.m4 (AH_VERBATIM, _AH_VERBATIM_OLD):
6322         Quote for Perl, not sh.
6323         * bin/autoheader.in: When $debug, report the file which is
6324         `do'ne.
6325         * tests/tools.at (autom4te, autoheader): Exercise @bar, not merely
6326         `@', to tickle Perl's lists.
6327         Reported by Carlos Velasco.
6329 2002-10-18  Akim Demaille  <akim@epita.fr>
6331         * bin/autom4te.in (handle_m4): Pass --fatal-warning to m4, so that
6332         missing included files _are_ errors.
6333         Thanks to Alexandre Duret-Lutz.
6334         * tests/tools.at (autom4te cache): Adjust.
6335         * tests/atspecific.m4 (AT_CHECK_AUTOM4TE): New.
6336         (AT_CHECK_M4SUGAR): Use it.
6337         * tests/m4sugar.at (m4_warn, m4_require: circular dependencies):
6338         Adjust.
6339         * tests/tools.at (autom4te): Now it does exit 1.
6341 2002-10-17  Akim Demaille  <akim@epita.fr>
6343         * lib/autoconf/general.m4 (AC_CACHE_SAVE): Don't use cmp.
6344         Fixes the `AC_ARG_VAR' test failures.
6345         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES): Don't use cmp.
6346         * lib/freeze.mk (check-forbidden-patterns): New.
6347         * lib/autoconf/Makefile.am, lib/autotest/Makefile.am
6348         * lib/m4sugar/Makefile.am (check-local): Use it to catch `cmp'.
6349         * doc/autoconf.texi (Limitations of Usual Tools): HP-UX' cmp and
6350         /dev/null.
6351         Reported months ago by H. Merijn Brand.
6353 2002-10-17  Akim Demaille  <akim@epita.fr>
6355         * tests/tools.at (autoheader): Put randoms `@' to stress Perl.
6357 2002-10-16  Paul Eggert  <eggert@twinsun.com>
6359         * Makefile.maint (wget_files): Remove ansi2knr.c.
6360         (ansi2knr.c-url_prefix): Remove.
6362 2002-10-16  Akim Demaille  <akim@epita.fr>
6364         Because of caching, some files that no longer exist and are no
6365         longer required can still cause errors.
6366         Reported by Alexandre Duret-Lutz.
6368         * bin/autom4te.in (&parse_args): Do not prepend `--reload-state'
6369         to frozen files in @ARGV, as @ARGV must remain being a list of
6370         files.  Rather, at M4 call sites, use this...
6371         (&files_to_options): New function.
6372         (&freeze): Use &error.
6373         (&up_to_date): If a file that was included according to the cache
6374         is no longer there, then the output is out dated.
6375         (&main): Don't even check whether a file is up to date is anyway
6376         --force is given.
6377         * tests/tools.at (autom4te cache): New.
6379 2002-10-16  Akim Demaille  <akim@epita.fr>
6381         * bin/autoconf.as: Kill dead options.
6382         * bin/autoupdate.in (&parse_args): Kill old options.
6383         * bin/autoreconf.in (&parse_args): Remove dead options.
6384         Factor some code.
6385         (&autoreconf): Report the directories we enter *and leave*, so
6386         that error messages can be easily located, and use GNU Make
6387         format, so that Emacs' compile mode understands us.
6388         * lib/Autom4te/General.pm (&update_file): Use `verbose' to report
6389         if some file was changed instead of `print'.
6390         * bin/autoheader.in: Suggest AC_DEFINE with 3 args when needed.
6391         (&parse_args): Remove the dead options.
6392         * tests/atspecific.m4 (AT_CHECK_AUTOHEADER): Adjust to the new
6393         autoheader's quiet mode.
6394         (AT_CHECK_AUTOUPDATE): Likewise.
6395         * tests/tools.at (autoupdate): Adjust.
6396         * tests/semantics.at (AC_C_BIGENDIAN): Likewise.
6398 2002-10-11  Akim Demaille  <akim@epita.fr>
6400         No longer use CPP to check for the existing of headers: use CC to
6401         check for compilability.
6403         * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_MONGREL)
6404         (AC_CHECK_HEADER, _AC_CHECK_HEADER_OLD): Remove.
6405         (_AC_CHECK_HEADER_NEW): Rename as...
6406         (AC_CHECK_HEADER): this.
6408         * lib/autotest/general.m4 (AT_INIT): Include the failed test
6409         numbers in the Subject suggestion.
6411 2002-10-11  Akim Demaille  <akim@epita.fr>
6413         * lib/autoconf/specific.m4 (AC_DECL_SYS_SIGLIST): Obsolete.
6414         Suggest using AC_CHECK_DECLS instead.
6416 2002-10-11  Akim Demaille  <akim@epita.fr>
6418         * tests/torture.at (AC_ARG_VAR): Have configure report the value
6419         of `precious'.
6421 2002-10-11  Akim Demaille  <akim@epita.fr>
6423         * lib/m4sugar/m4sh.m4 (_AS_PATH_SEPARATOR_PREPARE): Use $$ in the
6424         file name to enable parallel executions.
6425         From Sam Varshavchik.
6427 2002-10-08  Akim Demaille  <akim@epita.fr>
6429         * bin/autoreconf.in (&autoreconf): Run autopoint before the first
6430         aclocal invocation, as Gettext macros might not be visible to
6431         aclocal.
6432         Instead of blindly running autopoint, scan configure.ac (not the
6433         traces) for AM_GNU_GETTEXT_VERSION uses, as autopoint does.
6434         Reported by Paul D. Smith.
6436 2002-10-08  Paul Eggert  <eggert@twinsun.com>
6438         Work around problems found when POSIXLY_CORRECT=1 is set.
6439         None of this seems to have anything to do with POSIX, really,
6440         but it's how Perl getopt works.
6441         * bin/autom4te.in (parse_args): Configure GetOpt with
6442         "permute", too.
6443         * doc/autoconf.texi (Invoking autom4te):
6444         --warning -> --warnings.
6445         * lib/autom4te.in: --warning -> --warnings.
6447 2002-09-28  Akim Demaille  <akim@epita.fr>
6449         * doc/autoconf.texi (autom4te.cache): New section.
6451 2002-09-28  Akim Demaille  <akim@epita.fr>
6453         * lib/autom4te.in (Autoscan-preselections, Autoreconf-preselections)
6454         (Automake-preselections): Update.
6455         * bin/autoreconf.in, bin/autoheader.in: Comment changes.
6457 2002-09-28  Akim Demaille  <akim@epita.fr>
6459         * lib/autoscan/autoscan.pre: Move all the remaining rules to...
6460         * lib/autoconf/c.m4, lib/autoconf/functions.m4,
6461         * lib/autoconf/headers.m4, lib/autoconf/libs.m4,
6462         * lib/autoconf/specific.m4, lib/autoconf/types.m4: here.
6464 2002-09-28  Akim Demaille  <akim@epita.fr>
6466         * tests/torture.at (Configuring subdirectories): Be robust to
6467         users who use config.site to require for a cache: in this case,
6468         the two last configure runs, using two different sets of
6469         arguments, trigger a legitimate error.
6471 2002-09-28  Akim Demaille  <akim@epita.fr>
6473         * tests/m4sh.at (Functions Support, Functions and return Support):
6474         New.
6476 2002-09-28  Akim Demaille  <akim@epita.fr>
6478         * bin/Makefile.am (ETAGS_SH, ETAGS_PERL): Update: ifnames and
6479         autoheader are Perl programs.
6480         (autoconf, autoheader, autoreconf, autoupdate, ifnames, autoscan)
6481         (autom4te): Specify that the sources are in the $srcdir.
6482         * doc/autoconf.texi (Installation Directory Variables): Adjust.
6484 2002-09-28  Akim Demaille  <akim@epita.fr>
6486         * lib/autoscan/autoscan.pre (st_blksize, st_blocks, st_rdev)
6487         (tm_zone): Move their rules to...
6488         * lib/autoconf/types.m4: here, using AN_ macros.
6489         * lib/autoscan/autoscan.pre (AWK, BISON, INSTALL, LEX, LN, MAKE)
6490         (RANLIB, YACC, awk, bison, byacc, flex, gawk, install, lex, ln)
6491         (make, mawk, nawk, ranlib, yacc): Similarly, move to...
6492         * lib/autoconf/programs.m4: here.
6493         * lib/freeze.mk (ETAGS_FOR_M4, ETAGS_FOR_M4SUGAR)
6494         (ETAGS_FOR_AUTOCONF): New.
6495         Use it.
6497 2002-09-28  Akim Demaille  <akim@epita.fr>
6499         * lib/autoconf/autoscan.m4: New file.
6500         * lib/autoconf/autoconf.m4: Include it.
6501         * lib/autoconf/functions.m4: Use AN_FUNCTION for all the functions
6502         that were listed in the original autoscan.list.
6503         * lib/autoconf/headers.m4: Similarly with headers.
6504         * lib/freeze.mk (autoconf_m4f_dependencies): Add autoscan.m4.
6505         (.m4.m4f): Don't pass --prepend-include, since that's done by
6506         tests/autom4te itself.
6507         * lib/autoscan/Makefile.am: Include freeze.mk.
6508         (autoscan.list): New target --this file is no longer a source.
6509         (autoscan.pre): New file.
6511 2002-09-28  Akim Demaille  <akim@epita.fr>
6513         * bin/autoscan.in (@kinds): Make them singular.
6514         Adjust all uses.
6515         (&init_tables): When --debug, report the list of rules to ease
6516         tracking changes in autoscan.list.
6517         * lib/autoscan/autoscan.list (function): Strip comments, sort.
6519 2002-09-28  Akim Demaille  <akim@epita.fr>
6521         * lib/autoscan/functions, lib/autoscan/headers,
6522         * lib/autoscan/identifiers, lib/autoscan/makevars,
6523         * lib/autoscan/programs: Merge into...
6524         * lib/autoscan/autoscan.list: this.
6525         * bin/autoscan.in (&init_tables): Adjust.
6527 2002-09-28  Akim Demaille  <akim@epita.fr>
6529         * lib/autoscan/functions, lib/autoscan/headers,
6530         * lib/autoscan/identifiers, lib/autoscan/makevars,
6531         * lib/autoscan/programs: Make the `kind' explicit, i.e., each
6532         `functions' line is now prefixed with `function:'.
6533         * bin/autoscan.in (&init_tables): Adjust.
6535 2002-09-28  Akim Demaille  <akim@epita.fr>
6537         From now on, autoscan files must always map a macro name to a
6538         word: there is no `default' macro for autoscan.
6540         * bin/autoscan.in (&init_tables): Reject entries with no macro at
6541         all.
6542         * lib/autoscan/functions, lib/autoscan/headers: Make the macro
6543         explicit.
6545 2002-09-28  Akim Demaille  <akim@epita.fr>
6547         * bin/autoscan.in (%c_keywords): Remove.
6548         (&used): Keep only track of the words we might be interested in.
6549         (&output_kind): It is no longer needed to look for non active
6550         checks.
6552 2002-09-27  Akim Demaille  <akim@epita.fr>
6554         * lib/autoconf/functions.m4 (AC_FUNC_MBRTOWC): New, stolen from
6555         jm_FUNC_MBRTOWC, by Paul Eggert, from the Coreutils 4.5.1.
6556         * lib/autoscan/functions: Adjust.
6557         * doc/autoconf.texi (Particular Functions): Adjust.
6559 2002-09-27  Akim Demaille  <akim@epita.fr>
6561         * doc/autoconf.texi (Limitations of Usual Tools): Some about mv
6562         from /tmp.
6563         Thanks to Bill Moseley and Paul Eggert.
6564         * lib/m4sugar/m4sh.m4 (AS_TMPDIR): $2 is the directory into which
6565         the tmpdir must be created.
6566         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Have the tmp
6567         dir be in the build tree, instead of $TMPDIR.
6569 2002-09-27  Akim Demaille  <akim@epita.fr>
6571         * bin/autoscan.in: Improve the comments.
6572         (&parse_args): Drop obsolete undocumented options.
6573         (&output_kind): Output warnings.
6574         * lib/autoscan/functions: (dcgettext): Now trigger AM_GNU_GETTEXT.
6575         (getwd): Trigger a warning.
6577 2002-09-26  Akim Demaille  <akim@epita.fr>
6579         * bin/autoreconf.in: Clarify that -s is meaningless without -i.
6580         Reported by Ralf Corsepius.
6581         * doc/autoconf.texi (autoreconf Invocation): Likewise.
6583 2002-09-26  Akim Demaille  <akim@epita.fr>
6585         Single suffix rules and seperated dependencies are not portable.
6587         * doc/autoconf.texi (Installation Directory Variables): Update.
6588         (Limitations of Make): Some about `Single Suffix Rules and
6589         Separated Dependencies'.
6590         * bin/Makefile.am (autoconf, autoheader, autoreconf, autoupdate)
6591         (ifnames, autoscan, autom4te): Un-factor into several rules.
6593 2002-09-25  Paul Eggert  <eggert@twinsun.com>
6595         * BUGS (Interoperability bugs): New section.  Mention libtool
6596         1.4.2, configure.ac, and AC_CONFIG_AUX_DIR interoperability bug.
6598 2002-09-24  Paul Eggert  <eggert@twinsun.com>
6600         Fix a portability bug reported by Alexandre Duret-Lutz: Solaris 8
6601         make handles suffix-rules differently from GNU make.
6603         * bin/Makefile.am (SUFFIXES, .in): Remove.
6604         (autoconf autoheader autoreconf autoupdate ifnames autoscan autom4te):
6605         Move the body of the old .in rule here.
6607 2002-09-16  Akim Demaille  <akim@epita.fr>
6609         i960 compilers create `b.out' files by default.
6610         Reported by Ralf Corsepius.
6612         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT): Remove b.out files.
6613         (_AC_COMPILER_EXEEXT_DEFAULT): Adjust to b.out.
6615 2002-09-13  Paul Eggert  <eggert@twinsun.com>
6617         * doc/autoconf.texi (Particular Headers): Remove obsolete
6618         reference to `struct timezone' in the description of
6619         AC_HEADER_TIME.
6621 2002-09-13  Akim Demaille  <akim@epita.fr>
6623         Version 2.54.
6625         * config/config.sub, config/config.guess: Update.
6626         * Makefile.maint: Update from bits of the Coreutils 4.5.1.
6627         * Makefile.am: Adjust.
6629 2002-09-13  Akim Demaille  <akim@epita.fr>
6631         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Suggest
6632         reading config.log when the compiler is rejected.
6633         Suggested by Guido Draheim.
6635 2002-09-13  Akim Demaille  <akim@epita.fr>
6637         * bin/autoreconf.in: Don't use Cwd::chdir, since in its internals
6638         (chdir_init) might hang when stat'ing mounted directories.
6639         Reported by Vance Shipley.
6641 2002-09-12  Akim Demaille  <akim@epita.fr>
6643         * bin/autoscan.in (&parse_args): Pass a reference to the lists, not
6644         the lists.
6646 2002-09-12  Akim Demaille  <akim@epita.fr>
6648         * doc/autoconf.texi (Defining Symbols): Present two different
6649         prototypes for AC_DEFINE and AC_DEFINE_UNQUOTED to emphasize the
6650         difference between 1 argument calls, and 2-3 argument calls.
6652 2002-09-12  Peter Eisentraut  <peter_e@gmx.net>
6654         * doc/autoconf.texi: Review grammar and punctuation.
6656 2002-09-11  Paul Eggert  <eggert@twinsun.com>
6658         * doc/autoconf.texi: Fix minor formatting, spelling, and
6659         grammatical typos.
6660         (Defining Symbols): Explain that AC_DEFINE(var) defaults to 1, but
6661         AC_DEFINE(var,,description) does not; and the AC_DEFINE(var) case
6662         is obsolescent.
6664 2002-09-11  Akim Demaille  <akim@epita.fr>
6666         * doc/autoconf.texi (Questions): Rename as...
6667         (FAQ): this.
6668         (Defining Directories): New.
6670 2002-09-09  Akim Demaille  <akim@epita.fr>
6672         * doc/autoconf.texi (Making testsuite Scripts): Update.
6673         Suggested by Nishio Futoshi.
6675 2002-09-09  Koji Arai  <JCA02266@nifty.ne.jp>
6677         * doc/autoconf.texi (Making testsuite Scripts): Use `@@' where a
6678         plain `@' is wanted.
6680 2002-09-09  Akim Demaille  <akim@epita.fr>
6682         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Keep the
6683         `duplicates', since the algorithm was too naive and could keep
6684         `--prefix=1 --prefix=2 --prefix=1' as `--prefix=1 --prefix=2', and
6685         keep `--prefix foo --prefix bar' as `--prefix foo bar'.
6686         Reported by Ralf Corsepius.
6687         * tests/torture.at (Configuring subdirectories): Exercise these
6688         cases.
6690 2002-09-09  Akim Demaille  <akim@epita.fr>
6692         * lib/autoconf/functions.m4 (AC_FUNC_GETLOADAVG): Use $srcdir when
6693         looking for a replacement file.
6694         * lib/autoconf/general.m4 (AC_CHECK_DECLS): Check that the
6695         directory is relative.
6696         * doc/autoconf.texi (Generic Functions): Clarify the replacement
6697         directory definition.
6698         Reported by Andreas Schwab and Jim Meyering.
6700 2002-09-06  Akim Demaille  <akim@epita.fr>
6702         * doc/autoconf.texi (Setting Output Variables): Clarify what
6703         precious variables are.
6704         Suggested by Pontus Skoeld.
6706 2002-09-05  Akim Demaille  <akim@epita.fr>
6708         * bin/Makefile.am (autoconf, autoheader, autoreconf, autoupdate)
6709         (ifnames, autoscan, autom4te): Since we don't only depend on
6710         configure.ac variables (such as VERSION etc.), but also on prefix
6711         and so forth, depend on Makefile, not configure.ac.
6712         Reported by Alexandre Duret-Lutz.
6713         * doc/autoconf.texi (Installation Directory Variables): Adjust.
6715 2002-09-05  Kevin Ryde  <user42@zip.com.au>
6717         * doc/autoconf.texi (Limitations of Make): HP-UX trailing backslashes
6718         doesn't seem to be confined to ia64, just say "some versions".
6720 2002-09-04  Akim Demaille  <akim@epita.fr>
6722         * Makefile.am, doc/Makefile.am: Remove pdf targets, handled by
6723         Automake 1.6c.
6724         * Makefile.am (maintainer-clean-local): Remove.
6725         (MAINTAINERCLEANFILES): Remove COPYING.
6727 2002-09-03  Paul Eggert  <eggert@twinsun.com>
6729         * doc/autoconf.texi (Configuration Commands): Remove obsolete
6730         example for AC_CONFIG_COMMANDS_PRE.  Problem reported by Marcus
6731         Brinkmann.
6733 2002-09-03  Akim Demaille  <akim@epita.fr>
6735         * configure.ac: Bump to 2.53d.
6736         * Makefile.am (AUTOMAKE_OPTIONS): Require 1.6c, i.e., CVS Automake
6737         as of today, on Automake's team suggestion.
6739 2002-09-03  Akim Demaille  <akim@epita.fr>
6741         Version 2.53c.
6743 2002-09-02  Akim Demaille  <akim@epita.fr>
6745         * bin/autom4te.in (parse_args): Don't honor AUTOM4TE_PATH and
6746         SITE_MACRO_DIR.
6747         * configure.ac: Disable SITE_MACRO_DIR.
6749 2002-09-02  Jim Meyering  <meyering@lucent.com>
6751         * doc/autoconf.texi (AC_SYS_POSIX_TERMIOS): Reflect renaming: s/am/ac/,
6752         i.e., change am_cv_sys_posix_termios to ac_cv_sys_posix_termios.
6753         Also, tweak grammar: s/make sure to/be sure to/.
6755 2002-09-02  Paul Eggert  <eggert@twinsun.com>
6757         * doc/autoconf.texi (Limitations of Builtins): Explain why logical
6758         directory names are generally preferable to physical names.
6760 2002-09-02  Akim Demaille  <akim@epita.fr>
6762         * lib/Autom4te/General.pm (&update_file): s/die/error/.
6763         Reported by Raja R. Harinath.
6764         * bin/autoheader.in, bin/autoreconf.in, bin/autoscan.in,
6765         * bin/autoupdate.in: Use error instead of die.
6767 2002-09-01  Paul Eggert  <eggert@twinsun.com>
6769         * tests/mktests.sh (ac_exclude_egrep, au_exclude_egrep): Use
6770         ordinary shell concatenation rather than echo+tr+sed command that
6771         runs afoul of a long-line-related sed bug in Solaris 8.
6773         * bin/autoheader.in (parse_args): --warning -> --warnings.
6775         * bin/autoconf.as: Work even if "ls" outputs "FOO not found" to
6776         stdout, as traditional "ls" does.
6777         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT,
6778         _AC_COMPILER_EXEEXT_O): Likewise.
6779         * doc/autoconf.texi (Limitations of Usual Tools): Add "ls".
6781         * bin/autoconf.as: Add --prepend-include option.  This patch was
6782         applied to bin/autoconf.in in the 2002-07-17 patch by Mark D. Roth,
6783         but bin/autoconf.in is generated automatically from bin/autoconf.as.
6785         * bin/autoconf.in, configure: Regenerate.
6787         * doc/autoconf.texi (Special Shell Variables): Mention
6788         ENV, MAIL, MAILPATH, PS1, PS2, PS4.  Index PWD.
6790         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Unset ENV, MAIL,
6791         MAILPATH and set PS1, PS2, PS4 to default values, to work
6792         around bug in pre-3.0 UWIN ksh reported by Bruce Lilly.
6793         For LC_ALL etc, first try to set to "C" as POSIX requires and as
6794         the Autoconf documentation specifies; fall back to "unset" only if
6795         this fails.  Use a shell for-loop for this rather than an m4 loop,
6796         to shorten the output script.
6798 2002-08-30  Paul Eggert  <eggert@twinsun.com>
6800         * doc/autoconf.texi (Special Shell Variables): Mention POSIX
6801         1003.1-2001's requirements for CDPATH.  Give a simpler workaround
6802         for the CDPATH problem.  Document PWD.
6803         (Limitations of Builtins): Document the problem that "cd $foo" and
6804         "ls $foo" may refer to different directories in shells conforming
6805         to POSIX 1003.1-2001.  Use PS1 rather than CDPATH for "unset"
6806         example, since the old example is now out of date.
6808         * lib/autoconf/general.m4 (_AC_INIT_SRCDIR): Reject FOO if "cd
6809         FOO" and "ls FOO" talk about different directories; this catches
6810         problems when POSIX 1003.1-2001 "cd" fails due to symlink
6811         spaghetti.
6813         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Use AS_UNSET instead
6814         of rolling our own unset.
6815         (_AS_PREPARE): $as_unset CDPATH instead of AS_UNSETting it, since
6816         in practice we needn't worry about CDPATH if unset doesn't work.
6818         * Makefile.in, aclocal.m4, bin/Makefile.in,
6819         config/Makefile.in, doc/Makefile.in, lib/Makefile.in,
6820         lib/Autom4te/Makefile.in, lib/autoconf/Makefile.in,
6821         lib/autoscan/Makefile.in, lib/autotest/Makefile.in,
6822         lib/emacs/Makefile.in, lib/m4sugar/Makefile.in, man/Makefile.in,
6823         tests/Makefile.in: Regenerate with Automake 1.6.3.
6825         * config/config.guess, config/config.sub, config/mkinstalldirs:
6826         Update.
6828         * configure: Regenerate with self.
6830 2002-08-30  Kevin Ryde  <user42@zip.com.au>
6832         * doc/autoconf.texi (Limitations of Usual Tools): Notes on "cc"
6833         default output.
6835 2002-08-29  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
6837         * bin/autom4te.in (Request::load): Correctly test for "do" read
6838         failure.
6840 2002-08-29  Akim Demaille  <akim@epita.fr>
6842         * lib/Autom4te/General.pm (&xqx): New.
6843         (&xsystem): Use WIFEXITED and WEXITSTATUS instead of decoding $? by
6844         hand, which is not portable.
6845         (&error): New.
6846         * bin/autom4te.in: Use them.
6847         Use &error instead of die.
6848         * tests/m4sugar.at (m4_warn, m4_require: circular dependencies):
6849         Adjust.
6851 2002-08-17  Paul Eggert  <eggert@twinsun.com>
6853         * lib/autoconf/fortran.m4 (AC_PROG_F77): Remove fc from the
6854         default list of compilers to try, since it was long ago superseded
6855         by the ksh fc builtin.  Suggested by Steven G. Johnson.
6857 2002-07-31  Alexandre Duret-Lutz  <duret_g@epita.fr>
6859         * doc/autoconf.texi (Invoking autom4te): End the option table,
6860         fixing a bug introduced by the previous patch.
6861         (Limitations of Make): Add a 'target lookup' subentry in the
6862         'VPATH' entry.  Rewrite all `make' occurences as `@command{make}'.
6864 2002-07-29  Mark D. Roth  <roth@feep.net>
6866         * bin/autom4te.in: Remove --include-envvar and --site-macro-subdir
6867         options and use $AUTOM4TE_PATH.
6868         * doc/autoconf.texi: Remove documentation of autom4te
6869         --include-envvar and --site-macro-subdir options and document
6870         use of $AUTOM4TE_PATH.
6871         * lib/autom4te.in: Remove --include-envvar and --site-macro-subdir
6872         arguments from each language section.
6874 2002-07-29  Paul Eggert  <eggert@twinsun.com>
6876         * doc/install.texi: Include copyright symbol in copyright notice.
6878         * Makefile.am (MAKEINFO): Remove; it's a user-specified macro.
6879         Replace with:
6880         (AM_MAKEINFOFLAGS): New macro.
6881         * doc/Makefile.am (MAKEINFO, AM_MAKEINFOFLAGS): Likewise.
6882         * Makefile.am (INSTALL): Use the new macros.
6883         Use -o rather than --output, since "missing" does not grok --output.
6885 2002-07-25  Alexandre Duret-Lutz  <duret_g@epita.fr>
6887         * doc/autoconf.texi (Limitations of Make): Escaped newlines in
6888         comments do not always work. Never trust the exit status of
6889         `make -k'.
6891 2002-07-24  Kevin Ryde  <user42@zip.com.au>
6893         * doc/autoconf.texi (Limitations of Make, Making testsuite Scripts):
6894         Untabify, since tabs are not enjoyed by texi2dvi and makeinfo.
6896 2002-07-23  Paul Eggert  <eggert@twinsun.com>
6898         * lib/m4sugar/m4sh.m4 (_AS_PATH_SEPARATOR_PREPARE):
6899         Use PATH="/nonexistent;.", not PATH=".;.", as FreeBSD ksh2002
6900         apparently treats PATH="nonexistent" as if it contained ".".
6901         Bug reported by Stefan `Sec' Zehl.
6903 2002-07-22  Alexandre Duret-Lutz  <duret_g@epita.fr>
6905         * doc/autoconf.texi (Limitations of Make): Mention the special
6906         handling of the obj/ directory by BSD make.
6908 2002-07-20  Kevin Ryde  <user42@zip.com.au>
6910         * doc/autoconf.texi (Limitations of Make): Add HP-UX IA-64 trailing
6911         backslashes.
6913 2002-07-19  Akim Demaille  <akim@epita.fr>
6915         * doc/autoconf.texi (Function Portability): `exit'.
6916         (Programming in M4sh): Ethymology of M4sh.
6918 2002-07-19  Akim Demaille  <akim@epita.fr>
6920         * doc/autoconf.texi (AC_LIBOBJ vs LIBOBJS): More about $U.
6922 2002-07-18  Akim Demaille  <akim@epita.fr>
6924         Version 2.53b.
6926 2002-07-18  Akim Demaille  <akim@epita.fr>
6928         * config/config.guess, config/config.sub: Update.
6930 2002-07-18  Akim Demaille  <akim@epita.fr>
6932         Handle LIBOBJS and LTLIBOBJS once for all, including Libtool's and
6933         Automake's parts.
6935         * lib/autoconf/general.m4 (_AC_LIBOBJS_NORMALIZE): New.
6936         * lib/autoconf/status.m4 (AC_OUTPUT_COMMANDS_PRE): Call it.
6937         * tests/semantics.at (AC_REPLACE_FUNCS): Adjust.
6939 2002-07-18  Akim Demaille  <akim@epita.fr>,
6940             Alexandre Duret-Lutz  <duret_g@epita.fr>
6942         * lib/autoconf/status.m4 (_AC_OUTPUT_HEADERS): Install
6943         _AC_AM_CONFIG_HEADER_HOOK for Automake 1.7.
6945 2002-07-17  Russ Allbery  <rra@stanford.edu>
6947         * doc/autoconf.texi (Initializing configure): Clarify the
6948         description of the tarname default.
6950 2002-07-17  Andreas Buening  <andreas.buening@nexgo.de>
6952         * lib/autoconf/functions.m4 (AC_FUNC_FORK): Don't set
6953         ac_cv_func_fork_works before running _AC_FUNC_FORK, do it if the
6954         latter was not run.
6956 2002-07-17  Akim Demaille  <akim@epita.fr>
6958         * lib/Autom4te/General.pm (find_file): Browse the directories in
6959         the order they are given.
6961 2002-07-17  Akim Demaille  <akim@epita.fr>
6963         * tests/wrapsh.as, tests/wrappl.as: Merge into...
6964         * tests/wrapper.as: this.
6965         * tests/Makefile.am, configure.ac: Adjust.
6967 2002-07-17  Mark D. Roth  <roth@feep.net>
6969         * configure.ac: Add --enable-site-macro-dir option.
6970         * bin/Makefile.am: Expand @SITE_MACRO_DIR@.
6971         * bin/autom4te.in: Add --prepend-include, --include-envvar, and
6972         --site-macro-subdir options.
6973         * bin/autoconf.in: Add --prepend-include option.
6974         * bin/autoheader.in: Add --prepend-include option.
6975         * bin/autoreconf.in: Add --prepend-include option.
6976         * bin/autoscan.in: Add --prepend-include option.
6977         * bin/autoupdate.in: Add --prepend-include option.
6978         * doc/autoconf.texi: Document use of $AC_MACRO_PATH and site
6979         macro directory, remove note that include path directories are
6980         used in reverse order, and document --prepend-include option.
6981         * lib/autom4te.in: Use --prepend-include instead of --include.
6982         * tests/wrapsh.in: Use --prepend-include instead of --include.
6984 2002-07-17  Akim Demaille  <akim@epita.fr>
6986         * lib/autoconf/general.m4 (_AC_INIT_PACKAGE): `_' is allowed in
6987         tarnames.
6988         * doc/autoconf.texi (Initializing configure): Adjust.
6990 2002-07-17  Akim Demaille  <akim@epita.fr>
6992         * lib/autoconf/functions.m4 (AC_FUNC_REALLOC, _AC_FUNC_REALLOC)
6993         (_AC_FUNC_MALLOC): New.
6994         (AC_FUNC_MALLOC): Use the latter.
6995         Define HAVE_MALLOC to 0 if broken.
6996         * doc/autoconf.texi (Particular Functions): Adjust.
6998 2002-07-16  Akim Demaille  <akim@epita.fr>
7000         * lib/autoconf/c.m4 (AC_C_BACKSLASH_A): New.
7001         * doc/autoconf.texi (C Compiler): Adjust.
7003 2002-07-09  Akim Demaille  <akim@epita.fr>
7005         * doc/autoconf.texi: Properly set the ``header'' part.
7007 2002-07-09  Akim Demaille  <akim@epita.fr>
7009         * doc/autoconf.texi (Systemology): Some about Darwin.
7011 2002-07-09  Alexandre Duret-Lutz  <duret_g@epita.fr>
7013         * lib/autoconf/specific.m4 (AC_CYGWIN, AC_EMXOS2, AC_MINGW32):
7014         Don't use AC_REQUIRE in AU_DEFUN.
7016 2002-07-09  Art Haas  <ahaas@neosoft.com>
7018         * doc/autoconf.texi: Use @enddots{} or @dots{} where appropriate.
7020 2002-07-02  Alexandre Duret-Lutz  <duret_g@epita.fr>
7022         * bin/autoheader.in, bin/autom4te.in, bin/autoreconf.in,
7023         bin/autoupdate.in, bin/ifnames.in, lib/Autom4te/General.pm,
7024         lib/Autom4te/Struct.pm, lib/Autom4te/XFile.pm: Add local variables
7025         so that Emacs setups GNU style for perl-mode and cperl-mode.
7027 2002-06-27  Paul Eggert  <eggert@twinsun.com>
7029         * config/install-sh: Quote $src.  Prefer || to test's -o option,
7030         as per "Limitations of Builtins".
7031         * tests/atspecific.m4 (AT_CHECK_ENV): Likewise, for && vs test -a.
7032         * tests/semantics.at (AC_C_BIGENDIAN): Likewise.
7034         * tests/mktests.sh: Use grep instead of fgrep, as per
7035         "Limitations of Builtins".
7037 2002-06-15  Paul Eggert  <eggert@twinsun.com>
7039         * tests/wrapsh.as (AUTOCONF, AUTOHEADER, AUTOM4TE, AUTOM4TE_CFG,
7040         autom4te_perllibdir): Set to top build dir or src dir as appropriate,
7041         so that we consistently test the just-built programs.
7042         * tests/wrappl.as: Likewise.
7044 2002-06-12  Paul Eggert  <eggert@twinsun.com>
7046         * bin/autoconf.as (AUTOM4TE): Default to a fully qualified path
7047         name, so that symlinks to 'autoconf' work properly.  Bug reported
7048         by Bruno Haible.
7049         * bin/autoheader.in (AUTOM4TE): Likewise.
7050         * bin/autoreconf.in (autoconf, autoheader): Likewise.
7051         * bin/autoscan.in (autom4te): Likewise.
7052         * bin/autoupdate.in (autom4te): Likewise.
7054         * lib/autoconf/functions.m4 (_AC_LIBOBJ_FNMATCH): Also check for
7055         btowc, to fix a portability bug with diffutils-2.8.2/lib/fnmatch.c
7056         on Solaris 2.5.1.
7058 2002-06-11  Andreas Schwab  <schwab@suse.de>
7060         * doc/autoconf.texi: Add more dir entries.
7062 2002-06-10  Alexandre Duret-Lutz  <duret_g@epita.fr>
7064         * bin/autom4te.in ($cache): Don't define using `$me', the name
7065         of the cache should not depend on the name under which autom4te
7066         was installed.
7068 2002-06-07  Akim Demaille  <akim@epita.fr>
7070         * tests/tools.at (autoconf: forbidden tokens, basic)
7071         (autoconf: forbidden tokens, exceptions): Adjust to the change of
7072         words in autom4te.in.
7074 2002-06-07  Peter Eisentraut  <peter_e@gmx.net>
7076         * lib/autoconf/c.m4 (AC_LANG_PROGRAM(C)): Use
7077         _AC_LANG_PROGRAM_C_F77_HOOKS.
7079 2002-06-07  Akim Demaille  <akim@epita.fr>
7081         * lib/autoconf/functions.m4 (AC_REPLACE_FUNC_FNMATCH): Typo,
7082         rename as...
7083         (AC_REPLACE_FNMATCH): this.
7084         * tests/mktests.sh (exclude_list): Exclude AC_REPLACE_FNMATCH,
7085         AC_FUNC_FNMATCH_GNU.
7087 2002-06-07  Akim Demaille  <akim@epita.fr>
7089         * doc/autoconf.texi (Systemology): Point to Tru64 docs, and the
7090         Rosetta Stone for Unix.
7092 2002-06-07  Akim Demaille  <akim@epita.fr>
7094         * bin/autom4te.in (warn_forbidden): When rejecting a token,
7095         suggest m4_pattern_allow.
7096         Suggested by Adam J. Richter.
7098 2002-06-07  Akim Demaille  <akim@epita.fr>
7100         * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS): Initialize
7101         ac_config_libobj_dir.
7102         (AC_CONFIG_LIBOBJ_DIR): New.
7103         * lib/autoconf/functions.m4 (_AC_FUNC_FNMATCH): Split into...
7104         (_AC_FUNC_FNMATCH_IF, _AC_LIBOBJ_FNMATCH): these.
7105         Use ac_config_libobj_dir to find the replacement files.
7106         (AC_FUNC_FNMATCH, AC_FUNC_FNMATCH_GNU): Split into...
7107         (AC_FUNC_FNMATCH, AC_FUNC_FNMATCH_GNU, AC_REPLACE_FNMATCH)
7108         (AC_REPLACE_FNMATCH_GNU): these.
7109         (AC_FUNC_GETLOADAVG): Use ac_config_libobj_dir.
7110         * doc/autoconf.texi (Particular Functions, Generic Functions): Adjust.
7111         * tests/mktests.sh (ac_exclude_list): Don't check
7112         AC_FUNC_GETLOADAVG as it requires getloadavg.c which is not shipped.
7114 2002-06-06  Paul Eggert  <eggert@twinsun.com>
7116         * lib/autoconf/status.m4 (_AC_OUTPUT_LINKS): Fall back on cp
7117         if ln doesn't work.
7118         * NEWS: Likewise.
7119         * doc/autoconf.texi (Configuration Links): Likewise.
7120         (Limitations of Usual Tools): Prefer $(LN_S) to ln -s || ln.
7122 2002-06-05  Paul Eggert  <eggert@twinsun.com>
7124         * config/config.guess, config/config.sub, config/texinfo.tex:
7125         Update from masters.
7127 2002-05-29  Paul Eggert  <eggert@twinsun.com>
7129         * bin/autom4te.in ($m4): Do not assume that egrep and fgrep exist.
7130         * lib/autoconf/c.m4 (AC_C_BIGENDIAN): Likewise.
7131         * lib/autoconf/general.m4 (_AC_RUN_LOG_STDERR, AC_EGREP_CPP):
7132         Likewise.
7133         * lib/autoconf/Makefile.am (check-local): Likewise.
7134         * lib/autoconf/status.m4 (AC_CONFIG_HEADER): Likewise.
7135         * lib/autoconf/types.m4 (commentary only): Likewise.
7136         * lib/autotest/general.m4 (AT_INIT, AT_CHECK): Likewise.
7137         * lib/autotest/Makefile.am (check-local): Likewise.
7138         * lib/m4sugar/Makefile.am (check-local): Likewise.
7139         * tests/atspecific.m4 (AT_CONFIGURE_AC, AT_CHECK_DEFINES): Likewise.
7140         * tests/mktests.sh (egrep): New var; use it instead of plain egrep.
7142         * lib/autoconf/programs.m4 (AC_PROG_EGREP, AC_PROG_FGREP): New macros.
7143         * doc/autoconf.texi (Particular Programs): Document them.
7144         (Limitations of Usual Tools): Warn that egrep and fgrep may not exist.
7145         * NEWS: Likewise.
7147 2002-05-27  Paul Eggert  <eggert@twinsun.com>
7149         * lib/autoconf/types.m4 (AC_TYPE_MBSTATE_T): New macro.
7150         * NEWS, doc/autoconf.texi (Particular Types): Document it.
7151         * lib/autoconf/functions.m4 (_AC_FUNC_FNMATCH): Require it
7152         instead of AC_MBSTATE_T, which never existed.
7154 2002-05-23  Akim Demaille  <akim@epita.fr>
7156         * doc/autoconf.texi (Hosts and Cross-Compilation): Specify the
7157         version of Autoconf that is discussed.
7159 2002-05-22  Paul Eggert  <eggert@twinsun.com>
7161         * lib/autoconf/fortran.m4 (AC_PROG_F77): Remove cf77 and cft77
7162         from the default list of compilers to try.  Suggested by
7163         Kate Hedstrom.
7164         * NEWS: Document the above.
7165         * doc/autoconf.texi (Fortran 77 Compiler): Don't suggest cf77.
7167 2002-05-17  Paul Eggert  <eggert@twinsun.com>
7169         * lib/autoconf/types.m4 (AC_CHECK_MEMBER): Work correctly even if
7170         the member is itself an aggregate.  Bug reported by Sergey Poznyakoff.
7171         This improves on an earlier suggestion by H. Peter Anvin.
7173 2002-05-16  Paul Eggert  <eggert@twinsun.com>
7175         AC_FUNC_FNMATCH now tests only for POSIX compatibility.
7176         AC_FUNC_FNMATCH_GNU also tests for GNU extensions.
7177         Both macros now accept an optional source-dir arg.
7178         New macro AC_GNU_SOURCE to define _GNU_SOURCE.
7180         * NEWS: Document this.
7181         * doc/autoconf.texi (Particular Functions, UNIX Variants): Likewise.
7183         * lib/autoconf/functions.m4 (_AC_FUNC_FNMATCH): New macro.
7184         (AC_FUNC_FNMATCH): Use it.  Test only for POSIX conformance,
7185         not for GNU extensions; this undoes part of the 2000-11-03 change,
7186         reverting to 2.13-compatible behavior.
7187         Add new optional argument DIR.
7188         (AC_FUNC_FNMATCH_GNU): New macro.
7190         * lib/autoconf/specific.m4 (AC_GNU_SOURCE): New macro.
7192 2002-05-08  Paul Eggert  <eggert@twinsun.com>
7194         * lib/autoconf/headers.m4 (AC_HEADER_TIOCGWINSZ):
7195         Don't require AC_SYS_POSIX_TERMIOS.  The test is unnecessary,
7196         and it causes a 'test' syntax error if it fails.
7197         Bug reported by Stephen Gildea.
7199         * lib/autoconf/functions.m4 (AC_FUNC_SETVBUF_REVERSED):
7200         If prototypes are supported, use them to check this at compile-time,
7201         instead of trying to check it at run-time.  If we must do a run-time
7202         check, assume that setvbuf is standard when cross-compiling, as
7203         nonstandard setvbuf occurs only on ancient and unlikely hosts.
7204         Bug reported by Paul D. Smith.
7206         * lib/autoconf/functions.m4 (AC_FUNC_GETLOADAVG): Add optional
7207         argument specifying location of getloadavg.c.  This removes a
7208         FIXME.  This idea was taken from Jim Meyering's implementation in
7209         textutils.
7210         * doc/autoconf.texi (Particular Functions): Document this.
7211         Also, mention HAVE_NLIST_H rather than NLIST_STRUCT, since
7212         that's what the code does; this fixes a bug reported by
7213         Paul D. Smith.
7215 2002-05-03  Akim Demaille  <akim@epita.fr>
7217         * bin/autoreconf.in (autoreconf): Rewrite to use Gettext's
7218         autopoint instead of gettextize.
7219         ($uses_alocal): Rename as...
7220         ($uses_aclocal): this.
7221         * doc/autoconf.texi (autoreconf Invocation): Adjust.
7222         Suggested by Bruno Haible.
7224 2002-05-03  Akim Demaille  <akim@epita.fr>
7226         * lib/m4sugar/m4sugar.m4 (m4_map_sep): New.
7228 2002-04-29  Paul Eggert  <eggert@twinsun.com>
7230         * bin/autoreconf.in (autoreconf): Don't age aclocal.m4's input
7231         files to be 1 second older; just set them to be the same time.
7232         Also, sleep 1 second after the first aclocal, to work around
7233         problems with sub-second time stamps on the input files.
7235 2002-04-29  Thien-Thi Nguyen  <ttn@gnu.org>
7237         * doc/autoconf.texi: Mention "set -e -x" lossage
7238         under node "Limitations of Builtins".
7240 2002-04-29  Akim Demaille  <akim@epita.fr>
7242         * doc/install.texi: Better wording for setting variables when
7243         running configure.
7244         From Christian Cornelssen.
7246 2002-04-29  Akim Demaille  <akim@epita.fr>
7248         * tests/m4sh.at (LINENO): If testsuite itself is rewritten because
7249         of lack of $LINENO support, then the test will compare the $LINENO
7250         in testsuite vs. the lineno in the test file.  This is wrong, of
7251         course.
7252         Be sure to protect it.
7253         Reported by Patrick Welche.
7255 2002-04-25  Akim Demaille  <akim@epita.fr>
7257         * doc/autoconf.texi (Obsolete Macros): Typo.
7258         Reported by Vladimir Volovich.
7260 2002-04-25  Akim Demaille  <akim@epita.fr>
7262         * bin/autoreconf.in (autoreconf): Don't let aclocal.m4 be older
7263         than some of the input files, hence, on the second run of aclocal,
7264         if some of its input are younger, make them older.
7265         Suggested by Paul Eggert.
7267 2002-04-25  Akim Demaille  <akim@epita.fr>
7269         * doc/autoconf.texi (Limitations of Usual Tools): sed and `!'.
7270         Thanks to Paul Eggert.
7272 2002-04-25  Akim Demaille  <akim@epita.fr>
7274         * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS): Let ac_subst_files
7275         and ac_subst_vars be sh variables containing the list of
7276         AC_SUBST_FILES'ed and AC_SUBST'ed identifiers.  Output them in the
7277         DEFAULT diversion.
7278         (_AC_INIT_PREPARE): Use them to log them.
7279         (_AC_SUBST, _AC_SUBST_SED_PROGRAM): Remove.
7280         (AC_SUBST, AC_SUBST_FILE): Instead of buliding the
7281         _AC_SUBST_SED_PROGRAM, store the list of output files/variables in
7282         _AC_SUBST_FILES and _AC_SUBST_VARS.
7283         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES): Adjust.
7285 2002-04-24  Akim Demaille  <akim@epita.fr>
7287         * bin/autoreconf.in (autoreconf): Run automake after autoconf and
7288         autoheader, so that automake does not complain about a missing
7289         config.h.in that was to be created.
7291 2002-04-23  Akim Demaille  <akim@epita.fr>
7293         * bin/autoheader.in (parse_args): --warning takes an argument.
7294         Fixes PR/220.
7296 2002-04-22  Peter Eisentraut  <peter_e@gmx.net>
7298         * lib/autoconf/general.m4 (_AC_RUN_IFELSE): Remove gmon.out
7299         and bb.out when cleaning up.
7301 2002-04-22  Akim Demaille  <akim@epita.fr>
7303         Version 2.53a.
7305 2002-04-22  Akim Demaille  <akim@epita.fr>
7307         * tests/m4sh.at (LINENO): Fix the Zsh skip pattern.
7309 2002-04-22  Akim Demaille  <akim@epita.fr>
7311         * doc/autoconf.texi (Pretty Help Strings): Remove a spurious
7312         comma.
7313         Reported by Gregory Giannoni.
7315 2002-04-22  Akim Demaille  <akim@epita.fr>
7317         * tests/m4sh.at (LINENO): Skip the test if LINENO cannot be unset.
7318         Fixes false failures on Darwin.
7320 2002-04-21  Paul Eggert  <eggert@twinsun.com>
7322         * TODO, bin/autoupdate.in, doc/autoconf.texi,
7323         lib/autoconf/general.m4, lib/autoconf/libs.m4,
7324         lib/autoconf/status.m4, lib/m4sugar/m4sugar.m4, tests/m4sh.at,
7325         tests/tools.at: Minor spelling and grammar fixes.
7327 2002-04-20  Paul Eggert  <eggert@twinsun.com>
7329         * doc/autoconf.texi (Shell Substitutions): Fix typos in yesterday's
7330         ZSH_VERSION fixes.  Bug reported by Raja R Harinath.
7331         * lib/autotest/general.m4 (AT_INIT): Likewise.
7332         * tests/atgeneral.m4 (AT_INIT): Likewise.
7334 2002-04-19  Paul Eggert  <eggert@twinsun.com>
7336         * NEWS, TODO, bin/autom4te.in, bin/autoreconf.in, bin/autoupdate.in,
7337         doc/autoconf.texi, lib/freeze.mk, lib/Autom4te/Struct.pm,
7338         lib/autoconf/autoheader.m4, lib/autoconf/c.m4,
7339         lib/autoconf/functions.m4, lib/autoconf/general.m4,
7340         lib/autoconf/lang.m4, lib/autoconf/libs.m4, lib/autoscan/identifiers,
7341         lib/autotest/general.m4, lib/m4sugar/m4sh.m4, tests/atgeneral.m4,
7342         tests/atspecific.m4, tests/semantics.at, tests/torture.at:
7343         Minor spelling and grammar fixes.
7345         * doc/autoconf.texi: Follow the outline suggested in the GNU
7346         Sample Texts sections of the Texinfo 4.2 manual.  Most
7347         importantly, this makes sure that the copyright notices appear in
7348         all output formats.  You probably need Texinfo 4.2 to generate
7349         the manual now.
7351         Fix some bugs when using "$@" when there might be zero positional
7352         arguments in cases where this matters.
7354         * bin/autoconf.as: Rewrite so that the problem does not come up.
7355         * lib/autoconf/programs.m4 (AC_CHECK_PROG): Likewise.
7356         * lib/autoconf/status.m4 (AC_OUTPUT): Likewise.
7357         * lib/autotest/general.m4 (AT_INIT): Likewise.
7359         * bin/autoheader.in: Use 'case' statement to work around problem.
7360         * bin/auto4mte.in: Likewise.
7361         * bin/autoreconf.in: Likewise.
7362         * bin/autoscan.in: Likewise.
7363         * bin/autoupdate.in: Likewise.
7364         * bin/ifnames.in: Likewise.
7366         * doc/autoconf.texi (Shell Substitutions): Document the problem.
7368         * lib/autotest/general.m4 (AT_INIT):
7369         Use Zsh alias to work around problem.
7370         * tests/atgeneral.m4 (AT_INIT): Likewise.
7372         * tests/c.at: We can't have zero arguments, so remove workaround
7373         that is not portable to Zsh.
7375 2002-04-19  Alexandre Duret-Lutz  <duret_g@epita.fr>
7377         * bin/autoupdate.in (handle_autoconf_macros): Honor AU_DEFUNs
7378         from aclocal.m4 too.
7380 2002-04-12  Akim Demaille  <akim@epita.fr>
7382         * tests/wrappl.as: New, M4sh precursor of wrappl.in.
7384 2002-04-10  Akim Demaille  <akim@epita.fr>
7386         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Install the Zsh
7387         workaround for ${1+"$@"}.
7388         * doc/autoconf.texi (Shell Substitutions): Explain it.
7389         From Oliver Kiddle and Peter Stephenson.
7391         Have M4sh perform minimal shell sanitizing.
7393         * lib/m4sugar/m4sh.at (AS_SHELL_SANITIZE): Split the `_AS_PREPARE_*'
7394         part into...
7395         (_AS_PREPARE): this new macro.
7396         (AS_PREPARE): New.
7397         (AS_INIT): Invoke AS_SHELL_SANITIZE.
7398         * tests/m4sh.at (AT_DATA_LINENO): Use _AS_PREPARE.
7400         Adjust Autoconf and Autotest.
7402         * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS): Don't invoke
7403         AS_SHELL_SANITIZE, AS_INIT did it, but invoke AS_PREPARE.
7404         * lib/autotest/general.m4 (AT_INIT): Likewise.
7405         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS):
7406         Invoke _AS_PREPARE (not AS_PREPARE) in addition to
7407         AS_SHELL_SANITIZE.
7409         Use this M4sh to generate Autoconf's shell scripts.
7411         * tests/wrapsh.as: New, precursor of wrapsh.in.
7412         * tests/Makefile.am: Include lib/freeze.mk to get the dependencies
7413         on Autotest and M4sh.
7414         ($(TESTSUITE)): Use $(autotest_m4f_dependencies).
7415         (wrapsh.in): New target.
7416         * bin/autoconf.as: New, precursor of autoconf.in.
7417         (autoconf.in): New target.
7419 2002-04-09  Alexandre Duret-Lutz  <duret_g@epita.fr>
7421         * doc/autoconf.texi (Limitations of Make): Mention the issue
7422         with indented comments in rules.
7424 2002-04-09  Andreas Schwab  <schwab@suse.de>
7426         * lib/autoconf/status.m4 (_AC_SRCPATHS): Handle empty
7427         ac_top_builddir when setting ac_abs_top_builddir.
7429 2002-04-06  Kevin Ryde  <user42@zip.com.au>
7431         * doc/autoconf.texi (Systemology): Add link to Unix V7 online docs.
7432         (Portable Shell): Cross reference to Systemology.
7434 2002-04-05  Akim Demaille  <akim@epita.fr>
7436         * bin/autoreconf.in (autoreconf): Be sure to accumulate the
7437         directories when descending in a SUBDIRS.
7438         Reported by Ezra Peisach.
7440 2002-04-04  Andreas Schwab  <schwab@suse.de>
7442         * lib/m4sugar/m4sh.m4 (_AS_PATH_WALK): Only simplify if path
7443         contains no literal separators.
7445 2002-04-03  Akim Demaille  <akim@epita.fr>
7447         * lib/autoconf/status.m4 (_AC_CONFIG_FILE, _AC_CONFIG_HEADER)
7448         (_AC_CONFIG_COMMAND, _AC_CONFIG_LINK): New.
7449         Use dnl, not the KILL diversion.
7450         Extracted from...
7451         (AC_CONFIG_FILES, AC_CONFIG_HEADERS, AC_CONFIG_COMMANDS)
7452         (AC_CONFIG_LINKS): here.
7453         Adjust.
7454         Don't use the KILL diversion, as it kills spurious output, which
7455         results in failures being hidden.
7456         Use m4_defn where appropriate.
7457         (AC_CONFIG_IF_MEMBER): Kill the real bug: a spurious parenthesis
7458         after the second argument.
7459         Use m4_defn.
7460         * lib/autom4te.in (Autoconf, Autotest, M4sh): Don't pass --warning
7461         syntax, as it is provided by M4sugar.
7462         * tests/torture.at (Multiple AC_CONFIG_FILES): New.
7464 2002-04-03  Andreas Schwab  <schwab@suse.de>
7466         * lib/m4sugar/m4sugar.m4 (m4_bmatch): Make sure m4_bregexp is not
7467         expanded if $# <= 2.
7469         * bin/autoreconf.in (autoreconf): Run automake after rerunning
7470         aclocal.
7472 2002-04-03  Akim Demaille  <akim@epita.fr>
7474         * lib/autoconf/lang.m4 (_AC_COMPILER_OBJEXT_REJECT)
7475         (_AC_COMPILER_EXEEXT_REJECT): New.
7476         Also recognize *.bb and *.bbg as compilation byproducts.
7477         (_AC_COMPILER_EXEEXT_DEFAULT, _AC_COMPILER_EXEEXT_O)
7478         (_AC_COMPILER_OBJEXT): Use them.
7479         Fixes Debian #138666.
7481 2002-04-02  Peter Eisentraut  <peter_e@gmx.net>
7483         Integrate AC_PROG_CC_STDC into AC_PROG_CC.
7485         * lib/autoconf/c.m4 (AC_PROG_CC_STDC): Rename to _AC_PROG_CC_STDC.
7486         AU_DEFUN old name.  Use _AC_COMPILE_IFELSE.
7487         (AC_PROG_CC): Call _AC_PROG_CC_STDC.
7488         (AC_C_INLINE): Do not require AC_PROG_CC_STDC.
7489         (AC_C_CONST): Same.
7490         (AC_C_INLINE): Same.
7491         (AC_C_PROTOTYPES): Same.  Require AC_PROG_CC instead.
7492         * doc/autoconf.texi, NEWS: Document.
7493         * tests/mktests.sh (au_exclude_list): Add AC_PROG_CC_STDC and
7494         AC_C_CROSS.
7496 2002-04-02  Akim Demaille  <akim@epita.fr>
7498         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Invoke
7499         _AS_MKDIR_P_PREPARE.
7501 2002-03-28  Kevin Ryde  <user42@zip.com.au>
7503         * lib/autoconf/c.m4 (AC_C_INLINE): Test with a typedef return value,
7504         to avoid versions of HP C which don't allow that.
7506 2002-03-27  Paul Eggert  <eggert@twinsun.com>
7508         * lib/m4sugar/m4sh.m4 (_AS_BASENAME_PREPARE): New macro.
7509         (AS_SHELL_SANITIZE): Invoke it.
7510         (AS_BASENAME): AS_REQUIRE it, and use $as_basename.
7512 2002-03-26  Akim Demaille  <akim@epita.fr>
7514         * doc/autoconf.texi (Portable Shell): Add pointers to FAQs.
7516 2002-03-26  Akim Demaille  <akim@epita.fr>
7518         * doc/autoconf.texi (Introduction): The GNATS base moved.
7520 2002-03-25  Paul Eggert  <eggert@twinsun.com>
7522         * tests/m4sh.at: Don't rely on "PATH=test:$PATH test-1" working
7523         as POSIX requires, as it doesn't work with Zsh.
7524         * doc/autoconf.texi (Assignments): Document the problem.
7526 2002-03-25  Alexandre Duret-Lutz  <duret_g@epita.fr>
7528         * doc/autoconf.texi (Limitations of Make): Mention more issue
7529         about VPATH, overriding of macros in sub-makes, and handling of
7530         SHELL.
7532 2002-03-21  Paul Eggert  <eggert@twinsun.com>
7534         * doc/autoconf.texi (Here-Documents): Mention Solaris 8 dtksh
7535         problem with here-document buffer boundaries.
7537         * lib/m4sugar/m4sh.m4 (_AS_LINENO_PREPARE): Unset ENV and BASH_ENV
7538         when reinvoking the shell, to work around problems with installers
7539         who put strange things like "cd" commands in their environments.
7541 2002-03-19  Akim Demaille  <akim@epita.fr>
7543         * tests/semantics.at (AC_C_BIGENDIAN): s/unknow/unknown/.
7544         From Aaron Ucko.
7546 2002-03-19  Akim Demaille  <akim@epita.fr>
7548         * bin/autoscan.in (scan_file): Specify the location in `&used'
7549         invocations.
7550         From Nicolas Joly.
7552 2002-03-19  Akim Demaille  <akim@epita.fr>
7554         * doc/autoconf.texi: Adjust @code/@command, @xref/@ref usage.
7555         From Nishio Futoshi.
7557 2002-03-19  Akim Demaille  <akim@epita.fr>
7559         * lib/m4sugar/m4sugar.m4 (m4_define_default, m4_fst, m4_map): New.
7561 2002-03-18  Paul Eggert  <eggert@twinsun.com>
7563         * doc/autoconf.texi (Programming in M4sh): Add AS_MKDIR_P.
7564         (Limitations of Usual Tools): Add mkdir section.
7566         * lib/m4sugar/m4sh.m4 (_AS_MKDIR_P_PREPARE): New macro.
7567         (AS_MKDIR_P): Require it.  Use mkdir -p if available, falling
7568         back on AS_DIRNAME to compute prefixes otherwise; this is
7569         roughly what mkinstalldirs does.  That way, we need not have
7570         our own filename disassembler.  The old disassembler did not
7571         work with Solaris 8 dtksh, which is ksh Version M-12/28/93d.
7573         * lib/autotest/general.m4 (AT_INIT, AT_CLEANUP):
7574         Create at_test_all by a series of assignments,
7575         not by a single assignment of a long string.  The latter causes ksh
7576         version 11/16/88g to silently misbehave on OpenServer 5.0.6a,
7577         presumably because of a buffer overrun.
7579 2002-03-14  Paul Eggert  <eggert@twinsun.com>
7581         * lib/autotest/general.m4 (at_times_skip):
7582         Renamed from at_times.  Now a boolean.
7583         ksh93 Version M-12/28/93d doesn't like 'x=times; $x'; it
7584         says 'times: not found'.
7586 2002-03-14  Akim Demaille  <akim@epita.fr>
7588         * bin/autoreconf.in (&study_gettextize): New.
7589         (&autoreconf): Handle newest gettextize.
7590         Rerun aclocal if needed.
7591         Suggested by Andreas Schwab.
7593 2002-03-13  Akim Demaille  <akim@epita.fr>
7595         * doc/autoconf.texi (Special Shell Variables): More about IFS.
7597 2002-03-13  Akim Demaille  <akim@epita.fr>
7599         * doc/autoconf.texi (Header Portability): New.
7600         Add information about stdint.h and inttypes.h from Paul Eggert.
7602 2002-03-13  Akim Demaille  <akim@epita.fr>
7604         * doc/autoconf.texi (Limitations of Usual Tools): Some about `cp
7605         -p'.
7606         From Bob Proulx.
7608 2002-03-12  Akim Demaille  <akim@epita.fr>
7610         * lib/m4sugar/m4sh.m4 (AS_BASENAME_EXPR): AS_REQUIRE, not
7611         m4_require.
7613 2002-03-11  Andreas Schwab  <schwab@suse.de>
7615         * configure.ac: Explicitly check for EMACS since AM_PATH_LISPDIR
7616         does not do it if --with-lispdir is given.
7618 2002-03-08  Akim Demaille  <akim@epita.fr>
7620         Version 2.53.
7622 2002-03-08  Akim Demaille  <akim@epita.fr>
7624         * doc/autoconf.texi (Subdirectories): Clarify that the
7625         subdirectory should exist.
7627 2002-03-08  Akim Demaille  <akim@epita.fr>
7629         * Makefile.am (AUTOMAKE_OPTIONS): 1.6.
7631 2002-03-08  Akim Demaille  <akim@epita.fr>
7633         * bin/autom4te.in (&handle_m4): Do not foreach with `$_' as it
7634         aliases the actual variables, and modifications of the former
7635         affect the latter.
7637 2002-03-08  Akim Demaille  <akim@epita.fr>
7639         * bin/autom4te.in (&handle_m4): Protect us from corrupted file
7640         because of C-c: have m4 output in tmp files, then mv them.
7642 2002-03-08  Akim Demaille  <akim@epita.fr>
7644         * bin/autoconf.in, bin/autoheader.in, bin/autom4te.in,
7645         * bin/autoreconf.in, bin/autoscan.in, bin/autoupdate.in,
7646         * bin/ifnames.in: Copyright update.
7648 2002-03-08  Akim Demaille  <akim@epita.fr>
7650         * doc/autoconf.texi (Invoking autom4te): New.
7652 2002-03-05  Akim Demaille  <akim@epita.fr>
7654         * doc/autoconf.texi (Specifying Names): Clarification suggested by
7655         Kevin Ryde.
7657 2002-03-05  Akim Demaille  <akim@epita.fr>
7659         Version 2.52i.
7661 2002-03-04  Akim Demaille  <akim@epita.fr>
7663         * doc/autoconf.texi (AC_LIBOBJ vs. LIBOBJS): New.
7664         * lib/autoconf/general.m4 (AC_INIT): More informative error
7665         message for LIBOBJ.
7667 2002-03-04  Akim Demaille  <akim@epita.fr>
7669         * lib/freeze.mk ($(build_libdir)/m4sugar/version.m4): New, for
7670         parallel builds.
7672 2002-03-04  Akim Demaille  <akim@epita.fr>
7674         * doc/autoconf.texi (Transforming Names): Equality between target
7675         and host is irrelevant.
7676         (Specifying Names, Canonicalizing): Remove all references to the
7677         backward compatibility hooks.  Rather, collect them all into...
7678         (Hosts and Cross-Compilation): this new section.
7679         * doc/install.texi (System Type): Ditto.
7680         * lib/autoconf/general.m4 (AC_CANONICAL_HOST): Explicitly state
7681         that `--host' implies cross-compilation.
7683 2002-03-04  Akim Demaille  <akim@epita.fr>
7685         * doc/autoconf.texi (Evaluation Macros): New.
7686         * lib/m4sugar/m4sugar.m4 (m4_lquote): Remove, it is totally
7687         useless.
7688         (_m4_foreach): Define the variant with immediate evaluation so
7689         that it contains exactly the items, not an expression which
7690         evaluation is the current item.
7691         (m4_re_string, m4_re_word): Don't over quote them.
7693 2002-03-04  Akim Demaille  <akim@epita.fr>
7695         Instead of having stacking `shift's evaluated at the end, let
7696         `foreach' loops immediately evaluate them.
7698         * lib/m4sugar/m4sugar.m4 (m4_quote, m4_dquote): Use $@ rather than
7699         $*.  This is the n-th time I change my mind, but hopefully this is
7700         the last...
7701         (m4_lquote): New.
7702         (m4_text_wrap): Use m4_foreach, which is finally correct _and_
7703         efficient.
7704         (m4_foreach_quoted, m4_car_quoted, _m4_foreach_quoted): Remove, as
7705         it was only a hack for m4_text_wrap.
7706         (m4_car2): Remove, replaced by...
7707         (m4_cdr): New.
7708         (_m4_foreach): Adjust.
7709         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Adjust, and use
7710         m4_bpatsubst for clarification.
7712 2002-03-04  Akim Demaille  <akim@epita.fr>
7714         * doc/autoconf.texi (Changequote is Evil): New.
7716 2002-03-03  Kevin Ryde  <user42@zip.com.au>
7718         * doc/autoconf.texi (Portable Shell): Mention 32-byte #! length limit
7719         on old systems like SunOS.
7721 2002-03-01  Peter Eisentraut  <peter_e@gmx.net>
7723         * lib/autoconf/c.m4, lib/autoconf/fortran.m4,
7724         lib/autoconf/functions.m4, lib/autoconf/general.m4,
7725         lib/autoconf/headers.m4, lib/autoconf/lang.m4,
7726         lib/autoconf/programs.m4, lib/autoconf/status.m4: Improve spelling
7727         of messages.
7729 2002-02-28  Akim Demaille  <akim@epita.fr>
7731         * lib/autotest/general.m4 (AT_INIT): Suggest a title to the
7732         message to be sent.
7734 2002-02-28  Kevin Ryde  <user42@zip.com.au>
7736         * doc/autoconf.texi (Function Portability): Add va_copy and va_list.
7738 2002-02-25  Akim Demaille  <akim@epita.fr>
7740         * lib/autoconf/functions.m4 (AC_FUNC_SETPGRP): Fix the test.
7741         From Akinori Musha.
7743 2002-02-13  Alexandre Duret-Lutz  <duret_g@epita.fr>
7745         * lib/Autom4te/XFile.pm (getline, getlines): New functions,
7746         translate \r\n to \n.
7748 2002-02-07  Akim Demaille  <akim@epita.fr>
7750         Version 2.52h.
7752 2002-02-07  Akim Demaille  <akim@epita.fr>
7754         Fix Autoconf PR/209.
7755         Also reported by Frank Denis.
7757         * lib/m4sugar/m4sh.m4 (_AS_PATH_WALK): Don't over quote.
7759 2002-02-07  Akim Demaille  <akim@epita.fr>
7761         Fix Autoconf PR/207:
7762         AC_PREFIX_PROGRAM fails with dashed program names
7764         * lib/autoconf/general.m4 (AC_PREFIX_PROGRAM): Just use a fresh
7765         variable when looking for the prefix program.
7766         Now it also works for shell variables.
7768 2002-02-07  Akim Demaille  <akim@epita.fr>
7770         * doc/autoconf.texi (Limitations of Builtins): More about
7771         case/esac.
7773 2002-02-06  Akim Demaille  <akim@epita.fr>
7775         * lib/autoconf/status.m4 (_AC_OUTPUT_COMMANDS): Don't output empty
7776         case/esac, some shells don't support it.
7777         Reported by Zack Weinberg.
7778         * tests/torture.at (AC_CONFIG_COMMANDS with empty commands): New.
7780 2002-02-06  Akim Demaille  <akim@epita.fr>
7782         * lib/autotest/general.m4 (AT_INIT): When handling --keywords, be
7783         sure not to introduce newlines in at_groups.
7784         * lib/autotest/Makefile.am (autotest.m4f): Typo.
7786 2002-02-06  Akim Demaille  <akim@epita.fr>
7788         * tests/torture.at (Configuring subdirectories): Skip if aclocal
7789         is not available.
7791 2002-02-05  Paul Eggert  <eggert@twinsun.com>
7793         * doc/autoconf.texi (Specific Compiler Characteristics):
7794         Describe HP-UX cc bug workaround more accurately.
7795         * lib/autoconf/types.m4 (AC_CHECK_SIZEOF): Cast to long,
7796         not unsigned long.
7797         * tests/semantics.at (AC_CHECK_SIZEOF): Check non-GCC
7798         cross-compilers, too.  This undoes some of the most recent change
7799         to this file.
7801 2002-02-05  Akim Demaille  <akim@epita.fr>
7803         * tests/Makefile.am (check_SCRIPTS): Use it, instead of WRAPPERS,
7804         to make sure they are up to date when `check' is run.
7806 2002-02-05  Akim Demaille  <akim@epita.fr>
7808         * doc/autoconf.texi (Making testsuite Scripts): Document
7809         package.m4.
7811 2002-02-05  Akim Demaille  <akim@epita.fr>
7813         * lib/freeze.mk: New.
7815 2002-02-05  Akim Demaille  <akim@epita.fr>
7817         Implement `autom4te --freeze'.
7819         * bin/autom4te.in (&freeze): New.
7820         * lib/autoconf/autoconf.m4, lib/autotest/general.m4,
7821         * lib/m4sugar/m4sh.m4: Don't include files given by autom4te.
7823 2002-02-05  Akim Demaille  <akim@epita.fr>
7825         * bin/autom4te.in (&parse_args): Implement `frozen files are
7826         optional are the sum of the previous files on the command line'.
7827         Also, pass `--reload-state=' on them, so...
7828         (handle_m4): don't.
7829         * lib/autom4te.in (Autotest, Autoconf): Rely on M4sh.
7830         (M4sh): Rely on M4sugar.
7831         (Autotest, M4sh, M4sugar): Use frozen files.
7833 2002-01-31  Akim Demaille  <akim@epita.fr>
7835         * lib/autoconf/general.m4 (_AC_INIT_PACKAGE): Accept $4.
7836         * doc/autoconf.texi (Initializing configure): Adjust.
7838 2002-01-30  Akim Demaille  <akim@epita.fr>
7840         * lib/autoconf/general.m4 (_AC_INIT_PACKAGE): Map non
7841         alphanumeric to `-' instead of `_'.
7843 2002-01-30  Akim Demaille  <akim@epita.fr>
7845         * tests/semantics.at (AC_CHECK_SIZEOF): Split into two tests: one
7846         for plain code, the other for cross-compilation code.  The latter
7847         is now run with GCC only.
7848         * doc/autoconf.texi (Compilers and Preprocessors): New.
7850 2002-01-30  Akim Demaille  <akim@epita.fr>
7852         * lib/autoconf/general.m4 (_AC_INIT_PACKAGE): Support pre-defined
7853         values.
7854         * doc/autoconf.texi (Initializing configure): Explain how to
7855         change AC_INIT default values.
7857 2002-01-29  Akim Demaille  <akim@epita.fr>
7859         * tests/torture.at (Configuring subdirectories): Use configure.in,
7860         so that aclocal 1.4 works.
7861         Reported by Alexandre Duret-Lutz and Larry Schmitt.
7863 2002-01-28  Akim Demaille  <akim@epita.fr>
7865         * doc/autoconf.texi (Writing testsuite.at): AT_CLEANUP no longer
7866         needs an argument.
7868 2002-01-28  Akim Demaille  <akim@epita.fr>
7870         * lib/autotest/general.m4 (AT_INIT): Don't be ridiculous: adjust
7871         AUTOTEST_PATH *after* it was set.
7872         Don't put `.' in the PATH: the user should be precise and `./' if
7873         needed.  In addition, given that the test suite does some `cd', if
7874         `.' is in the path, the `tested programs' sections will report
7875         programs found in the test suite's directory, while during the
7876         tests (performed in their own directory), these programs are no
7877         longer visible.  In other words, the results is confusing and
7878         useless.
7879         * tests/m4sh.at: Adjust: don't rely on `.' being in the PATH.
7881 2002-01-24  Akim Demaille  <akim@epita.fr>
7883         Version 2.52g.
7885 2002-01-24  Akim Demaille  <akim@epita.fr>
7887         * bin/autoheader.in, bin/autoconf.in, bin/autoscan.in,
7888         * doc/autoconf.texi: Finally add Akim as an author.
7890 2002-01-24  Akim Demaille  <akim@epita.fr>
7892         * lib/m4sugar/m4sh.m4 (_AS_LINENO_PREPARE): Use PATH_SEPARATOR.
7893         (_AS_PATH_SEPARATOR_PREPARE): Don't expect $SHELL to be
7894         Bourne. Use /bin/sh.
7895         From Andreas Buening.
7897 2002-01-24  Akim Demaille  <akim@epita.fr>
7899         * config/config.guess, config/config.sub, config/texinfo.tex:
7900         Update from masters.
7902 2002-01-24  Akim Demaille  <akim@epita.fr>
7904         * Makefile.am (AUTOMAKE_OPTIONS): 1.5b.
7905         * config/auxdir.m4, config/cond.m4, config/depend.m4,
7906         * config/init.m4, config/install-sh.m4, config/lispdir.m4,
7907         * config/missing.m4, config/sanity.m4, config/select.m4,
7908         * config/strip.m4: Remove, to ease sync'ing with any version of
7909         Automake.
7911 2002-01-24  Akim Demaille  <akim@epita.fr>
7913         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ARGS)
7914         (_AC_INIT_PREPARE): Support -n as --no-create, as documented.
7915         Reported by Geir Ove Myhr.
7917 2002-01-21  Akim Demaille  <akim@epita.fr>
7919         * lib/autoconf/functions.m4 (AC_FUNC_MMAP): #Undef malloc.
7921 2002-01-21  Akim Demaille  <akim@epita.fr>
7923         * lib/Autom4te/General.pm (getopt): Use a more GNUish error
7924         message on invalid options.
7925         * bin/autom4te.in (parse_args): Don't use
7926         Autoconf::General::getopt with non valid options.
7928 2002-01-17  Jim Meyering  <meyering@lucent.com>
7930         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Initialize
7931         $ac_cv_exeext so we don't use an old, invalid, cached value.
7933 2002-01-11  Akim Demaille  <akim@epita.fr>
7935         * lib/autoconf/functions.m4 (AC_FUNC_STRNLEN): New, from Jim
7936         Meyering.
7937         * doc/autoconf.texi (Function Portability): Document the strnlen
7938         limitation.
7939         (Particular Functions): Document AC_FUNC_STRNLEN.
7940         * lib/autoscan/functions: Adjust.
7942 2002-01-06  Akim Demaille  <akim@epita.fr>
7944         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): Don't create
7945         package.m4, since is really depends upon configure.ac, not
7946         configure.
7947         * doc/autoconf.texi (testsuite Scripts): Adjust.
7948         * tests/Makefile.am (package.m4): New.
7949         EXTRA_DIST it since its a source.
7951 2002-01-06  Akim Demaille  <akim@epita.fr>
7953         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ARGS): Move the AC_SUBST
7954         of PACKAGE_NAME, PACKAGE_TARNAME, PACKAGE_VERSION, PACKAGE_STRING,
7955         and PACKAGE_BUGREPORT from here...
7956         (_AC_INIT_DEFAULTS): to here, since it is unrelated to the
7957         arguments.
7958         (_AC_INIT_PREPARE): AC_DEFINE these symbols.
7959         * lib/autotest/general.m4: Use AT_PACKAGE_*, not PACKAGE_*.
7960         (AT_INIT): No longer catch `^PACKAGE_(BUGREPORT|STRING)$'.
7961         * tests/tools.at (autoheader): Adjust.
7962         * tests/atspecific.m4 (AT_CHECK_DEFINES): Adjust.
7964 2002-01-06  Akim Demaille  <akim@epita.fr>
7966         * bin/autoscan.in (scan_file): Use `&used'.
7968 2002-01-03  Akim Demaille  <akim@epita.fr>
7970         * doc/autoconf.texi (Output): Improved wording regarding use of
7971         AC_OUTPUT.
7972         From Olly Betts.
7974 2001-12-18  Kevin Ryde  <user42@zip.com.au>
7976         * doc/autoconf.texi (Function Portability): Add notes on sscanf
7977         sometimes needing writable input.
7979 2001-12-17  Jim Meyering  <meyering@lucent.com>
7981         * doc/autoconf.texi (New Macros): Tweak wording.
7983 2001-12-14  Akim Demaille  <akim@epita.fr>
7985         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): We cleaning up the
7986         trailing files, don't apply `-rf' to files which might not be
7987         created by configure (core, core.*, and *.core), but just `rm -f'.
7988         Suggested by Jonathan Kamens.
7990 2001-12-14  Aaron M. Ucko  <amu@alum.mit.edu>
7992         * lib/autoconf/general.m4: Avoid duplicates in `$ac_configure_args'.
7994 2001-12-14  Akim Demaille  <akim@epita.fr>
7996         * Makefile.am (MAINTAINERCLEANFILES): Remove configure.
7998 2001-12-13  Peter Eisentraut  <peter_e@gmx.net>
8000         * lib/autoconf/status.m4 (_AC_SRCPATHS): Rename buildpath to
8001         abs_builddir, top_buildpath to abs_top_builddir, srcpath to
8002         abs_srcdir, top_srcpath to abs_top_srcdir.
8003         (_AC_OUTPUT_FILES): Adjust.
8004         * NEWS, doc/autoconf.texi, lib/autoconf/autotest.m4,
8005         * tests/atspecific.m4, tests/autoreconf.in, tests/tools.at,
8006         * tests/wrappl.in, tests/wrapsh.in: Adjust.
8008 2001-12-12  Steven G. Johnson  <stevenj@alum.mit.edu>
8010         * lib/autoconf/fortran.m4 (_AC_PROG_F77_V_OUTPUT): Fix failed
8011         C/Fortran linking on HP/UX, by extracting the Fortran library
8012         search path from the LPATH line in the $F77 -v output.
8014 2001-12-12  Kevin Ryde  <user42@zip.com.au>
8016         * doc/autoconf.texi (File Descriptors): Use a clearer layout for the
8017         forbidden file descriptors table.
8019 2001-11-26  Akim Demaille  <akim@epita.fr>
8021         * bin/autoscan.in (%c_keywords): Build it at top level.
8022         Map to 1 in order to simplify its uses.
8024 2001-11-26  Akim Demaille  <akim@epita.fr>
8026         * bin/autoscan.in (&scan_c_file, &scan_sh_file, &scan_makefile):
8027         Remove $filepath, useless.
8028         (&scan_makefile): Don't remove the $(FOO), ${FOO} and @FOO@
8029         variables, they are really part of the tokens.
8030         Split the input line on spaces and then look for tokens.
8031         Now autoscan ceases to ask for AC_PROG_LEX for the package Bison
8032         because of `lex$U.$(OBJEXT)'.
8033         (&scan_files): Use "@list" instead of join.
8034         * doc/Makefile.am (CLEANFILES): Add *.fns.
8036 2001-11-26  Akim Demaille  <akim@epita.fr>
8038         * tests/autoreconf.in, tests/autom4te.in, tests/autoupdate.in:
8039         Remove, replaced by...
8040         * tests/wrappl.in: Be common for all the Perl executables.
8041         In particular autoscan and autoheader want -I.
8042         * configure.ac: Adjust.
8043         * lib/autoscan/headers: errno.h is portable.
8045 2001-11-26  Akim Demaille  <akim@epita.fr>
8047         * bin/autoscan.in (used): New.
8048         Use it.
8050 2001-11-26  Akim Demaille  <akim@epita.fr>
8052         * bin/autoscan.in (&scan_c_file): Better parsing of CPP
8053         directives.
8054         (&scan_sh_file): Remove a duplicate pattern.
8055         (&check_configure_ac): Use long options.
8056         * lib/autoscan/headers (alloca.h): Check with AC_FUNC_ALLOCA.
8058 2001-11-26  Akim Demaille  <akim@epita.fr>
8060         * bin/autoscan.in (scan_c_file): Fix the handling of C comments.
8061         Before, having a line containing the opening of a multi line
8062         comment made the whole line be ignored.
8064 2001-11-26  Akim Demaille  <akim@epita.fr>
8066         * doc/autoconf.texi (Using an Autotest Test Suite): New.
8067         (testsuite Scripts): Be one of its subsection.
8068         (Autotest Logs): New.
8070 2001-11-26  Akim Demaille  <akim@epita.fr>
8072         Test groups are now run two directories deeper.
8074         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): Replace srcdir,
8075         top_srcdir and top_builddir with at_srcdir, at_top_srcdir and
8076         at_top_builddir.
8077         * lib/autotest/general.m4 (AT_INIT): Compute srcdir,
8078         top_srcdir, builddir and top_builddir.
8079         Use `at_*dir' relatively to the directory containing the
8080         suite, use `*dir' when relatively to the current group dir.
8082 2001-11-25  Joseph S. Myers  <jsm28@cam.ac.uk>
8084         * doc/autoconf.texi, TODO, lib/autoconf/fortran.m4,
8085         lib/autoconf/functions.m4, lib/autoconf/headers.m4,
8086         tests/atgeneral.m4, tests/tools.at, tests/atspecific.m4: Fix
8087         spelling errors.
8089 2001-11-22  Alexandre Duret-Lutz  <duret_g@epita.fr>
8091         * doc/autoconf.texi (Using System Type): Add an example of `case
8092         $host' usage so people quit using `case $target' everywhere.
8094 2001-11-22  Akim Demaille  <akim@epita.fr>
8096         * doc/autoconf.texi (Installation Directory Variables): Englishoes
8097         spotted by Jim Meyering.
8099 2001-11-16  Paul Eggert  <eggert@twinsun.com>
8101         This patch implements a `long double' suggestion by Oliver Kiddle.
8103         * lib/autoconf/c.m4 (AC_LANG_BOOL_COMPILE_TRY(C)): Make the array
8104         static, to catch errors if the value isn't known at compile-time
8105         and the compiler supports dynamic arrays.  Change its name from
8106         `_array_' to `test_array' to avoid potential name clashes.
8107         (AC_C_LONG_DOUBLE): Make it a compile-time test, not a run-time
8108         test.  Do not define HAVE_LONG_DOUBLE if `long double' is no
8109         better than double.  Catch a bug in GCC 2.95.2 x86.
8110         * doc/autoconf.texi (C Compiler): Document the above.
8111         * NEWS: Likewise.
8113 2001-11-13  Akim Demaille  <akim@epita.fr>
8115         * tests/m4sh.at (LINENO): Protect from autom4te's substitution by
8116         hand.
8117         * tests/tools.at: Don't protect dnl, AT_DATA_M4SH does.
8119 2001-11-13  Akim Demaille  <akim@epita.fr>
8121         * lib/autotest/general.m4 (AT_INIT): After having run the test
8122         group, go back to the initial directory, not to at_suite_dir.
8124 2001-11-13  Akim Demaille  <akim@epita.fr>
8126         * tests/atspecific.m4 (AT_DATA_M4SUGAR, AT_DATA_M4SH)
8127         (AT_DATA_AUTOCONF):  Also protect @&t@ from autom4te.
8128         (AT_CHECK_AUTOCONF, AT_CHECK_AUTOHEADER): Pass no --include
8129         option.
8130         (AT_CHECK_CONFIGURE): Use absolute paths.
8131         (_AT_CHECK_AC_MACRO): Create aclocal.m4 with AC_STATE_SAVE in it.
8132         The problem is still the old one: there is no means in M4 (that I
8133         know about) to create a defining macro, because there is no means
8134         to create `$1' etc., therefore, the defining macro ``swallows''
8135         all the arguments meant to the defined macro.
8137 2001-11-13  Akim Demaille  <akim@epita.fr>
8139         * tests/atspecific.m4 (AT_DATA_AUTOCONF): New.
8140         (AT_CONFIGURE_AC): Output the definition of AC_STATE_SAVE in
8141         configure.ac.
8142         * tests/aclocal.m4: Remove, as it is no longer used.
8144 2001-11-13  Akim Demaille  <akim@epita.fr>
8146         * lib/autotest/general.m4: Change `tests?' into `groups?' in
8147         variable names when referring to a single test group, or to
8148         `suite' when referring to the whole test suite.
8149         `at_last_test' is removed: m4 compute at_format itself.
8150         (at_stdout, at_stder1, at_stderr): New variables.
8151         (AT_CHECK): Use them.
8153 2001-11-13  Akim Demaille  <akim@epita.fr>
8155         * lib/autotest/general.m4 (AT_INIT): Be sure to put `.', relative,
8156         in PATH.
8157         Create `testsuite.dir/003/run' instead of `testsuite.003'.
8158         Do it as soon as a test fails, don't wait till the end of the test
8159         suite.
8160         Don't remove $as_me.[0-9]*, since these files no longer exist.
8162 2001-11-13  Akim Demaille  <akim@epita.fr>
8164         * tests/tools.at: Use absolute paths, since we are no longer run
8165         in place.
8167 2001-11-13  Akim Demaille  <akim@epita.fr>
8169         Now that tests are running in their own private dir, there is no
8170         need to list the files to remove at the end of tests groups.
8172         * lib/autotest/general.m4 (_AT_CLEANUP_FILE, AT_CLEANUP_FILES):
8173         (AT_data_files, at_data_files): Remove.
8174         (AT_CLEANUP, AT_DATA): Simplify.
8175         (AT_INIT): Adjust.
8176         Remove the group dir if !debug && !failed.
8177         * tests/atspecific.m4: Adjust.
8179 2001-11-13  Akim Demaille  <akim@epita.fr>
8181         Start a new layout for Autotest: `testsuite' creates
8182         `testsuite.dir' in which the at-check-line etc. files are to be
8183         found, and `testsuite.dir/003' where the test group 3 is run.
8185         * lib/autotest/general.m4 (AT_INIT): at_tests_dir,
8186         at_check_line_file, at_format, at_test_normalized, at_group_dir
8187         are new variables.
8188         Create the directories.
8189         Use absolute paths for at- files.
8190         (AT_CHECK): Adjust.
8192 2001-11-11  Michael Matz  <matz@kde.org>
8194         * m4sugar.m4 (_m4_foreach): Make it linear instead quadratic.
8195         (m4_car2): New.
8196         (m4_car): Properly quote arguments.
8198 2001-11-13  Akim Demaille  <akim@epita.fr>
8200         * tests/aclocal.m4 (AC_STATE_SAVE): s/LIBOBJS/LIB@&t@OBJS/ to cope
8201         with stricter rules on LIBOBJS.
8203 2001-11-12  Paul Eggert  <eggert@twinsun.com>
8205         * lib/autoconf/c.m4 (AC_C_PROTOTYPES): Define __PROTOTYPES too.
8206         * doc/autoconf.texi (C Compiler): AC_C_PROTOTYPES now defines
8207         __PROTOTYPES too.
8209 2001-11-12  Akim Demaille  <akim@epita.fr>
8211         * lib/autoconf/functions.m4 (AC_FUNC_GETMNTENT): Use AC_CHECK_FUNCS.
8213 2001-11-12  Akim Demaille  <akim@epita.fr>
8215         * lib/autoconf/c.m4, lib/autoconf/fortran.m4,
8216         * lib/autoconf/functions.m4, lib/autoconf/general.m4,
8217         * lib/autoconf/headers.m4, lib/autoconf/libs.m4,
8218         * lib/autoconf/programs.m4, lib/autoconf/specific.m4,
8219         * lib/autoconf/types.m4: When invoking AC_DEFINE and friends,
8220         specify to what the macro should be defined (typically to 1).
8222 2001-11-12  Akim Demaille  <akim@epita.fr>
8224         * lib/autoconf/functions.m4 (AC_FUNC_STRTOD): AC_SUBST POW_LIB.
8225         From Jim Meyering.
8227 2001-11-12  Akim Demaille  <akim@epita.fr>
8229         * lib/autoconf/programs.m4 (_AC_PROG_LEX_YYTEXT_DECL): Use
8230         AC_TRY_EVAL to run $LEX, not AC_TRY_COMMAND.  This validates the
8231         definition used by Automake where LEX is +/- "${missing} lex" and
8232         `missing' itself contains variables.
8234 2001-11-12  Akim Demaille  <akim@epita.fr>
8236         * lib/autotest/general.m4 (AT_INIT): Push KILL at the end.
8237         Now that M4sh pushes BODY, the comments were output at the end of
8238         the test suites.
8240 2001-11-08  Akim Demaille  <akim@epita.fr>
8242         * bin/autoreconf.in (&autoreconf): Run aclocal before tracing, so
8243         that we can trace macros from aclocal.m4.
8244         Trace AC_PROG_LIBTOOL, not AM_PROG_LIBTOOL, since the latter is
8245         obsoleted, and redirect to the former anyway.
8246         Reported by Ralf Corsepius.
8248 2001-11-08  Akim Demaille  <akim@epita.fr>
8250         * bin/autoreconf.in (&autoreconf): AC_CONFIG_SUBIDRS are to be
8251         processed only if present.
8252         * tests/torture.at (Configuring subdirectories): Use autoreconf
8253         instead of successive calls to autoconf.
8254         Add a nonexistent subdirectory to exercise the patch above.
8255         Reported by Ralf Corsepius.
8257 2001-11-08  Kevin Ryde  <user42@zip.com.au>
8259         * doc/autoconf.texi (Limitations of Usual Tools): Note HP-UX cc
8260         doesn't accept .S files.
8262 2001-11-07  Akim Demaille  <akim@epita.fr>
8264         * lib/m4sugar/m4sugar.m4 (m4_pattern_forbid): Accepts $2.
8265         * lib/autoconf/general.m4 (AC_INTI): Forbid LIBOBJS.
8266         (_AC_LIBOBJ): s/LIBOBJS/LIB@&t@OBJS/.
8267         * bin/autom4te.in (warn_forbidden): New.
8268         (handle_output): Use it.
8269         Read m4_pattern_forbid with messages.
8271 2001-11-05  Akim Demaille  <akim@epita.fr>
8273         * bin/autom4te.in (--normalize): Remove.
8274         * lib/autom4te.in: Adjust.
8276 2001-11-05  Akim Demaille  <akim@epita.fr>
8278         * tests/Makefile.am (testsuite): Rename this target as...
8279         ($(TESTSUITE)): this.
8280         From Nicolas Joly.
8282 2001-11-05  Alexandre Duret-Lutz  <duret_g@epita.fr>
8284         * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): When removing
8285         the --prefix option, also remove it's argument.
8287 2001-11-05  Akim Demaille  <akim@epita.fr>
8289         * doc/autoconf.texi (testsuite Invocation): Update.
8290         (Writing testsuite.at): Update.
8292 2001-11-03  Akim Demaille  <akim@epita.fr>
8294         * doc/autoconf.texi: s/@code/@command/ where appropriate.
8296 2001-11-03  Akim Demaille  <akim@epita.fr>
8298         * lib/Autom4te/General.pm: (&catfile, &canonfile)
8299         (&file_name_is_absolute): New, wrappers around routines from
8300         File::Spec.
8301         Use and export them.
8302         (&find_configure_ac): Optionally take a directory where to look at.
8303         * bin/autoreconf.in (&parse_args): Trim the configure.ac part of
8304         the arguments.
8305         Default @ARGV to `.', not find_configure_ac.
8306         (&autoreconf): Argument is a directory.
8307         Trace AC_CONFIG_SUBDIRS and schedule the subdirs for autoreconf'ing.
8308         * doc/autoconf.texi (autoreconf Invocation): Update.
8310 2001-11-03  Akim Demaille  <akim@epita.fr>
8312         * lib/Autom4te/General.pm (@export_vars, @export_subs)
8313         (@export_forward_subs): New.
8314         Add basename, dirname, and fileparse.
8315         (@EXPORT): Adjust.
8316         * bin/autoreconf.in (&autoreconf): Fix call to fileparse.
8317         Don't look for aclocal flags if we already know aclocal is not
8318         used.
8319         Move aclocal.m4t only if it exists.
8320         Reported by Ezra Peisach.
8322 2001-11-03  Akim Demaille  <akim@epita.fr>
8324         * bin/autoreconf.in (&parse_args): Work only on the configure.ac
8325         passed on command line, defaulting to ./configure.ac if present.
8326         (&maybe_autoreconf, File::Find): Remove, unused.
8327         (&autoreconf): If autoconf is not used, don't try to trace.
8329 2001-11-02  Akim Demaille  <akim@epita.fr>
8331         * configure.ac: Bump to 2.52g.
8333 2001-11-02  Akim Demaille  <akim@epita.fr>
8335         Version 2.52f.
8337 2001-11-02  Akim Demaille  <akim@epita.fr>
8339         * config/config.guess, config/config.sub, doc/standards.texi:
8340         * config/lispdir.m4: Update from masters.
8341         * configure.ac: Bump to 2.52f.
8343 2001-11-02  Akim Demaille  <akim@epita.fr>
8345         * bin/autoreconf.in (&autoreconf): Set `$aclocal_flags' to ''.
8346         Don't run aclocal when aclocal.m4 is not from aclocal.
8347         From Ezra Peisach.
8348         Don't run libtoolize and gettextize if --install is not given.
8350 2001-11-01  Paul Eggert  <eggert@twinsun.com>
8352         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): _AS_CR_PREPARE needs to
8353         be invoked before _AS_LINENO_PREPARE.
8354         (_AS_LINENO_PREPARE): Use as_cr_digits and as_cr_alnum rather
8355         than character ranges.
8357         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Fix NLS before
8358         invoking AS_BASENAME.  Set the locale variables to 'C' if
8359         possible, as POSIX requires this to get the traditional
8360         behavior.
8361         * doc/autoconf.texi (Special Shell Variables): Describe the above.
8363 2001-10-31  Paul Eggert  <eggert@twinsun.com>
8365         * lib/m4sugar/m4sh.m4 (_AS_LINENO_WORKS): Do not surround body
8366         with {}, as that triggers a bug in Bash 2.05.
8368         (_AS_LINENO_PREPARE): Use Sed rather than
8369         Awk.  Fix the sed prepass to work even if there are multiple
8370         instances of $LINENO on the same line.  Do not substitute for
8371         other variables like $LINENOT.  Do not check file dates; such a
8372         check is unreliable on sufficiently fast machines, and removing
8373         the check makes the code simpler and more reliable.  Check for
8374         output and chmod failures.
8376         * doc/autoconf.texi (Special Shell Variables): Document
8377         the above.
8379 2001-10-31  Akim Demaille  <akim@epita.fr>
8381         * tests/Makefile.am (atconfig): Remove this target, Automake
8382         handles it now.
8384 2001-10-31  Akim Demaille  <akim@epita.fr>
8386         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): Do not
8387         AC_CONFIG_FILES(atlocal) as it means a file atlocal.in *must* be
8388         provided, while it is optional.
8389         * configure.ac: Adjust.
8391 2001-10-26  Paul Eggert  <eggert@twinsun.com>
8393         * NEWS, README, configure.ac, lib/Autom4te/General.pm,
8394           lib/Autom4te/Struct.pm:
8395         Require Perl 5.005_03 instead of just 5.005, as some tests fail
8396         with 5.005_02.
8398         * doc/autoconf.texi (Special Shell Variables): Document some
8399         more LINENO gotchas, particularly with respect to the Awk+Sed hack.
8401         * lib/m4sugar/m4sh.m4 (_AS_LINENO_WORKS): New macro.
8402         (_AS_LINENO_PREPARE): Use it instead of shell eval, since
8403         eval $LINENO is not portable in practice.
8405 2001-10-24  Akim Demaille  <akim@epita.fr>
8407         * lib/Autom4te/General.pm (backname): New.
8409 2001-10-24  Akim Demaille  <akim@epita.fr>
8411         * m4/: Remove, merged into...
8412         * config/: here.
8414 2001-10-23  Tim Van Holder  <tim.van.holder@pandora.be>
8416         * doc/autoconf.texi (Shellology): Mention the problems with bash
8417         2.05's use of ANSI quoting in its `set' builtin.
8419 2001-10-22  Paul Eggert  <eggert@twinsun.com>
8421         * lib/autoconf/functions.m4 (AC_FUNC_STRERROR_R):
8422         Rename ac_cv_func_strerror_r_works to ac_cv_func_strerror_r_char_p,
8423         and rename HAVE_WORKING_STRERROR_R to STRERROR_R_CHAR_P, since
8424         POSIX decided to standardize on the int flavor of strerror_r.
8425         Always do char* test, as there's no reason not to.
8426         Assign to a char* var, to catch strerror_r that returns int*.
8428         * doc/autoconf.texi (Particular Functions):
8429         Document the above changes.  Also, document the fact that
8430         AC_FUNC_STRERROR_R defines HAVE_DECL_STRERROR_R.
8432         * NEWS: Mention HAVE_WORKING_STRERROR_R -> STRERROR_R_CHAR_P.
8434 2001-10-20  Akim Demaille  <akim@epita.fr>
8436         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): The name of
8437         the executable was missing from the log.
8439 2001-10-20  Akim Demaille  <akim@epita.fr>
8441         * lib/Autom4te/General.pm (&update_file): If destination is
8442         unchanged, remove the source.
8443         (&up_to_date_p): Don't be verbose, be debug.
8444         * bin/autoreconf.in: No longer support --m4dir.
8445         (&autoreconf): Display the full path of the configure.ac we are
8446         studying.
8447         Trace it only once.
8448         Be sure to honor --force with gettextize.
8449         Always run aclocal.
8450         * doc/autoconf.texi: Adjust.
8452 2001-10-20  Akim Demaille  <akim@epita.fr>
8454         * bin/autoheader.in ($localdir, $m4, $SIMPLE_BACKUP_SUFFIX):
8455         Remove, dead.
8456         * bin/autoreconf.in (&autoreconf): Do not run gettextize when
8457         `intl' is already present, as it refuses unless --force.
8458         (&parse_args): Use -I, --include instead of the old Autoconf
8459         options.
8460         ($localdir, $autoconf_dir): Remove.
8461         (@include): New.
8462         (&maybe_autoreconf): New, to preserve $_ for File::Find.
8464 2001-10-19  Jens Petersen  <petersen@redhat.com>
8466         * lib/autoconf/programs.m4 (AC_PROG_AWK): Prefer gawk to mawk.
8467         * doc/autoconf.texi (Particular Programs): Likewise.
8469 2001-10-19  Akim Demaille  <akim@epita.fr>
8471         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES): Name the generated
8472         file in @configure_input@.
8473         Don't mention `automatically' in addition to `generated'.
8474         * tests/torture.at (#define header templates): Adjust.
8476 2001-10-19  Akim Demaille  <akim@epita.fr>
8478         * lib/emacs/autoconf-mode.el, lib/emacs/autotest-mode.el: In a
8479         comment, explain how to install automatic mode selection.
8480         From Russ Allbery.
8482 2001-10-19  Ezra Peisach  <epeisach@zif.mit.edu>
8484         * bin/autoreconf.in (autoreconf): Display the path to the
8485         configure.ac being studied.
8487 2001-10-18  Paul Eggert  <eggert@twinsun.com>
8489         * lib/autoconf/types.m4 (AC_CHECK_SIZEOF): Cast sizeof to unsigned
8490         long, to work around a bug in the HP C compiler version HP92453-01
8491         B.11.11.23709.GP.
8493         * lib/m4sugar/m4sh.m4 (AS_DIRNAME): Use 'dirname' if that works.
8494         (AS_BASENAME_EXPR): New macro.
8495         (AS_BASENAME_SED): Do not assume GNU sed semantics.
8496         (AS_BASENAME): Use 'basename' if that works; then try 'expr';
8497         and fall back on 'sed' only if the other two fail.  This makes
8498         AS_BASENAME act more like AS_DIRNAME.
8499         (as_me): Shell-quote the argument of AS_BASENAME, in case $0
8500         contains white space.
8501         * lib/autoconf/general.m4 (_AC_INIT_SRCDIR):
8502         Use AS_DIRNAME, since I think it's now DOS-friendly.
8503         * tests/m4sh.at (DIRNAME_TEST): New arg $3.
8504         Allow "dirname //FOO" to return either / or //, as POSIX allows
8505         either behavior.
8507 2001-10-10  Akim Demaille  <akim@epita.fr>
8509         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Recognize
8510         `a_out.exe' for OpenVMS 7.1, DEC C 5.5 compiler, via GNV.
8511         From Eric Sharkey.
8513 2001-10-10  Akim Demaille  <akim@epita.fr>
8515         * lib/m4sugar/m4sh.m4 (_AS_ECHO_N_PREPARE): m4_defun, not
8516         m4_define, since...
8517         (_AS_ECHO_N): AS_REQUIREs it.
8519 2001-10-10  Akim Demaille  <akim@epita.fr>
8521         * lib/autoconf/general.m4 (_AC_INCLUDES_DEFAULT_REQUIREMENTS)
8522         (AC_INCLUDES_DEFAULT): Move to...
8523         * lib/autoconf/headers.m4: here.
8524         * lib/autoconf/types.m4: Comment changes.
8525         * doc/autoconf.texi: Specify where the default includes are used
8526         in the macro prototypes.
8528 2001-10-09  Akim Demaille  <akim@epita.fr>
8530         * lib/autoconf/autoconf.m4 (m4_patsubst, m4_regexp): New
8531         transition code.
8533 2001-10-08  Akim Demaille  <akim@epita.fr>
8535         * bin/autoreconf.in (&autoreconf): Remove debugging code.
8536         (&parse_args): Pass verbosity/debugging options to subtools when
8537         --debug, not when --verbose.
8538         * lib/autom4te.in (Autoreconf-preselections): New.
8539         (Autoconf): Use it.
8541 2001-10-08  Akim Demaille  <akim@epita.fr>
8543         * bin/autoreconf.in (autoreconf): Run libtoolize when appropriate.
8545 2001-10-08  Akim Demaille  <akim@epita.fr>
8547         * doc/autoconf.texi (autoreconf Invocation): Adjust.
8548         * bin/autoreconf.in (autoreconf): Run gettextize when appropriate.
8550 2001-10-08  Akim Demaille  <akim@epita.fr>
8552         * tests/tools.at (AT_CHECK_PERL_SYNTAX): Check autoreconf.
8553         (Syntax of the shell scripts): Don't.
8554         * bin/autoheader.in, bin/autom4te.in, bin/autoreconf.in: Don't
8555         bother with $force since...
8556         * lib/Autom4te/General.pm: does.
8558 2001-10-08  Akim Demaille  <akim@epita.fr>
8560         * bin/autoreconf.in: Rewrite in Perl.
8561         * configure.ac: Adjust.
8562         * lib/Autom4te/General.pm (&up_to_date_p): New.
8563         * bin/autom4te.in (&up_to_date_p): Use it.
8564         Rename as...
8565         (&up_to_date): this.
8567 2001-10-08  Akim Demaille  <akim@epita.fr>
8569         * lib/m4sugar/m4sugar.m4 (m4_case, m4_bmatch, m4_normalize)
8570         (m4_list_cmp): Use $0 to reinvoke yourself.
8571         (m4_patsubsts): New.
8572         (m4_strip, m4_version_unletter): Use it.
8573         * tests/atspecific.m4 (AT_DATA_M4SUGAR, AT_DATA_M4SH): Likewise.
8575 2001-10-08  Akim Demaille  <akim@epita.fr>
8577         * lib/autoconf/autoconf.m4, lib/autoconf/general.m4,
8578         * lib/autoconf/libs.m4, lib/autoconf/status.m4,
8579         * lib/autoconf/types.m4, lib/autotest/general.m4,
8580         * lib/m4sugar/m4sh.m4, lib/m4sugar/m4sugar.m4, tests/atspecific.m4,
8581         * tests/torture.at: Rename m4_regexp, m4_patsubst, and m4_match to
8582         m4_bregexp, m4_bpatsubst, and m4_bmatch.
8583         * doc/autoconf.texi (Redefined M4 Macros): Adjust.
8585 2001-10-08  Akim Demaille  <akim@epita.fr>
8587         * lib/m4sugar/m4sh.m4: Use AS_REQUIRE.
8589 2001-10-08  Akim Demaille  <akim@epita.fr>
8591         * lib/m4sugar/m4sh.m4 (AS_DIRNAME_EXPR): Use AS_REQUIRE.
8592         * tests/tools.at (AT_DATA_FORBIDDEN): Rename/move/duplicate to...
8593         * tests/atspecific.m4 (AT_DATA_M4SUGAR, AT_DATA_M4SH): here.
8594         * tests/tools.at, tests/m4sh.at: Use it.
8595         * tests/m4sh.at: Don't rely on Autoconf macros.
8596         (DIRNAME_TEST): Also exercise the expr variant.
8597         * tests/m4sugar.at, tests/atspecific.m4 (AT_CHECK_M4SUGAR): The
8598         preferred M4sugar extension is now `.4s'.
8599         * tests/README: Remove.
8601 2001-10-08  Akim Demaille  <akim@epita.fr>
8603         * lib/m4sugar/m4sugar.m4 (m4_provide_ifelse): Rename as...
8604         (m4_provide_if): this.
8605         * lib/m4sugar/m4sh.m4 (AS_REQUIRE): New.
8606         * lib/autoconf/general.m4 (AS_DEFUN, AC_DEFUN_ONCE, AC_BEFORE)
8607         (AC_REQUIRE, AC_PROVIDE, AC_PROVIDE_IFELSE): Be exact copy of the
8608         M4sugar peer, i.e., drop the `AC_PROVIDE_$1' broken marker.
8610 2001-10-08  Akim Demaille  <akim@epita.fr>
8612         Use `add-log-current-defun-function' for ChangeLog creation.
8613         Suggested by Tom Tromey.
8615         * lib/emacs/autotest-mode.el (autotest-mode-map): New.
8616         (autotest-mode): Adjust.
8617         * lib/emacs/autoconf-mode.el (autoconf-mode-map): Modernize, map
8618         'comment-region onto `C-c ;'.
8619         Comments are `#', not `dnl'.
8620         (autoconf-current-defun): New.
8621         (autoconf-font-lock-keywords): Recognize `m4_defun'.
8623 2001-10-08  Akim Demaille  <akim@epita.fr>
8625         * lib/autoconf/general.m4 (_m4_divert(BODY)): Move to...
8626         * lib/m4sugar/m4sh.m4: here.
8627         (AS_INIT): Push the BODY diversion, set the #! /bin/sh line.
8628         * lib/autoconf/general.m4 (AC_PLAIN_SCRIPT) : Remove.
8629         (AT_INIT): Replace AC_PLAIN_SCRIPT with AS_INIT invocation,
8630         include handle the m4_pattern_*, no longer push the
8631         BODY diversion nor set the /bin/sh line, AS_INIT does it.
8632         * lib/autotest/general.m4 (AT_INIT): Likewise.
8633         * tests/base.at: Adjust the tests to use AS_INIT.
8634         * tests/tools.at (AT_DATA_FORBIDDEN): New.
8635         (autoconf: forbidden tokens): Adjust to work on M4sh instead of
8636         Autoconf.
8638 2001-10-07  Paul Eggert  <eggert@twinsun.com>
8640         * doc/autoconf.texi (config.status Invocation):
8641         CONFIG_SHELL defaults to a shell that supports LINENO if available.
8643         * lib/m4sugar/m4sh.m4 (_AS_LINENO_PREPARE): If the current
8644         shell does not support LINENO, and if CONFIG_SHELL is unset or
8645         empty, and if we can find a shell that does support LINENO,
8646         then set CONFIG_SHELL to that shell and then re-execute
8647         ourselves with CONFIG_SHELL.
8649 2001-10-05  Paul Eggert  <eggert@twinsun.com>
8651         * tests/Makefile.am (clean-local): Don't invoke $(TESTSUITE) if it
8652         doesn't exist.  Remove *.tmp, as a .tmp file is created during the
8653         build of $(TESTSUITE).
8655 2001-10-05  Akim Demaille  <akim@epita.fr>
8657         * lib/m4sugar/m4sh.m4 (_AS_LINENO_PREPARE): Look in the path
8658         iff we are a bareword.
8659         Reported by Raja R Harinath.
8661 2001-10-05  Akim Demaille  <akim@epita.fr>
8663         * tests/m4sh.at (LINENO): New.
8664         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Be sure to set
8665         PATH_SEPARATOR before using it.
8666         Fix the absolute path case/esac pattern.
8667         Provide $0 as fallback for as_myself.
8668         Reported by Raja R Harinath.
8670 2001-10-05  Akim Demaille  <akim@epita.fr>
8672         * Makefile.am, config/Makefile.am, lib/emacs/Makefile.am,
8673         * m4/Makefile.am, man/Makefile.am: Add/adjust MAINTAINERCLEANFILES.
8675 2001-10-05  Akim Demaille  <akim@epita.fr>
8677         * lib/m4sugar/m4sh.m4 (_AS_LINENO_PREPARE): New, extracted from...
8678         (AS_SHELL_SANITIZE): here.  Use it.
8679         (_AS_LINENO_PREPARE): Preserve the exit status of $0.lineno.
8680         From Paul Eggert.
8682 2001-10-04  Akim Demaille  <akim@epita.fr>
8684         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Use a portable
8685         combination of Awk and sed to replace $LINENO.
8687 2001-10-02  Paul Eggert  <eggert@twinsun.com>
8689         * doc/autoconf.texi (Limitations of Builtins): You can't use
8690         "source"; it's not portable.  Remove confusing and
8691         somewhat-incorrect example involving "." and "/".
8693         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): "source" -> ".", for
8694         compatibility with POSIX shells.
8696 2001-10-02  Akim Demaille  <akim@epita.fr>
8698         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Just source 40.lineno
8699         instead of exec'ing to preserve $0 and $@.
8701 2001-10-01  Akim Demaille  <akim@epita.fr>
8703         * tests/testsuite (AT_INIT) <at_pass_list>: New.
8704         Don't run twice the same test.
8706 2001-10-01  Akim Demaille  <akim@epita.fr>
8708         * lib/autotest/general.m4 (AT_INIT) <--help>: Catch up with reality.
8709         No longer output the list of tests.
8710         <--list>: New option.
8711         <--full-help>: Remove.
8712         Complete the short/long options duality.
8713         Various small adjustments.
8715 2001-10-01  Akim Demaille  <akim@epita.fr>
8717         * doc/autoconf.texi: Use @kbd for user input.
8718         Always use `$' as shell prompt.
8720 2001-09-30  Paul Eggert  <eggert@twinsun.com>
8722         * lib/autoconf/status.m4 (AC_OUTPUT_MAKE_DEFS):
8723         Don't use nested parenthesization.  This patch was originally
8724         suggested to bug-autoconf by Philippe De Muyter on 2000-05-28,
8725         but somehow it didn't get incorporated then.
8726         * doc/autoconf.texi (Limitations of Usual Tools):
8727         Clarify remark about sed and nested parenthesization.
8729         * lib/autoconf/types.m4 (AC_CHECK_SIZEOF):
8730         Report an error if the size cannot be determined even though
8731         the type exists.
8732         * lib/autoconf/general.m4 (_AC_COMPUTE_INT_COMPILE):
8733         Check for `expr' arithmetic overflow, and for compilation failure,
8734         and invoke a new argument $4 if either is discovered.
8735         This makes _AC_COMPUTE_INT_COMPILE more like _AC_COMPUTE_INT_RUN.
8736         (_AC_COMPUTE_INT): Pass IF-FAILS arg to _AC_COMPUTE_INT_COMPILE.
8738 2001-09-28  Akim Demaille  <akim@epita.fr>
8740         * lib/emacs/autoconf-mode.el, lib/emacs/autotest-mode.el: New.
8741         * m4/lispdir.m4: New.
8742         * aclocal.m4, configure.ac: Adjust.
8744 2001-09-28  Akim Demaille  <akim@epita.fr>
8746         * lib/autotest/general.m4 (AT_VICTIMS): Rename as...
8747         (AT_TESTED): this.
8748         (AT_INIT): More the wrapped section to where it will be expanded.
8749         Output `AT_tested' only when existing.
8750         Catch unexpanded PACKAGE_STRING and PACKAGE_BUGREPORT.
8752 2001-09-27  Akim Demaille  <akim@epita.fr>
8754         Fix the passing of $? to ACTION-IF-FAILED in AC_TRY_RUN, that
8755         generates too many bug reports.
8757         * lib/autoconf/general.m4 (_AC_RUN_IFELSE): Pass the right exit
8758         status when executing the ACTION-IF-FALSE.
8759         * tests/base.at (AC_TRY_*): Rename as...
8760         (AC_TRY_COMMAND): this.
8761         (AC_RUN_IFELSE): New.
8762         * tests/compile.at (Extensions, C keywords)
8763         (AC_PROG_CPP requires AC_PROG_CC, GNU Fortran 77)
8764         (Broken/missing compilers, AC_PROG_CPP with warnings)
8765         (AC_PROG_CPP without warnings, AC_PROG_CPP via CC): Move to...
8766         * tests/c.at (Extensions, C keywords)
8767         (Broken/missing compilers, AC_PROG_CPP with warnings)
8768         (AC_PROG_CPP without warnings, AC_PROG_CPP via CC)
8769         (AC_PROG_CPP requires AC_PROG_CC): here and...
8770         * tests/fortran.at (GNU Fortran 77): there.
8771         * doc/autoconf.texi (autoconf Invocation): Fix the example:
8772         AC_TRY_RUN is about compilation, not shell commands.
8773         (Test Programs): AC_TRY_RUN works as used to be advertised.
8775 2001-09-27  Akim Demaille  <akim@epita.fr>
8777         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Fix bugs spotted by
8778         Raja R Harinath:
8779         Be sure to detect when $LINENO always returns the same value.
8780         Look for the original script, basename($0) is certainly not
8781         enough.
8782         Pass the CLI arguments to `$as_me.lineno'.
8784 2001-09-25  Akim Demaille  <akim@epita.fr>
8786         * lib/autotest/general.m4 (AT_INIT): Dump the whole config.log.
8787         Be sure the close and reopen the LOG fd before and after using tee
8788         to extend the log.
8789         <at_tests_pattern>: Adjust to the new format of at_help_all.
8791 2001-09-23  Akim Demaille  <akim@epita.fr>
8793         * bin/autom4te.in (parse_args): There can be several invocations
8794         of --language now.
8796 2001-09-23  Akim Demaille  <akim@epita.fr>
8798         * doc/autoconf.texi (Top): Wrap in @ifnottex.
8800 2001-09-23  Akim Demaille  <akim@epita.fr>
8802         * lib/autoconf/status.m4 (_AC_SRCPATHS): Compute and provide
8803         ac_buildpath, ac_top_buildpath, ac_srcpath, and ac_top_srcpath.
8804         (_AC_OUTPUT_FILES): Also substitute srcpath, top_srcpath,
8805         builddir, buildpath, top_builddir, and top_buildpath.
8806         (_AC_OUTPUT_SUBDIRS): Compute the dir variables *before* changing
8807         the current directory.
8808         * lib/autoconf/general.m4 (_AC_INIT_HELP): Compute the dir
8809         variables *before* changing the current directory.
8810         Skip nonexistent dirs.
8811         * doc/autoconf.texi (Preset Output Variables): Document these
8812         variables.
8814         * lib/autotest/general.m4: Do not reset AT_victims.
8815         Don't compute at_srcdir nor at_top_srcdir.
8817         * tests/tools.at: Hence use top_srcdir.
8819         * tests/Makefile.am, tests/autoconf, tests/autoheader,
8820         * tests/autom4te, tests/autoreconf, tests/autoupdate, tests/ifnames:
8821         Remove.
8822         * tests/autoreconf.in, tests/wrappl.in, tests/autom4te.in,
8823         * tests/wrapsh.in, tests/autoupdate.in: New.
8824         * tests/Makefile.am (DISTCLEANFILES, EXTRA_DIST): Adjust.
8825         * configure.ac: Build the position independent wrappers.
8827         * man/Makefile.am: Now that test wrappers are position
8828         independent, use them and drop dark envvar magic.
8830 2001-09-23  Akim Demaille  <akim@epita.fr>
8832         * doc/autoconf.texi (Common Shell Constructs): Rename as...
8833         (Programming in M4sh): this.
8834         Promote to @section.
8836 2001-09-23  Akim Demaille  <akim@epita.fr>
8838         * lib/autotest/general.m4 (AT_INIT): Dump config.log last.
8839         Pass $at_debug_args to the rerun test suite.
8840         * lib/m4sugar/Makefile.am (DISTCLEANFILES): New.
8841         * bin/Makefile.am (ETAGS_SH): Don't use characters ranges.
8842         From Paul Eggert.
8844 2001-09-23  Akim Demaille  <akim@epita.fr>
8846         * bin/autom4te.in (@my_warning): Remove, handled by `autom4te.cfg'.
8848 2001-09-23  Akim Demaille  <akim@epita.fr>
8850         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Fix shell
8851         over-escaping.
8853 2001-09-23  Akim Demaille  <akim@epita.fr>
8855         * lib/Autom4te/General.pm (&debug): New.
8856         * bin/autom4te.in ($language): Move to...
8857         (parse_args): here.
8858         Handle --language in languages.
8859         * lib/autom4te.in (Automake-selections, Autoheader-selections)
8860         (Autoscan-selections): New.
8861         (Autoconf): Adjust.
8863 2001-09-23  Tim Van Holder  <tim.van.holder@pandora.be>
8865         * m4/auxdir.m4, m4/cond.m4, m4/depend.m4, m4/init.m4,
8866         * m4/install-sh.m4, m4/missing.m4, m4/sanity.m4, m4/strip.m4: Updated
8867         to match current versions from CVS Automake.
8869 2001-09-23  Alexandre Duret-Lutz  <duret_g@epita.fr>
8871         * doc/autoconf.texi (Special Shell Variables): Add pdksh output
8872         for $LINENO.
8874 2001-09-22  Akim Demaille  <akim@epita.fr>
8876         * lib/autoconf/autotest.m4: Create `package.m4'.
8877         * tests/Makefile.am (package.m4): Remove.
8879 2001-09-22  Akim Demaille  <akim@epita.fr>
8881         Rely on `$LINENO' when possible instead of `__oline__'.
8883         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Provide some form of
8884         `$LINENO' support replacement when not supported.
8885         (_AS_CR_PREPARE, _AS_TR_CPP_PREPARE, _AS_TR_SH_PREPARE): Invoke
8886         them explicitly to be sure they are not output before this section
8887         (via m4_require).  Cosmetic only.
8888         * lib/autoconf/c.m4, lib/autoconf/general.m4,
8889         * lib/autoconf/programs.m4: Replace all the occurrences of
8890         `__oline__' with `$LINENO'.
8891         * doc/autoconf.texi (Special Shell Variables): Document LINENO.
8893 2001-09-21  Tim Van Holder  <tim.van.holder@pandora.be>
8895         * lib/autoconf/functions.m4 (_AC_FUNC_FORK): Replaceded an 8-bit
8896         character (u: -> ue) in a code comment.
8897         (AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK): Only run 'ln -s' if we know
8898         it works.
8900 2001-09-21  Akim Demaille  <akim@epita.fr>
8902         * Makefile.maint (AUTOM4TE): Neutralize autom4te.
8903         Suggested by Jim Meyering.
8905 2001-09-20  Tim Van Holder  <tim.van.holder@pandora.be>
8907         * lib/autoconf/programs.m4: Use extensions listed in
8908         $ac_executable_extensions when looking for programs.
8910 2001-09-20  Tim Van Holder  <tim.van.holder@pandora.be>
8912         * lib/autoconf/general.m4: Fix a small Englisho.
8913         * lib/autoconf/status.m4: Fix a small typo.  Handle DOS paths when
8914         setting up ac_dir_suffix and ac_top_builddir.
8915         * lib/m4sugar/m4sh.m4: Default CDPATH to $PATH_SEPARATOR, not ':'.
8917 2001-09-20  Tim Van Holder  <tim.van.holder@pandora.be>
8919         * doc/autoconf.texi (File System Conventions): Clarify the use of
8920         PATH_SEPARATOR.
8921         (Special Shell Variables[PATH_SEPARATOR]): Ditto.
8922         (Special Shell Variables[CDPATH]): Mention that $PATH_SEPRATOR should
8923         be used instead of ':'.
8924         * lib/autotest/general.m4: Replace occurrences of ':' in
8925         AUTOTEST_PATH with $PATH_SEPARATOR at test suite startup.
8927 2001-09-20  Tim Van Holder  <tim.van.holder@pandora.be>
8929         * tests/atgeneral.m4: Add basic support for test ranges (e.g. 7-34) as
8930         arguments.  Fixed a typo.
8932 2001-09-20  Tim Van Holder  <tim.van.holder@pandora.be>
8934         * man/Makefile.am (.x.1): Use @PATH_SEPARATOR@, not ':' to set up
8935         $PATH.  Also set AUTOM4TE_CFG, so we can process autom4te properly.
8937 2001-09-20  Tim Van Holder  <tim.van.holder@pandora.be>
8939         * bin/autoscan.in: Add 'exec-perl-if-not-run-by-perl'.
8940         * bin/autoupdate.in: Ditto.
8941         * bin/autoheader.in: Reworded a few comments.
8942         * bin/autoconf.in: Reworded help text for a few options.
8943         * bin/autoheader.in, bin/autom4te.in, bin/autoreconf.in,
8944         * bin/autoscan.in, bin/autoupdate.in: Ditto.
8946 2001-09-20  Tim Van Holder  <tim.van.holder@pandora.be>
8948         * lib/Autom4te/XFile.pm (open): Simplified the error message (we
8949         already have $file).  Set output files to binary mode (helps avoid
8950         CR issues on DOSish systems).
8952 2001-09-19  Akim Demaille  <akim@epita.fr>
8954         * lib/autotest/general.m4: Englishoes.
8955         From Tim Van Holder and Alexey Mahotkin.
8957 2001-09-18  Paul Eggert  <eggert@twinsun.com>
8959         * doc/autoconf.texi (Common Shell Constructs): New node,
8960         documenting AS_DIRNAME.
8961         (Limitations of Usual Tools): Refer to it when discussing dirname.
8962         Also, update discussion of POSIX standard to reflect latest draft.
8964         * lib/autoconf/c.m4:
8965         (AC_LANG_INT_SAVE(C)): Also support negative values, down to LONG_MIN.
8967         * lib/autoconf/general.m4 (_AC_COMPUTE_INT_COMPILE):
8968         Do not pass a first argument with leading '-'
8969         to expr, by parenthesizing initial integers that might be negative.
8971         * doc/autoconf.texi (Particular Functions): AC_FUNC_GETPGRP
8972         now merely checks whether it is an error to pass an argument
8973         to getpgrp.
8975         * lib/autoconf/functions.m4 (_AC_FUNC_GETPGRP_TEST): Remove.
8976         (AC_FUNC_GETPGRP): Don't bother with a runtime test.  Just check
8977         whether it is a (compile-time) error to pass an argument to
8978         getpgrp.  This simpler test supports the revised documentation,
8979         and is all that AC_FUNC_GETPGRP's users really need.
8981 2001-09-18  Akim Demaille  <akim@epita.fr>
8983         * doc/autoconf.texi (Limitations of Make) <$<>: New.
8985 2001-09-18  Akim Demaille  <akim@epita.fr>
8987         * doc/autoconf.texi (Limitations of Usual Tools) <find>: More about
8988         `{}'.
8989         * lib/autotest/general.m4 (AT_INIT): Adjust.
8991 2001-09-18  Paul Wagland  <paul@wagland.net>
8993         * tests/m4sh.at: Ensure that AS_DIRNAME handles '/', '//' and '///'
8994         correctly.
8995         Add test for AS_BASENAME.
8996         * lib/m4sugar/m4sh.m4: Fix AS_BASENAME so that it passes the previous
8997         added test. It now correctly handles /1/2/3/, returning '3' not ''.
8998         Added AS_BASENAME_SED to make the interface the same as AS_DIRNAME.
8999         * tests/base.at: Fixed the expected responses. The old ones were
9000         one line out...
9001         * lib/autoconf/general.m4: Fixed AC_PREFIX_PROGRAM, it now behaves as
9002         the documentation claims it should (and how it behaved in 2.13).
9004 2001-09-18  Akim Demaille  <akim@epita.fr>
9006         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): No INIT-CMDS in
9007         the AC_CONFIG_COMMANDS invocation.
9008         This also solves the name clash problems.
9009         Don't set the package's ID.
9010         * lib/m4sugar/Makefile.am (version.m4): Revamp.
9011         No longer to be shipped.
9012         (version.in): Remove.
9013         * lib/m4sugar/m4sugar.m4, lib/autoconf/general.m4,
9014         * lib/autoconf/status.m4: Adjust.
9015         Use `m4_PACKAGE_STRING'.
9016         * lib/autotest/general.m4 (AT_INIT): N-th signature change: now
9017         the only optional argument is the name of the test suite.
9018         Expect `package.m4' to define the package signature.
9019         * lib/autom4te.in (Autotest): Add `package.m4?'.
9020         * tests/Makefile.am (package.m4): New.
9021         * tests/suite.at: ifnames is a victim.
9023 2001-09-18  Akim Demaille  <akim@epita.fr>
9025         * lib/autom4te.in (Autoconf): Preselect AM_CONDITIONAL,
9026         AC_LIBSOURCE, AC_CONFIG_FILES.
9027         * lib/autotest/general.m4 (AT_INIT): Don't abort when a tested
9028         program version string doesn't match the package's.
9029         * lib/autoconf/general.m4 (AC_CACHE_VAL): Reestablish the space
9030         after `(cached)'.
9032 2001-09-17  Paul Eggert  <eggert@twinsun.com>
9034         * lib/autoconf/c.m4: (AC_LANG_INT_SAVE(C)):
9035         Allow expression to return any value that can fit into unsigned long
9036         (not int, as before).  Check for output errors.
9038 2001-09-17  Bruno Haible  <haible@ilog.fr>
9040         * lib/autoconf/c.m4: (AC_LANG_INT_SAVE(C)):
9041         Always include <stdio.h> and <stdlib.h>. Evaluate
9042         the expression in an extra function before these includes. Call
9043         fprintf "%d" only after ensuring the argument is of type 'int'.
9044         Reported by Wayne Chapeskie <waynec@spinnaker.com>.
9046 2001-09-17  Paul Eggert  <eggert@twinsun.com>
9048         Fix bug reported by Paul Townsend on AIX 4.3.3.0 with CFLAGS=-O4
9049         or CFLAGS=-O5.  In that case, the linker has a relaxed view of
9050         fatal errors, and AC_CHECK_LIB causes it to include libraries even
9051         when they don't exist.
9053         * lib/autoconf/headers.m4 (AC_HEADER_DIRENT): Use AC_SEARCH_LIBS,
9054         not AC_CHECK_LIB, so that we don't use -ldir or -lx if we don't
9055         need it.
9057         * lib/autoconf/specific.m4 (AC_ISC_POSIX): Replace the old, crufty
9058         version with the version used by fileutils 4.1, except use
9059         AC_SEARCH_LIBS, not AC_CHECK_LIB, so that we don't use -lcposix if
9060         we don't need it.
9062         * doc/autoconf.texi (AC_ISC_POSIX): Describe new behavior.
9064 2001-09-13  Akim Demaille  <akim@epita.fr>
9066         * tests/base.at, tests/m4sh.at: Be sure to issue the bangshe line
9067         _first_.
9068         Reported by Gerrit P. Haase.
9070 2001-09-13  Akim Demaille  <akim@epita.fr>
9072         * lib/autotest/general.m4 (AT_INIT): Reset `AT_victims' so that
9073         m4_defn'ing is valid.
9075 2001-09-13  Akim Demaille  <akim@epita.fr>
9077         * lib/m4sugar/m4sugar.m4 (m4_append_uniq): New.
9078         * lib/autotest/general.m4 (AT_VICTIMS, AT_KEYWORDS, _AT_CLEANUP_FILE):
9079         Use it.
9081 2001-09-13  Akim Demaille  <akim@epita.fr>
9083         * lib/m4sugar/m4sugar.m4 (_AS_QUOTE_IFELSE, _AS_BOX_INDIR): Use
9084         m4_match.
9085         (m4_re_escape): New.
9086         * lib/autoconf/status.m4 (AC_CONFIG_IF_MEMBER): Use it.
9087         * lib/autoconf/general.m4 (AC_CACHE_SAVE): Use m4_match.
9088         * lib/autoconf/status.m4 (AC_CONFIG_IF_MEMBER, AC_CONFIG_LINKS):
9089         Likewise.
9090         * lib/autoconf/types.m4 (_AC_CHECK_TYPE_REPLACEMENT_TYPE_P)
9091         (_AC_CHECK_TYPE_MAYBE_TYPE_P, AC_CHECK_MEMBER): Likewise.
9092         * lib/autotest/general.m4 (AT_INIT): Rename AT_TESTS_ALL as
9093         AT_tests_all for consistency.
9094         Set at_victims.
9095         (AT_VICTIMS): Similar to AT_KEYWORDS.
9096         (_AT_CLEANUP_FILE_IF): Use m4_match and m4_re_escape.
9098 2001-09-13  Akim Demaille  <akim@epita.fr>
9100         * lib/autotest/general.m4 (AT_INIT): Fix stupid bugs.
9102 2001-09-13  Akim Demaille  <akim@epita.fr>
9104         * lib/autotest/general.m4 (AT_INIT): Create and remove
9105         `$as_me.[0-9]+' instead of `debug-[0-9]+.sh', so that multiple
9106         test suites can cohabit.
9108 2001-09-13  Akim Demaille  <akim@epita.fr>
9110         * tests/mktests.sh: Don't output banners for empty test files.
9112 2001-09-13  Akim Demaille  <akim@epita.fr>
9114         Test suites can be run independently of configure.
9116         * lib/m4sugar/m4sh.m4 (_AS_ECHO, _AS_ECHO_N_PREPARE): New.
9117         * lib/autoconf/programs.m4 (_AC_PROG_ECHO): Remove.
9118         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Adjust: AC_SUBST
9119         ECHO_N etc.
9120         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): Don't ask for at_n
9121         and at_c.
9122         * lib/autotest/general.m4: Use ECHO_*.
9124 2001-09-13  Akim Demaille  <akim@epita.fr>
9126         * bin/ifnames.in: Rewrite in Perl.
9127         * configure.ac: Don't look for AWK.
9128         * tests/tools.at (AWK portability): Remove.
9129         (Syntax of the shell scripts): Don't check ifnames.
9130         (AT_CHECK_PERL_SYNTAX): New.
9131         (Syntax of the Perl scripts): Check ifnames.
9132         * tests/ifnames: New.
9134 2001-09-13  Akim Demaille  <akim@epita.fr>
9136         * lib/autotest/general.m4 (AT_INIT): Let --keywords also match
9137         test group titles.
9138         * tests/atspecific.m4 (AT_CHECK_AU_MACRO): AT_KEYWORDS(autoupdate).
9139         Remove all the other keywords.
9141 2001-09-10  Akim Demaille  <akim@epita.fr>
9143         * lib/autotest/general.m4 (AT_INIT): Remove the diversion HELP and
9144         SETUP: no longer used.
9145         Support -k, --keywords.
9146         <at_help>: Be `no', `short', or `long'.
9147         <at_help_all>: New variable.
9148         (AT_KEYWORDS): New.
9149         (AT_CLEANUP_FILE_IFELSE, AT_CLEANUP_FILE): Rename as...
9150         (_AT_CLEANUP_FILE_IF, _AT_CLEANUP_FILE): these.
9151         (_AT_CLEANUP_FILE_IF): Simplify the regexp.
9152         (AT_SETUP): Reset AT_line, AT_keywords, AT_description.
9153         No longer fill the HELP diversion.
9154         (AT_CLEANUP): Use them.
9155         * lib/m4sugar/m4sugar.m4 (m4_append): Support a separator.
9156         (m4_list_append): Remove.
9158         Spread a few keywords in the Autoconf test suite.
9160 2001-09-10  Akim Demaille  <akim@epita.fr>
9162         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): Don't pass
9163         PATH_SEPARATOR, let M4sh compute it.
9164         * lib/m4sugar/m4sh.m4 (_AS_PATH_SEPARATOR_PREPARE): New.
9165         * lib/autoconf/programs.m4 (AC_SHELL_PATH_WALK): Use PATH_SEPARATOR.
9166         Move to...
9167         * lib/m4sugar/m4sh.m4 (_AS_PATH_WALK): Here.
9168         Simplify when the path is not a literal.
9169         (AS_UNAME): Use it to report PATH.
9170         * lib/autoconf/general.m4 (_AC_INIT_PREPARE_FS_SEPARATORS): Remove.
9171         (_AC_INIT_DEFAULTS): AC_SUBST PATH_SEPARATOR.
9172         * lib/autoconf/programs.m4 (AC_PROG_INSTALL): Use _AS_PATH_WALK.
9173         * lib/autotest/general.m4 (AT_INIT): Use _AS_PATH_WALK to
9174         normalize the path, and to look for victims.
9175         * tests/semantics.at (AC_PATH_PROG & AC_PATH_PROGS)
9176         (AC_CHECK_PROG & AC_CHECK_PROGS): Use PATH_SEPARATOR.
9178 2001-09-07  Akim Demaille  <akim@epita.fr>
9180         * bin/autom4te.in (&handle_m4): `< /dev/null' so that GNU M4 1.5
9181         doesn't neutralize SIGINT, making autoconf etc. non interruptible.
9182         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): Move the package
9183         related variables into `at_package_*'.
9184         * lib/autotest/general.m4 (AT_VICTIMS): New.
9185         (AT_INIT): Adjust for stand-alone/embedded test suites.
9186         (AS_MESSAGE_LOG_FD): Define and use it.
9187         * tests/suite.at (AT_VICTIMS): Use it.
9188         * tests/tools.at (autoupdating AC_PREREQ): Don't depend upon
9189         at_version.
9191 2001-09-07  Akim Demaille  <akim@epita.fr>
9193         Move toward possibly stand-alone test suites.
9195         * lib/autotest/general.m4: Stop displaying srcdir everywhere as,
9196         in addition, it introduces useless differences in logs.
9197         (AT_INIT): Let atconfig and atlocal be both optional.
9198         Adjust PATH computation.
9199         * lib/m4sugar/m4sh.m4 (AS_UNAME): More readable display of PATH.
9201 2001-09-07  Akim Demaille  <akim@epita.fr>
9203         * lib/autoconf/Makefile.am (autoconf.m4f): Depends upon
9204         m4sugar/version.m4.
9206 2001-09-05  Akim Demaille  <akim@epita.fr>
9208         * lib/autoconf/c.m4 (AC_LANG_BOOL_COMPILE_TRY(C)): Use `_array_'
9209         to avoid GCC warnings.
9210         From Uwe Seimet.
9212 2001-09-05  Akim Demaille  <akim@epita.fr>
9214         * bin/autom4te.in: --language is -l, not -s.
9216 2001-09-05  Akim Demaille  <akim@epita.fr>
9218         Be ready to handle filenames as stupid as `dnl.at', for if even
9219         the maintainer is dumb enough to do that...
9221         * lib/autotest/general.m4 (AT_SETUP, AT_LINE): Demonstrates your
9222         excellence in M4 quotation: consider `__file__' is active.
9224         And BTW, when invoking m4, pass the --include in the right order:
9225         the wrong one.
9227         * bin/autom4te.in, bin/autoupdate.in: Use reverse when kingtal to
9228         4m.
9230 2001-09-05  Akim Demaille  <akim@epita.fr>
9232         * lib/Autom4te/XFile.pm: New lib file.
9233         * bin/autoupdate.in, bin/autoscan.pl, bin/autom4te.in,
9234         * bin/autoheader.in: Use it.
9236 2001-09-05  Akim Demaille  <akim@epita.fr>
9238         * bin/autoupdate.in (&handle_m4_macros) <unm4.m4>: Undefine iff
9239         defined.
9241 2001-09-05  Akim Demaille  <akim@epita.fr>
9243         * lib/Autom4te/General.pm (&getopt): Work around the `-' Getopt bug.
9244         * bin/autoheader.in, bin/autoupdate.in (&parse_args): Adjust.
9246         * bin/autoscan.in: Use `getopt' and `find_files' etc.
9247         Add -I, --include support.
9248         * doc/autoconf.texi (autoscan Invocation): Adjust.
9250 2001-09-05  Akim Demaille  <akim@epita.fr>
9252         CVS GNU M4 doesn't like `undefine(undefined)'.
9254         * bin/autoupdate.in (&handle_m4_macros, &handle_autoconf_macros):
9255         New, extracted from main.
9256         Use IO::File wherever possible.
9257         (input.m4): Be constant, use -I instead of hard coding $tmp.
9258         Therefore be a quoted heredoc.
9259         Don't invoke `_au_disable', since ac was not loaded, but just
9260         `unm4.m4'.
9262 2001-08-31  Akim Demaille  <akim@epita.fr>
9264         Version 2.52d.
9266 2001-08-31  Akim Demaille  <akim@epita.fr>
9268         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Fix the
9269         previous patch.
9270         * tests/atspecific.m4 (AT_CHECK_AUTOHEADER): Can create `config.hin~'.
9272 2001-08-31  Akim Demaille  <akim@epita.fr>
9274         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): DU 5.0 has
9275         serious problems handling heredocs in heredocs.
9276         Reported by Nicolas Joly.
9278 2001-08-31  Akim Demaille  <akim@epita.fr>
9280         * doc/autoconf.texi: Don't promote non `m4_*' M4 macros.
9281         (Making testsuite Scripts): Update.
9283 2001-08-31  Akim Demaille  <akim@epita.fr>
9285         * lib/Makefile.am (CLEANFILES): Add autom4te.cfg.
9287 2001-08-31  Akim Demaille  <akim@epita.fr>
9289         * doc/autoconf.texi (Quadrigraphs): Document `@&t@'.
9290         (testsuite Scripts): There is no such thing as `atconfig.in'.
9291         And actually one diagram is missing: test suite runtime.
9293 2001-08-31  Akim Demaille  <akim@epita.fr>
9295         * lib/Autom4te/General.pm (&find_file): Browse the includes in the
9296         inverse order.
9298 2001-08-31  Akim Demaille  <akim@epita.fr>
9300         * bin/autoupdate.in (@include): `installcheck' revealed the path
9301         to m4sugar was lacking!
9303 2001-08-31  Akim Demaille  <akim@epita.fr>
9305         * man/Makefile.am (.x.1): We really have to pass
9306         autom4te_perllibdir.
9308 2001-08-31  Akim Demaille  <akim@epita.fr>
9310         * lib/autotest/general.m4 (AT_INIT): Don't pass all the args to
9311         debug scripts, in particular passing explicitly listed tests to
9312         run is stupid.
9314 2001-08-31  Akim Demaille  <akim@epita.fr>
9316         * bin/autom4te.in (&parse_args): Strip `.' from `@include'.
9317         * bin/autoupdate.in: Use --include, -I, and --force, -f, too.
9318         Use directly autom4te, not autoconf.
9319         * tests/autoupdate: $top_srcdir/lib is needed too for melt files.
9321 2001-08-31  Akim Demaille  <akim@epita.fr>
9323         * tests/semantics.at (AC_C_BIGENDIAN): Missing eol.
9324         * bin/autoheader.in (%symbol): Strip arguments of macros.
9326 2001-08-31  Akim Demaille  <akim@epita.fr>
9328         * doc/autoconf.texi: Catch up -I, --include changes.
9330 2001-08-31  Akim Demaille  <akim@epita.fr>
9332         * bin/autom4te.in (&parse_args): Die on unknown languages.
9333         * bin/autoheader.in: Run directly autom4te --mode=autoconf, no
9334         need for autoconf.
9335         Promote --include over --macrodir and other obsolete options.
9337 2001-08-31  Akim Demaille  <akim@epita.fr>
9339         * lib/Autom4te/General.pm ($version, $help, &getopt): New.
9340         * bin/autoupdate.in, bin/autoheader.in, bin/autom4te.in: Use them.
9341         * bin/autom4te.in ($autoconf): Pass --force.
9342         `print $out' doesn't print `$_' but `$out'.
9343         * tests/tools.at (Syntax of the Perl scripts): Pass the lib dir.
9344         (autoheader): Pass --force since the test suite goes too fast for
9345         the time stamps.
9346         Adjust to the new autoheader messages.
9348 2001-08-31  Akim Demaille  <akim@epita.fr>
9350         * bin/autoheader.in: Handle the acconfig.h etc. junk files.
9351         Check the completeness of the #template.
9352         * lib/Autom4te/General.pm (&update_file): s/remove/unlink/.
9353         * tests/semantics.at (AC_C_BIGENDIAN): Adjust AT_CHECK_AUTOHEADER
9354         invocation.
9356 2001-08-31  Akim Demaille  <akim@epita.fr>
9358         * lib/Autom4te/General.pm (&find_file, &update_file): New.
9359         * bin/autoupdate.in, bin/autoheader.in: Adjust.
9360         Drop AC_MACRODIR dead for real.
9361         * tests/atspecific.m4 (AT_CHECK_AUTOHEADER): Now autoheader says
9362         `autoheader: `config.hin' is created'.
9363         * tests/tools.at (Syntax of the Perl scripts): Check autoheader.
9365 2001-08-31  Akim Demaille  <akim@epita.fr>
9367         * bin/autoheader.in: Rewrite in Perl.
9368         * tests/autoheader: Adjust.
9370 2001-08-31  Akim Demaille  <akim@epita.fr>
9372         * bin/autoconf.in (--include, -I): New option.
9373         Map --localdir, --autoconf-dir onto it.
9374         Forward autom4te's options instead of interpreting them.
9375         * bin/autoconf.in, bin/autoheader.in (AC_MACRODIR, autoconf_dir):
9376         There is no such envvar since the inception of autom4te.cfg.
9377         * bin/autom4te.in (&parse_args): Uniquify `@include'.
9378         * bin/autoupdate.in: Adjust, and perform more control.
9379         * tests/atspecific.m4 (AT_CHECK_AUTOCONF): Adjust.
9380         * tests/autoconf: Dittowise.
9382 2001-08-31  Akim Demaille  <akim@epita.fr>
9384         * bin/autoconf.in: Don't bother with `acsite.m4' and `aclocal.m4'.
9385         * bin/autom4te.in (&find_file): Support `FILE?' standing for
9386         optionally `FILE'.
9387         Use -e, not -f, since /dev/null for instance is OK.
9388         (&parse_args): Adjust.
9389         * lib/autom4te.in (Autoconf): Add `acsite.m4?' and `aclocal.m4?'.
9391 2001-08-31  Akim Demaille  <akim@epita.fr>
9393         * configure.ac: Also find tested executables in bin.
9394         * bin/autoconf.in, bin/autoheader.in, bin/autoreconf.in,
9395         * bin/autoscan.in, autoupdate.in: Use exclusively the name of the
9396         installed peer executables, only PATH is allowed to resolve it.
9397         Pass `autoconf_dir' via options, not via invisible envvars.
9398         * lib/Autom4te/General.pm (&find_peer): Remove.
9399         * lib/autotest/general.m4 (AT_INIT): `AUTOTEST_PATH=a:b' gives
9400         `abuild:asrc:bbuild:bsrc', not `abuild:bbuild:asrc:bsrc'.
9401         * man/Makefile.am: Let help2man rely on PATH instead of trying to
9402         find the executables for it.
9403         * tests/Makefile.am: Major cleanup.  Too lazy to document...
9404         * tests/atlocal.in: Remove all the obscure envvar manipulations.
9405         We only need PERL.
9406         * tests/atspecific.m4, tests/tools.at: Passing --localdir is
9407         indeed related to running the test suite, while passing
9408         --autoconf-dir and others is related to running non installed
9409         Autoconf executables.  So don't do that, leave it to...
9410         * tests/autoconf, tests/autoheader, tests/autom4te, tests/autoupdate,
9411         * tests/autoscan: New.
9412         * tests/atspecific.m4 (AT_CHECK_M4SUGAR, AT_CHECK_M4SH): Don't
9413         refer to library files: rely on --language.
9415 2001-08-29  Akim Demaille  <akim@epita.fr>
9417         * bin/autom4te.in, lib/autom4te.in, bin/autoconf.in:
9418         s/--set/--language/.
9420 2001-08-29  Akim Demaille  <akim@epita.fr>
9422         * doc/autoconf.texi: Strip the @nodes.
9423         Suggested by Paul Eggert.
9424         (Initializing configure): Typo.
9426 2001-08-29  Akim Demaille  <akim@epita.fr>
9428         * bin/autom4te.in (&handle_output): s/@__@/@&t@/.
9429         Suggested by Paul Eggert.
9431 2001-08-29  Akim Demaille  <akim@epita.fr>
9433         * Makefile.maint (do-po-update): Wget refuses to overwrite files:
9434         download in a tmp dir.
9436 2001-08-29  Akim Demaille  <akim@epita.fr>
9438         * lib/autotest/general.m4: s/AT-devnull/devnull/ since there are
9439         case insensitive OSes out there :(
9440         From Tim Van Holder.
9442 2001-08-29  Akim Demaille  <akim@epita.fr>
9444         * lib/autom4te.in: New.
9445         * lib/Makefile.am (edit, autom4te.cfg): New.
9446         * bin/autom4te.in (BEGIN): Simplify.
9447         Rely on `AC_MACRODIR' in addition of `autom4te_perllibdir'.
9448         (&load_configuration): New.  Use it.
9449         (&parse_args): Support --mode, --set, and --melt.
9450         * bin/autoconf.in: Simplify and adjust.
9451         * tests/Makefile.am (AUTOMAKE): Use --set.
9452         * tests/atlocal.in: Adjust.
9453         * BUGS: distcheck and check are weak.
9455 2001-08-29  Akim Demaille  <akim@epita.fr>
9457         * lib/autotest/general.m4: Use
9458                 foo=`(command) 2>/dev/null`
9459         not
9460                 foo=`command` 2>/dev/null
9461         (at-devnull): Rename as...
9462         (AT-devnull): this.
9463         (--clean): Remove AT-* files too.
9464         * doc/autoconf.texi (Limitations of Usual Tools): Document `date'.
9465         Reported by Nicolas Joly.
9467 2001-08-28  Akim Demaille  <akim@epita.fr>
9469         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Don't use single
9470         quotes inside single quotes.
9471         Reported by Nicolas Joly.
9473 2001-08-28  Kevin Ryde  <user42@zip.com.au>
9475         * doc/autoconf.texi (Function Portability): Mention C right shifts.
9477 2001-08-27  Tim Van Holder  <tim.van.holder@pandora.be>
9479         * lib/autotest/general.m4: Reword some messages.
9480         (AT_INIT): Check for the `times' builtin before using it.
9481         Support test ranges as arguments to the testsuite.
9482         Have -e imply -d as the help text suggested.
9484 2001-08-27  Akim Demaille  <akim@epita.fr>
9486         * Makefile.maint: Formatting changes.
9487         (do-po-update, po-update, cvs-update, update): New targets.
9488         (AMTAR): Remove.
9490 2001-08-27  Akim Demaille  <akim@epita.fr>
9492         * lib/autotest/general.m4 (AT_INIT) <at_cmd_line>: Remove.
9493         <at_cmd_line>: New.
9494         Pass it to debug-*.sh scripts.
9495         <AUTOTEST_PATH>: May contain absolute dir names.
9497 2001-08-27  Akim Demaille  <akim@epita.fr>
9499         * lib/autotest/general.m4 (AT_INIT): Log the command line.
9500         Support `VAR=VAL' as arguments.
9501         Compute PATH _after_ the options processing, so that AUTOTEST_PATH
9502         may be set via the command line.
9504 2001-08-27  Akim Demaille  <akim@epita.fr>
9506         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): $2 defaults to $1.
9507         * lib/autotest/autotest.m4 (AT_INIT): Expand AUTOTEST_PATH into
9508         first the build dirs, then the src dirs.
9509         * configure.ac (AC_CONFIG_TESTDIR): Adjust.
9511 2001-08-27  Akim Demaille  <akim@epita.fr>
9513         * lib/autotest/general.m4 (AT_INIT): Output the definition of
9514         at_data_files earlier.
9515         (--clean, -c): New option.
9516         * tests/Makefile.am: Use this option.
9518 2001-08-27  Akim Demaille  <akim@epita.fr>
9520         * lib/autoconf/status.m4 (_AC_SRCPATHS): Rename `ac_dots' as
9521         `ac_top_builddir' to mimic Automake's vocabulary, which much more
9522         readable.
9523         Adjust callers.
9524         * doc/autoconf.texi (Configuration Actions): Document the vars
9525         available in commands.
9526         Emphasize the risks of collisions in init-cmds.
9528 2001-08-27  Akim Demaille  <akim@epita.fr>
9530         * doc/autoconf.texi (Input) <AC_INIT>: Move to..
9531         (Initializing configure): this new node.
9533 2001-08-27  Akim Demaille  <akim@epita.fr>
9535         * Makefile.am (EXTRA_DIST): INSTALL.txt is a dead hack.
9537 2001-08-27  Akim Demaille  <akim@epita.fr>
9539         * m4/atconfig.m4 (AT_CONFIG): Remove, replaced by...
9540         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): this.
9541         New file.
9542         * m4/Makefile.am (EXTRA_DIST): Oops, adjust...
9544 2001-08-27  Akim Demaille  <akim@epita.fr>
9546         * lib/autoconf/general.m4 (AU_DEFINE, AU_DEFUN, AU_ALIAS): Move
9547         to...
9548         * lib/autoconf/autoheader.m4: this new file.
9549         * lib/autoconf/general.m4 (AH_OUTPUT, AH_VERBATIM)
9550         (_AH_VERBATIM_OLD, AH_TEMPLATE, _AH_TEMPLATE_OLD, AH_TOP, AH_BOTTOM):
9551         Move to...
9552         * lib/autoconf/autoupdate.m4: this new file.
9554 2001-08-27  Akim Demaille  <akim@epita.fr>
9556         * lib/autoconf/status.m4 (_AC_SRCPATHS): New.
9557         (_AC_OUTPUT_LINKS, _AC_OUTPUT_FILES, _AC_OUTPUT_SUBDIRS): Use it.
9558         Standardize the var names (ac_sub_srcdir -> ac_srcdir, ac_subdir
9559         -> ac_dir).
9560         (_AC_OUTPUT_HEADERS): AS_DIRNAME always return a dir name.
9561         * lib/autoconf/general.m4 (_AC_INIT_HELP): Ditto.
9563 2001-08-27  Akim Demaille  <akim@epita.fr>
9565         * lib/autoconf/autoconf.m4 (AC_CONFIG_COMMANDS)
9566         (AC_CONFIG_COMMANDS_POST, AC_CONFIG_COMMANDS_PRE, AC_CONFIG_FILES)
9567         (AC_CONFIG_HEADER, AC_CONFIG_HEADERS, AC_CONFIG_IF_MEMBER)
9568         (AC_CONFIG_LINKS, AC_CONFIG_SUBDIRS, AC_FILE_DEPENDENCY_TRACE)
9569         (AC_LINK_FILES, AC_LIST_COMMANDS, AC_LIST_COMMANDS_COMMANDS)
9570         (AC_LIST_FILES, AC_LIST_FILES_COMMANDS, AC_LIST_HEADERS)
9571         (AC_LIST_HEADERS_COMMANDS, AC_LIST_LINKS, AC_LIST_LINKS_COMMANDS)
9572         (AC_OUTPUT, AC_OUTPUT_COMMANDS, AC_OUTPUT_COMMANDS_POST)
9573         (AC_OUTPUT_COMMANDS_PRE, AC_OUTPUT_MAKE_DEFS)
9574         (_AC_CONFIG_COMMANDS_INIT, _AC_CONFIG_DEPENDENCIES)
9575         (_AC_CONFIG_DEPENDENCY, _AC_CONFIG_UNIQUE, _AC_LINK_FILES_CNT)
9576         (_AC_LIST_SUBDIRS, _AC_OUTPUT_COMMANDS, _AC_OUTPUT_COMMANDS_CNT)
9577         (_AC_OUTPUT_COMMANDS_INIT, _AC_OUTPUT_CONFIG_STATUS)
9578         (_AC_OUTPUT_FILES, _AC_OUTPUT_HEADERS, _AC_OUTPUT_LINKS)
9579         (_AC_OUTPUT_SUBDIRS): Move to...
9580         * lib/autoconf/status.m4: this new file.
9581         * lib/autoconf/general.m4, lib/autoconf/Makefile.am: Adjust.
9582         * tests/Makefile.am, tests/suite.at: Adjust.
9584 2001-08-27  Akim Demaille  <akim@epita.fr>
9586         Automake 1.5.
9588         * Makefile.am (AUTOMAKE_OPTIONS): Add 1.5 and dist-bzip2.
9589         (AMTAR): Help automake define it.
9590         (INSTALL, install-data-hook): The INSTALL.txt trick is no longer
9591         needed, 1.5 can have a macro and a target with the same name.
9592         * m4/auxdir.m4, m4/cond.m4, m4/depend.m4, m4/install-sh.m4,
9593         * m4/strip.m4: New.
9594         * m4/init.m4, m4/sanity.m4: Update.
9595         * doc/Makefile.am (CLEANFILES): 1.5 knows the texi2dvi files.
9596         * lib/autoconf/Makefile.am, lib/autotest/Makefile.am,
9597         * lib/m4sugar/Makefile.am, lib/autoscan/Makefile.am,
9598         * lib/Autom4te/Makefile.am, man/Makefile.am: Use dist/nodist.
9600 2001-08-27  Akim Demaille  <akim@epita.fr>
9602         Provide a mean to ``AC_PREREQ'' for M4sugar, M4sh and Autotest.
9604         * lib/autoconf/version.in: Remove.
9605         * lib/m4sugar/version.in: New.
9606         * lib/m4sugar/m4sugar.m4 (m4_acversion, m4_version_prereq): New.
9607         Adjust callers.
9608         * bin/autoupdate.in: Distinguish M4sugar vs. Autoconf macros by
9609         the name of the directory they're in, instead of the filename,
9610         since version.m4 is now in m4sugar, but m4_acversion must not be
9611         classified as an Autoconf macro.
9612         ($input_m4): Don't qualify the path to m4sugar.
9613         Rather, pass autoconf_dir to m4.
9614         * tests/Makefile.am (testsuite): Remove -I top_srcdir, unneeded.
9615         * tests/suite.at: Require 2.52c.
9617 2001-08-27  Akim Demaille  <akim@epita.fr>
9619         testsuite.log should include config.log.
9621         * lib/autotest/autotest.m4: New.
9622         * lib/autotest/general.m4, tests/atspecific.m4: Adjust.
9623         * tests/suite.at : Adjust.
9624         (AT_INIT): Log config.log.
9625         * lib/m4sugar/m4sugar.m4 (m4_text_box): New.
9626         * lib/m4sugar/m4sh.m4 (_AS_BOX_LITERAL): Adjust.
9627         * lib/autoconf/general.m4 (_AC_INIT_CONFIG_LOG): Use them.
9628         (_AC_INIT_PREPARE): Fix the incredibly messy and buggy completion
9629         of config.log on traps.
9630         (_AC_OUTPUT_CONFIG_STATUS): Use AS_BOX.
9631         Use consistently `_ACEOF' for configure's here docs, and `_CSEOF'
9632         for config.status'.
9633         Open the log as soon as possible.
9634         Use the same log introduction as configure's.
9636 2001-08-22  Paul Eggert  <eggert@twinsun.com>
9638         * doc/autoconf.texi (Indices): New node.
9639         Move indices out of the top level menu and into this submenu.
9641 2001-08-22  Akim Demaille  <akim@epita.fr>
9643         * lib/autoconf/programs.m4 (_AC_PROG_LEX_YYTEXT_DECL): Use
9644         AC_TRY_COMMAND.
9645         (AC_DECL_YYTEXT): Fix the previous patch: it points to AC_PROG_LEX.
9647 2001-08-22  Akim Demaille  <akim@epita.fr>
9649         * lib/autoconf/general.m4 (AC_SHELL_PATH_WALK, AC_CHECK_PROG)
9650         (AC_CHECK_PROGS, AC_PATH_PROG, AC_PATH_PROGS, AC_CHECK_TOOL_PREFIX)
9651         (AC_PATH_TOOL, AC_CHECK_TOOL, AC_CHECK_TOOLS): Move to...
9652         * lib/autoconf/programs.m4: here.
9653         * lib/autoconf/specific.m4 (_AC_PROG_ECHO, AC_PROG_MAKE_SET)
9654         (AC_PROG_RANLIB, AC_PROG_YACC, AC_PROG_LEX, _AC_DECL_YYTEXT)
9655         (AC_PROG_INSTALL, AC_PROG_LN_S, AC_RSH): Move to...
9656         * lib/autoconf/programs.m4: here.
9657         (_AC_DECL_YYTEXT): Rename as...
9658         (_AC_PROG_LEX_YYTEXT_DECL): this.
9659         * lib/autoconf/autoconf.m4, lib/autoconf/Makefile.am
9660         * tests/Makefile.am, tests/suite.am: Adjust.
9662 2001-08-22  Akim Demaille  <akim@epita.fr>
9664         * lib/autoconf/general.m4 (AC_LIST_MEMBER_OF, AC_LINKER_OPTION):
9665         Move to...
9666         * lib/autoconf/fortran.m4 (_AC_LIST_MEMBER_IF, _AC_LINKER_OPTION):
9667         here.
9668         * lib/autoconf/general.m4 (AC_TRY_LINK_FUNC): Move to...
9669         * lib/autoconf/functions.m4: here.
9670         * lib/autoconf/general.m4 (AC_SEARCH_LIBS, AC_CHECK_LIB)
9671         (AH_CHECK_LIB): Move to...
9672         * lib/autoconf/libs: this new file.
9673         * lib/autoconf/specific.m4 (_AC_PATH_X_XMKMF, _AC_PATH_X_DIRECT)
9674         (_AC_PATH_X, AC_PATH_X, AC_PATH_XTRA): Move to...
9675         * lib/autoconf/libs.m4: here.
9676         * lib/autoconf/autoconf.m4, lib/autoconf/Makefile.am: Adjust.
9678 2001-08-22  Akim Demaille  <akim@epita.fr>
9680         * lib/m4sugar/m4sh.m4 (AS_MKDIR_P): Fail if fails.
9681         * lib/autoconf/general.m4 (_AC_OUTPUT_SUBDIRS): Adjust.
9682         (AC_SITE_LOAD): Better logging of config.site.
9684 2001-08-20  Akim Demaille  <akim@epita.fr>
9686         * configure.ac (AT_CONFIG): Fix the path.
9687         * m4/atconfig.m4 (AT_CONFIG): Don't use EOF but ATEOF so that 2.52
9688         can be used.
9690 2001-08-20  Alexandre Duret-Lutz  <duret_g@epita.fr>
9692         * lib/autoconf/c.m4 (AC_C_BIGENDIAN): Prepare the cross-compile
9693         program with AC_LANG_PROGRAM before feeding it to
9694         AC_COMPILE_IFELSE.  Cleanup grep usage.
9696 2001-08-20  Akim Demaille  <akim@epita.fr>
9698         * ChangeLog, ChangeLog.0, ChangeLog.1, ChangeLog.2, AUTHORS, BUGS,
9699         * NEWS, README, README-alpha, TODO, tests/README: This package is
9700         `Autoconf', not `autoconf' (the executable).
9702 2001-08-20  Akim Demaille  <akim@epita.fr>
9704         Info readers seem to need `Index' in the index node title :(
9706         * doc/autoconf.texi: Reverse the 2001-08-15 change which
9707         simplified index node names.
9709 2001-08-20  Akim Demaille  <akim@epita.fr>
9711         * lib/autoconf/general.m4 (_AC_INIT_PACKAGE): Warn if the
9712         arguments are not literals.
9713         * doc/autoconf.texi (Input) <AC_INIT>: Arguments must be literals.
9714         Specify the output variables, and macros defined.
9716 2001-08-20  Akim Demaille  <akim@epita.fr>
9718         * doc/autoconf.texi (Examining Declarations) <AC_TRY_CPP>:
9719         (Examining Syntax) <AC_TRY_COMPILE>
9720         (Examining Libraries) <AC_TRY_LINK>
9721         (Test Programs) <AC_TRY_RUN>: These macros double quote some of
9722         their arguments.
9723         Reported by Werner Lemberg.
9725 2001-08-20  Akim Demaille  <akim@epita.fr>
9727         * lib/autotest/general.m4 (AT_INIT): Compute top_builddir,
9728         top_srcdir and srcdir from at_topbuild_2_topsrc and at_testdir.
9729         Load atlocal late enough to dump it in the log.
9730         * m4/atconfig.m4 (AT_CONFIG): Pass them to atconfig.
9732 2001-08-20  Akim Demaille  <akim@epita.fr>
9734         * tests/torture.at (Configuring subdirectories): New test.
9735         * lib/autoconf/general.m4 (_AC_INIT_SRCDIR): Say what you are
9736         looking for.
9737         * m4/atconfig.m4: Be sure the let $[0] be expandable.
9738         (top_srcdir): Fix its computation.
9740 2001-08-20  Akim Demaille  <akim@epita.fr>
9742         * lib/autoconf/general.m4 (_AC_OUTPUT_COMMANDS): Say what you do.
9743         * m4/atconfig.m4 (AT_CONFIG): $1 is now the directory where the
9744         test suite lives.
9745         Create `atconfig' automagically.
9746         Configure atlocal.in if present.
9747         * tests/atconfig.in: Remove.
9748         * tests/atlocal.in: New.
9749         * tests/Makefile.am: Adjust.
9751 2001-08-20  Akim Demaille  <akim@epita.fr>
9753         Huh!?!?!  There are still some user EOF tags used, which prevents
9754         their use in AC_CONFIG_COMMANDS for instance...
9756         * lib/autoconf/general.m4, lib/autoconf/specific.m4,
9757         * lib/autotest/general.m4: Rename the EOF tags as `_ACEOF',
9758         `_CSEOF', or `_ATEOF', as appropriate.
9759         * lib/m4sugar/Makefile.am, lib/autoconf/Makefile.am,
9760         * lib/autotest/Makefile.am (check-local): Enforce this constraint.
9762 2001-08-20  Akim Demaille  <akim@epita.fr>
9764         * tests/base.at, tests/m4sh.at, tests/m4sugar.at,
9765         * tests/semantics.at, tests/tools.at, tests/torture.at:
9766         s/^AT_DATA\(([^][]+),/AT_DATA([$1],/.
9768 2001-08-20  Akim Demaille  <akim@epita.fr>
9770         Autotest invokes M4sh's initialization.
9772         * lib/autotest/general.m4: Adjust the diversion names.
9773         (AT_INIT): Run AS_INIT.
9774         Use the BINSH diversion to invoke /bin/sh.
9775         * tests/base.at, tests/m4sh.at, tests/m4sugar.at, tests/tools.at:
9776         * tests/torture.at: Respect M4sugar and M4sh macro name spaces.
9778 2001-08-20  Akim Demaille  <akim@epita.fr>
9780         Let M4sh have its own diversions.
9782         * lib/autoconf/general.m4 (_m4_divert(BINSH), _m4_divert(REVISION))
9783         (_m4_divert(NOTICE)): Rename as...
9784         * lib/m4sugar/m4msh.m4 (_m4_divert(BINSH), _m4_divert(HEADER-REVISION))
9785         (_m4_divert(HEADER-COMMENT)): these.
9786         (_m4_divert(HEADER-COPYRIGHT), _m4_divert(HEADER-COPYRIGHT)): New.
9787         (_m4_divert(NOTICE)): New, for Libtool.
9788         * lib/autoconf/general.m4 (_m4_divert(PREPARE)): Remove, replaced
9789         long ago with `_m4_divert(GROW)'.
9790         (AC_COPYRIGHT, AC_REVISION, _AC_INIT_NOTICE): Adjust.
9792 2001-08-20  Akim Demaille  <akim@epita.fr>
9794         * tests/base.at, tests/compile.at, tests/foreign.at,
9795         * tests/m4sh.at, tests/m4sugar.at, tests/mktests.sh,
9796         * tests/semantics.at, tests/suite.at, tests/tools.at,
9797         * tests/torture.at: Ask Autotest mode, not Autoconf mode.
9799 2001-08-20  Akim Demaille  <akim@epita.fr>
9801         * bin/autom4te.in (handle_output): Handle @__@.
9803 2001-08-20  Akim Demaille  <akim@epita.fr>
9805         * lib/autoconf/autoconf.m4, lib/autoconf/oldnames.m4,
9806         * lib/autotest/general.m4: Adjust the license.
9808 2001-08-17  Paul Eggert  <eggert@twinsun.com>
9810         * doc/autoconf.texi (Function Portability): Mention snprintf,
9811         following up on a suggestion by Kevin Ryde.
9813 2001-08-17  Akim Demaille  <akim@epita.fr>
9815         * doc/install.texi, doc/autoconf.texi: Use `autoconf', not
9816         `autoconf_manual', as texinfo.tex 2001-06-21.10 chokes on it.
9818 2001-08-17  Akim Demaille  <akim@epita.fr>
9820         * lib/autotest/general.m4 (AT_INIT): Refer to `$as_me.log', not
9821         `$0.log' as for projects where testsuite is in src, we'd have
9822         testsuite.log created in src.
9824 2001-08-17  Akim Demaille  <akim@epita.fr>
9826         * bin/autom4te.in (&parse_args): Recognize --normalize.
9828 2001-08-17  Akim Demaille  <akim@epita.fr>
9830         Start implementing the AC_CHECK_HEADER transition scheme.
9832         * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_NEW)
9833         (_AC_CHECK_HEADER_OLD, _AC_CHECK_HEADER_MONGREL): New.
9834         (AC_CHECK_HEADER): Use them.
9836 2001-08-17  Akim Demaille  <akim@epita.fr>
9838         * doc/autoconf.texi: Work around Texinfo buglets.
9839         (Transformation Rules): One example is enough, users are expected
9840         to have their brains on. And BTW, use DESTDIR.
9841         (dvar): New macro.  Use it.
9843 2001-08-17  Akim Demaille  <akim@epita.fr>
9845         * doc/autoconf.texi (Writing testsuite.at) <AT_CHECK>: Complete.
9846         * lib/autotest/general.m4 (AT_INIT): Use the relative dir when
9847         looking for ChangeLogs.
9849 2001-08-17  Akim Demaille  <akim@epita.fr>
9851         * bin/autom4te.in: --normalize is a new option.
9852         * bin/autoconf.in: Use it.
9854 2001-08-17  Akim Demaille  <akim@epita.fr>
9856         * bin/Makefile.am, lib/Autom4te/Makefile.am, lib/autoconf/Makefile.am
9857         * lib/autotest/Makefile.am, lib/m4sugar/Makefile.am: Add TAGS support.
9859 2001-08-16  Paul Eggert  <eggert@twinsun.com>
9861         * doc/autoconf.texi, doc/install.texi: Put copyright notice at
9862         start, not at end.
9864 2001-08-15  Akim Demaille  <akim@epita.fr>
9866         * doc/Makefile.am (fu): New index, can't use fn because of defmac.
9867         Use it.
9869 2001-08-15  Akim Demaille  <akim@epita.fr>
9871         * doc/autoconf.texi (pr): New index.
9872         (prindex, findex): Use, merge, and output them.
9873         (Environment Variable Index, Output Variable Index)
9874         (Preprocessor Symbol Index, Autoconf Macro Index, M4 Macro Index)
9875         (Autotest Macro Index): Rename as...
9876         (Environment Variables, Output Variables,Preprocessor Symbols)
9877         (Autoconf Macros, M4 Macros, Autotest Macros): these.
9878         * doc/install.texi: Use @command.
9879         (Environment Variables): Rename as...
9880         (Defining Variables): this.
9882 2001-08-15  Akim Demaille  <akim@epita.fr>
9884         * doc/autoconf.texi (Function Portability): sprintf's return
9885         value.
9886         From Kevin Ryde.
9888 2001-08-15  Akim Demaille  <akim@epita.fr>
9890         * Makefile.maint (CVS): New.
9891         (local-check): Run changelog-check. last.
9892         (alpha): Don't depend upon local-check, since...
9893         (cvs-dist): depends upon it.
9895 2001-08-15  Tim Van Holder  <tim.van.holder@pandora.be>
9897         * tests/Makefile.am: Use a clean-local rule to remove
9898         autom4te.cache (it's a directory, not a file.
9899         * Makefile.am: Ditto (but maintainer-clean-local).
9901 2001-08-15  Akim Demaille  <akim@epita.fr>
9903         * bin/autom4te.in (@m4_warning): New.
9904         (&handle_m4): Use it.
9905         * tests/m4sugar.at (m4_warn): Pass `-f' to autom4te to ensure the
9906         warnings are issued at each run.
9907         * tests/atspecific.m4 (AT_CHECK_M4SUGAR, AT_CHECK_M4SH): M4sugar
9908         is in the src tree.
9910 2001-08-15  Akim Demaille  <akim@epita.fr>
9912         * tests/atspecific.m4 (AT_CHECK_AUTOUPDATE): Perl is now required:
9913         don't waste time running `autoupdate --version' works.
9914         * tests/tools.at (autoupdating AC_PREREQ): Likewise.
9916 2001-08-13  Akim Demaille  <akim@epita.fr>
9918         * doc/autoconf.texi (ma): Rename this index as...
9919         (ac): this.
9921 2001-08-13  Akim Demaille  <akim@epita.fr>
9923         * Makefile.am: Remove dead code and dead comments.
9924         (pdf, html): New targets.
9925         * doc/autoconf.texi (Using Autotest): New chapter.
9926         * doc/Makefile.am (pdf): New targets.
9927         (CLEANFILES): Adjust.
9929 2001-08-13  Akim Demaille  <akim@epita.fr>
9931         * lib/autotest/general.m4 (AT_INIT): Log the start/stop dates and
9932         duration of the test suite.
9934 2001-08-12  Alexandre Duret-Lutz  <duret_g@epita.fr>
9936         * tests/semantics.at (AC_C_BIGENDIAN): Explicitelly save and load
9937         endianness for comparison instead of relying on AT_CHECK_ENV.
9939 2001-08-11  Paul Eggert  <eggert@twinsun.com>
9941         * doc/autoconf.texi, doc/install.texi: Add a copyright notice
9942         to the INSTALL file.
9944 2001-08-11  Paul Eggert  <eggert@twinsun.com>
9946         * NEWS: The autoconf manual now is distributed under the terms
9947         of the GNU Free Documentation License.
9949         * doc/autoconf.texi: Switch from old style copyright notice to FDL.
9950         Add an appendix "Copying This Manual" for the FDL.
9952         * doc/fdl.texi: New file, from
9953         <http://www.gnu.org/licenses/fdl.texi>.
9955         * doc/Makefile.am (autoconf_TEXINFOS): Add fdl.texi.
9957 2001-08-10  Paul Eggert  <eggert@twinsun.com>
9959         * AUTHORS, BUGS, ChangeLog, ChangeLog.0, ChangeLog.1,
9960         ChangeLog.2, GNUmakefile, Makefile.maint, NEWS, README,
9961         README-alpha, TODO, configure.ac, lib/autoconf/Makefile.am,
9962         m4/atconfig.m4, m4/init.m4, m4/m4.m4, m4/missing.m4,
9963         m4/sanity.m4, tests/README, tests/aclocal.m4,
9964         tests/atspecific.m4, tests/base.at, tests/compile.at,
9965         tests/foreign.at, tests/m4sh.at, tests/m4sugar.at,
9966         tests/semantics.at, tests/suite.at, tests/tools.at,
9967         tests/torture.at: Add copyright notice.
9969         * tests/mktests.sh: Update year in copyright notice.
9971 2001-08-12  Alexandre Duret-Lutz  <duret_g@epita.fr>
9973         * tests/semantics.at (AC_C_BIGENDIAN): New test.
9975 2001-08-11  Alexandre Duret-Lutz  <duret_g@epita.fr>
9977         * lib/autoconf/c.m4 (AC_C_BIGENDIAN): Handle ACTION-IF-TRUE,
9978         ACTION-IF-FALSE, and ACTION-IF-UNKNOWN.
9979         * doc/autoconf.texi (C Compiler Characteristics): Update
9980         documentation for AC_C_BIGENDIAN.
9982 2001-08-11  Alexandre Duret-Lutz  <duret_g@epita.fr>
9984         * lib/autoconf/c.m4 (AC_C_BIGENDIAN): Guess endianness by grep'ing
9985         magic values from an object file when cross-compiling.
9986         Based on code by Guido Draheim <Guido.Draheim@gmx.de>.
9988 2001-08-10  Akim Demaille  <akim@epita.fr>
9990         * bin/autom4te.in (&handle_output): Don't use `grep' with side
9991         effects.
9992         Suggested by Russ Allbery.
9994 2001-08-10  Ralf Corsepius  <corsepiu@faw.uni-ulm.de>
9996         * lib/autoconf/general.m4 (_AC_OUTPUT_SUBDIRS): Propagate the
9997         current $prefix to the sub-configures.
9999 2001-08-09  Tim Van Holder  <tim.van.holder@pandora.be>
10001         * lib/autoconf/lang.m4: Ignore *.xSYM when looking for an executable
10002         extension (needed on BeOS).  Reported by Guido van Rossum.
10004 2001-08-09  Akim Demaille  <akim@epita.fr>
10006         * bin/autom4te.in ($icache): Load it only if older than autom4te.
10008 2001-08-07  Akim Demaille  <akim@epita.fr>
10010         * lib/autotest/general.m4 (AT_INIT): All the `at-*' are to be
10011         removed.
10012         (at-setup-line): Huh?  Be a variable `at_setup_line', not a file.
10013         No need to remove the files before and after the each test, before
10014         each test and at the end of the suite is enough.
10015         Display only the children `times', not the shell's.
10016         If the test failed or was skipped, at-times is not available.
10018 2001-08-07  Akim Demaille  <akim@epita.fr>
10020         Always produce testsuite.log, including when there are no
10021         failures.  This helps getting information on skipped tests, and
10022         duration of the tests.  Err, implement the latter btw.
10024         * lib/autotest/general.m4 (AT_INIT): Set up fd 6 for the log.
10025         Dump information on the first run of each test.
10026         (AT_CLEANUP): Create `at-times' containing the duration of the
10027         test group.
10029 2001-08-07  Akim Demaille  <akim@epita.fr>
10031         The use of `dumpstat' revealed that `len' was used although it
10032         should not.  m4_text_wrap was using it, but in the Autoconf world
10033         where it is legal.  Hence (i) test M4sh in its own world, not
10034         Autoconf's, and (ii), ahem, fix the bug :)
10036         * lib/autotest/general.m4: Be sure the set good quotes, as tracing
10037         does not like `' instead of [].
10038         (AT_INIT): Forbid `^_?AT_'.
10039         And don't output such tokens.
10040         * tests/Makefile.am (CLEANFILES): Add `script', `script.s4g',
10041         `script.as', and `autom4te.cache'.
10042         Remove `empty' and `macro' which are no longer used.
10043         * tests/atspecific.m4 (AT_CHECK_M4SUGAR, AT_CHECK_M4SH): New.
10044         * tests/m4sugar.at: Use it.
10045         * lib/m4sugar/m4sugar.m4: Use `m4_len' not `len'.
10047 2001-08-07  Akim Demaille  <akim@epita.fr>
10049         * bin/autoconf.in, bin/autoheader.in: --force, -f is a new option.
10051 2001-08-07  Alexandre Duret-Lutz  <duret_g@epita.fr>
10053         * bin/autom4te.in (handle_output): Typo in quadrigraph substitution.
10055 2001-08-04  Akim Demaille  <akim@epita.fr>
10057         * lib/autoconf/functions.m4 (AC_FUNC_ALLOCA, AC_FUNC_ERROR_AT_LINE)
10058         (AC_FUNC_FSEEKO, AC_FUNC_OBSTACK): Use AC_LANG_IFELSE, not
10059         AC_TRY_LINK.
10060         * lib/autoconf/headers.m4 (AC_HEADER_MAJOR): Likewise.
10061         * lib/autoconf/fortran.m4 (_AC_LANG_PROGRAM_C_F77_HOOKS)
10062         (AC_F77_MAIN): Likewise.
10064 2001-08-04  Akim Demaille  <akim@epita.fr>
10066         Don't rely on M4sugar outputting the patterns in files, since we
10067         might process the output _without_ running m4, hence without these
10068         files.
10070         * lib/m4sugar/m4sugar.m4 (m4_init): No need for `m4_tmpdir'.
10071         * bin/autom4te.in (@Request::includes): Remove, unused.
10072         (@Request::source): Rename as...
10073         (@Request::input): this.
10074         (@preselect): Add `m4_pattern_forbid' and `m4_pattern_allow'.
10075         (&handle_output): Fetch the patterns from the traces.
10076         `$forbidden' and `$allowed' are constant: use m//o.
10077         (&handle_m4): M4sugar no longer wants `m4_tmpdir'.
10078         (m4_pattern_forbid, m4_pattern_allow): Adjust for tracing only.
10080 2001-08-04  Akim Demaille  <akim@epita.fr>
10082         `autoconf && autoheader' is sped up.  Now, speed up `autoheader &&
10083         autoconf', i.e., in addition to caching traces, cache the output.
10085         * bin/autom4te.in (Request::cache): Rename as...
10086         (Request::id): this.
10087         ($cache, $icache, $tcache, $ocache): New.
10088         (&handle_m4): Save M4 output in the cache instead of $tmp.
10089         (&handle_output): Adjust.
10090         (&up_to_date_p): Check that the output cache is up to date too.
10091         (top level): Run `&handle_m4' iff force or the cache is invalid.
10092         Run `&handle_output' if the output cache is more recent.
10094 2001-08-04  Akim Demaille  <akim@epita.fr>
10096         * bin/autom4te.in ($force): New.
10097         (&parse_args, &print_usage): -f, --force is a new option.
10098         (&handle_output): CPP directives might have spaces after `#'.
10099         (&parse_args): The first file only can be frozen.
10101 2001-08-04  Akim Demaille  <akim@epita.fr>
10103         Don't let autom4te compute the `include' traces several times:
10104         first check that the trace cache file is up to date, and then
10105         compare its timestamp with that of the output.
10107         * bin/autom4te.in, bin/autoupdate.in, bin/autoscan.in: Normalize
10108         the preamble.  Don't require 5.005 as Autom4te::General does it,
10109         and better yet (use `use', not `require'!).
10110         * lib/Autom4te/Struct.pm: Rename the last occurrences of
10111         Class::Struct as Autom4te::Struct.
10112         * lib/Autom4te/General.pm (File::stat): Use it.
10113         (&mtime): New, export it.
10114         * bin/autom4te.in: Use it.
10115         Declare `$req' is invalid if it is outdated.
10116         Don't declare it valid before saving it if something went wrong.
10118 2001-08-04  Akim Demaille  <akim@epita.fr>
10120         Autom4te shall not encode Autoconf data, and preselecting traces
10121         must be proposed to the users.
10123         * bin/autom4te.in (@required_trace): Remove.
10124         (@preselect): New.
10125         (&parse_args, &print_usage): -p, --preselect is a new option.
10126         (&up_to_date_p): Adjust.
10127         * bin/autoconf.in: Preselect some Autoconf macros.
10129 2001-08-04  Akim Demaille  <akim@epita.fr>
10131         * tests/tools.at (autoconf --trace: user macros): Check traces on
10132         macros invoked without arguments, and macros invoked with multiple
10133         lines arguments.
10135 2001-08-03  Alexandre Duret-Lutz  <duret_g@epita.fr>
10137         * bin/autom4te.in (handle_traces): Fix rewriting of traces without
10138         arguments.
10140 2001-08-03  Akim Demaille  <akim@epita.fr>
10142         * bin/autoconf.in ($@): Work around the usual sh bug.
10143         From Nicolas Joly.
10145 2001-08-03  Akim Demaille  <akim@epita.fr>
10147         Clean up the handling of the M4 builtins tracing exception.
10149         * bin/autom4te.in (Request::request): Don't complete M4 builtins
10150         trace requests.
10151         (@m4_builtins): Rename as...
10152         (@m4_builtin): this.
10153         (%m4_builtin_alternate_name): New.
10154         (&parse_args): Complete the trace requests with alternate names.
10155         (&handle_traces): Hence no longer do it here.
10156         (&trace_requests): Remove, unused.
10158 2001-08-03  Akim Demaille  <akim@epita.fr>
10160         * doc/autoconf.texi (Redefined M4 Macros): Document m4_exit,
10161         m4_if, and m4_wrap.
10163 2001-08-03  Akim Demaille  <akim@epita.fr>
10165         * lib/m4sugar/m4sugar.m4 (m4_init): Also forbid `_m4_*' tokens.
10166         (m4_divert_pop): Dump the whole diversion stack when a diversion
10167         mismatch happens.
10168         * bin/autom4te.in (&handle_output): Remember of the first
10169         occurrence of a possibly undefined macro, not the last.
10170         Complain about the possibly undefined macros in the same order as
10171         the appear in the output.
10172         * lib/autoconf/Makefile.am (autoconf.m4f): List its dependencies.
10173         * tests/tools.at (autoconf: forbidden tokens, basic)
10174         (autoconf: forbidden tokens, exceptions): No longer sort
10175         autoconf's stderr, as it is now deterministic.
10176         Check that `dnl' is caught.
10178 2001-08-01  Akim Demaille  <akim@epita.fr>
10180         * configure.ac: Bump to 2.52c.
10182 2001-08-01  Akim Demaille  <akim@epita.fr>
10184         Version 2.52b.
10186         * lib/Autom4te/Makefile.am (perllibdir): s/Autoconf/Autom4te/.
10188 2001-08-01  Akim Demaille  <akim@epita.fr>
10190         Version 2.52a.
10192 2001-08-01  Akim Demaille  <akim@epita.fr>
10194         * lib/Autom4te/General.pm: Use `carp' and `croak', not `warn' and
10195         `die'.
10196         (&END): New.
10197         * bin/autoconf.in, bin/autom4te.in, bin/autoupdate.in: Remove your
10198         `END', as `Autom4te::General::END' will be triggered.
10199         * bin/autoupdate.in, bin/autoscan.in: Improve error messages accuracy.
10200         * bin/autoupdate.in (File::Compare, File::Copy): Use them instead of
10201         system to run `mv', `rm', and `cmp'.
10203 2001-08-01  Akim Demaille  <akim@epita.fr>
10205         * lib/Autom4te/General.pm (&unique): New.
10206         * bin/autoscan.in (&output): Use it to issue trace requests once.
10208 2001-08-01  Akim Demaille  <akim@epita.fr>
10210         * lib/Autom4te/General.pm: New.
10211         * bin/autom4te.in (Autom4te::General): Use it.
10212         ($me, $tmp, $verbose, $debug, &mktmpdir, &verbose, &xsystem)
10213         (&find_configure_ac, &find_slave): Remove.
10214         * bin/autoscan.in: Likewise.
10215         * bin/autoupdate.in: Likewise.
10217 2001-08-01  Akim Demaille  <akim@epita.fr>
10219         * autoconf.in, autom4te.in, autoscan.in, ifnames.in,
10220         * autoheader.in, autoreconf.in, autoupdate.in: Move to...
10221         * bin: here, new directory.
10222         * lib/Autoconf: Rename as...
10223         * lib/Autom4te: this, to please case insensitive junkie OSes.
10225 2001-08-01  Akim Demaille  <akim@epita.fr>
10227         * autom4te.in ($m4): Handle the --nesting-limit.
10228         * autoconf.in (M4): Remove.
10230 2001-08-01  Akim Demaille  <akim@epita.fr>
10232         * autoconf.in ($AWK): Remove, no longer used.
10233         * test/tools.at: Use AT_CHECK_AUTOCONF.
10234         (AWK portability): Remove, for autoconf no longer uses AWK.
10235         (Syntax of the Perl scripts): New.
10236         * configure.ac: autoconf no longer needs an AWK with a good
10237         regexp engine.
10238         Use a static test on AC_PACKAGE_VERSION.
10239         * autom4te.in (&up_to_date_p): Output depends on the arguments.
10240         * lib/autoconf/Makefile.am: Ship version.m4, maintainer file.
10241         * tests/atconfig.in (PERL): New.
10243 2001-08-01  Akim Demaille  <akim@epita.fr>
10245         * lib/autoconf/lang.m4 (AC_LANG(C), AC_LANG_C, _AC_LANG_ABBREV(C))
10246         (AC_LANG(C++), AC_LANG_CPLUSPLUS, _AC_LANG_ABBREV(C++))
10247         (AC_LANG_SOURCE(C), AC_LANG_PROGRAM(C), AC_LANG_CALL(C))
10248         (AC_LANG_FUNC_LINK_TRY(C), AC_LANG_BOOL_COMPILE_TRY(C))
10249         (AC_LANG_INT_SAVE(C), _AC_ARG_VAR_CPPFLAGS, _AC_ARG_VAR_LDFLAGS)
10250         (AC_LANG_PREPROC(C), _AC_PROG_PREPROC_WORKS_IFELSE, AC_PROG_CPP)
10251         (AC_LANG_COMPILER(C), ac_cv_prog_gcc, AC_PROG_CC, _AC_PROG_CC_G)
10252         (AC_PROG_GCC_TRADITIONAL, AC_PROG_CC_C_O, AC_LANG_PREPROC(C++))
10253         (AC_PROG_CXXCPP, AC_LANG_COMPILER(C++), ac_cv_prog_gxx)
10254         (AC_PROG_CXX, _AC_PROG_CXX_G, _AC_PROG_CXX_EXIT_DECLARATION)
10255         (AC_PROG_CC_STDC, AC_C_CROSS, AC_C_CHAR_UNSIGNED, AC_C_LONG_DOUBLE)
10256         (AC_C_BIGENDIAN, AC_C_INLINE, AC_C_CONST, AC_C_VOLATILE)
10257         (AC_C_STRINGIZE, AC_C_PROTOTYPES): Move to...
10258         * lib/autoconf/c.m4: here, new file.
10260         * lib/autoconf/lang.m4 (AC_LANG(Fortran 77), AC_LANG_FORTRAN77)
10261         (_AC_LANG_ABBREV(Fortran 77), AC_LANG_SOURCE(Fortran 77))
10262         (AC_LANG_PROGRAM(Fortran 77), AC_LANG_CALL(Fortran 77))
10263         (AC_LANG_PREPROC(Fortran 77), AC_LANG_COMPILER(Fortran 77))
10264         (ac_cv_prog_g77, AC_PROG_F77, _AC_PROG_F77_G, AC_PROG_F77_C_O)
10265         (_AC_PROG_F77_V_OUTPUT, _AC_PROG_F77_V, AC_F77_LIBRARY_LDFLAGS)
10266         (AC_F77_DUMMY_MAIN, _AC_LANG_PROGRAM_C_F77_HOOKS, AC_F77_MAIN)
10267         (_AC_F77_NAME_MANGLING, AC_F77_NAME_MANGLING, AC_F77_WRAPPERS)
10268         (AC_F77_FUNC): Move to...
10269         * lib/autoconf/fortran.m4: here, new file.
10271 2001-08-01  Akim Demaille  <akim@epita.fr>
10273         * acfunctions.m4: Rename as...
10274         * lib/autoconf/functions.m4: this.
10275         * acgeneral.m4: Rename as...
10276         * lib/autoconf/general.m4: this.
10277         * acheaders.m4: Rename as...
10278         * lib/autoconf/headers.m4: this.
10279         * aclang.m4: Rename as...
10280         * lib/autoconf/lang.m4: this.
10281         * acoldnames.m4: Rename as...
10282         * lib/autoconf/oldnames.m4: this.
10283         * acspecific.m4: Rename as...
10284         * lib/autoconf/specific.m4: this.
10285         * actypes.m4: Rename as...
10286         * lib/autoconf/types.m4: this.
10287         * autoconf.m4: Rename as...
10288         * lib/autoconf/autoconf.m4: this.
10290         * m4sugar.m4: Rename as...
10291         * lib/m4sugar/m4sugar.m4: this.
10292         * m4sh.m4: Rename as...
10293         * lib/m4sugar/m4sh.m4: this.
10295         * tests/atgeneral.m4: Rename as...
10296         * lib/autotest/general.m4: this.
10298         * acfunctions: Rename as...
10299         * lib/autoscan/functions: this.
10300         * acheaders: Rename as...
10301         * lib/autoscan/headers: this.
10302         * acidentifiers: Rename as...
10303         * lib/autoscan/identifiers: this.
10304         * aclibraries: Rename as...
10305         * lib/autoscan/libraries: this.
10306         * acmakevars: Rename as...
10307         * lib/autoscan/makevars: this.
10308         * acprograms: Rename as...
10309         * lib/autoscan/programs: this.
10311 2001-08-01  Akim Demaille  <akim@epita.fr>
10313         * doc/autoconf.texi: Moving/deleting open files is not portable.
10314         Portability issues for `.' (source), and more information about sed.
10316 2001-07-25  Steven G. Johnson  <stevenj@alum.mit.edu>
10318         * aclang.m4 (AC_F77_LIBRARY_LDFLAGS): Ignore -libmil (on Solaris),
10319         which has a special meaning and is not a reference to libibmil.a.
10320         Reported by Matteo Frigo.
10322 2001-07-25  Pavel Roskin  <proski@gnu.org>
10324         * autom4te.in (mktmpdir): Strip trailing newline from mktemp
10325         output.
10327 2001-07-25  Akim Demaille  <akim@epita.fr>
10329         * autoconf.in: Try to define the variables before using them.
10330         * autom4te.in ($perllibdir): Use `$autom4te_perllibdir' as envvar
10331         instead of `$perllibdir'.
10332         * tests/atconfig.in ($autom4te_perllibdir): Export it.
10334 2001-07-25  Akim Demaille  <akim@epita.fr>
10336         * autoconf.in (ac_LF_and_DOT): Remove, unused.
10338 2001-07-24  Akim Demaille  <akim@epita.fr>
10340         Let autoconf use autom4te for traces.
10342         * autoconf.in ($task, task trace): Remove, merely pass --trace to
10343         autom4te.
10344         * autoheader.in: Don't pass `-' to autoconf, rather, a tmp file.
10345         (Because I found no way for autom4te to accept `-').
10346         * autom4te.in (&Request::request): Beware of M4 builtins.
10347         (END): Don't try to remove the content of an empty dir.
10348         (&parse_args): Default is `$f:$l:$n:$%', not `$f:$l:$n:$*'.
10349         (&handle_output): Set a default value to `$forbidden'.
10350         * autoupdate.in (&verbose, &xsystem): New, from autom4te.in.
10351         ($autoconf): Pass --debug and --verbose.
10352         * tests/atspecific.m4 (AT_CHECK_AUTOCONF): Clean up autom4te's
10353         cache.
10355 2001-07-24  Akim Demaille  <akim@epita.fr>
10357         Let autoconf use autom4te to create configure.
10359         * autoconf.in ($automate): New var.
10360         (task script): Use autom4te.
10361         * autom4te.in (File::Spec): Use it.
10362         (&find_file): New.
10363         (&parse_args): --warning is -W, not -w.
10364         Find the top level files.
10365         (&handle_m4): Pass the warnings flags.
10366         Don't report verbosely m4's failures, unless requested.
10367         (&handle_output): Don't complain for forbidden tokens in comments.
10368         Be sure to report all the forbidden tokens within a single line.
10369         (&trace_format_to_m4): Preserve `$_'.
10370         (&handle_traces): Sort the output macros.
10371         (&up_to_date_p): Find the files before trying to get its time stamp.
10373 2001-07-24  Akim Demaille  <akim@epita.fr>
10375         * Makefile.am: Ship, build and install Autom4te.
10376         (SUBDIRS): Add lib.
10377         * lib/Autoconf/Struct.pm: New, from Automake 1.5.
10378         * configure.in: Require Perl.
10379         * man/autom4te.in: New.
10381 2001-07-19  Paul Eggert  <eggert@twinsun.com>
10383         * doc/autoconf.texi (Cache Checkpointing): Use AC_MSG_ERROR in
10384         example, rather than (exit 1); exit (which isn't portable).
10386 2001-07-18  Akim Demaille  <akim@epita.fr>
10388         Version 2.52.
10390 2001-07-18  Akim Demaille  <akim@epita.fr>
10392         The C-Fortran 77 hooks are available only once AC_F77_DUMMY_MAIN
10393         was run, while they are needed also when it is expanded.
10394         Reported by Nicolas Joly.
10396         * aclang.m4 (AC_F77_DUMMY_MAIN): Define _AC_LANG_PROGRAM_C_F77_HOOKS.
10397         (AC_LANG_PROGRAM(C)): Use it instead of depending upon
10398         AC_F77_DUMMY_MAIN being expanded.
10400 2001-07-18  Akim Demaille  <akim@epita.fr>
10402         * configure.in: Bump to 2.51a.
10404 2001-07-17  Akim Demaille  <akim@epita.fr>
10406         Version 2.51.
10408 2001-07-17  Akim Demaille  <akim@epita.fr>
10410         * aclang.m4 (AC_F77_DUMMY_MAIN): Let the interface be more
10411         Autoconfy: $1 = action-if-found, $2 = action-if-not-found.
10413 2001-07-17  Akim Demaille  <akim@epita.fr>
10415         The runtime test for AC_FUNC_GETPGRP fails when prototypes are
10416         used.  Well, then use the prototypes when you can, and runtime as
10417         a last resort.
10418         Reported by Artur Frysiak
10420         * acfunctions.m4 (_AC_FUNC_GETPGRP_TEST): New.
10421         (AC_FUNC_GETPGRP): Use it.
10422         First try to compile with 0-ary or 1-ary calls.
10424 2001-07-17  Akim Demaille  <akim@epita.fr>
10426         * actypes.m4 (_AC_CHECK_TYPE_REPLACEMENT_TYPE_P): `foo_t' is a
10427         replacement type.
10428         From Paul Eggert.
10430 2001-07-17  Akim Demaille  <akim@epita.fr>
10432         * Makefile.maint: Sync. with cppi 1.10.
10434 2001-07-17  Akim Demaille  <akim@epita.fr>
10436         * aclang.m4 (AC_LANG_PROGRAM(C)): Output F77_DUMMY_MAIN only when
10437         AC_F77_DUMMY_MAIN has been run.
10438         From Pavel Roskin and Steven G. Johnson.
10440 2001-07-17  Akim Demaille  <akim@epita.fr>
10442         * configure.in: Rename as...
10443         * configure.ac: this.
10445 2001-07-17  Akim Demaille  <akim@epita.fr>
10447         * Makefile.am (INSTALL.txt): Don't use $@ and $< in non suffix
10448         rules.
10449         From Marc Espie.
10450         * Makefile.maint (release-archive-dir): Rename as...
10451         (release_archive_dir): this, so that it can be specialized in
10452         Makefile.
10454 2001-07-14  Akim Demaille  <akim@epita.fr>
10456         * configure.in: Bump to 2.50d.
10458 2001-07-14  Akim Demaille  <akim@epita.fr>
10460         Version 2.50c.
10461         * Makefile.maint (alpha): Typo.
10463 2001-07-14  Akim Demaille  <akim@epita.fr>
10465         * doc/autoconf.texi (Limitations of Make): Macro names and underscore.
10467 2001-07-14  Akim Demaille  <akim@epita.fr>
10469         * config/config.guess, config/config.sub, config/texinfo.tex
10470         * doc/standards.texi, doc/make-stds.texi: Update.
10472 2001-07-14  Akim Demaille  <akim@epita.fr>
10474         * Makefile.maint (cvs-check, cvs-tag-check, cvs-diff-check): New.
10476 2001-07-14  Akim Demaille  <akim@epita.fr>
10478         * Makefile.maint (maintainer-check): Rename as...
10479         (maintainer-distcheck): this.
10480         (changelog-check, static-check): New.
10481         Use them.
10483 2001-07-14  Kevin Ryde  <user42@zip.com.au>
10485         * doc/autoconf.texi (C++ Compilers Characteristics): Last resort
10486         for CXX is g++, not gcc.
10488 2001-07-14  Akim Demaille  <akim@epita.fr>
10490         * doc/autoconf.texi (Files): New subsection.
10492 2001-07-14  Akim Demaille  <akim@epita.fr>
10494         * doc/autoconf.texi (C Compiler, Fortran 77 Compiler): Be subsections
10495         of...
10496         (Generic Compiler Characteristics): this.
10497         (C++ Compiler): New subsection.
10499 2001-07-14  Akim Demaille  <akim@epita.fr>
10501         * autoscan.in: Use IO::File.
10502         Adjust all the routines to use it.
10503         ($log): New file (autoscan.log).
10504         (output): Dump detailed logs into $log, and a shortened version to
10505         stderr.
10506         (&scan_makefile): Refine the regexp catching tokens in the code.
10507         * doc/autoconf.texi (autoscan Invocation): Document `autoscan.log'
10508         and the `configure.ac' checking feature.
10510 2001-07-12  Akim Demaille  <akim@epita.fr>
10512         For some AWK, such as on HPUX 11, `xfoo' does not match `foo|^bar'.
10513         Reported by Michael Elizabeth Chastain.
10515         * autoconf.in: Refuse such AWK.
10516         * configure.in: Likewise.
10517         * Makefile.am (acversion.m4): Do not use move-if-change this file
10518         has dependencies.
10519         * doc/autoconf.texi (Fortran 77 Compiler): Some typos.
10521 2001-07-10  Jens Petersen  <petersen@redhat.com>
10523         * autoscan.in (&scan_makefile): Improve programs regexp to parse
10524         things like "g++", "file.c" and "some-conf" as tokens.
10525         (&scan_file): Match C++ files extensions.
10526         If the filename extension is C++ then ask for c++.
10528 2001-07-05  Steven G. Johnson  <stevenj@alum.mit.edu>
10530         * aclang.m4 (AC_F77_DUMMY_MAIN): Use AC_TRY_LINK, not
10531         AC_TRY_LINK_FUNC, to check whether defining a dummy
10532         main-like routine is needed for linking with F77 libs.
10534 2001-07-05  Pavel Roskin  <proski@gnu.org>
10536         * aclocal.m4 (_AC_PROG_CXX_EXIT_DECLARATION): Remove conftest*
10537         after using break.
10538         (_AC_PROG_F77_V_OUTPUT): Remove conftest*, not conftest.* after
10539         linking.
10541 2001-07-05  Akim Demaille  <akim@epita.fr>
10543         * Makefile.am (move_if_change): New.  Use it instead of `mv'.
10544         (acversion.m4): Name it `$(srcdir)/acversion.m4' to ease broken
10545         Makes' lives.
10546         Reported by Nicolas Joly.
10548 2001-07-04  Akim Demaille  <akim@epita.fr>
10550         * acgeneral.m4 (_AC_RUN_IFELSE): Remove conftest.o when cleaning
10551         up.
10552         * acfunctions.m4 (AC_FUNC_WAIT3): Use `break' to silent some
10553         warnings from compilers.
10554         * aclang.m4 (_AC_LANG_COMPILER_GNU): Log the version information
10555         for all the compilers, not only GNU.  Hence move from here...
10556         (AC_PROG_CC, AC_PROG_CXX, AC_PROG_F77): to here.
10558 2001-07-04  Akim Demaille  <akim@epita.fr>
10560         * acfunctions.m4 (AC_FUNC_STRTOD, AC_FUNC_STRERROR_R)
10561         (AC_FUNC_STRCOLL, AC_FUNC_WAIT3): Use AC_RUN_IFELSE and
10562         AC_COMPILE_IFELSE.
10564 2001-07-04  Akim Demaille  <akim@epita.fr>
10566         * acgeneral.m4 (_AC_INCLUDES_DEFAULT_REQUIREMENTS): Actually apply
10567         the ``strings.h'' change claimed below.
10569 2001-07-04  Akim Demaille  <akim@epita.fr>
10571         * aclang.m4 (_AC_LANG_COMPILER_GNU): s/-dumpspecs/-v/.
10573 2001-07-04  Akim Demaille  <akim@epita.fr>
10575         * acgeneral.m4 (_AC_INCLUDES_DEFAULT_REQUIREMENTS): Include
10576         strings.h if usable with string.h.
10577         Suggested by Paul Eggert.
10579 2001-07-04  Akim Demaille  <akim@epita.fr>
10581         * autoscan.in (&scan_file): Skip FILE if there is FILE.in.
10582         From Jens Petersen.
10584 2001-07-03  Akim Demaille  <akim@epita.fr>
10586         * acgeneral.m4 (_AC_OUTPUT_CONFIG_STATUS): Specify CONFIG_FILES
10587         etc. in the log.
10589 2001-07-03  Akim Demaille  <akim@epita.fr>
10591         * acheaders.m4 (AC_CHECK_HEADER): When INCLUDES are set, use the
10592         compiler, not the preprocessor.
10593         * acgeneral.m4 (_AC_INCLUDES_DEFAULT_REQUIREMENTS): No longer use
10594         dedicated code to check for inttypes.h, as AC_CHECK_HEADERS does
10595         the right thing.
10596         * Makefile.am (.m4.m4f): Emphasize M4 error messages and fail
10597         earlier if there are.
10599 2001-07-03  Akim Demaille  <akim@epita.fr>
10601         * autoscan.in ($initfile): Remove.
10602         (&find_file): Rename as...
10603         (&scan_file): this.
10604         Immediately scan the current file, instead of gathering them, and
10605         later having them handled by &scan_files.
10606         (&scan_files): Merely invoke Find::File.
10607         Adjust.
10609 2001-07-02  Akim Demaille  <akim@epita.fr>
10611         * autoscan.in: Formatting changes, matching the invocation order.
10612         (File::Find): Use it instead of Perl 4's `find.pl'.
10613         (&wanted): Rename as...
10614         (&find_file): this.
10616 2001-07-01  Pavel Roskin  <proski@gnu.org>
10618         * aclang.m4 (AC_F77_DUMMY_MAIN): Remove conftest* after using
10619         break in the argument to AC_TRY_LINK_FUNC.
10620         (AC_F77_MAIN): Remove conftest* after using break in the
10621         argument to AC_TRY_LINK.
10623 2001-07-01  Steven G. Johnson  <stevenj@alum.mit.edu>
10625         Add alternate 'main' routine detection for linking C/C++ with Fortran,
10626         fixing link failures for e.g. AC_F77_WRAPPERS on NetBSD.
10628         * aclang.m4 (AC_F77_DUMMY_MAIN): New macro to detect whether a
10629         dummy alternate main is required even if the user provides her own
10630         'main'.
10631         (AC_F77_MAIN): New macro to detect whether it is possible to
10632         provide an alternate 'main' function name, using the 'main' from
10633         the Fortran libraries.
10634         (AC_LANG_PROGRAM(C)): Use F77_DUMMY_MAIN, if it is defined, so that
10635         cross-language link tests can be performed successfully.
10636         (_AC_F77_NAME_MANGLING): Require AC_F77_DUMMY_MAIN.  Also put $FLIBS
10637         after $LIBS, for consistency; this should be the general rule since
10638         the user may want to link to Fortran libraries that require $FLIBS.
10639         * doc/autoconf.texi: Document AC_F77_DUMMY_MAIN and AC_F77_MAIN.
10641 2001-06-29  Pavel Roskin  <proski@gnu.org>
10643         * atgeneral.m4 (AT_CHECK): Add a newline to the end of
10644         at-stdout and at-stderr instead of removing the newline
10645         from the echo output, which is not guaranteed to work.
10647 2001-06-28  Jens Petersen  <petersen@redhat.com>
10649         * aclang.m4 (_AC_PROG_CXX_EXIT_DECLARATION): Only add declaration to
10650         confdefs.h when non-zero.
10652 2001-06-28  Akim Demaille  <akim@epita.fr>
10654         * configure.in: Bump to 2.50c.
10656 2001-06-26  Akim Demaille  <akim@epita.fr>
10658         Version 2.50b.
10660 2001-06-26  Akim Demaille  <akim@epita.fr>
10662         Version 2.50a.
10664 2001-06-25  Pavel Roskin  <proski@gnu.org>
10666         * tests/atspecific.m4 (AT_CHECK_MACRO): Accept one more
10667         argument, AUTOCONF-FLAGS.
10668         * tests/mktests.sh (update_exclude_list): Add
10669         AC_SYS_RESTARTABLE_SYSCALLS and AC_FUNC_WAIT3.
10670         * tests/semantics.at: Test AC_SYS_RESTARTABLE_SYSCALLS and
10671         AC_FUNC_WAIT3 with "-W no-obsolete".
10673 2001-06-25  Akim Demaille  <akim@epita.fr>
10675         * tests/foreign.at (libtool): Fix the `libtoolize --version' decoding.
10677 2001-06-25  Akim Demaille  <akim@epita.fr>
10679         * autoscan.in (%macro): Now maps from word to list of macros.
10680         (&init_tables): Die when a word which is already handled by
10681         explicit macros is mapped to the default macro.
10682         (&print_unique): Remove, inlined in...
10683         (&output_kind): here.
10684         (File::Basename): Use it.
10685         (&output): Sort the CONFIG_FILES.
10686         * acheaders: Normalize.
10687         * acfunctions: Likewise.
10689 2001-06-25  Akim Demaille  <akim@epita.fr>
10691         * aclang.m4 (_AC_LANG_COMPILER_GNU): If GNU, dump the compiler
10692         characteristics in the logs.
10693         Suggested by Mo DeJong.
10695 2001-06-24  Akim Demaille  <akim@epita.fr>
10697         * acfunctions.m4 (AM_FUNC_ERROR_AT_LINE, AM_FUNC_FNMATCH)
10698         (AM_FUNC_MKTIME, AM_FUNC_OBSTACK, AM_FUNC_STRTOD): Reactivated.
10699         * doc/autoconf.texi (Autoconf 2.13): New section.
10701 2001-06-24  Akim Demaille  <akim@epita.fr>
10703         * autoconf.in (Task traces): Separate the error messages from the
10704         traces to improve robustness.
10706 2001-06-23  Akim Demaille  <akim@epita.fr>
10708         * tests/torture.at (AC_ARG_VAR): Make it a single test instead of
10709         three as failures are unlikely, and speed matters.
10711 2001-06-23  Akim Demaille  <akim@epita.fr>
10713         * doc/autoconf.texi (Redefined M4 Macros): New.
10715 2001-06-23  Akim Demaille  <akim@epita.fr>
10717         * acgeneral.m4 (_AC_INCLUDES_DEFAULT_REQUIREMENTS): Consider
10718         inttypes.h is missing if it conflicts with sys/types.h, as on IRIX
10719         5.3.
10721 2001-06-23  Paolo Bonzini  <bonzini@gnu.org>
10723         * acgeneral.m4 (_AC_OUTPUT_CONFIG_STATUS): Defer parsing of
10724         config.status targets to after the evaluation of the INIT-CMDS.
10725         Double quote config.status targets (used to be single quoted).
10727 2001-06-23  Akim Demaille  <akim@epita.fr>
10729         * tests/torture.at (CONFIG_FILES, HEADERS, LINKS and COMMANDS):
10730         Check the content of the created file.
10731         Check the ./config.status command line invocation.
10733 2001-06-23  Akim Demaille  <akim@epita.fr>
10735         * tests/foreign.at (Libtool): Reject prehistoric versions.
10737 2001-06-23  Akim Demaille  <akim@epita.fr>
10739         * aclang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Try to be robust to
10740         preexisting files matching a.*.
10742 2001-06-23  Akim Demaille  <akim@epita.fr>
10744         * acgeneral.m4 (_AC_ARG_VAR_VALIDATE): Output error messages on
10745         stderr.
10746         * doc/autoconf.texi (AC_ARG_VAR): Update.
10748 2001-06-21  Akim Demaille  <akim@epita.fr>
10750         * acgeneral.m4 (_AC_ARG_VAR_VALIDATE): Die instead of warning when
10751         precious variables have changed.
10752         * tests/torture.at (AC_ARG_VAR): Adjust.
10754 2001-06-21  Akim Demaille  <akim@epita.fr>
10756         ./configure --program-suffix=foo produces `transform=s,$$,foo,;',
10757         but some sed choke on multiple `;', and other tools (e.g.,
10758         Automake), include the separator themselves.
10760         * acgeneral.m4 (AC_ARG_VAR): Be sure not to leave extra `;'.
10762 2001-06-19  Tim Van Holder  <tim.van.holder@pandora.be>
10764         * doc/autoconf.texi (Functions Portability): Rename as...
10765         (Function Portability): this.
10766         (Function Portability): Document potential problems with unlink().
10768 2001-06-19  Paul Eggert  <eggert@twinsun.com>
10770         * NEWS, doc/autoconf.texi: Document quadrigraphs.
10772 2001-06-18  Akim Demaille  <akim@epita.fr>
10774         * acfunctions.m4 (AC_FUNC_FORK): Fix typos.
10776 2001-06-18  Ruediger Kuhlmann  <info@ruediger-kuhlmann.de>
10778         * acfunctions.m4: (AC_FUNC_VFORK) rename as...
10779         (_AC_FUNC_VFORK): this.
10780         Remove AC_DEFINEs and don't guess cross-compilation values.
10781         (_AC_FUNC_FORK): New, check whether fork() isn't just a stub.
10782         (AC_FUNC_FORK): New, use _AC_FUNC_VFORK and _AC_FUNC_FORK to
10783         define HAVE_WORKING_FORK, HAVE_WORKING_VFORK; and vfork to fork if
10784         vfork doesn't work.
10785         Guess values if cross-compiling, but warn.
10786         * acfunctions: Add AC_FUNC_FORK.
10787         * doc/autoconf.texi: Document AC_FUNC_FORK. Give example to define
10788         and vfork appropriately.
10790 2001-06-18  Akim Demaille  <akim@epita.fr>
10792         * doc/autoconf.texi (Functions Portability): New section.
10794 2001-06-18  Akim Demaille  <akim@epita.fr>
10796         * autoconf.in (M4): Pass --nesting-limit=1024, unless already set
10797         in $M4.
10798         Suggested by Andreas Schwab.
10800 2001-06-18  Akim Demaille  <akim@epita.fr>
10802         * acfunctions.m4 (AC_FUNC_CHOWN, AC_FUNC_CLOSEDIR_VOID)
10803         (AC_FUNC_GETPGRP, AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK)
10804         (AC_FUNC_MMAP, AC_FUNC_SELECT_ARGTYPES, _AC_FUNC_STAT)
10805         (AC_FUNC_UTIME_NULL): Use AC_INCLUDES_DEFAULT.
10806         Don't use AC_TRY_RUN, which double quotes, prefer AC_RUN_IFELSE,
10807         and either AC_LANG_SOURCE or AC_LANG_PROGRAM.
10808         (AC_FUNC_CLOSEDIR_VOID): Protect C++ from `int closedir ();' (or
10809         the converse).
10811 2001-06-18  Akim Demaille  <akim@epita.fr>
10813         * doc/autoconf.texi (ms): New index.
10814         (Macro Index): Rename as...
10815         (Autoconf Macro Index): this.
10816         (M4 Macro Index): New appendix.
10817         (Programming in M4): New chapter.
10818         Define M4sugar, M4sh, m4_pattern_forbid, and m4_pattern_allow.
10819         (Quoting): Rename as...
10820         (M$ Quotation): this.
10821         Be part of `Programming in M4).
10823 2001-06-18  Nicolas Joly  <njoly@pasteur.fr>
10825         * tests/torture.at (AC_ARG_VAR): Set variables and export them
10826         in separate statements for compatibility with Tru64 v5.1.
10828 2001-06-17  Akim Demaille  <akim@epita.fr>
10830         * acgeneral.m4 (_AC_ARG_VAR_VALIDATE): Be sure to cache the
10831         current values of the precious variables, not the previously
10832         cached values.
10833         Pass precious variables which are set to config.status.
10834         * doc/autoconf.texi (Setting Output Variables): Document AC_ARG_VAR.
10835         * tests/torture.at (AC_ARG_VAR): New.
10837 2001-06-15  Paul Eggert  <eggert@twinsun.com>
10839         * doc/autoconf.texi: Move AC_FUNC_WAIT3 and
10840         AC_SYS_RESTARTABLE_SYSCALLS to the obsolete section,
10841         and explain why and how to replace them.
10842         * acfunctions.m4 (AC_FUNC_WAIT3): Warn as obsolete.
10843         * acspecific.m4 (AC_SYS_RESTARTABLE_SYSCALLS): Likewise.
10845 2001-06-15  Akim Demaille  <akim@epita.fr>
10847         `build_alias', `host_alias', and `target_alias' are not AC_SUBST'd.
10848         Reported by Bruno Haible.
10850         * acgeneral.m4 (AC_ARG_VAR): Move the AC_SUBST, from here...
10851          (_AC_ARG_VAR_PRECIOUS): to here.
10853 2001-06-15  Pavel Roskin  <proski@gnu.org>
10855         * acheaders.m4 (_AC_CHECK_HEADER_DIRENT): Instead of defining
10856         an unused pointer use cast to this type and `if' statement to
10857         avoid warnings from the compiler.
10858         (AC_HEADER_TIME): Likewise.
10859         * actypes.m4 (AC_CHECK_MEMBER): s/foo/ac_aggr/. Use the member
10860         in `if' statement to avoid warnings from the compiler. Declare
10861         ac_aggr static to avoid the need to initialize it.
10863 2001-06-14  Akim Demaille  <akim@epita.fr>
10865         * doc/autoconf.texi (Portable Shell): Move to follow `Writing
10866         Macros'.
10868 2001-06-13  Akim Demaille  <akim@epita.fr>
10870         * m4/missing.m4, config/missing: Updated to Automake 1.4g's.
10871         Suggested by Alexander Mai.
10873 2001-06-13  Akim Demaille  <akim@epita.fr>
10875         * acgeneral.m4 (_AC_INCLUDES_DEFAULT_REQUIREMENTS): Guard
10876         sys/types.h and sys/stat.h, and check for them.
10878 2001-06-13  Akim Demaille  <akim@epita.fr>
10880         * acheaders.m4 (AC_CHECK_HEADER, AC_CHECK_HEADERS): Support $4 =
10881         INCLUDES.
10883 2001-06-12  Maciej W. Rozycki  <macro@ds2.pg.gda.pl>
10885         * acspecific.m4 (AC_PATH_XTRA): Check if linking against libX11
10886         succeeds and only try adding libdnet upon a failure.
10888 2001-06-12  Akim Demaille  <akim@epita.fr>
10890         * autoscan.in (&output_kind): Output the comment only if it exists.
10891         (%kind_comment): Add entry for `programs'.
10892         (&output_programs): Use &output_kind.
10893         (&output_functions, &output_identifiers, &output_headers)
10894         (&output_programs): Inline, and remove.
10896 2001-06-12  Akim Demaille  <akim@epita.fr>
10898         * autoscan.in (%kind_comment): New.
10899         (output_kind): New.
10900         (output_functions, output_identifiers, output_headers): Use it.
10902 2001-06-12  Akim Demaille  <akim@epita.fr>
10904         * autoscan.in (&print_unique): Take `$kind' and `$word' as
10905         arguments, to factor indirections into `%macro' and `%used'.
10906         (%generic_macro): Fix a typo.
10908 2001-06-12  Akim Demaille  <akim@epita.fr>
10910         * aclibraries: New.
10911         * autoscan.in (@kinds): Add `libraries'.
10912         Use `@kinds' instead of hard coded lists.
10913         (%programs, %headers, %identifiers, %makevars, %libraries, %functions):
10914         Remove, replaced by...
10915         (%used): this.
10917 2001-06-12  Akim Demaille  <akim@epita.fr>
10919         * autoscan.in (%functions_macros %headers_macros)
10920         (%identifiers_macros %programs_macros %makevars_macros): Remove,
10921         replaced by...
10922         (%macro): New.
10924 2001-06-11  Raja R Harinath  <harinath@cs.umn.edu>
10926         * aclang.m4 (AC_NO_EXECUTABLES): Override
10927         _AC_COMPILER_EXEEXT_WORKS, not _AC_LANG_COMPILER_WORKS.
10929 2001-06-11  Akim Demaille  <akim@epita.fr>
10931         * aclang.m4 (AC_NO_EXECUTABLES): Define the macros with their
10932         trailing new line.
10933         Reported by Andreas Schwab.
10935 2001-06-11  Akim Demaille  <akim@epita.fr>
10937         * Makefile.am, Makefile.maint: Typos.
10939 2001-06-09  Akim Demaille  <akim@epita.fr>
10941         * doc/autoconf.texi (Here-Documents): New section, gathering
10942         documentation about here-documents.
10943         Use `href', not `uref', and other changes.
10945 2001-06-09  Akim Demaille  <akim@epita.fr>
10947         * doc/autoconf.texi (Portable Shell Programming): Promoted as a
10948         chapter.
10950 2001-06-09  Akim Demaille  <akim@epita.fr>
10952         * doc/autoconf.texi (Limitations of Builtins): Complete the
10953         description of the here-docs penalties with Alexandre Oliva's
10954         explanations.
10956 2001-06-01  Paul Eggert  <eggert@twinsun.com>
10958         * doc/autoconf.texi: Talk about here documents and speedups.
10959         Do not use "echo" on arbitrary strings.
10960         Spell "here-documents" consistently with the standard.
10962 2001-06-09  Akim Demaille  <akim@epita.fr>
10964         * doc/autoconf.texi (Concept Index): Introduce it.
10965         Regenerate the menus.
10967 2001-06-09  Akim Demaille  <akim@epita.fr>
10969         * Makefile.maint, GNUmakefile: New, from Jim Meyering.
10970         * config/prev-version.txt: New.
10971         * config/move-if-change: New, for GNU libc.
10973 2001-06-06  Pavel Roskin  <proski@gnu.org>
10975         * tests/atgeneral.m4 (AT_INIT): Remove "/bin/sh" after $SHELL.
10977 2001-06-06  Akim Demaille  <akim@epita.fr>
10979         * acgeneral.m4 (AC_CHECK_LIB): Fix the cache var name to work
10980         properly when $1 is not a literal.
10981         Fixes PR Autoconf/187, reported by Bram Moolenaar.
10983 2001-06-06  Akim Demaille  <akim@epita.fr>
10985         Invoking AC_COPYRIGHT before AC_INIT fails.
10987         * Makefile.am (.m4.m4f): Pass --fatal-warnings to m4.
10988         * acgeneral.m4 (_m4_divert(VERSION_FSF))
10989         (_m4_divert(VERSION_USER)): New.
10990         (AC_COPYRIGHT): $2 is the diversion to use.
10991         (_AC_INIT_COPYRIGHT): Use the FSF diversion.
10992         (AC_INIT): Remove dead comments as now it's commutative.
10994 2001-06-06  Akim Demaille  <akim@epita.fr>
10996         * tests/semantics.at (AC_CHECK_LIB): Strengthen to reflect
10997         PR autoconf/187.
10999 2001-06-05  Akim Demaille  <akim@epita.fr>
11001         * acgeneral.m4 (_AC_INIT_PARSE_ARGS): `prefix' and `exec_prefix'
11002         can be empty.
11003         `*dir' variables cannot be NONE.
11004         Reported by Mark Kettenis.
11006 2001-06-05  Paul Eggert  <eggert@twinsun.com>
11008         * doc/autoconf.texi: Fix references to Solaris and SunOS versions.
11010 2001-06-04  Akim Demaille  <akim@epita.fr>
11012         * acgeneral.m4 (AC_VAR_SET, AC_VAR_GET, AC_VAR_TEST_SET)
11013         (AC_VAR_SET_IFELSE, AC_VAR_PUSHDEF and AC_VAR_POPDEF, AC_TR_CPP)
11014         (AC_TR_SH): Move as...
11015         * m4sh.m4 (AS_VAR_SET, AS_VAR_GET, AS_VAR_TEST_SET)
11016         (AS_VAR_SET_IF, AC_VAR_PUSHDEF, AS_VAR_POPDEF, AS_TR_CPP)
11017         (AS_TR_SH): these.
11018         (_AS_TR_PREPARE, _AS_CR_PREPARE, _AS_TR_CPP_PREPARE)
11019         (_AS_TR_SH_PREPARE): New.
11020         (AS_SHELL_SANITIZE): Invoke _AS_TR_PREPARE.
11021         * tests/aclocal.m4 (AC_STATE_SAVE): `as_' vars can be modified.
11023 2001-06-02  Akim Demaille  <akim@epita.fr>
11025         * Makefile.am (.m4.m4f): Pass the options first.
11026         Fixes PR autoconf/182.
11028 2001-06-02  Nathan Sidwell  <nathan@codesourcery.com>
11030         GNU getopt, when POSIXLY_CORRECT does not permute options and
11031         arguments.  So pass the options first.
11032         Fixes PR autoconf/184.
11034         * autoconf.sh (m4_prefiles, m4f_prefiles): New variables.
11035         (run_m4): Remove files.
11036         (run_m4f): Remove.
11037         Update remainder of script to use them.
11038         (for warning in): Do not use a literal comma as it will not be
11039         split by IFS.
11041 2001-06-02  Christian Marquardt  <marq@gfz-potsdam.de>
11043         * aclang.m4 (AC_PROG_F77): Add Fujitsu's "frt" to the list of
11044         Fortran compilers to check.
11045         (_AC_PROG_F77_V): Add '-###' as a possible option to print
11046         information on library and object files.
11047         (AC_PROG_CXX): Add Fujitsu's "FCC" to the list of C++ compilers
11048         to check.
11050 2001-06-02  Akim Demaille  <akim@epita.fr>
11052         * autom4te.in (Request::@request): Declare with `vars', not `my',
11053         as it prevents updates via `do FILENAME'.
11055 2001-06-02  Akim Demaille  <akim@epita.fr>
11057         * configure.in (standards_texi): Remove, dead code.
11059 2001-06-02  Akim Demaille  <akim@epita.fr>
11061         * autom4te.in: New.
11063 2001-06-02  Pavel Roskin  <proski@gnu.org>
11065         * acgeneral.m4 (_AC_INIT_PREPARE): Don't rely on $? in the traps
11066         for signals other than 0 - exit with code 1.
11067         * m4sh.m4 (AS_TMPDIR): Likewise.
11068         * autoconf.in: Likewise. Also don't rely on exit == exit $?.
11069         * autoheader.in: Likewise.
11070         * autoreconf.in: Likewise.
11071         * tests/torture.at (Signal handling): New test for the above.
11073 2001-06-01  Akim Demaille  <akim@epita.fr>
11075         * m4sugar.m4 (m4_defn, m4_undefine, m4_popdef): Clarify the error
11076         message.
11078 2001-05-31  Akim Demaille  <akim@epita.fr>
11080         * acfunctions, acheaders, acidentifiers, acmakevars, acprograms:
11081         Add copyright and comments.
11082         * acheaders: Add stdint.h.
11083         Suggested by Paul Eggert.
11085 2001-05-31  Akim Demaille  <akim@epita.fr>
11087         * atgeneral.m4 (AT_INIT): Use $SHELL.
11088         * atspecific.m4 (AT_CHECK_DEFINES): Skip HAVE_STDINT_H.
11090 2001-05-31  Akim Demaille  <akim@epita.fr>
11092         * acgeneral.m4 (_AC_INCLUDES_DEFAULT_REQUIREMENTS): Include
11093         stdint.h.
11094         From Paul Eggert and Lars Hecking.
11096 2001-05-31  Akim Demaille  <akim@epita.fr>
11098         * tests/base.at: Adjust line numbers in error messages.
11100 2001-05-31  Akim Demaille  <akim@epita.fr>
11102         * tests/base.at, tests/m4sh.at: When using AC_PLAIN_SCRIPT be sure
11103         to emit the bangshe line.
11104         Reported by David Carter.
11106 2001-05-30  Steven G. Johnson  <stevenj@alum.mit.edu>
11108         * aclang.m4 (AC_PROG_F77): Add Compaq's "fort" to the list of
11109         Fortran (95) compilers to check.
11111 2001-05-29  Alexandre Duret-Lutz  <duret_g@epita.fr>
11113         * doc/autoconf.texi (Introduction, Pointers): Update the Autoconf
11114         Macro Archive URL.
11116 2001-05-23  Pavel Roskin  <proski@gnu.org>
11118         * aclang.m4 (AC_PROG_CPP): Use `break' instead of `break 2' since
11119         _AC_PROG_PREPROC_WORKS_IFELSE expands arguments outside the loop.
11120         (AC_PROG_CXXCPP): Likewise.
11122 2001-05-22  Akim Demaille  <akim@epita.fr>
11124         * config: New directory.
11125         * configure.in: AC_CONFIG_AUX_DIR it.
11126         * tests/atspecific.m4 (AT_CONFIGURE_AC): Adjust.
11128 2001-05-22  Akim Demaille  <akim@epita.fr>
11130         * autoconf.in, autoreconf.in, autoheader.in, autoscan.in, ifnames.in,
11131         * autoupdate.in: Specify the Emacs mode.
11132         * acversion.m4.in: Rename as...
11133         * acversion.m4: this.
11134         * tests/Makefile.am (CLEANFILES): More garbage.
11136 2001-05-22  Akim Demaille  <akim@epita.fr>
11138         * autoconf.sh, autoreconf.sh, autoheader.sh, autoscan.pl, ifnames.sh:
11139         Rename as...
11140         * autoconf.in, autoreconf.in, autoheader.in, autoscan.in, ifnames.in:
11141         these.
11143 2001-05-21  Akim Demaille  <akim@epita.fr>
11145         * configure.in: Bump to 2.50a.
11147 -----
11149 Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
11151 This file is part of GNU Autoconf.
11153 GNU Autoconf is free software; you can redistribute it and/or modify
11154 it under the terms of the GNU General Public License as published by
11155 the Free Software Foundation; either version 2, or (at your option)
11156 any later version.
11158 GNU Autoconf is distributed in the hope that it will be useful,
11159 but WITHOUT ANY WARRANTY; without even the implied warranty of
11160 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11161 GNU General Public License for more details.
11163 You should have received a copy of the GNU General Public License
11164 along with autoconf; see the file COPYING.  If not, write to
11165 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
11166 Boston, MA 02110-1301, USA.