* doc/autoconf.texi (Portable C and C++, Varities of Unportability):
[autoconf/tsuna.git] / ChangeLog
blob57c5fcc3ed58074c54a0aadc928829d91fb87b4b
1 2006-04-26  Paul Eggert  <eggert@cs.ucla.edu>
3         * doc/autoconf.texi (Portable C and C++, Varities of Unportability):
4         (Integer Overflow, Null Pointers, Buffer Overruns):
5         (Floating Point Portability, Exiting Portably): New sections.
6         (Writing Test Programs): Fix some langauge.  Recommend exiting
7         with status 1, not merely nonzero.  Clarify exit declaration.
8         (Run Time): Move C exit status stuff to new Exiting Portably section.
9         (Systemology): Mention Posix and levenez.  Update v7 reference.
10         (Portable Shell): Mention the Posix shell.
12 2006-04-25  Stepan Kasal  <kasal@ucw.cz>
14         * bin/autoconf.as (me): Replace by as_me.
16 2006-04-25  Paul Eggert  <eggert@cs.ucla.edu>
18         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Don't use AS_ERROR,
19         since as_me isn't set yet.
21 2006-04-23  Paul Eggert  <eggert@cs.ucla.edu>
23         Prepare for deprecation of AS_BASENAME and AS_DIRNAME, and fix
24         a few minor bugs in this area.
26         * doc/autoconf.texi (Programming in M4sh): Comment out the
27         documentation of AS_BASENAME, for now.
28         (Shell Substitutions): Do not use AS_DIRNAME in an example.
29         (Limitations of Builtins) <basename>: Do not refer to
30         AS_BASENAME.
31         * bin/autoconf.as (me): Don't use AS_BASENAME.
32         (dir): Remove the unused variable.
33         * lib/m4sugar/m4sh.m4 (_AS_DETECT_REQUIRED): Renamed from
34         AS_DETECT_REQUIRED.  All uses changed.
35         (_AS_DETECT_SUGGESTED): Renamed from AS_DETECT_SUGGESTED.
36         All uses changed.
37         (_AS_DETECT_BETTER_SHELL): Put ;; at the end of a case.
38         (AS_BASENAME): Use "basename --" to protect against leading "-".
39         (_AS_BASENAME_EXPR): Renamed from AS_BASENAME_EXPR.  All uses changed.
40         (_AS_BASENAME_SED): Renamed from AS_BASENAME_SED.  All uses changed.
41         (_AS_BASENAME_PREPARE): Reject implementations that cannot handle "--".
42         (_AS_DIRNAME_PREPARE): Likewise.
43         (_AS_DIRNAME_EXPR): Renamed from AS_DIRNAME_EXPR.  All uses changed.
44         (_AS_DIRNAME_SED): Renamed from AS_DIRNAME_SED.  All uses changed.
45         (AS_DIRNAME): Use "dirname --".
47 2006-04-23  Paul Eggert  <eggert@cs.ucla.edu>
49         * doc/autoconf.texi (Runtime): Renamed from "Run Time".  All uses
50         of "run time" and "run-time" changed to "runtime", for consistency.
51         * lib/autoconf/fortran.m4: Likewise (in comment).
52         * lib/autoconf/functions.m4: Likewise.
53         * lib/autoconf/general.m4: Likewise.
54         * lib/autoconf/headers.m4: Likewise.
56         * doc/autoconf.texi (Run Time): Document the exit status situation
57         with more accuracy and detail.
59 2006-04-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
61         * doc/autoconf.texi (Introduction): The GNU Autoconf Macro
62         Archive is not officially `GNU' any more.  Update URL.
63         (Defining Directories): Likewise
64         * lib/autoconf/c.m4 (AC_C_RESTRICT): Update URL.
66 2006-04-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
68         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Remove the leading
69         newline from the `trap' code to finish `config.log'; the NetBSD
70         /bin/sh resets the exit status after an empty command, as
71         documented in doc/autoconf.texi.
72         Reported by Dalibor Topic <robilad@kaffe.org>.
74 2006-04-19  Paul Eggert  <eggert@cs.ucla.edu>
76         * doc/autoconf.texi (C Compiler): Clarify AC_C_TYPEOF.
77         Suggested by Bruno Haible.
79 2006-04-18  Paul Eggert  <eggert@cs.ucla.edu>
81         * configure.ac (ac_cv_sh_n_works): Don't try to test for it, since
82         some shells (e.g., Solaris 8 /bin/sh) implement it verrrry slowly.
83         Instead, just list the shells that we know work.
84         * tests/local.at (AT_CHECK_SHELL_SYNTAX): Remove 2nd arg.  All uses
85         changed.  Be more cautious about the _cv_ variable.
86         * tests/tools.at (Syntax of the shell scripts): Check the
87         _cv_ variable once, at first, to avoid an internal autoconf error
88         when sh -n does not work.
90 2006-04-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
92         * lib/Autom4te/FileUtils.pm: Sync from Automake.
94 2006-04-16  Paul Eggert  <eggert@cs.ucla.edu>
96         * lib/autoconf/general.m4 (_AC_INIT_CONFIG_LOG): Don't
97         use ">&-" since we're only 99.999% sure that this is portable,
98         and since the MinGW bug is fixed in a different way.
99         * lib/autotest/general.m4 (AT_INIT): Likewise.
101 2006-04-16  Stepan Kasal  <kasal@ucw.cz>
103         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Handle --recheck
104         before opening config.log, to avoid hitting a bug on MinGW.
106 2006-04-14  Paul Eggert  <eggert@cs.ucla.edu>
108         * lib/autoconf/general.m4 (_AC_INIT_CONFIG_LOG): Close
109         AS_MESSAGE_LOG_FD before reopening it onto the log file.
110         This works around a MinGW bug reported by Eric Paire.
111         Make sure that all writes to the log file append to it,
112         rather than possibly losing data.
113         * lib/autotest/general.m4 (AT_INIT): Likewise.
115 2006-04-14  Stepan Kasal  <kasal@ucw.cz>
117         * lib/Autom4te/FileUtils.pm (find_file): Fix a typo in the
118         description.
120 2006-04-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
122         * NEWS: Update.
124         * configure.ac (AC_INIT): Bump to 2.59d.
126 2006-04-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
128         Version 2.59c.
130 2006-04-12  Stepan Kasal  <kasal@ucw.cz>
131         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
133         * lib/autoconf/status.m4 (_AC_OUTPUT_FILE): If the templates for
134         the instantiated file do not contain the string 'datarootdir'
135         but contain @datadir@, @docdir@, @infodir@, @localedir@, or
136         @mandir@, replace the reference '${datarootdir}' by the value.
137         * tests/torture.at (datarootdir workaround): New test.
138         * NEWS: Advertise this temporary fixup.
139         Based on a patch by Bruno Haible, reported and analyzed by
140         Paul Eggert and Noah Misch.
142 2006-04-12  Eric Blake  <ebb9@byu.net>
144         * tests/autotest.at (Debugging a failed test): Fix comment.
146 2006-04-12  Stepan Kasal  <kasal@ucw.cz>
148         * lib/m4sugar/m4sh.m4 (_AS_LN_S_PREPARE): Simplify the summary of
149         all the changes since 2006-04-07.
151 2006-04-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
153         * lib/m4sugar/m4sh.m4 (_AS_LN_S_PREPARE): If `ln -s file1 file2'
154         succeeded, but `ln -s file dir' failed, take care to remove the
155         leftover target before the next test, to prevent its spurious
156         failure; also make sure `ln file dir' works before selecting it.
157         Thanks to Keith Marshall for pointing this out.
158         * THANKS: Update.
160         * lib/autotest/general.m4 (AT_INIT): Store quoted variable
161         assignments in `at_debug_args', so that we put them correctly
162         in the `run' script.
163         * tests/autotest.at (Debugging a failed test): Unmark XFAIL.
164         Reported by Eric Blake.
166 2006-04-11  Eric Blake  <ebb9@byu.net>
168         * tests/autotest.at (AT_CHECK_AT): Add new argument, to allow
169         top-level tests after micro-suite has been run.   Used in...
170         (Debugging a successful test, Debugging script and environment),
171         (Debugging a failed test): ...these new tests.  The first of these
172         is fixed by...
173         * lib/autotest/general.m4 (_AT_CREATE_DEBUGGING_SCRIPT): New
174         macro, split out from...
175         (AT_INIT): ...here, so that using -d also generates a run script.
176         Document that -d inhibits top-level logging.
177         * doc/autoconf.texi (testsuite Invocation): Document that -d only
178         inhibits top-level logging; debug scripts are created.
180         * lib/autotest/general.m4 (_AT_CHECK): Avoid syntax error on empty
181         check.
182         * tests/autotest.at (Empty test, Empty check): New test to check it.
184         * lib/autoconf/c.m4 (AC_C_CONST, AC_C_VOLATILE): Avoid warnings
185         from gcc.
187 2006-04-10  Stepan Kasal  <kasal@ucw.cz>
189         * tests/mktests.sh: Use "trap '' 0", not "trap 0".  Do not touch
190         the files if a problem appears.  Make the empty *.at files
191         read-only, too.  Proposed by Ralf Wildenhues.
193 2006-04-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
195         * config/Makefile.am: Add comment to force updated Makefile.in.
197         * lib/freeze.mk: Fix typo in comment.  Unlike the last, white
198         space only patch to this file, this patch causes the Makefile.in
199         files that include freeze.mk to be updated, and thus have a
200         newer time stamp again, which in turn makes a pristine CVS
201         checkout have correct time stamps.
203         * Makefile.maint (cvs-sv): New macro, to be used..
204         (config.guess-url_prefix, config.sub-url_prefix)
205         (texinfo.tex-url_prefix, standards.texi-url_prefix): ..here;
206         point to CVS text checkout of Gnulib files.
207         (copyright-check): Bump current year.
208         (announcement): Do not hard-wire `./announce-gen'.
209         (cvs-update): Propagate failures of `cvs' and `move-if-change'
210         correctly.
211         * Makefile.cfg (executable-update): Use `chmod a+x' instead of
212         `chmod +x'.
213         (wget_files): Update config.guess, config.sub, texinfo.tex by
214         `wget-update', now that their URLs work again.
216 2006-04-10  Paul Eggert  <eggert@cs.ucla.edu>
218         * doc/autoconf.texi (Particular Types): Don't use AC_CHECK_TYPE.
219         Problem noted by Paul D. Smith.
221 2006-04-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
223         * doc/autoconf.texi: Remove unused words from word list.
224         * .x-sc_prohibit_atoi_atof, .x-sc_space_tab, .x-sc_sun_os_names,
225         .x-sc_trailing_space: New files.
227         * doc/standards.texi: Sync from gnulib.
229         * NEWS, doc/autoconf.texi (AC_LIBOBJ vs LIBOBJS): Mark
230         `LIBOBJDIR' as experimental.
232         * lib/m4sugar/m4sh.m4 (_AS_LN_S_PREPARE): MSYS `ln -s' fails
233         with a target directory; it's internally implemented as `cp'
234         anyway, but since Autoconf advertises the possibility to use
235         a target directory when LN_S is `ln -s', we need to find out.
236         Reported by Rolf Ebert <rolf.ebert.gcc@gmx.de> against MSYS,
237         analyzed by Keith Marshall <keith.marshall@total.com>.
239         * THANKS: Update.
241 2006-04-10  Paul Eggert  <eggert@cs.ucla.edu>
243         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Just output
244         confdefs.h as-is.  In general, if it has backslash-newline or the
245         like, then it doesn't work either to sort or to remove empty
246         lines.
248 2006-04-09  Stepan Kasal  <kasal@ucw.cz>
250         * tests/Makefile.am (AUTOCONF_FILES): Fix typo in the comment.
252 2006-04-09  Alexandre Duret-Lutz  <adl@gnu.org>
254         * lib/autom4te.in (Automake-preselections): Preselect
255         _AM_SUBST_NOTMAKE.
257 2006-04-08  Paul Eggert  <eggert@cs.ucla.edu>
259         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Use '\'' for an
260         apostrophe within a single-quoted string, as this is the usual
261         tradition and is easier to read than '"'"'.  Don't rely on the
262         shell treating "$/" like '$/'.  Use a more-consistent indenting
263         style for the trap.
265 2006-04-09  Eric Blake  <ebb9@byu.net>
267         * tests/autotest.at (Backquote command substitution),
268         (Multiline backquote command substitution): Remove mistaken
269         AT_NO_CMDSUBST from the 2006-03-14 patch, which was meant to be
270         applied...
271         (Parenthetical command substitution, Multiline parenthetical
272         command substitution): here.
274 2006-04-08  Paul Eggert  <eggert@cs.ucla.edu>
276         Import macros from gnulib (often changing their name).
278         * NEWS: AC_C_TYPE_LONG_DOUBLE is now obsolete.
279         New macros AC_CHECK_DECLS_ONCE, AC_CHECK_FUNCS_ONCE,
280         AC_CHECK_HEADERS_ONCE, AC_FUNC_STRTOLD, AC_HEADER_ASSERT,
281         AC_STRUCT_DIRENT_D_INO, AC_STRUCT_DIRENT_D_TYPE,
282         AC_TYPE_LONG_DOUBLE, AC_TYPE_LONG_DOUBLE_WIDER, AC_TYPE_INT8_T,
283         AC_TYPE_INT16_T, AC_TYPE_INT32_T, AC_TYPE_INT64_T,
284         AC_TYPE_INTMAX_T, AC_TYPE_INTPTR_T, AC_TYPE_LONG_LONG_INT,
285         AC_TYPE_UINT8_T, AC_TYPE_UINT16_T, AC_TYPE_UINT32_T,
286         AC_TYPE_UINT64_T, AC_TYPE_UINTMAX_T, AC_TYPE_UINTPTR_T,
287         AC_TYPE_UNSIGNED_LONG_LONG_INT, AC_USE_SYSTEM_EXTENSIONS.
288         The manual mentions Gnulib more prominently.
289         * doc/autoconf.texi (Gnulib): New node.
290         (Pointers): Add Gnulib URL.
291         (Particular Functions): Alphabetize.  Add AC_FUNC_STRTOLD.
292         (Generic Functions): Add AC_CHECK_FUNCS_ONCE.  Refer to new
293         Gnulib section.
294         (Particular Headers): Add AC_HEADER_ASSERT.  For stdbool.h,
295         suggest a #define rather than a typedef for _Bool, and mention
296         Gnulib rather than trying to substitute stdbool code.
297         (Generic Headers): Add AC_CHECK_HEADERS_ONCE.
298         (Generic Declarations): Add AC_CHECK_DECLS_ONCE.
299         (Particular Structures): Add AC_STRUCT_DIRENT_D_INO,
300         AC_STRUCT_DIRENT_D_TYPE.
301         (Particular Types): Mention stdint.h and inttypes.h as standard
302         headers too.
303         Add AC_TYPE_INT8_T, AC_TYPE_INT16_T, AC_TYPE_INT32_T, AC_TYPE_INT64_T,
304         AC_TYPE_INTMAX_T, AC_TYPE_INTPTR_T, AC_TYPE_LONG_DOUBLE,
305         AC_TYPE_LONG_DOUBLE_WIDER, AC_TYPE_LONG_LONG_INT, AC_TYPE_UINT8_T,
306         AC_TYPE_UINT16_T, AC_TYPE_UINT32_T, AC_TYPE_UINT64_T,
307         AC_TYPE_UINTMAX_T, AC_TYPE_UINTPTR_T, AC_TYPE_UNSIGNED_LONG_LONG_INT.
308         (C Compiler): Move AC_C_LONG_DOUBLE to ...
309         (Obsolete Macros): here.  Under AC_LONG_DOUBLE, mention
310         AC_TYPE_LONG_DOUBLE or AC_TYPE_LONG_DOUBLE_WIDER instead.
311         (Posix Variants): Add AC_USE_SYSTEM_EXTENSIONS.
312         (Coding Style).  Don't mention m4_expand_once.
313         * lib/autoconf/c.m4 (AC_C_LONG_DOUBLE): Implement via
314         AC_TYPE_LONG_DOUBLE_WIDER.  Now obsolete.
315         * lib/autoconf/functions.m4 (_AH_CHECK_FUNCS): New macro.
316         (AC_CHECK_FUNCS): Use it.
317         (AC_CHECK_FUNCS_ONCE, AC_FUNC_STRTOLD): New macros.
318         (AC_FUNC_WAIT3): "the Open Group standards" -> "POSIX".
319         * lib/autoconf/general.m4 (AC_CHECK_DECLS_ONCE): New macro.
320         * lib/autoconf/headers.m4 (AC_CHECK_HEADERS_ONCE): New macro.
321         (AC_HEADER_ASSERT): New macro.
322         (AC_HEADER_STDBOOL): Don't assume "#error" works.
323         Catch a bug in IBM AIX xlc compiler version 6.0.0.0.
324         Catch a bug in an HP-UX C compiler.
325         * lib/autoconf/specific.m4 (AC_USE_SYSTEM_EXTENSIONS): New macro.
326         * lib/autoconf/types.m4 (AC_TYPE_INTMAX_T. AC_TYPE_UINTMAX_T):
327         (AC_TYPE_INTPTR_T, AC_TYPE_UINTPTR_T. AC_TYPE_LONG_DOUBLE):
328         (AC_TYPE_LONG_DOUBLE_WIDER, AC_C_LONG_DOUBLE, AC_TYPE_LONG_LONG_INT):
329         (AC_TYPE_UNSIGNED_LONG_LONG_INT, _AC_TYPE_INT, _AC_TYPE_UNSIGNED_INT):
330         (_AC_STRUCT_DIRENT, AC_STRUCT_DIRENT_D_INO, AC_STRUCT_DIRENT_D_TYPE):
331         New macros.
333         * tests/mktests.sh (ac_exclude_list, au_exclude_list): Do not
334         use /^foo|bar$/, it does not mean /^(foo|bar)$/.
336 2006-04-08  Stepan Kasal  <kasal@ucw.cz>
338         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Fix the wording
339         of the warning introduced by the 2001-08-28 change.
341 2006-04-08  Stepan Kasal  <kasal@ucw.cz>,
342             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
344         * lib/autoconf/general.m4 (AC_CACHE_SAVE): All `ac_cv_env_foo'
345         variables shall be overriden by the cache.
346         * tests/torture.at (AC_ARG_VAR): Test also with a first value
347         that contains braces.
349 2006-04-07  Stepan Kasal  <kasal@ucw.cz>
351         Revert the patch from 2006-04-01 and only improve
352         _AS_DETECT_BETTER_SHELL:
354         * lib/m4sugar/m4sh.m4 (_AS_PATH_WALK): Do not optimize; do not
355         skip nonexistent directories.
356         (_AS_DETECT_BETTER_SHELL): The optimization is moved here--try
357         only shell candidates which exist.
358         (AS_UNAME): No need to give three parameters to _AS_PATH_WALK.
359         * lib/autotest/general.m4 (AT_INIT): No need to give three
360         parameters to _AS_PATH_WALK.
362 2006-04-07  Stepan Kasal  <kasal@ucw.cz>,
363             Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
365         * bin/autoupdate.in (handle_autoconf_patches): Change the way we
366         distinguish m4sugar macros.
367         * tests/tools.at (autoupdating with aclocal and m4_include):
368         New test.  Bug reported by Gary V. Vaughan <gary@gnu.org>,
369         test case by Noah Misch <noah@cs.caltech.edu>.
371 2006-04-07  Stepan Kasal  <kasal@ucw.cz>
373         Revert my change from 2006-03-17, in other words:
374         * lib/m4sugar/m4sh.m4 (AS_BOURNE_COMPATIBLE): Insert BIN_SH=xpg4
375           and DUALCASE=1.
376         (AS_SHELL_SANITIZE): Remove DUALCASE=1.
377         * doc/autoconf.texi (Special Shell Variables) <BIN_SH>: Say that
378           it is set.
380 2006-04-07  Eric Blake  <ebb9@byu.net>
382         * doc/autoconf.texi (Programming in M4sh): Document that
383         AS_MKDIR_P exits the script on failure.
384         * lib/autotest/general.m4: Remove redundant AS_ERROR.
386 2006-04-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
388         * config/elisp-comp, config/install-sh, config/mdate-sh,
389         config/missing, config/mkinstalldirs: Sync from Automake.
391         * lib/Autom4te/FileUtils.pm, lib/Autom4te/Struct.pm: Sync
392         from Automake.
394         * doc/make-stds.texi: Sync from gnulib.
396 2006-04-06  Eric Blake  <ebb9@byu.net>
398         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_O): Inside cache
399         check, s/ac_exeext/ac_cv_exeext/.  Fixes regression introduced
400         2006-04-01.
402 2006-04-06  Stepan Kasal  <kasal@ucw.cz>,
403             Eric Blake  <ebb9@byu.net>,
404             Paul Eggert  <eggert@cs.ucla.edu>,
405             Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
407         * lib/autoconf/general.m4 (_AC_CACHE_DUMP): Fix the detection of
408         whether `set' quotes correctly: redirect stderr of the tested
409         `set', and use a subshell, for Ultrix; use `sed' instead of
410         `grep' for zsh `set' which may write binary output; match only
411         at the beginning of a line, to avoid false positives.
412         In order to avoid false positives by unrelated variables with
413         multiline content, put the dump algorithm in a subshell and
414         unset all variables containing newlines (except some which are
415         special to the shell).  Warn about cache variables that are
416         unset.
418 2006-04-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
420         * config/config.guess, config/config.sub, config/texinfo.tex:
421         Sync from upstream.
423         * tests/mktests.sh: Reword comments.
425         * tests/mktests.sh: Only skip internal macros starting with
426         `_AC_' or `__AC_'.  Noted by Stepan Kasal.
427         Update exclusion lists for the test suite to this end:
428         (AC_ARG_VAR): Do test this now.
429         (AC_SEARCH_LIBS, AC_REPLACE_FUNCS): Need an argument.
430         (AC_LINKER_OPTION): Remove (renamed to _AC_LINKER_OPTION).
431         (AC_LIST_MEMBER_OF): Likewise (renamed to _AC_LIST_MEMBER_IF).
432         (AC_LINK_FILES): Obsoleted since (and thus AU_DEFUN'ed).
434         * doc/autoconf.texi (Shell Substitutions): Mention the MSYS
435         shell issue with double-quoted command substitutions of native
436         commands.
437         Reported to MSYS by Mark Cave-Ayland, to Autoconf by Keith
438         Marshall.
440         * Makefile.maint (sc_cast_of_argument_to_free): Do not fail when
441         no file matches the glob, discard the warning, set `nullglob'.
442         (syntax-check): Likewise.
443         (sc_cast_of_x_alloc_return_value): Likewise.
444         (sc_cast_of_alloca_return_value, sc_error_exit_success)
445         (sc_prohibit_jm_in_m4, .re-list, sc_unmarked_diagnostics)
446         (m4-check): Likewise.
447         (sc_system_h_headers): Do not print rule on execution.
448         (sc_tight_scope): Do not fail for non-existing `src' directory.
449         (sc_changelog): Skip the Copyright footer.
450         * lib/autoconf/lang.m4: Remove trailing space.
452         * lib/autoconf/status.m4: More replacements to
453         <tab><space> where this makes sense.
455 2006-04-06  Stepan Kasal  <kasal@ucw.cz>
457         * tests/Makefile.am (maintainer-check-posix):
458           s/POSIXLY_CORRECTLY/POSIXLY_CORRECT/
460         * lib/autoconf/status.m4 (_AC_CONFIG_FOOS): Append TAGS to
461           ac_config_<foo>s again, sometimes normalized, sometimes not.
462         (AC_CONFIG_FILES, AC_CONFIG_HEADERS, AC_CONFIG_LINKS):
463         (AC_CONFIG_COMMANDS): Do not do so here.
464         (_AC_CONFIG_REGISTER_DEST): Double quote the tags in macros _AC_LIST_TAGS
465           and_AC_LIST_TAG_COMMANDS; fixes another regression introduced by the
466           2005-07-25 rewrite.  Noticed by Noah Misch.
468         * lib/autoconf/general.m4 (AC_PRESERVE_HELP_ORDER): Do not define
469           _AC_PRESERVE_HELP_ORDER, ...
470         (AC_ARG_ENABLE, AC_ARG_WITH): ... use AC_PROVIDE_IFELSE insetad.
472         * lib/autoconf/general.m4 (AC_ARG_VAR): Do not use m4_divert_once
473           inside m4_expand_once; it is redundant.
475         * lib/autoconf/general.m4 (_AC_INIT_HELP): Remove the broken support
476           for --help from Cygnus `configure.'
478 2006-04-06  Paul Eggert  <eggert@cs.ucla.edu>
480         * doc/autoconf.texi (C Compiler): Warn about #error.  Follows up
481         on a patch proposed by Ralf Wildenhues.
483 2006-04-05  Paul Eggert  <eggert@cs.ucla.edu>
485         * lib/autoconf/status.m4: Replace <space>''<tab> with
486         <tab><space> where this makes sense.
488 2006-04-05  Howard Chu  <hyc@highlandsun.com>  (trivial change)
489             Noah Misch  <noah@cs.caltech.edu>
491         * lib/autoconf/general.m4 (AC_PRESERVE_HELP_ORDER): New macro.
492         (AC_ARG_ENABLE, AC_ARG_WITH): Adjust.
493         * doc/autoconf.texi (Help Formatting): New node.
494         * NEWS: Announce AC_PRESERVE_HELP_ORDER.
496 2006-04-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
498         * TODO, config/Makefile.am, lib/freeze.mk, lib/autoconf/c.m4,
499         lib/autoconf/specific.m4, lib/autoconf/status.m4,
500         lib/autoconf/types.m4, lib/autotest/general.m4,
501         tests/mktests.sh, tests/torture.at: White space cleanup:
502         remove some SPACE before TAB, or add quoting ('' or @&t@).
504         * NEWS, TODO, bin/autoreconf.in: `filesystem' -> `file system'.
506         * doc/autoconf.texi (Shell Substitutions): Document `^' vs. `|'.
508 2006-04-05  Eric Blake  <ebb9@byu.net>
510         * lib/autotest/general.m4 (AT_INIT): Prep AT_*_all, so that an
511         empty test suite works.
512         * tests/autotest.at (Empty test suite): Remove xfail.
514 2006-04-05  Noah Misch  <noah@cs.caltech.edu>
516         * lib/autoconf/status.m4 (_AC_CONFIG_FOOS): Do not append normalized
517         TAGS to ac_config_<foo>s.
518         (AC_CONFIG_FILES, AC_CONFIG_HEADERS, AC_CONFIG_LINKS): Do so here.
519         (AC_CONFIG_COMMANDS): Append NAME to ac_config_commands without
520         normalizing it, consistent it with previous releases.
521         * tests/torture.at (Macro calls in AC_CONFIG_COMMANDS tags): New test.
523 2006-04-05  Paul Eggert  <eggert@cs.ucla.edu>
525         * lib/m4sugar/m4sh.m4 (AS_BASENAME_EXPR, AS_DIRNAME_EXPR):
526         Use simplified args that Eric Blake originally suggested.
528 2006-04-04  Paul Eggert  <eggert@cs.ucla.edu>
530         * tests/mktests.sh: Don't use 'cat'; just read the files directly.
531         Prefer 'sort -u' to 'sort | uniq'.  Filter data before sorting it.
532         Use 'comm' rather than N instances of grep; this also fixes a bug
533         whereby substrings were incorrectly matched, causing us to not
534         generate tests for AC_F77_NAME_MANGLING and AC_FUNC_LSTAT.
535         (exclude_list): Exclude empty macros.
536         (ac_exclude_list): Exclude AC_INCLUDES_DEFAULT.
538         Use awk rather than grep -E or egrep, to avoid
539         portability problems with regular expressions containing newlines.
540         (exclude_list, ac_exclude_list, au_exclude_list, ac_exclude_script):
541         Switch from grep to awk syntax.
542         (ac_exclude_script): Renamed from ac_exclude_egrep.
543         (au_exclude_script): Renamed from au_exclude_egrep.
545 2006-04-04  Noah Misch  <noah@cs.caltech.edu>
547         * lib/autoconf/general.m4 (_AC_INIT_HELP): Only `configure.in' evidences
548         a subdirectory subject to Cygnus `configure'.
549         * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): Likewise.
551         * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_MONGREL): Omit the bug
552         report request when we have no AC_PACKAGE_BUGREPORT.
554 2006-04-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
556         * THANKS: Update.
558         * tests/mktests.sh: Update copyright year in the header of the
559         generated files.
561         * lib/autoconf/c.m4 (AC_C_INLINE): Do not skip cleanup code.
562         (AC_C_RESTRICT): Likewise.  Furthermore, add a function with a
563         typedef'ed restricted pointer, to catch a compiler bug on
564         HP-UX 11.x, and fix warnings so it passes with -Werror.
565         (_AC_PROG_CC_C99): Likewise.
566         Reported by Albert Chin <china@thewrittenword.com>.
567         * tests/mktests.sh: Do not skip AC_C_INLINE, AC_C_RESTRICT.
569 2006-04-03  Noah Misch  <noah@cs.caltech.edu>
571         * bin/autoscan.in (subdirs): New global.
572         (scan_file): Prune directories with configure{,.{ac,in,gnu}}.
573         (output): Emit AC_CONFIG_SUBDIRS as needed.
574         * tests/autoscan.at (autoscan): Remove XFAIL.
576 2006-04-03  Noah Misch  <noah@cs.caltech.edu>
578         * lib/autoconf/general.m4 (AC_CACHE_SAVE): Use AC_MSG_NOTICE.
580 2006-04-03  Eric Blake  <ebb9@byu.net>
582         * THANKS: Add myself.
584 2006-04-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
586         * lib/autotest/general.m4 (AT_INIT): Add `at_testdir' to pointer
587         to log, point to testsuite output tree.
589 2006-04-02  Paul Eggert  <eggert@cs.ucla.edu>
591         * NEWS: AC_PROG_CC and AC_PROG_CXX no longer declare 'exit'.
592         * doc/autoconf.texi (Function Portability): Mention that C++
593         has trouble with 'exit'.
594         (Guidelines): Test programs shouldn't use 'exit'.
595         * lib/autoconf/c.m4 (_AC_PROG_CXX_EXIT_DECLARATION):
596         Remove; all uses removed.
597         (AC_LANG_INT_SAVE(C), AC_C_BIGENDIAN):
598         Return from 'main' instead of calling 'exit'.
599         * lib/autoconf/functions.m4 (_AC_LIBOBJ_ALLOCA, AC_FUNC_CLOSEDIR_VOID):
600         (_AC_FUNC_FNMATCH_IF, AC_FUNC_GETGROUPS):
601         (AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK, _AC_FUNC_MALLOC_IF):
602         (AC_FUNC_MEMCMP, AC_FUNC_MKTIME, AC_FUNC_MMAP, _AC_FUNC_REALLOC_IF):
603         (AC_FUNC_SETPGRP, _AC_FUNC_STAT, AC_FUNC_STRTOD, AC_FUNC_STRERROR_R):
604         (AC_FUNC_STRNLEN, AC_FUNC_SETVBUF_REVERSED, AC_FUNC_UTIME_NULL):
605         (_AC_FUNC_FORK, _AC_FUNC_VFORK, AC_FUNC_WAIT3): Likewise.
606         * lib/autoconf/headers.m4 (AC_HEADER_STDC): Likewise.
607         * lib/autoconf/specific.m4 (AC_SYS_RESTARTABLE_SYSCALLS): Likewise.
608         * lib/autoconf/types.m4 (AC_TYPE_GETGROUPS): Likewise.
609         * tests/compile.at: Likewise.
611 2006-04-02  Pavel Roskin  <proski@gnu.org>
613         * doc/autoconf.texi (AC_PATH_X): Update per 2005-08-26 change.
615 2006-04-01  Stepan Kasal  <kasal@ucw.cz>
617         Clean up _AC_COMPILER_EXEEXT* macros.
619         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Don't try to
620           detect exeext, it will be done by _AC_COMPILER_EXEEXT_O; just set
621           ac_file to the name of the default output filei and call
622           _AC_COMPILER_EXEEXT_WORKS.  Move the definition of ac_files and the
623           initial `rm' of the candidate files...
624         (_AC_COMPILER_EXEEXT): ... here and simplify them.  Moreover, use
625           the same list in subsequent `rm' calls, and for the temporary
626           redefinition of ac_clean_files; call _AC_COMPILER_OBJEXT at the end,
627           and don't call the other _AC_COMPILER_EXEEXT_* macros directly, use...
628         (_AC_COMPILER_EXEEXT_TESTS): ... this new macro.
629         (_AC_COMPILER_EXEEXT_O): Don't export ac_cv_exeext, it's not needed (or
630           no longer needed) by libtool.  Make it a cache check.
631         (_AC_COMPILER_EXEEXT_CROSS): Remove the comment, it was obviously
632           copied here by mistake.
633         (AC_NO_EXECUTABLES): Redefine _AC_COMPILER_EXEEXT_TESTS, not
634           _AC_COMPILER_EXEEXT.
635         * lib/autoconf/c.m4 (AC_PROG_CC, AC_PROG_CXX, AC_PROG_OBJC): Do not call
636           _AC_COMPILER_OBJEXT directly.
637         * lib/autoconf/fortran.m4 (_AC_PROG_FC): Likewise.
639 2006-04-01  Stepan Kasal  <kasal@ucw.cz>
641         * lib/m4sugar/m4sh.m4 (_AS_DIRNAME_PREPARE): New macro.
642         (AS_DIRNAME): Use it.
643         (_AS_PREPARE): Add _AS_DIRNAME_PREPARE.
645         * tests/*.at: Remove the generated ones.
647 2006-04-01  Stepan Kasal  <kasal@ucw.cz>
649         * lib/autotest/general.m4 (AT_INIT): Don't optimize the first PATH walk.
651 2006-04-01  Eric Blake  <ebb9@byu.net>
653         * lib/m4sugar/m4sh.m4 (_AS_PATH_WALK): Optimize nonexistent
654         directories, unless optional third argument supplied.
655         (AS_UNAME): Don't optimize PATH walk.
657         * lib/Autom4te/Struct.pm, lib/autoconf/c.m4: s/non-existent/nonexistent/
659 2006-04-01  Eric Blake  <ebb9@byu.net>
660         and Stepan Kasal  <kasal@ucw.cz>
662         * lib/m4sugar/m4sh.m4: Sort sections as implied by the comments,
663         and fix some typos.
665 2006-04-01  Noah Misch  <noah@cs.caltech.edu>
667         * lib/autoconf/general.m4 (_AC_INIT_VERSION): Emit script name and
668         Autoconf version number despite a zero- or one-argument AC_INIT.
670         * bin/autoreconf.in (parse_args): Multiple -v send --verbose to
671         subordinate tools.
672         * lib/Autom4te/General.pm (getopt): Make -v and -d incremental.
673         * doc/autoconf.texi (autoreconf Invocation): Document it.
675         * doc/autoconf.texi: Use `Cygwin', `MinGW', and `license' consistently.
676         Append LocalWords so ispell-buffer passes cleanly.  Spelling fixes.
678 2006-04-01  Eric Blake  <ebb9@byu.net>
680         * lib/m4sugar/m4sh.m4 (AS_MKDIR_P): Allow use in shell lists.
681         * lib/autotest/general.m4: Be tolerant of existing directory when
682           rm failed to remove it.
684 2006-04-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
686         * bin/autoupdate.in: Redefine m4_location so that warnings print
687         the correct lines of the input file by subtracting..
688         (_au__first_line): ..this new definition.
690         * lib/autoconf/general.m4 (AC_COMPILE_CHECK): Prefer
691         AC_MSG_CHECKING over obsolete AC_CHECKING in autoupdated code.
692         Remove stray newline in output.
693         (AC_FOREACH): AU_DEFUN this as literal for autoupdate, and also
694         AC_DEFUN this for autoconf, including the obsoletion diagnose.
695         Fixes autoupdating of code where the replacement output contains
696         m4sugar macros.
697         * lib/autoconf/lang.m4 (AC_LANG_SAVE): Likewise.
698         * tests/mktests.sh (ac_exclude_list): Add AC_FOREACH.
699          (au_exclude_list): Add AC_LANG_SAVE.
700         * tests/tools.at: Several new tests for all of this.
701         * doc/autoconf.texi (Obsoleting Macros): Give a hint about the
702         hairy details.
703         The AC_LANG_SAVE issue was reported against Libtool by
704         Dalibor Topic <robilad@kaffe.org>, and against Autoconf 2.57 by
705         Kristian Kvilekval <kris@cs.ucsb.edu>.
707 2006-04-01  Stepan Kasal  <kasal@ucw.cz>
709         * bin/autoupdate.in: Handle m4 builtins and m4sugar macros together--
710           switch all of them on and of when necessary.  Fixes the bug when
711           m4sugar macros (e.g., m4_define) were expanded after the first
712           automatic update (e.g., after AC_PREREQ or AC_INIT).
714 2006-03-31  Paul Eggert  <eggert@cs.ucla.edu>
716         * doc/autoconf.texi (Programming in M4sh): Sharpen the descriptions
717         of AS_BASENAME and AS_DIRNAME.  Reported by Stepan Kasal.
719         * lib/m4sugar/m4sh.m4 (AS_BASENAME_EXPR): Handle ///, ////, etc.
720         correctly.  Problem reported by Eric Blake.
721         (_AS_EXPR_PREPARE): Detect Tru64 expr bug.  Problem reported by
722         Ralf Wildenhues.
724 2006-03-30  Paul Eggert  <eggert@cs.ucla.edu>
726         * doc/autoconf.texi (Programming in M4sh, Limitations of Usual Tools):
727         Tighten up the basename/dirname wording.
729 2006-03-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
731         * Makefile.maint (sc_texi_notab): New check: do not use TABs
732         in texinfo files outside of verbatim environments.
733         (syntax-check-rules): Update.
734         * doc/autoconf.texi (Configuration Headers): Conform to it.
736 2006-03-30  Chris Pickett <cpicke@cs.mcgill.ca>  (tiny change)
738         * doc/autoconf.texi (autoreconf Invocation): Mention that -I for
739           aclocal cannot be given on the command line.
741 2006-03-29  Paul Eggert  <eggert@cs.ucla.edu>
743         * doc/autoconf.texi (Programming in M4sh): Mention AS_BASENAME.
744         Give an example for AS_DIRNAME instead of referring to Posix..
745         (File System Conventions): Put discussion of // versus / here, and
746         modernize it a bit.
747         (Limitations of Usual Tools): Add basename.  Remove verbiage
748         after dirname, since it got moved to the above sections.
749         All this was inspired by a patch proposed earlier by Eric Blake.
751 2006-03-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
753         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Quote
754         `$0' to protect against spaces.
755         * lib/autotest/general.m4 (AT_INIT): Likewise.
756         * lib/m4sugar/m4sh.m4 (_AS_LINENO_PREPARE): Likewise, for
757         `$0', $as_me.
759 2006-03-26  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
761         * bin/autoscan.in: The value of find_configure_ac should be
762         checked for existence, so we don't barf over a nonexisting
763         configure.ac.  Reported by Laurence Darby <ldarby@tuffmail.com>.
765 2006-03-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
767         * bin/autoupdate.in: Fix some typos.
769 2006-03-21  Stepan Kasal  <kasal@ucw.cz>
771         * doc/autoconf.texi (Installation Directory Variables): Fix typo.
773         * lib/autoscan/autoscan.list: Refreshed.
775 2006-03-20  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
777         * tests/local.at (AT_CHECK_ENV): Ignore AC_SUBSTed Objective C
778         and Erlang related variables.
780         * lib/autoconf/c.m4 (AC_LANG(Objective C), AC_LANG_OBJC)
781         (_AC_LANG_ABBREV(Objective C), _AC_LANG_PREFIX(Objective C))
782         (AC_LANG_SOURCE(Objective C), AC_LANG_PROGRAM(Objective C))
783         (AC_LANG_CALL(Objective C), AC_LANG_FUNC_LINK_TRY(Objective C))
784         (AC_LANG_BOOL_COMPILE_TRY(Objective C))
785         (AC_LANG_INT_SAVE(Objective C), AC_LANG_PREPROC(Objective C))
786         (AC_PROG_OBJCPP, AC_LANG_COMPILER(Objective C), AC_PROG_OBJC)
787         (_AC_PROG_OBJC_G): New macros.
788         (_AC_ARG_VAR_CPPFLAGS): Adjusted.
789         * doc/autoconf.texi (Objective C Compiler): New node.
790         (Preset Output Variables): Document OBJCFLAGS.
791         (Language Choice): Document `Objective C' language.
792         (Fortran Compiler): Fix typo.
793         * NEWS: Updated.
794         Inspired by a patch from David M. Lloyd <dmlloyd@tds.net>.
796 2006-03-20  Stepan Kasal  <kasal@ucw.cz>
798         * doc/autoconf.texi (Default Includes): Fix typo
799           s/AC_HEADERS_STDC/AC_HEADER_STDC/
800         (Limitations of Usual Tools): s/unwriteable/unwritable/
801         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT, _AC_COMPILER_EXEEXT):
802           Fix typos in the comments.
804 2006-03-17  Stepan Kasal  <kasal@ucw.cz>
806         * lib/autoconf/programs.m4 (AC_PATH_TOOL, AC_CHECK_TOOL, AC_CHECK_TOOLS):
807           Factor out the warning to...
808         (_AC_TOOL_WARN): ... this new macro; use `cross_compiling'.
809         * tests/local.at (AT_CHECK_MACRO_CROSS): Avoid this warning.
810         * tests/semantics.at (AC_C_BIGENDIAN): Likewise.
812         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE): Do not special
813           case `ac_delim' when writing the sed script.
815         * lib/m4sugar/m4sh.m4 (AS_BOURNE_COMPATIBLE): Removed BIN_SH=xpg4,
816           moved DUALCASE=1 ...
817         (AS_SHELL_SANITIZE): ... here.
818         * doc/autoconf.texi (Special Shell Variables) <BIN_SH>: Do not say
819           that it is set.
821         * lib/autoconf/programs.m4 (AC_CHECK_PROG): Quote the parameter of
822           AC_SUBST.
823         (_AC_PATH_PROG): Store the result to VARIABLE.
824         (AC_PATH_PROG): No need to set VARIABLE again.
826         * tests/local.at (AT_CHECK_MACRO_CROSS): New macro, creates two tests:
827           the first one is usual AT_CHECK_MACRO test, the second one checks
828           that the same works when cross-compiling.
829         * tests/semantics.at (AC_CHECK_ALIGNOF, AC_CHECK_ALIGNOF struct):
830         (AC_CHECK_SIZEOF, AC_CHECK_SIZEOF struct): Use it.
832 2006-03-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
834         * lib/m4sugar/m4sh.m4 (_AS_DETECT_BETTER_SHELL): Prepend
835         the directory `/usr/bin/posix' in the shell search, to prefer
836         the Posix shell not only in subsequent spawns as with `$BIN_SH'
837         on Tru64.
839         * doc/autoconf.texi (contents): To fix texi2html output, hide
840         `@setcontentsaftertitlepage' for HTML.
841         (Writing Autoconf Macros): Likewise, insert space after `@c'.
842         (Leviticus, Numbers, Deuteronomy): Likewise, change `@,c' to
843         `@,{c}'.
845 2006-03-16  Stepan Kasal  <kasal@ucw.cz>
847         * lib/m4sugar/m4sh.m4 (_AS_PREPARE): Move the IFS setup and CDPATH
848           sanitizing...
849         (AS_SHELL_SANITIZE): ...here; mention _AS_PATH_WALK needs IFS set.
850         * lib/autoconf/general.m4 (_AC_CANONICAL_SPLIT): Add an explanation
851           why IFS is restored so late; thank you, Ralf, for reminding us.
853 2006-03-15  Stepan Kasal  <kasal@ucw.cz>
855         * doc/autoconf.texi (Pretty Help Strings): No need to use cached
856           variables in the examples.
858 2006-03-14  Romain Lenglet  <rlenglet@users.forge.objectweb.org>
860         * doc/autoconf.texi (several sections): Cleaned up documentation for
861         macros in erlang.m4.
863 2006-03-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
865         * tests/autotest.at (AT_NO_CMDSUBST): New macro to determine
866         failure condition for `$(cmd)' style command substitutions.
867         (Parenthetical command substition, Multiline parenthetical
868         command substition): Use it.
870         * doc/autoconf.texi (Special Shell Variables): Missing word.
871         Reported by Keith Marshall <keith.marshall@total.com>.
873         * lib/m4sugar/m4sh.m4 (_AS_PATH_WALK): Do not forget to reset
874         IFS even in case of empty `$PATH'.
876 2006-03-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
878         * lib/autotest/general.m4 (AT_INIT) <at_optarg>: Optimize
879         `expr' away if there is nothing to do.
880         < --keywords >: Simplify and robustify argument handling.
881         Revert erroneous comment from 2005-08-23.  Extend to allow
882         keyword negation with `!'.
883         Update help message.  Remove broken code to prevent running
884         tests multiple times.
885         * doc/autoconf.texi (testsuite Invocation) < --keywords >:
886         Update and fix the documentation accordingly.
887         * tests/autotest.at (Keywords): Renamed to..
888         (Keywords and ranges): .. this.  Extended to make sure negated
889         keywords, keywords taken from AT_SETUP arguments, and numeric
890         test ranges work, and that matching is case-insensitive.
892 2006-03-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
894         * lib/autoconf/types.m4 (_AC_CHECK_TYPE_NEW): Use a typedef to
895         allow to pass unnamed structs even in C++.
896         (AC_CHECK_SIZEOF):  Likewise.
897         Also fix quoting error in `AC_MSG_FAILURE' arguments.
898         * tests/semantics.at (AC_CHECK_ALIGNOF struct, AC_CHECK_SIZEOF
899         struct): New tests for unnamed structs, each both native and
900         cross-compiling.
902         * lib/autoconf/c.m4 (AC_C_TYPEOF): Use typedef to avoid defining
903         a structure inside a cast, for C++ conformance.
904         * lib/autoconf/types.m4 (AC_CHECK_ALIGNOF): Likewise.
905         Also fix quoting error in `AC_MSG_FAILURE' arguments.
907         * lib/autoconf/c.m4 (AC_PROG_CC_STDC): If we cannot enable C99
908         nor C89 mode, set `$ac_cv_prog_cc_stdc' to `no' instead of
909         trying to execute the command `no'.
911         * lib/autoconf/lang.m4 (AC_LANG_CONFTEST): AC_DEFUN this, not
912         m4_define, so that the requirements of `AC_INCLUDES_DEFAULT' are
913         expanded outside.
915         * doc/autoconf.texi (autoconf Invocation): Fix typos in trace
916         example.  Do not emphasize `$%', it is hardly new and special.
917         Reported by Edouard Bechetoille <ebecheto@ens-lyon.fr>.
919         * doc/autoconf.texi (Limitations of Usual Tools): Document
920         OpenBSD and traditional `grep' failure to handle multiple
921         patterns separated by newlines.
923 2006-03-10  Romain Lenglet  <rlenglet@users.forge.objectweb.org>
925         * doc/autoconf.texi (several sections): Add documentation for macros
926         in erlang.m4.
928 2006-03-10  Eric Blake  <ebb9@byu.net>
930         * doc/autoconf.texi (Obsolete Macros): Fix wording of
931         AC_TRY_LINK_FUNC.
933 2006-03-10  Paul Eggert  <eggert@cs.ucla.edu>
935         * doc/autoconf.texi: Use @acronym more consistently for acronyms
936         like BSD, GPL, LGPL.  Fix minor English typos.
937         (AC_STDC_HEADERS, AC_PROG_GCC_TRADITIONAL):
938         Mention that these macros are becoming obsolete.
939         (AC_STDC_HEADERS, AC_PROG_CC, AC_C_CONST, AC_C_VOLATILE):
940         Use more modern terminology for which standard is what.
941         (AC_PROG_CC): Mention gcc first, and remove obsolete references to egcs
942         and to ansi2knr.
943         (AC_PROG_CXX): Likewise.
944         (AC_C_PROTOTYPES, Test Functions, AC_LIBOBJ vs LIBOBJS):
945         Remove obsolete discussion about how to port to K&R.
946         (Guidelines for Test Programs): Suggest AC_HEADER_STDBOOL rather than
947         the obsolescent AC_HEADER_STDC.
948         (AC_FOO_IFELSE vs AC_TRY_FOO): Don't use #error; test programs
949         can't rely on it.
951 2006-03-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
953         * tests/c.at (AC_PROG_CPP without warnings, AC_PROG_CPP via CC):
954         Remove stdin redirection from /dev/null to allow pipe to work.
956 2006-03-08  Paul Eggert  <eggert@cs.ucla.edu>
958         * tests/c.at (AC_PROG_CPP without warnings, AC_PROG_CPP via CC):
959         Require that /lib/cpp include stdio.h correctly.  Solaris 10's
960         doesn't.  Problem reported by D'Arcy A MacIsaac and diagnosed by
961         Ralf Wildenhues.
963 2006-03-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
965         * lib/autoconf/status.m4 (_AC_SED_CMD_LIMIT): The limit for
966         HP-UX sed is 99 commands, not 100.
967         (_AC_OUTPUT_FILES_PREPARE): Do not count the `}' of an
968         _AC_SUBST_FILES fragment.  Separate `{' and `r' commands by
969         newline for portability.
970         * tests/torture.at (Torturing config.status): Also test 100
971         AC_SUBST_FILE invocations.  Fix test to actually verify the
972         AC_CONFIG_FILES output.
973         * doc/autoconf.texi (Limitations of Usual Tools): Document HP-UX
974         command, label, and read-file `r' limits.  Unify HP-UX spelling.
976         * tests/Makefile.am (edit, $(wrappers)): Do not use `$<' in
977         non-suffix rule.
978         ($(TESTSUITE_GENERATED_AT)): Use `$(srcdir)` for the benefit of
979         non-GNU make.
980         (autoconfdir, $(AUTOCONF_FILES)): Likewise.
981         * tests/mktests.sh: Small shell portability fixes.
983 2006-03-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
985         * doc/autoconf.texi (Caching Results): Fix the examples to use a
986         recommended quoting style and discard unwanted output.
988 2006-03-05  Paul Eggert  <eggert@cs.ucla.edu>
990         * lib/autotest/general.m4 (_AT_NORMALIZE_TEST_GROUP_NUMBER): New macro.
991         (AT_INIT): Use it, to remove arbitrary limit of 999,999 test
992         cases, and to work around Tru64 expr bug.
994 2006-03-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
996         * doc/autoconf.texi (Limitations of Usual Tools): Mention Tru64
997         expr bug that turns the result of a regex match into a number if
998         possible.
1000 2006-03-04  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1002         * lib/autoconf/types.m4 (AC_CHECK_ALIGNOF): Work around
1003         HPUX compiler bug, similarly to AC_CHECK_SIZEOF, as documented
1004         in section `Specific Compiler Characteristics'.
1006 2006-03-04  Eric Blake  <ebb9@byu.net>
1008         * lib/autoconf/functions.m4 (AC_FUNC_STRERROR_R): Avoid unused
1009         variable warning.
1011 2006-03-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1013         * lib/autoconf/status.m4 (_AC_OUTPUT_HEADER): Force correct
1014         order of variable initialization, so even the Solaris 2.6 shell
1015         can create a config header correctly.  Fixes lots of test suite
1016         failures.
1018 2006-02-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1020         * doc/autoconf.texi (Text processing Macros): New node to
1021         document the m4sugar macros m4_re_escape, m4_tolower,
1022         m4_toupper, m4_split, m4_normalize, m4_append, m4_append_uniq.
1024 2006-02-22  Paul Eggert  <eggert@cs.ucla.edu>
1026         * lib/autoconf/libs.m4 (_AC_PATH_X_DIRECT): Fix typo:
1027         XrmInitialize (0) -> XrmInitialize ().
1028         Reported by Toshio Kuratomi.
1030 2006-02-21  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1032         * lib/m4sugar/m4sh.m4 (AS_IF): Extend to allow more than one
1033         test, as in `if tests; then cmd1; elif ...; else ...; fi'.
1034         * doc/autoconf.texi (Programming in M4sh): Adjusted.
1035         * tests/m4sh.at (AS_IF and AS_CASE): Test this.  Also make sure
1036         both macros are defun'ed so that required macros are evaluated
1037         outside.
1039         * doc/autoconf.texi (Prerequisite Macros): State more precisely
1040         where a required macro will be expanded.
1041         (Coding Style): Another reason not to use `m4_define'.
1043 2006-02-21  Eric Blake  <ebb9@byu.net>
1045         * lib/autoconf/general.m4 (_AC_LIBOBJ): Minor optimization.
1047 2006-02-20  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1049         * doc/autoconf.texi (Looping constructs): New node, to
1050         document m4_for, m4_foreach, m4_foreach_w, and mention
1051         obsolete AC_FOREACH.
1052         (Obsolete Macros): Document AC_FOREACH.
1053         * lib/m4sugar/m4sugar.m4 (_m4_for): Fix declaration comment.
1054         (m4_for): Fix to never loop (almost) endlessly, work correctly
1055         with arithmetic expressions in arguments, a step of zero or
1056         non-integer multiple of the interval, and avoid integer
1057         overflow.
1058         * tests/m4sugar.at: New test for m4_for, m4_foreach, and
1059         m4_foreach_w.
1061 2006-02-20  Romain Lenglet  <rlenglet@users.forge.objectweb.org>
1063         Add basic support for Erlang, both for configuring Erlang/OTP
1064         tools, and Erlang as a conf test language.
1065         * lib/autoconf/erlang.m4: New file.
1066         * lib/autoconf/autoconf.m4: Add erlang.m4.
1067         * lib/autoconf/Makefile.am (dist_autoconflib_DATA): Likewise.
1068         * lib/freeze.mk (autoconf_m4f_dependencies): Likewise.
1069         * NEWS: Add short description of new macros.
1070         * THANKS: Add Romain Lenglet.
1072 2006-02-20  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1074         * doc/autoconf.texi (Shellology) <pdksh>: Document that pdksh as
1075         native /bin/sh may not set KSH_VERSION (seen on OpenBSD).
1077 2006-02-15  Eric Blake  <ebb9@byu.net>
1079         * lib/autoconf/general.m4 (AC_CHECK_DECL): Avoid unused variable
1080         warning.
1082 2006-02-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1084         * lib/m4sugar/m4sh.m4 (AS_CASE): New macro.
1085         (_AS_CASE): Private helper macro.
1086         * tests/m4sh.at: Basic tests for AS_IF and AS_CASE.
1087         * doc/autoconf.texi (Programming in M4sh): Document AS_CASE.
1088         Fix syntax of AS_IF description
1089         (Prerequisite Macros): Mention AS_IF and AS_CASE as workarounds
1090         for the AC_REQUIRE mess.
1091         * NEWS: Mention AS_CASE, AS_BOURNE_COMPATIBLE, and
1092         AS_SHELL_SANITIZE.
1094 2006-02-14  Paul Eggert  <eggert@cs.ucla.edu>
1096         * doc/autoconf.texi: Minor style cleanup.
1097         Be consistent about spaces after commas.
1098         Insert [] where empty args look a bit funny.
1099         Fix some "i.e." and "e.g." usages.
1100         Try to avoid "X/Y" usages.
1101         Don't be pedantic about "ISO C99"; just say C99.
1102         Prefer GNU style for spaces in front of parens.
1103         (Function Portability): Comment about C89 versus C99
1104         signed integer division.
1105         (Particular Headers): Use current gnulib style for dirent
1106         includes.
1108 2006-02-14  Stepan Kasal  <kasal@ucw.cz>
1109         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1111         * bin/autoupdate.in (handle_autoconf_macros): Fix updating of
1112         macros without parameters.
1113         * lib/autoconf/autoupdate.m4 (AU_ALIAS): Likewise.
1114         * doc/autoconf.texi (Obsoleting Macros): Document AU_ALIAS.
1115         * tests/tools.at (autoupdating AU_ALIAS): New test for AU_ALIAS
1116         `$#' bug.
1117         (autoupdate): Updated to match AU_ALIAS fix.
1119 2006-02-13 Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1120         and Paul Eggert  <eggert@cs.ucla.edu>
1122         * doc/autoconf.texi (Programming in M4sh): Document
1123         AS_BOURNE_COMPATIBLE and AS_SHELL_SANITIZE.
1125 2006-02-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1127         * lib/m4sugar/m4sh.m4 (_AS_BOURNE_COMPATIBLE): Renamed to..
1128         (AS_BOURNE_COMPATIBLE): ..this.
1129         (_AS_RUN, AS_SHELL_SANITIZE): Adjusted all callers.
1131 2006-02-12  Paul Eggert  <eggert@cs.ucla.edu>
1133         * doc/install.texi (Defining Variables): Tighten up the
1134         CONFIG_SHELL wording.
1136 2006-02-12 Paul Eggert  <eggert@cs.ucla.edu>
1137         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1139         * lib/m4sugar/m4sh.m4 (_AS_BOURNE_COMPATIBLE): Look at the output
1140         of (set -o) rather than testing whether (set -o posix) succeeds,
1141         to work around a bug in the AIX 5.3 shell.  Problem originally
1142         reportd by Howard Chu for libtool.
1144 2006-02-10  J.T. Conklin  <jtc@acorntoolworks.com>
1146         * doc/autoconf.texi (Running the Compiler, Running the Linker):
1147         Changes the macro arguments in summaries to match the
1148         descriptions.
1150 2006-02-04  Stepan Kasal  <kasal@ucw.cz>
1152         * doc/install.texi (Defining Variables): Classify the `CONFIG_SHELL'
1153         hint as ``a workaround for a bug.''
1155 2006-01-31  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1157         * bin/autoreconf.in: New option `--no-recursive'.
1158         Improve wording for subpackages a bit.
1159         * doc/autoconf.texi (autoreconf Invocation): Updated.
1160         * NEWS: Updated.
1162         * doc/install.texi (Defining Variables): Put `CONFIG_SHELL'
1163         in environment of `configure', not the command line.
1164         Reported by Howard Chu <hyc@highlandsun.com>.
1166 2006-01-25  Paul Eggert  <eggert@cs.ucla.edu>
1168         * doc/autoconf.texi (Limitations of Builtins): Document the
1169         problem with "trap -".
1171 2006-01-23  Steven G. Johnson  <stevenj@fftw.org>
1173         * lib/autoconf/fortran.m4 (_AC_FC_LIBRARY_LDFLAGS, _AC_FC_DUMMY_MAIN):
1174         (_AC_FC_MAIN, __AC_FC_NAME_MANGLING): Use _AC_LANG in check
1175         messages to differentiate Fortran and Fortran 77 tests.
1176         (AC_FC_SRCEXT, AC_FC_FREEFORM): Use AC_LANG_PUSH/POP instead of
1177         AC_LANG_ASSERT, to allow use in mixed-language projects.
1179 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
1181         * lib/autoconf/c.m4 (AC_LANG_FUNC_LINK_TRY(C)): Prefer "defined
1182         FOO" to "defined (FOO)".
1183         * lib/autoconf/functions.m4 (_AC_LIBOBJ_ALLOCA): Likewise.
1184         * lib/autoconf/headers.m4 (AC_HEADER_STAT): Likewise.
1185         * lib/autoconf/specific.m4 (AC_XENIX_DIR): Likewise.
1186         * tests/tools.at (ifnames): Likewise.
1188 2006-01-21  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1190         * lib/m4sugar/m4sh.m4 (AS_TMPDIR): Do not pass `-q' to mktemp.
1191         * lib/Autom4te/General.pm (mktmpdir): Likewise.
1192         (END): Improve error message a bit.
1193         Reported by Bruce Korb <bkorb@gnu.org>.
1195 2006-01-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1197         * lib/autoconf/fortran.m4 (_AC_FC_LIBRARY_LDFLAGS): Ignore
1198         `-LIST:' and `-LNO:', for PathScale 2.3 compilers.
1200 2006-01-11  Stepan Kasal  <kasal@ucw.cz>
1202         * doc/autoconf.texi (Header Portability): On Solaris 8, sys/ptem.h
1203         requires sys/stream.h.  Reported by Oliver Kiddle.
1205 2006-01-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1206             Stepan Kasal  <kasal@ucw.cz>
1208         * lib/autotest/general.m4 (AT_INIT): When ensuring writability
1209         before the removals of test dirs, use `find' to avoid modification
1210         of symlinked directories.
1212 2006-01-11  Steven G. Johnson  <stevenj@alum.mit.edu>
1214         * lib/autoconf/fortran.m4 (AC_F77_DUMMY_MAIN, AC_FC_DUMMY_MAIN):
1215         Don't ignore the macro arguments.
1217 2006-01-11  David Thompson  <dthompsn@vizsolutions.com>
1219         * lib/autoconf/c.m4 (_AC_PROG_CXX_EXIT_DECLARATION): Add `exit'
1220         declaration that works for MSVC.
1222 2006-01-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1224         * lib/autoconf/lang.m4 (_AC_COMPILER_OBJEXT_REJECT):
1225         Add `*.map' and `.inf' for Green Hills compiler.
1226         Reported by Stefan Seefeld <stefan@codesourcery.com>.
1228         * lib/m4sugar/m4sugar.m4 (m4_text_wrap): Handle quadrigraphs
1229         correctly: pad with spaces after FIRST_PREFIX if necessary,
1230         and compute string lenghts with `m4_qlen' instead of `m4_len'.
1231         * lib/m4sugar/m4sh.m4 (AS_HELP_STRING): Comments updated.
1232         * tests/m4sh.at (AS_HELP_STRING): Test extended.
1233         * NEWS: Updated.
1234         Reported by numerous people, numerous times.
1236 2006-01-05  Paul Eggert  <eggert@cs.ucla.edu>
1238         * bin/autoconf.as, bin/autoheader.in, bin/autom4te.in
1239         * bin/autoreconf.in, bin/autoscan.in, bin/autoupdate.in, bin/ifnames.in:
1240         * lib/autoconf/general.m4, lib/autoconf/status.m4:
1241         * lib/autotest/general.m4, tests/local.at:
1242         Update copyright year to 2006.
1244         * Makefile.maint (sc_root_tests): Use the recommended style s/a/b/ for
1245         sed substitutions.
1246         * doc/autoconf.texi (Installation Directory Variables): Use s|a|b|
1247         for file names, again.  Reported by Noah Misch.
1248         (Coding Style): Explain that s|a|b| is preferred for file names.
1249         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE): Prefer s/a/b/.
1250         (AC_OUTPUT_MAKE_DEFS): Likewise.
1251         * lib/autotest/general.m4 (AT_INIT): Likewise.
1252         * lib/m4sugar/m4sh.m4 (_AS_LINENO_PREPARE): Likewise.
1253         * tests/local.at (AT_CHECK_AUTOM4TE): Likewise.
1255         Fix Posix-conformance bugs re use of { command in sed scripts,
1256         and improve the sed-related documentation a bit.
1257         * doc/autoconf.texi (Installation Directory Variables): Use
1258         our own style advice re 's,a,b,' versus 's|a|b|'.  Use "Sed"
1259         rather than "sed" when talking about Sed in general.
1260         (Particular Programs): Likewise.
1261         (Coding Style): y is like s with respect to / and ,.
1262         (Limitations of Usual Tools): Document the weird restrictions
1263         that Posix has about { }.  Use better quoting.
1264         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE, _AC_OUTPUT_HEADER):
1265         Rewrite to conform to Posix rules about { } in sed scripts.
1266         * lib/m4sugar/m4sh.m4 (AS_DIRNAME_SED, AS_BASENAME_SED): Likewise.
1267         * tests/foreign.at (Libtool): Likewise.
1268         * tests/semantics.at (AC_CHECK_PROG & AC_CHECK_PROGS):
1269         Use our own style advice re 's,a,b,' versus 's|a|b|'.
1271 2006-01-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1273         * lib/autoconf/status.m4: Fix typo.
1275         * lib/autoconf/fortran.m4 (_AC_FC_LIBRARY_LDFLAGS): Ignore
1276         singly- or doubly-quoted arguments to `-cmdline', `-ignore',
1277         `-def', for the benefit of Portland `pgf90 -Mipa'.
1278         Reported by Christopher Hulbert <cchgroupmail@gmail.com>.
1280 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
1282         * doc/autoconf.texi: Update copyright (and other) dates to 2006.
1283         * doc/autoconf.texi (Shellology): Mac OS X 10.2 changed the default
1284         shell from zsh to bash.
1286 2005-12-31  Stepan Kasal  <kasal@ucw.cz>
1288         * lib/autoconf/programs.m4 (_AC_PROG_GREP): Use $PATH_SEPARATOR;
1289           ":" caused problems on OS/2-EMX.  Suggested by Andrew Belov.
1291 2005-12-29  Paul Eggert  <eggert@cs.ucla.edu>
1293         * doc/autoconf.texi (Shell Substitutions): Warn about unbalanced
1294         parentheses in $(...).  Problem reported by Eric Blake.
1296 2005-12-12  Paul Eggert  <eggert@cs.ucla.edu>
1298         * doc/autoconf.texi (Limitations of Usual Tools):
1299         Mention which characters can be escaped with \ in portable regular
1300         expressions used in grep, sed, expr.  Mention the leading ^ problem
1301         with expr.  Clean up some confusing wording.  Mention which
1302         grep options are portable.
1304 2005-12-09  Stepan Kasal  <kasal@ucw.cz>
1306         * tests/local.at (AT_CHECK_AUTOM4TE): Fix typo in the comment.
1308 2005-12-02  Paul Eggert  <eggert@cs.ucla.edu>
1310         * doc/autoconf.texi (Limitations of Builtins): Fix typos in previous
1311         patch, noted by Ralf Wildenhues.
1313 2005-12-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1315         * lib/m4sugar/m4sh.m4 (_AS_BOURNE_COMPATIBLE): Try `set -o
1316         posix' unconditionally, for pdksh in `native sh' emulation.
1318 2005-12-01  Paul Eggert  <eggert@cs.ucla.edu>
1320         * doc/autoconf.texi (Shellology): Document eval $? problem
1321         with ash.
1322         (Limitations of Builtins): Likewise.
1324 2005-11-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1326         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Pass
1327         CONFIG_SHELL in the environment of the configure rerun.
1328         * doc/autoconf.texi (Here-Documents, config.status Invocation):
1329         Suggest passing CONFIG_SHELL absolute, and in the environment
1330         rather than as option.
1332 2005-11-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1334         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE):
1335         Fix quoting of output line (triggered for many AC_SUBST_FILEs).
1336         Fix macro quoting.  Fix output for n * 98 substituted variables.
1338 2005-11-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1340         * lib/autoconf/status.m4 (_AC_OUTPUT_MAIN_LOOP): Initialize
1341         `tmp' to avoid file removal race.
1343 2005-11-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1345         * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS): Initialize
1346         ac_clean_files and LIBOBJS.
1348 2005-11-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1350         * lib/autoconf/programs.m4 (AC_CHECK_PROG, AC_PATH_PROG):
1351         Factor functionality to..
1352         (_AC_CHECK_PROG, _AC_PATH_PROG): these new macros, but only
1353         `AC_SUBST($1)' in the public version.
1354         (AC_CHECK_TOOL, AC_PATH_TOOL, AC_PATH_TARGET_TOOL)
1355         (AC_CHECK_TARGET_TOOL): Use internal versions for ac_ct_* and
1356         ac_pt_* variables.
1358 2005-11-01  Stepan Kasal  <kasal@ucw.cz>
1360         * lib/autoconf/c.m4 (AC_PROG_CC_C_O): Remove the comment about 8+3
1361         filesystems.
1363 2005-11-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1365         * NEWS: Move AH_HEADER mention to right place.
1367 2005-10-27  Stepan Kasal  <kasal@ucw.cz>
1369         * lib/autoconf/c.m4 (AC_PROG_CC_C_O): "conftst2" -> "conftest2"
1370         * lib/autoconf/fortran.m4 (_AC_PROG_FC_C_O): Likewise.
1372 2005-10-25  Stepan Kasal  <kasal@ucw.cz>
1374         * lib/autoconf/c.m4 (AC_PROG_CC_C_O): rm -f conftst2.*, not only
1375         conftst2.$ac_objext.
1376         * lib/autoconf/fortran.m4 (_AC_PROG_FC_C_O): Likewise.
1378 2005-10-24  Stepan Kasal  <kasal@ucw.cz>
1380         * lib/autoconf/c.m4 (AC_PROG_CC_C_O): Use conftst2.o instead of
1381         conftest.o, to see whether the compiler really obeys; rm the object
1382         file before and after the test and register it with ac_clean_files.
1383         * lib/autoconf/fortran.m4 (_AC_PROG_FC_C_O): Likewise.
1385 2005-10-21  Stepan Kasal  <kasal@ucw.cz>
1387         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE): When determining,
1388         the delimiter CEOF$ac_eof: fix quoting of CEOF[0-9]* and modify the
1389         code so that the most common case requires less forks.
1391 2005-10-20  Stepan Kasal  <kasal@ucw.cz>
1393         * doc/autoconf.texi (Shell Substitutions}: Document that ${10} is
1394         not portable; thanks to Paul Eggert and Alexandre.
1396         * NEWS: Fix an old typo.
1398 2005-10-20  Jim Meyering  <jim@meyering.net>
1400         * doc/autoconf.texi: Typo: s/feature/features/ in ``the features of
1401         the latter'', in two places.
1403 2005-10-19  Paul Eggert  <eggert@cs.ucla.edu>
1405         * doc/autoconf.texi (Generating Sources): AC_LANG_PROGRAMS ->
1406         AC_LANG_PROGRAM, fixing a typo.  Don't give details about
1407         the inner workings of AC_LANG_FUNC_LINK_TRY.
1408         * lib/autoconf/c.m4 (AC_LANG_CALL(C)): Reformat to match
1409         AC_LANG_FUNC_LINK_TRY.  This involves returning the value returned
1410         by the function rather than ignoring it.
1411         (AC_LANG_FUNC_LINK_TRY(C)): Call the function rather than simply
1412         comparing its address.  Intel's interprocedural optimization was
1413         outsmarting the old heuristic.  Problem reported by
1414         Mikulas Patocka.
1416 2005-10-19  Stepan Kasal  <kasal@ucw.cz>
1418         * lib/autoconf/general.m4 (AC_SUBST): Remove an obsolete comment.
1420 2005-10-05  Paul Eggert  <eggert@cs.ucla.edu>
1422         * lib/m4sugar/m4sugar.m4 (_m4_map): New macro.
1423         (m4_map, m4_map_sep): Use it.  Handle the empty list correctly.
1425 2005-10-04  Stepan Kasal  <kasal@ucw.cz>
1427         * lib/autotest/general.m4 (AT_INIT): Really make the subtree writable
1428         before removing it (chmod -R u+rwx); there are three instances of this.
1430 2005-10-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1431             Stepan Kasal  <kasal@ucw.cz>
1433         * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): Balance parentheses.
1434         * lib/autotest/general.m4 (AT_INIT): If the test dir already exists,
1435         make its content writable before removing it.  Remove an errorneous
1436         comment from the end, where the logs of the failed tests are copied
1437         to the main log file.
1439 2005-09-27  Stepan Kasal  <kasal@ucw.cz>
1441         * tests/semantics.at (AC_C_BIGENDIAN): Pass --force to autoheader,
1442           in case the computer is too quick.  Double quote the configure.ac
1443           snippets.
1445         * tests/local.at (AT_CHECK_AUTOCONF): Always pass --force to prevent
1446           problems if the testsuite were running too fast.
1448 2005-09-18  Paul Eggert  <eggert@cs.ucla.edu>
1450         * lib/autoconf/libs.m4 (_AC_PATH_X_DIRECT): Look for X11/Xlib.h
1451         and XrmInitialize rather than X11/Intrinsic.h and XtMalloc
1452         (which belong to Xt, not X itself).  See Debian bug 327655.
1453         * NEWS: Mention this.
1455 2005-09-07  Stepan Kasal  <kasal@ucw.cz>
1457         * lib/autoconf/c.m4 (AC_LANG_SOURCE(C)): Remove an incorrect comment.
1459 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
1461         * config/move-if-change: Don't output "$2 is unchanged";
1462         suggested by Ben Elliston.  Handle weird characters correctly.
1464 2005-09-06  Stepan Kasal  <kasal@ucw.cz>
1466         * lib/autoconf/libs.m4 (AC_SEARCH_LIBS): Merge the two AC_LINK_IFELSE
1467           calls, so that the final expansion of this macro is shorter.
1468           Create the conftest.$ac_ext outside the `for' loop, to speed the run.
1469           Do not use `break' in the argument to AC_LINK_IFELSE, it would skip
1470           the cleanup there.  Use AS_VAR_* macros, to be more general.
1471         * tests/semantics.at (AC_SEARCH_LIBS): Check for the cleanup.
1473         * lib/autoconf/general.m4: Use AS_IF where appropriate.
1475         * lib/m4sugar/m4sh.m4 (AS_IF): Use m4_default.
1477 2005-09-01  Stepan Kasal  <kasal@ucw.cz>
1479         * doc/autoconf.texi (Configuration Headers): Add an index entry
1480           for AH_HEADER.
1482 2005-08-26  Pavel Roskin  <proski@gnu.org>
1484         * lib/autoconf/libs.m4 (_AC_PATH_X_XMKMF): Use shell variable
1485         XMKMF to locate xmkmf.  Make XMKMF precious.  Export CC when
1486         running xmkmf.
1488 2005-08-26  Paul Eggert  <eggert@cs.ucla.edu>
1490         * lib/m4sugar/m4sh.m4 (_AS_VERSION_COMPARE_PREPARE):
1491         The previous patch didn't work, so try a better one.
1493 2005-08-26  Stepan Kasal  <kasal@ucw.cz>
1495         * doc/autoconf.texi (Programming in M4sh) <AS_TR_CPP>: Fix m4 quoting
1496         in the example.  Reported by Bruno Haible.
1497         <AS_TR_SH>: Likewise.  Also modify the example to be more convincing:
1498         "if $undefined_var;" succeeds with my shell.
1500         * lib/autoconf/general.m4 (AC_CANONICAL_BUILD, AC_CANONICAL_HOST,
1501         AC_CANONICAL_TARGET): Define by AC_DEFUN, no need to use AC_DEFUN_ONCE;
1502         but change the m4_divert_text to m4_divert_once.
1504 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
1506         * lib/m4sugar/m4sh.m4 (_AS_VERSION_COMPARE_PREPARE):
1507         Work around bug in Solaris /usr/xpg4/bin/awk.
1508         The bug is present in at least Solaris 8 through 10.
1510 2005-08-24  Stepan Kasal  <kasal@ucw.cz>
1512         * lib/autoconf/general.m4 (_AC_CANONICAL_SPLIT): Simplify; rejecting
1513         some evil values and relying on the fact that $* concatenates the
1514         parameters by the first character from IFS.
1516 2005-08-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>,
1517             Stepan Kasal  <kasal@ucw.cz>
1519         * lib/autoconf/status.m4 (_AC_CONFIG_REGISTER_DEST): When the
1520         first header appears, define AH_HEADER.
1521         * doc/autoconf.texi (Configuration Headers): Document AH_HEADER.
1522         Update limitations about when to call AC_CONFIG_HEADERS.
1523         (Configuration Commands): Document that AC_CONFIG_COMMANDS_PRE
1524         parameter can call AC_SUBST, AC_DEFINE, or AC_CONFIG_FOOS; explain
1525         that AC_CONFIG_COMMANDS_PRE and AC_CONFIG_COMMANDS_POST are not
1526         ``Configuration Actions''; fix their index entries.
1528         * lib/autotest/general.m4 (AT_INIT): Process multiple keywords
1529         options correctly.  Process N-M as M-N if M is smaller than N.
1530         Process ranges correctly so that N-N will run only N.
1531         Sort and uniquify the tests that will be run.  If there is more
1532         than one test, reinsert the banners for the tests.
1533         * tests/autotest.at (Keywords): Unmark XFAIL.
1535 2005-08-23  Stepan Kasal  <kasal@ucw.cz>
1537         * lib/autoconf/general.m4 (_AC_DEFINE_Q): Strip the parameter list
1538           before passing the macro name to AH_TEMPLATE.
1540         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): config.status
1541           now opens log after option processing; in particular, --version
1542           and --help do not touch config.log.
1544         * Makefile.maint: Revert the change from 2005-08-12.
1546 2005-08-22  Stepan Kasal  <kasal@ucw.cz>
1548         * lib/autoconf/general.m4 (AC_ARG_ENABLE, AC_ARG_WITH): Factor out
1549           common code to...
1550         (_AC_ENABLE_IF, _AC_ENABLE_IF_ACTION): ... these new macros.
1552 2005-08-21  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1554         * doc/autoconf.texi (Using Autotest, testsuite Scripts)
1555         (Autotest Logs, Writing testsuite.at, testsuite Invocation):
1556         Language cleanup.
1558         * doc/autoconf.texi (Defining Symbols, Changed Results):
1559         Prepend to LIBS, not append, in examples.
1561 2005-08-16  Stepan Kasal  <kasal@ucw.cz>
1563         When building in place, set srcdir="."; suggested by Tim Van Holder.
1565         * lib/autoconf/general.m4 (_AC_INIT_SRCDIR): Do this; to recognize
1566           build in place, we need ac_pwd, and thus have to AC_REQUIRE ...
1567         (_AC_INIT_DIRCHECK): ... this macro and AC_DEFUN both of them.
1568         * lib/autoconf/status.m4 (_AC_SRCDIRS): Fix a comment: srcdir="."
1569           does not mean "no --srcdir option".
1571 2005-08-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1573         * tests/autoscan.at (autoscan): New file.
1574         * tests/suite.at: Use it.
1575         * tests/Makefile.am (TESTSUITE_HAND_AT): Add it.
1576         Reported against Libtool by Gideon Go <gideon.go@gmail.com>.
1578         * tests/autotest.at (Keywords): Test keywords combinations.
1580 2005-08-12  Stepan Kasal  <kasal@ucw.cz>
1582         * Makefile.maint (GZIP_ENV): When checking the help text of gzip,
1583           add "2>&1"; gzip 1.2.4 prints help on stderr.
1585 2005-07-27  Stepan Kasal  <kasal@ucw.cz>
1587         * lib/autotest/general.m4 (_AT_DECIDE_TRACEABLE): The symbol at_reason
1588         was pushdef'ed twice while popped only once.  Push it only once.
1589         (_AT_CHECK): Cosmetic changes to the "case $at_status" command.
1591 2005-07-26  Stepan Kasal  <kasal@ucw.cz>
1593         * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): The message is now
1594         prefixed by mere "===", not "configure: === ".
1596 2005-07-25  Paul Eggert  <eggert@cs.ucla.edu>
1598         * Makefile.maint: Update from Bison.
1600         * lib/m4sugar/m4sugar.m4 (m4_strip): Comment fix---change tab to
1601         "<tab>" in comment, so that the point is understandable.
1603 2005-07-25  Stepan Kasal  <kasal@ucw.cz>
1605         Rewrite substantial part of lib/autoconf/status.m4.
1606         The main change is that CONFIG_FILES, CONFIG_HEADERS, CONFIG_LINKS,
1607         and CONFIG_COMMANDS are not processed in four separate loops.
1608         Instead, there is one main loop.  This alows that the common code
1609         is expanded only once, thus config.status (and configure) is smaller.
1611         The registration mechnism in AC_CONFIG_FILES and cousins also changed;
1612         the AC_LIST_FILES and cousins macros are no longer used.
1614         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES, _AC_OUTPUT_HEADERS,
1615         _AC_OUTPUT_LINKS, _AC_OUTPUT_COMMANDS): Renamed to ...
1616         (_AC_OUTPUT_FILE, _AC_OUTPUT_HEADER, _AC_OUTPUT_LINK,
1617         _AC_OUTPUT_COMMAND): ..., respectively.  These macros no longer
1618         contain the initialization, nor the for loop, nor the associated
1619         commands; all these go to ...
1620         (_AC_OUTPUT_MAIN_LOOP): ... this new macro, called from
1621         _AC_OUTPUT_CONFIG_STATUS.
1622         (_AC_CONFIG_SPLIT, _AC_CONFIG_SPLIT_SOURCE_DEST, _AC_CONFIG_SPLIT_FILE_IN):
1623         Nuked; the code was merged into _AC_OUTPUT_MAIN_LOOP.
1624         (_AC_OUTPUT_FILE): The creation of the sed script ...
1625         (AC_OUTPUT): ... and the setup of ac_vpsub goes to ...
1626         (_AC_OUTPUT_FILES_PREPARE): ... a new macro, also called from
1627         _AC_OUTPUT_MAIN_LOOP.
1628         (_AC_CONFIG_FILES, _AC_CONFIG_HEADERS, _AC_CONFIG_LINKS,
1629         _AC_CONFIG_COMMANDS): Use ...
1630         (_AC_CONFIG_FOOS): ... this new macro, which uses these ...
1631         (_AC_CONFIG_REGISTER, _AC_CONFIG_REGISTER_DEST): ... new macros.
1632         (_AC_CONFIG_FILE, _AC_CONFIG_HEADER, _AC_CONFIG_LINK,
1633         _AC_CONFIG_COMMAND, _AC_CONFIG_DEPENDENCIES): No longer needed.
1634         (_AC_CONFIG_DEPENDENCY): Update, it uses these ...
1635         (_AC_CONFIG_DEPENDENCY_DEFAULT, _AC_FILE_DEPENDENCY_TRACE_COLON):
1636         ... new macros.
1637         (_AC_CONFIG_UNIQUE): Update.
1638         (AC_LIST_FILES, AC_LIST_HEADERS, AC_LIST_LINKS, AC_LIST_COMMANDS):
1639         Replaced by this ...
1640         (_AC_LIST_TAGS): ... new common macro.
1641         (AC_LIST_FILE_COMMANDS, AC_LIST_HEADER_COMMANDS, AC_LIST_LINK_COMMANDS,
1642         AC_LIST_COMMAND_COMMANDS): Replaced by this ...
1643         (_AC_LIST_TAG_COMMANDS): ... new common macro.
1644         (_AC_CONFIG_COMMANDS_INIT): Moved top to the `registration' section;
1645         this didn't belong to the `config commands' section.
1646         (_AC_OUTPUT_COMMANDS_INIT): Don't initialize, m4_ifdef is our friend.
1647         (AC_CONFIG_COMMANDS_PRE, AC_OUTPUT_COMMANDS_PRE,
1648         AC_CONFIG_COMMANDS_POST): Moved to a new section, these didn't belong
1649         to the `config commands' section either.
1650         (AC_CONFIG_SUBDIRS): Don't touch diversion DEFAULTS.
1651         (_AC_LIST_SUBDIRS): Don't initialize, m4_ifdef is our friend.
1653         ... and many changes to the comments nearby.
1655         * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS): At the end of the day,
1656         set ac_subdirs_all='_AC_LIST_SUBDIRS'.
1657         * tests/torture.at (AC_CONFIG_FILES, HEADERS, LINKS and COMMANDS):
1658         AC_CONFIG_COMMANDS(command:input,...) is no longer allowed.
1659         (#define header templates): The comment at the top of the generated
1660         header now includes the name(s) of the source file(s).
1662         Several unrelated small changes:
1664         * lib/autoconf/general.m4 (AC_CACHE_VAL): Be didactic, quote the first
1665         parameter to AC_DIAGNOSE.
1666         * lib/autoconf/status.m4 (AC_CONFIG_SUBDIRS): Likewise.
1667         (_AC_LINK_FILES_CNT): Don't AU_DEFUN this; it causes confusing messages
1668         with autoupdate; use m4_define_default inside AU_DEFUNed AC_LINK_FILES.
1669         (AC_OUTPUT): In the compatibility code, use m4_ifvaln, to be consistent
1670         with AU::AC_OUTPUT.
1671         (AU::AC_OUTPUT): Don't double-quote $2 and $3, the compatibility code
1672         in AC_OUTPUT doesn't double-quote it either.
1673         * tests/tools.at (autoupdate): AU::AC_OUTPUT no longer double-quotes the
1674         parameters.
1676 2005-07-10  Stepan Kasal  <kasal@ucw.cz>
1678         * lib/autoconf/fortran.m4 (_AC_PROG_FC_V_OUTPUT): Document which
1679         versions of Portland Group compiler produce single- and double-quoted
1680         -cmdline argument.  Reported by Steven G. Johnson <stevenj@fftw.org>
1681         and Ole Holm Nielsen <Ole.H.Nielsen@fysik.dtu.dk>.
1683 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
1685         * tests/local.at (AT_CONFIG_CMP): Ignore lines like "LIBS=''" too.
1686         This is a corrected version of yesterday's patch.
1688 2005-07-07  Stepan Kasal  <kasal@ucw.cz>
1690         * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): Report the full
1691         path, too; insert a "===" to emphasize the line.
1693         * lib/autoconf/general.m4 (AC_CANONICAL_BUILD): Rename
1694           ac_cv_build_alias to ac_build_alias.
1695         (AC_CANONICAL_HOST, AC_CANONICAL_TARGET): Simplify.
1697         On 2005-02-24, an unintentional AC_SUBST([CC]) was introduced; this
1698         change eliminates it.  Problem reported by Alexandre Duret-Lutz.
1699         * lib/autoconf/general.m4 (_AC_ARG_VAR_PRECIOUS): Move the AC_SUBST ...
1700         (AC_ARG_VAR): ... here.
1701         (_AC_INIT_PREPARE): Call AC_SUBST for build_alias, host_alias and
1702           target_alias.
1704         Keep a list of all precious variables and process them with one simple
1705         for loop, instead of expanding all commands, or, OTOH, complicated
1706         processing of output of "set".
1707         * lib/autoconf/general.m4 (_AC_ARG_VAR_PRECIOUS): Acumulate the
1708         variable names in new macro...
1709         (_AC_PRECIOUS_VARS): ... which will be assigned to ac_precious_vars.
1710         (_AC_ARG_VAR_STORE): New macro which writes to diversion PARSE_ARGS
1711           a loop to assign all ac_env_* and ac_cv_env_* variables.
1712         (_AC_ARG_VAR_VALIDATE): Use shell variable ac_precious_vars, divert
1713           to INIT_PREPARE.
1714         (_AC_INIT_DEFAULTS): At the end, if _AC_PRECIOUS_VARS is set, assign
1715           its value to shell variable ac_precious_vars and call
1716           _AC_ARG_VAR_STORE and _AC_ARG_VAR_VALIDATE.
1717         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Don't call
1718           _AC_ARG_VAR_VALIDATE.
1720         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Move AC_LANG_PUSH(C)
1721           and the AC_SUBSTs ...
1722         (AC_INIT): ... here.
1724         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Changed the title of
1725           the ac_subst_files section in config.log.
1727         * tests/local.at (AT_CONFIG_CMP): Revert Paul's previous change.
1729 2005-07-06  Paul Eggert  <eggert@cs.ucla.edu>
1731         * NEWS: New macro AC_C_TYPEOF.
1732         * doc/autoconf.texi (C Compiler): Document AC_C_TYPEOF.
1733         * lib/autoconf/c.m4 (AC_C_TYPEOF): New macro.
1734         * tests/c.at (C keywords): Test AC_C_TYPEOF.
1736         Fix problems reported by Nicolas Joly.
1737         * tests/base.at (Input/Output): Ignore 'loading site script' chatter.
1738         * tests/local.at (AT_CONFIG_CMP): Ignore lines like "LIBS=''" too.
1739         They are generated by the Tru64 v5.1B shell.
1741 2005-07-05  Stepan Kasal  <kasal@ucw.cz>
1743         Fix my changes from 2005-07-01; reported by Noah Misch.
1744         * lib/autoconf/status.m4 (_AC_CONFIG_DEPENDENCIES): Fix the
1745         description, the macro now accepts only a single tag.
1746         (_AC_CONFIG_UNIQUE): Likewise; s/AC_File/[$1]/
1748         Fix cases when the varsions of Autoconf and Autotest don't match.
1749         Reported by Noah Misch.
1750         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): Set also
1751         at_top_builddir, for compatibility with older autotest.
1752         * lib/autotest/general.m4 (AT_INIT): If at_top_build_prefix
1753         is not set, use at_top_builddir, for compatibility with older
1754         versions of autoconf.
1756 2005-07-04  Paul Eggert  <eggert@cs.ucla.edu>
1758         * bin/autom4te.in ($m4): Catch usages like --nesting-limit=2048.
1759         Problem reported by Patrick Welche.
1761 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
1763         * lib/autoconf/general.m4 (AC_ARG_PROGRAM): Use &, not |, in
1764         sed substitution command, so that we allow | in program prefixes
1765         and program suffixes.  (& is a problem anyway; we're not fixing
1766         that here.)
1767         * lib/autoconf/status.m4 (AC_CONFIG_FILES): Likewise, for
1768         configure_input, top_builddir, srcdir, etc.
1769         * lib/autotest/general.m4 (AT_INIT): Likewise, for
1770         PATH_SEPARATOR in AUTOTEST_PATH.
1772 2005-07-02  Alexandre Duret-Lutz  <adl@gnu.org>
1774         * lib/autoconf/general.m4 (AC_SITE_LOAD): Rewrite the
1775         for loop over config.site files using `set', to allow
1776         directory names containing IFS characters.
1778 2005-07-01  Paul Eggert  <eggert@cs.ucla.edu>
1780         * lib/autoconf/general.m4 (_AC_INIT_DIRCHECK): Remove the tests for
1781         directories with weird names.  Apparently some people like living
1782         on the edge.  However, improve the test that "pwd" actually does
1783         report a name for the working directory.
1784         * NEWS: Remove the claim that we test for funny chars in dir names.
1786 2005-07-01  Stepan Kasal  <kasal@ucw.cz>
1788         * lib/autoconf/general.m4 (AC_FOREACH): Make obsolete; it's
1789         replaced ...
1790         * lib/m4sugar/m4sugar.m4 (m4_foreach_w): ... by this new macro.
1791         * lib/autoconf/status.m4 (_AC_CONFIG_DEPENDENCIES, _AC_CONFIG_UNIQUE):
1792         Now accept a single tag, not whitespace separated list.
1793         (AC_CONFIG_SUBDIRS): Call _AC_CONFIG_UNIQUE in a m4_foreach_w loop.
1795 2005-06-30  Stepan Kasal  <kasal@ucw.cz>
1797         * doc/autoconf.texi (Configuration Headers): Change the explanation
1798         about #include <config.h>.
1799         (Generic Functions): Mention the Gnulib project.
1800         (Limitations of Usual Tools) <sed>: Another minor rephrasing.
1802         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Use a here
1803         document to output the default config_* lists to config.status.
1804         Don't recognize option --file, if the functionality is not there.
1805         Likewise for --header; moreover, recognize --he and --h as shortcuts
1806         for --help in that case.
1808         * lib/autoconf/status.m4: Fix the order of the "sections", so that it
1809         matches the order of execution.  No code changed.
1811 2005-06-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1813         * lib/autoconf/fortran.m4 (_AC_PROG_FC_V_OUTPUT): Fix also for
1814         single-quoted -cmdline argument in Portland Group compiler.
1815         Reported against LAM by Ole Holm Nielsen <Ole.H.Nielsen@fysik.dtu.dk>.
1817 2005-06-30  Alexandre Duret-Lutz  <adl@gnu.org>
1819         * lib/autom4te.in (Automake-preselections): Preselect AC_SUBST_TRACE.
1821 2005-06-29  Stepan Kasal  <kasal@ucw.cz>
1823         * doc/autoconf.texi (File Descriptors): ksh doesn't pass open file
1824         descriptors to child processes; reported by Norman Gray.
1826 2005-06-29  Stepan Kasal  <kasal@ucw.cz>
1828         * lib/autoconf/general.m4 (AC_ARG_VAR): Move next to _AC_ARG_PRECIOUS.
1830         * lib/autoconf/general.m4 (AC_SUBST_TRACE): New macro, to be traced
1831         instead of AC_SUBST; proposed by Alexandre Duret-Lutz.
1832         (AC_SUBST): Call it.
1833         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES): Call AC_SUBST_TRACE for
1834         the directory specific variables; but don't call it for configure_input.
1836 2005-06-28  Derek Price  <derek@ximbiot.com>
1838         * doc/autoconf.texi (Limitations of Usual Tools) <sed>: Reword recent
1839         addition.
1841 2005-06-23  Paul Eggert  <eggert@cs.ucla.edu>
1843         * NEWS: Don't worry about spaces in bindir etc.  Only srcdir and working
1844         directory have inherent problems with special characters like spaces,
1845         due to limitations in Make syntax.  Problem reported by Alexandre
1846         Duret-Lutz.
1847         * lib/autoconf/general.m4 (_AC_INIT_DIRCHECK): Implement the above.
1848         Also, fix Tru64 porting problem with shell patterns,
1849         reported by Ralf Wildenhues.
1851 2005-06-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1853         * doc/autoconf.texi (Subdirectories): Fix markup typos.
1855 2005-06-23  Paul Eggert  <eggert@cs.ucla.edu>
1857         * tests/local.at (AT_CHECK_ENV): Simplify regexp slightly.
1859         Fix some more shell quoting problems.  Prompted by a bug report
1860         from Justace Clutter.
1861         * lib/autoconf/general.m4 (_AC_INIT_DIRCHECK): Put name of invalid
1862         variable into diagnostic.  Make the diagnostic an error, not a warning,
1863         because we really don't support spaces and suchlike in dir names.
1864         (_AC_INIT_SRCDIR): Allow special characters in $ac_unique_file.
1865         Don't worry about backslashes in srcdir; it can't happen now.
1866         (_AC_INIT_PARSE_ARGS): Allow weird characters in ac_optarg.
1867         Simplify ac_optarg handling.
1868         (_AC_ARG_VAR_VALIDATE): Remove unnecessary and inconsistent quotes.
1870 2005-06-22  Stepan Kasal  <kasal@ucw.cz>
1872         Fix AT_CONFIG_CMP for Solaris hosts; idea from Ralf Menzel.
1873         * configure.ac: Call AC_PROG_EGREP and AC_PROG_SED.
1874         * tests/atlocal.in: Propagate $EGREP and $SED.
1875         * tests/local.at (AT_CHECK_ENV): Use $EGREP, not $GREP -E.
1876         (AT_CONFIG_CMP): Use sed instead of grep plumbing.
1878         * doc/autoconf.texi (Limitations of Usual Tools) <grep>: Mention
1879         that '\|' is not allowed in BREs; recommend using newline separated
1880         list of patterns instead of multiple -e options.
1882         * lib/autoconf/fortran.m4 (_AC_PROG_FC_V_OUTPUT): Remove an old comment.
1884         * lib/autoconf/general.m4 (_AC_CANONICAL_SPLIT): Use AC_SUBST/2.
1886 2005-06-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1888         * lib/autoconf/general.m4 (_AC_CANONICAL_SPLIT): Fix typo.
1890 2005-06-21  Stepan Kasal  <kasal@ucw.cz>
1892         * doc/autoconf.texi (Limitations of Usual Tools) <sed>: Document that
1893         b, t, r, w commands require single space, while : cannot have any.
1894         (Special Shell Variables): Fix sed code this in the example.
1895         * lib/autoconf/status.m4 (_AC_OUTPUT_HEADERS): Likewise; and fix a typo.
1896         * lib/autotest/general.m4 (AT_ARG_OPTION): Fix typo in the description.
1898         * lib/m4sugar/m4sugar.m4 (m4_split): If the parameter is empty,
1899         expand to the empty list.  Don't use two pairs of m4_changequote,
1900         it's not necessary.
1902 2005-06-20  Derek Price  <derek@ximbiot.com>
1904         * lib/m4/programs.m4 (AC_PROG_YACC): Declare YACC & YFLAGS precious.
1906 2005-06-17  Paul Eggert  <eggert@cs.ucla.edu>
1908         * lib/m4sugar/m4sh.m4 (as_awk_strverscmp): Port to Solaris /bin/awk.
1909         * doc/autoconf.texi:
1910         Don't mention Solaris versions so much, if a
1911         problem is common to all extant versions of Solaris.  Say "SunOS
1912         4" instead of "SunOS" for SunOS 4.
1913         (awk): Mention more of the limitations of traditional Awk.
1914         (cat): Don't talk about cat -v.
1916 2005-06-16  Paul Eggert  <eggert@cs.ucla.edu>
1918         * lib/m4sugar/m4sh.m4 (_AS_VERSION_COMPARE_PREPARE): New macro.
1919         (AS_VERSION_COMPARE): New macro.  The API is taken from CVS,
1920         but the implementation is entirely different and is designed
1921         to be compatible with glibc strverscmp.
1922         * tests/m4sh.at (AS_VERSION_COMPARE): New test.
1924         * doc/autoconf.texi (Limitations of Usual Tools): Mention expr bug
1925         on Mac OS X 10.4 reported by Peter O'Gorman in:
1926         http://lists.gnu.org/archive/html/autoconf-patches/2005-06/msg00041.html
1927         * lib/autoconf/general.m4 (_AC_CANONICAL_SPLIT):
1928         Use shell builtins rather than 'expr', to work around expr bug.
1930 2005-06-10  Paul Eggert  <eggert@cs.ucla.edu>
1932         * doc/autoconf.texi: "filesystem" -> "file system".
1933         "behaviour" -> "behavior".
1934         Warn about \(...\)* in Solaris sed (written by Ralf Menzel).
1935         * lib/autoconf/general.m4: Omit blank after ":" sed command,
1936         as per POSIX.
1937         * lib/m4sugar/m4sh.m4: Likewise.
1938         * lib/autoconf/status.m4 (_AC_OUTPUT_HEADERS): Work around problem
1939         with Solaris sed.  Fix by Ralf Menzel and Stepan Kasal.
1941         * man/Makefile.am (MOSTLYCLEANFILES): Add $(srcdir)/*.t.
1942         (.x.1): Ignore the time stamp in the .TH line when deciding whether
1943         to update the man page.  That way, we don't have to check in new
1944         man pages every month.
1946         * lib/m4sugar/m4sh.m4 (AS_VAR_TEST_SET): Work even if $1 contains
1947         quotes and backslashes.  Patch from Derek Price.
1949 2005-06-10  Derek Price  <derek@ximbiot.com>
1951         * doc/autoconf.texi (Programming in M4sh): Document AS_TR_CPP &
1952         AS_TR_SH.
1954 2005-06-08  Paul Eggert  <eggert@cs.ucla.edu>
1956         * lib/autotest/general.m4 (AT_INIT): Don't accept Solaris 9's diff
1957         -u, since it outputs chatter if the input files are the same.
1958         Problem reported by Ralf Menzel.
1960 2005-06-08  Derek Price  <derek@ximbiot.com>
1962         * lib/m4sugar/m4sugar.m4: Undefine include & sinclude rather than
1963         renaming them since they are about to be redefined anyhow.
1965 2005-06-08  Derek Price  <derek@ximbiot.com>
1967         * doc/autoconf.texi (Redefined M4 Macros): Add index entries for most
1968         redefined M4 macros to this node.  Document m4_include & m4_sinclude.
1969         Move m4_undefine to alphabetical order.
1971 2005-06-07  Paul Eggert  <eggert@cs.ucla.edu>
1973         * README: Recommend GNU M4 1.4.3 or later.
1974         * doc/autoconf.texi (Introduction): Likewise.
1975         Reword to avoid some formatting glitches.
1976         Use "#!/bin/sh", not "#! /bin/sh"; the space isn't needed these days.
1977         Clarify explanation of HP compiler bug.
1978         Redo example output tp match current CVS snapshot.
1979         Use @example.org in email addresses when the examples
1980         might get inadvertently cut-and-pasted into user code.
1981         Remove example of autom4te usage that doesn't seem to work now.
1982         Use modern AC_INIT (except when the example is meant to be
1983         shown with Autoconf 2.13).
1984         Update ksh info for Solaris 9 and later.
1985         KB -> kB.
1986         Modernize description of Automake versions a bit.
1987         Don't claim a future version of Autoconf is near.
1988         * doc/install.texi: Reword to avoid some formatting glitches.
1990 2005-06-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1992         * doc/autoconf.texi: Add [] to examples, so that the manual
1993         follows its own advice about quoting better.
1994         Reword to avoid some formatting glitches.
1995         * doc/installt.exi: Reword to avoid some formatting glitches.
1997         * doc/autoconf.texi (Limitations of Builtins) <case>: Mention
1998         Tru64 ksh pattern matching bug.  Reported against Libtool by
1999         Albert Chin <libtool@mlists.thewrittenword.com> and
2000         Nicolas Joly <njoly@pasteur.fr>.
2002 2005-06-06  Stepan Kasal  <kasal@ucw.cz>
2004         m4_cdr of one-member list was [[]] (one-member list containing an
2005         empty string) instead of [] (an empty list.  Callers were skewed to
2006         match this misbehaviour.  As a consequence of this:
2007          - m4_foreach([x], [], [foo]) expanded to `foo', while
2008          - the expansion of m4_foreach([x], [[]], [foo]) was empty.
2009         This bug has been fixed:
2011         * lib/m4sugar/m4sugar.m4 (m4_cdr): If only one argument is given,
2012           expand to an empty string; print error msg if called without
2013           an argument list.
2014         (m4_foreach, m4_map, m4_map_sep): Don't expect the previous
2015           misbehaviour; handle [] and [[]] correctly.
2017 2005-06-06  Stepan Kasal  <kasal@ucw.cz>
2019         * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS): Nuke ac_max_here_lines.
2020         * lib/autoconf/status.m4 (_AC_OUTPUT_HEADERS): Simplify the sed
2021           scripts created and the loop applying them, use _AC_SED_CMD_LIMIT.
2023 2005-06-06  Ralf Menzel <menzel@ls6.cs.uni-dortmund.de>  (trivial change)
2025         * doc/autoconf.texi (Limitations of Usual Tools): Solaris' awk cannot
2026           swallow records with more than 99 fields.
2027         * lib/autotest/general.m4 (AT_INIT): Use the awk builtin `split' to
2028           parse the long line.
2030 2005-06-04  Stepan Kasal  <kasal@ucw.cz>
2032         * doc/autoconf.texi (Limitations of Usual Tools): AIX awk cannot
2033           swallow literals longer than 399.  Reported by Ralf Wildenhues.
2034         * lib/autotest/general.m4 (AT_INIT): Pass $at_groups though stdin,
2035           to workaround this limitation.
2037 2005-06-03  Steven G. Johnson  <stevenj@alum.mit.edu>
2039         * lib/autoconf/fortran.m4 (_AC_PROG_FC): Find g95 in addition
2040         to gfortran, and make these the first two compiler names
2041         checked (following the general autoconf preference for gcc).
2043 2005-06-03  Stepan Kasal  <kasal@ucw.cz>
2045         * tests/Makefile.am (check_SCRIPTS): Set to $(wrappers).
2046         (DISTCLEANFILES): Remove $(check_SCRIPTS).
2047         (testsuite): Make sure autotest.m4f is up-to-date before using it.
2049 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
2051         * lib/autotest/general.m4 (AT_INIT): Don't create a regular
2052         expression of unbounded size when processing the --list
2053         option.  This runs afoul of a limit of 399 bytes per regular
2054         expression on AIX.  Problem reported by Ralf Wildenhues.
2056 2005-06-01  Paul Eggert  <eggert@cs.ucla.edu>
2058         * NEWS: Note yesterday's changes to AC_SUBST and AC_SUBST_FILE.
2059         * doc/autoconf.texi (Particular Headers): Reword example
2060         for multiline stdbool replacement.
2061         (Setting Output Variables): Reword text a bit.  Don't
2062         give all the details about |#_!!_#|.
2063         Reword description of line replacement.
2065 2005-05-31  Dan Manthey  <dan_manthey@partech.com>
2067         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES): Output variables may
2068         now contain newlines, and substituted files must be referenced on
2069         a line alone; the sed scripts to substitute them are now very
2070         different.
2071         (_AC_SED_CMD_LIMIT): Added; single place to store limit on how many
2072         commands can be put in a sed script portably.
2073         * doc/autoconf.texi (Setting Output Variables): Document above
2074         changes.  (Particular Header Checks) <AC_HEADER_STDBOOL>: Give exaple
2075         use of multiline substitution.
2076         * tests/torture.at: No longer expect substitution of newline to fail.
2078 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
2080         * lib/m4sugar/m4sh.m4 (_AS_SHELL_FN_WORK): Fix diagnostics.
2081         From Ralf Menzel (trivial change).
2083 2005-05-25  Paul Eggert  <eggert@cs.ucla.edu>
2085         * tests/local.at: Don't attempt to check for negated character
2086         classes in shell scripts.  The test was too brittle.
2088 2005-05-25  Stepan Kasal  <kasal@ucw.cz>
2090         * bin/autoconf.as: Don't use "shift 2"; it's not portable enough.
2091         * doc/autoconf.texi (Limitations of Builtins): Document this
2092           limitation.
2094 2005-05-24  Stepan Kasal  <kasal@ucw.cz>
2096         * lib/m4sugar/m4sh.m4 (_AS_ECHO_LOG): New macro to factor out
2097           common code; used in many places in the tree.
2098         (AS_ESCAPE): Make the pattern a bit simpler; use \& insetad of \1.
2099         (_AS_ECHO_UNQUOTED): Move the macro lower; no code change.
2101         * lib/m4sugar/m4sugar.m4 (m4_ifset): Use m4_ifval.
2103         * lib/autoconf/general.m4 (_AC_INIT_SRCDIR): Merge the two error
2104           messages when ac_unique_file is not found.
2105         (AC_CONFIG_MACRO_DIR): Simplify the `if' at the end.
2106         (AC_MSG_CHECKING, AC_MSG_RESULT): Put braces around the two echo
2107           commands, for consistency with AC_MSG_ERROR and such.
2109         * bin/autoconf.as: Make more use of "shift 2" in option processing.
2111         * bin/Makefile.am: Merge the two rules for creating scripts.
2113 2005-05-23  Stepan Kasal  <kasal@ucw.cz>
2115         * lib/autoconf/general.m4 (AC_MSG_RESULT_UNQUOTED): Make
2116         obsolete; it was never documented.
2117         (AC_CACHE_CHECK): Use AC_MSG_RESULT instead.
2119 2005-05-20  Stepan Kasal  <kasal@ucw.cz>
2121         * NEWS: @top_builddir@ is now a dirname, ac_top_builddir will follow.
2122         * lib/autoconf/status.m4 (_AC_SRCDIRS): Rename ...
2123         (ac_top_builddir): ... this ...
2124         (ac_top_build_prefix): ... to this; the old name is also kept, for
2125           backward compatibility.
2126         (ac_top_builddir_sub): New variable, without the trailing slash,
2127           always nonempty.
2128         (_AC_OUTPUT_FILES): s/@top_builddir@/$ac_top_builddir_sub/
2129         * doc/autoconf.texi (Configuration Actions): Rename
2130           ac_top_builddir to ac_top_build_prefix.
2131         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): Rename
2132           at_top_builddir to at_top_build_prefix.
2133         * lib/autotest/general.m4 (AT_INIT): Likewise.
2135 2005-05-20  Stepan Kasal  <kasal@ucw.cz>
2137         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Simplify the init
2138           of confdefs.h .
2140 2005-05-17  Stepan Kasal  <kasal@ucw.cz>
2142         * lib/m4sugar/m4sugar.m4 (m4_text_wrap): Don't m4_quote the second
2143           argument to m4_foreach.  I guess it was necessary in the past,
2144           but I think it's a no-op now.
2146 2005-05-17  Stepan Kasal  <kasal@ucw.cz>
2148         * lib/autoconf/general.m4 (_AC_INIT_HELP): Merge two consecutive
2149           ``cat <<_ACEOF'' commands to one.
2150         (_AC_CANONICAL_SPLIT): Use expr, not ``echo|sed.''
2151         * lib/autoconf/status.m4: On various places, use expr instead of
2152           ``echo|sed.''
2153         (_AC_CONFIG_SPLIT, _AC_CONFIG_SPLIT_SOURCE_DEST):
2154         (_AC_CONFIG_SPLIT_FILE_IN): New macros, to factor out common code.
2155         * lib/autotest/general.m4 (AT_INIT): Use expr to get the numbers from
2156           a range.
2157         * tests/local.at (AT_CHECK_SHELL_SYNTAX): Use awk to search for
2158           the wrong patterns between ``case'' and ``esac.''  The previous
2159           code had false positives.
2161 2005-05-14  Alexandre Duret-Lutz  <adl@gnu.org>
2163         * lib/autoconf/functions.m4 (_AC_LIBOBJ_ALLOCA): Prepend ${LIBOBJDIR},
2164         as on 2005-05-02.
2165         * doc/autoconf.texi (Particular Functions) <AC_FUNC_ALLOCA>:
2166         Mention LIBOBJDIR.
2168 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
2170         * AUTHORS, BUGS, COPYING, ChangeLog, ChangeLog.0, ChangeLog.1,
2171         ChangeLog.2, GNUmakefile, HACKING, Makefile.am, Makefile.cfg,
2172         Makefile.maint, NEWS, README, README-alpha, TODO, configure.ac,
2173         bin/Makefile.am, bin/autoconf.as, bin/autoheader.in,
2174         bin/autom4te.in, bin/autoreconf.in, bin/autoscan.in,
2175         bin/autoupdate.in, bin/ifnames.in, config/Makefile.am,
2176         config/config.guess, config/config.sub, config/elisp-comp,
2177         config/m4.m4, config/mdate-sh, config/missing, config/texinfo.tex,
2178         doc/Makefile.am, doc/fdl.texi, lib/Makefile.am, lib/autom4te.in,
2179         lib/freeze.mk, lib/Autom4te/C4che.pm, lib/Autom4te/ChannelDefs.pm,
2180         lib/Autom4te/Channels.pm, lib/Autom4te/Configure_ac.pm,
2181         lib/Autom4te/FileUtils.pm, lib/Autom4te/General.pm,
2182         lib/Autom4te/Request.pm, lib/Autom4te/Struct.pm,
2183         lib/Autom4te/XFile.pm, lib/autoconf/Makefile.am,
2184         lib/autoconf/autoconf.m4, lib/autoconf/autoheader.m4,
2185         lib/autoconf/autoscan.m4, lib/autoconf/autotest.m4,
2186         lib/autoconf/autoupdate.m4, lib/autoconf/c.m4,
2187         lib/autoconf/fortran.m4, lib/autoconf/functions.m4,
2188         lib/autoconf/general.m4, lib/autoconf/headers.m4,
2189         lib/autoconf/lang.m4, lib/autoconf/libs.m4,
2190         lib/autoconf/oldnames.m4, lib/autoconf/programs.m4,
2191         lib/autoconf/specific.m4, lib/autoconf/status.m4,
2192         lib/autoconf/types.m4, lib/autoscan/Makefile.am,
2193         lib/autoscan/autoscan.list, lib/autoscan/autoscan.pre,
2194         lib/autotest/Makefile.am, lib/autotest/autotest.m4,
2195         lib/autotest/general.m4, lib/emacs/Makefile.am,
2196         lib/emacs/autoconf-mode.el, lib/emacs/autotest-mode.el,
2197         lib/m4sugar/Makefile.am, lib/m4sugar/m4sh.m4,
2198         lib/m4sugar/m4sugar.m4, man/Makefile.am, tests/Makefile.am,
2199         tests/atlocal.in, tests/autotest.at, tests/base.at, tests/c.at,
2200         tests/compile.at, tests/foreign.at, tests/fortran.at,
2201         tests/local.at, tests/m4sh.at, tests/m4sugar.at, tests/mktests.sh,
2202         tests/semantics.at, tests/suite.at, tests/tools.at,
2203         tests/torture.at, tests/wrapper.as:
2204         Update FSF postal mail address.
2206 2005-05-13  Stepan Kasal  <kasal@ucw.cz>
2208         * lib/autoconf/general.m4 (AC_CONFIG_LIBOBJ_DIR): Remove the broken
2209           check.
2210         * lib/m4sugar/m4sugar.m4 (m4_bmatch): Halt with error if we don't get
2211           enough arguments, similarly as in m4_bpatsubsts.
2213 2005-05-12  Stepan Kasal  <kasal@ucw.cz>
2215         * lib/autoconf/status.m4 (_AC_SRCDIRS): Simplify the computation
2216           of absolute paths.
2218 2005-05-11  Stepan Kasal  <kasal@ucw.cz>
2220         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ARGS): Make the check
2221           for absolute directory names in one loop.
2222         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Handle
2223           abbreviations of --version and --debug.
2225 2005-05-10  Paul Eggert  <eggert@cs.ucla.edu>
2227         * doc/autoconf.texi (Autoconf Language): Be more precise about
2228         quoting rules.  Problems noted by Stepan Kasal.
2229         Also, throughout this document, be more careful about white space.
2230         "blank", "white space", and "space" all have different meanings
2231         and we should be careful to say what we mean.
2233 2005-05-05  Paul Eggert  <eggert@cs.ucla.edu>
2235         Fix C++ related problems reported by Werner Lemberg.
2236         * doc/autoconf.texi (C++ Compiler): Mention .cpp extension.
2237         * lib/autoconf/c.m4 (AC_LANG(C++)): Set ac_ext to .cpp, not .cc.
2238         * lib/autoconf/types.m4 (AC_TYPE_SIGNAL): Simplify test, to
2239         avoid problems with C++ and throw.
2240         * tests/compile.at: .cpp, not .cc.
2242         * tests/semantics.at: Prepend LIBOBJDIR, as per 2005-05-02 change.
2244 2005-05-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2246         * doc/autoconf.texi (Generic Functions): Typos.
2248 2005-05-02  Gary V. Vaughan  <gary@gnu.org>
2250         * lib/autoconf/general.m4 (_AC_LIBOBJS_NORMALIZE): Prepend each
2251         object named in LIBOBJS and LTLIBOBJS with the ${LIBOBJDIR}, as
2252         set by latest automake.
2254 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
2256         * doc/autoconf.texi (Limitations of Usual Tools): "expr '' \| ''"
2257         outputs 0 on GNU/Linux these days.
2259 2005-04-29  Paul Eggert  <eggert@cs.ucla.edu>
2261         * doc/autoconf.texi (Autoconf Language): Add more description
2262         about quoting heuristics.
2263         (Limitations of Builtins): Describe "set -" problems.
2265 2005-04-29  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2267         * lib/autotest/general.m4 (AT_KEYWORDS): Separate by space,
2268         not newline.
2270         * doc/autoconf.texi (External Software): Replace AC_DEFINE_UNQUOTED
2271         by AC_DEFINE; it was a mistake.
2272         From bug reported against libtool by Dalibor Topic <robilad@kaffe.org>.
2274 2005-04-25  Stepan Kasal  <kasal@ucw.cz>
2276         * lib/autoconf/status.m4 (_AC_OUTPUT_HEADERS): A tiny optimization.
2278 2005-04-22  Stepan Kasal  <kasal@ucw.cz>
2280         * doc/autoconf.texi (External Software): Quadrigraphs are not
2281           processed correctly in AS_HELP_STRING; avoid this in the examples.
2282         * lib/m4sugar/m4sh.m4 (AS_HELP_STRING): Add a FIXME about quadrigraphs.
2283         * lib/m4sugar/m4sugar.m4 (m4_text_wrap): Likewise; and rephrase the
2284           comment and reduce m4_default([foo], []) to [foo].
2285         (m4_strip): Update the explanation.
2287 2005-04-19  Paul Eggert  <eggert@cs.ucla.edu>
2289         * lib/autoconf/general.m4 (_AC_INIT_PREPARE, _AC_RUN_IFELSE):
2290         Remove core.conftest.* too; it's generated by Tru64 5.1.
2291         Problem reported by Jennis Pruett.
2292         * lib/autoconf/functions.m4
2293         (AC_FUNC_SETVBUF_REVERSED, AC_FUNC_UTIME_NULL):
2294         Don't bother to remove core files; AC_RUN_IFELSE should do that
2295         for you.
2297 2005-04-19  Stepan Kasal  <kasal@ucw.cz>
2299         * lib/m4sugar/m4sugar.m4 (m4_bpatsubsts): Add the b- to comment, too.
2301 2005-04-19  Alexandre Duret-Lutz  <adl@gnu.org>
2303         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ARGS): Handle --docdir.
2304         Report from Horst Wente.
2306 2005-04-15  Stepan Kasal  <kasal@ucw.cz>
2308         * lib/autoconf/general.m4 (_AC_ARG_VAR_VALIDATE): Fixed a typo in
2309           the comment.
2311 2005-04-14  Gregorio Guidi  <greg_g@gentoo.org>
2313         * doc/autoconf.texi (External Software, Package Options): Add
2314           examples showing how to implement --with-* and --enable-* options.
2316 2005-04-13  Paul Eggert  <eggert@cs.ucla.edu>
2318         * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): Look for configure.ac
2319         as well as configure.in.  Problem reported by Gregorio Guidi.
2321 2005-04-10  Paul Eggert  <eggert@cs.ucla.edu>
2323         * doc/autoconf.texi (Particular Functions): Use gnulib's current
2324         pattern for alloca snippet.
2326 2005-04-04  Stepan Kasal  <kasal@ucw.cz>
2328         * lib/autotest/general.m4 (_AT_DECIDE_TRACEABLE): Fix a typo.
2330 2005-04-01  Stepan Kasal  <kasal@ucw.cz>
2332         * doc/autoconf.texi (Generic Programs): Fix a typo.
2334 2005-04-01  Paul Eggert  <eggert@cs.ucla.edu>
2336         * lib/autotest/general.m4 (AT_INIT): Don't assume that "date +%s"
2337         fails if %s isn't supported.  Problem reported by Ralf Wildenhues.
2339 2005-03-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2341         * lib/autoconf/fortran.m4 (_AC_FC_LIBRARY_LDFLAGS):
2342         Merge `-z option' as well for the benefit of Solaris link flags.  Pass
2343         whole-archive (-zallextract, -zdefaultextract) options in the hope of
2344         unique libraries, for the Sun Fortran 95 8.0 compiler.  Bug reported
2345         against Libtool by Yury Puhalsky <pooh@cryptopro.ru>.
2347 2005-03-22  Paul Eggert  <eggert@cs.ucla.edu>
2349         * NEWS: The configure command now warns you if you attempt to use
2350         a directory whose name contains a special character like space,
2351         newline, or "\".
2352         * doc/autoconf.texi (Installation Directory Variables): Allow
2353         "," in file names.  Do not use \@; it's not a portable regexp.
2354         * bin/Makefile.am (edit): Likewise.
2355         * lib/Makefile.am (edit): Likewise.
2356         * tests/Makefile.am (edit): Likewise.
2357         * tests/semantics.at: Likewise.
2358         * tests/torture.at: Likewise.
2359         * lib/autoconf/general.m4 (AC_ARG_PROGRAM): Likewise.
2360         * lib/autoconf/status.m4 (_AC_SRCDIRS): Likewise.
2361         * doc/autoconf.texi (File System Conventions): Warn about
2362         unportable file names.
2363         * lib/autoconf/general.m4 (_AC_INIT_DIRCHECK): New macro.
2364         (AC_INIT): Use it.
2365         (_AC_INIT_SRCDIR): Use ac_pwd rather than invoking pwd.
2366         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Propagate
2367         ac_pwd, and quote srcdir.
2368         * lib/autotest/general.m4 (AT_INIT): Quote file name args.
2370         * doc/autoconf.texi: Fix some systematic formatting problems.
2371         ".)"  needs a following @: if not at the end of a sentence, and
2372         similarly for "!)".  "etc." should be preceded by a comma.
2373         "n-th" -> "@var{n}th".  pdksh is still buggy, so update its date.
2375 2005-03-22  Bruno Haible  <bruno@clisp.org>
2377         * doc/autoconf.texi (Input): Mention that AC_CONFIG_AUX_DIR's
2378         argument is often called 'build-aux'.
2380 2005-03-07  Stepan Kasal  <kasal@ucw.cz>
2382         * doc/autoconf.texi (Quotation Rule Of Thumb): Mention that the
2383           macro AC_TRY_LINK is obsolete.
2384         (Installation Directory Variables): Change `AC_OUTPUT_FILES' to
2385           `AC_CONFIG_FILES'.
2387 2005-02-24  Stepan Kasal  <kasal@ucw.cz>
2389         * lib/autoconf/c.m4 (AC_PROG_CC): Be more careful to skip
2390           `/usr/ucb/cc'; use `cl.exe' to distinguish the MS compiler
2391           from a Common Lisp's `cl'.
2392         (AC_PROG_CXX): Behave according to the documentation: don't
2393           search for $ac_tool_prefix$CCC and $CCC, just set CXX=$CCC;
2394           make the variable CCC precious; use `cl.exe', not `cl'.
2396 2005-02-23  Paul Eggert  <eggert@cs.ucla.edu>
2397             Alexandre Duret-Lutz  <adl@gnu.org>
2399         * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS): Redirect stdin from
2400         /dev/null, as "configure" shouldn't read stdin, and this insulates
2401         us from problems (e.g., when testing for "cl").  Also, do this
2402         redirection before invoking "hostname" or "uname", and keep the
2403         original input stream available via...
2404         (AS_ORIGINAL_STDIN_FD): ... this new macro.
2405         (_AC_PREPROC_IFELSE, _AC_COMPILE_IFELSE, _AC_LINK_IFELSE): Don't
2406         bother with "</dev/null" since it's now done at the top of
2407         'configure'.
2408         * lib/autoconf/c.m4 (AC_PROG_CC, AC_PROG_CXX): Likewise.
2409         * lib/autoconf/fortran.m4 (_AC_PROG_FC): Likewise.
2410         * lib/autoconf/programs.m4 (_AC_PATH_PROG_FLAVOR_GNU): Likewise.
2411         * doc/autoconf.texi (File Descriptor Macros): New section.
2412         (Printing Messages): Mention it.
2413         * tests/base.at (Input/Output): New test.
2415 2005-02-23  Paul Eggert  <eggert@cs.ucla.edu>
2417         * lib/m4sugar/m4sh.m4 (_AS_ECHO_N_PREPARE): Don't set ECHO_C to
2418         newline if neither \c nor -n work, as that would output two
2419         newlines.  Prefer -n to \c.  Reported by Stepan Kasal.
2421 2005-02-12  Stepan Kasal  <kasal@ucw.cz>
2423         * lib/m4sugar/m4sh.m4 (AS_IF): Define by m4_defun, not m4_define.
2424         This causes that any required macros inside will get before the if.
2425         * doc/autoconf.texi (autom4te.cache): A typo.
2427 2005-02-12  Paul Eggert  <eggert@cs.ucla.edu>
2429         Undo previous change, except keep the change to
2430         lib/autoconf/programs.m4 that replaced grep with shell
2431         pattern-matching.  This is because net-snmp configure reads stdin.
2432         Reported by Noah Misch.
2434 2005-02-11  Paul Eggert  <eggert@cs.ucla.edu>
2436         * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS): Redirect stdin
2437         from /dev/null, as "configure" shouldn't read stdin, and this
2438         insulates us from problems (e.g., when testing for "cl").
2439         Suggested by Alexandre Duret-Lutz.  Also, do this redirection
2440         before invoking "hostname" or "uname".
2441         (_AC_PREPROC_IFELSE, _AC_COMPILE_IFELSE,
2442         _AC_LINK_IFELSE): Undo previous change, as it's no longer needed.
2443         * lib/autoconf/c.m4 (AC_PROG_CC, AC_PROG_CXX): Don't bother with
2444         "</dev/null" since it's now done at the top of 'configure'.
2445         * lib/autoconf/fortran.m4 (_AC_PROG_FC): Likewise.
2446         * lib/autoconf/programs.m4 (_AC_PATH_PROG_FLAVOR_GNU): Likewise.
2447         Also, replace grep with shell pattern-matching, to save a process.
2449 2005-02-10  Paul Eggert  <eggert@cs.ucla.edu>
2451         * lib/autoconf/general.m4 (_AC_PREPROC_IFELSE, _AC_COMPILE_IFELSE,
2452         _AC_LINK_IFELSE): Redirect stdin to /dev/null, in an attempt to
2453         avoid thinking that Allegro Common Lisp's "cl" command is a C++
2454         compiler.
2456 2005-02-09  Paul Eggert  <eggert@cs.ucla.edu>
2458         * doc/autoconf.texi (Limitations of Usual Tools): Document that
2459         grep -q isn't portable.  Improve grep -s explanation.
2460         Problem reported by Dan Manthey.
2462 2005-02-08  Paul Eggert  <eggert@cs.ucla.edu>
2464         * doc/autoconf.texi (Special Shell Variables): Clarify
2465         PATH_SEPARATOR wording; fix typo in IFS.  Reported by Gary V. Vaughan.
2467 2005-02-07  Paul Eggert  <eggert@cs.ucla.edu>
2469         * doc/autoconf.texi: Use @acronym for DJGPP.
2470         Fix some @code's that should have been @env's, and vice versa.
2471         Sort environment variable names.
2472         Mention that shells no longer inherit IFS.
2473         Don't recommend PATH_SEPARATOR=';' so strongly.
2474         Mention that $RANDOM might expand to the empty string.
2475         "symlink" and "soft link" -> "symbolic link".
2476         Improve mktemp description (reported by Bruno Haible).
2478 2005-02-05  Paul Eggert  <eggert@cs.ucla.edu>
2480         * tests/foreign.at (Libtool): Don't overquote AT_SETUP arg.
2481         * tests/m4sh.at (AS_DIRNAME, AS_BASENAME, AS_MKDIR_P, AS_HELP_STRING):
2482         Likewise.
2483         * tests/semantics.at (AC_C_BIGENDIAN, AC_PATH_PROG & AC_PATH_PROGS):
2484         Likewise.
2486 2005-02-04  Paul Eggert  <eggert@cs.ucla.edu>
2488         * NEWS: Mention AT_COPYRIGHT.
2490         * tests/local.at (AT_CMP): Use diff directly on input files rather
2491         than copying them.
2493         * lib/autoconf/programs.m4 (AC_PROG_SED): Don't look in
2494         /usr/xpg4/bin since that sed dumps core (at least on Solaris 8).
2496 2005-02-04  Noah Misch  <noah@cs.caltech.edu>
2497         and Paul Eggert  <eggert@cs.ucla.edu>
2499         * tests/autotest.at (Empty test suite): New test.
2500         * tests/torture.at (Substitute and define special characters)
2501         (Substitute a 2000-byte string, Define to a 2000-byte string)
2502         (Substitute a newline, Define a newline): New tests.
2504 2005-02-04  Noah Misch  <noah@cs.caltech.edu>
2506         * lib/m4sugar/m4sugar.m4 (m4_re_string, m4_re_word): Revert 2002-03-04.
2507         * tests/local.at (AT_CHECK_M4SUGAR): Add `m4sugar' to keywords.
2508         (AT_CHECK_ENV): Ignore LTLIBOBJS, FC variables, EGREP, FGREP, and SED.
2509         * tests/m4sugar.at (AT_CHECK_M4SUGAR_TEXT, AT_CHECK_M4RE): New macros.
2510         (Standard regular expressions): New test.
2511         (m4_warn, m4_require: circular dependencies, m4_text_wrap): Strip
2512         excess test name quoting.
2513         * tests/semantics.at (AC_CHECK_HEADERS_OLD, AC_CHECK_HEADERS_NEW): Pass
2514         CPPFLAGS to `configure' instead of setting it in `configure'.
2516         * lib/m4sugar/m4sh.m4 (AS_UNAME): Try only /usr/bin/hostinfo, not
2517         any `hostinfo' in $PATH, since hostinfo.exe is a popular file name
2518         on some platforms.
2520         * lib/autoconf/fortran.m4 (AC_LANG(Fortran), AC_FC_SRCEXT):
2521         s/FC_SRCEXT/ac_fc_srcext/; s/FCFLAGS_SRCEXT/ac_fcflags_srcext/.
2523         * tests/local.at (AT_CMP): New macro.
2524         (AT_DATA_AUTOCONF): Do not call AC_PROG_GREP.
2525         (AC_SAVE_STATE): Move environment grep...
2526         (AT_CHECK_ENV): to here.  Filter out `'$''.  Use AT_CMP.
2527         (AT_CONFIG_CMP): New macro.
2528         (AT_CHECK_MACRO): Run `configure' twice with cache and compare results.
2529         * tests/c.at (Extensions): Do not exit early.
2530         * tests/atlocal.in: Inherit $GREP.
2532         * lib/autoconf/c.m4 (_AC_C_STD_TRY): New macro.
2533         (_AC_PROG_CC_C89, _AC_PROG_CC_C99): Use it.
2535         * lib/autoconf/general.m4 (_AC_INIT_COPYRIGHT): Update for 2005.
2536         (AC_COPYRIGHT): Factor header comment portion out and move into...
2537         * lib/m4sugar/m4sh.m4 (AS_COPYRIGHT): This.
2538         * lib/autotest/general.at (AT_COPYRIGHT): New macro.
2539         (AT_INIT): Add Autotest copyright notice.  Display copyright notices in
2540         --version output.
2541         * tests/local.at: Add Autoconf test suite copyright notice.
2542         * doc/autoconf.texi (Writing testsuite.at): Document AT_COPYRIGHT.
2544 2005-02-04  Bruno Haible  <bruno@clisp.org>
2545         and Paul Eggert  <eggert@cs.ucla.edu>
2547         * doc/autoconf.texi (Limitations of Usual Tools): New mkstemp entry.
2549 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
2551         * lib/m4sugar/m4sugar.m4 (m4_re_escape): Escape ?, ^, \, $ too;
2552         this fixes a bug tickled by the AT_CAPTURE_FILE change noted below.
2554         Try not to generated lines of unlimited length, as POSIX places a
2555         2047-byte limit on line length of portable text files.
2556         * lib/autoconf/general.m4 (AC_SUBST, AC_SUBST_FILE):
2557         Use newline as a separator, not space.
2558         * lib/autotest/general.m4 (AT_TESTED, AT_KEYWORDS): Likewise.
2559         (AT_CAPTURE_FILE): Use space-backslash-newline as a separator, not
2560         space.
2562 2005-02-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2564         * lib/m4sugar/m4sh.m4 (_AS_SHELL_FN_WORK): Move func_* to
2565         as_func_*.  Add test to check whether positional parameters
2566         are restored after function return.
2568 2005-02-02  Paul Eggert  <eggert@cs.ucla.edu>
2570         * doc/autoconf.texi (Special Shell Variables): Mention _,
2571         BIN_SH, DUALCASE.  Say that variables other than "status" are safe
2572         if they contain a lower-case letter.  The DUALCASE problem was
2573         reported by Ralf Wildenhues.
2575         * bin/autoconf.as: Don't exit with status 0 after write failure
2576         with --help or --version.
2577         * lib/autoconf/general.m4 (_AC_INIT_HELP, _AC_INIT_VERSION): Likewise.
2578         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Likewise.
2580 2005-02-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2582         * doc/autoconf.texi (Limitations of Usual Tools):
2583         Unicos 9 sed limitations.
2584         * lib/autoconf/fortran.m4 (_AC_PROG_FC): Try cf77 before fort77
2585         to get the option-enhanced interface on older Crays.  Try ftn for
2586         Fortran 95 (newer Crays).
2588 2005-02-01  Paul Eggert  <eggert@cs.ucla.edu>
2590         * man/Makefile.am (.x.1): Go back to the simple solution, but take
2591         care to echo the commands, so the user knows what's going on.
2592         Modified from a suggestion by Stepan Kasal.
2594         * doc/autoconf.texi (autoreconf Invocation): Mention autopoint,
2595         with a cross reference.  Derived from a suggestion by Bruce Korb.
2597 2005-01-31  Paul Eggert  <eggert@cs.ucla.edu>
2599         * doc/autoconf.texi (config.status Invocation): Warn about
2600         discrepancy between CONFIG_SHELL and shell used to invoke 'configure'.
2601         * doc/install.texi (Defining Variables): Likewise.
2602         Based on a proposed patch by Ralf Wildenhues.
2604         * man/Makefile.am (.x.1): Make sure the required generated files
2605         are up to date.  Problem and original solution proposed by Stepan Kasal.
2606         $(dist_man_MANS:.1=-bin-prereq), $(dist_man_MANS:.1=-tests-prereq),
2607         implicit-man-prerequisites): New rules, used by the above.
2609         * doc/make-stds.texi, doc/standards.texi: Sync from gnulib.
2610         * config/config.guess, config/config.sub, config/install-sh: Likewise.
2611         * config/missing, config/texinfo.tex: Likewise.
2613 2005-01-29  Stepan Kasal  <kasal@ucw.cz>
2615         Simplify the implementation of m4_require (a.k.a. AC_REQUIRE).
2616         Update the long comment explaining it.
2618         m4_require no longer writes an ``is required by'' line to the
2619         execution stack.  It contains only one bit of non-redundant
2620         information: that the macro was required, not called.  And even
2621         this bit is useless in most situations: have you ever met a macro
2622         which both calls and requires the same macro?
2624         * lib/m4sugar/m4sugar.m4 (_m4_defun_pro): Don't push a diversion...
2625         (_m4_defun_pro_outer): ... only via this macro, for the outermost
2626           macro.
2627         (_m4_defun_epi, _m4_defun_epi_outer): Complementarily.
2628         (m4_expansion_stack_pop): Remove the misplaced comment.
2629         (m4_require): Don't put the ``is required by'' line to the
2630           execution stack; slightly improve the out-of-a-defun error message.
2631         (_m4_divert_grow): New macro, counter for the temporary diversions.
2632         (_m4_require_call): Use it.
2633         * tests/m4sugar.at (m4_require): Expect output without the
2634           ``is required by'' messages.
2636 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
2638         * doc/autoconf.texi (Limitations of Usual Tools): Recommend X
2639         rather than x for expr.
2641         * lib/autoconf/lang.m4 (_AC_COMPILER_OBJEXT): Avoid subshells when
2642         this is safe.
2643         * lib/autoconf/programs.m4 (AC_PROG_EGREP, AC_PROG_FGREP): Likewise.
2644         * lib/autoconf/specific.m4 (AC_SYS_LONG_FILE_NAMES): Likewise.
2645         * lib/autotest/general.m4 (AT_INIT): Likewise.
2646         * lib/m4sugar/m4sh.m4 (_AS_LINENO_WORKS): Likewise.
2647         * tests/mktests.sh: Likewise.
2649 2005-01-27  Akim Demaille  <akim@epita.fr>
2651         Have autoheader honor --force.
2653         * doc/make-stds.texi, doc/standards.texi: Update from masters.
2654         * lib/Autom4te/Channels.pm, lib/Autom4te/Configure_ac.pm
2655         * lib/Autom4te/FileUtils.pm, lib/Autom4te/XFile.pm: Update
2656         from masters, so that FileUtils.pm's update_file provide --force
2657         support.
2658         * bin/autoheader.in: Pass $force to update_file so that
2659         config.h.in is always recreated when --force.
2661 2005-01-24  Stepan Kasal  <kasal@ucw.cz>
2663         * doc/autoconf.texi (Introduction): Update Peter Simons' address.
2665 2005-01-21  Paul Eggert  <eggert@cs.ucla.edu>
2667         * doc/autoconf.texi (Limitations of Builtins): Clarify that
2668         "if test ! -d foo; ..." is portable.  Suggested by Stepan Kasal.
2670 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
2672         * doc/autoconf.texi (Shell Substitutions): Fix typo in case statement.
2673         Warn about newline stripping in `` and $().  Update Solaris
2674         version to 9.
2675         (Limitations of Builtins): Use expr "X...", not expr "x...", as
2676         X insulates us from future changes to Posix.
2677         (Limitations of Usual Tools): For AS_DIRNAME, warn about newline
2678         stripping.
2680 2005-01-19  Stepan Kasal  <kasal@ucw.cz>
2682         * doc/autoconf.texi (Defining Symbols): Delete the false comment that
2683           you cannot use AC_DEFINE to define macros containing `[' or `]'.
2685 2005-01-13  Paul Eggert  <eggert@cs.ucla.edu>
2687         * doc/autoconf.texi (Limitations of Usual Tools): Document bug
2688         in Solaris 8 join.  Problem reported by Tomohiro Suzuki on
2689         bug-tar mailing list.
2691 2005-01-05  Stepan Kasal  <kasal@ucw.cz>
2693         * lib/m4sugar/m4sugar.m4 (m4_copy): Fix the explanation.
2695 2005-01-05  Paul Eggert  <eggert@cs.ucla.edu>
2697         * lib/autoconf/c.m4 (AC_LANG_INT_SAVE(C)): Declare longval and
2698         ulongval to be static, to avoid unwanted GCC warning.  Problem
2699         reported by Michael Jennings via Daniel Reed; see
2700         <https://bugzilla.redhat.com/beta/show_bug.cgi?id=143852>.
2702 2005-01-05  Alexandre Duret-Lutz  <adl@gnu.org>
2704         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ARGS): Define datarootdir,
2705         docdir, htmldir, dvidir, pdfdir, psdir, and localdir.  Update
2706         datadir, infodir, and mandir.  Adjust argument parsing code.
2707         (_AC_INIT_HELP): Update help text.
2708         * doc/autoconf.texi (Installation Directory Variables): Document
2709         new variables.
2711 2005-01-04  Noah Misch  <noah@cs.caltech.edu>
2713         * lib/autoconf/programs.m4 (AC_PROG_MAKE_SET): If the Make program does
2714         not seem to work, assume it does set $(MAKE).
2715         * doc/autoconf.texi (AC_PROG_MAKE_SET): Update.
2717 2005-01-03  Stepan Kasal  <kasal@ucw.cz>
2719         * lib/m4sugar/m4sh.m4 (AS_REQUIRE): Add a comment about nesting.
2721 2005-01-03  Stepan Kasal  <kasal@ucw.cz>
2723         A cleanup of the diversion support in m4sugar.
2725         * lib/m4sugar/m4sugar.m4 (_m4_divert): A typo in description.
2726         (_m4_divert_n_stack): New macro; the expansion is
2727           <newline>m4_divert_stack, if m4_divert_stack is defined, and void
2728           otherwise.
2729         (m4_divert, m4_divert_push, m4_divert_pop, m4_init): Use it.
2730         (m4_divert_push, m4_divert_pop, _m4_defun_epi): Don't expand the word
2731           stored in _m4_divert_diversion or _m4_divert_dump.
2732         (m4_divert_pop): When the parameter is given, compare the symbolic
2733           name with the last diversion pushed on the stack.  Previously, the
2734           current diversion was compared with the numeric value of the
2735           diversion given as the parameter.
2736         (m4_require): If the macro hasn't been expanded yet, call ...
2737         (_m4_require_call): this new macro.
2739 2005-01-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2741         * lib/autoconf/general.m4 (_AC_INIT_PREPARE, _AC_ARG_VAR_VALIDATE):
2742         Workarounds for documented `case' limitations.
2744 2005-01-03  Paul Eggert  <eggert@cs.ucla.edu>
2746         * doc/autoconf.texi (Limitations of Usual Tools): Warn about
2747         sed 'command1;command2'.  Problem reported by Ralf Wildenhues.
2749 2005-01-02  Paul Eggert  <eggert@cs.ucla.edu>
2751         * bin/autoconf.as, bin/autoheader.in, bin/autom4te.in,
2752         bin/autoreconf.in, bin/autoscan.in, bin/autoupdate.in,
2753         bin/ifnames.in, tests/mktests.sh: Update copyright date to 2005.
2755         Patch from Roger Leigh (with some minor changes) as follows:
2756         * NEWS: New macros AC_PROG_CC_C89, AC_PROG_CC_C99.
2757         Resurrect AC_PROG_CC_STDC.
2758         * doc/autoconf.texi (C Compiler): Add AC_PROG_CC_STDC,
2759         AC_PROG_CC_C89, AC_PROG_CC_C99.
2760         (Obsolete Macros): Remove AC_PROG_CC_STDC; it's no longer obsolete.
2761         * lib/autoconf/c.m4 (_AC_PROG_CC_C89, _AC_PROG_CC_C99, AC_PROG_CC_C89,
2762         AC_PROG_CC_C99): New macros.
2763         (AC_PROG_CC_STDC): Use them.
2764         (_AC_PROG_CC_STDC): Remove.
2765         (AC_C_PROTOTYPES): Use ac_cv_prog_cc_c89, not ac_cv_prog_cc_stdc.
2766         * THANKS: Add Roger Leigh.
2768 2004-12-30  Noah Misch  <noah@cs.caltech.edu>
2770         * bin/autoreconf.in (autoreconf_current_directory):  AM_INIT_AUTOMAKE
2771         signals that the package uses Automake; a `Makefile.am' is typical but
2772         not essential.  Reported by Magnus Therning.
2773         * tests/torture.at (autoreconf.): New banner.
2774         (autoreconf and non-AC configure): Rename to `Non-Autoconf
2775         AC_CONFIG_SUBDIRS'.
2776         (autoreconf an empty directory): Rename to `Empty directory'.
2777         (Unusual Automake input files): New test.
2779 2004-12-30  Noah Misch  <noah@cs.caltech.edu>
2781         * lib/autotest/general.m4 (AT_CAPTURE_FILE): New macro.
2782         (AT_SETUP): Clear AT_capture_files.
2783         (_AT_CHECK): On failure, log each of AT_capture_files.  Fix comment.
2784         (AT_KEYWORDS): Fix comment typo.
2785         * tests/autotest.at (AT_CHECK_AT): Use AT_CAPTURE_FILE.
2786         * tests/local.at (AT_CHECK_CONFIGURE): Use AT_CAPTURE_FILE.
2787         * doc/autoconf.texi (Writing testsuite.at): Document AT_CAPTURE_FILE.
2789 2004-12-29  Albert Chin-A-Young  <china@thewrittenword.com>
2791         * lib/autoconf/programs.m4 (_AC_FEATURE_CHECK_LENGTH):
2792         If the variable to set is already set, set ac_cv_path_$1
2793         to the preset value so caller can assume ac_cv_path_$1
2794         is available.  (trivial change)
2796 2004-12-27  Noah Misch  <noah@cs.caltech.edu>
2798         * BUGS (Minor Problems): Warn about makefile limitations.
2799         * Makefile.am: Find and update `INSTALL' in $(srcdir).
2800         * man/Makefile.am: Find and update manual pages in $(srcdir).
2802 2004-12-24  Eric Blake  <ebb9@byu.net>
2804         * lib/m4sugar/m4sh.m4 (_AS_DETECT_BETTER_SHELL): Test candidate
2805         shells in subshell, to avoid noise from ash.  (trivial change)
2807 2004-12-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2809         * doc/autoconf.texi (Limitations of Builtins) <case>: Mention
2810         problems with SunOS ksh and backslash escaping, Bourne shells and
2811         closing brackets (both within character classes).  Bug reported
2812         against Libtool by Alexander Kurz <alexander.kurz@qsc.de>.
2813         <read>: New entry.  Mention non-availability of -r.
2815 2004-12-21  Akim Demaille  <akim@epita.fr>
2817         * lib/autotest/general.m4 (AT_LINE): Don't add srcdir here, to
2818         avoid cluttering displayed messages.  Rather, prepend srcdir where
2819         AT_LINE is used for log files.
2821 2004-12-21  Stepan Kasal  <kasal@ucw.cz>
2823         * lib/autoconf/status.m4: Quote ``$tmp'' in many places.
2824         * lib/m4sugar/m4sh.m4 (AS_TMPDIR): Fix the comment, as traps are
2825           no longer part of the macro, quote the occurrence of ``$tmp''.
2826         * doc/autoconf.texi (Forbidden Patterns): Typo.
2828 2004-12-21  Akim Demaille  <akim@epita.fr>
2830         * lib/autotest/general.m4 (AT_INIT): Make sure the "ok" etc. are
2831         separated from the test title by forcing a white space.
2833 2004-12-21  Akim Demaille  <akim@epita.fr>
2835         Enable Emacs navigation within testsuite.log files.
2837         * lib/autotest/general.m4 (AT_CLEANUP): Add an hint for Emacs to
2838         use the compilation mode.
2839         (AT_LINE): Point to the srcdir.
2841 2004-12-19  Noah Misch  <noah@cs.caltech.edu>
2843         * tests/Makefile.am (installcheck-local): Use $(bindir).
2844         (check-local, installcheck-local): Pass TESTSUITEFLAGS.
2845         * doc/autoconf.texi (Making testsuite Scripts): Recommend the same
2846         Makefile.am scheme Autoconf now uses.
2848 2004-12-18  Noah Misch  <noah@cs.caltech.edu>
2850         * lib/m4sugar/m4sugar.m4 (m4_qlen, m4_qdelta): New macros.
2851         * lib/autotest/general.m4 (AT_SETUP): Use m4_qdelta.
2853 2004-12-18  Noah Misch  <noah@cs.caltech.edu>
2855         * lib/autotest/general.m4 (_AT_DECIDE_TRACEABLE): New macro.
2856         (_AT_CHECK): Use it.
2857         * lib/m4sugar/m4sh.m4 (AS_ESCAPE_FOR_EXPAND): Remove.
2858         (AS_ESCAPE): Fix comment.
2859         * tests/autotest.at: Adjust section banner comments.
2860         (AT_CHECK_AT): Accept STATUS and STDERR.
2861         (AT_CHECK_AT_TEST): Likewise.
2862         (Invalid brace-enclosed parameter expansion)
2863         (Multiline command from M4 expansion)
2864         (Double-M4-quoted command): New tests.
2866 2004-12-17  Paul Eggert  <eggert@cs.ucla.edu>
2868         * doc/autoconf.texi: Update GNU FDL version from 1.1 to 1.2.
2870 2004-12-17  Akim Demaille  <akim@epita.fr>
2872         * lib/autoconf/general.m4 (AC_SUBST, AC_SUBST_FILES): Pass $1 to
2873         m4_pattern_allow.
2874         Suggested by Alexandre Duret-Lutz.
2875         * doc/autoconf.texi (Setting Output Variables): Catch up.
2877 2004-12-17  Stepan Kasal  <kasal@ucw.cz>
2879         * lib/m4sugar/m4sh.m4 (_AS_TEST_PREPARE): Fix comment.
2881 2004-12-17  Stepan Kasal  <kasal@ucw.cz>
2883         * lib/autoconf/general.m4 (_AC_LIBOBJ): We can use AC_SUBST/2,
2884           remove the comment which said we cannot.
2886 2004-12-17  Stepan Kasal  <kasal@ucw.cz>
2888         Add a specialized check for resolv.h.  Thanks to Gerrit P. Haase,
2889         Reini Urban and Paul Eggert for reporting the dependencies.
2891         * lib/autoconf/headers.m4 (AC_HEADER_RESOLV): New macro.
2892         * doc/autoconf.texi (AC_HEADER_RESOLV): Document it.
2893         (AC_HEADER_STAT): @cvindex{STAT_MACROS_BROKEN}, not @acindex.
2895 2004-12-17  Stepan Kasal  <kasal@ucw.cz>
2897         * bin/autoscan.in: Open autoscan.log only after ``parse_args'';
2898           so that eg. ``autoscan --help'' doesn't truncate it.
2900 2004-12-15  Nicolas Joly  <njoly@pasteur.fr>
2902         * lib/autoconf/programs.m4 (_AC_FEATURE_CHECK_LENGTH): Remove
2903         generated conftest files.
2905 2004-12-13  Noah Misch  <noah@cs.caltech.edu>
2907         * lib/autotest/general.m4 (_AT_CHECK) [--trace]: Do not enable shell
2908         tracing on commands with possibly-escaped newlines.
2909         * doc/autoconf.texi (Writing testsuite.at): Delete documentation of the
2910         discontinued behavior and its implications.
2911         * tests/autotest.at (BS-newline in command, ^BS-newline in command)
2912         (BSx641-newline in command, BS-BS-newline in command)
2913         (BSx640-newline in command, Newline-CODE-BS-newline in command)
2914         (Single-quote-BS-newline in command)
2915         (Single-quote-newline-BS-newline in command): New tests.
2917 2004-12-13  Stepan Kasal  <kasal@ucw.cz>
2919         * lib/m4sugar/m4sh.m4 (AS_EXECUTABLE_P): Use test -f && test -x
2920           on platforms where it works.
2921         (_AS_TEST_PREPARE): Test for ``test -x''.
2922         (_AS_BROKEN_TEST_PREPARE): Nuke.
2924 2004-12-13  Stepan Kasal  <kasal@ucw.cz>
2926         * lib/m4sugar/m4sh.m4 (AS_TMPDIR): Move the trap commands ...
2927         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): ... here;
2928           give only 4-letter prefix to AS_TMPDIR, comment fixed.
2929         * lib/autoconf/programs.m4 (_AC_PATH_PROG_FEATURE_CHECK): Don't
2930           create the temporary directory.
2931         (_AC_FEATURE_CHECK_LENGTH): Work in current directory.
2933 2004-12-12  Kelley Cook  <kcook@gcc.gnu.org>
2935         * bin/autoheader.in: Exit if no AC_CONFIG_HEADERS was found.
2936         (trivial change)
2938 2004-12-12  Alexandre Duret-Lutz  <adl@gnu.org>
2940         * doc/autoconf.texi (Limitations of Usual Tools) <expr (:)>: Typo.
2942 2004-12-11  Noah Misch  <noah@cs.caltech.edu>
2944         * lib/autotest/general.m4 (_AT_CHECK) [--trace]: Rework a shell pattern
2945         to avoid using a negated character class.  Reported by Nicolas Joly.
2946         * tests/local.at (AT_CHECK_SHELL_SYNTAX): Check for similar constructs.
2948 2004-12-10  Paul Eggert  <eggert@cs.ucla.edu>
2950         * man/Makefile.am (autoconf.1, autoheader.1, autom4te.1, autoreconf.1,
2951         autoscan.1, autoupdate.1, ifnames.1, config.guess.1, config.sub.1):
2952         Don't depend on .x file explicitly, since "make" does that for us.
2953         Suggested by Stepan Kasal.
2955         * bin/Makefile.am (MOSTLYCLEANFILES): Renamed from CLEANFILES.
2956         Add *.tmp.
2957         (autoconf, autoheader, autom4te, autoreconf, autoscan, autoupdate,
2958         ifnames): Factor common code.  And they said it couldn't be done!
2960 2004-12-09  Paul Eggert  <eggert@cs.ucla.edu>
2962         * bin/.cvsignore: Add autoconf.in.
2963         * tests/.cvsignore: Add wrapper.in.
2964         * lib/autotest/general.m4: Escape '$' in case pattern.
2966 2004-12-09  Noah Misch  <noah@cs.caltech.edu>
2968         * man/Makefile.am (autoconf.1): Regenerate when `autoconf.as' changes.
2970         * lib/autotest/general.m4 [--trace] (AT_INIT): Do not `set -v'.
2972         * tests/autotest.at: New file.
2973         * tests/suite.at: Include it.
2974         * tests/Makefile.am: Distribute it.
2976         * lib/autotest/general.m4 [--trace] (_AT_CHECK): Do not enable
2977           shell tracing on a command that could contain multiple lines.
2978         * doc/autoconf.text: Document that fact and its implications.
2979         * lib/m4sugar/m4sh.m4 (AS_ESCAPE_FOR_EXPAND): New macro.
2980         * tests/autotest.at (Multiline backquote command substitution,
2981           Multiline parameter expansion, Literal multiline command,
2982           Multiline parenthetical command substitution): Remove XFAIL.
2984 2004-12-09  Paul Eggert  <eggert@cs.ucla.edu>
2986         * doc/autoconf.texi (Libraries): Clarify problems with AC_CHECK_LIB
2987         and suggest AC_SEARCH_LIBS.  Suggested by Noah Misch and Stepan Kasal.
2989 2004-12-08  Noah Misch  <noah@cs.caltech.edu>
2991         * configure.ac (test suite): Cease to generate wrapper scripts.
2992         * configure: Regenerate.
2993         * lib/freeze.mk (MY_AUTOM4TE): Wrap the uninstalled autom4te directly.
2994         (m4f_dependencies): Adjust accordingly.
2995         * tests/Makefile.am (Wrappers): Generate wrapper scripts.
2996         (wrapper.in): Generate it in the build directory.
2997         (MAINTAINERCLEANFILES): Delete wrapper.in.
2998         (CLEANFILES): Add wrapper.in.
2999         * tests/wrapper.as: Move AS_INIT to very top, preserving copyright in
3000         the output.  Replace each $as_me with a @wrap_program@.
3001         * tests/wrapper.in: Delete it; we always build it.
3003         * bin/Makefile.am (autoconf.in): Generate it in the build directory.
3004         (EXTRA_DIST): Remove autoconf.in.
3005         (CLEANFILES): Add autoconf.in.
3006         (autoconf): Find autoconf.in in the build directory.
3007         * bin/autoconf.in: Delete it; we always build it.
3009 2004-12-08  Noah Misch  <noah@cs.caltech.edu>
3011         * lib/autotest/general.m4 (AT_INIT): Replace a `tr' with a `sed'.  Join
3012         PATH members so as to not prepend an empty element.  Move a comment.
3013         * Makefile.am (SUBDIRS): Build in `tests' last.
3014         * tests/Makefile.am (installcheck-local): Add check-local dependencies.
3016 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
3018         * lib/mdate-sh: Don't use "set - x`$ls_command /`", as zsh mishandles
3019         the spaces inside $ls_command.  Problem reported by Loulou Pouchet in
3020         <http://lists.gnu.org/archive/html/autoconf/2004-12/msg00074.html>.
3021         Don't use "set - x"; plain "set x" is enough, and simplifies debugging.
3023 2004-12-07  Stepan Kasal  <kasal@ucw.cz>
3025         * lib/autoconf/functions.m4 (AC_FUNC_GETMNTENT): Fix typo in previous
3026         patch: extra "-l"s.
3028 2004-12-06  Paul Eggert  <eggert@cs.ucla.edu>
3030         * lib/autoconf/functions.m4 (AC_FUNC_GETMNTENT): Check libc before
3031         looking elsewhere for getmntent.  Problem reported by Mark D. Baushke.
3032         * doc/autoconf.texi (Particular Functions): Mention new behavior.
3034 2004-12-03  Stepan Kasal  <kasal@ucw.cz>
3036         * lib/autoconf/general.m4 (AC_DEFINE, AC_DEFINE_UNQUOTED): Factor
3037           out the common code to ...
3038         (_AC_DEFINE_Q): ... a new macro; simplify the condition about the
3039           value of the #define--default to 1, iff the macro was called
3040           with exactly one parameter.
3042 2004-12-02  Paul Eggert  <eggert@cs.ucla.edu>
3044         * lib/autoconf/functions.m4 (AC_FUNC_MEMCMP): Use
3045         "char c = '\200';" rather than "char c = 0x80;" as the
3046         latter doesn't conform to the strict C standard due to
3047         overflow on signed char hosts.
3049         * lib/autoconf/c.m4 (_AC_PROG_CC_STDC): Prefer -qlanglvl=extc89
3050         to -qlanglvl=ansi.  We don't want to disable extensions.
3052 2004-11-29  Paul Eggert  <eggert@cs.ucla.edu>
3054         * doc/autoconf.texi (Particular Programs): @code{$PATH} -> @env{PATH}.
3055         (Using Autotest, testsuite Scripts, Writing testsuite.at):
3056         Reword slightly to avoid some English-language problems noted
3057         by Ralf Wildenhues in:
3058         http://lists.gnu.org/archive/html/autoconf-patches/2004-11/msg00027.html
3060 2004-11-29  Stepan Kasal  <kasal@ucw.cz>
3062         * NEWS: Add ^L above each release.
3064 2004-11-28  Paul Eggert  <eggert@cs.ucla.edu>
3066         Fix documentation problems reported by Russ Boylan in
3067         <http://lists.gnu.org/archive/html/bug-autoconf/2004-11/msg00056.html>,
3068         along with some nearby cruft.
3069         * doc/autoconf.texi (Libtool): Libtool can be used without
3070         Automake (not without Autoconf).
3071         (Introduction): Mention lists.gnu.org.
3072         * BUGS: Don't mention bugs.gnu.org.
3073         Remove mention of ancient libtool compatibility problem.
3074         * NEWS: Mention that bugs.gnu.org is kaput.
3075         * README: Likewise.  Mention where mailing list archives can be found.
3077 2004-11-28  Stepan Kasal  <kasal@ucw.cz>
3079         * HACKING: Refer to "coreutils", not "File, Shell or Text utils".
3080         * lib/m4sugar/m4sh.m4 (AS_HELP_STRING): A typo in the comment.
3082 2004-11-26  Paul Eggert  <eggert@cs.ucla.edu>
3084         * doc/autoconf.texi (Pretty Help Strings): Go back to
3085         single-quoting assignments to cache variables.
3087 2004-11-23  Stepan Kasal  <kasal@ucw.cz>
3089         * doc/autoconf.texi (Pretty Help Strings): Fix quoting issues
3090         with the examples; fix the bug in MY_ARG_WITH example reported
3091         by Alexandre Duret-Lutz.
3092         * lib/autoconf/general.m4 (AC_ARG_ENABLE, AC_ARG_ENABLE): Enable
3093         expansion of $1 in the comment emitted to configure.
3095 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
3097         * doc/autoconf.texi (Pretty Help Strings): Fix typo
3098         in my editing of the previous patch.  Problem reported
3099         by Alexandre Duret-Lutz.
3101 2004-11-22  Stepan Kasal  <kasal@ucw.cz>
3103         * doc/autoconf.texi (Autoconf Language): Explain that
3104         ``descriptions'' may not be double quotes.
3105         (Quotation Rule Of Thumb): Likewise.
3106         (Pretty Help Strings): Likewise; remove the wrong comment;
3107         simplify the examples and improve their quoting.
3109 2004-11-13  Stepan Kasal  <kasal@ucw.cz>
3111         * lib/autoconf/programs.m4 (_AC_FEATURE_CHECK_LENGTH): Don't check
3112         the $1_found variable, don't test whether the file is executable;
3113         Both things are checked ...
3114         (_AC_PATH_PROG_FEATURE_CHECK): ... here; AS_EXECUTABLE_P replaces
3115         the former ``test -f''.
3116         * lib/m4sugar/m4sh.m4 (_AS_TEST_PREPARE): Fix a typo.
3118 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
3120         * doc/autoconf.texi (Limitations of Usual Tools): Avoid cp -r;
3121         use cp -R instead.
3123 2004-11-10  Derek R. Price  <derek@ximbiot.com>
3125         * doc/autoconf.texi (Limitations of Usual Tools): Note `cp -r'
3126         limitations.  Reorder paragraphs for clarity.
3128 2004-10-11  Paul Eggert  <eggert@cs.ucla.edu>
3130         * doc/autoconf.texi: Standardize spelling of "Posix" (as opposed
3131         to "POSIX" or "@acronym{POSIX}"), and similarly for "DOS
3132         variants", "Unix", and some related minor wording fixups.
3134         (Shellology, Special Shell Variables): Document that the Zsh
3135         problem with NULLCMD was fixed in zsh 3.1.6-dev-18.  Thanks
3136         to Alexandre Duret-Lutz for this info.
3138 2004-10-10  Alexandre Duret-Lutz  <adl@gnu.org>
3140         * doc/autoconf.texi (One-Shot Macros): New node.
3142 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
3144         * doc/autoconf.texi (Function Portability): Fix misdescription
3145         of putenv.  Problem reported by Michael Wardle.
3147 2004-09-22  Paul Eggert  <eggert@cs.ucla.edu>
3149         * doc/autoconf.texi (auindex): New macro.
3150         (AU_DEFUN): Use it to fix the bug when the index contained AC_AU_DEFUN.
3151         Problem reported by Stepan Kasal.
3153 2004-09-05  Paul Eggert  <eggert@cs.ucla.edu>
3155         Fix problems reported by Andreas Buening in:
3156         http://lists.gnu.org/archive/html/autoconf-patches/2004-04/msg00004.html
3157         * lib/autoconf/programs.m4 (AC_PROG_MAKE_SET): Set SHELL=/bin/sh
3158         in test makefile.
3159         * lib/autotest/general.m4 (AT_INIT): Don't assume /dev/null is
3160         readable; it's not true in OS/2-emx.
3162 2004-09-04  Paul Eggert  <eggert@cs.ucla.edu>
3164         * lib/autoconf/libs.m4 (_AC_PATH_X_XMKMF): If xmkmf returns
3165         "/usr/include", clear ac_x_includes instead of leaving it as "no"
3166         (trivial change).  Problem and patch reported by Andrew Church in:
3167         http://lists.gnu.org/archive/html/bug-autoconf/2004-04/msg00016.html
3169 2004-09-03  Paul Eggert  <eggert@cs.ucla.edu>
3171         * doc/autoconf.texi: Give AC_DEFINE and AC_DEFINE_UNQUOTED
3172         three args in examples.  Problem reported by Frederik Fouvry in:
3173         http://lists.gnu.org/archive/html/bug-autoconf/2004-09/msg00017.html
3174         Also, fix some minor spacing and punctuation bugs.
3176 2004-09-02  Akim Demaille  <akim@epita.fr>
3178         * doc/autoconf.texi (Limitations of Builtins): Swap "cd" and
3179         "case" to restore ordering.
3180         Reported by Stepan Kasal.
3182 2004-08-26  Akim Demaille  <akim@epita.fr>
3184         * doc/autoconf.texi: Minor typos and stylos.
3186 2004-08-20  Paul Eggert  <eggert@cs.ucla.edu>
3188         * configure.ac (AC_INIT): Bump to 2.59c.
3190 2004-08-20  Paul Eggert  <eggert@cs.ucla.edu>
3192         Version 2.59b.
3194         * README: Add advice about m4 1.4.2.
3196         * Makefile.cfg (wget_files): Remove config.guess, config.sub,
3197         texinfo.tex for now (done by hand now).
3198         * Makefile.maint (wget_files, cvs_files):
3199         Remove ansi2knr.c; nobody uses it.
3200         (ansi2knr.c-url_prefix): Remove.
3201         (cvs-update): Fix test for failure.  I don't know why it ever
3202         worked...
3204         * doc/autoconf.texi: Update URLs, some of which went stale.
3205         Use @uref rather than @href.
3207         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ARGS): Have configure
3208         handle "--" as per POSIX.  Suggested by Paul Pogonyshev.
3210         * config/config.guess, config/config.sub, config/elisp-comp,
3211         config/install-sh, config/mkinstalldirs, config/texinfo.tex,
3212         doc/fdl.texi, doc/standards.texi: Sync with master copy.
3214         * NEWS, TODO, configure.ac, bin/autoscan.in,
3215         bin/autoupdate.in, bin/ifnames.in, doc/autoconf.texi,
3216         doc/install.texi, lib/Autom4te/Configure_ac.pm,
3217         lib/Autom4te/FileUtils.pm, lib/autoconf/general.m4,
3218         lib/autoconf/programs.m4, lib/autoconf/status.m4,
3219         lib/autotest/general.m4, lib/m4sugar/m4sh.m4,
3220         lib/m4sugar/m4sugar.m4, tests/local.at, tests/m4sh.at,
3221         tests/tools.at, tests/torture.at:
3222         Use "file name" rather than "filename" or "path",
3223         to be consistent with the terminology of the GNU coding standards.
3225 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
3227         * lib/autoconf/c.m4 (AC_LANG_BOOL_COMPILE_TRY(C),
3228         AC_C_LONG_DOUBLE): Undo 2004-06-04 change, as it didn't work with
3229         HP-UX 11.23 cc/aCC or Tru64 4.0 cc.  Problem reported by Noah Misch in
3230         <http://lists.gnu.org/archive/html/autoconf/2004-07/msg00004.html>.
3232         More fixes to support spaces in the name of the build directory.
3233         This isn't a complete fix but it's an improvement.
3235         * bin/autoconf.as (autom4te_options): New var.
3236         Use it instead of appending to AUTOM4TE, so that we can allow
3237         spaces in the build directory's absolute name.
3238         * bin/autoheader.in ($autoconf): Allow spaces in file names.
3239         * lib/autotest/general.m4 (AT_INIT, AT_CLEANUP, _AT_CHECK,
3240         AT_CHECK_NOESCAPE): Likewise.
3241         * tests/wrapper.as (testdir, AUTOM4TE_CFG, autom4te_perllibdir,
3242         main program): Likewise.
3244 2004-08-18  Paul Eggert  <eggert@cs.ucla.edu>
3246         * lib/autoconf/general.m4 (_AC_INIT_HELP): Quote $ac_popdir uses.
3247         From Ralf Corsepius in:
3248         http://lists.gnu.org/archive/html/autoconf-patches/2004-08/msg00014.html
3250 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
3252         * doc/autoconf.texi (Function Portability): Document isinf and
3253         and isnan.  From a suggestion by Kevin Ryde.
3255         * lib/Autom4te/General.pm (END): Return correct exit status even
3256         if unlink succeeds and sets $?.  Needed with Solaris 8's perl 5.00503.
3258 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
3260         * tests/torture.at (Deep Package): Use configure.in, not configure.ac,
3261         for compatibility with Automake 1.4.  Reported by J C Fitzgerald in
3262         <http://lists.gnu.org/archive/html/bug-autoconf/2003-08/msg00051.html>.
3264 2004-08-04  Alexandre Duret-Lutz  <adl@gnu.org>
3266         * lib/autoconf/general.m4 (AC_REQUIRE_AUX_FILE): New empty macro.
3267         (AC_CANONICAL_BUILD): Call it to require config.sub and config.guess.
3268         * lib/autoconf/programs.m4 (AC_PROG_INSTALL): Likewise for install-sh.
3269         * doc/autoconf.texi (Input): Document AC_REQUIRE_AUX_FILE.
3270         * lib/autom4te.in (Automake-preselections): Preselect
3271         AC_REQUIRE_AUX_FILE.  Automake 1.10 will trace it.
3273 2004-08-02  Alexandre Duret-Lutz  <adl@gnu.org>
3275         * lib/autom4te.in (Automake-preselections): Preselect
3276         AC_CANONICAL_BUILD and AC_CANONICAL_TARGET.  Automake 1.9.1 will
3277         trace them.
3279 2004-07-29  Paul Eggert  <eggert@cs.ucla.edu>
3281         * lib/m4sugar/m4sh.m4 (_AS_BOURNE_COMPATIBLE): Set BIN_SH, for
3282         Tru64.
3283         * doc/autoconf.texi (Shellology): Mention BIN_SH.
3284         Document problem with "`""`" in pdksh POSIX mode.
3286 2004-07-27  Paul Eggert  <eggert@cs.ucla.edu>
3288         * lib/m4sugar/m4sh.m4 (_AS_BOURNE_COMPATIBLE): Use "set -o posix"
3289         with pdksh, too.  Problem reported by Patrick Welche via
3290         Gary V. Vaughan.
3291         * doc/autoconf.texi (Shellology): Note that set -o posix is
3292         useful for pkdsh, too.
3294 2004-06-24  Paul Eggert  <eggert@cs.ucla.edu>
3296         * lib/m4sugar/m4sh.m4 (_AS_DETECT_BETTER_SHELL): Require
3297         _AS_UNSET_PREPARE, so that we can use $as_unset directly.
3298         Don't fail if ENV or BASH_ENV is readonly.
3299         (AS_SHELL_SANITIZE): Don't fail if ENV, MAIL, MAILPATH, LC_ALL,
3300         etc. are read only.  Problem reported by Ludovic Courtes.
3302 2004-06-23  Noah Misch  <noah@cs.caltech.edu>
3304         * lib/m4sugar/m4sh.m4 (_AS_BOURNE_COMPATIBLE): If the shell is
3305         zsh, disable GLOB_SUBST to avoid backslash handling problems.
3306         (trivial change)
3308 2004-06-04  Paul Eggert  <eggert@cs.ucla.edu>
3310         * doc/autoconf.texi (File System Conventions): Warn about
3311         names like "aux".  Problem reported by Eric Blake.
3313         * lib/autoconf/c.m4 (AC_LANG_BOOL_COMPILE_TRY (C)): Use division
3314         by zero instead of array size, so that we can use any arithmetic
3315         constant expression (instead of requiring an integer constant
3316         expression).  This allows us to test expressions like DBL_MAX <
3317         LDBL_MAX, which didn't conform to the C standard using the old
3318         method.
3319         (AC_C_LONG_DOUBLE): Put back in the tests for LDBL_MAX and LDBL_EPSILON,
3320         now that we can do floating-point tests at compile time.
3322 2004-06-02  Paul Eggert  <eggert@cs.ucla.edu>
3324         * lib/autoconf/c.m4 (AC_C_LONG_DOUBLE): Don't check LDBL_MAX
3325         and LDBL_EPSILON, as the resulting expression isn't an
3326         integer constant expression and violates the C standard.
3327         Problem reported by Nelson H. F. Beebe.  Also, check
3328         for "L" suffix, and check that long double doesn't have
3329         worse range or precision than double, that mixed-mode
3330         arithmetic doesn't generate a diagnostic, that double
3331         constants fit in long double.
3333 2004-06-03  Kevin Ryde  <user42@zip.com.au>
3335         * doc/autoconf.texi (Function Portability): Add notes on free(NULL),
3336         malloc(0) and realloc(NULL,size).
3338         * doc/autoconf.texi (Shell Substitutions): Spelling error reported by
3339         Bob Proulx.
3341 2004-05-31  Paul Eggert  <eggert@cs.ucla.edu>
3343         * lib/autoconf/headers.m4 (HAVE_STDBOOL_H): Detect _Bool bug
3344         in HP aC++/ANSI C B3910B A.05.55 [Dec 04 2003].  Problem reported
3345         by Jim Meyering.
3347 2004-05-26  Paul Eggert  <eggert@cs.ucla.edu>
3349         * doc/autoconf.texi (Limitations of Builtins): Mention that ! COMMAND
3350         can be rewritten using if-then-else.  Suggested by Bruno Haible.
3352 2004-05-25  Paul Eggert  <eggert@cs.ucla.edu>
3354         * doc/autoconf.texi (testsuite Scripts): Fix typo.
3355         Problem reported by Stepan Kasal.
3357 2004-05-24  Paul Eggert  <eggert@cs.ucla.edu>
3359         * tests/Makefile.am (autoconfdir): Fix to match comment (trivial
3360         change).  Patch reported by Ralf Wildenhues in
3361         <http://mail.gnu.org/archive/html/bug-autoconf/2004-05/msg00092.html>.
3363         * lib/autoconf/functions.m4 (AC_FUNC_MBRTOWC): Don't assume that a
3364         function F exists if the compiler and linker let you compile an
3365         expression like (F != 0).  Recent versions of GCC optimize away
3366         the reference to F in that case, since every function address must
3367         be nonzero, so the link succeeds even if F does not exist.
3368         Problem reported by Manu in
3369         <http://mail.gnu.org/archive/html/bug-gnu-utils/2004-05/msg00060.html>.
3371         * doc/autoconf.texi (Systemology): Standardize on the spelling of
3372         "Unix".  Many uses changed.
3373         (Limitations of Builtins): Explain better why the ! command isn't
3374         portable.
3376 2004-05-22  Alexandre Duret-Lutz  <adl@gnu.org>
3378         * lib/autom4te.in (Automake-preselections): Preselect
3379         LT_SUPPORTED_TAG in lieu of AC_LIBTOOL_TAGS.
3381 2004-05-19  Kevin Ryde  <user42@zip.com.au>
3383         * doc/autoconf.texi (Function Portability): Add strerror_r, cross
3384         referencing AC_FUNC_STRERROR_R.
3386         * doc/autoconf.texi (Particular Functions): In AC_FUNC_CLOSEDIR_VOID,
3387         note pessimistic assumption when cross compiling.
3389 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
3391         * doc/autoconf.texi (Limitations of Make): Note that BSD make
3392         (until 2004) invoked subcommands with sh -e, contra POSIX.
3393         Reported by Kevin Ryde.
3395 2004-05-10  Eric Sunshine  <sunshine@sunshineco.com>
3397         * programs.m4 (_AC_PROG_GREP): Fixed bug where PATH argument handed to
3398         _AC_PATH_PROG_FEATURE_CHECK contained leading whitespace (i.e.
3399         "        $PATH:/usr/xpg4/bin"). This resulted in bogus tests, such as
3400         `test -f "        /usr/bin/grep"', which _always_ failed.
3401         (AC_PROG_SED): Ditto bogus PATH fix.
3402         * autoconf.texi (AC_PROG_GREP): Properly document that this macro
3403         requires that grep correctly supports _multiple_ `-e' options, rather
3404         than stating only that grep should accept `-e'.
3406 2004-05-03  Paul Eggert  <eggert@cs.ucla.edu>
3408         Port to C99, which requires that 'exit' be declared.
3410         * lib/autoconf/c.m4 (AC_C_BIGENDIAN): Use AC_INCLUDES_DEFAULT
3411         to ensure that stdlib.h is included.
3412         * lib/autoconf/functions.m4 (_AC_LIBOBJ_ALLOCA, AC_FUNC_SETPGRP,
3413         AC_FUNC_STRTOD, AC_FUNC_SETVBUF_REVERSED, AC_FUNC_FORK, _AC_FUNC_FORK,
3414         _AC_FUNC_VFORK, AC_FUNC_WAIT3): Likewise.
3415         * lib/autoconf/specific.m4 (AC_SYS_RESTARTABLE_SYSCALLS): Likewise.
3416         * lib/autoconf/types.m4 (AC_TYPE_GETGROUPS): Likewise.
3417         * lib/autoconf/headers.m4 (AC_HEADER_STDC): Include <stdlib.h>
3418         when using 'exit' in a test; C99 requires that 'exit' be declared.
3420 2004-05-02  Paul Eggert  <eggert@cs.ucla.edu>
3422         * doc/autoconf.texi (Particular Programs): AC_PROG_GREP
3423         now prefers 'grep' implementations that accept -e.
3424         (Limitations of Usual Tools): Describe problems of traditional
3425         egrep and fgrep with long input lines, and of traditional grep
3426         with -e.
3427         * lib/autoconf/programs.m4 (AC_PROG_GREP): Check for -e, too.
3428         (_AC_PROG_GREP): Assume 3rd arg is properly quoted for the shell.
3429         All callers changed.  Append /usr/xpg4/bin to the PATH, for
3430         Solaris.
3431         (_AC_FEATURE_CHECK_LENGTH): Discard stderr, so we don't bother
3432         the user with complaints about multiple -e options.
3433         * tests/local.at (AC_STATE_SAVE): Use $GREP, not grep.
3434         Define it with AC_PROG_GREP.
3435         * configure.ac (AC_PROG_GREP): Add.
3436         * lib/freeze.mk (GREP): New macro.
3438 2004-05-02  Eric Sunshine  <sunshine@sunshineco.com>
3440         * lib/m4sugar/m4sh.m4 (_AS_DETECT_BETTER_SHELL): Consult $SHELL as
3441         a possible candidate only after all others fail, rather than
3442         consulting it first.  This improves backward compatibility by
3443         better reflecting the way shell selection occurred in previous
3444         versions of Autoconf, and should help to avoid triggering latent
3445         problems in other packages, such as the one in Automake where zsh
3446         is not handled robustly:
3447         http://mail.gnu.org/archive/html/automake/2004-04/msg00095.html
3448         Although it is not Autoconf's responsibility to work around
3449         problems in Automake, it nevertheless makes sense to avoid
3450         introducing unnecessary incompatibilites.
3452 2004-04-22  Albert Chin-A-Young  <china@thewrittenword.com>,
3453             Gary V. Vaughan  <gary@gnu.org>
3455         * lib/autoconf/programs.m4 (_AC_FEATURE_CHECK_LENGTH): Don't guess
3456         how deeply nested we are when a suitable tool is found, set the
3457         ac_path_TOOL_found flag.
3458         (_AC_PATH_PROG_FEATURE_CHECK): Encapsulate knowledge of how deeply
3459         nested we are in this macro.  Break out of all 3 nested loops if
3460         ac_path_TOOL_found is set.
3462 2004-04-21  Gary V. Vaughan  <gary@gnu.org>
3464         * lib/autoconf/programs.m4 (_AC_FEATURE_CHECK_LENGTH): Break out
3465         of the _AS_PATH_WALK loop too if GNU flavor is found.
3467 2004-04-21  Alexandre Duret-Lutz  <adl@gnu.org>
3469         * doc/autoconf.texi (Limitations of Make): Update documentation
3470         for `$<'.  New entry `Long lines', based on a report from Simon
3471         Josefsson.  Augment the documentation for SHELL = @SHELL@ with a
3472         paragraph about DJGPP, based on a mail from Richard Dawe.
3474 2004-04-20  Paul Eggert  <eggert@twinsun.com>
3476         * tests/c.at (C keywords): Don't assume that GCC supports
3477         "restrict" and "inline", as sufficiently-old GCC versions do not
3478         (also, GCC configured to be in pedantic C89 mode does not).
3479         Problem reported by Sumit Pandya in:
3480         http://mail.gnu.org/archive/html/autoconf/2004-04/msg00092.html
3482         * lib/autoconf/c.m4 (_AC_PROG_CC_G, _AC_PROG_CXX_G): Don't
3483         consider -g to work if it generates warnings when plain compiles
3484         don't.  Problem reported by Braden McDaniel in:
3485         http://mail.gnu.org/archive/html/autoconf-patches/2003-07/msg00014.html
3487         * doc/autoconf.texi (Slashes): New section, to document a problem
3488         reported by Jim Meyering in:
3489         http://mail.gnu.org/archive/html/bug-coreutils/2004-02/msg00060.html
3491         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Remove potential
3492         linker output files before linking, to work around IRIX 6 linker bug.
3493         Problem reported by Rainer Orth in:
3494         http://mail.gnu.org/archive/html/autoconf-patches/2004-02/msg00007.html
3496 2004-04-20  Gary V. Vaughan  <gary@gnu.org>
3498         * lib/autoconf/programs.m4 (_AC_FEATURE_CHECK_LENGTH): Make the
3499         best tool so far counter rely on the tool path variable name to
3500         avoid checks for one tool being affected by the results of running
3501         the length check on a previous tool.
3503         * lib/autoconf/programs.m4 (_AC_PROG_GREP): Take an additional
3504         match expression argument, as different greps have different
3505         regular expression flavours.
3506         (AC_PROG_FGREP): Pass 'FGREP'. fgrep treats all match chars as
3507         literals.
3508         (AC_PROG_EGREP): Pass 'EGREP$'.
3509         (AC_PROG_GREP): Pass 'GREP$'.
3511 2004-04-20  Albert Chin-A-Young  <china@thewrittenword.com>
3513         * lib/autoconf/programs.m4 (AC_PROG_GREP): Cache variable
3514         is `ac_cv_path_GREP', not `oc_cv_path_GREP'.
3516 2004-03-29  Paul Eggert  <eggert@twinsun.com>
3518         * doc/autoconf.texi (Particular Headers, Particular Types, Generic
3519         Types, Specific Compiler Characteristics, System Services,
3520         Obsolete Macros): Use 'long int', 'short int', 'unsigned int'
3521         etc. consistently instead of 'long', 'short', 'unsigned' etc.
3522         * lib/autoconf/c.m4 (AC_LANG_INT_SAVE(C), AC_C_BIGENDIAN): Likewise.
3523         * lib/autoconf/functions.m4 (AC_FUNC_MMAP, AC_FUNC_SELECT_ARGTYPES):
3524         Likewise.
3525         * lib/autoconf/headers.m4 (AC_HEADER_SYS_WAIT): Likewise.
3526         * lib/autoconf/types.m4 (AC_TYPE_GETGROUPS, AC_TYPE_SIZE_T,
3527         AC_TYPE_OFF_T): Likewise.
3528         * tests/semantics.at (AC_CHECK_TYPES: backward compatibility):
3529         Likewise.
3531         * tests/foreign.at (Libtool): Create an empty aclocal.m4, to
3532         pacify libtool 1.5.2.  Fix quoting problems in sed command.
3534 2004-03-28  Paul Eggert  <eggert@twinsun.com>
3536         * doc/autoconf.texi (Particular Structures): AC_STRUCT_TIMEZONE
3537         now defines HAVE_DECL_TZNAME if it is declared, when
3538         HAVE_STRUCT_TM_TM_ZONE is not defined.
3539         * lib/autoconf/types.m4 (AC_STRUCT_TIMEZONE): Implement this.
3540         Do not assume atoi.  Rely on HAVE_DECL_TZNAME when testing
3541         for HAVE_TZNAME.
3543 2004-03-28  Steven G. Johnson  <stevenj@fftw.org>
3545         * lib/autoconf/fortran.m4 (_AC_PROG_FC_V_OUTPUT): Corrected
3546         superfluous backslashing of quotes (") in sed expressions;
3547         thanks to Paul Eggert.
3549 2004-03-26  Steven G. Johnson  <stevenj@alum.mit.edu>
3551         * lib/autoconf/fortran.m4 (_AC_PROG_FC): new name of Intel
3552         Fortran compiler is ifort, also added pghpf; thanks to Nelson
3553         H. F. Beebe for the bug report.
3555 2004-03-26  Steven G. Johnson  <stevenj@fftw.org>
3557         * lib/autoconf/fortran.m4 (_AC_PROG_FC_V_OUTPUT): fix for
3558         quoted -cmdline argument in Portland Group compiler (bug
3559         reported by Jeffrey J. Barteet).
3561 2004-03-25  Kevin Ryde  <user42@zip.com.au>
3563         * doc/autoconf.texi (Specifying Names): Move cross_compiling ovindex to
3564         (Run Time): ... here, where it's now mentioned.
3566 2004-03-19  Alexandre Duret-Lutz  <adl@gnu.org>
3568         * doc/autoconf.texi (autom4te Invocation): Language Autoconf
3569         inherits from language Autoconf-without-aclocal-m4.
3570         (Customizing autom4te): Adjust example; the cache must now be
3571         disabled for language Autoconf-without-aclocal-m4.
3573 2004-03-16  Paolo Bonzini  <bonzini@gnu.org>
3574             Nathanael Nerode  <neroden@twcny.rr.com>
3576         * lib/autoconf/programs.m4 (AC_PATH_TOOL, AC_CHECK_TOOL,
3577         AC_CHECK_TOOLS): Warn if a cross-tool is found without
3578         a prefix.
3579         (AC_PATH_TARGET_TOOL, AC_CHECK_TARGET_TOOL,
3580         AC_CHECK_TARGET_TOOLS): New macros.
3581         * doc/autoconf.texi (Generic Programs): Document
3582         (AC_PATH_TARGET_TOOL, AC_CHECK_TARGET_TOOL,
3583         AC_CHECK_TARGET_TOOLS, and warn for future changes
3584         in the behavior of AC_PATH_TOOL, AC_CHECK_TOOL and
3585         AC_CHECK_TOOLS.
3586         (Specifying Names): Document the reason for these future
3587         behavioral changes.
3588         * tests/mktests.sh: Do not generate tests for the
3589         new macros.
3590         * NEWS: Document these changes.
3592         * doc/autoconf.texi: Avoid macros with unbraced arguments,
3593         they make TeX hang up.
3595 2004-03-15  Paul Eggert  <eggert@bogus.example.com>
3597         * NEWS: New macro AC_CHECK_ALIGNOF.
3598         * doc/autoconf.texi (Generic Compiler Characteristics): Document it.
3599         * lib/autoconf/types.m4 (AC_CHECK_SIZEOF): Use long int rather than
3600         int; avoid "a `$1'" since this isn't grammatical if $1 begins with a
3601         vowel.
3602         (AC_CHECK_ALIGNOF): New macro.
3603         * tests/mktests.sh (ac_exclude_list): Exclude AC_CHECK_ALIGNOF.
3604         * tests/semantics.at (AC_CHECK_ALIGNOF): Add tests similar to
3605         those for sizeof.
3607 2004-03-03  Paul Eggert  <eggert@twinsun.com>
3609         * bin/Makefile.am (edit): Don't use $< in a context where
3610         POSIX doesn't require support for it.  Use $@.in instead.
3611         Problem reported by Anthony N. Frasso in
3612         <http://mail.gnu.org/archive/html/autoconf/2004-03/msg00008.html>.
3613         * bin/autoscan.in, bin/autoupdate.in: Add @configure_input@ comment.
3615 2004-02-23  Gary V. Vaughan  <gary@gnu.org>
3617         * bin/autoreconf.in (autoreconf_current_directory): Recognize LT_INIT
3618         from the next generation of Libtool.
3619         * lib/autom4te.in (Autoreconf-preselections): Ditto.
3621 2004-02-20  Alexandre Duret-Lutz  <adl@gnu.org>
3623         * doc/autoconf.texi (Limitations of Usual Tools) <mkdir>: `mkdir -p'
3624         is not always thread-safe.  Report from Nathanael Nerode.
3626 2004-02-18  Paul Eggert  <eggert@twinsun.com>
3628         Fix a dependencies problem, stemming from a Autoconf 2.59 build
3629         problem on QNX reported by Stephen Rasku in
3630         <http://mail.gnu.org/archive/html/bug-autoconf/2004-02/msg00066.html>.
3632         * bin/Makefile.am ($(srcdir)/autoconf.in): Depend on
3633         $(m4sh_m4f_dependencies); this removes a FIXME.
3634         * tests/Makefile.am ($(srcdir)/wrapper.in): Likewise.
3635         (MAINTAINERCLEANFILES): Split into pieces,
3636         one per related section.  Add $(srcdir)/wrapper.in.
3638 2004-02-09  Paul Eggert  <eggert@twinsun.com>
3640         * doc/autoconf.texi (Setting Output Variables): Emphasize that
3641         AC_SUBST provides no portable way to escape literal newlines.
3643         * lib/autoconf/fortran.m4 (_AC_FC_LIBRARY_LDFLAGS): Ignore all
3644         flags of the form -lcrt*.o, not just -lcrt[01].o and -lcrtbegin.o.
3645         Darwin uses -lcrt2.o and there's little point to cataloging all
3646         the system variants.  Partial fix reported by Andreas Waechter in:
3647         http://mail.gnu.org/archive/html/autoconf-patches/2004-02/msg00006.html
3648         for bug reported by Nelson H. F. Beebe in:
3649         http://mail.gnu.org/archive/html/bug-autoconf/2003-12/msg00090.html
3651 2004-02-04  Paolo Bonzini  <bonzini@gnu.org>
3653         * doc/autoconf.texi (AU_DEFUN): Fix English,
3654         suggested by Paul Eggert.
3655         * lib/autoconf/autoupdate.m4: Correct reference to
3656         acobsolete.m4, suggested by Alexandre Duret-Lutz.
3658 2004-02-02  Paolo Bonzini  <bonzini@gnu.org>
3660         * bin/autoupdate.in: Define __file__ so that warnings
3661         refer to the correct file.
3662         * doc/autoconf.texi (AU_DEFUN): Describe more correctly
3663         the behavior of the third argument.
3664         * lib/autoconf/autoupdate.m4 (AU_DEFUN): Describe more
3665         correctly the behavior of the third argument.  Document
3666         what the three macros that AU_DEFUN defines do.  Fix
3667         warning message when the third argument includes $0
3668         (reported by Alexandre Duret-Lutz).
3670 2004-01-30  Paolo Bonzini  <bonzini@gnu.org>
3671             Eric Sunshine  <sunshine@sunshineco.com>
3672             Paul Eggert  <eggert@twinsun.com>
3674         * lib/m4sugar/m4sh.m4 (M4SH-SANITIZE): New diversion.
3675         (AS_INIT): Output shell initialization there. Removed optional
3676         parameter. Expand _AS_SHELL_FN_SPY.
3677         (AS_INIT_WITH_SHELL_FN): Removed.
3678         (_AS_SHELL_FN_SPY): New macro.
3679         (AS_DETECT_REQUIRED, AS_DETECT_SUGGESTED): New
3680         macros.
3681         (AS_SHELL_SANITIZE): Remove loop to find better shell
3682         and documentation for the parameter.
3683         (_AS_DETECT_BETTER_SHELL): Move it here.
3684         (_AS_SHELL_FN_WORK): Remove shell invocation, reformat.
3685         (_AS_RUN): Move it here, support testing with eval.
3686         (AS_REQUIRE_SHELL_FN): Require shell functions when
3687         it is used.
3688         (_AS_LINENO_WORKS): Put around braces, we do not
3689         trigger the bash bug anymore.
3690         * lib/autotest/general.m4: Document M4SH-SANITIZE, do not
3691         use AS_INIT_WITH_SHELL_FN.
3692         * bin/autoconf.in, tests/wrapper.in: Regenerated.
3694 2004-01-30  Paolo Bonzini  <bonzini@gnu.org>
3696         * bin/autoupdate.in: Trace AU_DEFINE instead of AU_DEFUN.
3697         * doc/autoconf.texi: Don't say that the third parameter
3698         is broken.
3699         * lib/autoconf/autoupdate.m4 (AU_DEFINE): New dummy macro.
3700         (AU_DEFUN): Honor the third parameter, create autoupdate
3701         macros with AU_DEFINE.
3702         * lib/autoconf/headers.m4 (AC_USG, AC_MEMORY_H,
3703         AC_DIR_HEADER): Use AU_DEFUN's third parameter.
3704         * lib/autoconf/lang.m4 (AC_LANG_SAVE): Likewise.
3705         * lib/autoconf/programs.m4 (AC_RSH): Likewise.
3706         * lib/autoconf/specific.m4 (AC_HAVE_POUNDBANG,
3707         AC_ARG_ARRAY, AC_CYGWIN, AC_EMXOS2, AC_MINGW32,
3708         AC_XENIX_DIR): Likewise.
3709         * lib/autoconf/types.m4 (AC_INT_16_BITS, AC_LONG_64_BITS,
3710         AC_STRUCT_ST_BLKSIZE, AC_STRUCT_ST_RDEV): Likewise.
3711         * lib/autoconf/status.m4: Remove FIXME.
3712         * tests/local.at (AT_CHECK_AU_MACRO): Ignore stderr, check
3713         that the macro is not present anymore in the updated
3714         configure.ac.
3715         * tests/tools.at (autoupdate AC_LINK_FILES): Ignore stderr
3716         of autoupdate.
3718 2004-01-28  Paul Eggert  <eggert@twinsun.com>
3720         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): Add 2004 to
3721         copyright years.
3722         * lib/autoconf/general.m4 (_AC_INIT_COPYRIGHT): Add 1992 thorugh
3723         2003 (except 1997) to the list of copyright years.  This undoes
3724         the 2003-05-22 change, which removed the older years from the list.
3725         * lib/autoconf/status.m4 (AC_OUTPUT): Update copyright date to 2004.
3727 2004-01-27  Gary V. Vaughan  <gary@gnu.org>
3728             Albert Chin-A-Young  <china@thewrittenword.com>
3730         * lib/autoconf/programs.m4 (AC_PROG_GREP): New macro to test for a
3731         grep or ggrep program in PATH that accepts as long lines as
3732         possible.
3733         * lib/autoconf/programs.m4 (_AC_PROG_GREP): Factor out the core of
3734         AC_PROG_GREP.
3735         (AC_PROG_EGREP, AC_PROG_FGREP): Use it to find best available
3736         egrep and fgrep respectively if $GREP -E/-F don't work.
3737         (_AC_PATH_PROG_FEATURE_CHECK): Factor out the common core of
3738         _AC_PROG_GREP, and AC_PROG_SED.
3739         (_AC_FEATURE_CHECK_LENGTH): New helper macro for finding the
3740         longest input length accepted by a command.
3741         (AC_PROG_SED): Use it.
3742         * doc/autoconf.texi (Particular Programs): Document the changes.
3743         * NEWS: Updated.
3745 2004-01-27  Paul Eggert  <eggert@twinsun.com>
3747         * bin/autoconf.as ($version): Update copyright from 2003 to 2004.
3748         * bin/autoheader.in, bin/autom4te.in, bin/autoreconf.in,
3749         bin/autoscan.in, bin/autoupdate.in, bin/ifnames.in: Likewise.
3750         * lib/autoconf/general.m4 (_AC_INIT_COPYRIGHT): Likewise.
3752         * Makefile.in, aclocal.m4, configure, bin/Makefile.in,
3753         bin/autoconf.in, config/Makefile.in, config/config.guess,
3754         config/config.sub, config/install-sh, config/mdate-sh,
3755         config/mkinstalldirs, config/texinfo.tex, doc/Makefile.in,
3756         lib/Makefile.in, lib/Autom4te/Makefile.in,
3757         lib/autoconf/Makefile.in, lib/autoscan/Makefile.in,
3758         lib/autotest/Makefile.in, lib/emacs/Makefile.in,
3759         lib/m4sugar/Makefile.in, man/Makefile.in, man/autoconf.1,
3760         man/autoheader.1, man/autom4te.1, man/autoreconf.1,
3761         man/autoscan.1, man/autoupdate.1, man/config.guess.1,
3762         man/config.sub.1, man/ifnames.1, tests/Makefile.in,
3763         tests/acc.at, tests/acfortran.at, tests/acfunctions.at,
3764         tests/acgeneral.at, tests/acheaders.at, tests/aclang.at,
3765         tests/aclibs.at, tests/acspecific.at, tests/acstatus.at,
3766         tests/actypes.at: Regenerate and/or sync with original
3767         sources.
3769 2004-01-26  Paul Eggert  <eggert@twinsun.com>
3771         * doc/autoconf.texi (Default Includes): Include <stdint.h> even if
3772         HAVE_INTTYPES_H is defined.  This is needed on Tru64 5.1b with
3773         Compac C V6.5-207 (dtk), which defines uintmax_t in <stdint.h> but
3774         not <inttypes.h>.  Problem reported by Tim Mooney in
3775         <http://mail.gnu.org/archive/html/bug-coreutils/2004-01/msg00147.html>.
3776         * lib/autoconf/headers.m4 (_AC_INCLUDES_DEFAULT_REQUIREMENTS):
3777         Likewise.
3779         * lib/autoconf/programs.m4 (AC_PROG_SED): Use diff, not sed;
3780         otherwise "make check" fails because it forbids cmp (I guess
3781         because cmp treats files as binary on DOS-like systems).
3783         * tests/mktests.sh: Update copyright date to 2004, since some tests
3784         have changed in 2004.
3786 2004-01-23  Gary V. Vaughan  <gary@gnu.org>
3788         * lib/autoconf/programs.m4 (AC_PROG_SED):  New macro to test for a
3789         non-truncating sed or gsed program in PATH.
3790         * tests/acprograms.at: Add it.
3791         * doc/autoconf.texi (Particular Programs): Document it.
3792         * NEWS: Updated.
3794 2004-01-15  Paul Eggert  <eggert@twinsun.com>
3796         * lib/autoconf/c.m4 (_AC_PROG_CC_STDC): Try -std, not -std1, since
3797         -std1 disables some useful extensions on Tru64.  Problem reported
3798         by N. Lichtmaier in
3799         <http://mail.gnu.org/archive/html/autoconf/2004-01/msg00100.html>.
3801 2004-01-14  Paul Eggert  <eggert@twinsun.com>
3803         * doc/autoconf.texi (Programming in M4sh): Document that
3804         AS_MKDIR_P succeeds if the destination is a symbolic link
3805         to an existing directory.
3806         (Limitations of Usual Tools): Note that mkdir -p might not
3807         succeed on symlinks to directories.
3809 2004-01-13  Paul Hilfinger  <hilfinger@CS.Berkeley.EDU>
3811         * lib/autoconf/autoupdate.m4 (AU_DEFUN): Grammar fix in comment.
3812         * bin/autoheader.in: Grammar fix in message.
3813         * lib/m4sugar/m4sh.m4 (AS_MKDIR_P):
3814         Test for dir before calling mkdir -p.  (trivial changes)
3816 2004-01-13  Eric Blake  <ebb9@byu.net>
3818         * doc/autoconf.texi (Obsolete Macros): In AC_TRY_COMPILE and
3819         AC_TRY_LINK, s/AC_LANG_SOURCE/AC_LANG_PROGRAM/.  (trivial change)
3821 2004-01-10  Jim Meyering  <jim@meyering.net>
3823         * doc/autoconf.texi (Running the Preprocessor): Correct grammar.
3825 2004-01-09  Paul Eggert  <eggert@twinsun.com>
3827         * lib/autoconf/general.m4: Fix bug: AC_CHECK_SIZEOF evokes a warning
3828         with `autoconf -Wall,error'.  Bug reported by Eric Blake in:
3829         http://mail.gnu.org/archive/html/autoconf-patches/2004-01/msg00000.html
3830         (_AC_COMPUTE_INT_COMPILE): Invoke _AC_COMPILE_IFELSE, not
3831         AC_COMPILE_IFELSE, since we now assume our caller invokes
3832         AC_LANG_COMPILER_REQUIRE, for symmetry with _AC_COMPUTE_INT_RUN.
3833         (_AC_COMPUTE_INT_RUN): Likewise, for _AC_RUN_IFELSE instead
3834         of AC_RUN_IFELSE; this avoids the warning mentioned above.
3835         (_AC_COMPUTE_INT): Invoke AC_LANG_COMPILER_REQUIRE.
3837 2004-01-07  Paul Eggert  <eggert@twinsun.com>
3839         * lib/autoconf/general.m4 (_AC_LIBOBJS_NORMALIZE): Avoid \$ inside
3840         `"'...'"`, as it's confusing (and I suspect it may not work on
3841         some platforms).  The code was incorrect anyway, as it assumed
3842         that \$ evaluated to itself in that context.  Reported by
3843         Alexandre Duret-Lutz.
3845 2004-01-07  Alexandre Duret-Lutz  <adl@gnu.org>
3847         * lib/autom4te.in (Automake-preselections): Preselect AC_LIBTOOL_TAGS
3848         and _LT_AC_TAGCONFIG.
3850 2004-01-06  Paul Eggert  <eggert@twinsun.com>
3852         * doc/autoconf.texi (One Macro Call): Fix an incorrect
3853         example, and add more examples.  Reported by Eric Sunshine.
3855 2004-01-05  Paul Eggert  <eggert@twinsun.com>
3857         * doc/autoconf.texi (Limitations of Usual Tools):
3858         Remove warning against "rm -fr" introduced yesterday; it
3859         was a false alarm.
3861         * bin/Makefile.am (autoconf, autoheader, autom4te, autoreconf,
3862         autoscan, autoupdate, ifnames): Don't use chmod -w.
3863         * lib/Makefile.am (autom4te.cfg): Likewise.
3864         * doc/autoconf.texi (Limitations of Usual Tools): Warn against
3865         "chmod -w".
3867 2004-01-04  Paul Eggert  <eggert@twinsun.com>
3868             Paolo Bonzini  <bonzini@gnu.org>
3870         * lib/m4sugar/m4sh.m4 (_AS_LINENO_PREPARE): Speed up sed scripts
3871         by doing lineno substitution only on lines containing "$LINENO".
3873 2004-01-04  Paul Eggert  <eggert@twinsun.com>
3875         * lib/autoconf/general.m4 (AC_ARG_PROGRAM):
3876         Use "rm -f" to remove conftest.sed, not plain "rm".
3877         Bug reported by David Relson in
3878         <http://mail.gnu.org/archive/html/autoconf/2004-01/msg00011.html>.
3880         * Makefile.am (autom4te-update):
3881         Replace "rm -rf" and "rm -fr" with "rm -f -r", as POSIX requires.
3882         * Makefile.maint (my-distcheck, do-po-update): Likewise.
3883         * doc/autoconf.texi (Guidelines): Likewise.
3884         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Likewise.
3885         * lib/autoconf/libs.m4 (_AC_PATH_X_XMKMF): Likewise.
3886         * lib/autoconf/specific.m4 (AC_SYS_LONG_FILE_NAMES): Likewise.
3887         * lib/autotest/general.m4 (AT_INIT): Likewise.
3888         * lib/m4sugar/m4sh.m4 (AS_TMPDIR): Likewise.
3889         * tests/Makefile.am (clean-local): Likewise.
3890         * tests/tortue.at (AC_CONFIG_FILES, HEADERS, LINKS and COMMANDS,
3891         srcdir): Likewise.
3892         * doc/autoconf.texi (Limitations of Usual Tools):
3893         Warn against "rm -fr".
3895 2004-01-03  Paul Eggert  <eggert@twinsun.com>
3897         * doc/autoconf.texi (Limitations of Usual Tools): Mention that cc
3898         -c -o might not work.  From a suggestion by Kevin Ryde.
3899         (C Compiler, Generating Sources, Limitations
3900         of Usual Tools, Limitations of Make, Making testsuite Scripts):
3901         Don't put '-o' after non-options, as POSIX doesn't allow this.
3902         Mention that cc's name might be gcc or c89 or whatever.
3904 2004-01-04  Kevin Ryde  <user42@zip.com.au>
3906         * doc/autoconf.texi: Add various further index entries.
3908 2003-12-29  Paul Eggert  <eggert@twinsun.com>
3910         * bin/autoreconf.in (autoreconf_current_directory):
3911         Fix typo: mkdir without umask arg.
3913 2003-12-27  Alexandre Duret-Lutz  <adl@gnu.org>
3915         * doc/autoconf.texi (Limitations of Make) <Automatic rule rewriting>:
3916         Documents OSF1/Tru64 make behavior.  Replace `VPATH = ../src' by
3917         `VPATH = ../pkg/src' in examples to make the OSF1/Tru64 make
3918         explanation clearer.
3920 2003-12-24  Andreas Schwab  <schwab@suse.de>
3922         * doc/autoconf.texi (Default Includes): Fix misspelling of
3923         AC_INCLUDES_DEFAULT.
3925 2003-12-03  Paolo Bonzini  <bonzini@gnu.org>
3927         * configure.ac: Test if sh -n works.
3928         * configure: Regenerate.
3929         * tests/atlocal.in: Store the result here.
3930         * tests/local.at (AT_CHECK_SHELL_SYNTAX): Extracted from
3931         tools.at, looking in atlocal's ac_cv_sh_n_works instead
3932         of explicitly testing.
3933         (AT_CHECK_PERL_SYNTAX): Moved from tools.at.
3934         (AT_CHECK_AUTOCONF): Test for the configure script syntax.
3935         * tests/tools.at (Syntax of the shell scripts): Simplify
3936         using AT_CHECK_SHELL_SYNTAX.
3937         (Syntax of the Perl scripts): Remove definition of
3938         AT_CHECK_PERL_SYNTAX.
3940 2003-12-03  Paolo Bonzini  <bonzini@gnu.org>
3942         * lib/m4sugar/m4sh.m4 (_AS_SHELL_FN_WORK): Redirect
3943         stderr to /dev/null.
3944         * bin/autoconf.in: Regenerate.
3945         * bin/wrapper.in: Regenerate.
3947 2003-11-26  Paolo Bonzini  <bonzini@gnu.org>
3949         * lib/m4sugar/m4sh.m4 (_AS_BOURNE_COMPATIBLE):
3950         Extracted from AS_SHELL_SANITIZE.
3951         (_AS_SHELL_FN_WORK, AS_INIT_WITH_SHELL_FN): New
3952         macros.
3953         (AS_SHELL_SANITIZE): Move reinvocation code from
3954         _AS_LINENO_WORKS, use it to find out if shell
3955         functions work.
3956         (_AS_LINENO_WORKS): Don't find another shell if $LINENO
3957         does not work.
3958         (AS_INIT): Pass parameter down to AS_SHELL_SANITIZE.
3959         (AS_REQUIRE_SHELL_FN): Test that AS_INIT_WITH_SHELL_FN
3960         was called.
3961         * lib/autotest/general.m4: Use AS_INIT_WITH_SHELL_FN.
3962         * bin/autoconf.in: Regenerate.
3963         * tests/wrapper.in: Regenerate.
3964         * tests/tools.at: Test the syntax of tests/autoconf
3965         and tests/testsuite.
3967 2003-11-24  Akim Demaille  <akim@epita.fr>
3969         * config/announce-gen (&print_locations, &print_signatures)
3970         (&sizes): New.
3971         Use them.
3972         No longer rely on Gnus to inline the list of signatures: compute
3973         them on the fly.
3975 2003-11-24  Akim Demaille  <akim@epita.fr>
3977         * doc/autoconf.texi (Particular Programs): AC_PROG_LEX can
3978         override some files.
3979         (Input): AC_CONFIG_AUX_DIR(aux) is a bad idea on DOS.
3980         From Debian Autoconf 2.58.
3982 2003-11-24  Akim Demaille  <akim@epita.fr>
3984         * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): Quote $ac_popdir
3985         uses.
3986         From Debian Autoconf 2.58.
3988 2003-11-24  Paolo Bonzini  <bonzini@gnu.org>
3990         * TODO: Remove already done things.  Update the part about finding
3991         tools for the target.
3993 2003-11-24  Paolo Bonzini  <bonzini@gnu.org>
3995         * lib/autoconf/headers.m4 (AC_USG, AC_MEMORY_H, AC_DIR_HEADER):
3996         Make wording more consistent.
3997         * lib/autoconf/specific.m4 (AC_CYGWIN, AC_EMXOS2, AC_MINGW32):
3998         Explain the transition better.
3999         * lib/autoconf/types.m4 (AC_INT_16_BITS, AC_LONG_64_BITS): Explain
4000         the transition better.
4002 2003-11-24  Paolo Bonzini  <bonzini@gnu.org>
4004         * doc/autoconf.texi (Obsoleting Macros): Don't document the third
4005         parameter of AU_DEFUN.
4006         * lib/autoconf/autoupdate.m4 (AU_DEFINE): Remove.
4007         (AU_DEFUN): Remove the third parameter, it was not used.
4008         Use AC_DEFUN directly, not AU_DEFINE.
4009         * lib/autoconf/status.m4 (AC_LINK_FILES): Move the message into
4010         the expanded body, consistently with other macros such as AC_USG.
4012 2003-11-17  Paul Eggert  <eggert@twinsun.com>
4014         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Put at least 14 bytes
4015         into the initial confdefs.h, to work around a bug in NextStep 3.3
4016         patch 3 reported by Eric Sunshine.
4018 2003-11-15  Kevin Ryde  <user42@zip.com.au>
4020         * doc/autoconf.texi (Using System Type): Revise, showing $host rather
4021         than $target since the latter is not usual, add guidelines on when to
4022         use or not use the system type.
4024 2003-11-12  Derek Price  <derek@ximbiot.com>
4026         * doc/autoconf.texi (Limitations of Usual Tools): Fix what looks like a
4027         typo misrepaired by an auto-spellcheck.
4029 2003-11-12  Akim Demaille  <akim@epita.fr>
4031         * bin/autoreconf.in (&parse_args): Don't call automake with
4032         --force-missing unless it actually supports it.
4033         From Debian #219336.
4035 2003-11-12  Akim Demaille  <akim@epita.fr>
4037         * configure.ac: Bump to 2.59a.
4038         Require 2.59.
4040 2003-11-06  Akim Demaille  <akim@epita.fr>
4042         Version 2.59.
4044 2003-11-05  Alexandre Duret-Lutz  <adl@gnu.org>
4046         * lib/autoconf/status.m4 (_AC_SRCPATHS): Fix use of AS_SET_CATFILE
4047         so that ac_abs_builddir, ac_abs_top_builddir, ac_abs_srcdir,
4048         and ac_abs_top_srcdir are absolute paths.
4049         * lib/m4sugar/m4sh.m4 (AS_SET_CATFILE): Remove misleading comment.
4051 2003-11-05  Akim Demaille  <akim@epita.fr>
4053         * configure.ac: Bump to 2.58a.
4055 2003-11-05  Kevin Ryde  <user42@zip.com.au>
4057         * doc/autoconf.texi (Using Autotest): Avoid @strong{Note: ...}, since
4058         it provokes a warning from makeinfo about looking like a cross
4059         reference in info output.
4061         * doc/autoconf.texi (Function Portability): Add notes on signal
4062         handler return type, as per AC_TYPE_SIGNAL.
4064 2003-11-04  Akim Demaille  <akim@epita.fr>
4066         Version 2.58.
4067         * doc/standards.texi: Update from master.
4069         * tests/mktests.sh (ac_exclude_list): Add AC_FC_FREEFORM.
4071 2003-11-04  Akim Demaille  <akim@epita.fr>
4073         AC_CONFIG_FILE([d1/foo:d2/foo]) triggers error messages when
4074         computing the absolute path to d1 in the source hierarchy: it may
4075         not exist at all.  So don't cd into it.
4076         From Alexandre Duret-Lutz.
4077         http://mail.gnu.org/archive/html/bug-autoconf/2003-10/msg00205.html
4079         * lib/m4sugar/m4sh.m4 (AS_SET_CATFILE): New.
4080         From Paul Eggert, but named after Perl's IO::Spec->catfile.
4081         * doc/autoconf.texi (Programming in M4sh): Document.
4082         * lib/autoconf/status.m4 (_AC_SRCPATHS): Use it.
4084 2003-11-03  Pavel Roskin  <proski@gnu.org>
4086         * doc/autoconf.texi (Generic Structure Checks): Describe
4087         action-if-found and action-if-not-found in AC_CHECK_MEMBERS.
4089 2003-10-31  Akim Demaille  <akim@epita.fr>
4091         * tests/fortran.at (GNU Fortran 77): Don't run FC macros.
4092         (GNU Fortran): New.
4093         * doc/autoconf.texi (Language Choice): Document.
4094         * lib/autoconf/fortran.m4 (AC_FC_SRCEXT, AC_FC_FREEFORM): Assert
4095         the current language is Fortran.
4097 2003-10-31  Akim Demaille  <akim@epita.fr>
4099         * bin/autom4te.in (&freeze): Use a less likely warning separator
4100         than `\n\n', so that `\n\n\n' is valid in warnings.
4101         Reported by Steve Huston.
4103 2003-10-28  Akim Demaille  <akim@epita.fr>
4105         * Makefile.cfg (local_updates, executable-update): Tweak to be
4106         robust to parallel makes.
4107         Suggested by Alexandre Duret-Lutz.
4109 2003-10-27  Akim Demaille  <akim@epita.fr>
4111         * Makefile.cfg (executable-update): New.
4112         (local_updates): Call it.
4114 2003-10-27  Akim Demaille  <akim@epita.fr>
4116         * lib/autoconf/general.m4 (_AC_RUN_IFELSE, _AC_INIT_PREPARE):
4117         Don't remove core.* as it may remove valid user files.
4118         * lib/autoconf/functions.m4 (AC_FUNC_SETVBUF_REVERSED)
4119         (AC_FUNC_UTIME_NULL): Likewise.
4121 2003-10-23  Akim Demaille  <akim@epita.fr>
4123         Version 2.57g.
4124         * config/config.guess, config/config.sub: Upgrade from masters.
4126 2003-10-23  Akim Demaille  <akim@epita.fr>
4128         * lib/autoconf/fortran.m4 (AC_FC_SRCEXT): Functions using
4129         AC_COMPILE_IFELSE that use break skip the clean up.  So do it by
4130         hand...
4132 2003-10-23  Akim Demaille  <akim@epita.fr>
4134         * lib/autoconf/general.m4 (_AC_LINK_IFELSE, _AC_COMPILE_IFELSE):
4135         Don't forget to remove conftest.err.
4137 2003-10-23  Akim Demaille  <akim@epita.fr>
4139         * lib/autoconf/general.m4 (_AC_LIBOBJ): Don't insert twice the
4140         same object file in $LIBOBJS.
4141         Reported by Alexandre Duret-Lutz & Derek Robert Price.
4142         * doc/autoconf.texi (Generic Functions): Adjust.
4144 2003-10-20  Paul Eggert  <eggert@twinsun.com>
4146         * lib/m4sugar/m4sh.m4 (_AS_TR_SH_PREPARE, _AS_TR_CPP_PREPARE):
4147         Use 'eval', so that the resulting configure scripts work even if
4148         the current directory has a weird file name like 'y%s+%pp%;s%@%_%g'.
4150 2003-10-20  Daniel Jacobowitz  <drow@mvista.com>
4152         * lib/autoconf/lang.m4 (AC_LANG_WERROR): New macro.
4153         * lib/autoconf/general.m4 (_AC_COMPILE_IFELSE, _AC_PREPROC_IFELSE)
4154         (_AC_LINK_IFELSE): Check the werror flag.
4155         * doc/autoconf.texi (Generic Compiler Characteristics): Document
4156         AC_LANG_WERROR.
4157         * NEWS: Mention it.
4159 2003-10-20  Daniel Jacobowitz  <drow@mvista.com>
4161         * lib/autoconf/lang.m4 (AC_NO_EXECUTABLES): Override
4162         _AC_COMPILER_EXEEXT to attempt a link.  If linking fails,
4163         override AC_LINK_IFELSE.
4165 2003-10-15  Paul Eggert  <eggert@twinsun.com>
4167         * lib/m4sugar/m4sh.m4 (_AS_UNSET_PREPARE): Work around a bug in
4168         pdksh 5.2.14.  Bug reported by Ralf Corsepius.
4169         * doc/autoconf.texi (Shellology): Mention the Korn shell and pdksh.
4170         Mention /usr/dt/bin/dtksh on Solaris.
4171         (Shell Substitutions): Warn about $((...)).
4172         (Parentheses): New section.
4174 2003-10-15  Kevin Ryde  <user42@zip.com.au>
4176         * doc/autoconf.texi (Function Portability): Add @prindex for exit.
4177         Add putenv and unsetenv.  Add sysconf _SC_PAGE_SIZE.
4179 2003-10-13  Nathanael Nerode  <neroden@gcc.gnu.org>
4181         * lib/autoconf/functions.m4 (AC_FUNC_FORK): Trivial fix for vfork
4182         cross test.
4184 2003-10-11  Steven G. Johnson  <stevenj@alum.mit.edu>
4186         * lib/autoconf/fortran.m4 (_AC_PROG_FC): Use the new official
4187         name for the GNU Fortran 95+ compiler, 'gfortran', not 'g95'.
4189 2003-10-10  Andreas Schwab  <schwab@suse.de>
4191         * bin/autoheader.in: Avoid empty first line in --version and
4192         --help output.
4193         * bin/ifnames.in: Likewise.
4195 2003-10-09  Paul Eggert  <eggert@twinsun.com>
4197         * lib/Autom4te/XFile.pm: Don't assume -j is solo.
4198         Issue a more-informative diagnostic.
4199         Problems reported by Eric Sunshine.
4201 2003-10-08  Steven G. Johnson  <stevenj@alum.mit.edu>
4203         * lib/autoconf/fortran.m4 (_AC_PROG_FC_V_OUTPUT): Omit quoted
4204         -mGLOB_options_string stuff for Intel ifc, which can cause
4205         _AC_FC_LIBRARY_LDFLAGS to fail.  Use (faster) case for
4206         pattern-matching instead of grep.
4208 2003-10-08  Steven G. Johnson  <stevenj@alum.mit.edu>
4210         * doc/autoconf.texi: Document new FC Fortran macros.
4212 2003-10-08  Gary V. Vaughan  <gary@gnu.org>
4214         * lib/autoconf/general.m4 (AC_CONFIG_MACRO_DIR): Stub out a macro
4215         that future autopoint/aclocal/automake/autoreconf will be able
4216         to trace to find where to install local m4 macros.
4217         * doc/autoconf.texi (Input): Document it.
4218         * NEWS: Updated.
4220 2003-10-06  Gary V. Vaughan  <gary@gnu.org>
4222         * lib/autoconf/fortran.m4 (_AC_FC_LIBRARY_LDFLAGS): Add
4223         -lcrtbegin.o to list of ignored flags and fix underquoting of
4224         -lcrt[01].o.
4226 2003-10-04  Steven G. Johnson  <stevenj@ab-initio.mit.edu>
4228         * lib/autoconf/fortran.m4 (_AC_PROG_FC_G): Use language-specific
4229         cache variable instead of $G77 to decide whether to include -O2,
4230         since $G77 is specific to Fortran 77.
4232 2003-10-03  Steven G. Johnson  <stevenj@alum.mit.edu>
4234         * lib/autoconf/fortran.m4 (AC_FC_FREEFORM): Support Absoft "-f
4235         free" flag.  Re-order flags tested into rough order of popularity.
4237 2003-10-03  Steven G. Johnson  <stevenj@alum.mit.edu>
4239         * lib/autoconf/fortran.m4 (AC_PROG_FC): Reverse the order of the
4240         arguments so that it can be used with syntax identical to
4241         AC_PROG_F77, and so that we can more easily decide to
4242         remove/deprecate the DIALECT optional argument in the future if it
4243         proves troublesome.
4244         (AC_FC_FREEFORM): Exit 77 upon failure to fix test suite for
4245         non-freeform-supporting compilers.  Document freeform flags.
4247 2003-10-03  Akim Demaille  <akim@epita.fr>
4249         * configure.ac: Look for emacs, not macs.
4250         Reported by Eric Sunshine.
4252 2003-10-03  Akim Demaille  <akim@epita.fr>
4254         * lib/autom4te.in (Autoreconf-preselections): Trace AC_CONFIG_AUX_DIR.
4255         * bin/autoreconf.in (autoreconf_current_directory): Create the
4256         AUX_DIR if needed, for sake of automake --add-missing etc.
4257         Suggested by Alexandre Duret-Lutz.
4259 2003-10-03  Akim Demaille  <akim@epita.fr>
4261         * configure.ac: Quotation and formatting changes.
4262         (EMACS): Don't set it if it is not recent enough to support
4263         autoconf-mode.el.
4264         From Eric Sunshine.
4266 2003-10-02  Akim Demaille  <akim@epita.fr>
4268         * bin/ifnames.in (&scan_file): Skip C++ comments.
4269         From Jeremy Yallop.
4271 2003-10-01  Pavel Roskin  <proski@gnu.org>
4273         * doc/autoconf.texi (Particular Structure Checks):
4274         Fix misspelling of HAVE_STRUCT_STAT_ST_BLOCKS.
4276 2003-10-01  Akim Demaille  <akim@epita.fr>
4278         Version 2.57f.
4280 2003-09-30  Paul Eggert  <eggert@twinsun.com>
4282         * lib/Autom4te/XFile.pm: Use Errno.
4283         (lock): Ignore ENOLCK errors.  Problem reported Andreas Schwab in
4284         <http://mail.gnu.org/archive/html/bug-autoconf/2003-09/msg00141.html>.
4286 2003-09-30  Akim Demaille  <akim@epita.fr>
4288         * config/announce-gen (&print_news_deltas): Extracted from...
4289         (&print_changelog_deltas): here.
4290         (&news_file): Rename as...
4291         (@news_file): this.
4293 2003-09-30  Nicolas Joly  <njoly@pasteur.fr>
4295         * lib/autoconf/fortran.m4 (_AC_PROG_FC): Remove files which might
4296         have been created when invoking the compiler.
4297         * tests/fortran.at (GNU Fortran 77): Quote $G77.
4299 2003-09-29  Akim Demaille  <akim@epita.fr>
4301         Version 2.57e.
4303         * config/mkinstalldirs: Upgrade.
4305 2003-09-28  Paul Eggert  <eggert@twinsun.com>
4307         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Set DUALCASE=1, for MKS sh.
4308         Problem reported by Lars J. Aas in
4309         <http://mail.gnu.org/archive/html/autoconf/2003-07/msg00042.html>.
4310         (_AS_MKDIR_P_PREPARE): Change "rm -fr ./-p" to the more-conservative
4311         "test -d ./-p && rmdir ./-p".  Suggested by Andreas Schwab in:
4312         http://mail.gnu.org/archive/html/autoconf-patches/2003-09/msg00039.html
4314 2003-09-26  Akim Demaille  <akim@epita.fr>
4316         * lib/autoconf/status.m4 (_AC_OUTPUT_COMMANDS): Make sure the
4317         directory for AC_CONFIG_COMMANDS' first argument exists.
4318         This makes valid the invocation of _AC_SRCPATH that follows.
4319         Reported by Eric Sunshine.
4320         * doc/autoconf.texi (Configuration Commands): Adjust.
4322 2003-09-26  Akim Demaille  <akim@epita.fr>
4324         * bin/autoscan.in (Autom4te::FileUtils): Use it for find_file.
4325         Reported by Ralf Corsepius.
4327 2003-09-26  Akim Demaille  <akim@epita.fr>
4329         * lib/autoconf/general.m4 (AC_HELP_STRING): Don't overquote the
4330         arguments.
4331         Actually, use AU_ALIAS.
4332         From Bruno Haible.
4334 2003-09-26  Paul Eggert  <eggert@twinsun.com>
4336         * lib/m4sugar/m4sh.m4 (_AS_MKDIR_P_PREPARE): If mkdir -p . fails,
4337         rm -fr ./-p to remove junk left behind on NextStep and OpenStep.
4338         Problem reported by Eric Sunshine in:
4339         http://mail.gnu.org/archive/html/autoconf-patches/2002-12/msg00014.html
4341 2003-09-26  Akim Demaille  <akim@epita.fr>
4343         The test suite are sometimes assigning timings incorrectly.
4344         Reported by Henk Krus.
4345         Diagnosed by Nicolas Joly.
4347         * lib/autotest/general.m4 (AT_CLEANUP): Rename AT_help as
4348         AT_help_all.
4349         Instead of making AT_help a sequence of assignments to grow
4350         $at_help_all, just make AT_help_all be the growing contents of
4351         $at_help_all, and make a single assignment in...
4352         (AT_INIT): here.
4353         (at_times_skip): Flip the meaning and rename as...
4354         (at_times_p): this.
4355         (AT_INIT): When summarizing the test that ran, remove
4356         $at_times_file after use, and check it is present before trying to
4357         use it.
4359 2003-09-25  Akim Demaille  <akim@epita.fr>
4361         Version 2.57d.
4363         * bin/Makefile.am (edit): Handle '@configure_input@'.
4364         (autoconf, autoheader, autom4te, autoreconf, autoscan, autoupdate)
4365         (ifnames): chmod -w.
4366         * tests/wrapper.as (AUTOCONF, AUTOM4TE, ): Point to tests/
4367         executables, not bin/ executables!  Otherwise all the magic needed
4368         to find non installed files is turned off.  This caused a failure
4369         of test 40 and 41 that ran aclocal 1.8 which in turn ran autom4te
4370         as found in its environment (sent by tests/autoreconf): pointing
4371         to bin/autom4te that could not find its files.
4372         * tests/mktests.sh: Force the replacement of generated files, for
4373         the sake of "mv" program that are interactive when overwriting a
4374         -w file.
4375         * config/install-sh: Upgrade from CVS Automake.
4377 2003-09-23  Paul Eggert  <eggert@twinsun.com>
4379         * doc/autoconf.texi (Limitations of Builtins): Document test -h
4380         versus test -L issues.
4382 2003-09-23  Daniel Jacobowitz  <drow@mvista.com> and
4383             Paul Eggert  <eggert@twinsun.com>
4385         Trivial change to support GCC's configuration procedure.
4386         * lib/autoconf/c.m4 (AC_PROG_CPP_WERROR): New macro.
4387         * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_MONGREL): Don't warn
4388         about inconsistency if the preprocessor is set to give errors for
4389         any warning.
4390         * doc/autoconf.texi (C Compiler Characteristics): Document this.
4392 2003-09-13  Alexandre Duret-Lutz  <adl@gnu.org>
4394         * Makefile.am (autom4te-update, autom4te_files): Fetch Struct.pm
4395         and XFile.pm from Automake.
4396         * lib/Autom4te/XFile.pm: Update from Automake.
4398 2003-09-12  Akim Demaille  <akim@epita.fr>
4400         Version 2.57c.
4402 2003-09-12  Akim Demaille  <akim@epita.fr>
4404         * config/config.guess, config/config.sub, config/missing,
4405         * lib/Autom4te/Channels.pm, lib/Autom4te/Configure_ac.pm: Update
4406         from masters.
4408 2003-09-12  Akim Demaille  <akim@epita.fr>
4410         * doc/autoconf.texi (Header Portability): Promote linux/types.h,
4411         not asm/types.h.
4413 2003-09-11  Akim Demaille  <akim@epita.fr>
4415         * doc/autoconf.texi (Header Portability): linux/random.h.
4416         From Peter Hendrickson.
4418 2003-09-10  Akim Demaille  <akim@epita.fr>
4420         * tests/mktests.sh (au_exclude_egrep): Make it harder to be
4421         willing to edit the output files.
4423 2003-09-10  Akim Demaille  <akim@epita.fr>
4425         * tests/fortran.at (GNU Fortran 77): Also exercise AC_FC_SRCEXT
4426         and AC_FC_FREEFORM.
4427         * tests/mktests.sh: Skip AC_FC_SRCEXT.
4428         * lib/autoconf/fortran.m4 (AC_FC_SRCEXT, AC_FC_FREEFORM): Likewise.
4430 2003-09-09  Akim Demaille  <akim@epita.fr>
4432         * lib/Autom4te/FileUtils.pm (&update_file): s/cannot not/cannot/g.
4433         Reported by Gary Vaughan.
4434         * bin/autom4te.in (handle_m4): Likewise.
4436 2003-09-09  Akim Demaille  <akim@epita.fr>
4438         * lib/Autom4te/FileUtils.pm (&update_file): Be sure not to leave
4439         trailing files.
4441 2003-09-07  Paul Eggert  <eggert@twinsun.com>
4443         * lib/autoconf/specific.m4 (AC_SYS_RESTARTABLE_SYSCALLS):
4444         Improve the accuracy of the wording about obsolescence.
4445         From a suggestion by Ian Lance Taylor in
4446         <http://mail.gnu.org/archive/html/autoconf/2003-09/msg00044.html>.
4448 2003-09-05  Paul Eggert  <eggert@twinsun.com>
4450         * lib/autoconf/fortran.m4 (AC_FC_FREEFORM): Try -ffree-form too,
4451         for the benefit of g77 3.2.  Fix suggested by Steven G. Johnson.
4453 2003-09-04  Akim Demaille  <akim@epita.fr>
4455         * tests/mktests.sh (ac_exclude_list): Fix the filtering of
4456         AC_FUNC_WAIT3.
4458 2003-09-04  Akim Demaille  <akim@epita.fr>
4460         * bin/autom4te.in: Use &fatal where more appropriate than &error.
4461         (freeze): When exiting, use $exit_code.
4462         * lib/autoconf/fortran.m4: Comment changes.
4464 2003-09-04  Akim Demaille  <akim@epita.fr>
4466         * tests/mktests.sh (ac_exclude_list): Add AC_FC_FUNC.
4468 2003-09-02  Steven G. Johnson  <stevenj@alum.mit.edu>
4470         Add support for newer Fortran dialects.  The F77 interface is
4471         unchanged, and continues to support Fortran 77.  New FC macros
4472         correspond to all the old F77 macros, with output variables FC,
4473         FCFLAGS, and FCLIBS.  AC_PROG_FC defaults to picking the newest
4474         available dialect, but older dialects can be specified.  There are
4475         new macros AC_FC_SRCEXT to set the source extension, and
4476         AC_FC_FREEFORM to accept free-form source files.
4478         * lib/autoconf/c.m4 (_AC_LANG_PREFIX(C), _AC_LANG_PREFIX(C++)):
4479         New macros.
4480         (AC_LANG_PROGRAM(C)): Invoke _AC_LANG_PROGRAM_C_FC_HOOKS if defined.
4481         * lib/autoconf/fortran.m4 (AC_LANG(Fortran), _AC_FORTRAN_ASSERT,
4482         _AC_LANG_ABBREV(Fortran), _AC_LANG_PREFIX(Fortran 77),
4483         _AC_LANG_PREFIX(Fortran), _AC_FC, AC_LANG_SOURCE(Fortran),
4484         AC_LANG_PROGRAM(Fortran), AC_LANG_CALL(Fortran),
4485         AC_LANG_PREPROC(Fortran), AC_LANG_COMPILER(Fortran),
4486         _AC_FC_DIALECT_YEAR, _AC_F95_FC, _AC_F90_FC, _AC_F77_FC,
4487         _AC_PROG_FC, AC_PROG_FC, _AC_PROG_FC_G, _AC_PROG_FC_C_O,
4488         AC_PROG_FC_C_O, _AC_PROG_FC_V_OUTPUT, _AC_PROG_FC_V,
4489         _AC_FC_LIBRARY_LDFLAGS, AC_FC_LIBRARY_LDFLAGS, _AC_FC_DUMMY_MAIN,
4490         AC_FC_DUMMY_MAIN, _AC_FC_MAIN, AC_FC_MAIN, __AC_FC_NAME_MANGLING,
4491         _AC_FC_WRAPPERS, AC_FC_WRAPPERS, _AC_FC_FUNC, AC_FC_FUNC,
4492         AC_FC_SRCEXT, AC_FC_FREEFORM):
4493         New macros.
4494         (AC_PROG_F77, AC_PROG_F77_C_O, AC_F77_LIBRARY_LDFLAGS,
4495         AC_F77_DUMMY_MAIN, AC_F77_MAIN, _AC_F77_NAME_MANGLING,
4496         AC_F77_NAME_MANGLING, AC_F77_WRAPPERS, AC_F77_FUNC):
4497         Rewrite in terms of the above.
4498         (_AC_PROG_F77_G, _AC_PROG_F77_V_OUTPUT, _AC_PROG_F77_V): Remove.
4499         * lib/autoconf/lang.m4 (_AC_LANG_PREFIX): New macro.
4500         * tests/acfortran.at: Test AC_FC_FREEFORM, AC_FC_FUNC,
4501         AC_FC_MAIN, AC_FC_SRCEXT, AC_FC_WRAPPERS, AC_PROG_FC_C_O.
4503 2003-09-02  Paul Eggert  <eggert@twinsun.com>
4505         * doc/autoconf.texi (Limitations of Usual Tools, Limitations of Make):
4506         Document problems with timestamp resolution that 'make', 'cp -p', and
4507         'touch -r' have.
4509 2003-08-27  Akim Demaille  <akim@epita.fr>
4511         * tests/m4sugar.at (cross_warning): Make sure to enable the
4512         output, so that we can track spurious m4sugar output.
4513         * tests/local.at: Require 2.57.
4514         (AT_CHECK_M4SUGAR, AT_CHECK_M4SH): Don't m4_default the arguments that
4515         are defaulted by AT_CHECK anyway.
4516         Use AT_CHECK_AUTOM4TE.
4517         * lib/m4sugar/m4sugar.m4: There should be no output at all: add a
4518         missing dnl.
4520 2003-08-27  Akim Demaille  <akim@epita.fr>
4522         * bin/autoheader.in: Issue the "Using auxiliary..." message only
4523         when -Wobsolete is set.
4524         Set it on by default.
4525         Suggested by Klee Dienes.
4527 2003-08-27  Akim Demaille  <akim@epita.fr>
4529         * doc/autoconf.texi (AC_FUNC_FSEEKO, AC_SYS_LARGEFILE): More
4530         documentation.
4531         From Guido Draheim.
4533 2003-08-26  Akim Demaille  <akim@epita.fr>
4535         * doc/autoconf.texi (Output): Make clear that one can run code
4536         after AC_OUTPUT.
4538 2003-08-25  Akim Demaille  <akim@epita.fr>
4540         * config/announce-gen, GNUmakefile, Makefile.maint: Update from
4541         CVS Bison.
4543 2003-08-25  Alexandre Duret-Lutz  <adl@gnu.org>
4545         * bin/autoreconf.in (parse_args): Do not pass --no-force to
4546         Automake versions prior to 1.8.
4548 2003-08-25  Akim Demaille  <akim@epita.fr>
4550         * doc/autoconf.texi (Header Portability): netinet/if_ether.h.
4551         From Ville Karaila.
4553 2003-08-24  Akim Demaille  <akim@epita.fr>
4555         * configure.ac: Bump to 2.57c.
4557 2003-08-22  Akim Demaille  <akim@epita.fr>
4559         Version 2.57b.
4561         * Makefile.cfg (local-checks-to-skip): New.
4562         * Makefile.maint (local-check): Rename as...
4563         (local-checks-available): this.
4564         (local-check): New.
4566         * Makefile.am (EXTRA_DIST): Add Makefile.cfg.
4567         * configure.ac: Require Automake 1.7.6.
4569 2003-08-22  Akim Demaille  <akim@epita.fr>
4571         Output stack traces in warnings.
4573         * lib/m4sugar/m4sugar.m4 (_m4_warn): New.
4574         Replace the former...
4575         (m4_warn): Pass the call stack to _m4_warn.
4576         * bin/autom4te.in: Adjust to output the call stack.
4577         * tests/m4sugar.at (m4@&t@_warn): Adjust.
4579 2003-08-22  Akim Demaille  <akim@epita.fr>
4581         * lib/Autom4te/Request.pm, lib/Autom4te/C4che.pm: New.
4582         * bin/autom4te.in: Adjust.
4584 2003-08-21  Akim Demaille  <akim@epita.fr>
4586         * lib/Autom4te/General.pm (&file_name_is_absolute): Remove.
4587         (&verbose): Remove.
4588         (&getopt): Adjust the note and verb channels, depending upon
4589         --verbose.
4590         * bin/autoheader.in, bin/autom4te.in, bin/autoscan.in,
4591         * bin/autoupdate.in: Adjust.
4592         Use &verb, not &verbose.
4594 2003-08-21  Akim Demaille  <akim@epita.fr>
4596         * bin/autoheader.in (&parse_args): Use &parse_warnings and
4597         &parse_WARNINGS.
4598         ($help): Use Autom4te::ChannelDefs::usage.
4599         * bin/autoscan.in: Use Autom4te::ChannelDefs.
4600         * lib/Autom4te/General.pm: Don't export error: you don't own it.
4602 2003-08-21  Akim Demaille  <akim@epita.fr>
4604         First stab at preserving warnings between calls to autom4te,
4605         including when the cache is used.
4607         There are still several issues: (i) there are too many runs of m4
4608         (one for include, one for warnings, and some more), (ii) warnings
4609         spreading on several lines are not handled gracefully, (iii) the
4610         code meant to have the call stack display for errors does not work
4611         (its handling should move from m4 to autom4te).
4613         * bin/autom4te.in Autom4te::Channels, Autom4te::ChannelDefs):
4614         Use them.
4615         (@preselect): Add m4_warn.
4616         ($exit_status): Remove, use $exit_code.
4617         ($help): Use Autom4te::ChannelDefs::usage.
4618         (&handle_m4): No longer define the m4_warnings.
4619         At each run, extract and report the warnings.
4620         Always cache the result, including if the exit status is on
4621         failure, since if nothing changes, we should result in the same
4622         failure, hence we can use the cache.
4623         * lib/m4sugar/m4sugar.m4 (m4_warning_ifelse, _m4_warning_ifelse)
4624         (_m4_warning_error_ifelse, __m4_warning_error_ifelse, _m4_warn):
4625         Remove.
4626         (m4_warn): Redefine as a do-nothing: it is its invocation that
4627         matters, as warnings are now reported via traces.
4628         * lib/autoconf/general.m4 (AC_DIAGNOSE): Don't make it a copy of
4629         the contents of m4_warn: make it _call_ m4_warn, so that tracing
4630         the latter reveals calls to the former.
4632         Adjust the tests.
4634         * tests/m4sugar.at (m4@&t@_warn): Use existing warning categories.
4636 2003-08-21  Akim Demaille  <akim@epita.fr>
4638         * bin/autoreconf.pm (Autom4te::Channels, Autom4te::ChannelDefs):
4639         Use them.
4641 2003-08-21  Akim Demaille  <akim@epita.fr>
4643         * lib/Autom4te/FileUtils.pm (&find_file): Walk the @include in
4644         forward order.
4645         * lib/Autom4te/ChannelDefs.pm: Doc typos.
4646         (&parse_warnings): Accept a list of warning requests.
4647         (&usage): Return a string, not a side effect.
4648         (cross): New warning category.
4650 2003-08-21  Akim Demaille  <akim@epita.fr>
4652         * lib/Autom4te/Configure_ac.pm (&find_configure_ac)
4653         (&require_configure_ac): Accept an optional directory argument.
4654         ($configure_ac): Remove.
4655         * lib/Autom4te/General.pm (&find_configure_ac, &canonfile)
4656         (&catfile): Remove.
4657         * bin/autoheader.in, bin/autoreconf.in, bin/autoupdate.in,
4658         * bin/autoscan.in: Adjust.
4660 2003-08-20  Akim Demaille  <akim@epita.fr>
4662         * bin/autoheader.in: Remove duplicate 'use Autom4te::FileUtils'.
4663         Reported by Alexandre Duret-Lutz.
4665 2003-08-20  Akim Demaille  <akim@epita.fr>
4667         * bin/autoupdate.in, bin/autoheader.in, bin/autoreconf.in,
4668         * bin/autom4te: Adjust.
4669         In particular, be Autoconf tools are really silent when properly
4670         working, bind the verbosity of the 'note' channel to $verbose.
4671         * lib/Autom4te/General.pm (&find_file, &mtime, &update_file)
4672         (&xsystem, &contents): Remove, since they are exported by...
4673         * lib/Autom4te/FileUtils.pm: this.
4674         More perldoc.
4675         * lib/Autom4te/General.pm (&up_to_date_p): Move to...
4676         * lib/Autom4te/FileUtils.pm: here.
4678 2003-08-20  Akim Demaille  <akim@epita.fr>
4680         * lib/Autom4te/Channels.pm, lib/Autom4te/ChannelDefs.pm
4681         * lib/Autom4te/Configure_ac.pm, lib/Autom4te/FileUtils.pm: New,
4682         from CVS Automake.
4684 2003-08-20  Akim Demaille  <akim@epita.fr>
4686         * Makefile.am (automake_cvsweb, automake_cvsargs, autom4te_files)
4687         (autom4te-update): New.
4688         * Makefile.cfg (update): Bind autom4te-update.
4690 2003-08-19  Derek Price  <derek@ximbiot.com>
4692         * lib/autotest/general.m4: Comment various HELP_* diversions.
4693         (PARSE_ARGS_BEGIN): New section for option parsing related
4694         initialization.
4695         (AT_ARG_OPTION,AT_ARG_OPTION_ARG,_AT_ARG_OPTION): New macros to define
4696         package specific options and associated help.
4698 2003-08-19  Akim Demaille  <akim@epita.fr>
4700         * config/announce-gen, Makefile.cfg: New.
4701         * Makefile.am: Adjust.
4702         * GNUmakefile, Makefile.maint: Update from CVS Coreutils.
4704 2003-08-19  Alexandre Duret-Lutz  <adl@gnu.org>
4706         * lib/autom4te.in (Automake-preselections): Preselect
4707         AC_CONFIG_LIBOBJ_DIR, AC_CONFIG_LINKS, m4_include,
4708         and m4_sinclude.
4710 2003-08-19  Alexandre Duret-Lutz  <adl@gnu.org>
4712         * lib/autom4te.in (Autoconf): Move all args except aclocal.m4? into ...
4713         (Autoconf-without-aclocal-m4): ... this new language.
4714         * doc/autoconf.texi (autom4te Invocation): Mention
4715         Autoconf-without-aclocal-m4.
4717 2003-08-18  Derek Price  <derek@ximbiot.com>
4719         * doc/autoconf.texi (Writing testsuite.at): Document RUN-IF-FAIL &
4720         RUN-IF-PASS optional arguments.
4722 2003-08-18  Derek Price  <derek@ximbiot.com>
4724         * doc/autoconf.texi (Programming in M4sh): Add doc for AS_IF.
4726 2003-08-16  Derek Price  <derek@ximbiot.com>
4728         * doc/autoconf.texi (Writing testsuite.at): Document defaults for
4729         STDOUT & STDERR arguments.
4731 2003-08-14  Derek Price  <derek@ximbiot.com>
4733         * lib/autotestgeneral.m4 (AT_INIT): Reformat test summary line to print
4734         DESCRIPTION rather than FILE and LINE.  Shorten result to fit in new,
4735         shorter column three.  Add DESCRIPTION to log file content.
4737 2003-08-13  Derek Price  <derek@ximbiot.com>
4739         * lib/autotest/general.m4 (AT_INIT): Correct typo in final status
4740         output.
4742 2003-08-12  Derek Price  <derek@ximbiot.com>
4744         * lib/autotest/general.m4 (AT_CHECK): Use new _AT_CHECK API.
4745         (AT_CHECK_NOESCAPE): Move core functionality to...
4746         (_AT_CHECK): ...this new macro.
4748 2003-08-07  Derek Price  <derek@ximbiot.com>
4750         * lib/autotest/general.m4 (AT_CHECK): Move core functionality...
4751         (AT_CHECK_NOESCAPE): ...to this new macro.
4753 2003-07-31  Paul Eggert  <eggert@twinsun.com>
4755         * lib/m4sugar/m4sh.m4 (_AS_UNSET_PREPARE): Work around a bug
4756         in Bash 2.01.  Problem reported by Brian Gough in
4757         <http://mail.gnu.org/archive/html/bug-autoconf/2003-07/msg00106.html>.
4759 2003-07-25  John W. Eaton  <jwe@bevo.che.wisc.edu>
4761         * lib/autoconf/fortran.m4 (AC_F77_LIBRARY_LDFLAGS): Also ignore
4762         -lcrt1.o, for OS X.  (trivial change)
4764 2003-07-07  Paul Eggert  <eggert@twinsun.com>
4766         * lib/autoconf/c.m4 (AC_C_INLINE): Wrap the '#define inline ...'
4767         inside '#ifndef __cplusplus'.  Problem reported by
4768         Bob Friesenhahn.
4770 2003-07-06  Bill Clarke  <llib@computer.org>
4772         * lib/autoconf/functions.m4 (AC_FUNC_MMAP): Cast pointer to
4773         'long', not 'int', for benefit of Sun's recent C++ compilers
4774         (trivial change).  See:
4775         http://mail.gnu.org/archive/html/autoconf-patches/2003-07/msg00007.html
4776         (This really should be 'intptr_t', not 'long', but that would
4777         take more work.)
4779 2003-06-25  Akim Demaille  <akim@epita.fr>
4781         * lib/Makefile.am (autom4te.cfg): Make it read only.
4782         Depend on Makefile since it contains substitutions.
4783         From Paolo Bonzini.
4784         * lib/autom4te.in (args): Add local.at? for Autotest args.
4785         This change was made on autom4te.cfg which is generated.
4786         Reported by Raja R. Harinath.
4788 2003-06-25  Akim Demaille  <akim@epita.fr>
4790         * doc/autoconf.texi (Header Portability): sys/mount.h.
4791         From Gareth McCaughan.
4793 2003-06-23  Akim Demaille  <akim@epita.fr>
4795         * lib/autotest/general.m4 (AT_INIT): Report a single config.log,
4796         not all of them.  This fixes 1. the fact that when testing
4797         Autoconf there are many many config.log, 2. the incorrect use of
4798         top_srcdir to find config.log.
4799         Don't mix the detailed output of failed test with the summary of
4800         failures.  Rather, append detailed log afterwards.
4802 2003-06-23  Akim Demaille  <akim@epita.fr>
4804         * tests/local.at (AT_CHECK_CONFIGURE): Adjust to the verbose being
4805         always run: output config.log on $at_group_log.
4807 2003-06-23  Akim Demaille  <akim@epita.fr>
4809         * tests/torture.at (#define header templates): Don't use quotes in
4810         C++ comments as it puzzles Emacs' sh font-lock-mode.
4812 2003-06-23  Akim Demaille  <akim@epita.fr>
4814         * tests/mktests.sh (au_exclude_egrep): Fix output copyright notice.
4815         * lib/autom4te.cfg (args): Add local.at? for Autotest args.
4816         * tests/atspecific.m4: Rename as...
4817         * tests/local.at: This.
4818         * tests/suite.at: Move the globals into...
4819         * tests/local.at: here.
4820         * tests/Makefile.am: Adjust.
4821         * doc/autoconf.texi (testsuite Scripts): Adjust.
4823 2003-06-21  Kevin Ryde  <user42@zip.com.au>
4825         * lib/autoconf/c.m4 (_AC_PROG_CC_STDC): Extend test program to get an
4826         error from OSF 4.0 Compaq cc in its default almost-ANSI mode, thereby
4827         ensuring we add -std1 for full-ANSI.
4829         * doc/autoconf.texi (hdrindex): New macro.
4830         Add index entries for portability of various standard header files.
4832 2003-06-20  Akim Demaille  <akim@epita.fr>
4834         * configure.ac: Bump to 2.57b.
4836 2003-06-20  Akim Demaille  <akim@epita.fr>
4838         Version 2.57a.
4840 2003-06-20  Akim Demaille  <akim@epita.fr>
4842         * bin/autom4te.in: Don't rely on $HOME being defined.
4843         Reported by Marc Espie as PR/233.
4845 2003-06-20  Akim Demaille  <akim@epita.fr>
4847         * lib/autotest/general.m4: Use at_times_file only if used.
4848         From Nicolas Joly.
4850 2003-06-20  Akim Demaille  <akim@epita.fr>
4852         * config/config.guess, config/config.sub, config/elisp-comp,
4853         * config/install-sh, config/mkinstalldirs, doc/standards.texi:
4854         Update from masters.
4856 2003-06-11  Paolo Bonzini  <bonzini@gnu.org>
4858         * doc/autoconf.texi (Writing testsuite.at): Document AT_XFAIL_IF
4859         * lib/autotest/general.m4 (AT_XFAIL_IF): New macro.
4860         (TEST_SCRIPT): New diversion.
4861         (AT_SETUP): Divert output to TEST_SCRIPT and move some code...
4862         (AT_CLEANUP): ...to here.  Undivert TEST_SCRIPT.
4863         (AT_INIT): Support for expected failures.
4865 2003-06-02  Akim Demaille  <akim@epita.fr>
4867         * bin/autom4te.in, bin/autoscan.in, bin/autoheader.in: White space
4868         changes.
4869         * lib/Autom4te/General.pm (&backname): Remove, no longer used by
4870         Autoconf nor Automake.
4871         (&contents): New, from Automake.
4872         PODify.
4874 2003-05-28  Paul Eggert  <eggert@twinsun.com>
4876         * NEWS, doc/autoconf.texi (Particular Functions),
4877         lib/autoconf/functions.m4 (AC_FUNC_MKTIME): Check that mktime
4878         is the inverse of localtime.
4880 2003-05-25  Alexandre Duret-Lutz  <adl@gnu.org>
4882         * lib/Autom4te/General.pm (END): Print diagnostics to STDERR.
4883         (handle_exec_errors): New function.  Work around $! being
4884         altered by WEXITSTATUS.
4885         (xqx, xsystem): Use handle_exec_errors.
4887 2003-05-23  Alexandre Duret-Lutz  <adl@gnu.org>
4889         * lib/Autom4te/General.pm (END): Rewrite exit code processing.
4890         Do not call `_exit()', simply modify `$?'.
4891         (xsystem): Reset $! before running system, and check it afterward.
4892         * tests/tools.at (autoupdating AC_PREREQ): Expect exit status
4893         63 for version mismatches.
4895 2003-05-23  Akim Demaille  <akim@epita.fr>
4897         * lib/autoconf/status.m4: Prefer "TAB-SP" to "SP-TAB", because of
4898         Emacs' dangerous whitespace.el behavior (smashing "useless" spaces in
4899         the middle of a line).
4900         * lib/m4sugar/m4sugar.m4: Likewise.
4901         Remove useless spaces in comments.
4903 2003-05-23  Akim Demaille  <akim@epita.fr>
4905         * lib/m4sugar/m4sugar.m4 (m4_version_prereq): Failure causes an
4906         exit 63, so that we (or Automake's "missing") can tell the
4907         difference with a plain failure.
4908         * doc/autoconf.texi (Notices): Adjust.
4910 2003-05-23  Akim Demaille  <akim@epita.fr>
4912         * Makefile.am, bin/Makefile.am, config/Makefile.am,
4913         * doc/Makefile.am, lib/autoconf/Makefile.am, tests/Makefile.am:
4914         White spaces cleanup.
4916 2003-05-22  Jim Meyering  <jim@meyering.net>
4917             Paul Eggert  <eggert@twinsun.com>
4919         * lib/autoconf/c.m4 (_AC_PROG_CXX_EXIT_DECLARATION):
4920         Remove `#include <stdlib.h>' from the list; we should never
4921         make confdefs.h include <stdlib.h> or <cstdlib>, because the
4922         resulting namespace pollution would cause other tests to fail.
4923         Configure scripts run with some older versions of g++ and HP's
4924         aCC would fail due to such an #include.  Problems reported by
4925         Matthew Mueller in <http://bugs.debian.org/120704> and by
4926         Keith Bostic in
4927         <http://mail.gnu.org/archive/html/autoconf/2003-05/msg00063.html>.
4928         In the test, use the test declaration before including <stdlib.h>,
4929         as that's closer to how it'll be used.
4931 2003-05-23  Akim Demaille  <akim@epita.fr>
4933         * doc/autoconf.texi (Header Portability): ucred.h.
4934         From Ian Redfern.
4936 2003-05-22  Paolo Bonzini  <bonzini@gnu.org>
4938         Overhaul Autotest's logging: generate separate log files
4939         in testsuite.dir/NNN/testsuite.log, and append them to
4940         testsuite.log instead of re-running the test verbosely.
4942         * lib/autotest/general.m4 (AT_INIT): Use a single redirected
4943         file descriptor, write 0 to at_status_file instead of setting
4944         at_status=0, initialize some new variables (at_status_file,
4945         at_group_log, at_suite_log, at_tee_pipe).  Remove the cruft
4946         to rerun the tests, instead append the at_group_log to the
4947         at_suite_log when a test fails.
4948         (AT_SETUP): pipe the test case's output into at_tee_pipe,
4949         with the AS_MESSAGE_LOG_FD redirected to stdout.
4950         (AT_CLEANUP): save the output status in $at_status_file
4951         and restore it, redirect the AS_MESSAGE_LOG_FD back to
4952         its original place.
4953         (AT_CHECK): since tests are run with a redirected stdout,
4954         and used to be re-run in verbose mode, turn some $at_verbose
4955         into echo, and don't redirect the output of testing stdout
4956         and stderr.
4958         * lib/autotest/autoconf.texi (testsuite Scripts): Update
4959         the name of the debugging directory and information about
4960         its contents.
4962 2003-05-22  Paolo Bonzini  <bonzini@gnu.org>
4964         * lib/m4sugar/m4sh.m4 (AS_REQUIRE): Actually use the 2nd
4965         parameter.
4967 2003-05-22  Akim Demaille  <akim@epita.fr>
4969         * lib/autoconf/autotest.m4, lib/autoconf/autoupdate.m4
4970         * lib/autoconf/fortran.m4 lib/autoconf/general.m4
4971         * lib/autoconf/headers.m4 lib/autoconf/oldnames.m4
4972         * lib/autoconf/status.m4: Fix and adjust copyright notices.
4974 2003-05-22  Akim Demaille  <akim@epita.fr>
4976         * aclocal.m4, bin/autoconf.as, lib/autoconf/autoconf.m4,
4977         * lib/autoconf/autoheader.m4, lib/autoconf/autoupdate.m4,
4978         * lib/autoconf/c.m4, lib/autoconf/fortran.m4,
4979         * lib/autoconf/general.m4, lib/autoconf/headers.m4,
4980         * lib/autoconf/lang.m4, lib/autoconf/libs.m4,
4981         * lib/autoconf/programs.m4, lib/autoconf/specific.m4,
4982         * lib/autoconf/status.m4, lib/autoconf/types.m4,
4983         * lib/autotest/general.m4, lib/m4sugar/m4sugar.m4,
4984         * tests/atspecific.m4, tests/base.at, tests/compile.at,
4985         * tests/foreign.at, tests/m4sh.at, tests/semantics.at,
4986         * tests/tools.at, tests/torture.at:
4987         Whitespace clean up.
4988         Suggested by Jim Meyering.
4990 2003-05-22  Akim Demaille  <akim@epita.fr>
4992         * lib/autoconf/functions.m4 (AC_FUNC_GETLOADAVG): Restore smashed
4993         ' \t' as '\t ' so that Emacs' whitespace.el keep it.
4994         Reported by Jim Meyering.
4996 2003-05-22  Akim Demaille  <akim@epita.fr>
4998         * doc/autoconf.texi: Replace AC_HELP_STRING AS_HELP_STRING.
4999         Add AC_HELP_STRING  to the obsolete macros section.
5000         Typos.
5001         Use '@.' for sentences that ended in a capital letter.
5002         From Art Haas.
5004 2003-05-22  Akim Demaille  <akim@epita.fr>
5006         * config/config.guess, config/config.sub, config/elisp-comp,
5007         * config/install-sh, config/mdate-sh, config/mkinstalldirs,
5008         * config/texinfo.tex, doc/standards.texi: Update from masters.
5010 2003-05-21  Paolo Bonzini  <bonzini@gnu.org>
5012         * lib/m4sugar/m4sh.m4 (AS_VAR_SET): Escape the RHS before passing
5013         it to eval.
5015 2003-05-21  Akim Demaille  <akim@epita.fr>
5017         * bin/autoupdate.in ($m4): Fix quotation.
5018         Reported by Martin Mokrejs.
5020 2003-05-19  Paul Eggert  <eggert@twinsun.com>
5022         * ChangeLog, ChangeLog.2, THANKS, lib/m4sugar/m4sugar.m4:
5023         Remove non-ASCII characters.
5025 2003-05-18  Paolo Bonzini  <bonzini@gnu.org>
5027         * tests/semantics.at (AC_SEARCH_LIBS): New test.
5028         * tests/semantics.at (AC_CHECK_HEADERS_OLD,
5029         AC_CHECK_HEADERS_NEW): New tests.
5031 2003-05-17  Akim Demaille  <akim@epita.fr>
5033         * lib/autoconf/functions.m4: Use the default includes so that
5034         memcmp be declared before being tested.
5035         Reported by Sander Niemeijer.
5036         (AC_FUNC_ERROR_AT_LINE, AC_FUNC_GETGROUPS, AC_FUNC_STRNLEN): Likewise.
5037         * doc/autoconf.texi (Default Includes): Document
5038         AC_INCLUDES_DEFAULT.
5040 2003-05-17  Akim Demaille  <akim@epita.fr>
5042         * lib/autoconf/specific.m4: Include signal.h and unistd.h.
5043         * doc/autoconf.texi (Obsolete Macros): Adjust.
5044         Reported by Werner LEMBERG and Debian Bug 190886.
5046 2003-05-16  Akim Demaille  <akim@epita.fr>
5048         * lib/m4sugar/m4sh.m4 (_AS_UNSET_PREPARE): s/FOO/as_foo/ to avoid
5049         user name space clashes.
5050         Reported by Bruno Haible.
5052 2003-05-16  Akim Demaille  <akim@epita.fr>
5054         * bin/autoheader.in, bin/autom4te.in, bin/autoreconf.in,
5055         * bin/autoscan.in, bin/autoupdate.in, bin/ifnames.in (BEGIN): Make
5056         them uniform, and more robust to Perl special characters.
5057         Reported by Martin Mokrejs.
5059 2003-05-14  Akim Demaille  <akim@epita.fr>
5061         * tests/foreign.at (Libtool): Skip all Libtools pre 1.4.
5063 2003-05-14  Akim Demaille  <akim@epita.fr>
5065         * doc/autoconf.texi (Header Portability): X11/extensions/scrnsaver.h,
5066         linux/irda.h.
5068 2003-05-12  Akim Demaille  <akim@epita.fr>
5070         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Improve the
5071         message.
5072         From Matthias Andree.
5074 2003-05-07  Alexandre Duret-Lutz  <adl@gnu.org>
5076         * lib/Autom4te/XFile.pm (lock, truncate): Do not pass @_ to flock
5077         and truncate.
5079 2003-05-06  Akim Demaille  <akim@epita.fr>
5081         Don't try to be smart with aclocal 1.8+ because (i) aclocal no
5082         longer updates aclocal.m4 if useless, (ii) if a file m4_included
5083         by aclocal.m4 is changed it might require the importing of another
5084         m4 extension file, i.e., aclocal must be run.
5086         * bin/autoreconf.in (&run_aclocal, $aclocal_supports_force): New.
5087         (&parse_args): Use --force with aclocal if required and supported.
5088         (&autoreconf_current_directory): Use &run_aclocal.
5090 2003-05-06  Akim Demaille  <akim@epita.fr>
5092         Lock autom4te's cache.
5094         * lib/Autom4te/XFile.pm ($me, &name, &lock, &truncate, &seek): New.
5095         * bin/autom4te.in (&Request::save, &Request::load): Use an IO::File
5096         argument instead of a file name, so that the request file remains
5097         open during the whole autom4te run.
5098         ($icache_file): New.
5099         (&freeze): Lock the $icache_file.
5101 2003-04-29  Derek Price  <derek@ximbiot.com>
5103         * lib/autotest/general.m4 (AT_KEYWORDS): Don't use a comma as the
5104         seperator with m4_append_uniq().  It doesn't work.
5105         (AT_CLEANUP): Add `;' to end of at_help_all.
5106         (AT_INIT): Allow --keywords to be specified more than once.  When
5107         grepping $at_help_all for keywords, use the field and keyword
5108         seperators to ensure a complete keyword match.  Alter at_prev handling
5109         to support the new --keywords behavior.
5111 2003-04-27  Karl Berry  <karl@freefriends.org>
5113         * doc/autoconf.texi: Make the dir entries in the autoconf manual
5114         align better with others.  I also made some of the individual
5115         entries on one line, for brevity and to make it easier for me to
5116         sort my dir-example file in the Texinfo distribution :).
5118 2003-04-12  Jim Meyering  <jim@meyering.net>
5120         * NEWS: Mention the new macro.
5121         * lib/autoconf/c.m4 (AC_C_RESTRICT): New macro.
5122         * doc/autoconf.texi (C Compiler): Describe AC_C_RESTRICT.
5123         * tests/c.at: Test AC_C_RESTRICT.
5124         * tests/mktests.sh (ac_exclude_list): Add exclusion for AC_C_RESTRICT.
5126 2003-04-08  Akim Demaille  <akim@epita.fr>
5128         * bin/ifnames.in: Skip C++ comments.
5129         From Jeremy Yallop.
5131 2003-04-08  Akim Demaille  <akim@epita.fr>
5133         * GNUmakefile (SHELL): Don't assume sh is in /bin/.
5134         From Ilya Zakharevich.
5136 2003-04-08  Akim Demaille  <akim@epita.fr>
5138         * doc/autoconf.texi (Particular Headers): Some about sys/socket.h,
5139         net/if.h, stdlib.h.
5141 2003-04-01  Derek Price  <derek@ximbiot.com>
5143         * lib/autoconf/programs.m4 (AC_PROG_INSTALL): Correct syntax error
5144         from Akim's checkin of 2003-03-29.
5146 2003-04-01  Derek Price  <derek@ximbiot.com>
5148         * tests/torture.at (Configuring subdirectories): Add missing
5149         close-quote for Akim's change from 2003-03-28.
5151 2003-04-01  Akim Demaille  <akim@epita.fr>
5153         * doc/autoconf.texi (ac, at, ms): Rename these indexes as...
5154         (AC, AT, MS): these.
5155         (shortindexflag, @acindex, @ahindex, @asindex, @atindex, @msindex):
5156         New.
5157         Use them.
5158         * doc/Makefile.am (CLEANFILES): Adjust.
5159         (TEXI2DVI): Make it --batch.
5161 2003-03-31  Derek Price  <derek@ximbiot.com>
5163         * lib/autotest/general.m4: Revert the checkin from 2003-03-27
5164         which removed the main loop.
5165         Thanks to Akim Demaille.
5167 2003-03-29  Akim Demaille  <akim@epita.fr>
5169         * lib/autoconf/programs.m4 (AC_PROG_INSTALL): Skip OS/2's install,
5170         that starts a GUI.
5171         From Ilya Zakharevich.
5173 2003-03-29  Akim Demaille  <akim@epita.fr>
5175         * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_MONGREL): The
5176         documentation to read is Autoconf's.
5177         Suggested by Paul Eggert.
5179 2003-03-28  Akim Demaille  <akim@epita.fr>
5181         * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_MONGREL): Suggest
5182         reading the section "Present But Cannot Be Compiled" when the
5183         header causes problems.
5185 2003-03-28  Akim Demaille  <akim@epita.fr>
5187         * tests/torture.at (Configuring subdirectories): Require aclocal
5188         1.4, otherwise the test fails, as it does support configure.ac.
5189         This fixes the "test 40 failed" bug reports.
5191 2003-03-28  Akim Demaille  <akim@epita.fr>
5193         * doc/autoconf.texi (C Compiler): `#line' portability.
5194         From Paul Eggert and Nelson H. F. Beebe.
5196 2003-03-27  Derek Price  <derek@ximbiot.com>
5198         * lib/autotest/general.m4: Eliminate main loop and reorganize test
5199         layout in order to allow scripting around test groups.
5201 2003-03-27  Derek Price  <derek@ximbiot.com>
5203         * lib/autotest/general.m4 (PARSE_ARGS,PARSE_ARGS_END,HELP,HELP_MODES,
5204         HELP_TUNING,HELP_OTHER,HELP_END,PREPARE_TESTS,TESTS_END): Define and
5205         use new diversions in preparation for accepting new arguments and
5206         allowing scripting around tests.
5207         (OPTIONS,TAIL): Remove these diversions to make way for the ones above.
5209 2003-03-26  Derek Price  <derek@ximbiot.com>
5211         * lib/autoconf/general.m4 (AC_ARG_VAR): Use AS_HELP_STRING instead of
5212         obsolete AC_HELP_STRING.
5213         (AC_HELP_STRING): AU_DEFUN to...
5214         * lib/m4sugar/m4sh.m4 (AS_HELP_STRING): ...here.
5215         * tests/m4sh.at (AS_HELP_STRING): New test.
5217         * tests/acgeneral.at: Regenerated.
5219 2003-03-26  Derek Price  <derek@ximbiot.com>
5221         * lib/autotest/general.m4: s/DEFAULT/DEFAULTS/ since it makes more
5222         sense.  Verbosify the diversion definitions comment.
5224 2003-03-26  Derek Price  <derek@ximbiot.com>
5226         * lib/autotest/general.m4 (AT_INIT): Remove redundant call to
5227         AS_PREPARE.
5229 2003-03-21  Eric Siegerman  <eric_97@pobox.com>
5231         * doc/autoconf.texi (Present But Cannot Be Compiled):
5232         Grammar fixes and minor rewording. (trivial change)
5234 2003-03-06  Paul Eggert  <eggert@twinsun.com>
5236         Work around a problem noted by Nelson H. F. Beebe with coreutils
5237         4.5.9: Sun c89 (Sun WorkShop 6 update 2 C 5.3 Patch 111679-08
5238         2002/05/09) rejects '#line 32768 "configure"' because the line
5239         number overflows.
5240         * lib/autoconf/c.m4 (AC_LANG_SOURCE(C)): Do not generate
5241         #line directives.
5242         * lib/autoconf/lang.m4 (AC_LANG_SOURCE): Fix comment to match this.
5243         * doc/autoconf.texi (Generating Sources): Document this.
5245 2003-03-01  Richard Dawe  <rich@phekda.freeserve.co.uk>
5247         * tests/atspecific.m4 (AT_CHECK_AUTOM4TE): Normalize
5248         file name for the m4 program, when it has an "exe" file extension.
5249         DJGPP's error messages include the error code in brackets -
5250         remove the error code during normalization.
5252 2003-02-28  Akim Demaille  <akim@epita.fr>
5254         * doc/autoconf.texi (Present But Cannot Be Compiled): New.
5256 2003-02-28  Alexandre Duret-Lutz  <adl@gnu.org>
5258         * doc/autoconf.texi (Limitations of Make): Remove the section
5259         about `$<' in inference rules, it was a bogus interpretation of
5260         an old Automake change.  Discuss NetBSD, FreeBSD, OpenBSD, and
5261         Tru64 make in the "target lookup" section.
5262         (Automake): Automake 1.5+ no longer requires special tools to be
5263         present on the developer's host.
5265 2003-02-26  Richard Dawe  <rich@phekda.freeserve.co.uk>
5267         * bin/autoheader.in (BEGIN): For DJGPP SHELL may not be set
5268         to a shell that can handle redirection or quoting correctly.
5269         Override SHELL with the shell detected by configure.
5270         Use of $^O suggested by Tim van Holder.
5271         * bin/autom4te.in (BEGIN): Likewise.
5272         * bin/autoreconf.in (BEGIN): Likewise.
5273         * bin/autoscan.in (BEGIN): Likewise.
5274         * bin/autoupdate.in (BEGIN): Likewise.
5275         * bin/ifnames.in (BEGIN): Likewise.
5277         * bin/ifnames.in: Add final newline to help and version messages.
5279         * lib/autoconf/programs.m4 (AC_PROG_MAKE_SET): Translate colons,
5280         to cope with DOS-style absolute paths, when constructing
5281         ${ac_make}.
5283         * lib/autoconf/status.m4 (_AC_OUTPUT_HEADERS, _AC_OUTPUT_FILES):
5284         When constructing paths with IFS=:, quote the path. If we're
5285         constructing a DOS-style absolute path, we don't want to split it
5286         on the colon.
5288         * tests/atspecific.m4 (AT_CHECK_CONFIGURE): Fix typo
5289         in description.
5291 2003-02-25  Pavel Roskin  <proski@gnu.org>
5293         * bin/autoheader.in: Add missing newline when printing
5294         suggestion how change AC_DEFINE call.
5296 2003-02-24  Paul Eggert  <eggert@twinsun.com>
5298         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Fix typo in
5299         2002-09-01 patch by replacing "test -n" with "test -z".
5300         This fixes a bug found by Jeff Painter and reported by Tom Epperly in
5301         <http://mail.gnu.org/archive/html/autoconf/2003-02/msg00139.html>.
5303         * doc/autoconf.texi (Shell Substitutions): test -n -> test -z,
5304         to fix a mismatch between example and discussion.
5306 2003-02-24  Kevin Ryde  <user42@zip.com.au>
5308         * doc/autoconf.texi (Limitations of Builtins): Add notes on printf
5309         format starting with "-".
5311 2003-02-20  Alexandre Duret-Lutz  <adl@gnu.org>
5313         * doc/autoconf.texi (Limitations of Make): `foo=bar make -e'
5314         is not portable inside Makefile.
5316 2003-02-20  Akim Demaille  <akim@epita.fr>
5318         * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_MONGREL): When
5319         compiler says yeah, but preproc says nope, compiler is right.
5320         Conversely, prompt the reader to send a bug report to the
5321         maintainers of the package, not of Autoconf.
5323 2003-02-20  Klee Dienes  <kdienes@apple.com>
5325         * bin/autoreconf.in (autoreconf_current_directory): Properly
5326         handle an empty aclocal.m4.
5328 2003-02-20  Akim Demaille  <akim@epita.fr>
5330         * lib/autoconf/general.m4 (AC_PREFIX_PROGRAM): Quote
5331         $ac_prefix_program.
5332         From Larry Jones.
5334 2002-12-23  Paul Eggert  <eggert@twinsun.com>
5336         * lib/autoconf/c.m4 (AC_LANG_FUNC_LINK_TRY(C)): Define $1 to an
5337         innocuous variant befor including <limits.h> or <assert.h>.  This
5338         works around a bug reported by Albert Chin: HP-UX 11i
5339         (and earlier versions) have a <limits.h> that declares
5340         gettimeofday and many other functions.
5342 2002-12-03  Paul Eggert  <eggert@twinsun.com>
5344         Version 2.57.
5346         * NEWS, configure.ac: Update version.
5348         * doc/fdl.texi: Upgrade to FDL version 1.2.
5350         * lib/autoconf/c.m4 (AC_LANG_FUNC_LINK_TRY(C)): Use the function f
5351         nontrivially in main's body, so that f's external declaration is
5352         not optimized away in AIX.  This should fix the bug reported by
5353         Martin Frydl in
5354         <http://mail.gnu.org/pipermail/autoconf/2002-November/014508.html>.
5356         * lib/autoconf/c.m4 (AC_LANG_FUNC_LINK_TRY(C),
5357         _AC_PROG_PREPROC_WORKS_IFELSE): Use <limits.h> if __STDC__ is
5358         defined, to support freestanding compilers.  This should fix the
5359         bug reported by Momchil Velkov in
5360         <http://mail.gnu.org/pipermail/autoconf/2002-November/014490.html>.
5362         * doc/autoconf.texi (Obsolete Macros): Fix typos (insert empty
5363         arg, AC_DEFINE -> AC_DEFINE_UNQUOTED) in documentation for
5364         obsolete AC_CHECK_TYPE.  The missing empty arg was reported
5365         by Simon Josefsson in
5366         <http://mail.gnu.org/pipermail/autoconf-patches/2002-December/008830.html>.
5368         * Makefile.maint (www-gnu): New macro.
5369         (standards.texi-url_prefix, make-stds.texi-url_prefix): Use it, as
5370         the location has moved.
5372 2002-12-02  Martin Frydl  <martin@systinet.com>
5374         * bin/autom4te.in (at_flatten): rewritten to avoid M4 problem when
5375         \(.*\) match is too long and there is something more to be checked.
5376         <http://mail.gnu.org/pipermail/autoconf/2002-November/014524.html>
5378 2002-11-15  Akim Demaille  <akim@epita.fr>
5380         Version 2.56.
5382         * config/install-sh: chmod +x.
5383         From Paul Eggert.
5384         * config/move-if-change: Indenting changes.
5385         * Makefile.am (AUTOMAKE_OPTIONS): Move to...
5386         * configure.ac (AM_INIT_AUTOMAKE): here.
5387         Require 1.7.1.
5389 2002-11-14  Akim Demaille  <akim@epita.fr>
5391         Version 2.55.
5393         * config/config.guess, config/config.sub, config/install-sh:
5394         Update from masters.
5396 2002-11-14  Akim Demaille  <akim@epita.fr>
5398         * Makefile.maint: Sync with Bison, i.e.:
5399         (po-check): Scan .l and .y files instead of the
5400         .c and the .h files that they generate.  This fixes the bug
5401         reported by Tim Van Holder in:
5402         <http://mail.gnu.org/pipermail/bison-patches/2002-November/001352.html>
5403         Look for N_ as well as for _.  Try to avoid matching #define for
5404         N_ and _.
5405         From Paul Eggert.
5407 2002-11-14  Akim Demaille  <akim@epita.fr>
5409         * doc/autoconf.texi (C Compiler): Compiling several files at once.
5410         From Paul Eggert and Albert Chin-A-Young.
5412 2002-11-14  Akim Demaille  <akim@epita.fr>
5414         * doc/autoconf.texi (C Compiler): Solitary backslashes.
5415         From Paul Eggert and Albert Chin-A-Young.
5417 2002-11-14  Kevin Ryde  <user42@zip.com.au>
5419         * lib/autoconf/c.m4 (AC_LANG_FUNC_LINK_TRY(C)): Initialize f=$1 rather
5420         than assigning in main, to avoid HP cc +O3 optimizing it away.
5422 2002-11-12  Peter Eisentraut  <peter_e@gmx.net>
5424         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Add -q
5425         option.  Process --recheck after parsing all options.  Pass -q
5426         option to configure on --recheck.
5427         (AC_OUTPUT): Pass -q from configure to config.status.
5428         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Strip -q from
5429         arguments to record.
5430         * doc/autoconf.texi (config.status Invocation): Document
5431         config.status -q option.
5433 2002-11-07  Alexandre Duret-Lutz  <adl@gnu.org>
5435         * bin/autoscan.in (scan_file): Scan Makefile.am too. Ignore
5436         Makefile.in if Makefile.am exists.
5437         (output): Strip `.am' from Makefiles.  Don't
5438         output AC_CONFIG_FILES if no Makefiles were found.
5440 2002-11-07  Akim Demaille  <akim@epita.fr>
5442         * Makefile.am (cvs_files): Add elisp-comp, mdate-sh.
5443         (local_updates): New.
5444         * Makefile.maint: Update, from CVS Bison.
5445         (local_updates): New.
5447 2002-11-06  Akim Demaille  <akim@epita.fr>
5449         * lib/autoconf/c.m4 (AC_LANG_FUNC_LINK_TRY): Wrap the `f'
5450         declaration in extern "C" too.
5451         Reported by Roberto Bagnara.
5453 2002-11-06  Akim Demaille  <akim@epita.fr>
5455         * tests/torture.at (Configuring subdirectories): Don't use grep
5456         -w.
5457         * doc/autoconf.texi (Limitations of Usual Tools): Grep -w.
5458         Reported by Ezra Peisach.
5460 2002-11-05  Akim Demaille  <akim@epita.fr>
5462         * lib/autoconf/autoheader.m4 (_AH_TEMPLATE_OLD, _AH_VERBATIM_OLD):
5463         Remove.
5464         We _have_ to stop using the old compatibility scheme that tried to
5465         avoid useless backslashes because Libtool 1.4.3 contains a
5466         AC_DEFINE([error_t], [int],
5467         [Define to a type to use for \`error_t' if it is not
5468         otherwise available.])
5469         We _have_ to quote the single quote and backslashes with \.  The
5470         old compatibility scheme saw that ` was backslashed, and therefore
5471         did not quote the single quote.  Hence before this patch, Autoconf
5472         was not compatible with Libtool.
5474 2002-11-04  Paul Eggert  <eggert@twinsun.com>
5476         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Set the following variables,
5477         too: LC_ADDRESS, LC_IDENTIFICATION, LC_MEASUREMENT, LC_MONETARY,
5478         LC_NAME, LC_PAPER, LC_TELEPHONE.
5479         * doc/autoconf.texi (Special Shell Variables): Mention those vars.
5481 2002-11-04  Akim Demaille  <akim@epita.fr>
5483         Version 2.54c.
5485         * Makefile.maint (update, cvs-update, po-update, do-po-update):
5486         New.
5487         * config/texinfo.tex: Update.
5489 2002-11-03  Akim Demaille  <akim@epita.fr>
5491         * bin/autoreconf.in (&autoreconf_current_directory): New, extracted
5492         from...
5493         (&autoreconf): here.
5494         ($help, $make, &parse_args, &autoreconf_current_directory):
5495         Support -m/--make.
5496         * doc/autoconf.texi (autoreconf Invocation): Adjust.
5498 2002-10-31  Bruno Haible  <bruno@clisp.org>
5500         * lib/autoconf/functions.m4 (_AC_FUNC_MALLOC_IF): Change message.
5501         Change name of cache variable to ac_cv_func_malloc_0_nonnull.
5502         (AC_FUNC_MALLOC): Change description of HAVE_MALLOC macro.
5503         (_AC_FUNC_REALLOC_IF): Change message. Change name of cache variable
5504         to ac_cv_func_realloc_0_nonnull.
5505         (AC_FUNC_REALLOC): Change description of HAVE_REALLOC macro.
5507 2002-10-31  Akim Demaille  <akim@epita.fr>
5509         The test suite was no longer checking for trailing envvars and files.
5511         * tests/atspecific.m4 (AC_STATE_SAVE): Don't use quadrigraphs here.
5512         (AT_CHECK_ENV): Make sure the `state-ls.before file exists.
5514 2002-10-31  Akim Demaille  <akim@epita.fr>
5516         * lib/autoconf/programs.m4 (AC_PROG_MAKE_SET): Use and display
5517         `$(MAKE)' instead of '${MAKE}' to emphasize that we refer to the
5518         Make variable, not a shell variable.
5519         Suggested by Bruno Haible.
5521 2002-10-31  Akim Demaille  <akim@epita.fr>
5523         * bin/autom4te.in (load_configuration): Reject #args out of any
5524         language.
5526 2002-10-31  Akim Demaille  <akim@epita.fr>
5528         * lib/autoconf/general.m4 (_AC_MSG_LOG_CONFTEST): New.
5529         (_AC_PREPROC_IFELSE, _AC_COMPILE_IFELSE, _AC_LINK_IFELSE)
5530         (_AC_RUN_IFELSE): Use it.
5531         * lib/autoconf/lang.m4 (_AC_COMPILER_OBJEXT):
5532         (_AC_COMPILER_EXEEXT_DEFAULT): Likewise.
5533         * lib/autoconf/c.m4 (AC_LANG_SOURCE): Don't include confdefs.h,
5534         inline it.
5536 2002-10-30  Akim Demaille  <akim@epita.fr>
5538         * bin/autom4te.in (&parse_args, $help): Support --no-cache.
5539         * doc/autoconf.texi (autom4te Invocation): Adjust.
5540         Suggested by Tim van Holder.
5542 2002-10-29  Paul Eggert  <eggert@twinsun.com>
5544         * doc/autoconf.texi (Particular Functions): AC_FUNC_MALLOC and
5545         AC_FUNC_REALLOC check for compatibility with glibc, not POSIX.
5546         Problem reported by Bruno Haible.
5548 2002-10-29  Akim Demaille  <akim@epita.fr>
5550         * doc/autoconf.texi (Header Templates): Put also in words what the
5551         pictures says to assist free style readers.
5552         (Customizing autom4te): s/--cache=/--cache /.
5554 2002-10-29  Akim Demaille  <akim@epita.fr>
5556         * lib/autoconf/functions.m4 (_AC_FUNC_VFORK): Include stdlib.h and
5557         sys/wait.h.
5558         sparc_address_test returns void.
5559         Use it with an argument, as prototyped.
5560         From Bruno Haible.
5562 2002-10-29  Akim Demaille  <akim@epita.fr>
5564         * doc/autoconf.texi (Subdirectories): Cygnus dirs have
5565         configure.in, not configure.ac.
5566         Reported by Bruno Haible.
5568 2002-10-29  Akim Demaille  <akim@epita.fr>
5570         * tests/torture.at (Deep Package): New test.
5571         (Configuring subdirectories): Don't use a testSubDir as Autotest
5572         now does it itself.
5574 2002-10-29  Akim Demaille  <akim@epita.fr>
5576         * bin/autoreconf.in (&parse_args, $help): Support --warnings.
5577         * doc/autoconf.texi (Invoking autom4te): Rename as...
5578         (autom4te Invocation): this, for consistency with the other nodes.
5580 2002-10-29  Akim Demaille  <akim@epita.fr>
5582         * lib/autom4te.in (Autoconf): s/automate/autom4te/.
5583         Reported by Ralf Corsepius.
5585 2002-10-29  Akim Demaille  <akim@epita.fr>
5587         * lib/m4sugar/m4sh.m4 (_AS_QUOTE): The warning about quoted
5588         characters is a back as an `obsolete' warning now.
5589         Reported by Ralf Corsepius.
5591 2002-10-28  Akim Demaille  <akim@epita.fr>
5593         * configure.ac: Bump to 2.54c.
5595 2002-10-28  Akim Demaille  <akim@epita.fr>
5597         Version 2.54b.
5599         * tests/foreign.at (Libtool): Adjust to broken libtoolize.
5601 2002-10-28  Akim Demaille  <akim@epita.fr>
5603         * tests/atspecific.m4 (AT_CHECK_AUTOM4TE): Be robust to different
5604         m4 executable names, and different GNU M4 version.
5605         Reported by Ezra Peisach and Paul Jarc.
5607 2002-10-27  Akim Demaille  <akim@epita.fr>
5609         * lib/autoconf/functions.m4 (_AC_FUNC_VFORK): Really use
5610         AC_RUN_IFELSE.
5612 2002-10-27  Akim Demaille  <akim@epita.fr>
5614         * doc/autoconf.texi: More AC_MSG_FAILURE promotion.
5615         * lib/autoconf/fortran.m4 (_AC_F77_NAME_MANGLING):
5616         Die when a simple Fortran program cannot be compiled.
5617         * lib/autoconf/lang.m4 (AC_LANG_CALL, AC_LANG_FUNC_LINK_TRY):
5618         Issue a warning if no function is given.
5620 2002-10-27  Akim Demaille  <akim@epita.fr>
5622         * doc/autoconf.texi (Run Time): Document AC_RUN_IFELSE.
5623         Move the documentation of AC_TRY_RUN to...
5624         (Obsolete Macros): here.
5625         Adjust all the old samples still using AC_TRY_RUN to AC_RUN_IFELSE.
5626         (autoconf Invocation): Remove the duplicates with `invoking
5627         autom4te'.
5628         * lib/autoconf/headers.m4 (AC_HEADER_STDC): Don't use AC_TRY_RUN.
5629         * lib/autoconf/c.m4 (AC_C_BIGENDIAN): Likewise.
5631 2002-10-27  Akim Demaille  <akim@epita.fr>
5633         * doc/autoconf.texi (Generating Sources): Document AC_LANG_CALL
5634         and AC_LANG_FUNC_LINK_TRY.
5635         (Examining Libraries): Rename as...
5636         (Running the Linker): this.
5637         Document AC_LINK_IFELSE.
5638         Move the documentation of AC_TRY_LINK and AC_TRY_LINK_FUNC to...
5639         (Obsolete Macros): here.
5640         * lib/autoconf/fortran.m4 (_AC_F77_NAME_MANGLING): Don't use
5641         AC_TRY_LINK_FUNC nor AC_TRY_LINK.
5642         * lib/autoconf/libs.m4 (AC_CHECK_LIB, AC_PATH_XTRA): Likewise.
5643         * lib/autoconf/headers.m4 (AC_USG): Likewise.
5645 2002-10-27  Akim Demaille  <akim@epita.fr>
5647         * lib/autoconf/headers.m4 (AC_HEADER_STDC): Don't use AC_TRY_CPP.
5649         More `check config.log' messages.
5651         * lib/autoconf/general.m4 (AC_MSG_FAILURE): New.
5652         * doc/autoconf.texi (Printing Messages): Document it.
5653         * lib/autoconf/types.m4 (AC_CHECK_SIZEOF): Use it when
5654         appropriate.
5655         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT)
5656         (_AC_COMPILER_EXEEXT_WORKS, _AC_COMPILER_EXEEXT_O)
5657         (_AC_COMPILER_OBJEXT): Likewise.
5658         * lib/autoconf/general.m4 (AC_RUN_IFELSE): Likewise.
5659         * lib/autoconf/fortran.m4 (_AC_LANG_PROGRAM_C_F77_HOOKS):
5660         Likewise.
5661         * lib/autoconf/c.m4 (AC_PROG_CPP, AC_PROG_CC, AC_PROG_CXXCPP):
5662         Likewise.
5664         Deprecate macros with unusual interfaces.
5666         * lib/autoconf/general.m4 (AC_TRY_CPP, AC_TRY_LINK)
5667         (AC_TRY_COMPILE, AC_TRY_RUN): AU_DEFUN'ed.
5669         Document the new ones, and proper style.
5671         * doc/autoconf.texi (Generating Sources): New.
5672         Document AC_LANG_CONFTEST, AC_LANG_SOURCE, AC_LANG_PROGRAM.
5673         (Examining Declarations): Rename as...
5674         (Running the Preprocessor): this.
5675         Document AC_PREPROC_IFELSE.
5676         (Examining Syntax): Rename as...
5677         (Running the Compiler): this.
5678         (AC_FOO_IFELSE vs AC_TRY_FOO): New section.
5679         (Obsolete Macros): Move the definition of AC_TRY_CPP and
5680         AC_TRY_COMPILE here.
5682 2002-10-27  Akim Demaille  <akim@epita.fr>
5684         Move sections around.
5686         * doc/autoconf.texi (Customizing autom4te): Remove a lost
5687         sentence.
5688         Reported by Burno Haible.
5689         (Language Choice): Now the first section of...
5690         (Writing Tests): this section.
5691         Make the introduction less C-centric.
5692         (Guidelines, Test Functions): Move to...
5693         (Writing Test Programs): this new section.
5694         (Test Programs): Merge into...
5695         (Run Time): this.
5697 2002-10-27  Akim Demaille  <akim@epita.fr>
5699         * lib/freeze.mk ($(AUTOM4TE_CFG)): Add a missing dependency on
5700         autom4te.in that resulted in the need for two `make' runs.
5702 2002-10-27  Akim Demaille  <akim@epita.fr>
5704         * configure.ac: Bump to 2.54b.
5706 2002-10-25  Akim Demaille  <akim@epita.fr>
5708         Version 2.54a.
5710         * Makefile.maint: Update from the Coreutils.
5711         (AMTAR): Remove, obsolete.
5712         (automake_repo): Update to redhat.com.
5713         (cvs_file): New.
5714         Adjust to the fact that ansi2knr is now hosted by Automake.
5715         * Makefile.am (cvs_files): Add install-sh and mkinstalldirs.
5716         * config/config.guess, config/mkinstalldirs, config/texinfo.tex:
5717         Update from masters.
5718         * lib/autoscan/Makefile.am (EXTRA_DIST, nodist_autoscanlib_DATA):
5719         autoscan.pre is not to be installed, and autoscan.list is not to
5720         be shipped.
5721         (CLEANFILES): Add autoscan.list.
5722         (autoscan.list): Disable the cache.
5723         * bin/Makefile.am: Include freeze.mk.
5725 2002-10-25  Akim Demaille  <akim@epita.fr>
5727         * bin/autom4te.in (&load_configuration): Take the file as
5728         argument.
5729         (&parse_args): Handle -C, --cache.
5730         ($help): Adjust.
5731         (MAIN): Load ~/.autom4te.cfg and ./.autom4te.cfg.
5732         * lib/autom4te.in (Autoconf): Pass --cache=autom4te.cache.
5733         * doc/autoconf.texi (Invoking autom4te): Document --cache.
5734         Now a subsection of...
5735         (Using autom4te): This new section.
5736         (Customizing autom4te): New.
5737         (autom4te.cache): Adjust.
5739 2002-10-25  Akim Demaille  <akim@epita.fr>
5741         * doc/autoconf.texi (Generic Headers): More information on how to
5742         use AC_CHECK_HEADERS.
5744 2002-10-25  Akim Demaille  <akim@epita.fr>
5746         * bin/autoconf.as, bin/autoconf.in, bin/autoupdate.in ($help):
5747         Space changes.
5749 2002-10-25  Akim Demaille  <akim@epita.fr>
5751         * bin/autoscan.in (output): Output AC_PREREQ.
5752         (%needed_macros): Add AC_PREREQ so that configure.ac without one
5753         be reported.
5755 2002-10-23  Akim Demaille  <akim@epita.fr>
5757         * doc/autoconf.texi (Particular Headers): In AC_HEADER_STDBOOL,
5758         document _Bool.
5760 2002-10-23  Akim Demaille  <akim@epita.fr>
5762         * bin/autom4te.in (handle_traces): Handle @&t@ in traces.
5763         Reported by Peter Eisentraut.
5765 2002-10-23  Akim Demaille  <akim@epita.fr>
5767         * lib/autoconf/headers.m4 (AC_HEADER_STDBOOL): Also look for the
5768         type _Bool.
5769         Fix a typo.
5770         * doc/autoconf.texi (Particular Headers): Adjust according to Paul
5771         Eggert's recommandations.
5773 2002-10-22  Akim Demaille  <akim@epita.fr>
5775         * lib/autoconf/headers.m4 (AC_HEADER_STDBOOL): New, based on CVS
5776         Bison, by Paul Eggert.
5777         * doc/autoconf.texi (Particular Headers): Document it.
5779 2002-10-22  Aaron M. Ucko  <amu@alum.mit.edu>
5781         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Avoid duplicates in
5782         `$ac_configure_args'.
5784 2002-10-22  Akim Demaille  <akim@epita.fr>
5786         * doc/autoconf.texi: Use AC_CONFIG_HEADERS in examples.
5787         (AC_ST_BLKSIZE, AC_ST_RDEV): Directly point to AC_CHECK_MEMBERS.
5788         From Art Haas.
5790 2002-10-22  Akim Demaille  <akim@epita.fr>
5792         Restore the 2002-10-11  Akim Demaille  <akim@epita.fr> patch:
5794         * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_MONGREL)
5795         (AC_CHECK_HEADER, _AC_CHECK_HEADER_NEW,_AC_CHECK_HEADER_OLD): Restore.
5796         (_AC_CHECK_HEADER_NEW): Rename as...
5797         (AC_CHECK_HEADER): this.
5799 2002-10-22  Akim Demaille  <akim@epita.fr>
5801         * doc/autoconf.texi (Limitations of Usual Tools): Remove incorrect
5802         words about HP-UX cmp: it was actually a user-written cmp.
5804 2002-10-22  Akim Demaille  <akim@epita.fr>
5806         * tests/foreign.at (Libtool): Don't check autoconf's stderr: there
5807         are a few warnings.
5808         * lib/autoconf/autoheader.m4 (AH_VERBATIM, _AH_VERBATIM_OLD):
5809         Quote for Perl '' strings, not "".
5810         * bin/autoheader.in: Invoke autoconf to get '' strings, not ""
5811         strings.
5813 2002-10-22  Akim Demaille  <akim@epita.fr>
5815         * lib/m4sugar/m4sh.m4 (_AS_QUOTE): The warning about quoted
5816         characters is a syntax warning now.
5817         (_AS_QUOTE): Accept $2 as list of characters to quote.
5818         * lib/autoconf/autoheader.m4 (AH_VERBATIM, _AH_VERBATIM_OLD):
5819         Quote for Perl, not sh.
5820         * bin/autoheader.in: When $debug, report the file which is
5821         `do'ne.
5822         * tests/tools.at (autom4te, autoheader): Exercise @bar, not merely
5823         `@', to tickle Perl's lists.
5824         Reported by Carlos Velasco.
5826 2002-10-18  Akim Demaille  <akim@epita.fr>
5828         * bin/autom4te.in (handle_m4): Pass --fatal-warning to m4, so that
5829         missing included files _are_ errors.
5830         Thanks to Alexandre Duret-Lutz.
5831         * tests/tools.at (autom4te cache): Adjust.
5832         * tests/atspecific.m4 (AT_CHECK_AUTOM4TE): New.
5833         (AT_CHECK_M4SUGAR): Use it.
5834         * tests/m4sugar.at (m4_warn, m4_require: circular dependencies):
5835         Adjust.
5836         * tests/tools.at (autom4te): Now it does exit 1.
5838 2002-10-17  Akim Demaille  <akim@epita.fr>
5840         * lib/autoconf/general.m4 (AC_CACHE_SAVE): Don't use cmp.
5841         Fixes the `AC_ARG_VAR' test failures.
5842         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES): Don't use cmp.
5843         * lib/freeze.mk (check-forbidden-patterns): New.
5844         * lib/autoconf/Makefile.am, lib/autotest/Makefile.am
5845         * lib/m4sugar/Makefile.am (check-local): Use it to catch `cmp'.
5846         * doc/autoconf.texi (Limitations of Usual Tools): HP-UX' cmp and
5847         /dev/null.
5848         Reported months ago by H. Merijn Brand.
5850 2002-10-17  Akim Demaille  <akim@epita.fr>
5852         * tests/tools.at (autoheader): Put randoms `@' to stress Perl.
5854 2002-10-16  Paul Eggert  <eggert@twinsun.com>
5856         * Makefile.maint (wget_files): Remove ansi2knr.c.
5857         (ansi2knr.c-url_prefix): Remove.
5859 2002-10-16  Akim Demaille  <akim@epita.fr>
5861         Because of caching, some files that no longer exist and are no
5862         longer required can still cause errors.
5863         Reported by Alexandre Duret-Lutz.
5865         * bin/autom4te.in (&parse_args): Do not prepend `--reload-state'
5866         to frozen files in @ARGV, as @ARGV must remain being a list of
5867         files.  Rather, at M4 call sites, use this...
5868         (&files_to_options): New function.
5869         (&freeze): Use &error.
5870         (&up_to_date): If a file that was included according to the cache
5871         is no longer there, then the output is out dated.
5872         (&main): Don't even check whether a file is up to date is anyway
5873         --force is given.
5874         * tests/tools.at (autom4te cache): New.
5876 2002-10-16  Akim Demaille  <akim@epita.fr>
5878         * bin/autoconf.as: Kill dead options.
5879         * bin/autoupdate.in (&parse_args): Kill old options.
5880         * bin/autoreconf.in (&parse_args): Remove dead options.
5881         Factor some code.
5882         (&autoreconf): Report the directories we enter *and leave*, so
5883         that error messages can be easily located, and use GNU Make
5884         format, so that Emacs' compile mode understands us.
5885         * lib/Autom4te/General.pm (&update_file): Use `verbose' to report
5886         if some file was changed instead of `print'.
5887         * bin/autoheader.in: Suggest AC_DEFINE with 3 args when needed.
5888         (&parse_args): Remove the dead options.
5889         * tests/atspecific.m4 (AT_CHECK_AUTOHEADER): Adjust to the new
5890         autoheader's quiet mode.
5891         (AT_CHECK_AUTOUPDATE): Likewise.
5892         * tests/tools.at (autoupdate): Adjust.
5893         * tests/semantics.at (AC_C_BIGENDIAN): Likewise.
5895 2002-10-11  Akim Demaille  <akim@epita.fr>
5897         No longer use CPP to check for the existing of headers: use CC to
5898         check for compilability.
5900         * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_MONGREL)
5901         (AC_CHECK_HEADER, _AC_CHECK_HEADER_OLD): Remove.
5902         (_AC_CHECK_HEADER_NEW): Rename as...
5903         (AC_CHECK_HEADER): this.
5905         * lib/autotest/general.m4 (AT_INIT): Include the failed test
5906         numbers in the Subject suggestion.
5908 2002-10-11  Akim Demaille  <akim@epita.fr>
5910         * lib/autoconf/specific.m4 (AC_DECL_SYS_SIGLIST): Obsolete.
5911         Suggest using AC_CHECK_DECLS instead.
5913 2002-10-11  Akim Demaille  <akim@epita.fr>
5915         * tests/torture.at (AC_ARG_VAR): Have configure report the value
5916         of `precious'.
5918 2002-10-11  Akim Demaille  <akim@epita.fr>
5920         * lib/m4sugar/m4sh.m4 (_AS_PATH_SEPARATOR_PREPARE): Use $$ in the
5921         file name to enable parallel executions.
5922         From Sam Varshavchik.
5924 2002-10-08  Akim Demaille  <akim@epita.fr>
5926         * bin/autoreconf.in (&autoreconf): Run autopoint before the first
5927         aclocal invocation, as Gettext macros might not be visible to
5928         aclocal.
5929         Instead of blindly running autopoint, scan configure.ac (not the
5930         traces) for AM_GNU_GETTEXT_VERSION uses, as autopoint does.
5931         Reported by Paul D. Smith.
5933 2002-10-08  Paul Eggert  <eggert@twinsun.com>
5935         Work around problems found when POSIXLY_CORRECT=1 is set.
5936         None of this seems to have anything to do with POSIX, really,
5937         but it's how Perl getopt works.
5938         * bin/autom4te.in (parse_args): Configure GetOpt with
5939         "permute", too.
5940         * doc/autoconf.texi (Invoking autom4te):
5941         --warning -> --warnings.
5942         * lib/autom4te.in: --warning -> --warnings.
5944 2002-09-28  Akim Demaille  <akim@epita.fr>
5946         * doc/autoconf.texi (autom4te.cache): New section.
5948 2002-09-28  Akim Demaille  <akim@epita.fr>
5950         * lib/autom4te.in (Autoscan-preselections, Autoreconf-preselections)
5951         (Automake-preselections): Update.
5952         * bin/autoreconf.in, bin/autoheader.in: Comment changes.
5954 2002-09-28  Akim Demaille  <akim@epita.fr>
5956         * lib/autoscan/autoscan.pre: Move all the remaining rules to...
5957         * lib/autoconf/c.m4, lib/autoconf/functions.m4,
5958         * lib/autoconf/headers.m4, lib/autoconf/libs.m4,
5959         * lib/autoconf/specific.m4, lib/autoconf/types.m4: here.
5961 2002-09-28  Akim Demaille  <akim@epita.fr>
5963         * tests/torture.at (Configuring subdirectories): Be robust to
5964         users who use config.site to require for a cache: in this case,
5965         the two last configure runs, using two different sets of
5966         arguments, trigger a legitimate error.
5968 2002-09-28  Akim Demaille  <akim@epita.fr>
5970         * tests/m4sh.at (Functions Support, Functions and return Support):
5971         New.
5973 2002-09-28  Akim Demaille  <akim@epita.fr>
5975         * bin/Makefile.am (ETAGS_SH, ETAGS_PERL): Update: ifnames and
5976         autoheader are Perl programs.
5977         (autoconf, autoheader, autoreconf, autoupdate, ifnames, autoscan)
5978         (autom4te): Specify that the sources are in the $srcdir.
5979         * doc/autoconf.texi (Installation Directory Variables): Adjust.
5981 2002-09-28  Akim Demaille  <akim@epita.fr>
5983         * lib/autoscan/autoscan.pre (st_blksize, st_blocks, st_rdev)
5984         (tm_zone): Move their rules to...
5985         * lib/autoconf/types.m4: here, using AN_ macros.
5986         * lib/autoscan/autoscan.pre (AWK, BISON, INSTALL, LEX, LN, MAKE)
5987         (RANLIB, YACC, awk, bison, byacc, flex, gawk, install, lex, ln)
5988         (make, mawk, nawk, ranlib, yacc): Similarly, move to...
5989         * lib/autoconf/programs.m4: here.
5990         * lib/freeze.mk (ETAGS_FOR_M4, ETAGS_FOR_M4SUGAR)
5991         (ETAGS_FOR_AUTOCONF): New.
5992         Use it.
5994 2002-09-28  Akim Demaille  <akim@epita.fr>
5996         * lib/autoconf/autoscan.m4: New file.
5997         * lib/autoconf/autoconf.m4: Include it.
5998         * lib/autoconf/functions.m4: Use AN_FUNCTION for all the functions
5999         that were listed in the original autoscan.list.
6000         * lib/autoconf/headers.m4: Similarly with headers.
6001         * lib/freeze.mk (autoconf_m4f_dependencies): Add autoscan.m4.
6002         (.m4.m4f): Don't pass --prepend-include, since that's done by
6003         tests/autom4te itself.
6004         * lib/autoscan/Makefile.am: Include freeze.mk.
6005         (autoscan.list): New target --this file is no longer a source.
6006         (autoscan.pre): New file.
6008 2002-09-28  Akim Demaille  <akim@epita.fr>
6010         * bin/autoscan.in (@kinds): Make them singular.
6011         Adjust all uses.
6012         (&init_tables): When --debug, report the list of rules to ease
6013         tracking changes in autoscan.list.
6014         * lib/autoscan/autoscan.list (function): Strip comments, sort.
6016 2002-09-28  Akim Demaille  <akim@epita.fr>
6018         * lib/autoscan/functions, lib/autoscan/headers,
6019         * lib/autoscan/identifiers, lib/autoscan/makevars,
6020         * lib/autoscan/programs: Merge into...
6021         * lib/autoscan/autoscan.list: this.
6022         * bin/autoscan.in (&init_tables): Adjust.
6024 2002-09-28  Akim Demaille  <akim@epita.fr>
6026         * lib/autoscan/functions, lib/autoscan/headers,
6027         * lib/autoscan/identifiers, lib/autoscan/makevars,
6028         * lib/autoscan/programs: Make the `kind' explicit, i.e., each
6029         `functions' line is now prefixed with `function:'.
6030         * bin/autoscan.in (&init_tables): Adjust.
6032 2002-09-28  Akim Demaille  <akim@epita.fr>
6034         From now on, autoscan files must always map a macro name to a
6035         word: there is no `default' macro for autoscan.
6037         * bin/autoscan.in (&init_tables): Reject entries with no macro at
6038         all.
6039         * lib/autoscan/functions, lib/autoscan/headers: Make the macro
6040         explicit.
6042 2002-09-28  Akim Demaille  <akim@epita.fr>
6044         * bin/autoscan.in (%c_keywords): Remove.
6045         (&used): Keep only track of the words we might be interested in.
6046         (&output_kind): It is no longer needed to look for non active
6047         checks.
6049 2002-09-27  Akim Demaille  <akim@epita.fr>
6051         * lib/autoconf/functions.m4 (AC_FUNC_MBRTOWC): New, stolen from
6052         jm_FUNC_MBRTOWC, by Paul Eggert, from the Coreutils 4.5.1.
6053         * lib/autoscan/functions: Adjust.
6054         * doc/autoconf.texi (Particular Functions): Adjust.
6056 2002-09-27  Akim Demaille  <akim@epita.fr>
6058         * doc/autoconf.texi (Limitations of Usual Tools): Some about mv
6059         from /tmp.
6060         Thanks to Bill Moseley and Paul Eggert.
6061         * lib/m4sugar/m4sh.m4 (AS_TMPDIR): $2 is the directory into which
6062         the tmpdir must be created.
6063         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Have the tmp
6064         dir be in the build tree, instead of $TMPDIR.
6066 2002-09-27  Akim Demaille  <akim@epita.fr>
6068         * bin/autoscan.in: Improve the comments.
6069         (&parse_args): Drop obsolete undocumented options.
6070         (&output_kind): Output warnings.
6071         * lib/autoscan/functions: (dcgettext): Now trigger AM_GNU_GETTEXT.
6072         (getwd): Trigger a warning.
6074 2002-09-26  Akim Demaille  <akim@epita.fr>
6076         * bin/autoreconf.in: Clarify that -s is meaningless without -i.
6077         Reported by Ralf Corsepius.
6078         * doc/autoconf.texi (autoreconf Invocation): Likewise.
6080 2002-09-26  Akim Demaille  <akim@epita.fr>
6082         Single suffix rules and seperated dependencies are not portable.
6084         * doc/autoconf.texi (Installation Directory Variables): Update.
6085         (Limitations of Make): Some about `Single Suffix Rules and
6086         Separated Dependencies'.
6087         * bin/Makefile.am (autoconf, autoheader, autoreconf, autoupdate)
6088         (ifnames, autoscan, autom4te): Un-factor into several rules.
6090 2002-09-25  Paul Eggert  <eggert@twinsun.com>
6092         * BUGS (Interoperability bugs): New section.  Mention libtool
6093         1.4.2, configure.ac, and AC_CONFIG_AUX_DIR interoperability bug.
6095 2002-09-24  Paul Eggert  <eggert@twinsun.com>
6097         Fix a portability bug reported by Alexandre Duret-Lutz: Solaris 8
6098         make handles suffix-rules differently from GNU make.
6100         * bin/Makefile.am (SUFFIXES, .in): Remove.
6101         (autoconf autoheader autoreconf autoupdate ifnames autoscan autom4te):
6102         Move the body of the old .in rule here.
6104 2002-09-16  Akim Demaille  <akim@epita.fr>
6106         i960 compilers create `b.out' files by default.
6107         Reported by Ralf Corsepius.
6109         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT): Remove b.out files.
6110         (_AC_COMPILER_EXEEXT_DEFAULT): Adjust to b.out.
6112 2002-09-13  Paul Eggert  <eggert@twinsun.com>
6114         * doc/autoconf.texi (Particular Headers): Remove obsolete
6115         reference to `struct timezone' in the description of
6116         AC_HEADER_TIME.
6118 2002-09-13  Akim Demaille  <akim@epita.fr>
6120         Version 2.54.
6122         * config/config.sub, config/config.guess: Update.
6123         * Makefile.maint: Update from bits of the Coreutils 4.5.1.
6124         * Makefile.am: Adjust.
6126 2002-09-13  Akim Demaille  <akim@epita.fr>
6128         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Suggest
6129         reading config.log when the compiler is rejected.
6130         Suggested by Guido Draheim.
6132 2002-09-13  Akim Demaille  <akim@epita.fr>
6134         * bin/autoreconf.in: Don't use Cwd::chdir, since in its internals
6135         (chdir_init) might hang when stat'ing mounted directories.
6136         Reported by Vance Shipley.
6138 2002-09-12  Akim Demaille  <akim@epita.fr>
6140         * bin/autoscan.in (&parse_args): Pass a reference to the lists, not
6141         the lists.
6143 2002-09-12  Akim Demaille  <akim@epita.fr>
6145         * doc/autoconf.texi (Defining Symbols): Present two different
6146         prototypes for AC_DEFINE and AC_DEFINE_UNQUOTED to emphasize the
6147         difference between 1 argument calls, and 2-3 argument calls.
6149 2002-09-12  Peter Eisentraut  <peter_e@gmx.net>
6151         * doc/autoconf.texi: Review grammar and punctuation.
6153 2002-09-11  Paul Eggert  <eggert@twinsun.com>
6155         * doc/autoconf.texi: Fix minor formatting, spelling, and
6156         grammatical typos.
6157         (Defining Symbols): Explain that AC_DEFINE(var) defaults to 1, but
6158         AC_DEFINE(var,,description) does not; and the AC_DEFINE(var) case
6159         is obsolescent.
6161 2002-09-11  Akim Demaille  <akim@epita.fr>
6163         * doc/autoconf.texi (Questions): Rename as...
6164         (FAQ): this.
6165         (Defining Directories): New.
6167 2002-09-09  Akim Demaille  <akim@epita.fr>
6169         * doc/autoconf.texi (Making testsuite Scripts): Update.
6170         Suggested by Nishio Futoshi.
6172 2002-09-09  Koji Arai  <JCA02266@nifty.ne.jp>
6174         * doc/autoconf.texi (Making testsuite Scripts): Use `@@' where a
6175         plain `@' is wanted.
6177 2002-09-09  Akim Demaille  <akim@epita.fr>
6179         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Keep the
6180         `duplicates', since the algorithm was too naive and could keep
6181         `--prefix=1 --prefix=2 --prefix=1' as `--prefix=1 --prefix=2', and
6182         keep `--prefix foo --prefix bar' as `--prefix foo bar'.
6183         Reported by Ralf Corsepius.
6184         * tests/torture.at (Configuring subdirectories): Exercise these
6185         cases.
6187 2002-09-09  Akim Demaille  <akim@epita.fr>
6189         * lib/autoconf/functions.m4 (AC_FUNC_GETLOADAVG): Use $srcdir when
6190         looking for a replacement file.
6191         * lib/autoconf/general.m4 (AC_CHECK_DECLS): Check that the
6192         directory is relative.
6193         * doc/autoconf.texi (Generic Functions): Clarify the replacement
6194         directory definition.
6195         Reported by Andreas Schwab and Jim Meyering.
6197 2002-09-06  Akim Demaille  <akim@epita.fr>
6199         * doc/autoconf.texi (Setting Output Variables): Clarify what
6200         precious variables are.
6201         Suggested by Pontus Skoeld.
6203 2002-09-05  Akim Demaille  <akim@epita.fr>
6205         * bin/Makefile.am (autoconf, autoheader, autoreconf, autoupdate)
6206         (ifnames, autoscan, autom4te): Since we don't only depend on
6207         configure.ac variables (such as VERSION etc.), but also on prefix
6208         and so forth, depend on Makefile, not configure.ac.
6209         Reported by Alexandre Duret-Lutz.
6210         * doc/autoconf.texi (Installation Directory Variables): Adjust.
6212 2002-09-05  Kevin Ryde  <user42@zip.com.au>
6214         * doc/autoconf.texi (Limitations of Make): HP-UX trailing backslashes
6215         doesn't seem to be confined to ia64, just say "some versions".
6217 2002-09-04  Akim Demaille  <akim@epita.fr>
6219         * Makefile.am, doc/Makefile.am: Remove pdf targets, handled by
6220         Automake 1.6c.
6221         * Makefile.am (maintainer-clean-local): Remove.
6222         (MAINTAINERCLEANFILES): Remove COPYING.
6224 2002-09-03  Paul Eggert  <eggert@twinsun.com>
6226         * doc/autoconf.texi (Configuration Commands): Remove obsolete
6227         example for AC_CONFIG_COMMANDS_PRE.  Problem reported by Marcus
6228         Brinkmann.
6230 2002-09-03  Akim Demaille  <akim@epita.fr>
6232         * configure.ac: Bump to 2.53d.
6233         * Makefile.am (AUTOMAKE_OPTIONS): Require 1.6c, i.e., CVS Automake
6234         as of today, on Automake's team suggestion.
6236 2002-09-03  Akim Demaille  <akim@epita.fr>
6238         Version 2.53c.
6240 2002-09-02  Akim Demaille  <akim@epita.fr>
6242         * bin/autom4te.in (parse_args): Don't honor AUTOM4TE_PATH and
6243         SITE_MACRO_DIR.
6244         * configure.ac: Disable SITE_MACRO_DIR.
6246 2002-09-02  Jim Meyering  <meyering@lucent.com>
6248         * doc/autoconf.texi (AC_SYS_POSIX_TERMIOS): Reflect renaming: s/am/ac/,
6249         i.e., change am_cv_sys_posix_termios to ac_cv_sys_posix_termios.
6250         Also, tweak grammar: s/make sure to/be sure to/.
6252 2002-09-02  Paul Eggert  <eggert@twinsun.com>
6254         * doc/autoconf.texi (Limitations of Builtins): Explain why logical
6255         directory names are generally preferable to physical names.
6257 2002-09-02  Akim Demaille  <akim@epita.fr>
6259         * lib/Autom4te/General.pm (&update_file): s/die/error/.
6260         Reported by Raja R. Harinath.
6261         * bin/autoheader.in, bin/autoreconf.in, bin/autoscan.in,
6262         * bin/autoupdate.in: Use error instead of die.
6264 2002-09-01  Paul Eggert  <eggert@twinsun.com>
6266         * tests/mktests.sh (ac_exclude_egrep, au_exclude_egrep): Use
6267         ordinary shell concatenation rather than echo+tr+sed command that
6268         runs afoul of a long-line-related sed bug in Solaris 8.
6270         * bin/autoheader.in (parse_args): --warning -> --warnings.
6272         * bin/autoconf.as: Work even if "ls" outputs "FOO not found" to
6273         stdout, as traditional "ls" does.
6274         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT,
6275         _AC_COMPILER_EXEEXT_O): Likewise.
6276         * doc/autoconf.texi (Limitations of Usual Tools): Add "ls".
6278         * bin/autoconf.as: Add --prepend-include option.  This patch was
6279         applied to bin/autoconf.in in the 2002-07-17 patch by Mark D. Roth,
6280         but bin/autoconf.in is generated automatically from bin/autoconf.as.
6282         * bin/autoconf.in, configure: Regenerate.
6284         * doc/autoconf.texi (Special Shell Variables): Mention
6285         ENV, MAIL, MAILPATH, PS1, PS2, PS4.  Index PWD.
6287         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Unset ENV, MAIL,
6288         MAILPATH and set PS1, PS2, PS4 to default values, to work
6289         around bug in pre-3.0 UWIN ksh reported by Bruce Lilly.
6290         For LC_ALL etc, first try to set to "C" as POSIX requires and as
6291         the Autoconf documentation specifies; fall back to "unset" only if
6292         this fails.  Use a shell for-loop for this rather than an m4 loop,
6293         to shorten the output script.
6295 2002-08-30  Paul Eggert  <eggert@twinsun.com>
6297         * doc/autoconf.texi (Special Shell Variables): Mention POSIX
6298         1003.1-2001's requirements for CDPATH.  Give a simpler workaround
6299         for the CDPATH problem.  Document PWD.
6300         (Limitations of Builtins): Document the problem that "cd $foo" and
6301         "ls $foo" may refer to different directories in shells conforming
6302         to POSIX 1003.1-2001.  Use PS1 rather than CDPATH for "unset"
6303         example, since the old example is now out of date.
6305         * lib/autoconf/general.m4 (_AC_INIT_SRCDIR): Reject FOO if "cd
6306         FOO" and "ls FOO" talk about different directories; this catches
6307         problems when POSIX 1003.1-2001 "cd" fails due to symlink
6308         spaghetti.
6310         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Use AS_UNSET instead
6311         of rolling our own unset.
6312         (_AS_PREPARE): $as_unset CDPATH instead of AS_UNSETting it, since
6313         in practice we needn't worry about CDPATH if unset doesn't work.
6315         * Makefile.in, aclocal.m4, bin/Makefile.in,
6316         config/Makefile.in, doc/Makefile.in, lib/Makefile.in,
6317         lib/Autom4te/Makefile.in, lib/autoconf/Makefile.in,
6318         lib/autoscan/Makefile.in, lib/autotest/Makefile.in,
6319         lib/emacs/Makefile.in, lib/m4sugar/Makefile.in, man/Makefile.in,
6320         tests/Makefile.in: Regenerate with Automake 1.6.3.
6322         * config/config.guess, config/config.sub, config/mkinstalldirs:
6323         Update.
6325         * configure: Regenerate with self.
6327 2002-08-30  Kevin Ryde  <user42@zip.com.au>
6329         * doc/autoconf.texi (Limitations of Usual Tools): Notes on "cc"
6330         default output.
6332 2002-08-29  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
6334         * bin/autom4te.in (Request::load): Correctly test for "do" read
6335         failure.
6337 2002-08-29  Akim Demaille  <akim@epita.fr>
6339         * lib/Autom4te/General.pm (&xqx): New.
6340         (&xsystem): Use WIFEXITED and WEXITSTATUS instead of decoding $? by
6341         hand, which is not portable.
6342         (&error): New.
6343         * bin/autom4te.in: Use them.
6344         Use &error instead of die.
6345         * tests/m4sugar.at (m4_warn, m4_require: circular dependencies):
6346         Adjust.
6348 2002-08-17  Paul Eggert  <eggert@twinsun.com>
6350         * lib/autoconf/fortran.m4 (AC_PROG_F77): Remove fc from the
6351         default list of compilers to try, since it was long ago superseded
6352         by the ksh fc builtin.  Suggested by Steven G. Johnson.
6354 2002-07-31  Alexandre Duret-Lutz  <duret_g@epita.fr>
6356         * doc/autoconf.texi (Invoking autom4te): End the option table,
6357         fixing a bug introduced by the previous patch.
6358         (Limitations of Make): Add a 'target lookup' subentry in the
6359         'VPATH' entry.  Rewrite all `make' occurences as `@command{make}'.
6361 2002-07-29  Mark D. Roth  <roth@feep.net>
6363         * bin/autom4te.in: Remove --include-envvar and --site-macro-subdir
6364         options and use $AUTOM4TE_PATH.
6365         * doc/autoconf.texi: Remove documentation of autom4te
6366         --include-envvar and --site-macro-subdir options and document
6367         use of $AUTOM4TE_PATH.
6368         * lib/autom4te.in: Remove --include-envvar and --site-macro-subdir
6369         arguments from each language section.
6371 2002-07-29  Paul Eggert  <eggert@twinsun.com>
6373         * doc/install.texi: Include copyright symbol in copyright notice.
6375         * Makefile.am (MAKEINFO): Remove; it's a user-specified macro.
6376         Replace with:
6377         (AM_MAKEINFOFLAGS): New macro.
6378         * doc/Makefile.am (MAKEINFO, AM_MAKEINFOFLAGS): Likewise.
6379         * Makefile.am (INSTALL): Use the new macros.
6380         Use -o rather than --output, since "missing" does not grok --output.
6382 2002-07-25  Alexandre Duret-Lutz  <duret_g@epita.fr>
6384         * doc/autoconf.texi (Limitations of Make): Escaped newlines in
6385         comments do not always work. Never trust the exit status of
6386         `make -k'.
6388 2002-07-24  Kevin Ryde  <user42@zip.com.au>
6390         * doc/autoconf.texi (Limitations of Make, Making testsuite Scripts):
6391         Untabify, since tabs are not enjoyed by texi2dvi and makeinfo.
6393 2002-07-23  Paul Eggert  <eggert@twinsun.com>
6395         * lib/m4sugar/m4sh.m4 (_AS_PATH_SEPARATOR_PREPARE):
6396         Use PATH="/nonexistent;.", not PATH=".;.", as FreeBSD ksh2002
6397         apparently treats PATH="nonexistent" as if it contained ".".
6398         Bug reported by Stefan `Sec' Zehl.
6400 2002-07-22  Alexandre Duret-Lutz  <duret_g@epita.fr>
6402         * doc/autoconf.texi (Limitations of Make): Mention the special
6403         handling of the obj/ directory by BSD make.
6405 2002-07-20  Kevin Ryde  <user42@zip.com.au>
6407         * doc/autoconf.texi (Limitations of Make): Add HP-UX IA-64 trailing
6408         backslashes.
6410 2002-07-19  Akim Demaille  <akim@epita.fr>
6412         * doc/autoconf.texi (Function Portability): `exit'.
6413         (Programming in M4sh): Ethymology of M4sh.
6415 2002-07-19  Akim Demaille  <akim@epita.fr>
6417         * doc/autoconf.texi (AC_LIBOBJ vs LIBOBJS): More about $U.
6419 2002-07-18  Akim Demaille  <akim@epita.fr>
6421         Version 2.53b.
6423 2002-07-18  Akim Demaille  <akim@epita.fr>
6425         * config/config.guess, config/config.sub: Update.
6427 2002-07-18  Akim Demaille  <akim@epita.fr>
6429         Handle LIBOBJS and LTLIBOBJS once for all, including Libtool's and
6430         Automake's parts.
6432         * lib/autoconf/general.m4 (_AC_LIBOBJS_NORMALIZE): New.
6433         * lib/autoconf/status.m4 (AC_OUTPUT_COMMANDS_PRE): Call it.
6434         * tests/semantics.at (AC_REPLACE_FUNCS): Adjust.
6436 2002-07-18  Akim Demaille  <akim@epita.fr>,
6437             Alexandre Duret-Lutz  <duret_g@epita.fr>
6439         * lib/autoconf/status.m4 (_AC_OUTPUT_HEADERS): Install
6440         _AC_AM_CONFIG_HEADER_HOOK for Automake 1.7.
6442 2002-07-17  Russ Allbery  <rra@stanford.edu>
6444         * doc/autoconf.texi (Initializing configure): Clarify the
6445         description of the tarname default.
6447 2002-07-17  Andreas Buening  <andreas.buening@nexgo.de>
6449         * lib/autoconf/functions.m4 (AC_FUNC_FORK): Don't set
6450         ac_cv_func_fork_works before running _AC_FUNC_FORK, do it if the
6451         latter was not run.
6453 2002-07-17  Akim Demaille  <akim@epita.fr>
6455         * lib/Autom4te/General.pm (find_file): Browse the directories in
6456         the order they are given.
6458 2002-07-17  Akim Demaille  <akim@epita.fr>
6460         * tests/wrapsh.as, tests/wrappl.as: Merge into...
6461         * tests/wrapper.as: this.
6462         * tests/Makefile.am, configure.ac: Adjust.
6464 2002-07-17  Mark D. Roth  <roth@feep.net>
6466         * configure.ac: Add --enable-site-macro-dir option.
6467         * bin/Makefile.am: Expand @SITE_MACRO_DIR@.
6468         * bin/autom4te.in: Add --prepend-include, --include-envvar, and
6469         --site-macro-subdir options.
6470         * bin/autoconf.in: Add --prepend-include option.
6471         * bin/autoheader.in: Add --prepend-include option.
6472         * bin/autoreconf.in: Add --prepend-include option.
6473         * bin/autoscan.in: Add --prepend-include option.
6474         * bin/autoupdate.in: Add --prepend-include option.
6475         * doc/autoconf.texi: Document use of $AC_MACRO_PATH and site
6476         macro directory, remove note that include path directories are
6477         used in reverse order, and document --prepend-include option.
6478         * lib/autom4te.in: Use --prepend-include instead of --include.
6479         * tests/wrapsh.in: Use --prepend-include instead of --include.
6481 2002-07-17  Akim Demaille  <akim@epita.fr>
6483         * lib/autoconf/general.m4 (_AC_INIT_PACKAGE): `_' is allowed in
6484         tarnames.
6485         * doc/autoconf.texi (Initializing configure): Adjust.
6487 2002-07-17  Akim Demaille  <akim@epita.fr>
6489         * lib/autoconf/functions.m4 (AC_FUNC_REALLOC, _AC_FUNC_REALLOC)
6490         (_AC_FUNC_MALLOC): New.
6491         (AC_FUNC_MALLOC): Use the latter.
6492         Define HAVE_MALLOC to 0 if broken.
6493         * doc/autoconf.texi (Particular Functions): Adjust.
6495 2002-07-16  Akim Demaille  <akim@epita.fr>
6497         * lib/autoconf/c.m4 (AC_C_BACKSLASH_A): New.
6498         * doc/autoconf.texi (C Compiler): Adjust.
6500 2002-07-09  Akim Demaille  <akim@epita.fr>
6502         * doc/autoconf.texi: Properly set the ``header'' part.
6504 2002-07-09  Akim Demaille  <akim@epita.fr>
6506         * doc/autoconf.texi (Systemology): Some about Darwin.
6508 2002-07-09  Alexandre Duret-Lutz  <duret_g@epita.fr>
6510         * lib/autoconf/specific.m4 (AC_CYGWIN, AC_EMXOS2, AC_MINGW32):
6511         Don't use AC_REQUIRE in AU_DEFUN.
6513 2002-07-09  Art Haas  <ahaas@neosoft.com>
6515         * doc/autoconf.texi: Use @enddots{} or @dots{} where appropriate.
6517 2002-07-02  Alexandre Duret-Lutz  <duret_g@epita.fr>
6519         * bin/autoheader.in, bin/autom4te.in, bin/autoreconf.in,
6520         bin/autoupdate.in, bin/ifnames.in, lib/Autom4te/General.pm,
6521         lib/Autom4te/Struct.pm, lib/Autom4te/XFile.pm: Add local variables
6522         so that Emacs setups GNU style for perl-mode and cperl-mode.
6524 2002-06-27  Paul Eggert  <eggert@twinsun.com>
6526         * config/install-sh: Quote $src.  Prefer || to test's -o option,
6527         as per "Limitations of Builtins".
6528         * tests/atspecific.m4 (AT_CHECK_ENV): Likewise, for && vs test -a.
6529         * tests/semantics.at (AC_C_BIGENDIAN): Likewise.
6531         * tests/mktests.sh: Use grep instead of fgrep, as per
6532         "Limitations of Builtins".
6534 2002-06-15  Paul Eggert  <eggert@twinsun.com>
6536         * tests/wrapsh.as (AUTOCONF, AUTOHEADER, AUTOM4TE, AUTOM4TE_CFG,
6537         autom4te_perllibdir): Set to top build dir or src dir as appropriate,
6538         so that we consistently test the just-built programs.
6539         * tests/wrappl.as: Likewise.
6541 2002-06-12  Paul Eggert  <eggert@twinsun.com>
6543         * bin/autoconf.as (AUTOM4TE): Default to a fully qualified path
6544         name, so that symlinks to 'autoconf' work properly.  Bug reported
6545         by Bruno Haible.
6546         * bin/autoheader.in (AUTOM4TE): Likewise.
6547         * bin/autoreconf.in (autoconf, autoheader): Likewise.
6548         * bin/autoscan.in (autom4te): Likewise.
6549         * bin/autoupdate.in (autom4te): Likewise.
6551         * lib/autoconf/functions.m4 (_AC_LIBOBJ_FNMATCH): Also check for
6552         btowc, to fix a portability bug with diffutils-2.8.2/lib/fnmatch.c
6553         on Solaris 2.5.1.
6555 2002-06-11  Andreas Schwab  <schwab@suse.de>
6557         * doc/autoconf.texi: Add more dir entries.
6559 2002-06-10  Alexandre Duret-Lutz  <duret_g@epita.fr>
6561         * bin/autom4te.in ($cache): Don't define using `$me', the name
6562         of the cache should not depend on the name under which autom4te
6563         was installed.
6565 2002-06-07  Akim Demaille  <akim@epita.fr>
6567         * tests/tools.at (autoconf: forbidden tokens, basic)
6568         (autoconf: forbidden tokens, exceptions): Adjust to the change of
6569         words in autom4te.in.
6571 2002-06-07  Peter Eisentraut  <peter_e@gmx.net>
6573         * lib/autoconf/c.m4 (AC_LANG_PROGRAM(C)): Use
6574         _AC_LANG_PROGRAM_C_F77_HOOKS.
6576 2002-06-07  Akim Demaille  <akim@epita.fr>
6578         * lib/autoconf/functions.m4 (AC_REPLACE_FUNC_FNMATCH): Typo,
6579         rename as...
6580         (AC_REPLACE_FNMATCH): this.
6581         * tests/mktests.sh (exclude_list): Exclude AC_REPLACE_FNMATCH,
6582         AC_FUNC_FNMATCH_GNU.
6584 2002-06-07  Akim Demaille  <akim@epita.fr>
6586         * doc/autoconf.texi (Systemology): Point to Tru64 docs, and the
6587         Rosetta Stone for Unix.
6589 2002-06-07  Akim Demaille  <akim@epita.fr>
6591         * bin/autom4te.in (warn_forbidden): When rejecting a token,
6592         suggest m4_pattern_allow.
6593         Suggested by Adam J. Richter.
6595 2002-06-07  Akim Demaille  <akim@epita.fr>
6597         * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS): Initialize
6598         ac_config_libobj_dir.
6599         (AC_CONFIG_LIBOBJ_DIR): New.
6600         * lib/autoconf/functions.m4 (_AC_FUNC_FNMATCH): Split into...
6601         (_AC_FUNC_FNMATCH_IF, _AC_LIBOBJ_FNMATCH): these.
6602         Use ac_config_libobj_dir to find the replacement files.
6603         (AC_FUNC_FNMATCH, AC_FUNC_FNMATCH_GNU): Split into...
6604         (AC_FUNC_FNMATCH, AC_FUNC_FNMATCH_GNU, AC_REPLACE_FNMATCH)
6605         (AC_REPLACE_FNMATCH_GNU): these.
6606         (AC_FUNC_GETLOADAVG): Use ac_config_libobj_dir.
6607         * doc/autoconf.texi (Particular Functions, Generic Functions): Adjust.
6608         * tests/mktests.sh (ac_exclude_list): Don't check
6609         AC_FUNC_GETLOADAVG as it requires getloadavg.c which is not shipped.
6611 2002-06-06  Paul Eggert  <eggert@twinsun.com>
6613         * lib/autoconf/status.m4 (_AC_OUTPUT_LINKS): Fall back on cp
6614         if ln doesn't work.
6615         * NEWS: Likewise.
6616         * doc/autoconf.texi (Configuration Links): Likewise.
6617         (Limitations of Usual Tools): Prefer $(LN_S) to ln -s || ln.
6619 2002-06-05  Paul Eggert  <eggert@twinsun.com>
6621         * config/config.guess, config/config.sub, config/texinfo.tex:
6622         Update from masters.
6624 2002-05-29  Paul Eggert  <eggert@twinsun.com>
6626         * bin/autom4te.in ($m4): Do not assume that egrep and fgrep exist.
6627         * lib/autoconf/c.m4 (AC_C_BIGENDIAN): Likewise.
6628         * lib/autoconf/general.m4 (_AC_RUN_LOG_STDERR, AC_EGREP_CPP):
6629         Likewise.
6630         * lib/autoconf/Makefile.am (check-local): Likewise.
6631         * lib/autoconf/status.m4 (AC_CONFIG_HEADER): Likewise.
6632         * lib/autoconf/types.m4 (commentary only): Likewise.
6633         * lib/autotest/general.m4 (AT_INIT, AT_CHECK): Likewise.
6634         * lib/autotest/Makefile.am (check-local): Likewise.
6635         * lib/m4sugar/Makefile.am (check-local): Likewise.
6636         * tests/atspecific.m4 (AT_CONFIGURE_AC, AT_CHECK_DEFINES): Likewise.
6637         * tests/mktests.sh (egrep): New var; use it instead of plain egrep.
6639         * lib/autoconf/programs.m4 (AC_PROG_EGREP, AC_PROG_FGREP): New macros.
6640         * doc/autoconf.texi (Particular Programs): Document them.
6641         (Limitations of Usual Tools): Warn that egrep and fgrep may not exist.
6642         * NEWS: Likewise.
6644 2002-05-27  Paul Eggert  <eggert@twinsun.com>
6646         * lib/autoconf/types.m4 (AC_TYPE_MBSTATE_T): New macro.
6647         * NEWS, doc/autoconf.texi (Particular Types): Document it.
6648         * lib/autoconf/functions.m4 (_AC_FUNC_FNMATCH): Require it
6649         instead of AC_MBSTATE_T, which never existed.
6651 2002-05-23  Akim Demaille  <akim@epita.fr>
6653         * doc/autoconf.texi (Hosts and Cross-Compilation): Specify the
6654         version of Autoconf that is discussed.
6656 2002-05-22  Paul Eggert  <eggert@twinsun.com>
6658         * lib/autoconf/fortran.m4 (AC_PROG_F77): Remove cf77 and cft77
6659         from the default list of compilers to try.  Suggested by
6660         Kate Hedstrom.
6661         * NEWS: Document the above.
6662         * doc/autoconf.texi (Fortran 77 Compiler): Don't suggest cf77.
6664 2002-05-17  Paul Eggert  <eggert@twinsun.com>
6666         * lib/autoconf/types.m4 (AC_CHECK_MEMBER): Work correctly even if
6667         the member is itself an aggregate.  Bug reported by Sergey Poznyakoff.
6668         This improves on an earlier suggestion by H. Peter Anvin.
6670 2002-05-16  Paul Eggert  <eggert@twinsun.com>
6672         AC_FUNC_FNMATCH now tests only for POSIX compatibility.
6673         AC_FUNC_FNMATCH_GNU also tests for GNU extensions.
6674         Both macros now accept an optional source-dir arg.
6675         New macro AC_GNU_SOURCE to define _GNU_SOURCE.
6677         * NEWS: Document this.
6678         * doc/autoconf.texi (Particular Functions, UNIX Variants): Likewise.
6680         * lib/autoconf/functions.m4 (_AC_FUNC_FNMATCH): New macro.
6681         (AC_FUNC_FNMATCH): Use it.  Test only for POSIX conformance,
6682         not for GNU extensions; this undoes part of the 2000-11-03 change,
6683         reverting to 2.13-compatible behavior.
6684         Add new optional argument DIR.
6685         (AC_FUNC_FNMATCH_GNU): New macro.
6687         * lib/autoconf/specific.m4 (AC_GNU_SOURCE): New macro.
6689 2002-05-08  Paul Eggert  <eggert@twinsun.com>
6691         * lib/autoconf/headers.m4 (AC_HEADER_TIOCGWINSZ):
6692         Don't require AC_SYS_POSIX_TERMIOS.  The test is unnecessary,
6693         and it causes a 'test' syntax error if it fails.
6694         Bug reported by Stephen Gildea.
6696         * lib/autoconf/functions.m4 (AC_FUNC_SETVBUF_REVERSED):
6697         If prototypes are supported, use them to check this at compile-time,
6698         instead of trying to check it at run-time.  If we must do a run-time
6699         check, assume that setvbuf is standard when cross-compiling, as
6700         nonstandard setvbuf occurs only on ancient and unlikely hosts.
6701         Bug reported by Paul D. Smith.
6703         * lib/autoconf/functions.m4 (AC_FUNC_GETLOADAVG): Add optional
6704         argument specifying location of getloadavg.c.  This removes a
6705         FIXME.  This idea was taken from Jim Meyering's implementation in
6706         textutils.
6707         * doc/autoconf.texi (Particular Functions): Document this.
6708         Also, mention HAVE_NLIST_H rather than NLIST_STRUCT, since
6709         that's what the code does; this fixes a bug reported by
6710         Paul D. Smith.
6712 2002-05-03  Akim Demaille  <akim@epita.fr>
6714         * bin/autoreconf.in (autoreconf): Rewrite to use Gettext's
6715         autopoint instead of gettextize.
6716         ($uses_alocal): Rename as...
6717         ($uses_aclocal): this.
6718         * doc/autoconf.texi (autoreconf Invocation): Adjust.
6719         Suggested by Bruno Haible.
6721 2002-05-03  Akim Demaille  <akim@epita.fr>
6723         * lib/m4sugar/m4sugar.m4 (m4_map_sep): New.
6725 2002-04-29  Paul Eggert  <eggert@twinsun.com>
6727         * bin/autoreconf.in (autoreconf): Don't age aclocal.m4's input
6728         files to be 1 second older; just set them to be the same time.
6729         Also, sleep 1 second after the first aclocal, to work around
6730         problems with sub-second time stamps on the input files.
6732 2002-04-29  Thien-Thi Nguyen  <ttn@gnu.org>
6734         * doc/autoconf.texi: Mention "set -e -x" lossage
6735         under node "Limitations of Builtins".
6737 2002-04-29  Akim Demaille  <akim@epita.fr>
6739         * doc/install.texi: Better wording for setting variables when
6740         running configure.
6741         From Christian Cornelssen.
6743 2002-04-29  Akim Demaille  <akim@epita.fr>
6745         * tests/m4sh.at (LINENO): If testsuite itself is rewritten because
6746         of lack of $LINENO support, then the test will compare the $LINENO
6747         in testsuite vs. the lineno in the test file.  This is wrong, of
6748         course.
6749         Be sure to protect it.
6750         Reported by Patrick Welche.
6752 2002-04-25  Akim Demaille  <akim@epita.fr>
6754         * doc/autoconf.texi (Obsolete Macros): Typo.
6755         Reported by Vladimir Volovich.
6757 2002-04-25  Akim Demaille  <akim@epita.fr>
6759         * bin/autoreconf.in (autoreconf): Don't let aclocal.m4 be older
6760         than some of the input files, hence, on the second run of aclocal,
6761         if some of its input are younger, make them older.
6762         Suggested by Paul Eggert.
6764 2002-04-25  Akim Demaille  <akim@epita.fr>
6766         * doc/autoconf.texi (Limitations of Usual Tools): sed and `!'.
6767         Thanks to Paul Eggert.
6769 2002-04-25  Akim Demaille  <akim@epita.fr>
6771         * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS): Let ac_subst_files
6772         and ac_subst_vars be sh variables containing the list of
6773         AC_SUBST_FILES'ed and AC_SUBST'ed identifiers.  Output them in the
6774         DEFAULT diversion.
6775         (_AC_INIT_PREPARE): Use them to log them.
6776         (_AC_SUBST, _AC_SUBST_SED_PROGRAM): Remove.
6777         (AC_SUBST, AC_SUBST_FILE): Instead of buliding the
6778         _AC_SUBST_SED_PROGRAM, store the list of output files/variables in
6779         _AC_SUBST_FILES and _AC_SUBST_VARS.
6780         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES): Adjust.
6782 2002-04-24  Akim Demaille  <akim@epita.fr>
6784         * bin/autoreconf.in (autoreconf): Run automake after autoconf and
6785         autoheader, so that automake does not complain about a missing
6786         config.h.in that was to be created.
6788 2002-04-23  Akim Demaille  <akim@epita.fr>
6790         * bin/autoheader.in (parse_args): --warning takes an argument.
6791         Fixes PR/220.
6793 2002-04-22  Peter Eisentraut  <peter_e@gmx.net>
6795         * lib/autoconf/general.m4 (_AC_RUN_IFELSE): Remove gmon.out
6796         and bb.out when cleaning up.
6798 2002-04-22  Akim Demaille  <akim@epita.fr>
6800         Version 2.53a.
6802 2002-04-22  Akim Demaille  <akim@epita.fr>
6804         * tests/m4sh.at (LINENO): Fix the Zsh skip pattern.
6806 2002-04-22  Akim Demaille  <akim@epita.fr>
6808         * doc/autoconf.texi (Pretty Help Strings): Remove a spurious
6809         comma.
6810         Reported by Gregory Giannoni.
6812 2002-04-22  Akim Demaille  <akim@epita.fr>
6814         * tests/m4sh.at (LINENO): Skip the test if LINENO cannot be unset.
6815         Fixes false failures on Darwin.
6817 2002-04-21  Paul Eggert  <eggert@twinsun.com>
6819         * TODO, bin/autoupdate.in, doc/autoconf.texi,
6820         lib/autoconf/general.m4, lib/autoconf/libs.m4,
6821         lib/autoconf/status.m4, lib/m4sugar/m4sugar.m4, tests/m4sh.at,
6822         tests/tools.at: Minor spelling and grammar fixes.
6824 2002-04-20  Paul Eggert  <eggert@twinsun.com>
6826         * doc/autoconf.texi (Shell Substitutions): Fix typos in yesterday's
6827         ZSH_VERSION fixes.  Bug reported by Raja R Harinath.
6828         * lib/autotest/general.m4 (AT_INIT): Likewise.
6829         * tests/atgeneral.m4 (AT_INIT): Likewise.
6831 2002-04-19  Paul Eggert  <eggert@twinsun.com>
6833         * NEWS, TODO, bin/autom4te.in, bin/autoreconf.in, bin/autoupdate.in,
6834         doc/autoconf.texi, lib/freeze.mk, lib/Autom4te/Struct.pm,
6835         lib/autoconf/autoheader.m4, lib/autoconf/c.m4,
6836         lib/autoconf/functions.m4, lib/autoconf/general.m4,
6837         lib/autoconf/lang.m4, lib/autoconf/libs.m4, lib/autoscan/identifiers,
6838         lib/autotest/general.m4, lib/m4sugar/m4sh.m4, tests/atgeneral.m4,
6839         tests/atspecific.m4, tests/semantics.at, tests/torture.at:
6840         Minor spelling and grammar fixes.
6842         * doc/autoconf.texi: Follow the outline suggested in the GNU
6843         Sample Texts sections of the Texinfo 4.2 manual.  Most
6844         importantly, this makes sure that the copyright notices appear in
6845         all output formats.  You probably need Texinfo 4.2 to generate
6846         the manual now.
6848         Fix some bugs when using "$@" when there might be zero positional
6849         arguments in cases where this matters.
6851         * bin/autoconf.as: Rewrite so that the problem does not come up.
6852         * lib/autoconf/programs.m4 (AC_CHECK_PROG): Likewise.
6853         * lib/autoconf/status.m4 (AC_OUTPUT): Likewise.
6854         * lib/autotest/general.m4 (AT_INIT): Likewise.
6856         * bin/autoheader.in: Use 'case' statement to work around problem.
6857         * bin/auto4mte.in: Likewise.
6858         * bin/autoreconf.in: Likewise.
6859         * bin/autoscan.in: Likewise.
6860         * bin/autoupdate.in: Likewise.
6861         * bin/ifnames.in: Likewise.
6863         * doc/autoconf.texi (Shell Substitutions): Document the problem.
6865         * lib/autotest/general.m4 (AT_INIT):
6866         Use Zsh alias to work around problem.
6867         * tests/atgeneral.m4 (AT_INIT): Likewise.
6869         * tests/c.at: We can't have zero arguments, so remove workaround
6870         that is not portable to Zsh.
6872 2002-04-19  Alexandre Duret-Lutz  <duret_g@epita.fr>
6874         * bin/autoupdate.in (handle_autoconf_macros): Honor AU_DEFUNs
6875         from aclocal.m4 too.
6877 2002-04-12  Akim Demaille  <akim@epita.fr>
6879         * tests/wrappl.as: New, M4sh precursor of wrappl.in.
6881 2002-04-10  Akim Demaille  <akim@epita.fr>
6883         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Install the Zsh
6884         workaround for ${1+"$@"}.
6885         * doc/autoconf.texi (Shell Substitutions): Explain it.
6886         From Oliver Kiddle and Peter Stephenson.
6888         Have M4sh perform minimal shell sanitizing.
6890         * lib/m4sugar/m4sh.at (AS_SHELL_SANITIZE): Split the `_AS_PREPARE_*'
6891         part into...
6892         (_AS_PREPARE): this new macro.
6893         (AS_PREPARE): New.
6894         (AS_INIT): Invoke AS_SHELL_SANITIZE.
6895         * tests/m4sh.at (AT_DATA_LINENO): Use _AS_PREPARE.
6897         Adjust Autoconf and Autotest.
6899         * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS): Don't invoke
6900         AS_SHELL_SANITIZE, AS_INIT did it, but invoke AS_PREPARE.
6901         * lib/autotest/general.m4 (AT_INIT): Likewise.
6902         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS):
6903         Invoke _AS_PREPARE (not AS_PREPARE) in addition to
6904         AS_SHELL_SANITIZE.
6906         Use this M4sh to generate Autoconf's shell scripts.
6908         * tests/wrapsh.as: New, precursor of wrapsh.in.
6909         * tests/Makefile.am: Include lib/freeze.mk to get the dependencies
6910         on Autotest and M4sh.
6911         ($(TESTSUITE)): Use $(autotest_m4f_dependencies).
6912         (wrapsh.in): New target.
6913         * bin/autoconf.as: New, precursor of autoconf.in.
6914         (autoconf.in): New target.
6916 2002-04-09  Alexandre Duret-Lutz  <duret_g@epita.fr>
6918         * doc/autoconf.texi (Limitations of Make): Mention the issue
6919         with indented comments in rules.
6921 2002-04-09  Andreas Schwab  <schwab@suse.de>
6923         * lib/autoconf/status.m4 (_AC_SRCPATHS): Handle empty
6924         ac_top_builddir when setting ac_abs_top_builddir.
6926 2002-04-06  Kevin Ryde  <user42@zip.com.au>
6928         * doc/autoconf.texi (Systemology): Add link to Unix V7 online docs.
6929         (Portable Shell): Cross reference to Systemology.
6931 2002-04-05  Akim Demaille  <akim@epita.fr>
6933         * bin/autoreconf.in (autoreconf): Be sure to accumulate the
6934         directories when descending in a SUBDIRS.
6935         Reported by Ezra Peisach.
6937 2002-04-04  Andreas Schwab  <schwab@suse.de>
6939         * lib/m4sugar/m4sh.m4 (_AS_PATH_WALK): Only simplify if path
6940         contains no literal separators.
6942 2002-04-03  Akim Demaille  <akim@epita.fr>
6944         * lib/autoconf/status.m4 (_AC_CONFIG_FILE, _AC_CONFIG_HEADER)
6945         (_AC_CONFIG_COMMAND, _AC_CONFIG_LINK): New.
6946         Use dnl, not the KILL diversion.
6947         Extracted from...
6948         (AC_CONFIG_FILES, AC_CONFIG_HEADERS, AC_CONFIG_COMMANDS)
6949         (AC_CONFIG_LINKS): here.
6950         Adjust.
6951         Don't use the KILL diversion, as it kills spurious output, which
6952         results in failures being hidden.
6953         Use m4_defn where appropriate.
6954         (AC_CONFIG_IF_MEMBER): Kill the real bug: a spurious parenthesis
6955         after the second argument.
6956         Use m4_defn.
6957         * lib/autom4te.in (Autoconf, Autotest, M4sh): Don't pass --warning
6958         syntax, as it is provided by M4sugar.
6959         * tests/torture.at (Multiple AC_CONFIG_FILES): New.
6961 2002-04-03  Andreas Schwab  <schwab@suse.de>
6963         * lib/m4sugar/m4sugar.m4 (m4_bmatch): Make sure m4_bregexp is not
6964         expanded if $# <= 2.
6966         * bin/autoreconf.in (autoreconf): Run automake after rerunning
6967         aclocal.
6969 2002-04-03  Akim Demaille  <akim@epita.fr>
6971         * lib/autoconf/lang.m4 (_AC_COMPILER_OBJEXT_REJECT)
6972         (_AC_COMPILER_EXEEXT_REJECT): New.
6973         Also recognize *.bb and *.bbg as compilation byproducts.
6974         (_AC_COMPILER_EXEEXT_DEFAULT, _AC_COMPILER_EXEEXT_O)
6975         (_AC_COMPILER_OBJEXT): Use them.
6976         Fixes Debian #138666.
6978 2002-04-02  Peter Eisentraut  <peter_e@gmx.net>
6980         Integrate AC_PROG_CC_STDC into AC_PROG_CC.
6982         * lib/autoconf/c.m4 (AC_PROG_CC_STDC): Rename to _AC_PROG_CC_STDC.
6983         AU_DEFUN old name.  Use _AC_COMPILE_IFELSE.
6984         (AC_PROG_CC): Call _AC_PROG_CC_STDC.
6985         (AC_C_INLINE): Do not require AC_PROG_CC_STDC.
6986         (AC_C_CONST): Same.
6987         (AC_C_INLINE): Same.
6988         (AC_C_PROTOTYPES): Same.  Require AC_PROG_CC instead.
6989         * doc/autoconf.texi, NEWS: Document.
6990         * tests/mktests.sh (au_exclude_list): Add AC_PROG_CC_STDC and
6991         AC_C_CROSS.
6993 2002-04-02  Akim Demaille  <akim@epita.fr>
6995         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Invoke
6996         _AS_MKDIR_P_PREPARE.
6998 2002-03-28  Kevin Ryde  <user42@zip.com.au>
7000         * lib/autoconf/c.m4 (AC_C_INLINE): Test with a typedef return value,
7001         to avoid versions of HP C which don't allow that.
7003 2002-03-27  Paul Eggert  <eggert@twinsun.com>
7005         * lib/m4sugar/m4sh.m4 (_AS_BASENAME_PREPARE): New macro.
7006         (AS_SHELL_SANITIZE): Invoke it.
7007         (AS_BASENAME): AS_REQUIRE it, and use $as_basename.
7009 2002-03-26  Akim Demaille  <akim@epita.fr>
7011         * doc/autoconf.texi (Portable Shell): Add pointers to FAQs.
7013 2002-03-26  Akim Demaille  <akim@epita.fr>
7015         * doc/autoconf.texi (Introduction): The GNATS base moved.
7017 2002-03-25  Paul Eggert  <eggert@twinsun.com>
7019         * tests/m4sh.at: Don't rely on "PATH=test:$PATH test-1" working
7020         as POSIX requires, as it doesn't work with Zsh.
7021         * doc/autoconf.texi (Assignments): Document the problem.
7023 2002-03-25  Alexandre Duret-Lutz  <duret_g@epita.fr>
7025         * doc/autoconf.texi (Limitations of Make): Mention more issue
7026         about VPATH, overriding of macros in sub-makes, and handling of
7027         SHELL.
7029 2002-03-21  Paul Eggert  <eggert@twinsun.com>
7031         * doc/autoconf.texi (Here-Documents): Mention Solaris 8 dtksh
7032         problem with here-document buffer boundaries.
7034         * lib/m4sugar/m4sh.m4 (_AS_LINENO_PREPARE): Unset ENV and BASH_ENV
7035         when reinvoking the shell, to work around problems with installers
7036         who put strange things like "cd" commands in their environments.
7038 2002-03-19  Akim Demaille  <akim@epita.fr>
7040         * tests/semantics.at (AC_C_BIGENDIAN): s/unknow/unknown/.
7041         From Aaron Ucko.
7043 2002-03-19  Akim Demaille  <akim@epita.fr>
7045         * bin/autoscan.in (scan_file): Specify the location in `&used'
7046         invocations.
7047         From Nicolas Joly.
7049 2002-03-19  Akim Demaille  <akim@epita.fr>
7051         * doc/autoconf.texi: Adjust @code/@command, @xref/@ref usage.
7052         From Nishio Futoshi.
7054 2002-03-19  Akim Demaille  <akim@epita.fr>
7056         * lib/m4sugar/m4sugar.m4 (m4_define_default, m4_fst, m4_map): New.
7058 2002-03-18  Paul Eggert  <eggert@twinsun.com>
7060         * doc/autoconf.texi (Programming in M4sh): Add AS_MKDIR_P.
7061         (Limitations of Usual Tools): Add mkdir section.
7063         * lib/m4sugar/m4sh.m4 (_AS_MKDIR_P_PREPARE): New macro.
7064         (AS_MKDIR_P): Require it.  Use mkdir -p if available, falling
7065         back on AS_DIRNAME to compute prefixes otherwise; this is
7066         roughly what mkinstalldirs does.  That way, we need not have
7067         our own filename disassembler.  The old disassembler did not
7068         work with Solaris 8 dtksh, which is ksh Version M-12/28/93d.
7070         * lib/autotest/general.m4 (AT_INIT, AT_CLEANUP):
7071         Create at_test_all by a series of assignments,
7072         not by a single assignment of a long string.  The latter causes ksh
7073         version 11/16/88g to silently misbehave on OpenServer 5.0.6a,
7074         presumably because of a buffer overrun.
7076 2002-03-14  Paul Eggert  <eggert@twinsun.com>
7078         * lib/autotest/general.m4 (at_times_skip):
7079         Renamed from at_times.  Now a boolean.
7080         ksh93 Version M-12/28/93d doesn't like 'x=times; $x'; it
7081         says 'times: not found'.
7083 2002-03-14  Akim Demaille  <akim@epita.fr>
7085         * bin/autoreconf.in (&study_gettextize): New.
7086         (&autoreconf): Handle newest gettextize.
7087         Rerun aclocal if needed.
7088         Suggested by Andreas Schwab.
7090 2002-03-13  Akim Demaille  <akim@epita.fr>
7092         * doc/autoconf.texi (Special Shell Variables): More about IFS.
7094 2002-03-13  Akim Demaille  <akim@epita.fr>
7096         * doc/autoconf.texi (Header Portability): New.
7097         Add information about stdint.h and inttypes.h from Paul Eggert.
7099 2002-03-13  Akim Demaille  <akim@epita.fr>
7101         * doc/autoconf.texi (Limitations of Usual Tools): Some about `cp
7102         -p'.
7103         From Bob Proulx.
7105 2002-03-12  Akim Demaille  <akim@epita.fr>
7107         * lib/m4sugar/m4sh.m4 (AS_BASENAME_EXPR): AS_REQUIRE, not
7108         m4_require.
7110 2002-03-11  Andreas Schwab  <schwab@suse.de>
7112         * configure.ac: Explicitly check for EMACS since AM_PATH_LISPDIR
7113         does not do it if --with-lispdir is given.
7115 2002-03-08  Akim Demaille  <akim@epita.fr>
7117         Version 2.53.
7119 2002-03-08  Akim Demaille  <akim@epita.fr>
7121         * doc/autoconf.texi (Subdirectories): Clarify that the
7122         subdirectory should exist.
7124 2002-03-08  Akim Demaille  <akim@epita.fr>
7126         * Makefile.am (AUTOMAKE_OPTIONS): 1.6.
7128 2002-03-08  Akim Demaille  <akim@epita.fr>
7130         * bin/autom4te.in (&handle_m4): Do not foreach with `$_' as it
7131         aliases the actual variables, and modifications of the former
7132         affect the latter.
7134 2002-03-08  Akim Demaille  <akim@epita.fr>
7136         * bin/autom4te.in (&handle_m4): Protect us from corrupted file
7137         because of C-c: have m4 output in tmp files, then mv them.
7139 2002-03-08  Akim Demaille  <akim@epita.fr>
7141         * bin/autoconf.in, bin/autoheader.in, bin/autom4te.in,
7142         * bin/autoreconf.in, bin/autoscan.in, bin/autoupdate.in,
7143         * bin/ifnames.in: Copyright update.
7145 2002-03-08  Akim Demaille  <akim@epita.fr>
7147         * doc/autoconf.texi (Invoking autom4te): New.
7149 2002-03-05  Akim Demaille  <akim@epita.fr>
7151         * doc/autoconf.texi (Specifying Names): Clarification suggested by
7152         Kevin Ryde.
7154 2002-03-05  Akim Demaille  <akim@epita.fr>
7156         Version 2.52i.
7158 2002-03-04  Akim Demaille  <akim@epita.fr>
7160         * doc/autoconf.texi (AC_LIBOBJ vs. LIBOBJS): New.
7161         * lib/autoconf/general.m4 (AC_INIT): More informative error
7162         message for LIBOBJ.
7164 2002-03-04  Akim Demaille  <akim@epita.fr>
7166         * lib/freeze.mk ($(build_libdir)/m4sugar/version.m4): New, for
7167         parallel builds.
7169 2002-03-04  Akim Demaille  <akim@epita.fr>
7171         * doc/autoconf.texi (Transforming Names): Equality between target
7172         and host is irrelevant.
7173         (Specifying Names, Canonicalizing): Remove all references to the
7174         backward compatibility hooks.  Rather, collect them all into...
7175         (Hosts and Cross-Compilation): this new section.
7176         * doc/install.texi (System Type): Ditto.
7177         * lib/autoconf/general.m4 (AC_CANONICAL_HOST): Explicitly state
7178         that `--host' implies cross-compilation.
7180 2002-03-04  Akim Demaille  <akim@epita.fr>
7182         * doc/autoconf.texi (Evaluation Macros): New.
7183         * lib/m4sugar/m4sugar.m4 (m4_lquote): Remove, it is totally
7184         useless.
7185         (_m4_foreach): Define the variant with immediate evaluation so
7186         that it contains exactly the items, not an expression which
7187         evaluation is the current item.
7188         (m4_re_string, m4_re_word): Don't over quote them.
7190 2002-03-04  Akim Demaille  <akim@epita.fr>
7192         Instead of having stacking `shift's evaluated at the end, let
7193         `foreach' loops immediately evaluate them.
7195         * lib/m4sugar/m4sugar.m4 (m4_quote, m4_dquote): Use $@ rather than
7196         $*.  This is the n-th time I change my mind, but hopefully this is
7197         the last...
7198         (m4_lquote): New.
7199         (m4_text_wrap): Use m4_foreach, which is finally correct _and_
7200         efficient.
7201         (m4_foreach_quoted, m4_car_quoted, _m4_foreach_quoted): Remove, as
7202         it was only a hack for m4_text_wrap.
7203         (m4_car2): Remove, replaced by...
7204         (m4_cdr): New.
7205         (_m4_foreach): Adjust.
7206         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Adjust, and use
7207         m4_bpatsubst for clarification.
7209 2002-03-04  Akim Demaille  <akim@epita.fr>
7211         * doc/autoconf.texi (Changequote is Evil): New.
7213 2002-03-03  Kevin Ryde  <user42@zip.com.au>
7215         * doc/autoconf.texi (Portable Shell): Mention 32-byte #! length limit
7216         on old systems like SunOS.
7218 2002-03-01  Peter Eisentraut  <peter_e@gmx.net>
7220         * lib/autoconf/c.m4, lib/autoconf/fortran.m4,
7221         lib/autoconf/functions.m4, lib/autoconf/general.m4,
7222         lib/autoconf/headers.m4, lib/autoconf/lang.m4,
7223         lib/autoconf/programs.m4, lib/autoconf/status.m4: Improve spelling
7224         of messages.
7226 2002-02-28  Akim Demaille  <akim@epita.fr>
7228         * lib/autotest/general.m4 (AT_INIT): Suggest a title to the
7229         message to be sent.
7231 2002-02-28  Kevin Ryde  <user42@zip.com.au>
7233         * doc/autoconf.texi (Function Portability): Add va_copy and va_list.
7235 2002-02-25  Akim Demaille  <akim@epita.fr>
7237         * lib/autoconf/functions.m4 (AC_FUNC_SETPGRP): Fix the test.
7238         From Akinori Musha.
7240 2002-02-13  Alexandre Duret-Lutz  <duret_g@epita.fr>
7242         * lib/Autom4te/XFile.pm (getline, getlines): New functions,
7243         translate \r\n to \n.
7245 2002-02-07  Akim Demaille  <akim@epita.fr>
7247         Version 2.52h.
7249 2002-02-07  Akim Demaille  <akim@epita.fr>
7251         Fix Autoconf PR/209.
7252         Also reported by Frank Denis.
7254         * lib/m4sugar/m4sh.m4 (_AS_PATH_WALK): Don't over quote.
7256 2002-02-07  Akim Demaille  <akim@epita.fr>
7258         Fix Autoconf PR/207:
7259         AC_PREFIX_PROGRAM fails with dashed program names
7261         * lib/autoconf/general.m4 (AC_PREFIX_PROGRAM): Just use a fresh
7262         variable when looking for the prefix program.
7263         Now it also works for shell variables.
7265 2002-02-07  Akim Demaille  <akim@epita.fr>
7267         * doc/autoconf.texi (Limitations of Builtins): More about
7268         case/esac.
7270 2002-02-06  Akim Demaille  <akim@epita.fr>
7272         * lib/autoconf/status.m4 (_AC_OUTPUT_COMMANDS): Don't output empty
7273         case/esac, some shells don't support it.
7274         Reported by Zack Weinberg.
7275         * tests/torture.at (AC_CONFIG_COMMANDS with empty commands): New.
7277 2002-02-06  Akim Demaille  <akim@epita.fr>
7279         * lib/autotest/general.m4 (AT_INIT): When handling --keywords, be
7280         sure not to introduce newlines in at_groups.
7281         * lib/autotest/Makefile.am (autotest.m4f): Typo.
7283 2002-02-06  Akim Demaille  <akim@epita.fr>
7285         * tests/torture.at (Configuring subdirectories): Skip if aclocal
7286         is not available.
7288 2002-02-05  Paul Eggert  <eggert@twinsun.com>
7290         * doc/autoconf.texi (Specific Compiler Characteristics):
7291         Describe HP-UX cc bug workaround more accurately.
7292         * lib/autoconf/types.m4 (AC_CHECK_SIZEOF): Cast to long,
7293         not unsigned long.
7294         * tests/semantics.at (AC_CHECK_SIZEOF): Check non-GCC
7295         cross-compilers, too.  This undoes some of the most recent change
7296         to this file.
7298 2002-02-05  Akim Demaille  <akim@epita.fr>
7300         * tests/Makefile.am (check_SCRIPTS): Use it, instead of WRAPPERS,
7301         to make sure they are up to date when `check' is run.
7303 2002-02-05  Akim Demaille  <akim@epita.fr>
7305         * doc/autoconf.texi (Making testsuite Scripts): Document
7306         package.m4.
7308 2002-02-05  Akim Demaille  <akim@epita.fr>
7310         * lib/freeze.mk: New.
7312 2002-02-05  Akim Demaille  <akim@epita.fr>
7314         Implement `autom4te --freeze'.
7316         * bin/autom4te.in (&freeze): New.
7317         * lib/autoconf/autoconf.m4, lib/autotest/general.m4,
7318         * lib/m4sugar/m4sh.m4: Don't include files given by autom4te.
7320 2002-02-05  Akim Demaille  <akim@epita.fr>
7322         * bin/autom4te.in (&parse_args): Implement `frozen files are
7323         optional are the sum of the previous files on the command line'.
7324         Also, pass `--reload-state=' on them, so...
7325         (handle_m4): don't.
7326         * lib/autom4te.in (Autotest, Autoconf): Rely on M4sh.
7327         (M4sh): Rely on M4sugar.
7328         (Autotest, M4sh, M4sugar): Use frozen files.
7330 2002-01-31  Akim Demaille  <akim@epita.fr>
7332         * lib/autoconf/general.m4 (_AC_INIT_PACKAGE): Accept $4.
7333         * doc/autoconf.texi (Initializing configure): Adjust.
7335 2002-01-30  Akim Demaille  <akim@epita.fr>
7337         * lib/autoconf/general.m4 (_AC_INIT_PACKAGE): Map non
7338         alphanumeric to `-' instead of `_'.
7340 2002-01-30  Akim Demaille  <akim@epita.fr>
7342         * tests/semantics.at (AC_CHECK_SIZEOF): Split into two tests: one
7343         for plain code, the other for cross-compilation code.  The latter
7344         is now run with GCC only.
7345         * doc/autoconf.texi (Compilers and Preprocessors): New.
7347 2002-01-30  Akim Demaille  <akim@epita.fr>
7349         * lib/autoconf/general.m4 (_AC_INIT_PACKAGE): Support pre-defined
7350         values.
7351         * doc/autoconf.texi (Initializing configure): Explain how to
7352         change AC_INIT default values.
7354 2002-01-29  Akim Demaille  <akim@epita.fr>
7356         * tests/torture.at (Configuring subdirectories): Use configure.in,
7357         so that aclocal 1.4 works.
7358         Reported by Alexandre Duret-Lutz and Larry Schmitt.
7360 2002-01-28  Akim Demaille  <akim@epita.fr>
7362         * doc/autoconf.texi (Writing testsuite.at): AT_CLEANUP no longer
7363         needs an argument.
7365 2002-01-28  Akim Demaille  <akim@epita.fr>
7367         * lib/autotest/general.m4 (AT_INIT): Don't be ridiculous: adjust
7368         AUTOTEST_PATH *after* it was set.
7369         Don't put `.' in the PATH: the user should be precise and `./' if
7370         needed.  In addition, given that the test suite does some `cd', if
7371         `.' is in the path, the `tested programs' sections will report
7372         programs found in the test suite's directory, while during the
7373         tests (performed in their own directory), these programs are no
7374         longer visible.  In other words, the results is confusing and
7375         useless.
7376         * tests/m4sh.at: Adjust: don't rely on `.' being in the PATH.
7378 2002-01-24  Akim Demaille  <akim@epita.fr>
7380         Version 2.52g.
7382 2002-01-24  Akim Demaille  <akim@epita.fr>
7384         * bin/autoheader.in, bin/autoconf.in, bin/autoscan.in,
7385         * doc/autoconf.texi: Finally add Akim as an author.
7387 2002-01-24  Akim Demaille  <akim@epita.fr>
7389         * lib/m4sugar/m4sh.m4 (_AS_LINENO_PREPARE): Use PATH_SEPARATOR.
7390         (_AS_PATH_SEPARATOR_PREPARE): Don't expect $SHELL to be
7391         Bourne. Use /bin/sh.
7392         From Andreas Buening.
7394 2002-01-24  Akim Demaille  <akim@epita.fr>
7396         * config/config.guess, config/config.sub, config/texinfo.tex:
7397         Update from masters.
7399 2002-01-24  Akim Demaille  <akim@epita.fr>
7401         * Makefile.am (AUTOMAKE_OPTIONS): 1.5b.
7402         * config/auxdir.m4, config/cond.m4, config/depend.m4,
7403         * config/init.m4, config/install-sh.m4, config/lispdir.m4,
7404         * config/missing.m4, config/sanity.m4, config/select.m4,
7405         * config/strip.m4: Remove, to ease sync'ing with any version of
7406         Automake.
7408 2002-01-24  Akim Demaille  <akim@epita.fr>
7410         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ARGS)
7411         (_AC_INIT_PREPARE): Support -n as --no-create, as documented.
7412         Reported by Geir Ove Myhr.
7414 2002-01-21  Akim Demaille  <akim@epita.fr>
7416         * lib/autoconf/functions.m4 (AC_FUNC_MMAP): #Undef malloc.
7418 2002-01-21  Akim Demaille  <akim@epita.fr>
7420         * lib/Autom4te/General.pm (getopt): Use a more GNUish error
7421         message on invalid options.
7422         * bin/autom4te.in (parse_args): Don't use
7423         Autoconf::General::getopt with non valid options.
7425 2002-01-17  Jim Meyering  <meyering@lucent.com>
7427         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Initialize
7428         $ac_cv_exeext so we don't use an old, invalid, cached value.
7430 2002-01-11  Akim Demaille  <akim@epita.fr>
7432         * lib/autoconf/functions.m4 (AC_FUNC_STRNLEN): New, from Jim
7433         Meyering.
7434         * doc/autoconf.texi (Function Portability): Document the strnlen
7435         limitation.
7436         (Particular Functions): Document AC_FUNC_STRNLEN.
7437         * lib/autoscan/functions: Adjust.
7439 2002-01-06  Akim Demaille  <akim@epita.fr>
7441         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): Don't create
7442         package.m4, since is really depends upon configure.ac, not
7443         configure.
7444         * doc/autoconf.texi (testsuite Scripts): Adjust.
7445         * tests/Makefile.am (package.m4): New.
7446         EXTRA_DIST it since its a source.
7448 2002-01-06  Akim Demaille  <akim@epita.fr>
7450         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ARGS): Move the AC_SUBST
7451         of PACKAGE_NAME, PACKAGE_TARNAME, PACKAGE_VERSION, PACKAGE_STRING,
7452         and PACKAGE_BUGREPORT from here...
7453         (_AC_INIT_DEFAULTS): to here, since it is unrelated to the
7454         arguments.
7455         (_AC_INIT_PREPARE): AC_DEFINE these symbols.
7456         * lib/autotest/general.m4: Use AT_PACKAGE_*, not PACKAGE_*.
7457         (AT_INIT): No longer catch `^PACKAGE_(BUGREPORT|STRING)$'.
7458         * tests/tools.at (autoheader): Adjust.
7459         * tests/atspecific.m4 (AT_CHECK_DEFINES): Adjust.
7461 2002-01-06  Akim Demaille  <akim@epita.fr>
7463         * bin/autoscan.in (scan_file): Use `&used'.
7465 2002-01-03  Akim Demaille  <akim@epita.fr>
7467         * doc/autoconf.texi (Output): Improved wording regarding use of
7468         AC_OUTPUT.
7469         From Olly Betts.
7471 2001-12-18  Kevin Ryde  <user42@zip.com.au>
7473         * doc/autoconf.texi (Function Portability): Add notes on sscanf
7474         sometimes needing writable input.
7476 2001-12-17  Jim Meyering  <meyering@lucent.com>
7478         * doc/autoconf.texi (New Macros): Tweak wording.
7480 2001-12-14  Akim Demaille  <akim@epita.fr>
7482         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): We cleaning up the
7483         trailing files, don't apply `-rf' to files which might not be
7484         created by configure (core, core.*, and *.core), but just `rm -f'.
7485         Suggested by Jonathan Kamens.
7487 2001-12-14  Aaron M. Ucko  <amu@alum.mit.edu>
7489         * lib/autoconf/general.m4: Avoid duplicates in `$ac_configure_args'.
7491 2001-12-14  Akim Demaille  <akim@epita.fr>
7493         * Makefile.am (MAINTAINERCLEANFILES): Remove configure.
7495 2001-12-13  Peter Eisentraut  <peter_e@gmx.net>
7497         * lib/autoconf/status.m4 (_AC_SRCPATHS): Rename buildpath to
7498         abs_builddir, top_buildpath to abs_top_builddir, srcpath to
7499         abs_srcdir, top_srcpath to abs_top_srcdir.
7500         (_AC_OUTPUT_FILES): Adjust.
7501         * NEWS, doc/autoconf.texi, lib/autoconf/autotest.m4,
7502         * tests/atspecific.m4, tests/autoreconf.in, tests/tools.at,
7503         * tests/wrappl.in, tests/wrapsh.in: Adjust.
7505 2001-12-12  Steven G. Johnson  <stevenj@alum.mit.edu>
7507         * lib/autoconf/fortran.m4 (_AC_PROG_F77_V_OUTPUT): Fix failed
7508         C/Fortran linking on HP/UX, by extracting the Fortran library
7509         search path from the LPATH line in the $F77 -v output.
7511 2001-12-12  Kevin Ryde  <user42@zip.com.au>
7513         * doc/autoconf.texi (File Descriptors): Use a clearer layout for the
7514         forbidden file descriptors table.
7516 2001-11-26  Akim Demaille  <akim@epita.fr>
7518         * bin/autoscan.in (%c_keywords): Build it at top level.
7519         Map to 1 in order to simplify its uses.
7521 2001-11-26  Akim Demaille  <akim@epita.fr>
7523         * bin/autoscan.in (&scan_c_file, &scan_sh_file, &scan_makefile):
7524         Remove $filepath, useless.
7525         (&scan_makefile): Don't remove the $(FOO), ${FOO} and @FOO@
7526         variables, they are really part of the tokens.
7527         Split the input line on spaces and then look for tokens.
7528         Now autoscan ceases to ask for AC_PROG_LEX for the package Bison
7529         because of `lex$U.$(OBJEXT)'.
7530         (&scan_files): Use "@list" instead of join.
7531         * doc/Makefile.am (CLEANFILES): Add *.fns.
7533 2001-11-26  Akim Demaille  <akim@epita.fr>
7535         * tests/autoreconf.in, tests/autom4te.in, tests/autoupdate.in:
7536         Remove, replaced by...
7537         * tests/wrappl.in: Be common for all the Perl executables.
7538         In particular autoscan and autoheader want -I.
7539         * configure.ac: Adjust.
7540         * lib/autoscan/headers: errno.h is portable.
7542 2001-11-26  Akim Demaille  <akim@epita.fr>
7544         * bin/autoscan.in (used): New.
7545         Use it.
7547 2001-11-26  Akim Demaille  <akim@epita.fr>
7549         * bin/autoscan.in (&scan_c_file): Better parsing of CPP
7550         directives.
7551         (&scan_sh_file): Remove a duplicate pattern.
7552         (&check_configure_ac): Use long options.
7553         * lib/autoscan/headers (alloca.h): Check with AC_FUNC_ALLOCA.
7555 2001-11-26  Akim Demaille  <akim@epita.fr>
7557         * bin/autoscan.in (scan_c_file): Fix the handling of C comments.
7558         Before, having a line containing the opening of a multi line
7559         comment made the whole line be ignored.
7561 2001-11-26  Akim Demaille  <akim@epita.fr>
7563         * doc/autoconf.texi (Using an Autotest Test Suite): New.
7564         (testsuite Scripts): Be one of its subsection.
7565         (Autotest Logs): New.
7567 2001-11-26  Akim Demaille  <akim@epita.fr>
7569         Test groups are now run two directories deeper.
7571         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): Replace srcdir,
7572         top_srcdir and top_builddir with at_srcdir, at_top_srcdir and
7573         at_top_builddir.
7574         * lib/autotest/general.m4 (AT_INIT): Compute srcdir,
7575         top_srcdir, builddir and top_builddir.
7576         Use `at_*dir' relatively to the directory containing the
7577         suite, use `*dir' when relatively to the current group dir.
7579 2001-11-25  Joseph S. Myers  <jsm28@cam.ac.uk>
7581         * doc/autoconf.texi, TODO, lib/autoconf/fortran.m4,
7582         lib/autoconf/functions.m4, lib/autoconf/headers.m4,
7583         tests/atgeneral.m4, tests/tools.at, tests/atspecific.m4: Fix
7584         spelling errors.
7586 2001-11-22  Alexandre Duret-Lutz  <duret_g@epita.fr>
7588         * doc/autoconf.texi (Using System Type): Add an example of `case
7589         $host' usage so people quit using `case $target' everywhere.
7591 2001-11-22  Akim Demaille  <akim@epita.fr>
7593         * doc/autoconf.texi (Installation Directory Variables): Englishoes
7594         spotted by Jim Meyering.
7596 2001-11-16  Paul Eggert  <eggert@twinsun.com>
7598         This patch implements a `long double' suggestion by Oliver Kiddle.
7600         * lib/autoconf/c.m4 (AC_LANG_BOOL_COMPILE_TRY(C)): Make the array
7601         static, to catch errors if the value isn't known at compile-time
7602         and the compiler supports dynamic arrays.  Change its name from
7603         `_array_' to `test_array' to avoid potential name clashes.
7604         (AC_C_LONG_DOUBLE): Make it a compile-time test, not a run-time
7605         test.  Do not define HAVE_LONG_DOUBLE if `long double' is no
7606         better than double.  Catch a bug in GCC 2.95.2 x86.
7607         * doc/autoconf.texi (C Compiler): Document the above.
7608         * NEWS: Likewise.
7610 2001-11-13  Akim Demaille  <akim@epita.fr>
7612         * tests/m4sh.at (LINENO): Protect from autom4te's substitution by
7613         hand.
7614         * tests/tools.at: Don't protect dnl, AT_DATA_M4SH does.
7616 2001-11-13  Akim Demaille  <akim@epita.fr>
7618         * lib/autotest/general.m4 (AT_INIT): After having run the test
7619         group, go back to the initial directory, not to at_suite_dir.
7621 2001-11-13  Akim Demaille  <akim@epita.fr>
7623         * tests/atspecific.m4 (AT_DATA_M4SUGAR, AT_DATA_M4SH)
7624         (AT_DATA_AUTOCONF):  Also protect @&t@ from autom4te.
7625         (AT_CHECK_AUTOCONF, AT_CHECK_AUTOHEADER): Pass no --include
7626         option.
7627         (AT_CHECK_CONFIGURE): Use absolute paths.
7628         (_AT_CHECK_AC_MACRO): Create aclocal.m4 with AC_STATE_SAVE in it.
7629         The problem is still the old one: there is no means in M4 (that I
7630         know about) to create a defining macro, because there is no means
7631         to create `$1' etc., therefore, the defining macro ``swallows''
7632         all the arguments meant to the defined macro.
7634 2001-11-13  Akim Demaille  <akim@epita.fr>
7636         * tests/atspecific.m4 (AT_DATA_AUTOCONF): New.
7637         (AT_CONFIGURE_AC): Output the definition of AC_STATE_SAVE in
7638         configure.ac.
7639         * tests/aclocal.m4: Remove, as it is no longer used.
7641 2001-11-13  Akim Demaille  <akim@epita.fr>
7643         * lib/autotest/general.m4: Change `tests?' into `groups?' in
7644         variable names when referring to a single test group, or to
7645         `suite' when referring to the whole test suite.
7646         `at_last_test' is removed: m4 compute at_format itself.
7647         (at_stdout, at_stder1, at_stderr): New variables.
7648         (AT_CHECK): Use them.
7650 2001-11-13  Akim Demaille  <akim@epita.fr>
7652         * lib/autotest/general.m4 (AT_INIT): Be sure to put `.', relative,
7653         in PATH.
7654         Create `testsuite.dir/003/run' instead of `testsuite.003'.
7655         Do it as soon as a test fails, don't wait till the end of the test
7656         suite.
7657         Don't remove $as_me.[0-9]*, since these files no longer exist.
7659 2001-11-13  Akim Demaille  <akim@epita.fr>
7661         * tests/tools.at: Use absolute paths, since we are no longer run
7662         in place.
7664 2001-11-13  Akim Demaille  <akim@epita.fr>
7666         Now that tests are running in their own private dir, there is no
7667         need to list the files to remove at the end of tests groups.
7669         * lib/autotest/general.m4 (_AT_CLEANUP_FILE, AT_CLEANUP_FILES):
7670         (AT_data_files, at_data_files): Remove.
7671         (AT_CLEANUP, AT_DATA): Simplify.
7672         (AT_INIT): Adjust.
7673         Remove the group dir if !debug && !failed.
7674         * tests/atspecific.m4: Adjust.
7676 2001-11-13  Akim Demaille  <akim@epita.fr>
7678         Start a new layout for Autotest: `testsuite' creates
7679         `testsuite.dir' in which the at-check-line etc. files are to be
7680         found, and `testsuite.dir/003' where the test group 3 is run.
7682         * lib/autotest/general.m4 (AT_INIT): at_tests_dir,
7683         at_check_line_file, at_format, at_test_normalized, at_group_dir
7684         are new variables.
7685         Create the directories.
7686         Use absolute paths for at- files.
7687         (AT_CHECK): Adjust.
7689 2001-11-11  Michael Matz  <matz@kde.org>
7691         * m4sugar.m4 (_m4_foreach): Make it linear instead quadratic.
7692         (m4_car2): New.
7693         (m4_car): Properly quote arguments.
7695 2001-11-13  Akim Demaille  <akim@epita.fr>
7697         * tests/aclocal.m4 (AC_STATE_SAVE): s/LIBOBJS/LIB@&t@OBJS/ to cope
7698         with stricter rules on LIBOBJS.
7700 2001-11-12  Paul Eggert  <eggert@twinsun.com>
7702         * lib/autoconf/c.m4 (AC_C_PROTOTYPES): Define __PROTOTYPES too.
7703         * doc/autoconf.texi (C Compiler): AC_C_PROTOTYPES now defines
7704         __PROTOTYPES too.
7706 2001-11-12  Akim Demaille  <akim@epita.fr>
7708         * lib/autoconf/functions.m4 (AC_FUNC_GETMNTENT): Use AC_CHECK_FUNCS.
7710 2001-11-12  Akim Demaille  <akim@epita.fr>
7712         * lib/autoconf/c.m4, lib/autoconf/fortran.m4,
7713         * lib/autoconf/functions.m4, lib/autoconf/general.m4,
7714         * lib/autoconf/headers.m4, lib/autoconf/libs.m4,
7715         * lib/autoconf/programs.m4, lib/autoconf/specific.m4,
7716         * lib/autoconf/types.m4: When invoking AC_DEFINE and friends,
7717         specify to what the macro should be defined (typically to 1).
7719 2001-11-12  Akim Demaille  <akim@epita.fr>
7721         * lib/autoconf/functions.m4 (AC_FUNC_STRTOD): AC_SUBST POW_LIB.
7722         From Jim Meyering.
7724 2001-11-12  Akim Demaille  <akim@epita.fr>
7726         * lib/autoconf/programs.m4 (_AC_PROG_LEX_YYTEXT_DECL): Use
7727         AC_TRY_EVAL to run $LEX, not AC_TRY_COMMAND.  This validates the
7728         definition used by Automake where LEX is +/- "${missing} lex" and
7729         `missing' itself contains variables.
7731 2001-11-12  Akim Demaille  <akim@epita.fr>
7733         * lib/autotest/general.m4 (AT_INIT): Push KILL at the end.
7734         Now that M4sh pushes BODY, the comments were output at the end of
7735         the test suites.
7737 2001-11-08  Akim Demaille  <akim@epita.fr>
7739         * bin/autoreconf.in (&autoreconf): Run aclocal before tracing, so
7740         that we can trace macros from aclocal.m4.
7741         Trace AC_PROG_LIBTOOL, not AM_PROG_LIBTOOL, since the latter is
7742         obsoleted, and redirect to the former anyway.
7743         Reported by Ralf Corsepius.
7745 2001-11-08  Akim Demaille  <akim@epita.fr>
7747         * bin/autoreconf.in (&autoreconf): AC_CONFIG_SUBIDRS are to be
7748         processed only if present.
7749         * tests/torture.at (Configuring subdirectories): Use autoreconf
7750         instead of successive calls to autoconf.
7751         Add a nonexistent subdirectory to exercise the patch above.
7752         Reported by Ralf Corsepius.
7754 2001-11-08  Kevin Ryde  <user42@zip.com.au>
7756         * doc/autoconf.texi (Limitations of Usual Tools): Note HP-UX cc
7757         doesn't accept .S files.
7759 2001-11-07  Akim Demaille  <akim@epita.fr>
7761         * lib/m4sugar/m4sugar.m4 (m4_pattern_forbid): Accepts $2.
7762         * lib/autoconf/general.m4 (AC_INTI): Forbid LIBOBJS.
7763         (_AC_LIBOBJ): s/LIBOBJS/LIB@&t@OBJS/.
7764         * bin/autom4te.in (warn_forbidden): New.
7765         (handle_output): Use it.
7766         Read m4_pattern_forbid with messages.
7768 2001-11-05  Akim Demaille  <akim@epita.fr>
7770         * bin/autom4te.in (--normalize): Remove.
7771         * lib/autom4te.in: Adjust.
7773 2001-11-05  Akim Demaille  <akim@epita.fr>
7775         * tests/Makefile.am (testsuite): Rename this target as...
7776         ($(TESTSUITE)): this.
7777         From Nicolas Joly.
7779 2001-11-05  Alexandre Duret-Lutz  <duret_g@epita.fr>
7781         * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): When removing
7782         the --prefix option, also remove it's argument.
7784 2001-11-05  Akim Demaille  <akim@epita.fr>
7786         * doc/autoconf.texi (testsuite Invocation): Update.
7787         (Writing testsuite.at): Update.
7789 2001-11-03  Akim Demaille  <akim@epita.fr>
7791         * doc/autoconf.texi: s/@code/@command/ where appropriate.
7793 2001-11-03  Akim Demaille  <akim@epita.fr>
7795         * lib/Autom4te/General.pm: (&catfile, &canonfile)
7796         (&file_name_is_absolute): New, wrappers around routines from
7797         File::Spec.
7798         Use and export them.
7799         (&find_configure_ac): Optionally take a directory where to look at.
7800         * bin/autoreconf.in (&parse_args): Trim the configure.ac part of
7801         the arguments.
7802         Default @ARGV to `.', not find_configure_ac.
7803         (&autoreconf): Argument is a directory.
7804         Trace AC_CONFIG_SUBDIRS and schedule the subdirs for autoreconf'ing.
7805         * doc/autoconf.texi (autoreconf Invocation): Update.
7807 2001-11-03  Akim Demaille  <akim@epita.fr>
7809         * lib/Autom4te/General.pm (@export_vars, @export_subs)
7810         (@export_forward_subs): New.
7811         Add basename, dirname, and fileparse.
7812         (@EXPORT): Adjust.
7813         * bin/autoreconf.in (&autoreconf): Fix call to fileparse.
7814         Don't look for aclocal flags if we already know aclocal is not
7815         used.
7816         Move aclocal.m4t only if it exists.
7817         Reported by Ezra Peisach.
7819 2001-11-03  Akim Demaille  <akim@epita.fr>
7821         * bin/autoreconf.in (&parse_args): Work only on the configure.ac
7822         passed on command line, defaulting to ./configure.ac if present.
7823         (&maybe_autoreconf, File::Find): Remove, unused.
7824         (&autoreconf): If autoconf is not used, don't try to trace.
7826 2001-11-02  Akim Demaille  <akim@epita.fr>
7828         * configure.ac: Bump to 2.52g.
7830 2001-11-02  Akim Demaille  <akim@epita.fr>
7832         Version 2.52f.
7834 2001-11-02  Akim Demaille  <akim@epita.fr>
7836         * config/config.guess, config/config.sub, doc/standards.texi:
7837         * config/lispdir.m4: Update from masters.
7838         * configure.ac: Bump to 2.52f.
7840 2001-11-02  Akim Demaille  <akim@epita.fr>
7842         * bin/autoreconf.in (&autoreconf): Set `$aclocal_flags' to ''.
7843         Don't run aclocal when aclocal.m4 is not from aclocal.
7844         From Ezra Peisach.
7845         Don't run libtoolize and gettextize if --install is not given.
7847 2001-11-01  Paul Eggert  <eggert@twinsun.com>
7849         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): _AS_CR_PREPARE needs to
7850         be invoked before _AS_LINENO_PREPARE.
7851         (_AS_LINENO_PREPARE): Use as_cr_digits and as_cr_alnum rather
7852         than character ranges.
7854         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Fix NLS before
7855         invoking AS_BASENAME.  Set the locale variables to 'C' if
7856         possible, as POSIX requires this to get the traditional
7857         behavior.
7858         * doc/autoconf.texi (Special Shell Variables): Describe the above.
7860 2001-10-31  Paul Eggert  <eggert@twinsun.com>
7862         * lib/m4sugar/m4sh.m4 (_AS_LINENO_WORKS): Do not surround body
7863         with {}, as that triggers a bug in Bash 2.05.
7865         (_AS_LINENO_PREPARE): Use Sed rather than
7866         Awk.  Fix the sed prepass to work even if there are multiple
7867         instances of $LINENO on the same line.  Do not substitute for
7868         other variables like $LINENOT.  Do not check file dates; such a
7869         check is unreliable on sufficiently fast machines, and removing
7870         the check makes the code simpler and more reliable.  Check for
7871         output and chmod failures.
7873         * doc/autoconf.texi (Special Shell Variables): Document
7874         the above.
7876 2001-10-31  Akim Demaille  <akim@epita.fr>
7878         * tests/Makefile.am (atconfig): Remove this target, Automake
7879         handles it now.
7881 2001-10-31  Akim Demaille  <akim@epita.fr>
7883         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): Do not
7884         AC_CONFIG_FILES(atlocal) as it means a file atlocal.in *must* be
7885         provided, while it is optional.
7886         * configure.ac: Adjust.
7888 2001-10-26  Paul Eggert  <eggert@twinsun.com>
7890         * NEWS, README, configure.ac, lib/Autom4te/General.pm,
7891           lib/Autom4te/Struct.pm:
7892         Require Perl 5.005_03 instead of just 5.005, as some tests fail
7893         with 5.005_02.
7895         * doc/autoconf.texi (Special Shell Variables): Document some
7896         more LINENO gotchas, particularly with respect to the Awk+Sed hack.
7898         * lib/m4sugar/m4sh.m4 (_AS_LINENO_WORKS): New macro.
7899         (_AS_LINENO_PREPARE): Use it instead of shell eval, since
7900         eval $LINENO is not portable in practice.
7902 2001-10-24  Akim Demaille  <akim@epita.fr>
7904         * lib/Autom4te/General.pm (backname): New.
7906 2001-10-24  Akim Demaille  <akim@epita.fr>
7908         * m4/: Remove, merged into...
7909         * config/: here.
7911 2001-10-23  Tim Van Holder  <tim.van.holder@pandora.be>
7913         * doc/autoconf.texi (Shellology): Mention the problems with bash
7914         2.05's use of ANSI quoting in its `set' builtin.
7916 2001-10-22  Paul Eggert  <eggert@twinsun.com>
7918         * lib/autoconf/functions.m4 (AC_FUNC_STRERROR_R):
7919         Rename ac_cv_func_strerror_r_works to ac_cv_func_strerror_r_char_p,
7920         and rename HAVE_WORKING_STRERROR_R to STRERROR_R_CHAR_P, since
7921         POSIX decided to standardize on the int flavor of strerror_r.
7922         Always do char* test, as there's no reason not to.
7923         Assign to a char* var, to catch strerror_r that returns int*.
7925         * doc/autoconf.texi (Particular Functions):
7926         Document the above changes.  Also, document the fact that
7927         AC_FUNC_STRERROR_R defines HAVE_DECL_STRERROR_R.
7929         * NEWS: Mention HAVE_WORKING_STRERROR_R -> STRERROR_R_CHAR_P.
7931 2001-10-20  Akim Demaille  <akim@epita.fr>
7933         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): The name of
7934         the executable was missing from the log.
7936 2001-10-20  Akim Demaille  <akim@epita.fr>
7938         * lib/Autom4te/General.pm (&update_file): If destination is
7939         unchanged, remove the source.
7940         (&up_to_date_p): Don't be verbose, be debug.
7941         * bin/autoreconf.in: No longer support --m4dir.
7942         (&autoreconf): Display the full path of the configure.ac we are
7943         studying.
7944         Trace it only once.
7945         Be sure to honor --force with gettextize.
7946         Always run aclocal.
7947         * doc/autoconf.texi: Adjust.
7949 2001-10-20  Akim Demaille  <akim@epita.fr>
7951         * bin/autoheader.in ($localdir, $m4, $SIMPLE_BACKUP_SUFFIX):
7952         Remove, dead.
7953         * bin/autoreconf.in (&autoreconf): Do not run gettextize when
7954         `intl' is already present, as it refuses unless --force.
7955         (&parse_args): Use -I, --include instead of the old Autoconf
7956         options.
7957         ($localdir, $autoconf_dir): Remove.
7958         (@include): New.
7959         (&maybe_autoreconf): New, to preserve $_ for File::Find.
7961 2001-10-19  Jens Petersen  <petersen@redhat.com>
7963         * lib/autoconf/programs.m4 (AC_PROG_AWK): Prefer gawk to mawk.
7964         * doc/autoconf.texi (Particular Programs): Likewise.
7966 2001-10-19  Akim Demaille  <akim@epita.fr>
7968         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES): Name the generated
7969         file in @configure_input@.
7970         Don't mention `automatically' in addition to `generated'.
7971         * tests/torture.at (#define header templates): Adjust.
7973 2001-10-19  Akim Demaille  <akim@epita.fr>
7975         * lib/emacs/autoconf-mode.el, lib/emacs/autotest-mode.el: In a
7976         comment, explain how to install automatic mode selection.
7977         From Russ Allbery.
7979 2001-10-19  Ezra Peisach  <epeisach@zif.mit.edu>
7981         * bin/autoreconf.in (autoreconf): Display the path to the
7982         configure.ac being studied.
7984 2001-10-18  Paul Eggert  <eggert@twinsun.com>
7986         * lib/autoconf/types.m4 (AC_CHECK_SIZEOF): Cast sizeof to unsigned
7987         long, to work around a bug in the HP C compiler version HP92453-01
7988         B.11.11.23709.GP.
7990         * lib/m4sugar/m4sh.m4 (AS_DIRNAME): Use 'dirname' if that works.
7991         (AS_BASENAME_EXPR): New macro.
7992         (AS_BASENAME_SED): Do not assume GNU sed semantics.
7993         (AS_BASENAME): Use 'basename' if that works; then try 'expr';
7994         and fall back on 'sed' only if the other two fail.  This makes
7995         AS_BASENAME act more like AS_DIRNAME.
7996         (as_me): Shell-quote the argument of AS_BASENAME, in case $0
7997         contains white space.
7998         * lib/autoconf/general.m4 (_AC_INIT_SRCDIR):
7999         Use AS_DIRNAME, since I think it's now DOS-friendly.
8000         * tests/m4sh.at (DIRNAME_TEST): New arg $3.
8001         Allow "dirname //FOO" to return either / or //, as POSIX allows
8002         either behavior.
8004 2001-10-10  Akim Demaille  <akim@epita.fr>
8006         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Recognize
8007         `a_out.exe' for OpenVMS 7.1, DEC C 5.5 compiler, via GNV.
8008         From Eric Sharkey.
8010 2001-10-10  Akim Demaille  <akim@epita.fr>
8012         * lib/m4sugar/m4sh.m4 (_AS_ECHO_N_PREPARE): m4_defun, not
8013         m4_define, since...
8014         (_AS_ECHO_N): AS_REQUIREs it.
8016 2001-10-10  Akim Demaille  <akim@epita.fr>
8018         * lib/autoconf/general.m4 (_AC_INCLUDES_DEFAULT_REQUIREMENTS)
8019         (AC_INCLUDES_DEFAULT): Move to...
8020         * lib/autoconf/headers.m4: here.
8021         * lib/autoconf/types.m4: Comment changes.
8022         * doc/autoconf.texi: Specify where the default includes are used
8023         in the macro prototypes.
8025 2001-10-09  Akim Demaille  <akim@epita.fr>
8027         * lib/autoconf/autoconf.m4 (m4_patsubst, m4_regexp): New
8028         transition code.
8030 2001-10-08  Akim Demaille  <akim@epita.fr>
8032         * bin/autoreconf.in (&autoreconf): Remove debugging code.
8033         (&parse_args): Pass verbosity/debugging options to subtools when
8034         --debug, not when --verbose.
8035         * lib/autom4te.in (Autoreconf-preselections): New.
8036         (Autoconf): Use it.
8038 2001-10-08  Akim Demaille  <akim@epita.fr>
8040         * bin/autoreconf.in (autoreconf): Run libtoolize when appropriate.
8042 2001-10-08  Akim Demaille  <akim@epita.fr>
8044         * doc/autoconf.texi (autoreconf Invocation): Adjust.
8045         * bin/autoreconf.in (autoreconf): Run gettextize when appropriate.
8047 2001-10-08  Akim Demaille  <akim@epita.fr>
8049         * tests/tools.at (AT_CHECK_PERL_SYNTAX): Check autoreconf.
8050         (Syntax of the shell scripts): Don't.
8051         * bin/autoheader.in, bin/autom4te.in, bin/autoreconf.in: Don't
8052         bother with $force since...
8053         * lib/Autom4te/General.pm: does.
8055 2001-10-08  Akim Demaille  <akim@epita.fr>
8057         * bin/autoreconf.in: Rewrite in Perl.
8058         * configure.ac: Adjust.
8059         * lib/Autom4te/General.pm (&up_to_date_p): New.
8060         * bin/autom4te.in (&up_to_date_p): Use it.
8061         Rename as...
8062         (&up_to_date): this.
8064 2001-10-08  Akim Demaille  <akim@epita.fr>
8066         * lib/m4sugar/m4sugar.m4 (m4_case, m4_bmatch, m4_normalize)
8067         (m4_list_cmp): Use $0 to reinvoke yourself.
8068         (m4_patsubsts): New.
8069         (m4_strip, m4_version_unletter): Use it.
8070         * tests/atspecific.m4 (AT_DATA_M4SUGAR, AT_DATA_M4SH): Likewise.
8072 2001-10-08  Akim Demaille  <akim@epita.fr>
8074         * lib/autoconf/autoconf.m4, lib/autoconf/general.m4,
8075         * lib/autoconf/libs.m4, lib/autoconf/status.m4,
8076         * lib/autoconf/types.m4, lib/autotest/general.m4,
8077         * lib/m4sugar/m4sh.m4, lib/m4sugar/m4sugar.m4, tests/atspecific.m4,
8078         * tests/torture.at: Rename m4_regexp, m4_patsubst, and m4_match to
8079         m4_bregexp, m4_bpatsubst, and m4_bmatch.
8080         * doc/autoconf.texi (Redefined M4 Macros): Adjust.
8082 2001-10-08  Akim Demaille  <akim@epita.fr>
8084         * lib/m4sugar/m4sh.m4: Use AS_REQUIRE.
8086 2001-10-08  Akim Demaille  <akim@epita.fr>
8088         * lib/m4sugar/m4sh.m4 (AS_DIRNAME_EXPR): Use AS_REQUIRE.
8089         * tests/tools.at (AT_DATA_FORBIDDEN): Rename/move/duplicate to...
8090         * tests/atspecific.m4 (AT_DATA_M4SUGAR, AT_DATA_M4SH): here.
8091         * tests/tools.at, tests/m4sh.at: Use it.
8092         * tests/m4sh.at: Don't rely on Autoconf macros.
8093         (DIRNAME_TEST): Also exercise the expr variant.
8094         * tests/m4sugar.at, tests/atspecific.m4 (AT_CHECK_M4SUGAR): The
8095         preferred M4sugar extension is now `.4s'.
8096         * tests/README: Remove.
8098 2001-10-08  Akim Demaille  <akim@epita.fr>
8100         * lib/m4sugar/m4sugar.m4 (m4_provide_ifelse): Rename as...
8101         (m4_provide_if): this.
8102         * lib/m4sugar/m4sh.m4 (AS_REQUIRE): New.
8103         * lib/autoconf/general.m4 (AS_DEFUN, AC_DEFUN_ONCE, AC_BEFORE)
8104         (AC_REQUIRE, AC_PROVIDE, AC_PROVIDE_IFELSE): Be exact copy of the
8105         M4sugar peer, i.e., drop the `AC_PROVIDE_$1' broken marker.
8107 2001-10-08  Akim Demaille  <akim@epita.fr>
8109         Use `add-log-current-defun-function' for ChangeLog creation.
8110         Suggested by Tom Tromey.
8112         * lib/emacs/autotest-mode.el (autotest-mode-map): New.
8113         (autotest-mode): Adjust.
8114         * lib/emacs/autoconf-mode.el (autoconf-mode-map): Modernize, map
8115         'comment-region onto `C-c ;'.
8116         Comments are `#', not `dnl'.
8117         (autoconf-current-defun): New.
8118         (autoconf-font-lock-keywords): Recognize `m4_defun'.
8120 2001-10-08  Akim Demaille  <akim@epita.fr>
8122         * lib/autoconf/general.m4 (_m4_divert(BODY)): Move to...
8123         * lib/m4sugar/m4sh.m4: here.
8124         (AS_INIT): Push the BODY diversion, set the #! /bin/sh line.
8125         * lib/autoconf/general.m4 (AC_PLAIN_SCRIPT) : Remove.
8126         (AT_INIT): Replace AC_PLAIN_SCRIPT with AS_INIT invocation,
8127         include handle the m4_pattern_*, no longer push the
8128         BODY diversion nor set the /bin/sh line, AS_INIT does it.
8129         * lib/autotest/general.m4 (AT_INIT): Likewise.
8130         * tests/base.at: Adjust the tests to use AS_INIT.
8131         * tests/tools.at (AT_DATA_FORBIDDEN): New.
8132         (autoconf: forbidden tokens): Adjust to work on M4sh instead of
8133         Autoconf.
8135 2001-10-07  Paul Eggert  <eggert@twinsun.com>
8137         * doc/autoconf.texi (config.status Invocation):
8138         CONFIG_SHELL defaults to a shell that supports LINENO if available.
8140         * lib/m4sugar/m4sh.m4 (_AS_LINENO_PREPARE): If the current
8141         shell does not support LINENO, and if CONFIG_SHELL is unset or
8142         empty, and if we can find a shell that does support LINENO,
8143         then set CONFIG_SHELL to that shell and then re-execute
8144         ourselves with CONFIG_SHELL.
8146 2001-10-05  Paul Eggert  <eggert@twinsun.com>
8148         * tests/Makefile.am (clean-local): Don't invoke $(TESTSUITE) if it
8149         doesn't exist.  Remove *.tmp, as a .tmp file is created during the
8150         build of $(TESTSUITE).
8152 2001-10-05  Akim Demaille  <akim@epita.fr>
8154         * lib/m4sugar/m4sh.m4 (_AS_LINENO_PREPARE): Look in the path
8155         iff we are a bareword.
8156         Reported by Raja R Harinath.
8158 2001-10-05  Akim Demaille  <akim@epita.fr>
8160         * tests/m4sh.at (LINENO): New.
8161         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Be sure to set
8162         PATH_SEPARATOR before using it.
8163         Fix the absolute path case/esac pattern.
8164         Provide $0 as fallback for as_myself.
8165         Reported by Raja R Harinath.
8167 2001-10-05  Akim Demaille  <akim@epita.fr>
8169         * Makefile.am, config/Makefile.am, lib/emacs/Makefile.am,
8170         * m4/Makefile.am, man/Makefile.am: Add/adjust MAINTAINERCLEANFILES.
8172 2001-10-05  Akim Demaille  <akim@epita.fr>
8174         * lib/m4sugar/m4sh.m4 (_AS_LINENO_PREPARE): New, extracted from...
8175         (AS_SHELL_SANITIZE): here.  Use it.
8176         (_AS_LINENO_PREPARE): Preserve the exit status of $0.lineno.
8177         From Paul Eggert.
8179 2001-10-04  Akim Demaille  <akim@epita.fr>
8181         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Use a portable
8182         combination of Awk and sed to replace $LINENO.
8184 2001-10-02  Paul Eggert  <eggert@twinsun.com>
8186         * doc/autoconf.texi (Limitations of Builtins): You can't use
8187         "source"; it's not portable.  Remove confusing and
8188         somewhat-incorrect example involving "." and "/".
8190         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): "source" -> ".", for
8191         compatibility with POSIX shells.
8193 2001-10-02  Akim Demaille  <akim@epita.fr>
8195         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Just source 40.lineno
8196         instead of exec'ing to preserve $0 and $@.
8198 2001-10-01  Akim Demaille  <akim@epita.fr>
8200         * tests/testsuite (AT_INIT) <at_pass_list>: New.
8201         Don't run twice the same test.
8203 2001-10-01  Akim Demaille  <akim@epita.fr>
8205         * lib/autotest/general.m4 (AT_INIT) <--help>: Catch up with reality.
8206         No longer output the list of tests.
8207         <--list>: New option.
8208         <--full-help>: Remove.
8209         Complete the short/long options duality.
8210         Various small adjustments.
8212 2001-10-01  Akim Demaille  <akim@epita.fr>
8214         * doc/autoconf.texi: Use @kbd for user input.
8215         Always use `$' as shell prompt.
8217 2001-09-30  Paul Eggert  <eggert@twinsun.com>
8219         * lib/autoconf/status.m4 (AC_OUTPUT_MAKE_DEFS):
8220         Don't use nested parenthesization.  This patch was originally
8221         suggested to bug-autoconf by Philippe De Muyter on 2000-05-28,
8222         but somehow it didn't get incorporated then.
8223         * doc/autoconf.texi (Limitations of Usual Tools):
8224         Clarify remark about sed and nested parenthesization.
8226         * lib/autoconf/types.m4 (AC_CHECK_SIZEOF):
8227         Report an error if the size cannot be determined even though
8228         the type exists.
8229         * lib/autoconf/general.m4 (_AC_COMPUTE_INT_COMPILE):
8230         Check for `expr' arithmetic overflow, and for compilation failure,
8231         and invoke a new argument $4 if either is discovered.
8232         This makes _AC_COMPUTE_INT_COMPILE more like _AC_COMPUTE_INT_RUN.
8233         (_AC_COMPUTE_INT): Pass IF-FAILS arg to _AC_COMPUTE_INT_COMPILE.
8235 2001-09-28  Akim Demaille  <akim@epita.fr>
8237         * lib/emacs/autoconf-mode.el, lib/emacs/autotest-mode.el: New.
8238         * m4/lispdir.m4: New.
8239         * aclocal.m4, configure.ac: Adjust.
8241 2001-09-28  Akim Demaille  <akim@epita.fr>
8243         * lib/autotest/general.m4 (AT_VICTIMS): Rename as...
8244         (AT_TESTED): this.
8245         (AT_INIT): More the wrapped section to where it will be expanded.
8246         Output `AT_tested' only when existing.
8247         Catch unexpanded PACKAGE_STRING and PACKAGE_BUGREPORT.
8249 2001-09-27  Akim Demaille  <akim@epita.fr>
8251         Fix the passing of $? to ACTION-IF-FAILED in AC_TRY_RUN, that
8252         generates too many bug reports.
8254         * lib/autoconf/general.m4 (_AC_RUN_IFELSE): Pass the right exit
8255         status when executing the ACTION-IF-FALSE.
8256         * tests/base.at (AC_TRY_*): Rename as...
8257         (AC_TRY_COMMAND): this.
8258         (AC_RUN_IFELSE): New.
8259         * tests/compile.at (Extensions, C keywords)
8260         (AC_PROG_CPP requires AC_PROG_CC, GNU Fortran 77)
8261         (Broken/missing compilers, AC_PROG_CPP with warnings)
8262         (AC_PROG_CPP without warnings, AC_PROG_CPP via CC): Move to...
8263         * tests/c.at (Extensions, C keywords)
8264         (Broken/missing compilers, AC_PROG_CPP with warnings)
8265         (AC_PROG_CPP without warnings, AC_PROG_CPP via CC)
8266         (AC_PROG_CPP requires AC_PROG_CC): here and...
8267         * tests/fortran.at (GNU Fortran 77): there.
8268         * doc/autoconf.texi (autoconf Invocation): Fix the example:
8269         AC_TRY_RUN is about compilation, not shell commands.
8270         (Test Programs): AC_TRY_RUN works as used to be advertised.
8272 2001-09-27  Akim Demaille  <akim@epita.fr>
8274         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Fix bugs spotted by
8275         Raja R Harinath:
8276         Be sure to detect when $LINENO always returns the same value.
8277         Look for the original script, basename($0) is certainly not
8278         enough.
8279         Pass the CLI arguments to `$as_me.lineno'.
8281 2001-09-25  Akim Demaille  <akim@epita.fr>
8283         * lib/autotest/general.m4 (AT_INIT): Dump the whole config.log.
8284         Be sure the close and reopen the LOG fd before and after using tee
8285         to extend the log.
8286         <at_tests_pattern>: Adjust to the new format of at_help_all.
8288 2001-09-23  Akim Demaille  <akim@epita.fr>
8290         * bin/autom4te.in (parse_args): There can be several invocations
8291         of --language now.
8293 2001-09-23  Akim Demaille  <akim@epita.fr>
8295         * doc/autoconf.texi (Top): Wrap in @ifnottex.
8297 2001-09-23  Akim Demaille  <akim@epita.fr>
8299         * lib/autoconf/status.m4 (_AC_SRCPATHS): Compute and provide
8300         ac_buildpath, ac_top_buildpath, ac_srcpath, and ac_top_srcpath.
8301         (_AC_OUTPUT_FILES): Also substitute srcpath, top_srcpath,
8302         builddir, buildpath, top_builddir, and top_buildpath.
8303         (_AC_OUTPUT_SUBDIRS): Compute the dir variables *before* changing
8304         the current directory.
8305         * lib/autoconf/general.m4 (_AC_INIT_HELP): Compute the dir
8306         variables *before* changing the current directory.
8307         Skip nonexistent dirs.
8308         * doc/autoconf.texi (Preset Output Variables): Document these
8309         variables.
8311         * lib/autotest/general.m4: Do not reset AT_victims.
8312         Don't compute at_srcdir nor at_top_srcdir.
8314         * tests/tools.at: Hence use top_srcdir.
8316         * tests/Makefile.am, tests/autoconf, tests/autoheader,
8317         * tests/autom4te, tests/autoreconf, tests/autoupdate, tests/ifnames:
8318         Remove.
8319         * tests/autoreconf.in, tests/wrappl.in, tests/autom4te.in,
8320         * tests/wrapsh.in, tests/autoupdate.in: New.
8321         * tests/Makefile.am (DISTCLEANFILES, EXTRA_DIST): Adjust.
8322         * configure.ac: Build the position independent wrappers.
8324         * man/Makefile.am: Now that test wrappers are position
8325         independent, use them and drop dark envvar magic.
8327 2001-09-23  Akim Demaille  <akim@epita.fr>
8329         * doc/autoconf.texi (Common Shell Constructs): Rename as...
8330         (Programming in M4sh): this.
8331         Promote to @section.
8333 2001-09-23  Akim Demaille  <akim@epita.fr>
8335         * lib/autotest/general.m4 (AT_INIT): Dump config.log last.
8336         Pass $at_debug_args to the rerun test suite.
8337         * lib/m4sugar/Makefile.am (DISTCLEANFILES): New.
8338         * bin/Makefile.am (ETAGS_SH): Don't use characters ranges.
8339         From Paul Eggert.
8341 2001-09-23  Akim Demaille  <akim@epita.fr>
8343         * bin/autom4te.in (@my_warning): Remove, handled by `autom4te.cfg'.
8345 2001-09-23  Akim Demaille  <akim@epita.fr>
8347         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Fix shell
8348         over-escaping.
8350 2001-09-23  Akim Demaille  <akim@epita.fr>
8352         * lib/Autom4te/General.pm (&debug): New.
8353         * bin/autom4te.in ($language): Move to...
8354         (parse_args): here.
8355         Handle --language in languages.
8356         * lib/autom4te.in (Automake-selections, Autoheader-selections)
8357         (Autoscan-selections): New.
8358         (Autoconf): Adjust.
8360 2001-09-23  Tim Van Holder  <tim.van.holder@pandora.be>
8362         * m4/auxdir.m4, m4/cond.m4, m4/depend.m4, m4/init.m4,
8363         * m4/install-sh.m4, m4/missing.m4, m4/sanity.m4, m4/strip.m4: Updated
8364         to match current versions from CVS Automake.
8366 2001-09-23  Alexandre Duret-Lutz  <duret_g@epita.fr>
8368         * doc/autoconf.texi (Special Shell Variables): Add pdksh output
8369         for $LINENO.
8371 2001-09-22  Akim Demaille  <akim@epita.fr>
8373         * lib/autoconf/autotest.m4: Create `package.m4'.
8374         * tests/Makefile.am (package.m4): Remove.
8376 2001-09-22  Akim Demaille  <akim@epita.fr>
8378         Rely on `$LINENO' when possible instead of `__oline__'.
8380         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Provide some form of
8381         `$LINENO' support replacement when not supported.
8382         (_AS_CR_PREPARE, _AS_TR_CPP_PREPARE, _AS_TR_SH_PREPARE): Invoke
8383         them explicitly to be sure they are not output before this section
8384         (via m4_require).  Cosmetic only.
8385         * lib/autoconf/c.m4, lib/autoconf/general.m4,
8386         * lib/autoconf/programs.m4: Replace all the occurrences of
8387         `__oline__' with `$LINENO'.
8388         * doc/autoconf.texi (Special Shell Variables): Document LINENO.
8390 2001-09-21  Tim Van Holder  <tim.van.holder@pandora.be>
8392         * lib/autoconf/functions.m4 (_AC_FUNC_FORK): Replaceded an 8-bit
8393         character (u: -> ue) in a code comment.
8394         (AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK): Only run 'ln -s' if we know
8395         it works.
8397 2001-09-21  Akim Demaille  <akim@epita.fr>
8399         * Makefile.maint (AUTOM4TE): Neutralize autom4te.
8400         Suggested by Jim Meyering.
8402 2001-09-20  Tim Van Holder  <tim.van.holder@pandora.be>
8404         * lib/autoconf/programs.m4: Use extensions listed in
8405         $ac_executable_extensions when looking for programs.
8407 2001-09-20  Tim Van Holder  <tim.van.holder@pandora.be>
8409         * lib/autoconf/general.m4: Fix a small Englisho.
8410         * lib/autoconf/status.m4: Fix a small typo.  Handle DOS paths when
8411         setting up ac_dir_suffix and ac_top_builddir.
8412         * lib/m4sugar/m4sh.m4: Default CDPATH to $PATH_SEPARATOR, not ':'.
8414 2001-09-20  Tim Van Holder  <tim.van.holder@pandora.be>
8416         * doc/autoconf.texi (File System Conventions): Clarify the use of
8417         PATH_SEPARATOR.
8418         (Special Shell Variables[PATH_SEPARATOR]): Ditto.
8419         (Special Shell Variables[CDPATH]): Mention that $PATH_SEPRATOR should
8420         be used instead of ':'.
8421         * lib/autotest/general.m4: Replace occurrences of ':' in
8422         AUTOTEST_PATH with $PATH_SEPARATOR at test suite startup.
8424 2001-09-20  Tim Van Holder  <tim.van.holder@pandora.be>
8426         * tests/atgeneral.m4: Add basic support for test ranges (e.g. 7-34) as
8427         arguments.  Fixed a typo.
8429 2001-09-20  Tim Van Holder  <tim.van.holder@pandora.be>
8431         * man/Makefile.am (.x.1): Use @PATH_SEPARATOR@, not ':' to set up
8432         $PATH.  Also set AUTOM4TE_CFG, so we can process autom4te properly.
8434 2001-09-20  Tim Van Holder  <tim.van.holder@pandora.be>
8436         * bin/autoscan.in: Add 'exec-perl-if-not-run-by-perl'.
8437         * bin/autoupdate.in: Ditto.
8438         * bin/autoheader.in: Reworded a few comments.
8439         * bin/autoconf.in: Reworded help text for a few options.
8440         * bin/autoheader.in, bin/autom4te.in, bin/autoreconf.in,
8441         * bin/autoscan.in, bin/autoupdate.in: Ditto.
8443 2001-09-20  Tim Van Holder  <tim.van.holder@pandora.be>
8445         * lib/Autom4te/XFile.pm (open): Simplified the error message (we
8446         already have $file).  Set output files to binary mode (helps avoid
8447         CR issues on DOSish systems).
8449 2001-09-19  Akim Demaille  <akim@epita.fr>
8451         * lib/autotest/general.m4: Englishoes.
8452         From Tim Van Holder and Alexey Mahotkin.
8454 2001-09-18  Paul Eggert  <eggert@twinsun.com>
8456         * doc/autoconf.texi (Common Shell Constructs): New node,
8457         documenting AS_DIRNAME.
8458         (Limitations of Usual Tools): Refer to it when discussing dirname.
8459         Also, update discussion of POSIX standard to reflect latest draft.
8461         * lib/autoconf/c.m4:
8462         (AC_LANG_INT_SAVE(C)): Also support negative values, down to LONG_MIN.
8464         * lib/autoconf/general.m4 (_AC_COMPUTE_INT_COMPILE):
8465         Do not pass a first argument with leading '-'
8466         to expr, by parenthesizing initial integers that might be negative.
8468         * doc/autoconf.texi (Particular Functions): AC_FUNC_GETPGRP
8469         now merely checks whether it is an error to pass an argument
8470         to getpgrp.
8472         * lib/autoconf/functions.m4 (_AC_FUNC_GETPGRP_TEST): Remove.
8473         (AC_FUNC_GETPGRP): Don't bother with a runtime test.  Just check
8474         whether it is a (compile-time) error to pass an argument to
8475         getpgrp.  This simpler test supports the revised documentation,
8476         and is all that AC_FUNC_GETPGRP's users really need.
8478 2001-09-18  Akim Demaille  <akim@epita.fr>
8480         * doc/autoconf.texi (Limitations of Make) <$<>: New.
8482 2001-09-18  Akim Demaille  <akim@epita.fr>
8484         * doc/autoconf.texi (Limitations of Usual Tools) <find>: More about
8485         `{}'.
8486         * lib/autotest/general.m4 (AT_INIT): Adjust.
8488 2001-09-18  Paul Wagland  <paul@wagland.net>
8490         * tests/m4sh.at: Ensure that AS_DIRNAME handles '/', '//' and '///'
8491         correctly.
8492         Add test for AS_BASENAME.
8493         * lib/m4sugar/m4sh.m4: Fix AS_BASENAME so that it passes the previous
8494         added test. It now correctly handles /1/2/3/, returning '3' not ''.
8495         Added AS_BASENAME_SED to make the interface the same as AS_DIRNAME.
8496         * tests/base.at: Fixed the expected responses. The old ones were
8497         one line out...
8498         * lib/autoconf/general.m4: Fixed AC_PREFIX_PROGRAM, it now behaves as
8499         the documentation claims it should (and how it behaved in 2.13).
8501 2001-09-18  Akim Demaille  <akim@epita.fr>
8503         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): No INIT-CMDS in
8504         the AC_CONFIG_COMMANDS invocation.
8505         This also solves the name clash problems.
8506         Don't set the package's ID.
8507         * lib/m4sugar/Makefile.am (version.m4): Revamp.
8508         No longer to be shipped.
8509         (version.in): Remove.
8510         * lib/m4sugar/m4sugar.m4, lib/autoconf/general.m4,
8511         * lib/autoconf/status.m4: Adjust.
8512         Use `m4_PACKAGE_STRING'.
8513         * lib/autotest/general.m4 (AT_INIT): N-th signature change: now
8514         the only optional argument is the name of the test suite.
8515         Expect `package.m4' to define the package signature.
8516         * lib/autom4te.in (Autotest): Add `package.m4?'.
8517         * tests/Makefile.am (package.m4): New.
8518         * tests/suite.at: ifnames is a victim.
8520 2001-09-18  Akim Demaille  <akim@epita.fr>
8522         * lib/autom4te.in (Autoconf): Preselect AM_CONDITIONAL,
8523         AC_LIBSOURCE, AC_CONFIG_FILES.
8524         * lib/autotest/general.m4 (AT_INIT): Don't abort when a tested
8525         program version string doesn't match the package's.
8526         * lib/autoconf/general.m4 (AC_CACHE_VAL): Reestablish the space
8527         after `(cached)'.
8529 2001-09-17  Paul Eggert  <eggert@twinsun.com>
8531         * lib/autoconf/c.m4: (AC_LANG_INT_SAVE(C)):
8532         Allow expression to return any value that can fit into unsigned long
8533         (not int, as before).  Check for output errors.
8535 2001-09-17  Bruno Haible  <haible@ilog.fr>
8537         * lib/autoconf/c.m4: (AC_LANG_INT_SAVE(C)):
8538         Always include <stdio.h> and <stdlib.h>. Evaluate
8539         the expression in an extra function before these includes. Call
8540         fprintf "%d" only after ensuring the argument is of type 'int'.
8541         Reported by Wayne Chapeskie <waynec@spinnaker.com>.
8543 2001-09-17  Paul Eggert  <eggert@twinsun.com>
8545         Fix bug reported by Paul Townsend on AIX 4.3.3.0 with CFLAGS=-O4
8546         or CFLAGS=-O5.  In that case, the linker has a relaxed view of
8547         fatal errors, and AC_CHECK_LIB causes it to include libraries even
8548         when they don't exist.
8550         * lib/autoconf/headers.m4 (AC_HEADER_DIRENT): Use AC_SEARCH_LIBS,
8551         not AC_CHECK_LIB, so that we don't use -ldir or -lx if we don't
8552         need it.
8554         * lib/autoconf/specific.m4 (AC_ISC_POSIX): Replace the old, crufty
8555         version with the version used by fileutils 4.1, except use
8556         AC_SEARCH_LIBS, not AC_CHECK_LIB, so that we don't use -lcposix if
8557         we don't need it.
8559         * doc/autoconf.texi (AC_ISC_POSIX): Describe new behavior.
8561 2001-09-13  Akim Demaille  <akim@epita.fr>
8563         * tests/base.at, tests/m4sh.at: Be sure to issue the bangshe line
8564         _first_.
8565         Reported by Gerrit P. Haase.
8567 2001-09-13  Akim Demaille  <akim@epita.fr>
8569         * lib/autotest/general.m4 (AT_INIT): Reset `AT_victims' so that
8570         m4_defn'ing is valid.
8572 2001-09-13  Akim Demaille  <akim@epita.fr>
8574         * lib/m4sugar/m4sugar.m4 (m4_append_uniq): New.
8575         * lib/autotest/general.m4 (AT_VICTIMS, AT_KEYWORDS, _AT_CLEANUP_FILE):
8576         Use it.
8578 2001-09-13  Akim Demaille  <akim@epita.fr>
8580         * lib/m4sugar/m4sugar.m4 (_AS_QUOTE_IFELSE, _AS_BOX_INDIR): Use
8581         m4_match.
8582         (m4_re_escape): New.
8583         * lib/autoconf/status.m4 (AC_CONFIG_IF_MEMBER): Use it.
8584         * lib/autoconf/general.m4 (AC_CACHE_SAVE): Use m4_match.
8585         * lib/autoconf/status.m4 (AC_CONFIG_IF_MEMBER, AC_CONFIG_LINKS):
8586         Likewise.
8587         * lib/autoconf/types.m4 (_AC_CHECK_TYPE_REPLACEMENT_TYPE_P)
8588         (_AC_CHECK_TYPE_MAYBE_TYPE_P, AC_CHECK_MEMBER): Likewise.
8589         * lib/autotest/general.m4 (AT_INIT): Rename AT_TESTS_ALL as
8590         AT_tests_all for consistency.
8591         Set at_victims.
8592         (AT_VICTIMS): Similar to AT_KEYWORDS.
8593         (_AT_CLEANUP_FILE_IF): Use m4_match and m4_re_escape.
8595 2001-09-13  Akim Demaille  <akim@epita.fr>
8597         * lib/autotest/general.m4 (AT_INIT): Fix stupid bugs.
8599 2001-09-13  Akim Demaille  <akim@epita.fr>
8601         * lib/autotest/general.m4 (AT_INIT): Create and remove
8602         `$as_me.[0-9]+' instead of `debug-[0-9]+.sh', so that multiple
8603         test suites can cohabit.
8605 2001-09-13  Akim Demaille  <akim@epita.fr>
8607         * tests/mktests.sh: Don't output banners for empty test files.
8609 2001-09-13  Akim Demaille  <akim@epita.fr>
8611         Test suites can be run independently of configure.
8613         * lib/m4sugar/m4sh.m4 (_AS_ECHO, _AS_ECHO_N_PREPARE): New.
8614         * lib/autoconf/programs.m4 (_AC_PROG_ECHO): Remove.
8615         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Adjust: AC_SUBST
8616         ECHO_N etc.
8617         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): Don't ask for at_n
8618         and at_c.
8619         * lib/autotest/general.m4: Use ECHO_*.
8621 2001-09-13  Akim Demaille  <akim@epita.fr>
8623         * bin/ifnames.in: Rewrite in Perl.
8624         * configure.ac: Don't look for AWK.
8625         * tests/tools.at (AWK portability): Remove.
8626         (Syntax of the shell scripts): Don't check ifnames.
8627         (AT_CHECK_PERL_SYNTAX): New.
8628         (Syntax of the Perl scripts): Check ifnames.
8629         * tests/ifnames: New.
8631 2001-09-13  Akim Demaille  <akim@epita.fr>
8633         * lib/autotest/general.m4 (AT_INIT): Let --keywords also match
8634         test group titles.
8635         * tests/atspecific.m4 (AT_CHECK_AU_MACRO): AT_KEYWORDS(autoupdate).
8636         Remove all the other keywords.
8638 2001-09-10  Akim Demaille  <akim@epita.fr>
8640         * lib/autotest/general.m4 (AT_INIT): Remove the diversion HELP and
8641         SETUP: no longer used.
8642         Support -k, --keywords.
8643         <at_help>: Be `no', `short', or `long'.
8644         <at_help_all>: New variable.
8645         (AT_KEYWORDS): New.
8646         (AT_CLEANUP_FILE_IFELSE, AT_CLEANUP_FILE): Rename as...
8647         (_AT_CLEANUP_FILE_IF, _AT_CLEANUP_FILE): these.
8648         (_AT_CLEANUP_FILE_IF): Simplify the regexp.
8649         (AT_SETUP): Reset AT_line, AT_keywords, AT_description.
8650         No longer fill the HELP diversion.
8651         (AT_CLEANUP): Use them.
8652         * lib/m4sugar/m4sugar.m4 (m4_append): Support a separator.
8653         (m4_list_append): Remove.
8655         Spread a few keywords in the Autoconf test suite.
8657 2001-09-10  Akim Demaille  <akim@epita.fr>
8659         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): Don't pass
8660         PATH_SEPARATOR, let M4sh compute it.
8661         * lib/m4sugar/m4sh.m4 (_AS_PATH_SEPARATOR_PREPARE): New.
8662         * lib/autoconf/programs.m4 (AC_SHELL_PATH_WALK): Use PATH_SEPARATOR.
8663         Move to...
8664         * lib/m4sugar/m4sh.m4 (_AS_PATH_WALK): Here.
8665         Simplify when the path is not a literal.
8666         (AS_UNAME): Use it to report PATH.
8667         * lib/autoconf/general.m4 (_AC_INIT_PREPARE_FS_SEPARATORS): Remove.
8668         (_AC_INIT_DEFAULTS): AC_SUBST PATH_SEPARATOR.
8669         * lib/autoconf/programs.m4 (AC_PROG_INSTALL): Use _AS_PATH_WALK.
8670         * lib/autotest/general.m4 (AT_INIT): Use _AS_PATH_WALK to
8671         normalize the path, and to look for victims.
8672         * tests/semantics.at (AC_PATH_PROG & AC_PATH_PROGS)
8673         (AC_CHECK_PROG & AC_CHECK_PROGS): Use PATH_SEPARATOR.
8675 2001-09-07  Akim Demaille  <akim@epita.fr>
8677         * bin/autom4te.in (&handle_m4): `< /dev/null' so that GNU M4 1.5
8678         doesn't neutralize SIGINT, making autoconf etc. non interruptible.
8679         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): Move the package
8680         related variables into `at_package_*'.
8681         * lib/autotest/general.m4 (AT_VICTIMS): New.
8682         (AT_INIT): Adjust for stand-alone/embedded test suites.
8683         (AS_MESSAGE_LOG_FD): Define and use it.
8684         * tests/suite.at (AT_VICTIMS): Use it.
8685         * tests/tools.at (autoupdating AC_PREREQ): Don't depend upon
8686         at_version.
8688 2001-09-07  Akim Demaille  <akim@epita.fr>
8690         Move toward possibly stand-alone test suites.
8692         * lib/autotest/general.m4: Stop displaying srcdir everywhere as,
8693         in addition, it introduces useless differences in logs.
8694         (AT_INIT): Let atconfig and atlocal be both optional.
8695         Adjust PATH computation.
8696         * lib/m4sugar/m4sh.m4 (AS_UNAME): More readable display of PATH.
8698 2001-09-07  Akim Demaille  <akim@epita.fr>
8700         * lib/autoconf/Makefile.am (autoconf.m4f): Depends upon
8701         m4sugar/version.m4.
8703 2001-09-05  Akim Demaille  <akim@epita.fr>
8705         * lib/autoconf/c.m4 (AC_LANG_BOOL_COMPILE_TRY(C)): Use `_array_'
8706         to avoid GCC warnings.
8707         From Uwe Seimet.
8709 2001-09-05  Akim Demaille  <akim@epita.fr>
8711         * bin/autom4te.in: --language is -l, not -s.
8713 2001-09-05  Akim Demaille  <akim@epita.fr>
8715         Be ready to handle filenames as stupid as `dnl.at', for if even
8716         the maintainer is dumb enough to do that...
8718         * lib/autotest/general.m4 (AT_SETUP, AT_LINE): Demonstrates your
8719         excellence in M4 quotation: consider `__file__' is active.
8721         And BTW, when invoking m4, pass the --include in the right order:
8722         the wrong one.
8724         * bin/autom4te.in, bin/autoupdate.in: Use reverse when kingtal to
8725         4m.
8727 2001-09-05  Akim Demaille  <akim@epita.fr>
8729         * lib/Autom4te/XFile.pm: New lib file.
8730         * bin/autoupdate.in, bin/autoscan.pl, bin/autom4te.in,
8731         * bin/autoheader.in: Use it.
8733 2001-09-05  Akim Demaille  <akim@epita.fr>
8735         * bin/autoupdate.in (&handle_m4_macros) <unm4.m4>: Undefine iff
8736         defined.
8738 2001-09-05  Akim Demaille  <akim@epita.fr>
8740         * lib/Autom4te/General.pm (&getopt): Work around the `-' Getopt bug.
8741         * bin/autoheader.in, bin/autoupdate.in (&parse_args): Adjust.
8743         * bin/autoscan.in: Use `getopt' and `find_files' etc.
8744         Add -I, --include support.
8745         * doc/autoconf.texi (autoscan Invocation): Adjust.
8747 2001-09-05  Akim Demaille  <akim@epita.fr>
8749         CVS GNU M4 doesn't like `undefine(undefined)'.
8751         * bin/autoupdate.in (&handle_m4_macros, &handle_autoconf_macros):
8752         New, extracted from main.
8753         Use IO::File wherever possible.
8754         (input.m4): Be constant, use -I instead of hard coding $tmp.
8755         Therefore be a quoted heredoc.
8756         Don't invoke `_au_disable', since ac was not loaded, but just
8757         `unm4.m4'.
8759 2001-08-31  Akim Demaille  <akim@epita.fr>
8761         Version 2.52d.
8763 2001-08-31  Akim Demaille  <akim@epita.fr>
8765         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Fix the
8766         previous patch.
8767         * tests/atspecific.m4 (AT_CHECK_AUTOHEADER): Can create `config.hin~'.
8769 2001-08-31  Akim Demaille  <akim@epita.fr>
8771         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): DU 5.0 has
8772         serious problems handling heredocs in heredocs.
8773         Reported by Nicolas Joly.
8775 2001-08-31  Akim Demaille  <akim@epita.fr>
8777         * doc/autoconf.texi: Don't promote non `m4_*' M4 macros.
8778         (Making testsuite Scripts): Update.
8780 2001-08-31  Akim Demaille  <akim@epita.fr>
8782         * lib/Makefile.am (CLEANFILES): Add autom4te.cfg.
8784 2001-08-31  Akim Demaille  <akim@epita.fr>
8786         * doc/autoconf.texi (Quadrigraphs): Document `@&t@'.
8787         (testsuite Scripts): There is no such thing as `atconfig.in'.
8788         And actually one diagram is missing: test suite runtime.
8790 2001-08-31  Akim Demaille  <akim@epita.fr>
8792         * lib/Autom4te/General.pm (&find_file): Browse the includes in the
8793         inverse order.
8795 2001-08-31  Akim Demaille  <akim@epita.fr>
8797         * bin/autoupdate.in (@include): `installcheck' revealed the path
8798         to m4sugar was lacking!
8800 2001-08-31  Akim Demaille  <akim@epita.fr>
8802         * man/Makefile.am (.x.1): We really have to pass
8803         autom4te_perllibdir.
8805 2001-08-31  Akim Demaille  <akim@epita.fr>
8807         * lib/autotest/general.m4 (AT_INIT): Don't pass all the args to
8808         debug scripts, in particular passing explicitly listed tests to
8809         run is stupid.
8811 2001-08-31  Akim Demaille  <akim@epita.fr>
8813         * bin/autom4te.in (&parse_args): Strip `.' from `@include'.
8814         * bin/autoupdate.in: Use --include, -I, and --force, -f, too.
8815         Use directly autom4te, not autoconf.
8816         * tests/autoupdate: $top_srcdir/lib is needed too for melt files.
8818 2001-08-31  Akim Demaille  <akim@epita.fr>
8820         * tests/semantics.at (AC_C_BIGENDIAN): Missing eol.
8821         * bin/autoheader.in (%symbol): Strip arguments of macros.
8823 2001-08-31  Akim Demaille  <akim@epita.fr>
8825         * doc/autoconf.texi: Catch up -I, --include changes.
8827 2001-08-31  Akim Demaille  <akim@epita.fr>
8829         * bin/autom4te.in (&parse_args): Die on unknown languages.
8830         * bin/autoheader.in: Run directly autom4te --mode=autoconf, no
8831         need for autoconf.
8832         Promote --include over --macrodir and other obsolete options.
8834 2001-08-31  Akim Demaille  <akim@epita.fr>
8836         * lib/Autom4te/General.pm ($version, $help, &getopt): New.
8837         * bin/autoupdate.in, bin/autoheader.in, bin/autom4te.in: Use them.
8838         * bin/autom4te.in ($autoconf): Pass --force.
8839         `print $out' doesn't print `$_' but `$out'.
8840         * tests/tools.at (Syntax of the Perl scripts): Pass the lib dir.
8841         (autoheader): Pass --force since the test suite goes too fast for
8842         the time stamps.
8843         Adjust to the new autoheader messages.
8845 2001-08-31  Akim Demaille  <akim@epita.fr>
8847         * bin/autoheader.in: Handle the acconfig.h etc. junk files.
8848         Check the completeness of the #template.
8849         * lib/Autom4te/General.pm (&update_file): s/remove/unlink/.
8850         * tests/semantics.at (AC_C_BIGENDIAN): Adjust AT_CHECK_AUTOHEADER
8851         invocation.
8853 2001-08-31  Akim Demaille  <akim@epita.fr>
8855         * lib/Autom4te/General.pm (&find_file, &update_file): New.
8856         * bin/autoupdate.in, bin/autoheader.in: Adjust.
8857         Drop AC_MACRODIR dead for real.
8858         * tests/atspecific.m4 (AT_CHECK_AUTOHEADER): Now autoheader says
8859         `autoheader: `config.hin' is created'.
8860         * tests/tools.at (Syntax of the Perl scripts): Check autoheader.
8862 2001-08-31  Akim Demaille  <akim@epita.fr>
8864         * bin/autoheader.in: Rewrite in Perl.
8865         * tests/autoheader: Adjust.
8867 2001-08-31  Akim Demaille  <akim@epita.fr>
8869         * bin/autoconf.in (--include, -I): New option.
8870         Map --localdir, --autoconf-dir onto it.
8871         Forward autom4te's options instead of interpreting them.
8872         * bin/autoconf.in, bin/autoheader.in (AC_MACRODIR, autoconf_dir):
8873         There is no such envvar since the inception of autom4te.cfg.
8874         * bin/autom4te.in (&parse_args): Uniquify `@include'.
8875         * bin/autoupdate.in: Adjust, and perform more control.
8876         * tests/atspecific.m4 (AT_CHECK_AUTOCONF): Adjust.
8877         * tests/autoconf: Dittowise.
8879 2001-08-31  Akim Demaille  <akim@epita.fr>
8881         * bin/autoconf.in: Don't bother with `acsite.m4' and `aclocal.m4'.
8882         * bin/autom4te.in (&find_file): Support `FILE?' standing for
8883         optionally `FILE'.
8884         Use -e, not -f, since /dev/null for instance is OK.
8885         (&parse_args): Adjust.
8886         * lib/autom4te.in (Autoconf): Add `acsite.m4?' and `aclocal.m4?'.
8888 2001-08-31  Akim Demaille  <akim@epita.fr>
8890         * configure.ac: Also find tested executables in bin.
8891         * bin/autoconf.in, bin/autoheader.in, bin/autoreconf.in,
8892         * bin/autoscan.in, autoupdate.in: Use exclusively the name of the
8893         installed peer executables, only PATH is allowed to resolve it.
8894         Pass `autoconf_dir' via options, not via invisible envvars.
8895         * lib/Autom4te/General.pm (&find_peer): Remove.
8896         * lib/autotest/general.m4 (AT_INIT): `AUTOTEST_PATH=a:b' gives
8897         `abuild:asrc:bbuild:bsrc', not `abuild:bbuild:asrc:bsrc'.
8898         * man/Makefile.am: Let help2man rely on PATH instead of trying to
8899         find the executables for it.
8900         * tests/Makefile.am: Major cleanup.  Too lazy to document...
8901         * tests/atlocal.in: Remove all the obscure envvar manipulations.
8902         We only need PERL.
8903         * tests/atspecific.m4, tests/tools.at: Passing --localdir is
8904         indeed related to running the test suite, while passing
8905         --autoconf-dir and others is related to running non installed
8906         Autoconf executables.  So don't do that, leave it to...
8907         * tests/autoconf, tests/autoheader, tests/autom4te, tests/autoupdate,
8908         * tests/autoscan: New.
8909         * tests/atspecific.m4 (AT_CHECK_M4SUGAR, AT_CHECK_M4SH): Don't
8910         refer to library files: rely on --language.
8912 2001-08-29  Akim Demaille  <akim@epita.fr>
8914         * bin/autom4te.in, lib/autom4te.in, bin/autoconf.in:
8915         s/--set/--language/.
8917 2001-08-29  Akim Demaille  <akim@epita.fr>
8919         * doc/autoconf.texi: Strip the @nodes.
8920         Suggested by Paul Eggert.
8921         (Initializing configure): Typo.
8923 2001-08-29  Akim Demaille  <akim@epita.fr>
8925         * bin/autom4te.in (&handle_output): s/@__@/@&t@/.
8926         Suggested by Paul Eggert.
8928 2001-08-29  Akim Demaille  <akim@epita.fr>
8930         * Makefile.maint (do-po-update): Wget refuses to overwrite files:
8931         download in a tmp dir.
8933 2001-08-29  Akim Demaille  <akim@epita.fr>
8935         * lib/autotest/general.m4: s/AT-devnull/devnull/ since there are
8936         case insensitive OSes out there :(
8937         From Tim Van Holder.
8939 2001-08-29  Akim Demaille  <akim@epita.fr>
8941         * lib/autom4te.in: New.
8942         * lib/Makefile.am (edit, autom4te.cfg): New.
8943         * bin/autom4te.in (BEGIN): Simplify.
8944         Rely on `AC_MACRODIR' in addition of `autom4te_perllibdir'.
8945         (&load_configuration): New.  Use it.
8946         (&parse_args): Support --mode, --set, and --melt.
8947         * bin/autoconf.in: Simplify and adjust.
8948         * tests/Makefile.am (AUTOMAKE): Use --set.
8949         * tests/atlocal.in: Adjust.
8950         * BUGS: distcheck and check are weak.
8952 2001-08-29  Akim Demaille  <akim@epita.fr>
8954         * lib/autotest/general.m4: Use
8955                 foo=`(command) 2>/dev/null`
8956         not
8957                 foo=`command` 2>/dev/null
8958         (at-devnull): Rename as...
8959         (AT-devnull): this.
8960         (--clean): Remove AT-* files too.
8961         * doc/autoconf.texi (Limitations of Usual Tools): Document `date'.
8962         Reported by Nicolas Joly.
8964 2001-08-28  Akim Demaille  <akim@epita.fr>
8966         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Don't use single
8967         quotes inside single quotes.
8968         Reported by Nicolas Joly.
8970 2001-08-28  Kevin Ryde  <user42@zip.com.au>
8972         * doc/autoconf.texi (Function Portability): Mention C right shifts.
8974 2001-08-27  Tim Van Holder  <tim.van.holder@pandora.be>
8976         * lib/autotest/general.m4: Reword some messages.
8977         (AT_INIT): Check for the `times' builtin before using it.
8978         Support test ranges as arguments to the testsuite.
8979         Have -e imply -d as the help text suggested.
8981 2001-08-27  Akim Demaille  <akim@epita.fr>
8983         * Makefile.maint: Formatting changes.
8984         (do-po-update, po-update, cvs-update, update): New targets.
8985         (AMTAR): Remove.
8987 2001-08-27  Akim Demaille  <akim@epita.fr>
8989         * lib/autotest/general.m4 (AT_INIT) <at_cmd_line>: Remove.
8990         <at_cmd_line>: New.
8991         Pass it to debug-*.sh scripts.
8992         <AUTOTEST_PATH>: May contain absolute dir names.
8994 2001-08-27  Akim Demaille  <akim@epita.fr>
8996         * lib/autotest/general.m4 (AT_INIT): Log the command line.
8997         Support `VAR=VAL' as arguments.
8998         Compute PATH _after_ the options processing, so that AUTOTEST_PATH
8999         may be set via the command line.
9001 2001-08-27  Akim Demaille  <akim@epita.fr>
9003         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): $2 defaults to $1.
9004         * lib/autotest/autotest.m4 (AT_INIT): Expand AUTOTEST_PATH into
9005         first the build dirs, then the src dirs.
9006         * configure.ac (AC_CONFIG_TESTDIR): Adjust.
9008 2001-08-27  Akim Demaille  <akim@epita.fr>
9010         * lib/autotest/general.m4 (AT_INIT): Output the definition of
9011         at_data_files earlier.
9012         (--clean, -c): New option.
9013         * tests/Makefile.am: Use this option.
9015 2001-08-27  Akim Demaille  <akim@epita.fr>
9017         * lib/autoconf/status.m4 (_AC_SRCPATHS): Rename `ac_dots' as
9018         `ac_top_builddir' to mimic Automake's vocabulary, which much more
9019         readable.
9020         Adjust callers.
9021         * doc/autoconf.texi (Configuration Actions): Document the vars
9022         available in commands.
9023         Emphasize the risks of collisions in init-cmds.
9025 2001-08-27  Akim Demaille  <akim@epita.fr>
9027         * doc/autoconf.texi (Input) <AC_INIT>: Move to..
9028         (Initializing configure): this new node.
9030 2001-08-27  Akim Demaille  <akim@epita.fr>
9032         * Makefile.am (EXTRA_DIST): INSTALL.txt is a dead hack.
9034 2001-08-27  Akim Demaille  <akim@epita.fr>
9036         * m4/atconfig.m4 (AT_CONFIG): Remove, replaced by...
9037         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): this.
9038         New file.
9039         * m4/Makefile.am (EXTRA_DIST): Oops, adjust...
9041 2001-08-27  Akim Demaille  <akim@epita.fr>
9043         * lib/autoconf/general.m4 (AU_DEFINE, AU_DEFUN, AU_ALIAS): Move
9044         to...
9045         * lib/autoconf/autoheader.m4: this new file.
9046         * lib/autoconf/general.m4 (AH_OUTPUT, AH_VERBATIM)
9047         (_AH_VERBATIM_OLD, AH_TEMPLATE, _AH_TEMPLATE_OLD, AH_TOP, AH_BOTTOM):
9048         Move to...
9049         * lib/autoconf/autoupdate.m4: this new file.
9051 2001-08-27  Akim Demaille  <akim@epita.fr>
9053         * lib/autoconf/status.m4 (_AC_SRCPATHS): New.
9054         (_AC_OUTPUT_LINKS, _AC_OUTPUT_FILES, _AC_OUTPUT_SUBDIRS): Use it.
9055         Standardize the var names (ac_sub_srcdir -> ac_srcdir, ac_subdir
9056         -> ac_dir).
9057         (_AC_OUTPUT_HEADERS): AS_DIRNAME always return a dir name.
9058         * lib/autoconf/general.m4 (_AC_INIT_HELP): Ditto.
9060 2001-08-27  Akim Demaille  <akim@epita.fr>
9062         * lib/autoconf/autoconf.m4 (AC_CONFIG_COMMANDS)
9063         (AC_CONFIG_COMMANDS_POST, AC_CONFIG_COMMANDS_PRE, AC_CONFIG_FILES)
9064         (AC_CONFIG_HEADER, AC_CONFIG_HEADERS, AC_CONFIG_IF_MEMBER)
9065         (AC_CONFIG_LINKS, AC_CONFIG_SUBDIRS, AC_FILE_DEPENDENCY_TRACE)
9066         (AC_LINK_FILES, AC_LIST_COMMANDS, AC_LIST_COMMANDS_COMMANDS)
9067         (AC_LIST_FILES, AC_LIST_FILES_COMMANDS, AC_LIST_HEADERS)
9068         (AC_LIST_HEADERS_COMMANDS, AC_LIST_LINKS, AC_LIST_LINKS_COMMANDS)
9069         (AC_OUTPUT, AC_OUTPUT_COMMANDS, AC_OUTPUT_COMMANDS_POST)
9070         (AC_OUTPUT_COMMANDS_PRE, AC_OUTPUT_MAKE_DEFS)
9071         (_AC_CONFIG_COMMANDS_INIT, _AC_CONFIG_DEPENDENCIES)
9072         (_AC_CONFIG_DEPENDENCY, _AC_CONFIG_UNIQUE, _AC_LINK_FILES_CNT)
9073         (_AC_LIST_SUBDIRS, _AC_OUTPUT_COMMANDS, _AC_OUTPUT_COMMANDS_CNT)
9074         (_AC_OUTPUT_COMMANDS_INIT, _AC_OUTPUT_CONFIG_STATUS)
9075         (_AC_OUTPUT_FILES, _AC_OUTPUT_HEADERS, _AC_OUTPUT_LINKS)
9076         (_AC_OUTPUT_SUBDIRS): Move to...
9077         * lib/autoconf/status.m4: this new file.
9078         * lib/autoconf/general.m4, lib/autoconf/Makefile.am: Adjust.
9079         * tests/Makefile.am, tests/suite.at: Adjust.
9081 2001-08-27  Akim Demaille  <akim@epita.fr>
9083         Automake 1.5.
9085         * Makefile.am (AUTOMAKE_OPTIONS): Add 1.5 and dist-bzip2.
9086         (AMTAR): Help automake define it.
9087         (INSTALL, install-data-hook): The INSTALL.txt trick is no longer
9088         needed, 1.5 can have a macro and a target with the same name.
9089         * m4/auxdir.m4, m4/cond.m4, m4/depend.m4, m4/install-sh.m4,
9090         * m4/strip.m4: New.
9091         * m4/init.m4, m4/sanity.m4: Update.
9092         * doc/Makefile.am (CLEANFILES): 1.5 knows the texi2dvi files.
9093         * lib/autoconf/Makefile.am, lib/autotest/Makefile.am,
9094         * lib/m4sugar/Makefile.am, lib/autoscan/Makefile.am,
9095         * lib/Autom4te/Makefile.am, man/Makefile.am: Use dist/nodist.
9097 2001-08-27  Akim Demaille  <akim@epita.fr>
9099         Provide a mean to ``AC_PREREQ'' for M4sugar, M4sh and Autotest.
9101         * lib/autoconf/version.in: Remove.
9102         * lib/m4sugar/version.in: New.
9103         * lib/m4sugar/m4sugar.m4 (m4_acversion, m4_version_prereq): New.
9104         Adjust callers.
9105         * bin/autoupdate.in: Distinguish M4sugar vs. Autoconf macros by
9106         the name of the directory they're in, instead of the filename,
9107         since version.m4 is now in m4sugar, but m4_acversion must not be
9108         classified as an Autoconf macro.
9109         ($input_m4): Don't qualify the path to m4sugar.
9110         Rather, pass autoconf_dir to m4.
9111         * tests/Makefile.am (testsuite): Remove -I top_srcdir, unneeded.
9112         * tests/suite.at: Require 2.52c.
9114 2001-08-27  Akim Demaille  <akim@epita.fr>
9116         testsuite.log should include config.log.
9118         * lib/autotest/autotest.m4: New.
9119         * lib/autotest/general.m4, tests/atspecific.m4: Adjust.
9120         * tests/suite.at : Adjust.
9121         (AT_INIT): Log config.log.
9122         * lib/m4sugar/m4sugar.m4 (m4_text_box): New.
9123         * lib/m4sugar/m4sh.m4 (_AS_BOX_LITERAL): Adjust.
9124         * lib/autoconf/general.m4 (_AC_INIT_CONFIG_LOG): Use them.
9125         (_AC_INIT_PREPARE): Fix the incredibly messy and buggy completion
9126         of config.log on traps.
9127         (_AC_OUTPUT_CONFIG_STATUS): Use AS_BOX.
9128         Use consistently `_ACEOF' for configure's here docs, and `_CSEOF'
9129         for config.status'.
9130         Open the log as soon as possible.
9131         Use the same log introduction as configure's.
9133 2001-08-22  Paul Eggert  <eggert@twinsun.com>
9135         * doc/autoconf.texi (Indices): New node.
9136         Move indices out of the top level menu and into this submenu.
9138 2001-08-22  Akim Demaille  <akim@epita.fr>
9140         * lib/autoconf/programs.m4 (_AC_PROG_LEX_YYTEXT_DECL): Use
9141         AC_TRY_COMMAND.
9142         (AC_DECL_YYTEXT): Fix the previous patch: it points to AC_PROG_LEX.
9144 2001-08-22  Akim Demaille  <akim@epita.fr>
9146         * lib/autoconf/general.m4 (AC_SHELL_PATH_WALK, AC_CHECK_PROG)
9147         (AC_CHECK_PROGS, AC_PATH_PROG, AC_PATH_PROGS, AC_CHECK_TOOL_PREFIX)
9148         (AC_PATH_TOOL, AC_CHECK_TOOL, AC_CHECK_TOOLS): Move to...
9149         * lib/autoconf/programs.m4: here.
9150         * lib/autoconf/specific.m4 (_AC_PROG_ECHO, AC_PROG_MAKE_SET)
9151         (AC_PROG_RANLIB, AC_PROG_YACC, AC_PROG_LEX, _AC_DECL_YYTEXT)
9152         (AC_PROG_INSTALL, AC_PROG_LN_S, AC_RSH): Move to...
9153         * lib/autoconf/programs.m4: here.
9154         (_AC_DECL_YYTEXT): Rename as...
9155         (_AC_PROG_LEX_YYTEXT_DECL): this.
9156         * lib/autoconf/autoconf.m4, lib/autoconf/Makefile.am
9157         * tests/Makefile.am, tests/suite.am: Adjust.
9159 2001-08-22  Akim Demaille  <akim@epita.fr>
9161         * lib/autoconf/general.m4 (AC_LIST_MEMBER_OF, AC_LINKER_OPTION):
9162         Move to...
9163         * lib/autoconf/fortran.m4 (_AC_LIST_MEMBER_IF, _AC_LINKER_OPTION):
9164         here.
9165         * lib/autoconf/general.m4 (AC_TRY_LINK_FUNC): Move to...
9166         * lib/autoconf/functions.m4: here.
9167         * lib/autoconf/general.m4 (AC_SEARCH_LIBS, AC_CHECK_LIB)
9168         (AH_CHECK_LIB): Move to...
9169         * lib/autoconf/libs: this new file.
9170         * lib/autoconf/specific.m4 (_AC_PATH_X_XMKMF, _AC_PATH_X_DIRECT)
9171         (_AC_PATH_X, AC_PATH_X, AC_PATH_XTRA): Move to...
9172         * lib/autoconf/libs.m4: here.
9173         * lib/autoconf/autoconf.m4, lib/autoconf/Makefile.am: Adjust.
9175 2001-08-22  Akim Demaille  <akim@epita.fr>
9177         * lib/m4sugar/m4sh.m4 (AS_MKDIR_P): Fail if fails.
9178         * lib/autoconf/general.m4 (_AC_OUTPUT_SUBDIRS): Adjust.
9179         (AC_SITE_LOAD): Better logging of config.site.
9181 2001-08-20  Akim Demaille  <akim@epita.fr>
9183         * configure.ac (AT_CONFIG): Fix the path.
9184         * m4/atconfig.m4 (AT_CONFIG): Don't use EOF but ATEOF so that 2.52
9185         can be used.
9187 2001-08-20  Alexandre Duret-Lutz  <duret_g@epita.fr>
9189         * lib/autoconf/c.m4 (AC_C_BIGENDIAN): Prepare the cross-compile
9190         program with AC_LANG_PROGRAM before feeding it to
9191         AC_COMPILE_IFELSE.  Cleanup grep usage.
9193 2001-08-20  Akim Demaille  <akim@epita.fr>
9195         * ChangeLog, ChangeLog.0, ChangeLog.1, ChangeLog.2, AUTHORS, BUGS,
9196         * NEWS, README, README-alpha, TODO, tests/README: This package is
9197         `Autoconf', not `autoconf' (the executable).
9199 2001-08-20  Akim Demaille  <akim@epita.fr>
9201         Info readers seem to need `Index' in the index node title :(
9203         * doc/autoconf.texi: Reverse the 2001-08-15 change which
9204         simplified index node names.
9206 2001-08-20  Akim Demaille  <akim@epita.fr>
9208         * lib/autoconf/general.m4 (_AC_INIT_PACKAGE): Warn if the
9209         arguments are not literals.
9210         * doc/autoconf.texi (Input) <AC_INIT>: Arguments must be literals.
9211         Specify the output variables, and macros defined.
9213 2001-08-20  Akim Demaille  <akim@epita.fr>
9215         * doc/autoconf.texi (Examining Declarations) <AC_TRY_CPP>:
9216         (Examining Syntax) <AC_TRY_COMPILE>
9217         (Examining Libraries) <AC_TRY_LINK>
9218         (Test Programs) <AC_TRY_RUN>: These macros double quote some of
9219         their arguments.
9220         Reported by Werner Lemberg.
9222 2001-08-20  Akim Demaille  <akim@epita.fr>
9224         * lib/autotest/general.m4 (AT_INIT): Compute top_builddir,
9225         top_srcdir and srcdir from at_topbuild_2_topsrc and at_testdir.
9226         Load atlocal late enough to dump it in the log.
9227         * m4/atconfig.m4 (AT_CONFIG): Pass them to atconfig.
9229 2001-08-20  Akim Demaille  <akim@epita.fr>
9231         * tests/torture.at (Configuring subdirectories): New test.
9232         * lib/autoconf/general.m4 (_AC_INIT_SRCDIR): Say what you are
9233         looking for.
9234         * m4/atconfig.m4: Be sure the let $[0] be expandable.
9235         (top_srcdir): Fix its computation.
9237 2001-08-20  Akim Demaille  <akim@epita.fr>
9239         * lib/autoconf/general.m4 (_AC_OUTPUT_COMMANDS): Say what you do.
9240         * m4/atconfig.m4 (AT_CONFIG): $1 is now the directory where the
9241         test suite lives.
9242         Create `atconfig' automagically.
9243         Configure atlocal.in if present.
9244         * tests/atconfig.in: Remove.
9245         * tests/atlocal.in: New.
9246         * tests/Makefile.am: Adjust.
9248 2001-08-20  Akim Demaille  <akim@epita.fr>
9250         Huh!?!?!  There are still some user EOF tags used, which prevents
9251         their use in AC_CONFIG_COMMANDS for instance...
9253         * lib/autoconf/general.m4, lib/autoconf/specific.m4,
9254         * lib/autotest/general.m4: Rename the EOF tags as `_ACEOF',
9255         `_CSEOF', or `_ATEOF', as appropriate.
9256         * lib/m4sugar/Makefile.am, lib/autoconf/Makefile.am,
9257         * lib/autotest/Makefile.am (check-local): Enforce this constraint.
9259 2001-08-20  Akim Demaille  <akim@epita.fr>
9261         * tests/base.at, tests/m4sh.at, tests/m4sugar.at,
9262         * tests/semantics.at, tests/tools.at, tests/torture.at:
9263         s/^AT_DATA\(([^][]+),/AT_DATA([$1],/.
9265 2001-08-20  Akim Demaille  <akim@epita.fr>
9267         Autotest invokes M4sh's initialization.
9269         * lib/autotest/general.m4: Adjust the diversion names.
9270         (AT_INIT): Run AS_INIT.
9271         Use the BINSH diversion to invoke /bin/sh.
9272         * tests/base.at, tests/m4sh.at, tests/m4sugar.at, tests/tools.at:
9273         * tests/torture.at: Respect M4sugar and M4sh macro name spaces.
9275 2001-08-20  Akim Demaille  <akim@epita.fr>
9277         Let M4sh have its own diversions.
9279         * lib/autoconf/general.m4 (_m4_divert(BINSH), _m4_divert(REVISION))
9280         (_m4_divert(NOTICE)): Rename as...
9281         * lib/m4sugar/m4msh.m4 (_m4_divert(BINSH), _m4_divert(HEADER-REVISION))
9282         (_m4_divert(HEADER-COMMENT)): these.
9283         (_m4_divert(HEADER-COPYRIGHT), _m4_divert(HEADER-COPYRIGHT)): New.
9284         (_m4_divert(NOTICE)): New, for Libtool.
9285         * lib/autoconf/general.m4 (_m4_divert(PREPARE)): Remove, replaced
9286         long ago with `_m4_divert(GROW)'.
9287         (AC_COPYRIGHT, AC_REVISION, _AC_INIT_NOTICE): Adjust.
9289 2001-08-20  Akim Demaille  <akim@epita.fr>
9291         * tests/base.at, tests/compile.at, tests/foreign.at,
9292         * tests/m4sh.at, tests/m4sugar.at, tests/mktests.sh,
9293         * tests/semantics.at, tests/suite.at, tests/tools.at,
9294         * tests/torture.at: Ask Autotest mode, not Autoconf mode.
9296 2001-08-20  Akim Demaille  <akim@epita.fr>
9298         * bin/autom4te.in (handle_output): Handle @__@.
9300 2001-08-20  Akim Demaille  <akim@epita.fr>
9302         * lib/autoconf/autoconf.m4, lib/autoconf/oldnames.m4,
9303         * lib/autotest/general.m4: Adjust the license.
9305 2001-08-17  Paul Eggert  <eggert@twinsun.com>
9307         * doc/autoconf.texi (Function Portability): Mention snprintf,
9308         following up on a suggestion by Kevin Ryde.
9310 2001-08-17  Akim Demaille  <akim@epita.fr>
9312         * doc/install.texi, doc/autoconf.texi: Use `autoconf', not
9313         `autoconf_manual', as texinfo.tex 2001-06-21.10 chokes on it.
9315 2001-08-17  Akim Demaille  <akim@epita.fr>
9317         * lib/autotest/general.m4 (AT_INIT): Refer to `$as_me.log', not
9318         `$0.log' as for projects where testsuite is in src, we'd have
9319         testsuite.log created in src.
9321 2001-08-17  Akim Demaille  <akim@epita.fr>
9323         * bin/autom4te.in (&parse_args): Recognize --normalize.
9325 2001-08-17  Akim Demaille  <akim@epita.fr>
9327         Start implementing the AC_CHECK_HEADER transition scheme.
9329         * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_NEW)
9330         (_AC_CHECK_HEADER_OLD, _AC_CHECK_HEADER_MONGREL): New.
9331         (AC_CHECK_HEADER): Use them.
9333 2001-08-17  Akim Demaille  <akim@epita.fr>
9335         * doc/autoconf.texi: Work around Texinfo buglets.
9336         (Transformation Rules): One example is enough, users are expected
9337         to have their brains on. And BTW, use DESTDIR.
9338         (dvar): New macro.  Use it.
9340 2001-08-17  Akim Demaille  <akim@epita.fr>
9342         * doc/autoconf.texi (Writing testsuite.at) <AT_CHECK>: Complete.
9343         * lib/autotest/general.m4 (AT_INIT): Use the relative dir when
9344         looking for ChangeLogs.
9346 2001-08-17  Akim Demaille  <akim@epita.fr>
9348         * bin/autom4te.in: --normalize is a new option.
9349         * bin/autoconf.in: Use it.
9351 2001-08-17  Akim Demaille  <akim@epita.fr>
9353         * bin/Makefile.am, lib/Autom4te/Makefile.am, lib/autoconf/Makefile.am
9354         * lib/autotest/Makefile.am, lib/m4sugar/Makefile.am: Add TAGS support.
9356 2001-08-16  Paul Eggert  <eggert@twinsun.com>
9358         * doc/autoconf.texi, doc/install.texi: Put copyright notice at
9359         start, not at end.
9361 2001-08-15  Akim Demaille  <akim@epita.fr>
9363         * doc/Makefile.am (fu): New index, can't use fn because of defmac.
9364         Use it.
9366 2001-08-15  Akim Demaille  <akim@epita.fr>
9368         * doc/autoconf.texi (pr): New index.
9369         (prindex, findex): Use, merge, and output them.
9370         (Environment Variable Index, Output Variable Index)
9371         (Preprocessor Symbol Index, Autoconf Macro Index, M4 Macro Index)
9372         (Autotest Macro Index): Rename as...
9373         (Environment Variables, Output Variables,Preprocessor Symbols)
9374         (Autoconf Macros, M4 Macros, Autotest Macros): these.
9375         * doc/install.texi: Use @command.
9376         (Environment Variables): Rename as...
9377         (Defining Variables): this.
9379 2001-08-15  Akim Demaille  <akim@epita.fr>
9381         * doc/autoconf.texi (Function Portability): sprintf's return
9382         value.
9383         From Kevin Ryde.
9385 2001-08-15  Akim Demaille  <akim@epita.fr>
9387         * Makefile.maint (CVS): New.
9388         (local-check): Run changelog-check. last.
9389         (alpha): Don't depend upon local-check, since...
9390         (cvs-dist): depends upon it.
9392 2001-08-15  Tim Van Holder  <tim.van.holder@pandora.be>
9394         * tests/Makefile.am: Use a clean-local rule to remove
9395         autom4te.cache (it's a directory, not a file.
9396         * Makefile.am: Ditto (but maintainer-clean-local).
9398 2001-08-15  Akim Demaille  <akim@epita.fr>
9400         * bin/autom4te.in (@m4_warning): New.
9401         (&handle_m4): Use it.
9402         * tests/m4sugar.at (m4_warn): Pass `-f' to autom4te to ensure the
9403         warnings are issued at each run.
9404         * tests/atspecific.m4 (AT_CHECK_M4SUGAR, AT_CHECK_M4SH): M4sugar
9405         is in the src tree.
9407 2001-08-15  Akim Demaille  <akim@epita.fr>
9409         * tests/atspecific.m4 (AT_CHECK_AUTOUPDATE): Perl is now required:
9410         don't waste time running `autoupdate --version' works.
9411         * tests/tools.at (autoupdating AC_PREREQ): Likewise.
9413 2001-08-13  Akim Demaille  <akim@epita.fr>
9415         * doc/autoconf.texi (ma): Rename this index as...
9416         (ac): this.
9418 2001-08-13  Akim Demaille  <akim@epita.fr>
9420         * Makefile.am: Remove dead code and dead comments.
9421         (pdf, html): New targets.
9422         * doc/autoconf.texi (Using Autotest): New chapter.
9423         * doc/Makefile.am (pdf): New targets.
9424         (CLEANFILES): Adjust.
9426 2001-08-13  Akim Demaille  <akim@epita.fr>
9428         * lib/autotest/general.m4 (AT_INIT): Log the start/stop dates and
9429         duration of the test suite.
9431 2001-08-12  Alexandre Duret-Lutz  <duret_g@epita.fr>
9433         * tests/semantics.at (AC_C_BIGENDIAN): Explicitelly save and load
9434         endianness for comparison instead of relying on AT_CHECK_ENV.
9436 2001-08-11  Paul Eggert  <eggert@twinsun.com>
9438         * doc/autoconf.texi, doc/install.texi: Add a copyright notice
9439         to the INSTALL file.
9441 2001-08-11  Paul Eggert  <eggert@twinsun.com>
9443         * NEWS: The autoconf manual now is distributed under the terms
9444         of the GNU Free Documentation License.
9446         * doc/autoconf.texi: Switch from old style copyright notice to FDL.
9447         Add an appendix "Copying This Manual" for the FDL.
9449         * doc/fdl.texi: New file, from
9450         <http://www.gnu.org/licenses/fdl.texi>.
9452         * doc/Makefile.am (autoconf_TEXINFOS): Add fdl.texi.
9454 2001-08-10  Paul Eggert  <eggert@twinsun.com>
9456         * AUTHORS, BUGS, ChangeLog, ChangeLog.0, ChangeLog.1,
9457         ChangeLog.2, GNUmakefile, Makefile.maint, NEWS, README,
9458         README-alpha, TODO, configure.ac, lib/autoconf/Makefile.am,
9459         m4/atconfig.m4, m4/init.m4, m4/m4.m4, m4/missing.m4,
9460         m4/sanity.m4, tests/README, tests/aclocal.m4,
9461         tests/atspecific.m4, tests/base.at, tests/compile.at,
9462         tests/foreign.at, tests/m4sh.at, tests/m4sugar.at,
9463         tests/semantics.at, tests/suite.at, tests/tools.at,
9464         tests/torture.at: Add copyright notice.
9466         * tests/mktests.sh: Update year in copyright notice.
9468 2001-08-12  Alexandre Duret-Lutz  <duret_g@epita.fr>
9470         * tests/semantics.at (AC_C_BIGENDIAN): New test.
9472 2001-08-11  Alexandre Duret-Lutz  <duret_g@epita.fr>
9474         * lib/autoconf/c.m4 (AC_C_BIGENDIAN): Handle ACTION-IF-TRUE,
9475         ACTION-IF-FALSE, and ACTION-IF-UNKNOWN.
9476         * doc/autoconf.texi (C Compiler Characteristics): Update
9477         documentation for AC_C_BIGENDIAN.
9479 2001-08-11  Alexandre Duret-Lutz  <duret_g@epita.fr>
9481         * lib/autoconf/c.m4 (AC_C_BIGENDIAN): Guess endianness by grep'ing
9482         magic values from an object file when cross-compiling.
9483         Based on code by Guido Draheim <Guido.Draheim@gmx.de>.
9485 2001-08-10  Akim Demaille  <akim@epita.fr>
9487         * bin/autom4te.in (&handle_output): Don't use `grep' with side
9488         effects.
9489         Suggested by Russ Allbery.
9491 2001-08-10  Ralf Corsepius  <corsepiu@faw.uni-ulm.de>
9493         * lib/autoconf/general.m4 (_AC_OUTPUT_SUBDIRS): Propagate the
9494         current $prefix to the sub-configures.
9496 2001-08-09  Tim Van Holder  <tim.van.holder@pandora.be>
9498         * lib/autoconf/lang.m4: Ignore *.xSYM when looking for an executable
9499         extension (needed on BeOS).  Reported by Guido van Rossum.
9501 2001-08-09  Akim Demaille  <akim@epita.fr>
9503         * bin/autom4te.in ($icache): Load it only if older than autom4te.
9505 2001-08-07  Akim Demaille  <akim@epita.fr>
9507         * lib/autotest/general.m4 (AT_INIT): All the `at-*' are to be
9508         removed.
9509         (at-setup-line): Huh?  Be a variable `at_setup_line', not a file.
9510         No need to remove the files before and after the each test, before
9511         each test and at the end of the suite is enough.
9512         Display only the children `times', not the shell's.
9513         If the test failed or was skipped, at-times is not available.
9515 2001-08-07  Akim Demaille  <akim@epita.fr>
9517         Always produce testsuite.log, including when there are no
9518         failures.  This helps getting information on skipped tests, and
9519         duration of the tests.  Err, implement the latter btw.
9521         * lib/autotest/general.m4 (AT_INIT): Set up fd 6 for the log.
9522         Dump information on the first run of each test.
9523         (AT_CLEANUP): Create `at-times' containing the duration of the
9524         test group.
9526 2001-08-07  Akim Demaille  <akim@epita.fr>
9528         The use of `dumpstat' revealed that `len' was used although it
9529         should not.  m4_text_wrap was using it, but in the Autoconf world
9530         where it is legal.  Hence (i) test M4sh in its own world, not
9531         Autoconf's, and (ii), ahem, fix the bug :)
9533         * lib/autotest/general.m4: Be sure the set good quotes, as tracing
9534         does not like `' instead of [].
9535         (AT_INIT): Forbid `^_?AT_'.
9536         And don't output such tokens.
9537         * tests/Makefile.am (CLEANFILES): Add `script', `script.s4g',
9538         `script.as', and `autom4te.cache'.
9539         Remove `empty' and `macro' which are no longer used.
9540         * tests/atspecific.m4 (AT_CHECK_M4SUGAR, AT_CHECK_M4SH): New.
9541         * tests/m4sugar.at: Use it.
9542         * lib/m4sugar/m4sugar.m4: Use `m4_len' not `len'.
9544 2001-08-07  Akim Demaille  <akim@epita.fr>
9546         * bin/autoconf.in, bin/autoheader.in: --force, -f is a new option.
9548 2001-08-07  Alexandre Duret-Lutz  <duret_g@epita.fr>
9550         * bin/autom4te.in (handle_output): Typo in quadrigraph substitution.
9552 2001-08-04  Akim Demaille  <akim@epita.fr>
9554         * lib/autoconf/functions.m4 (AC_FUNC_ALLOCA, AC_FUNC_ERROR_AT_LINE)
9555         (AC_FUNC_FSEEKO, AC_FUNC_OBSTACK): Use AC_LANG_IFELSE, not
9556         AC_TRY_LINK.
9557         * lib/autoconf/headers.m4 (AC_HEADER_MAJOR): Likewise.
9558         * lib/autoconf/fortran.m4 (_AC_LANG_PROGRAM_C_F77_HOOKS)
9559         (AC_F77_MAIN): Likewise.
9561 2001-08-04  Akim Demaille  <akim@epita.fr>
9563         Don't rely on M4sugar outputting the patterns in files, since we
9564         might process the output _without_ running m4, hence without these
9565         files.
9567         * lib/m4sugar/m4sugar.m4 (m4_init): No need for `m4_tmpdir'.
9568         * bin/autom4te.in (@Request::includes): Remove, unused.
9569         (@Request::source): Rename as...
9570         (@Request::input): this.
9571         (@preselect): Add `m4_pattern_forbid' and `m4_pattern_allow'.
9572         (&handle_output): Fetch the patterns from the traces.
9573         `$forbidden' and `$allowed' are constant: use m//o.
9574         (&handle_m4): M4sugar no longer wants `m4_tmpdir'.
9575         (m4_pattern_forbid, m4_pattern_allow): Adjust for tracing only.
9577 2001-08-04  Akim Demaille  <akim@epita.fr>
9579         `autoconf && autoheader' is sped up.  Now, speed up `autoheader &&
9580         autoconf', i.e., in addition to caching traces, cache the output.
9582         * bin/autom4te.in (Request::cache): Rename as...
9583         (Request::id): this.
9584         ($cache, $icache, $tcache, $ocache): New.
9585         (&handle_m4): Save M4 output in the cache instead of $tmp.
9586         (&handle_output): Adjust.
9587         (&up_to_date_p): Check that the output cache is up to date too.
9588         (top level): Run `&handle_m4' iff force or the cache is invalid.
9589         Run `&handle_output' if the output cache is more recent.
9591 2001-08-04  Akim Demaille  <akim@epita.fr>
9593         * bin/autom4te.in ($force): New.
9594         (&parse_args, &print_usage): -f, --force is a new option.
9595         (&handle_output): CPP directives might have spaces after `#'.
9596         (&parse_args): The first file only can be frozen.
9598 2001-08-04  Akim Demaille  <akim@epita.fr>
9600         Don't let autom4te compute the `include' traces several times:
9601         first check that the trace cache file is up to date, and then
9602         compare its timestamp with that of the output.
9604         * bin/autom4te.in, bin/autoupdate.in, bin/autoscan.in: Normalize
9605         the preamble.  Don't require 5.005 as Autom4te::General does it,
9606         and better yet (use `use', not `require'!).
9607         * lib/Autom4te/Struct.pm: Rename the last occurrences of
9608         Class::Struct as Autom4te::Struct.
9609         * lib/Autom4te/General.pm (File::stat): Use it.
9610         (&mtime): New, export it.
9611         * bin/autom4te.in: Use it.
9612         Declare `$req' is invalid if it is outdated.
9613         Don't declare it valid before saving it if something went wrong.
9615 2001-08-04  Akim Demaille  <akim@epita.fr>
9617         Autom4te shall not encode Autoconf data, and preselecting traces
9618         must be proposed to the users.
9620         * bin/autom4te.in (@required_trace): Remove.
9621         (@preselect): New.
9622         (&parse_args, &print_usage): -p, --preselect is a new option.
9623         (&up_to_date_p): Adjust.
9624         * bin/autoconf.in: Preselect some Autoconf macros.
9626 2001-08-04  Akim Demaille  <akim@epita.fr>
9628         * tests/tools.at (autoconf --trace: user macros): Check traces on
9629         macros invoked without arguments, and macros invoked with multiple
9630         lines arguments.
9632 2001-08-03  Alexandre Duret-Lutz  <duret_g@epita.fr>
9634         * bin/autom4te.in (handle_traces): Fix rewriting of traces without
9635         arguments.
9637 2001-08-03  Akim Demaille  <akim@epita.fr>
9639         * bin/autoconf.in ($@): Work around the usual sh bug.
9640         From Nicolas Joly.
9642 2001-08-03  Akim Demaille  <akim@epita.fr>
9644         Clean up the handling of the M4 builtins tracing exception.
9646         * bin/autom4te.in (Request::request): Don't complete M4 builtins
9647         trace requests.
9648         (@m4_builtins): Rename as...
9649         (@m4_builtin): this.
9650         (%m4_builtin_alternate_name): New.
9651         (&parse_args): Complete the trace requests with alternate names.
9652         (&handle_traces): Hence no longer do it here.
9653         (&trace_requests): Remove, unused.
9655 2001-08-03  Akim Demaille  <akim@epita.fr>
9657         * doc/autoconf.texi (Redefined M4 Macros): Document m4_exit,
9658         m4_if, and m4_wrap.
9660 2001-08-03  Akim Demaille  <akim@epita.fr>
9662         * lib/m4sugar/m4sugar.m4 (m4_init): Also forbid `_m4_*' tokens.
9663         (m4_divert_pop): Dump the whole diversion stack when a diversion
9664         mismatch happens.
9665         * bin/autom4te.in (&handle_output): Remember of the first
9666         occurrence of a possibly undefined macro, not the last.
9667         Complain about the possibly undefined macros in the same order as
9668         the appear in the output.
9669         * lib/autoconf/Makefile.am (autoconf.m4f): List its dependencies.
9670         * tests/tools.at (autoconf: forbidden tokens, basic)
9671         (autoconf: forbidden tokens, exceptions): No longer sort
9672         autoconf's stderr, as it is now deterministic.
9673         Check that `dnl' is caught.
9675 2001-08-01  Akim Demaille  <akim@epita.fr>
9677         * configure.ac: Bump to 2.52c.
9679 2001-08-01  Akim Demaille  <akim@epita.fr>
9681         Version 2.52b.
9683         * lib/Autom4te/Makefile.am (perllibdir): s/Autoconf/Autom4te/.
9685 2001-08-01  Akim Demaille  <akim@epita.fr>
9687         Version 2.52a.
9689 2001-08-01  Akim Demaille  <akim@epita.fr>
9691         * lib/Autom4te/General.pm: Use `carp' and `croak', not `warn' and
9692         `die'.
9693         (&END): New.
9694         * bin/autoconf.in, bin/autom4te.in, bin/autoupdate.in: Remove your
9695         `END', as `Autom4te::General::END' will be triggered.
9696         * bin/autoupdate.in, bin/autoscan.in: Improve error messages accuracy.
9697         * bin/autoupdate.in (File::Compare, File::Copy): Use them instead of
9698         system to run `mv', `rm', and `cmp'.
9700 2001-08-01  Akim Demaille  <akim@epita.fr>
9702         * lib/Autom4te/General.pm (&unique): New.
9703         * bin/autoscan.in (&output): Use it to issue trace requests once.
9705 2001-08-01  Akim Demaille  <akim@epita.fr>
9707         * lib/Autom4te/General.pm: New.
9708         * bin/autom4te.in (Autom4te::General): Use it.
9709         ($me, $tmp, $verbose, $debug, &mktmpdir, &verbose, &xsystem)
9710         (&find_configure_ac, &find_slave): Remove.
9711         * bin/autoscan.in: Likewise.
9712         * bin/autoupdate.in: Likewise.
9714 2001-08-01  Akim Demaille  <akim@epita.fr>
9716         * autoconf.in, autom4te.in, autoscan.in, ifnames.in,
9717         * autoheader.in, autoreconf.in, autoupdate.in: Move to...
9718         * bin: here, new directory.
9719         * lib/Autoconf: Rename as...
9720         * lib/Autom4te: this, to please case insensitive junkie OSes.
9722 2001-08-01  Akim Demaille  <akim@epita.fr>
9724         * autom4te.in ($m4): Handle the --nesting-limit.
9725         * autoconf.in (M4): Remove.
9727 2001-08-01  Akim Demaille  <akim@epita.fr>
9729         * autoconf.in ($AWK): Remove, no longer used.
9730         * test/tools.at: Use AT_CHECK_AUTOCONF.
9731         (AWK portability): Remove, for autoconf no longer uses AWK.
9732         (Syntax of the Perl scripts): New.
9733         * configure.ac: autoconf no longer needs an AWK with a good
9734         regexp engine.
9735         Use a static test on AC_PACKAGE_VERSION.
9736         * autom4te.in (&up_to_date_p): Output depends on the arguments.
9737         * lib/autoconf/Makefile.am: Ship version.m4, maintainer file.
9738         * tests/atconfig.in (PERL): New.
9740 2001-08-01  Akim Demaille  <akim@epita.fr>
9742         * lib/autoconf/lang.m4 (AC_LANG(C), AC_LANG_C, _AC_LANG_ABBREV(C))
9743         (AC_LANG(C++), AC_LANG_CPLUSPLUS, _AC_LANG_ABBREV(C++))
9744         (AC_LANG_SOURCE(C), AC_LANG_PROGRAM(C), AC_LANG_CALL(C))
9745         (AC_LANG_FUNC_LINK_TRY(C), AC_LANG_BOOL_COMPILE_TRY(C))
9746         (AC_LANG_INT_SAVE(C), _AC_ARG_VAR_CPPFLAGS, _AC_ARG_VAR_LDFLAGS)
9747         (AC_LANG_PREPROC(C), _AC_PROG_PREPROC_WORKS_IFELSE, AC_PROG_CPP)
9748         (AC_LANG_COMPILER(C), ac_cv_prog_gcc, AC_PROG_CC, _AC_PROG_CC_G)
9749         (AC_PROG_GCC_TRADITIONAL, AC_PROG_CC_C_O, AC_LANG_PREPROC(C++))
9750         (AC_PROG_CXXCPP, AC_LANG_COMPILER(C++), ac_cv_prog_gxx)
9751         (AC_PROG_CXX, _AC_PROG_CXX_G, _AC_PROG_CXX_EXIT_DECLARATION)
9752         (AC_PROG_CC_STDC, AC_C_CROSS, AC_C_CHAR_UNSIGNED, AC_C_LONG_DOUBLE)
9753         (AC_C_BIGENDIAN, AC_C_INLINE, AC_C_CONST, AC_C_VOLATILE)
9754         (AC_C_STRINGIZE, AC_C_PROTOTYPES): Move to...
9755         * lib/autoconf/c.m4: here, new file.
9757         * lib/autoconf/lang.m4 (AC_LANG(Fortran 77), AC_LANG_FORTRAN77)
9758         (_AC_LANG_ABBREV(Fortran 77), AC_LANG_SOURCE(Fortran 77))
9759         (AC_LANG_PROGRAM(Fortran 77), AC_LANG_CALL(Fortran 77))
9760         (AC_LANG_PREPROC(Fortran 77), AC_LANG_COMPILER(Fortran 77))
9761         (ac_cv_prog_g77, AC_PROG_F77, _AC_PROG_F77_G, AC_PROG_F77_C_O)
9762         (_AC_PROG_F77_V_OUTPUT, _AC_PROG_F77_V, AC_F77_LIBRARY_LDFLAGS)
9763         (AC_F77_DUMMY_MAIN, _AC_LANG_PROGRAM_C_F77_HOOKS, AC_F77_MAIN)
9764         (_AC_F77_NAME_MANGLING, AC_F77_NAME_MANGLING, AC_F77_WRAPPERS)
9765         (AC_F77_FUNC): Move to...
9766         * lib/autoconf/fortran.m4: here, new file.
9768 2001-08-01  Akim Demaille  <akim@epita.fr>
9770         * acfunctions.m4: Rename as...
9771         * lib/autoconf/functions.m4: this.
9772         * acgeneral.m4: Rename as...
9773         * lib/autoconf/general.m4: this.
9774         * acheaders.m4: Rename as...
9775         * lib/autoconf/headers.m4: this.
9776         * aclang.m4: Rename as...
9777         * lib/autoconf/lang.m4: this.
9778         * acoldnames.m4: Rename as...
9779         * lib/autoconf/oldnames.m4: this.
9780         * acspecific.m4: Rename as...
9781         * lib/autoconf/specific.m4: this.
9782         * actypes.m4: Rename as...
9783         * lib/autoconf/types.m4: this.
9784         * autoconf.m4: Rename as...
9785         * lib/autoconf/autoconf.m4: this.
9787         * m4sugar.m4: Rename as...
9788         * lib/m4sugar/m4sugar.m4: this.
9789         * m4sh.m4: Rename as...
9790         * lib/m4sugar/m4sh.m4: this.
9792         * tests/atgeneral.m4: Rename as...
9793         * lib/autotest/general.m4: this.
9795         * acfunctions: Rename as...
9796         * lib/autoscan/functions: this.
9797         * acheaders: Rename as...
9798         * lib/autoscan/headers: this.
9799         * acidentifiers: Rename as...
9800         * lib/autoscan/identifiers: this.
9801         * aclibraries: Rename as...
9802         * lib/autoscan/libraries: this.
9803         * acmakevars: Rename as...
9804         * lib/autoscan/makevars: this.
9805         * acprograms: Rename as...
9806         * lib/autoscan/programs: this.
9808 2001-08-01  Akim Demaille  <akim@epita.fr>
9810         * doc/autoconf.texi: Moving/deleting open files is not portable.
9811         Portability issues for `.' (source), and more information about sed.
9813 2001-07-25  Steven G. Johnson  <stevenj@alum.mit.edu>
9815         * aclang.m4 (AC_F77_LIBRARY_LDFLAGS): Ignore -libmil (on Solaris),
9816         which has a special meaning and is not a reference to libibmil.a.
9817         Reported by Matteo Frigo.
9819 2001-07-25  Pavel Roskin  <proski@gnu.org>
9821         * autom4te.in (mktmpdir): Strip trailing newline from mktemp
9822         output.
9824 2001-07-25  Akim Demaille  <akim@epita.fr>
9826         * autoconf.in: Try to define the variables before using them.
9827         * autom4te.in ($perllibdir): Use `$autom4te_perllibdir' as envvar
9828         instead of `$perllibdir'.
9829         * tests/atconfig.in ($autom4te_perllibdir): Export it.
9831 2001-07-25  Akim Demaille  <akim@epita.fr>
9833         * autoconf.in (ac_LF_and_DOT): Remove, unused.
9835 2001-07-24  Akim Demaille  <akim@epita.fr>
9837         Let autoconf use autom4te for traces.
9839         * autoconf.in ($task, task trace): Remove, merely pass --trace to
9840         autom4te.
9841         * autoheader.in: Don't pass `-' to autoconf, rather, a tmp file.
9842         (Because I found no way for autom4te to accept `-').
9843         * autom4te.in (&Request::request): Beware of M4 builtins.
9844         (END): Don't try to remove the content of an empty dir.
9845         (&parse_args): Default is `$f:$l:$n:$%', not `$f:$l:$n:$*'.
9846         (&handle_output): Set a default value to `$forbidden'.
9847         * autoupdate.in (&verbose, &xsystem): New, from autom4te.in.
9848         ($autoconf): Pass --debug and --verbose.
9849         * tests/atspecific.m4 (AT_CHECK_AUTOCONF): Clean up autom4te's
9850         cache.
9852 2001-07-24  Akim Demaille  <akim@epita.fr>
9854         Let autoconf use autom4te to create configure.
9856         * autoconf.in ($automate): New var.
9857         (task script): Use autom4te.
9858         * autom4te.in (File::Spec): Use it.
9859         (&find_file): New.
9860         (&parse_args): --warning is -W, not -w.
9861         Find the top level files.
9862         (&handle_m4): Pass the warnings flags.
9863         Don't report verbosely m4's failures, unless requested.
9864         (&handle_output): Don't complain for forbidden tokens in comments.
9865         Be sure to report all the forbidden tokens within a single line.
9866         (&trace_format_to_m4): Preserve `$_'.
9867         (&handle_traces): Sort the output macros.
9868         (&up_to_date_p): Find the files before trying to get its time stamp.
9870 2001-07-24  Akim Demaille  <akim@epita.fr>
9872         * Makefile.am: Ship, build and install Autom4te.
9873         (SUBDIRS): Add lib.
9874         * lib/Autoconf/Struct.pm: New, from Automake 1.5.
9875         * configure.in: Require Perl.
9876         * man/autom4te.in: New.
9878 2001-07-19  Paul Eggert  <eggert@twinsun.com>
9880         * doc/autoconf.texi (Cache Checkpointing): Use AC_MSG_ERROR in
9881         example, rather than (exit 1); exit (which isn't portable).
9883 2001-07-18  Akim Demaille  <akim@epita.fr>
9885         Version 2.52.
9887 2001-07-18  Akim Demaille  <akim@epita.fr>
9889         The C-Fortran 77 hooks are available only once AC_F77_DUMMY_MAIN
9890         was run, while they are needed also when it is expanded.
9891         Reported by Nicolas Joly.
9893         * aclang.m4 (AC_F77_DUMMY_MAIN): Define _AC_LANG_PROGRAM_C_F77_HOOKS.
9894         (AC_LANG_PROGRAM(C)): Use it instead of depending upon
9895         AC_F77_DUMMY_MAIN being expanded.
9897 2001-07-18  Akim Demaille  <akim@epita.fr>
9899         * configure.in: Bump to 2.51a.
9901 2001-07-17  Akim Demaille  <akim@epita.fr>
9903         Version 2.51.
9905 2001-07-17  Akim Demaille  <akim@epita.fr>
9907         * aclang.m4 (AC_F77_DUMMY_MAIN): Let the interface be more
9908         Autoconfy: $1 = action-if-found, $2 = action-if-not-found.
9910 2001-07-17  Akim Demaille  <akim@epita.fr>
9912         The runtime test for AC_FUNC_GETPGRP fails when prototypes are
9913         used.  Well, then use the prototypes when you can, and runtime as
9914         a last resort.
9915         Reported by Artur Frysiak
9917         * acfunctions.m4 (_AC_FUNC_GETPGRP_TEST): New.
9918         (AC_FUNC_GETPGRP): Use it.
9919         First try to compile with 0-ary or 1-ary calls.
9921 2001-07-17  Akim Demaille  <akim@epita.fr>
9923         * actypes.m4 (_AC_CHECK_TYPE_REPLACEMENT_TYPE_P): `foo_t' is a
9924         replacement type.
9925         From Paul Eggert.
9927 2001-07-17  Akim Demaille  <akim@epita.fr>
9929         * Makefile.maint: Sync. with cppi 1.10.
9931 2001-07-17  Akim Demaille  <akim@epita.fr>
9933         * aclang.m4 (AC_LANG_PROGRAM(C)): Output F77_DUMMY_MAIN only when
9934         AC_F77_DUMMY_MAIN has been run.
9935         From Pavel Roskin and Steven G. Johnson.
9937 2001-07-17  Akim Demaille  <akim@epita.fr>
9939         * configure.in: Rename as...
9940         * configure.ac: this.
9942 2001-07-17  Akim Demaille  <akim@epita.fr>
9944         * Makefile.am (INSTALL.txt): Don't use $@ and $< in non suffix
9945         rules.
9946         From Marc Espie.
9947         * Makefile.maint (release-archive-dir): Rename as...
9948         (release_archive_dir): this, so that it can be specialized in
9949         Makefile.
9951 2001-07-14  Akim Demaille  <akim@epita.fr>
9953         * configure.in: Bump to 2.50d.
9955 2001-07-14  Akim Demaille  <akim@epita.fr>
9957         Version 2.50c.
9958         * Makefile.maint (alpha): Typo.
9960 2001-07-14  Akim Demaille  <akim@epita.fr>
9962         * doc/autoconf.texi (Limitations of Make): Macro names and underscore.
9964 2001-07-14  Akim Demaille  <akim@epita.fr>
9966         * config/config.guess, config/config.sub, config/texinfo.tex
9967         * doc/standards.texi, doc/make-stds.texi: Update.
9969 2001-07-14  Akim Demaille  <akim@epita.fr>
9971         * Makefile.maint (cvs-check, cvs-tag-check, cvs-diff-check): New.
9973 2001-07-14  Akim Demaille  <akim@epita.fr>
9975         * Makefile.maint (maintainer-check): Rename as...
9976         (maintainer-distcheck): this.
9977         (changelog-check, static-check): New.
9978         Use them.
9980 2001-07-14  Kevin Ryde  <user42@zip.com.au>
9982         * doc/autoconf.texi (C++ Compilers Characteristics): Last resort
9983         for CXX is g++, not gcc.
9985 2001-07-14  Akim Demaille  <akim@epita.fr>
9987         * doc/autoconf.texi (Files): New subsection.
9989 2001-07-14  Akim Demaille  <akim@epita.fr>
9991         * doc/autoconf.texi (C Compiler, Fortran 77 Compiler): Be subsections
9992         of...
9993         (Generic Compiler Characteristics): this.
9994         (C++ Compiler): New subsection.
9996 2001-07-14  Akim Demaille  <akim@epita.fr>
9998         * autoscan.in: Use IO::File.
9999         Adjust all the routines to use it.
10000         ($log): New file (autoscan.log).
10001         (output): Dump detailed logs into $log, and a shortened version to
10002         stderr.
10003         (&scan_makefile): Refine the regexp catching tokens in the code.
10004         * doc/autoconf.texi (autoscan Invocation): Document `autoscan.log'
10005         and the `configure.ac' checking feature.
10007 2001-07-12  Akim Demaille  <akim@epita.fr>
10009         For some AWK, such as on HPUX 11, `xfoo' does not match `foo|^bar'.
10010         Reported by Michael Elizabeth Chastain.
10012         * autoconf.in: Refuse such AWK.
10013         * configure.in: Likewise.
10014         * Makefile.am (acversion.m4): Do not use move-if-change this file
10015         has dependencies.
10016         * doc/autoconf.texi (Fortran 77 Compiler): Some typos.
10018 2001-07-10  Jens Petersen  <petersen@redhat.com>
10020         * autoscan.in (&scan_makefile): Improve programs regexp to parse
10021         things like "g++", "file.c" and "some-conf" as tokens.
10022         (&scan_file): Match C++ files extensions.
10023         If the filename extension is C++ then ask for c++.
10025 2001-07-05  Steven G. Johnson  <stevenj@alum.mit.edu>
10027         * aclang.m4 (AC_F77_DUMMY_MAIN): Use AC_TRY_LINK, not
10028         AC_TRY_LINK_FUNC, to check whether defining a dummy
10029         main-like routine is needed for linking with F77 libs.
10031 2001-07-05  Pavel Roskin  <proski@gnu.org>
10033         * aclocal.m4 (_AC_PROG_CXX_EXIT_DECLARATION): Remove conftest*
10034         after using break.
10035         (_AC_PROG_F77_V_OUTPUT): Remove conftest*, not conftest.* after
10036         linking.
10038 2001-07-05  Akim Demaille  <akim@epita.fr>
10040         * Makefile.am (move_if_change): New.  Use it instead of `mv'.
10041         (acversion.m4): Name it `$(srcdir)/acversion.m4' to ease broken
10042         Makes' lives.
10043         Reported by Nicolas Joly.
10045 2001-07-04  Akim Demaille  <akim@epita.fr>
10047         * acgeneral.m4 (_AC_RUN_IFELSE): Remove conftest.o when cleaning
10048         up.
10049         * acfunctions.m4 (AC_FUNC_WAIT3): Use `break' to silent some
10050         warnings from compilers.
10051         * aclang.m4 (_AC_LANG_COMPILER_GNU): Log the version information
10052         for all the compilers, not only GNU.  Hence move from here...
10053         (AC_PROG_CC, AC_PROG_CXX, AC_PROG_F77): to here.
10055 2001-07-04  Akim Demaille  <akim@epita.fr>
10057         * acfunctions.m4 (AC_FUNC_STRTOD, AC_FUNC_STRERROR_R)
10058         (AC_FUNC_STRCOLL, AC_FUNC_WAIT3): Use AC_RUN_IFELSE and
10059         AC_COMPILE_IFELSE.
10061 2001-07-04  Akim Demaille  <akim@epita.fr>
10063         * acgeneral.m4 (_AC_INCLUDES_DEFAULT_REQUIREMENTS): Actually apply
10064         the ``strings.h'' change claimed below.
10066 2001-07-04  Akim Demaille  <akim@epita.fr>
10068         * aclang.m4 (_AC_LANG_COMPILER_GNU): s/-dumpspecs/-v/.
10070 2001-07-04  Akim Demaille  <akim@epita.fr>
10072         * acgeneral.m4 (_AC_INCLUDES_DEFAULT_REQUIREMENTS): Include
10073         strings.h if usable with string.h.
10074         Suggested by Paul Eggert.
10076 2001-07-04  Akim Demaille  <akim@epita.fr>
10078         * autoscan.in (&scan_file): Skip FILE if there is FILE.in.
10079         From Jens Petersen.
10081 2001-07-03  Akim Demaille  <akim@epita.fr>
10083         * acgeneral.m4 (_AC_OUTPUT_CONFIG_STATUS): Specify CONFIG_FILES
10084         etc. in the log.
10086 2001-07-03  Akim Demaille  <akim@epita.fr>
10088         * acheaders.m4 (AC_CHECK_HEADER): When INCLUDES are set, use the
10089         compiler, not the preprocessor.
10090         * acgeneral.m4 (_AC_INCLUDES_DEFAULT_REQUIREMENTS): No longer use
10091         dedicated code to check for inttypes.h, as AC_CHECK_HEADERS does
10092         the right thing.
10093         * Makefile.am (.m4.m4f): Emphasize M4 error messages and fail
10094         earlier if there are.
10096 2001-07-03  Akim Demaille  <akim@epita.fr>
10098         * autoscan.in ($initfile): Remove.
10099         (&find_file): Rename as...
10100         (&scan_file): this.
10101         Immediately scan the current file, instead of gathering them, and
10102         later having them handled by &scan_files.
10103         (&scan_files): Merely invoke Find::File.
10104         Adjust.
10106 2001-07-02  Akim Demaille  <akim@epita.fr>
10108         * autoscan.in: Formatting changes, matching the invocation order.
10109         (File::Find): Use it instead of Perl 4's `find.pl'.
10110         (&wanted): Rename as...
10111         (&find_file): this.
10113 2001-07-01  Pavel Roskin  <proski@gnu.org>
10115         * aclang.m4 (AC_F77_DUMMY_MAIN): Remove conftest* after using
10116         break in the argument to AC_TRY_LINK_FUNC.
10117         (AC_F77_MAIN): Remove conftest* after using break in the
10118         argument to AC_TRY_LINK.
10120 2001-07-01  Steven G. Johnson  <stevenj@alum.mit.edu>
10122         Add alternate 'main' routine detection for linking C/C++ with Fortran,
10123         fixing link failures for e.g. AC_F77_WRAPPERS on NetBSD.
10125         * aclang.m4 (AC_F77_DUMMY_MAIN): New macro to detect whether a
10126         dummy alternate main is required even if the user provides her own
10127         'main'.
10128         (AC_F77_MAIN): New macro to detect whether it is possible to
10129         provide an alternate 'main' function name, using the 'main' from
10130         the Fortran libraries.
10131         (AC_LANG_PROGRAM(C)): Use F77_DUMMY_MAIN, if it is defined, so that
10132         cross-language link tests can be performed successfully.
10133         (_AC_F77_NAME_MANGLING): Require AC_F77_DUMMY_MAIN.  Also put $FLIBS
10134         after $LIBS, for consistency; this should be the general rule since
10135         the user may want to link to Fortran libraries that require $FLIBS.
10136         * doc/autoconf.texi: Document AC_F77_DUMMY_MAIN and AC_F77_MAIN.
10138 2001-06-29  Pavel Roskin  <proski@gnu.org>
10140         * atgeneral.m4 (AT_CHECK): Add a newline to the end of
10141         at-stdout and at-stderr instead of removing the newline
10142         from the echo output, which is not guaranteed to work.
10144 2001-06-28  Jens Petersen  <petersen@redhat.com>
10146         * aclang.m4 (_AC_PROG_CXX_EXIT_DECLARATION): Only add declaration to
10147         confdefs.h when non-zero.
10149 2001-06-28  Akim Demaille  <akim@epita.fr>
10151         * configure.in: Bump to 2.50c.
10153 2001-06-26  Akim Demaille  <akim@epita.fr>
10155         Version 2.50b.
10157 2001-06-26  Akim Demaille  <akim@epita.fr>
10159         Version 2.50a.
10161 2001-06-25  Pavel Roskin  <proski@gnu.org>
10163         * tests/atspecific.m4 (AT_CHECK_MACRO): Accept one more
10164         argument, AUTOCONF-FLAGS.
10165         * tests/mktests.sh (update_exclude_list): Add
10166         AC_SYS_RESTARTABLE_SYSCALLS and AC_FUNC_WAIT3.
10167         * tests/semantics.at: Test AC_SYS_RESTARTABLE_SYSCALLS and
10168         AC_FUNC_WAIT3 with "-W no-obsolete".
10170 2001-06-25  Akim Demaille  <akim@epita.fr>
10172         * tests/foreign.at (libtool): Fix the `libtoolize --version' decoding.
10174 2001-06-25  Akim Demaille  <akim@epita.fr>
10176         * autoscan.in (%macro): Now maps from word to list of macros.
10177         (&init_tables): Die when a word which is already handled by
10178         explicit macros is mapped to the default macro.
10179         (&print_unique): Remove, inlined in...
10180         (&output_kind): here.
10181         (File::Basename): Use it.
10182         (&output): Sort the CONFIG_FILES.
10183         * acheaders: Normalize.
10184         * acfunctions: Likewise.
10186 2001-06-25  Akim Demaille  <akim@epita.fr>
10188         * aclang.m4 (_AC_LANG_COMPILER_GNU): If GNU, dump the compiler
10189         characteristics in the logs.
10190         Suggested by Mo DeJong.
10192 2001-06-24  Akim Demaille  <akim@epita.fr>
10194         * acfunctions.m4 (AM_FUNC_ERROR_AT_LINE, AM_FUNC_FNMATCH)
10195         (AM_FUNC_MKTIME, AM_FUNC_OBSTACK, AM_FUNC_STRTOD): Reactivated.
10196         * doc/autoconf.texi (Autoconf 2.13): New section.
10198 2001-06-24  Akim Demaille  <akim@epita.fr>
10200         * autoconf.in (Task traces): Separate the error messages from the
10201         traces to improve robustness.
10203 2001-06-23  Akim Demaille  <akim@epita.fr>
10205         * tests/torture.at (AC_ARG_VAR): Make it a single test instead of
10206         three as failures are unlikely, and speed matters.
10208 2001-06-23  Akim Demaille  <akim@epita.fr>
10210         * doc/autoconf.texi (Redefined M4 Macros): New.
10212 2001-06-23  Akim Demaille  <akim@epita.fr>
10214         * acgeneral.m4 (_AC_INCLUDES_DEFAULT_REQUIREMENTS): Consider
10215         inttypes.h is missing if it conflicts with sys/types.h, as on IRIX
10216         5.3.
10218 2001-06-23  Paolo Bonzini  <bonzini@gnu.org>
10220         * acgeneral.m4 (_AC_OUTPUT_CONFIG_STATUS): Defer parsing of
10221         config.status targets to after the evaluation of the INIT-CMDS.
10222         Double quote config.status targets (used to be single quoted).
10224 2001-06-23  Akim Demaille  <akim@epita.fr>
10226         * tests/torture.at (CONFIG_FILES, HEADERS, LINKS and COMMANDS):
10227         Check the content of the created file.
10228         Check the ./config.status command line invocation.
10230 2001-06-23  Akim Demaille  <akim@epita.fr>
10232         * tests/foreign.at (Libtool): Reject prehistoric versions.
10234 2001-06-23  Akim Demaille  <akim@epita.fr>
10236         * aclang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Try to be robust to
10237         preexisting files matching a.*.
10239 2001-06-23  Akim Demaille  <akim@epita.fr>
10241         * acgeneral.m4 (_AC_ARG_VAR_VALIDATE): Output error messages on
10242         stderr.
10243         * doc/autoconf.texi (AC_ARG_VAR): Update.
10245 2001-06-21  Akim Demaille  <akim@epita.fr>
10247         * acgeneral.m4 (_AC_ARG_VAR_VALIDATE): Die instead of warning when
10248         precious variables have changed.
10249         * tests/torture.at (AC_ARG_VAR): Adjust.
10251 2001-06-21  Akim Demaille  <akim@epita.fr>
10253         ./configure --program-suffix=foo produces `transform=s,$$,foo,;',
10254         but some sed choke on multiple `;', and other tools (e.g.,
10255         Automake), include the separator themselves.
10257         * acgeneral.m4 (AC_ARG_VAR): Be sure not to leave extra `;'.
10259 2001-06-19  Tim Van Holder  <tim.van.holder@pandora.be>
10261         * doc/autoconf.texi (Functions Portability): Rename as...
10262         (Function Portability): this.
10263         (Function Portability): Document potential problems with unlink().
10265 2001-06-19  Paul Eggert  <eggert@twinsun.com>
10267         * NEWS, doc/autoconf.texi: Document quadrigraphs.
10269 2001-06-18  Akim Demaille  <akim@epita.fr>
10271         * acfunctions.m4 (AC_FUNC_FORK): Fix typos.
10273 2001-06-18  Ruediger Kuhlmann  <info@ruediger-kuhlmann.de>
10275         * acfunctions.m4: (AC_FUNC_VFORK) rename as...
10276         (_AC_FUNC_VFORK): this.
10277         Remove AC_DEFINEs and don't guess cross-compilation values.
10278         (_AC_FUNC_FORK): New, check whether fork() isn't just a stub.
10279         (AC_FUNC_FORK): New, use _AC_FUNC_VFORK and _AC_FUNC_FORK to
10280         define HAVE_WORKING_FORK, HAVE_WORKING_VFORK; and vfork to fork if
10281         vfork doesn't work.
10282         Guess values if cross-compiling, but warn.
10283         * acfunctions: Add AC_FUNC_FORK.
10284         * doc/autoconf.texi: Document AC_FUNC_FORK. Give example to define
10285         and vfork appropriately.
10287 2001-06-18  Akim Demaille  <akim@epita.fr>
10289         * doc/autoconf.texi (Functions Portability): New section.
10291 2001-06-18  Akim Demaille  <akim@epita.fr>
10293         * autoconf.in (M4): Pass --nesting-limit=1024, unless already set
10294         in $M4.
10295         Suggested by Andreas Schwab.
10297 2001-06-18  Akim Demaille  <akim@epita.fr>
10299         * acfunctions.m4 (AC_FUNC_CHOWN, AC_FUNC_CLOSEDIR_VOID)
10300         (AC_FUNC_GETPGRP, AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK)
10301         (AC_FUNC_MMAP, AC_FUNC_SELECT_ARGTYPES, _AC_FUNC_STAT)
10302         (AC_FUNC_UTIME_NULL): Use AC_INCLUDES_DEFAULT.
10303         Don't use AC_TRY_RUN, which double quotes, prefer AC_RUN_IFELSE,
10304         and either AC_LANG_SOURCE or AC_LANG_PROGRAM.
10305         (AC_FUNC_CLOSEDIR_VOID): Protect C++ from `int closedir ();' (or
10306         the converse).
10308 2001-06-18  Akim Demaille  <akim@epita.fr>
10310         * doc/autoconf.texi (ms): New index.
10311         (Macro Index): Rename as...
10312         (Autoconf Macro Index): this.
10313         (M4 Macro Index): New appendix.
10314         (Programming in M4): New chapter.
10315         Define M4sugar, M4sh, m4_pattern_forbid, and m4_pattern_allow.
10316         (Quoting): Rename as...
10317         (M$ Quotation): this.
10318         Be part of `Programming in M4).
10320 2001-06-18  Nicolas Joly  <njoly@pasteur.fr>
10322         * tests/torture.at (AC_ARG_VAR): Set variables and export them
10323         in separate statements for compatibility with Tru64 v5.1.
10325 2001-06-17  Akim Demaille  <akim@epita.fr>
10327         * acgeneral.m4 (_AC_ARG_VAR_VALIDATE): Be sure to cache the
10328         current values of the precious variables, not the previously
10329         cached values.
10330         Pass precious variables which are set to config.status.
10331         * doc/autoconf.texi (Setting Output Variables): Document AC_ARG_VAR.
10332         * tests/torture.at (AC_ARG_VAR): New.
10334 2001-06-15  Paul Eggert  <eggert@twinsun.com>
10336         * doc/autoconf.texi: Move AC_FUNC_WAIT3 and
10337         AC_SYS_RESTARTABLE_SYSCALLS to the obsolete section,
10338         and explain why and how to replace them.
10339         * acfunctions.m4 (AC_FUNC_WAIT3): Warn as obsolete.
10340         * acspecific.m4 (AC_SYS_RESTARTABLE_SYSCALLS): Likewise.
10342 2001-06-15  Akim Demaille  <akim@epita.fr>
10344         `build_alias', `host_alias', and `target_alias' are not AC_SUBST'd.
10345         Reported by Bruno Haible.
10347         * acgeneral.m4 (AC_ARG_VAR): Move the AC_SUBST, from here...
10348          (_AC_ARG_VAR_PRECIOUS): to here.
10350 2001-06-15  Pavel Roskin  <proski@gnu.org>
10352         * acheaders.m4 (_AC_CHECK_HEADER_DIRENT): Instead of defining
10353         an unused pointer use cast to this type and `if' statement to
10354         avoid warnings from the compiler.
10355         (AC_HEADER_TIME): Likewise.
10356         * actypes.m4 (AC_CHECK_MEMBER): s/foo/ac_aggr/. Use the member
10357         in `if' statement to avoid warnings from the compiler. Declare
10358         ac_aggr static to avoid the need to initialize it.
10360 2001-06-14  Akim Demaille  <akim@epita.fr>
10362         * doc/autoconf.texi (Portable Shell): Move to follow `Writing
10363         Macros'.
10365 2001-06-13  Akim Demaille  <akim@epita.fr>
10367         * m4/missing.m4, config/missing: Updated to Automake 1.4g's.
10368         Suggested by Alexander Mai.
10370 2001-06-13  Akim Demaille  <akim@epita.fr>
10372         * acgeneral.m4 (_AC_INCLUDES_DEFAULT_REQUIREMENTS): Guard
10373         sys/types.h and sys/stat.h, and check for them.
10375 2001-06-13  Akim Demaille  <akim@epita.fr>
10377         * acheaders.m4 (AC_CHECK_HEADER, AC_CHECK_HEADERS): Support $4 =
10378         INCLUDES.
10380 2001-06-12  Maciej W. Rozycki  <macro@ds2.pg.gda.pl>
10382         * acspecific.m4 (AC_PATH_XTRA): Check if linking against libX11
10383         succeeds and only try adding libdnet upon a failure.
10385 2001-06-12  Akim Demaille  <akim@epita.fr>
10387         * autoscan.in (&output_kind): Output the comment only if it exists.
10388         (%kind_comment): Add entry for `programs'.
10389         (&output_programs): Use &output_kind.
10390         (&output_functions, &output_identifiers, &output_headers)
10391         (&output_programs): Inline, and remove.
10393 2001-06-12  Akim Demaille  <akim@epita.fr>
10395         * autoscan.in (%kind_comment): New.
10396         (output_kind): New.
10397         (output_functions, output_identifiers, output_headers): Use it.
10399 2001-06-12  Akim Demaille  <akim@epita.fr>
10401         * autoscan.in (&print_unique): Take `$kind' and `$word' as
10402         arguments, to factor indirections into `%macro' and `%used'.
10403         (%generic_macro): Fix a typo.
10405 2001-06-12  Akim Demaille  <akim@epita.fr>
10407         * aclibraries: New.
10408         * autoscan.in (@kinds): Add `libraries'.
10409         Use `@kinds' instead of hard coded lists.
10410         (%programs, %headers, %identifiers, %makevars, %libraries, %functions):
10411         Remove, replaced by...
10412         (%used): this.
10414 2001-06-12  Akim Demaille  <akim@epita.fr>
10416         * autoscan.in (%functions_macros %headers_macros)
10417         (%identifiers_macros %programs_macros %makevars_macros): Remove,
10418         replaced by...
10419         (%macro): New.
10421 2001-06-11  Raja R Harinath  <harinath@cs.umn.edu>
10423         * aclang.m4 (AC_NO_EXECUTABLES): Override
10424         _AC_COMPILER_EXEEXT_WORKS, not _AC_LANG_COMPILER_WORKS.
10426 2001-06-11  Akim Demaille  <akim@epita.fr>
10428         * aclang.m4 (AC_NO_EXECUTABLES): Define the macros with their
10429         trailing new line.
10430         Reported by Andreas Schwab.
10432 2001-06-11  Akim Demaille  <akim@epita.fr>
10434         * Makefile.am, Makefile.maint: Typos.
10436 2001-06-09  Akim Demaille  <akim@epita.fr>
10438         * doc/autoconf.texi (Here-Documents): New section, gathering
10439         documentation about here-documents.
10440         Use `href', not `uref', and other changes.
10442 2001-06-09  Akim Demaille  <akim@epita.fr>
10444         * doc/autoconf.texi (Portable Shell Programming): Promoted as a
10445         chapter.
10447 2001-06-09  Akim Demaille  <akim@epita.fr>
10449         * doc/autoconf.texi (Limitations of Builtins): Complete the
10450         description of the here-docs penalties with Alexandre Oliva's
10451         explanations.
10453 2001-06-01  Paul Eggert  <eggert@twinsun.com>
10455         * doc/autoconf.texi: Talk about here documents and speedups.
10456         Do not use "echo" on arbitrary strings.
10457         Spell "here-documents" consistently with the standard.
10459 2001-06-09  Akim Demaille  <akim@epita.fr>
10461         * doc/autoconf.texi (Concept Index): Introduce it.
10462         Regenerate the menus.
10464 2001-06-09  Akim Demaille  <akim@epita.fr>
10466         * Makefile.maint, GNUmakefile: New, from Jim Meyering.
10467         * config/prev-version.txt: New.
10468         * config/move-if-change: New, for GNU libc.
10470 2001-06-06  Pavel Roskin  <proski@gnu.org>
10472         * tests/atgeneral.m4 (AT_INIT): Remove "/bin/sh" after $SHELL.
10474 2001-06-06  Akim Demaille  <akim@epita.fr>
10476         * acgeneral.m4 (AC_CHECK_LIB): Fix the cache var name to work
10477         properly when $1 is not a literal.
10478         Fixes PR Autoconf/187, reported by Bram Moolenaar.
10480 2001-06-06  Akim Demaille  <akim@epita.fr>
10482         Invoking AC_COPYRIGHT before AC_INIT fails.
10484         * Makefile.am (.m4.m4f): Pass --fatal-warnings to m4.
10485         * acgeneral.m4 (_m4_divert(VERSION_FSF))
10486         (_m4_divert(VERSION_USER)): New.
10487         (AC_COPYRIGHT): $2 is the diversion to use.
10488         (_AC_INIT_COPYRIGHT): Use the FSF diversion.
10489         (AC_INIT): Remove dead comments as now it's commutative.
10491 2001-06-06  Akim Demaille  <akim@epita.fr>
10493         * tests/semantics.at (AC_CHECK_LIB): Strengthen to reflect
10494         PR autoconf/187.
10496 2001-06-05  Akim Demaille  <akim@epita.fr>
10498         * acgeneral.m4 (_AC_INIT_PARSE_ARGS): `prefix' and `exec_prefix'
10499         can be empty.
10500         `*dir' variables cannot be NONE.
10501         Reported by Mark Kettenis.
10503 2001-06-05  Paul Eggert  <eggert@twinsun.com>
10505         * doc/autoconf.texi: Fix references to Solaris and SunOS versions.
10507 2001-06-04  Akim Demaille  <akim@epita.fr>
10509         * acgeneral.m4 (AC_VAR_SET, AC_VAR_GET, AC_VAR_TEST_SET)
10510         (AC_VAR_SET_IFELSE, AC_VAR_PUSHDEF and AC_VAR_POPDEF, AC_TR_CPP)
10511         (AC_TR_SH): Move as...
10512         * m4sh.m4 (AS_VAR_SET, AS_VAR_GET, AS_VAR_TEST_SET)
10513         (AS_VAR_SET_IF, AC_VAR_PUSHDEF, AS_VAR_POPDEF, AS_TR_CPP)
10514         (AS_TR_SH): these.
10515         (_AS_TR_PREPARE, _AS_CR_PREPARE, _AS_TR_CPP_PREPARE)
10516         (_AS_TR_SH_PREPARE): New.
10517         (AS_SHELL_SANITIZE): Invoke _AS_TR_PREPARE.
10518         * tests/aclocal.m4 (AC_STATE_SAVE): `as_' vars can be modified.
10520 2001-06-02  Akim Demaille  <akim@epita.fr>
10522         * Makefile.am (.m4.m4f): Pass the options first.
10523         Fixes PR autoconf/182.
10525 2001-06-02  Nathan Sidwell  <nathan@codesourcery.com>
10527         GNU getopt, when POSIXLY_CORRECT does not permute options and
10528         arguments.  So pass the options first.
10529         Fixes PR autoconf/184.
10531         * autoconf.sh (m4_prefiles, m4f_prefiles): New variables.
10532         (run_m4): Remove files.
10533         (run_m4f): Remove.
10534         Update remainder of script to use them.
10535         (for warning in): Do not use a literal comma as it will not be
10536         split by IFS.
10538 2001-06-02  Christian Marquardt  <marq@gfz-potsdam.de>
10540         * aclang.m4 (AC_PROG_F77): Add Fujitsu's "frt" to the list of
10541         Fortran compilers to check.
10542         (_AC_PROG_F77_V): Add '-###' as a possible option to print
10543         information on library and object files.
10544         (AC_PROG_CXX): Add Fujitsu's "FCC" to the list of C++ compilers
10545         to check.
10547 2001-06-02  Akim Demaille  <akim@epita.fr>
10549         * autom4te.in (Request::@request): Declare with `vars', not `my',
10550         as it prevents updates via `do FILENAME'.
10552 2001-06-02  Akim Demaille  <akim@epita.fr>
10554         * configure.in (standards_texi): Remove, dead code.
10556 2001-06-02  Akim Demaille  <akim@epita.fr>
10558         * autom4te.in: New.
10560 2001-06-02  Pavel Roskin  <proski@gnu.org>
10562         * acgeneral.m4 (_AC_INIT_PREPARE): Don't rely on $? in the traps
10563         for signals other than 0 - exit with code 1.
10564         * m4sh.m4 (AS_TMPDIR): Likewise.
10565         * autoconf.in: Likewise. Also don't rely on exit == exit $?.
10566         * autoheader.in: Likewise.
10567         * autoreconf.in: Likewise.
10568         * tests/torture.at (Signal handling): New test for the above.
10570 2001-06-01  Akim Demaille  <akim@epita.fr>
10572         * m4sugar.m4 (m4_defn, m4_undefine, m4_popdef): Clarify the error
10573         message.
10575 2001-05-31  Akim Demaille  <akim@epita.fr>
10577         * acfunctions, acheaders, acidentifiers, acmakevars, acprograms:
10578         Add copyright and comments.
10579         * acheaders: Add stdint.h.
10580         Suggested by Paul Eggert.
10582 2001-05-31  Akim Demaille  <akim@epita.fr>
10584         * atgeneral.m4 (AT_INIT): Use $SHELL.
10585         * atspecific.m4 (AT_CHECK_DEFINES): Skip HAVE_STDINT_H.
10587 2001-05-31  Akim Demaille  <akim@epita.fr>
10589         * acgeneral.m4 (_AC_INCLUDES_DEFAULT_REQUIREMENTS): Include
10590         stdint.h.
10591         From Paul Eggert and Lars Hecking.
10593 2001-05-31  Akim Demaille  <akim@epita.fr>
10595         * tests/base.at: Adjust line numbers in error messages.
10597 2001-05-31  Akim Demaille  <akim@epita.fr>
10599         * tests/base.at, tests/m4sh.at: When using AC_PLAIN_SCRIPT be sure
10600         to emit the bangshe line.
10601         Reported by David Carter.
10603 2001-05-30  Steven G. Johnson  <stevenj@alum.mit.edu>
10605         * aclang.m4 (AC_PROG_F77): Add Compaq's "fort" to the list of
10606         Fortran (95) compilers to check.
10608 2001-05-29  Alexandre Duret-Lutz  <duret_g@epita.fr>
10610         * doc/autoconf.texi (Introduction, Pointers): Update the Autoconf
10611         Macro Archive URL.
10613 2001-05-23  Pavel Roskin  <proski@gnu.org>
10615         * aclang.m4 (AC_PROG_CPP): Use `break' instead of `break 2' since
10616         _AC_PROG_PREPROC_WORKS_IFELSE expands arguments outside the loop.
10617         (AC_PROG_CXXCPP): Likewise.
10619 2001-05-22  Akim Demaille  <akim@epita.fr>
10621         * config: New directory.
10622         * configure.in: AC_CONFIG_AUX_DIR it.
10623         * tests/atspecific.m4 (AT_CONFIGURE_AC): Adjust.
10625 2001-05-22  Akim Demaille  <akim@epita.fr>
10627         * autoconf.in, autoreconf.in, autoheader.in, autoscan.in, ifnames.in,
10628         * autoupdate.in: Specify the Emacs mode.
10629         * acversion.m4.in: Rename as...
10630         * acversion.m4: this.
10631         * tests/Makefile.am (CLEANFILES): More garbage.
10633 2001-05-22  Akim Demaille  <akim@epita.fr>
10635         * autoconf.sh, autoreconf.sh, autoheader.sh, autoscan.pl, ifnames.sh:
10636         Rename as...
10637         * autoconf.in, autoreconf.in, autoheader.in, autoscan.in, ifnames.in:
10638         these.
10640 2001-05-21  Akim Demaille  <akim@epita.fr>
10642         * configure.in: Bump to 2.50a.
10644 -----
10646 Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
10648 This file is part of GNU Autoconf.
10650 GNU Autoconf is free software; you can redistribute it and/or modify
10651 it under the terms of the GNU General Public License as published by
10652 the Free Software Foundation; either version 2, or (at your option)
10653 any later version.
10655 GNU Autoconf is distributed in the hope that it will be useful,
10656 but WITHOUT ANY WARRANTY; without even the implied warranty of
10657 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
10658 GNU General Public License for more details.
10660 You should have received a copy of the GNU General Public License
10661 along with autoconf; see the file COPYING.  If not, write to
10662 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
10663 Boston, MA 02110-1301, USA.