Avoid _m4_shiftn for m4 1.6 speedup.
[autoconf.git] / ChangeLog
blob1a58651b41e0baf5599ca12a1fcff77164851b15
1 2008-07-28  Eric Blake  <ebb9@byu.net>
3         Avoid _m4_shiftn for m4 1.6 speedup.
4         * lib/m4sugar/m4sugar.m4 (m4_foreach, _m4_foreach, m4_map)
5         (_m4_map, m4_map_sep): Rewrite recursion to use one less m4_if.
6         * lib/m4sugar/foreach.m4 (_m4_map): Accomodate changed signature.
8         Implement O(n) unique element set creation.
9         * lib/m4sugar/m4sugar.m4 (m4_set_add, m4_set_add_all)
10         (m4_set_contains, m4_set_contents, m4_set_delete)
11         (m4_set_difference, m4_set_dump, m4_set_empty, m4_set_foreach)
12         (m4_set_intersection, m4_set_list, m4_set_listc, m4_set_remove)
13         (m4_set_size, m4_set_union): New macros.
14         * lib/m4sugar/foreach.m4 (m4_set_add_all): Add O(n) fallback for
15         m4 1.4.x.
16         * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS, AC_SUBST): Use
17         new m4_set API for the set most likely to be large.
18         * doc/autoconf.texi (Set manipulation Macros): New node.
19         * NEWS: Mention new macros.
20         * tests/m4sugar.at (m4@&t@_set): New test.
22 2008-07-25  Eric Blake  <ebb9@byu.net>
24         Avoid infinite aclocal loop.
25         * lib/m4sugar/m4sugar.m4 (m4_init): Bypass m4_include tracing, so
26         that aclocal doesn't insist on finding m4sugar/foreach.m4.
28         Provide O(n) replacement macros for M4 1.4.x.
29         * lib/m4sugar/foreach.m4: New file.
30         (m4_foreach, m4_case, _m4_shiftn, m4_do, m4_dquote_elt, _m4_map)
31         (m4_join, m4_joinall, m4_list_cmp, _m4_minmax): Replace m4sugar
32         macros based on $@ recursion [fast on M4 1.6, but quadratic on M4
33         1.4.x] with versions based on m4_for/m4_foreach [slow on 1.6, but
34         linear on 1.4.x].
35         * lib/m4sugar/m4sugar.m4 (m4_init): Dynamically load new file if
36         older M4 is assumed.
37         (m4_map_sep): Optimize.
38         (m4_max, m4_min): Refactor, by adding...
39         (_m4_max, _m4_min, _m4_minmax): ...more efficient helpers.
40         (m4_defn, m4_popdef, m4_undefine): Use foreach recursion.
41         * lib/m4sugar/Makefile.am (dist_m4sugarlib_DATA): Distribute new
42         file.
43         * tests/m4sugar.at (M4 loops): Add a stress test that takes
44         forever if m4_foreach and friends are quadratic.
45         * NEWS: Mention this.
47 2008-07-21  Eric Blake  <ebb9@byu.net>
49         Ignore undefined macros, necessary with m4 1.6.
50         * bin/autoupdate.in (_au___undefine): New macro,...
51         (_au__undefine): ...wrapped by ifdef to silence m4 warnings.
52         Reported by Ralf Wildenhues.
54         Resync with gnulib.
55         * GNUmakefile: Grab from upstream, to fix issue where 'make
56         install' would allow installation of stale version string.
58 2008-07-19  Eric Blake  <ebb9@byu.net>
60         Support multiple arguments to m4_defn, m4_popdef, and m4_undefine.
61         * lib/m4sugar/m4sugar.m4 (m4_defn, m4_popdef, m4_undefine): Loop
62         through all variables, per POSIX and newer m4.
63         (_m4_text_wrap): Exploit the looping capabilities.
64         * tests/m4sugar.at (m4@&t@_defn): Test this.
65         * NEWS: Document it.
66         * doc/autoconf.texi (Redefined M4 Macros) <m4_defn, m4_popdef>
67         <m4_undefine>: Likewise.
69         Reduce overhead of m4_builtin([defn]).
70         * lib/m4sugar/m4sugar.m4 (_m4_defn, _m4_popdef, _m4_undefine): New
71         internal macros, which are slightly more efficient than
72         m4_builtin([defn]) and company.
73         (m4_defn, m4_popdef, m4_undefine, m4_warn, m4_ifset)
74         (_m4_dumpdefs_up, _m4_dumpdefs_down, _m4_wrap, m4_for)
75         (_m4_divert_n_stack, m4_divert_pop, m4_expansion_stack_push)
76         (m4_expansion_stack_dump, _m4_defun_pro, _m4_defun_epi)
77         (_m4_defun_epi_outer, _m4_require_call, m4_combine, m4_append)
78         (_m4_append_uniq, m4_append_uniq_w, _m4_text_wrap, m4_text_box)
79         (m4_version_prereq): Use them.
81         Use warnings from m4 when available.
82         * lib/m4sugar/m4sugar.m4 (m4_defn, m4_popdef, m4_undefine): Don't
83         define slower wrapper if m4 will warn on our behalf; key off of
84         __m4_version__, added alongside the new warnings in m4 1.6.
85         * tests/m4sugar.at (m4@&t@_defn): New test.
87 2008-07-18  Eric Blake  <ebb9@byu.net>
89         Add m4_joinall.
90         * lib/m4sugar/m4sugar.m4 (m4_joinall, _m4_joinall): New macros.
91         * tests/m4sugar.at (m4@&t@_join): Test them.
92         * doc/autoconf.texi (Text processing Macros) <m4_join>: Document
93         m4_joinall.
94         * NEWS: Likewise.
96 2008-07-17  Stepan Kasal  <skasal@redhat.com>
97         and Eric Blake  <ebb9@byu.net>
99         Improve documentation of config.h.in template rules.
100         * doc/autoconf.texi (Header Templates): Mention rules on comments
101         and whitespace, and that the user cannot rely on #undef to survive
102         through config.status.
104 2008-07-16  Eric Blake  <ebb9@byu.net>
106         Revert m4_prepend; it is less efficient, and unused by bison.
107         * lib/m4sugar/m4sugar.m4 (m4_prepend, m4_prepend_uniq)
108         (m4_prepend_uniq_w): Delete addition from 2008-07-11.
109         (_m4_grow_uniq_1): Rename back...
110         (_m4_append_uniq): ...to this.
111         * NEWS: Revert NEWS blurb.
112         * doc/autoconf.texi (Text processing Macros) <m4_prepend>: Delete.
113         * tests/m4sugar.at (m4@&t@_prepend): Delete.
115 2008-07-15  Eric Blake  <ebb9@byu.net>
117         Avoid failure if version.m4 is omitted but m4_PACKAGE_* unused.
118         * lib/m4sugar/m4sugar.m4 (m4_version_compare): Provide alternate
119         definition for non-Autoconf clients of m4sugar.
121 2008-07-14  Eric Blake  <ebb9@byu.net>
123         Tighten bound of potential speed of m4_append.
124         * doc/autoconf.texi (Text processing Macros) <m4_append>
125         <m4_prepend>: If m4 is fixed, m4_append can be linear rather than
126         O(n log n).
127         * lib/m4sugar/m4sugar.m4 (m4_append, m4_append_uniq): Fix comments.
128         Analysis by Bruno Haible.
130 2008-07-11  Eric Blake  <ebb9@byu.net>
132         Inherit improvements from bison's fork of m4sugar.
133         * lib/m4sugar/m4sugar.m4 (m4_PACKAGE_VERSION): Ignore failure to
134         find version.texi, since bison does not provide it.
135         (m4_prepend): Add new macro, from bison.
136         (m4_prepend_uniq, m4_prepend_uniq_w): Add new macros, for
137         completeness.
138         (_m4_append_uniq): Rename...
139         (_m4_grow_uniq_1): ...to this to share implementation, and
140         optimize initial assignment.
141         (m4_append_uniq_w): Adjust caller.
142         * NEWS: Document new macros.
143         * doc/autoconf.texi (Text processing Macros) <m4_append>: Mention
144         speed consideration.
145         <m4_prepend>: Document the new prepend variants.
146         * tests/m4sugar.at (m4@&t@_prepend): New test.
148         Work around M4 1.6 warning on undefined macros.
149         * lib/m4sugar/m4sugar.m4 (changeword, symbols): Don't rename if
150         not already available as builtins.
152 2008-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
154         * doc/autoconf.texi (@dvar): Remove trailing newline.
155         (@ovar): Likewise.  Fix macro documentation.
157 2008-07-02  Stepan Kasal  <skasal@redhat.com>
159         Add quotes to the header of autoscan-generated source.
160         * bin/autoscan.in: Add quotes to AC_PREREQ and AC_INIT.
162 2008-06-28  Andreas Schwab  <schwab@suse.de>
164         * doc/autoconf.texi (autoscan Invocation): Fix spacing.
165         (autoconf Invocation): Likewise.
166         (autoreconf Invocation): Likewise.
167         (autoheader Invocation): Likewise.
168         (autom4te Invocation): Likewise.
170 2008-06-19  Eric Blake  <ebb9@byu.net>
172         Add comment explaining recent patch.
173         * lib/autotest/general.m4 (AT_INIT) <at_pass_list>: Explain choice
174         of * vs. ? globbing.
176 2008-06-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
178         * lib/autoconf/status.m4 (_AC_OUTPUT_LINK): Do not warn when not
179         linking a file to itself.
180         Report by Bruno Haible.
182 2008-06-19  Eric Blake  <ebb9@byu.net>
184         Resync with gnulib.
185         * GNUmakefile: Grab from upstream, to fix VPATH 'make dist' bug.
186         Reported by Stepan Kasal.
188 2008-06-18  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
190         Reorganize autotest files, factorize for parallel execution.
191         * lib/autotest/general.m4 (AS_MESSAGE_LOG_FD): Move definition
192         earlier in the file.
193         (AT_INIT): Create line number cache in
194         $at_suite_dir/at-source-lines.
195         <at_helper_dir>: New directory at-groups below $at_suite_dir.
196         Add comment explaining the new directory structure.
197         (at_func_group_prepare, at_func_group_postprocess): New shell
198         functions to factorize per-test group work.  Keep the actual
199         test execution outside of a shell function in order to avoid
200         zsh 4.x exit status bugs.
201         <at_check_line_file, at_status_file, at_stdout, at_stder1>
202         <at_stderr, at_test_source>: Turn these into per-group files
203         below $at_helper_dir.  Also store test results there in files
204         named pass, fail, xpass, xfail, skip.  Let the parent collect
205         results from $at_helper_dir.  Adjust summary statistics
206         computation and result output.
208 2008-06-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
210         Fix '#undef variable /* comment */' transform in config headers.
211         * lib/autoconf/status.m4 (_AC_OUTPUT_HEADERS_PREPARE): For
212         undefined preprocessor macros that are followed by a comment
213         in the header template, do not create nested comments in the
214         output.
215         * tests/torture.at (@%:@define header templates): Extend test.
216         * NEWS: Update.
217         Report by Karsten Hopp <karsten@redhat.com>.
219 2008-06-09  Eric Blake  <ebb9@byu.net>
221         Mark AC_TYPE_SIGNAL as obsolete.
222         * lib/autoconf/types.m4 (AC_TYPE_SIGNAL): Switch to AU_DEFUN.
223         * doc/autoconf.texi (Function Portability): Update documentation.
224         (Particular Types): Move AC_TYPE_SIGNAL...
225         (Obsolete Macros): ...here, and mention why.
226         * NEWS: Mention the change.
228         Allow lib64 as a default X library location.
229         * lib/autoconf/libs.m4 (_AC_PATH_X_XMKMF): Add lib64.
230         * NEWS: Mention the change.
231         * THANKS: Update.
232         Reported by Brad Walker.
234 2008-06-05  Eric Blake  <ebb9@byu.net>
236         Fix regression in AT_KEYWORDS([Macro]), from 2007-10-18.
237         * lib/autotest/general.m4 (AT_KEYWORDS): Expand argument prior to
238         converting it to lower case.
239         * tests/autotest.at (Keywords and ranges): Test this.
240         * NEWS: Document the fix.
241         * THANKS: Update.
242         Reported via Karsten Hopp, by Jochen Schmitt in
243         https://bugzilla.redhat.com/show_bug.cgi?id=449973
245 2008-06-03  Eric Blake  <ebb9@byu.net>
247         Fix 'make dist' regression from 2008-05-08.
248         * Makefile.am (INSTALL): Add rule, to accomodate 'make dist' after
249         GNUmakefile's _autoconf rule removes INSTALL.
251 2008-05-27  Eric Blake  <ebb9@byu.net>
253         Document Solaris /bin/sh redirection pitfall.
254         * doc/autoconf.texi (File Descriptors): Mention redirection bug.
256 2008-05-14  Eric Blake  <ebb9@byu.net>
258         Improve documentation of ! issues.
259         * doc/autoconf.texi (Limitations of Builtins) <!>: Touch up.
260         Reported by Noah Misch.
262         Document some FreeBSD shell bugs.
263         * doc/autoconf.texi (Limitations of Builtins) <!>: Mention ! issue
264         in compound pipe commands.
265         <export>: Mention difference of exporting an undefined variable.
266         (Shell Functions): Mention loss of $? in entry to shell functions.
267         Extracted from the git mailing list.
269 2008-05-13  Stepan Kasal  <kasal@ucw.cz>
271         Work around MSYS and Cygwin bugs when dealing with trailing space.
272         * tests/atlocal.in (func_sanitize_dir_name): Let atlocal succeed,
273         even when platform bugs are tickled.
274         Reported by Keith Marshall and Eric Blake.
276 2008-05-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
278         Let AC_MSG_FAILURE report pwd.
279         * lib/autoconf/general.m4 (_AC_ARG_VAR_VALIDATE, AC_MSG_FAILURE):
280         Output $ac_pwd along with fatal failure.
281         * tests/torture.at (Deep Package): Extend test.
282         Reported numerous times against GCC, and probably other packages.
284 2008-05-12  Eric Blake  <ebb9@byu.net>
286         Enforce --help and --version compliance.
287         * configure.ac (AM_INIT_AUTOMAKE): Add std-options option.
289 2008-05-08  Keith Marshall  <keithmarshall@users.sourceforge.net>  (tiny change)
291         Avoid case-insensitive `make install' vs. `INSTALL' conflict.
292         * Makefile.am ($(srcdir)/INSTALL): Replace all references...
293         ($(abs_srcdir)/INSTALL): ...with this.
295 2008-05-06  Eric Blake  <ebb9@byu.net>
297         Fix typo.
298         * doc/autoconf.texi (Shell Substitutions): Drop at_ prefix.
300         Avoid overfull \hbox.
301         * doc/autoconf.texi (Versioning): Reword to fit line size.
303         Document $(( )) pitfalls.
304         * doc/autoconf.texi (Shell Substitutions): Mention octal
305         vs. decimal.  Mention autotest's at_func_arith.
307         Improve behavior of './testsuite 01'.
308         * lib/autotest/general.m4 (AT_INIT) <at_func_validate_ranges>:
309         Alter usage to eval its arguments, in order to normalize away
310         leading zero.  All callers updated.
311         * tests/autotest.at (Keywords and ranges): Test range
312         normalization with leading 0.
314 2008-04-26  Eric Blake  <ebb9@byu.net>
316         Mention Solaris /usr/ucb/tr pitfall.
317         * doc/autoconf.texi (Limitations of Usual Tools) <tr>: Add section.
318         Reported by Bruno Haible and Jim Meyering.
320 2008-04-24  Eric Blake  <ebb9@byu.net>
322         Mention m4sugar's internal quote strings.
323         * doc/autoconf.texi (Quadrigraphs): Mention alternate quote used
324         in m4sugar, and how to still output it literally.
325         * tests/m4sugar.at (m4@&t@_split): And test it.
326         Reported by Joel E. Denny.
328 2008-04-23  Eric Blake  <ebb9@byu.net>
330         Allow unbalanced () in m4_expand.
331         * lib/m4sugar/m4sugar.m4 (m4_expand, _m4_expand): Use more complex
332         quotes.
333         (m4_noquote, _m4_split): Use consistent complex quote.
334         * tests/autotest.at (Left paren, Right paren): Test this.
335         (Parentheses): Ensure new quadrigraphs still work.
336         (AT_CHECK_AT_TITLE_CHAR): All title char tests exercise m4_expand.
337         * NEWS: Mention the fix.
338         * doc/autoconf.texi (Quadrigraphs): Revert mention of macros that
339         require quadrigraphs for ().
340         (Evaluation Macros) <m4_expand>: Relax the restriction against
341         unbalanced ().
342         (Pretty Help Strings) <AS_HELP_STRING>: Likewise.
343         (Writing Testsuites) <AT_SETUP>: Likewise.
344         Reported by Joel E. Denny, fix suggested by Noah Misch.
346 2008-04-22  Eric Blake  <ebb9@byu.net>
348         Support unbalanced () in AT_SETUP by adding two new quadrigraphs.
349         * bin/autom4te.in (handle_output): Substitute @{:@ and @:}@.
350         (handle_traces): Likewise.
351         * lib/m4sugar/m4sugar.m4 (m4_qlen): Account for new quadrigraphs.
352         * tests/autotest.at (AT_CHECK_AT_TITLE_CHAR): Add new tests.
353         * doc/autoconf.texi (Quadrigraphs): Document them.
354         (Evaluation Macros) <m4_expand>: Enhance documentation.
355         (Text processing Macros) <m4_text_box>: Document cases where
356         quadrigraphs can help for problemetic unbalanced parentheses.
357         (Pretty Help Strings) <AS_HELP_STRING>: Likewise.
358         (Writing Testsuites) <AT_SETUP>: Likewise.
359         (Limitations of Builtins) <case>: Consolidate text on unbalanced
360         parentheses, and add an example of creative comments.
361         * NEWS: Document the addition.
362         Reported by Joel E. Denny.
364 2008-04-16  Eric Blake  <ebb9@byu.net>
366         Document pdksh exec behavior.
367         * doc/autoconf.texi (Limitations of Builtins) <exec>: New
368         subsection.
369         Discovered by Jim Meyering.
371 2008-04-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
373         * tests/autotest.at (AT_CHECK_AT): Allow to pass additional
374         arguments to the inner suite.
375         (errexit, input from stdin): New tests.
377 2008-04-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
379         * NEWS: Post-release update.
381 2008-04-10  Eric Blake  <ebb9@byu.net>
383         AC_AUTOCONF_VERSION might contain arbitrary macro names.
384         * doc/autoconf.texi (Versioning): Mention problem with expansion.
385         * tests/tools.at (autoconf: AC_AUTOCONF_VERSION): Adjust test.
387 2008-04-09  Slava Sysoltsev <Viatcheslav.Sysoltsev@h-d-gmbh.de>  (tiny change)
389         Flush buffered output before exit.
390         * bin/autom4te.in (handle_output): Explicitly close file.
391         * THANKS: Update.
392         See http://lists.gnu.org/archive/html/autoconf/2008-04/msg00026.html.
394 2008-04-08  Eric Blake  <ebb9@byu.net>
396         Generate web docs for 2.62.
397         * doc/autoconf.texi (Evaluation Macros): Fix typo.
398         (Notices): Use recommended means to escape RCS keyword.
399         * cfg.mk (gnulib_dir): New macro.
400         (web-manual): New target.
402 2008-04-05  Eric Blake  <ebb9@byu.net>
404         Release Version 2.62.
405         * NEWS: Mention the release.
407 2008-04-04  Stepan Kasal  <kasal@ucw.cz>
408         and Eric Blake  <ebb9@byu.net>
410         Return back to GPLv2+, until the text of the exceptions is
411         finalized, reverting the change from 2007-07-03 and the first
412         part of the change from 2007-07-20.
413         * COPYING: Revert to GPLv2.
414         * COPYINGv3: New file, since some auxiliary build tools, used for
415         building autoconf and not installed, are GPLv3.
416         * Makefile.am (EXTRA_DIST): Distribute COPYINGv3.
417         * NEWS: Remove mention of GPLv3.
418         * README: Clarify situation regarding GPLv3.
420 2008-04-05  Eric Blake  <ebb9@byu.net>
422         Prepare for release.
423         * maint.mk (announcement): Avoid deleted option.
424         * cfg.mk (release_archive_dir): Use default.
425         * build-aux/gnupload: New file, from automake/gnulib.
426         * Makefile.am (EXTRA_DIST): Distribute it.
427         * .x-sc_two_space_separator_in_usage: New file, to exempt gnupload
428         from syntax check.
430 2008-04-05  Jim Meyering  <meyering@redhat.com>
431         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
433         Work around CR EOL markers on OS/2 (www.ecomstation.com Ecs v2 rc4)
434         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE): When CR
435         is the EOL marker, skip a step that would remove and translate
436         carriage return bytes.
437         * THANKS: Update.
438         Reported by Elbert Pol.
440 2008-04-05  Eric Blake  <ebb9@byu.net>
442         Avoid some autoreconf -Wall warnings.
443         * configure.ac: Use proper quoting, to be a good example.
444         (PACKAGE_NAME): Remove setting covered by autoconf.
445         (AM_INIT_AUTOMAKE): Bump automake requirement, for html rules.
446         * doc/Makefile.am (TEXI2DVI): Remove settings covered by
447         automake.
448         (html, autoconf_1.html, standards_1.html): Likewise.
449         (TEXI2HTML, TEXI2HTML_FLAGS): Remove unused macros.
450         * Makefile.am (html): Likewise.
451         * doc/autoconf.texi (Quoting and Parameters): Add missing section
452         name.
453         * tests/Makefile.am (AUTOMAKE_OPTIONS): Intentionally ignore
454         warning about our override, until Automake is fixed.
455         * README-hacking: Document minimum requirements for bootstrap.
457 2008-04-03  Eric Blake  <ebb9@byu.net>
459         Fix version number generation in man pages.
460         * Makefile.am (EXTRA_DIST): Distribute .version.
461         (.version): New rule.
462         * man/Makefile.am (common_dep): Depend on .version, not
463         configure.ac.
464         (.x.1): Use package name for version string.
465         * GNUmakefile [!_have-Makefile]: Sync from upstream, again.
466         * build-aux/git-version-gen: Sync from upstream.
468         More maintainer tweaks: pass 'make maintainer-distcheck'.
469         * GNUmakefile (_is-dist-target): Sync from upstream.
470         * build-aux/vc-list-files: Sync from upstream, yet again.
471         * tests/atlocal.in (unsupported_fs_chars): Always remove tdir.
472         * tests/Makefile.am (EXTRA_DIST): Don't distribute the built
473         package.m4.
474         * lib/autoconf/general.m4 (_AC_INIT_COPYRIGHT): Bump year.
476         Fix VPATH 'make syntax-check'.
477         * maint.mk (VC_LIST, VC_LIST_EXCEPT, sc_changelog)
478         (sc_prohibit_jm_in_m4, makefile-check): Support VPATH.
479         (author_mark_check): Avoid error message.
480         * build-aux/vc-list-files: Sync from upstream again.
481         * build-aux/texinfo.tex: Likewise.
483         Sync files from upstream, and pass 'make syntax-check'.
484         * config/announce-gen: Move...
485         * build-aux/announce-gen: ...here, and sync from gnulib.
486         * Makefile.am (EXTRA_DIST): Adjust accordingly.
487         * cfg.mk (announce_gen): Likewise.
488         (prev_version_file): Delete, relying on default in maint.mk.
489         (gpg_key_ID): New macro.
490         (url_dir_list): Rewrite to match coreutils.
491         * config/prev-version.txt: Move...
492         * .prev-version: ...here, and adjust to 2.61.
493         * build-aux/vc-list-files: Sync from coreutils.
494         * maint.mk: Resynchronize with coreutils, where possible.
495         (ME): Remove $(srcdir) from definition.
496         (CVS): Delete.
497         (GIT, VC, VC-tag): New macros.
498         (CVS_LIST, CVS_LIST_EXCEPT): Rename...
499         (VC_LIST, VC_LIST_EXCEPT): ...to this.
500         (cvs-tag-check): Delete.
501         (cvs-diff-check): Rename...
502         (vc-diff-check): ...to this.
503         (sc_file_system): Allow FHS acronym.
504         * doc/autoconf.texi (Particular Functions): Recommend
505         unconditional <config.h>.
506         * build-aux/config.guess: Sync from upstream (manually).
507         * build-aux/config.sub: Likewise.
508         * build-aux/texinfo.tex: Likewise.
509         * doc/make-stds.texi: Likewise.
510         * doc/standards.texi: Likewise.
511         * .gitattributes: Ignore whitespace problems in upstream files.
513 2008-04-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
515         * doc/autoconf.texi (Limitations of Usual Tools): Mention awk %u
516         bug on HP-UX/IA.
517         Report by Peter O'Gorman.
519 2008-04-02  Eric Blake  <ebb9@byu.net>
521         Recommend the just-released M4 1.4.11.
522         * NEWS: Update recommendation.
523         * README: Likewise.
524         * doc/autoconf.texi (Introduction): Likewise.
525         * m4/m4.m4 (AC_PROG_GNU_M4): Likewise.
527 2008-04-01  Eric Blake  <ebb9@byu.net>
529         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Bump
530         copyright year.
532 2008-03-28  Peter O'Gorman  <peter@pogma.com>
534         Find X11 on Mac OS X too.
535         * lib/autoconf/libs.m4 (_AC_PATH_X_DIRECT,_AC_PATH_X_XMKMF):
536         Check for libX11 with extensions dylib la and dll too.
537         * THANKS: Update.
538         Reported by Martin Costabel.
540 2008-03-28  Eric Blake  <ebb9@byu.net>
542         Update TODO based on completed tasks.
543         * TODO (AC_PROG_INSTALL takes multiple files): Done.
544         (AC_GNU_SOURCE deprecation): Done, see AC_USE_SYSTEM_EXTENSIONS.
545         (AC_COMPILE_IFELSE documentation): Done.
546         (Tracing builtins): Done, now that we require M4 1.4.5.
547         (AC_PROG_CC_POSIX suggestion, providing header files)
548         (AC_TYPE_SIGNAL): Not needed; gnulib's approach is better.
549         (cache consistency): Done with precious variables.
551 2008-03-26  Eric Blake  <ebb9@byu.net>
553         Document --trace=macro:format in --help output.
554         * bin/autom4te.in (help): Mention optional trace format.
555         * bin/autoconf.as (usage): Likewise.
557         * doc/autoconf.texi (Limitations of Usual Tools) <sed>: Fix
558         typos in last patch.
559         Reported by Ralf Wildenhues.
561 2008-03-26  Jim Meyering  <meyering@redhat.com>
563         Fix texinfo syntax error.
564         * doc/autoconf.texi (Limitations of Usual Tools): s/@kbd {/@kbd{/
566 2008-03-26  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
568         Warn, not fail on whitespace-only precious variable differences.
569         * lib/autoconf/general.m4 (_AC_ARG_VAR_VALIDATE): Output
570         precious variable differences less ambiguous with `ugly-quotes'.
571         If their settings differ only in whitespace, do not fail, but
572         reuse the old value.
573         * tests/torture.at (AT_CHECK_AC_ARG_VAR): Extend macro to allow
574         an optional status and expected-warning argument.  Fix m4
575         quotation for initial value.
576         (AC_ARG_VAR): Also test for whitespace-only differences, and
577         that the old value is retained in this case.
578         * doc/autoconf.texi (Setting Output Variables): Document this.
579         * NEWS: Update.
580         Report and initial patch by Paolo Bonzini.
582 2008-03-26  Eric Blake  <ebb9@byu.net>
584         Document busybox sed bug.
585         * doc/autoconf.texi (Limitations of Usual Tools) <sed>: Mention
586         restrictions when using back-references.
587         Reported by Vincent Lefevre:
588         <http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/13013>.
590         Document Automake interaction with AC_CONFIG_MACRO_DIR.
591         * doc/autoconf.texi (Input): Mention ACLOCAL_AMFLAGS for automake
592         users.
593         * THANKS: Update.
594         Reported by Chris Pickett.
596 2008-03-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
598         * tests/autotest.at (Using atlocal): Quote instances of `pwd`.
600         * tests/local.at (AT_CHECK_M4): Factorize warning output
601         normalization.
602         Suggested by Eric Blake.
604 2008-03-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
606         Fix .exe-related test failure on MinGW.
607         * tests/local.at (AT_CHECK_M4): Normalize `/bin/m4.exe' correctly
608         for comparing warning output.
610         Fix Fortran testsuite failures with gfortran 4.3.
611         * lib/autoconf/fortran.m4 (_AC_PROG_FC_V_OUTPUT): When scanning
612         verbose compiler output, skip lines that set variables; gfortran
613         4.3 sets LIBRARY_PATH, COMPILER_PATH, COLLECT_GCC_OPTIONS.
614         * THANKS: Update.
615         Report by Vincent Lefèvre.
617 2008-03-21  Eric Blake  <ebb9@byu.net>
619         * GNUmakefile: Resynchronize with gnulib.
621         Document more uses of $cross_compiling.
622         * doc/autoconf.texi (Runtime): Document that a temporary override
623         is permissible.
624         * THANKS: Update.
625         Reported by Ineiev, example by Ralf Wildenhues.
627         Don't swallow $1 in textual local variables.
628         * lib/m4sugar/m4sugar.m4 (m4_combine): Don't use overquoting and
629         expansion of text arguments, as that swallows $1.
630         (m4_text_wrap): Likewise, by splitting out...
631         (_m4_text_wrap): ...new helper macro.  Also, allow arbitrary
632         expression for width.
633         * tests/m4sugar.at (m4@&t@_text_wrap): Test this.
634         (m4@&t@_combine): Likewise.
636 2008-03-21  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
638         Avoid leftover files on Leopard.
639         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT): Remove a.out.dSYM
640         directory created on darwin.
641         (AC_NO_EXECUTABLES): Likewise; also remove objects which may be
642         left over from a broken link.
643         * tests/c.at (AC_NO_EXECUTABLES (working linker))
644         (AC_NO_EXECUTABLES (broken linker)): New tests.
645         Report by Gary V. Vaughan.
647         * lib/autom4te.in (Automake-preselections): Trace
648         _AM_COND_IF, _AM_COND_ELSE, _AM_COND_ENDIF.
650 2008-03-20  Eric Blake  <ebb9@byu.net>
652         Kill more CVS references.
653         * README-cvs: Delete.  See README-hacking instead.
654         * README-hacking: Update wording, based on older file.
655         * BUGS: Remove CVS mention.
657 2008-03-20  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
659         * tests/tools.at (autotools and whitespace in file names): Skip
660         if aclocal is not present.
662 2008-03-20  Eric Blake  <ebb9@byu.net>
664         Sync GNUmakefile with gnulib.
665         * GNUmakefile (Makefile.cfg): Rename...
666         (cfg.mk): ...to this, and make optional.
667         (GNUmakefile.cfg): Delete, redundant with cfg.mk.
668         (Makefile.maint): Rename...
669         (maint.mk): ...to this.
670         (all) [!_have-Makefile]: Rename...
671         (abort-due-to-no-makefile): ...to this, and invoke via
672         .DEFAULT_GOAL to pick up all targets.
673         * Makefile.cfg: Rename...
674         * cfg.mk: ...to this.
675         * Makefile.maint: Rename...
676         * maint.mk ...to this.
677         (ME): Reflect name change.
678         (makefile-check, m4-check, author_mark_check, msg): Use $(ME)
679         rather than hard-coded name.
680         * GNUmakefile.cfg: Delete; move rules into cfg.mk.
681         * Makefile.am (EXTRA_DIST): Reflect file name changes.
682         * .x-sc_prohibit_atoi_atof: Likewise.
683         * lib/freeze.mk: Likewise.
685 2008-03-19  Stepan Kasal  <kasal@ucw.cz>
687         * doc/autoconf.texi (Introduction): Improve the paraphrase of
688         Henry Spencer's quotation.
690 2008-03-19  Eric Blake  <ebb9@byu.net>
692         AC_CONFIG_HEADERS replaced AC_CONFIG_HEADER.
693         * bin/autoscan.in (output): Avoid obsolete spelling.
694         * tests/local.at (AC_STATE_SAVE): Update usage.
695         * THANKS: Update.
696         Reported by John Calcote.
698         Emphasize that ease of configure triumphs over ease of autoconf.
699         * doc/autoconf.texi (Introduction): Expand on primary
700         vs. secondary goal of autoconf.
701         * THANKS: Update.
702         Inspired by Paul Smith.
704 2008-03-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
706         * lib/Autom4te/FileUtils.pm (handle_exec_errors): New argument
707         $hint, show if the executing program does not exist.
708         (xsystem_hint): New function, like xsystem but allows to pass
709         a hint.
710         * bin/autoreconf.in: Use xsystem_hint for spawning autopoint and
711         libtoolize.
712         Report by Bruce Korb.
714 2008-03-14  Stepan Kasal  <kasal@ucw.cz>
716         * lib/Autom4te/ChannelDefs.pm, tests/fortran.at,
717         tests/mktests.sh, tests/wrapper.as: Fix typos.
719 2008-03-12  Eric Blake  <ebb9@byu.net>
721         Fix yesterday's regression in m4_wrap([$1]).
722         * lib/m4sugar/m4sugar.m4 (_m4_wrap): Don't directly invoke wrapped
723         text, since it may contain text that looks like parameters.
724         * tests/m4sh.at (AS@&t@_INIT cleanup): Enhance test.
726 2008-03-11  Eric Blake  <ebb9@byu.net>
728         Improve error messages for common testsuite bugs.
729         * lib/autotest/general.m4 (_AT_DEFINE_INIT, _AT_DEFINE_SETUP): New
730         macros for defining order-enforced macros.
731         (AT_INIT, AT_SETUP, AT_CLEANUP, AT_BANNER, AT_XFAIL_IF)
732         (AT_CAPTURE_FILE, AT_DATA, AT_CHECK, AT_CHECK_NOESCAPE): Add error
733         messages when order violations are detected.
734         * tests/autotest.at (AT_CHECK_AT_SYNTAX): New helper macro.
735         (AT_SETUP without AT_INIT, AT_BANNER without AT_INIT)
736         (AT_CLEANUP without AT_INIT, Missing AT_CLEANUP)
737         (AT_CHECK without AT_SETUP, AT_DATA without AT_SETUP)
738         (AT_XFAIL_IF without AT_DATA, AT_KEYWORDS without AT_SETUP,
739         (AT_CLEANUP without AT_SETUP, AT_BANNER inside AT_SETUP)
740         (AT_SETUP inside AT_SETUP, Multiple AT_INIT)
741         (Banner-only test suite): New tests.
742         Reported by Christopher Hulbert.
744         Tweak m4_wrap to force FIFO or LIFO semantics.
745         * lib/m4sugar/m4sugar.m4 (m4_wrap): Override M4 implementation.
746         (m4_wrap_lifo, _m4_wrap): New macros.
747         * lib/m4sugar/m4sh.m4 (AS_INIT): Combine all cleanup into known
748         order, prior to m4sugar's.
749         (_AS_DETECT_BETTER_SHELL): Use cleanup parameter, rather than
750         m4_wrap.
751         * lib/autotest/general.m4 (AT_INIT): Combine all cleanup into
752         known order, prior to m4sh's.
753         * doc/autoconf.texi (Diagnostic Macros) <m4_fatal>: Document
754         argument.
755         (Redefined M4 Macros) <m4_wrap>: Rewrite documentation to match
756         new behavior.
757         * tests/m4sh.at (AS_INIT cleanup): New test.
758         * NEWS: Document the change.
760 2008-03-10  Eric Blake  <ebb9@byu.net>
762         Encode nested autotest data.
763         * tests/autotest.at (AT_CHECK_AT_PREP): Avoid raw AT_ in output.
764         (unusual file names): Likewise.
765         (m4_pattern_allow): Remove loophole, to make it easier to catch
766         poorly written tests.
768         Factor some autotest tests.
769         * tests/autotest.at (AT_CHECK_AT_PREP): New macro, to factor out
770         common initialization.
771         (AT_CHECK_AT, Banners, Keywords and ranges, srcdir propagation)
772         (whitespace in absolute testdir, unusual file names): Use it.
774 2008-03-06  Eric Blake  <ebb9@byu.net>
776         Minor documentation fix.
777         * doc/autoconf.texi (Evaluation Macros): Fix typo.
779 2008-03-04  Eric Blake  <ebb9@byu.net>
781         Make AT_CHECK act like a simple command.
782         * lib/autotest/general.m4 (_AT_CHECK): Wrap commands in {;}.
783         * tests/torture.at (AT_CHECK_CONFIG_CREATION_NOWRITE): Test it.
785 2008-03-04  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
787         On MinGW, substitution of CR and 0xFF fails.
788         * tests/torture.at (Substitute and define special characters):
789         MinGW awk cannot handle 0xFF, and on MinGW, the test does the
790         wrong thing for CR.
792 2008-03-04  Eric Blake  <ebb9@byu.net>
794         Pull in recent maintainer improvements from coreutils.
795         * GNUmakefile (_is-dist-target): 'make distclean' should not
796         trigger autoreconf.
797         (_dummy): Change directories before removing autom4te.cache.
798         (check dist distcheck install) [!_have-Makefile]: Provide nicer
799         diagnostics.
800         * configure.ac (AC_CONFIG_LINKS): Copy GNUmakefile into VPATH
801         builds, after initial bootstrap.
802         * Makefile.am (distclean-local): Work around current automake bug.
803         * Makefile.maint (ME): Allow VPATH usage.
805         Use git-merge-changelog when available.
806         * .gitattributes: New file.
807         * README-hacking: Document use of git-merge-changelog.
809         Work around cygwin bug.
810         * tests/atlocal.in (unsupported_fs_chars): Avoid cygwin bug where
811         "touch 't\'" creates regular file 't'.
813         Ignore tests that require read-only directories under root.
814         * tests/torture.at (AT_CHECK_CONFIG_CREATION_NOWRITE): Skip
815         no-write portion if user has root-like privileges.
817 2008-03-04  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
819         * lib/autotest/general.m4 (AT_INIT): Fix detection of '-C -'.
821 2008-03-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
823         autoreconf -m now honors $MAKE.
824         * bin/autoreconf.in ($run_make): Renamed from ...
825         ($make): ... this.  Use now as command to run `make',
826         overridden by $MAKE.  Document this in --help output.
827         * doc/autoconf.texi (autoreconf Invocation): Document
828         all environment variables honored by autoreconf.
829         * NEWS: Update.
830         Report by Paul Eggert.
832 2008-03-03  Eric Blake  <ebb9@byu.net>
834         Documentation improvements.
835         * doc/autoconf.texi (Looping constructs): s/recurses/repeats/.
836         (Evaluation Macros): Drop `1' suffix from metasyntax variable name
837         that preceeds @dots.  Improve wording.
838         (Text processing Macros): Drop `1' suffix from metasyntax variable
839         name that preceeds @dots.
840         (Number processing Macros): Drop `1' suffix from metasyntax
841         variable name that preceeds @dots.  Improve wording.
842         * lib/m4sugar/m4sugar.m4 (m4_cmp): Comment wording fix.
843         Suggested by Ralf Wildenhues.
845 2008-03-02  Jim Meyering  <meyering@redhat.com>
847         Don't infloop upon "make dist".
848         * GNUmakefile: Merge from coreutils.
849         * Makefile.am (dist-hook): Inject .tarball-version into tarball,
850         not .version.
851         * configure.ac (AC_INIT): Use .tarball-version, not .version.
852         * build-aux/git-version-gen: Update from gnulib.
854 2008-03-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
856         * tests/torture.at (AC_CONFIG_FILES, HEADERS, LINKS and COMMANDS):
857         Before using /dev/full, check that it is a writable character
858         special device.
859         Report by Benoit Sigoure and Eric Blake.
861         Actually test that @configure_input@ is expanded correctly.
862         * tests/torture.at (AC_CONFIG_FILES, HEADERS, LINKS and COMMANDS):
863         Actually check generated file contents for the name of the
864         generated file, using AC_PROG_FGREP and $FGREP.
866 2008-03-01  Benoit Sigoure  <tsuna@lrde.epita.fr>
868         Be nice with file systems that don't handle unusual characters.
869         * tests/atlocal.in (func_sanitize_file_name)
870         (func_sanitize_dir_name): New shell functions.
871         * tests/tools.at (autom4te and whitespace in file names)
872         (autotools and whitespace in file names): Use them.
873         * tests/torture.at (AC_CONFIG_FILES, HEADERS, LINKS and COMMANDS):
874         Cover more potentially problemtic file names.  Use the new
875         functions.
877         Properly handle funny file names for headers in config.status.
878         The test suite did not cover this bug because the code was not
879         quoting properly the arguments of `rm -f' (which "fails" silently)
880         as well as the arguments of `diff' (whose output was redirected to
881         /dev/null so we couldn't see its error message).
882         * lib/autoconf/status.m4 (_AC_OUTPUT_HEADER): Properly quote the
883         file names passed to `rm' and `diff'.
884         * tests/torture.at (AC_CONFIG_FILES, HEADERS, LINKS and COMMANDS):
885         Add a regression test.
887 2008-03-01  Benoit Sigoure  <tsuna@lrde.epita.fr>
888         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
890         Properly expand @configure_input@ in config.status.
891         * lib/autoconf/status.m4 (_AC_OUTPUT_FILE, _AC_OUTPUT_MAIN_LOOP):
892         Escape the backslashes and ampersands in $configure_input before
893         using it in the sed replacement string to expand @configure_input@.
894         Report by Eric Blake and Patrick Welche.
896 2008-03-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
898         Ignore errors from ./run on w32.
899         * tests/autotest.at (whitespace in absolute testdir):
900         Ignore stderr for `./run' which fails to remove the
901         busy test directory on w32.
903 2008-02-22  Eric Blake  <ebb9@byu.net>
905         Improve documentation for writing autotest suites.
906         * doc/autoconf.texi (Writing Testsuites) <AT_CHECK>: Mention that
907         checks must live inside a test group.
908         Reported by Christopher Hulbert.
910 2008-02-21  Eric Blake  <ebb9@byu.net>
912         Sync git-version-gen from upstream.
913         * build-aux/git-version-gen: Pull from gnulib.
914         * configure.ac (AC_INIT): Adjust to new calling convention.
916 2008-02-12  Eric Blake  <ebb9@byu.net>
918         Avoid trailing space in config.h with AC_DEFINE([var], []).
919         * lib/autoconf/general.m4 (_AC_DEFINE_Q): Explicitly mark empty
920         defines with a comment.
922 2008-02-08  Eric Blake  <ebb9@byu.net>
924         Fix texinfo typos in previous patch.
925         * doc/autoconf.texi (Site Defaults): s/[{}]/@&/g.
926         Reported by Ralf Wildenhues.
928         Describe a config.site that can be used for FHS compliance.
929         * doc/autoconf.texi (Site Defaults): Fix typo.  Add new example
930         for FHS.
931         * THANKS: Update.
932         Reported by Jules Colding and Ralf Wildenhues.
934 2008-02-02  Eric Blake  <ebb9@byu.net>
936         * doc/autoconf.texi (Limitations of Usual Tools) <grep>: Fix typo.
938 2008-02-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
940         * lib/autotest/general.m4 (AT_INIT): Fix --clean to work
941         again, broken since introduction of `-C dir'.
942         * tests/autotest.at (Choosing where testsuite is run): Test it.
944 2008-01-30  Paul Eggert  <eggert@cs.ucla.edu>
946         * doc/autoconf.texi: Update Back-Cover text to reflect new GNU wording.
948 2008-01-29  Eric Blake  <ebb9@byu.net>
950         Fix more autotest regressions.
951         * lib/autotest/general.m4 (AT_LINE): Fix regression from
952         2007-10-04 when file name is `dnl'.
953         (AT_INIT) <PREPARE_TESTS>: Move command-line assignments...
954         <TESTS_BEGIN>: ...to this new diversion, to fix regression from
955         yesterday in libtool's testsuite.
956         (_AT_ARG_OPTION): Detect write failure.
957         * doc/autoconf.texi (Diversion support): Document PREPARE_TESTS to
958         make libtool's use kosher.  Document m4_init.
959         (Programming in M4sh): Document AS_INIT.
960         (Writing Testsuites): Document limitation of AT_DATA file name.
961         * tests/autotest.at (unusual file names): New test.
962         (Banners, Keywords and ranges): Use correct shell.
964         More corner cases in testsuite VAR=VALUE handling.
965         * lib/autotest/general.m4 (AT_INIT) <PREPARE_TESTS): Fix quoting
966         bug.
967         <PARSE_ARGS_END>: Also detect leading digits in assignments.
968         * tests/autotest.at (Using atlocal): Enhance test to catch last
969         bug.
971         * doc/autoconf.texi (Limitations of Builtins) <.>: Mention bash
972         bug.
974 2008-01-28  Eric Blake  <ebb9@byu.net>
976         Fix regression in handling VAR=VALUE arguments to testsuite.
977         * lib/autotest/general.m4 (AT_INIT) <PARSE_ARGS_END>: Detect
978         leading = as invalid.  Defer use of command-line variable
979         assignments...
980         <PREPARE_TESTS>: ...here, after atconfig has been sourced.  Fix
981         regression in sourcing files.
982         * tests/autotest.at (Using atlocal): New test to catch this.
983         (Debugging a successful test, Choosing where testsuite is run):
984         Use correct shell.
985         Reported by Ralf Wildenhues.
987         Document grep peculiarity.
988         * doc/autoconf.texi (Limitations of Usual Tools) <grep>: Document
989         BSD behavior on binary input.
991         Minor testsuite improvements.
992         * lib/autotest/general.m4 (AT_INIT) <PREPARE_TESTS>: Use fewer
993         forks when sanitizing PATH.  Always output machine information,
994         not just when atconfig was located.
996         Add 'testsuite -C dir'.
997         * lib/autotest/general.m4 (_AT_ARG_OPTION): Move missing argument
998         detection...
999         (AT_INIT) <PARSE_ARGS_END>: ...here, since -k always takes
1000         argument.
1001         <DEFAULTS>: Delay computation of variables based on $at_dir...
1002         <PREPARE_TESTS>: ...to here, since -C can change $at_dir.
1003         <TESTS>: Re-invoke via absolute name, since -C may be in effect.
1004         <PARSE_ARGS>: Parse new option.
1005         <HELP_TUNING>: Document it.
1006         * tests/autotest.at (Choosing where testsuite is run): New test
1007         for this feature.
1008         (Keywords and ranges): Add test for missing -k argument.
1009         * NEWS: Document this.
1010         * doc/autoconf.texi (testsuite Invocation): Likewise.
1012 2008-01-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1014         * build-aux/config.guess, build-aux/config.sub,
1015         build-aux/texinfo.tex: Sync from gnulib.
1016         * doc/fdl.texi, doc/make-stds.texi, doc/standards.texi:
1017         Likewise.
1019 2008-01-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1021         * doc/autoconf.texi (Particular Programs): Do not mention the
1022         Autoconf version in which the AC_PROG_INSTALL change was done.
1023         Suggested by Paul Eggert.
1025 2008-01-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1027         Fix --help=recursive with multiple AC_CONFIG_SUBDIRS.
1028         * lib/autoconf/general.m4 (_AC_INIT_HELP): If, for recursive help
1029         mode, we change to the source directory, also set $ac_pwd so we
1030         do not go back to the build tree for the next config subdir.
1031         * tests/torture.at (Deep Package): Extend test to contain two
1032         config subdirs on the top level.
1034         Fix parallel `maintainer-check'.
1035         * Makefile.am (maintainer-check-tests): Depend on `all'.
1036         Use `$(MAKE) $(AM_MAKEFLAGS)' instead of plain `make'.
1037         * tests/Makefile.am (maintainer-check-c++, maintainer-check-posix):
1038         Likewise.
1039         (maintainer-check): Serialize the testsuite runs.
1041         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ENABLE2): Accept `+'
1042         in feature string for --enable/--with.  Convert to underscore
1043         for variable name.
1045         * lib/autoconf/programs.m4 (AC_PROG_INSTALL): Require that
1046         `install -c file1 file2 dir' works.
1047         * doc/autoconf.texi (Particular Programs): Document this.
1048         * NEWS: Update.
1050 2008-01-21  Eric Blake  <ebb9@byu.net>
1052         Improve documentation about default include directives.
1053         * doc/autoconf.texi (Generic Headers, Generic Declarations)
1054         (Generic Structures, Generic Types)
1055         (Generic Compiler Characteristics): Add links to
1056         AC_INCLUDES_DEFAULT.
1057         Reported by Reuben Thomas.
1059 2008-01-15  Eric Blake  <ebb9@byu.net>
1061         * lib/m4sugar/m4sugar.m4 (m4_qlen): Use fewer macros.
1063 2008-01-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1065         * tests/Makefile.am (noinst_SCRIPTS): Renamed from
1066         check_SCRIPTS.  Building the wrappers for `all' allows help2man
1067         to use them for the manpages.
1068         Report by Benoit Sigoure.
1070         * bin/autoreconf.in: Discard stderr for $autoconf/$aclocal --help.
1072 2007-12-16  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1074         Fix some write failure cases in Autotest.
1075         * lib/autotest/general.m4 (AT_INIT): Do not exit successfully
1076         upon write failures for --help, --version, --list.
1077         Guard against write failures for intermediate created scripts.
1078         <at_func_create_debugging_script>: Do not make the debugging
1079         script executable if it is not complete.
1081 2007-12-12  Eric Blake  <ebb9@byu.net>
1083         Fix thinko in earlier patch - m4_join isn't defined yet.
1084         * lib/m4sugar/m4sugar.m4 (m4_expansion_stack_push, _m4_defun_pro)
1085         (_m4_defun_pro_outer, _m4_defun_epi, _m4_defun_epi_outer)
1086         (m4_require): Use m4_do, not m4_join.
1088         Fix some whitespace tests on cygwin.
1089         * tests/tools.at (autom4te and whitespace in file names): Restore
1090         font-lock.  Create $TMPDIR before it might be used.
1092         Fix spurious testsuite failure with M4 1.4.11.
1093         * tests/local.at (AT_CHECK_M4): Cater to new m4 error message.
1095         Optimize AC_REQUIRE.
1096         * lib/m4sugar/m4sugar.m4 (m4_expansion_stack_push, _m4_defun_pro)
1097         (_m4_defun_pro_outer, _m4_defun_epi, _m4_defun_epi_outer)
1098         (m4_require): Avoid extra macro calls.
1100 2007-12-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1102         * tests/torture.at (srcdir): Fix quoting.
1104         Do not pass top_srcdir to configure scripts in testsuite.
1105         * tests/autotest.at (srcdir propagation): Copy install-sh to
1106         source tree.
1107         (my only test): Drop setting of `top_srcdir'.
1108         * tests/base.at (Input/Output): Likewise.
1109         * tests/local.at (AT_CONFIGURE_AC): Copy install-sh,
1110         config.guess, and config.sub to test source tree.
1111         Drop AC_CONFIG_AUX_DIR setting.
1112         (AT_CHECK_CONFIGURE): Drop setting of `top_srcdir'.
1113         * tests/torture.at (Substitute a 2000-byte string): Drop
1114         AC_CONFIG_AUX_DIR setting, copy install-sh to test source tree.
1115         (Substitute a newline, datarootdir workaround): Likewise.
1116         (Define a newline): Adjust for linenumber changes in configure.ac.
1117         * tests/foreign.at (Libtool): Adjust comment to reflect changes.
1119         * tests/semantics.at (AC_PATH_PROGS_FEATURE_CHECK): Skip test
1120         if `pwd` contains whitespace.
1122         Quote $abs_top_srcdir in tests.
1123         * tests/local.at (AT_CHECK_PERL_SYNTAX): Likewise.
1124         * tests/tools.at (Syntax of the shell scripts): Likewise.
1126         * tests/m4sh.at (LINENO): Quote $0.
1128         Fix testsuite program wrapper for whitespace in `pwd`.
1129         The problem here is that the usual mantra is that command
1130         variables can contain arguments, thus we cannot just escape
1131         $AUTOCONF, $AUTOM4TE etc.  The compromise is to put the
1132         $top_builddir/tests directory early in $PATH, so that the
1133         wrappers are found by their plain name.
1134         * tests/wrapper.as: Put $testdir early in $PATH.
1135         (AUTOCONF, AUTOHEADER, AUTOM4TE): Set to plain command names.
1137         Proper config.status --file/--header and $srcdir escaping.
1138         * lib/autoconf/status.m4 (_AC_OUTPUT_MAIN_LOOP): Quote special
1139         characters in $ac_file_inputs.
1140         (_AC_OUTPUT_FILE, _AC_OUTPUT_HEADER): eval $ac_file_inputs
1141         accordingly.
1142         * tests/torture.at (datarootdir workaround): Adjust.
1143         (AC_CONFIG_FILES, HEADERS, LINKS and COMMANDS): Extend test.
1145         Fix Autotest for whitespace in `pwd`.
1146         * lib/autotest/general.m4 (AT_INIT)
1147         <at_func_create_debugging_script, Driver Loop>:
1148         Quote $at_group_dir.
1149         * tests/autotest.at (whitespace in absolute testdir): New test.
1151         * lib/autom4te.in: Quote @datadir@.
1153         Proper file name escaping in Autoconf programs and Perl modules.
1154         This includes escaping of characters special to the shell
1155         as well as special to Perl, e.g., leading `<' or `>'.
1156         For example, when $file starts with `>', `open ">$file"'
1157         wrongly tries to append to a different file.
1158         * bin/autoconf.as: Fix quoting for autom4te options.
1159         * lib/Autom4te/General.pm (shell_quote): New function, taken
1160         from coreutils, written by Jim Meyering.
1161         (mktmpdir): Use it.
1162         * bin/autom4te.in (files_to_options, handle_m4): Use shell_quote
1163         and open_quote.
1164         * bin/autoreconf.in (parse_args): Likewise.
1165         * bin/autoscan.in (main): Likewise.
1166         * bin/autoupdate.in (main): Likewise.
1167         * bin/autoheader.in: Likewise, fixing old insufficient escaping.
1168         * bin/ifnames.in: Likewise, XFile usage fixes.
1169         * tests/tools.at (autom4te and whitespace in file names): Extend
1170         test.  Test twice, with special characters allowed on w32, and the
1171         rest.  Test leading and trailing whitespace, for `open_quote'.
1172         (autotools and whitespace in file names): New, analogous test.
1173         Reported by Paul Eggert and Benoit Sigoure, additional suggestions
1174         by Russ Allbery and Eric Blake.
1176         Sync from Automake.
1177         * lib/Autom4te/Channels.pm, lib/Autom4te/Configure_ac.pm,
1178         lib/Autom4te/Struct.pm, lib/Autom4te/XFile.pm: Likewise.
1179         * lib/Autom4te/FileUtils.pm (open_quote): New function.
1180         (update_file, contents): Use it.
1182         * Makefile.am (autom4te-update): Rewrite for git.
1184 2007-12-04  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1186         * doc/autoconf.texi (autom4te Invocation, Autom4te Cache): Fix typos.
1188         Fix copyright years.
1189         * Makefile.am, doc/install.texi, lib/autoconf/fortran.m4,
1190         lib/autoconf/lang.m4, lib/freeze.mk: Likewise.
1192 2007-12-04  Eric Blake  <ebb9@byu.net>
1194         Manually resync with gnulib, since 'make cvs-update' no longer works.
1195         * build-aux/config.guess: New upstream version.
1196         * build-aux/config.sub: Likewise.
1198         When using older automake, don't downgrade build-aux/texinfo.tex.
1199         * configure.ac (AM_INIT_AUTOMAKE): Add no-texinfo.tex option.
1200         * doc/Makefile.am (TEXINFO_TEX): Add.
1202 2007-11-27  Paul Eggert  <eggert@cs.ucla.edu>
1204         Fix AC_C_BIGENDIAN bug caused by new awk method of substitution.
1205         * lib/autoconf/c.m4 (AC_C_BIGENDIAN): Don't comment out the
1206         #undef as this runs afoul of our new way of creating config.h.
1207         Problem reported by Jim Meyering in
1208         <http://lists.gnu.org/archive/html/autoconf-patches/2007-11/msg00164.html>.
1210 2007-11-26  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1212         Fix autom4te for unusual characters in input file names.
1213         * bin/autom4te.in (files_to_options): Quote active characters
1214         for the shell.
1215         * tests/tools.at (autom4te and white space in file names):
1216         New test.
1218         * doc/autoconf.texi (Limitations of Usual Tools) <awk>:
1219         Document that Tru64 awk always splits $0.
1221 2007-11-24  Stepan Kasal  <kasal@ucw.cz>
1223         * lib/autotest/general.m4 (AT_INIT): Do not extract the
1224         `#AT_STOP_...' line at the end of each test.
1226 2007-11-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1228         * lib/autotest/general.m4 (AT_INIT): For awk line number
1229         extraction script, ensure `$at_group' has a defined value
1230         even for the empty set, and properly quote its usage inside
1231         the awk script.
1233 2007-11-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1235         * doc/autoconf.texi (Shell Functions): New chapter.  Document
1236         IRIX sh $0 issue in functions, move content from ...
1237         (Portable Shell): ... here.
1238         (Shell Script Compiler): Note that shell functions are not
1239         totally unportable any more.
1241 2007-11-22  Stepan Kasal  <kasal@ucw.cz>
1242         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1244         * lib/autotest/general.m4 (AT_INIT): Exit awk script after
1245         extracting the line numbers of the last needed test.
1247 2007-11-20  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1249         * lib/autotest/general.m4 (AT_INIT) <at_func_create_debugging_script>:
1250         Fix quoting.
1252 2007-11-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1254         Fix IRIX testsuite debugging failures: $0 in functions.
1255         * lib/autotest/general.m4 (AT_INIT) <at_func_create_debugging_script>:
1256         Do not use $0 inside a function, as IRIX sh will set that to the
1257         function name rather than the script invocation name.
1259 2007-11-19  Paolo Bonzini  <bonzini@gnu.org>
1260         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1262         * lib/autotest/general.m4 (at_func_test): Use cached line numbers
1263         to extract test scripts.
1264         (AT_INIT): Extract and cache test script line numbers.
1266 2007-11-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1268         * lib/autotest/general.m4: Revert 2007-11-15 patch and
1269         subsequent fixups; the awk -> here-document conversion trashes
1270         performance too much with AIX sh.
1272 2007-11-18  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1274         * tests/local.at: Do not test m4, perl with AT_TESTED.
1276         Diagnose and guard against write errors dealing with config.status.
1277         The general idea is this: all write failures from `configure'
1278         writing `config.status' are indicated by $ac_write_error, which
1279         is only checked at the end.  This is safe because config.status
1280         code is not executed before the file is complete.  Other write
1281         failures, be they inside config.status, or in sub shell/awk
1282         scripts spawned from configure or config.status, typically need
1283         earlier checking, as their results are used right afterwards.
1284         * lib/autoconf/status.m4 (AC_OUTPUT): Initialize `ac_write_fail'
1285         before writing config.status, check afterwards.
1286         (_AC_OUTPUT_FILES_PREPARE, _AC_OUTPUT_FILE)
1287         (_AC_OUTPUT_HEADERS_PREPARE,_AC_OUTPUT_CONFIG_STATUS):
1288         Set `ac_write_error' for write failures to config.status.  Barf
1289         upon write failures to temporary files.
1290         Adjust note about closing and reopening the here-document.
1291         (_AC_OUTPUT_HEADER, _AC_OUTPUT_LINK, _AC_OUTPUT_COMMAND)
1292         (_AC_OUTPUT_MAIN_LOOP): Likewise, adjust note about closing and
1293         reopening the here-document.
1294         * tests/torture.at (AC_CONFIG_FILES, HEADERS, LINKS and COMMANDS):
1295         Ensure `ac_write_error' does not escape into config.status.
1296         Also, add a couple of code paths not yet exercised in the test
1297         suite: a config file with input from stdin, and a config header
1298         output to stdout.
1299         Suggestion for catching write errors by Bruno Haible.
1301 2007-11-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1303         Avoid error with Tru64 awk and testsuite lines with many words.
1304         * lib/autotest/general.m4 (AT_INIT): In the awk script that
1305         reads the testsuite, set the field separator to an unusual value,
1306         in order to not run over the limit of 199 fields.  Tru64 4.0D awk
1307         even splits the input if $i, i>0, was never accessed in the script.
1309         Revert 2007-10-17 change.
1310         * TODO: Multiline args in config files and headers mean something
1311         different and are not fixed, see
1312         <http://lists.gnu.org/archive/html/autoconf-patches/2007-05/msg00017.html>
1313         Report by Stepan Kasal.
1315         * doc/autoconf.texi (Generic Programs): Fix typo.
1317 2007-11-16  Stepan Kasal  <kasal@ucw.cz>
1319         AC_*_TOOL does not canonicalize the prefix
1320         * doc/autoconf.texi (Generic Programs): Do not say that
1321         the *_TOOL macros canonicalize, they simply use the `host_alias'.
1323 2007-11-16  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1325         Diagnose write errors in config.status instantiations.
1326         * lib/autoconf/status.m4 (_AC_OUTPUT_FILE)
1327         (_AC_OUTPUT_HEADER, _AC_OUTPUT_MAIN_LOOP): Bail out
1328         on write errors.
1329         * tests/torture.at (AC_CONFIG_FILES, HEADERS, LINKS and COMMANDS):
1330         Extend test to also check for some write error failures, using...
1331         <AT_CHECK_CONFIG_CREATION_NOWRITE>: ...this new macro.
1332         Report by Bruno Haible.
1334         Indentation fixups.
1335         * lib/autotest/general.m4 (AT_INIT) <at_func_log_failure>: Fix
1336         indentation.
1337         (_AT_CHECK): Use less indentation, to save space.
1339 2007-11-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1341         Add witness macro for @top_build_prefix@ substitution.
1342         * lib/autoconf/status.m4 (_AC_HAVE_TOP_BUILD_PREFIX): New macro.
1343         (_AC_OUTPUT_FILE): Mention it here.
1345 2007-11-15  Paolo Bonzini  <bonzini@gnu.org>
1346         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1348         * lib/autotest/general.m4 (at_func_test): Remove.
1349         (AT_INIT): Pre-extract test groups into separate files.
1350         (AT_CLEANUP): Source pre-extracted file instead of calling at_func_test.
1351         Remove at-test-source files together with the $at_group_dir.
1352         * tests/autotest.at (Long test source lines): New test.
1354 2007-11-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1356         Shell functions and variables may share a namespace.
1357         * doc/autoconf.texi (Portable Shell): Mention Solaris sh
1358         limitation.
1360 2007-11-14  Paul Eggert  <eggert@cs.ucla.edu>
1362         * lib/autoconf/types.m4 (_AC_TYPE_LONG_LONG_SNIPPET): Make comment match
1363         gnulib.
1365 2007-11-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1367         * lib/autoconf/status.m4: Fix a couple of comment typos.
1369         * lib/m4sugar/m4sh.m4 (AS_TMPDIR): Use $as_me, not $me.
1371 2007-11-13  Jim Meyering  <meyering@redhat.com>
1373         Clean up the rule to create "expr".
1374         * tests/Makefile.am (expr): Don't redirect directly to target.
1375         Redirect just once, not for each echo statement.
1376         Use $@, not literal "expr".
1378 2007-11-13  Paul Eggert  <eggert@cs.ucla.edu>
1380         Don't worry about preprocessor when testing long long.
1381         See: http://lists.gnu.org/archive/html/bug-gnulib/2007-11/msg00075.html
1382         * doc/autoconf.texi (Preprocessor Arithmetic): New section.
1383         (AC_TYPE_LONG_LONG_INT, AC_TYPE_UNSIGNED_LONG_LONG_INT):
1384         These no longer check for preprocessor flaws.
1385         * lib/autoconf/types.m4 (_AC_TYPE_LONG_LONG_SNIPPET):
1386         Do not check for preprocessor flaws.
1388 2007-11-13  Jim Meyering  <meyering@redhat.com>
1390         Adapt dependencies, now that a version change doesn't modify configure.ac
1391         * GNUmakefile: Remove "make clean" kludge.
1392         * lib/m4sugar/Makefile.am (version.m4): Depend on Makefile, not
1393         configure.ac.
1394         Don't redirect directly to target.
1395         Use $@, not literal "version.m4".
1397 2007-11-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1399         * doc/autoconf.texi (Making testsuite Scripts): Document
1400         ":;{" shorthand as in previous patch.
1402 2007-11-12  Paul Eggert  <eggert@cs.ucla.edu>
1404         * doc/autoconf.texi (Limitations of Builtins): Document problem
1405         with { ... } a bit more clearly.  Suggest ":;{" as a shorthand
1406         for the workaround.
1407         * lib/m4sugar/Makefile.am (version.m4): Detect 'echo' failure.
1408         Use ":;{" shorthand.
1409         * tests/Makefile.am ($(srcdir)/package.m4): Likewise.
1411 2007-11-12  Jim Meyering  <meyering@redhat.com>
1413         Add more non-srcdir build support.
1414         * GNUmakefile (dummy): Split a long line.
1415         Add -v option to autoreconf invocation.
1417         Remove the autoreconf-provided INSTALL, so that we regenerate it.
1418         * GNUmakefile (dummy): Remove INSTALL.
1420         Remove racy commands to build scripts in bin/ and tests/.
1421         * man/Makefile.am (.x.1): Now that scripts in bin/ and tests/
1422         are guaranteed to be built, remove the rules that tried to build
1423         them.  Before, with a parallel build, these rules could lead to
1424         two processes writing tests/wrapper.in concurrently.
1426         Build in man/ only *after* building in bin/ and tests/.
1427         * Makefile.am (SUBDIRS): The man-page-creation process runs $(MAKE)
1428         in both bin/ and tests/.
1430         Accommodate non-srcdir build-from-checkout.
1431         * build-aux/git-version-gen: Require an additional parameter: $srcdir.
1432         Use git's --git-dir=$srcdir/.git option.
1433         Add quotes, in case tarball_version_file contains shell meta-characters.
1434         * GNUmakefile (_curr-ver): Pass $(srcdir) to git-version-gen.
1435         * configure.ac: Pass "." to git-version-gen.
1437         Avoid spurious test failures due to version skew.
1438         * GNUmakefile (dummy): Run $(MAKE) clean after autoreconf -i.
1440 2007-11-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1442         Avoid warnings about conftest.dSYM directories on Mac OS X Leopard.
1443         * lib/autoconf/general.m4 (_AC_LINK_IFELSE, _AC_RUN_IFELSE):
1444         Remove conftest.dSYM directory.
1445         * lib/autoconf/fortran.m4 (_AC_PROG_FC_V_OUTPUT)
1446         (_AC_LANG_PROGRAM_C_, _AC_FC_MAIN, __AC_FC_NAME_MANGLING):
1447         Remove `conftest.*' recursively.
1448         * lib/autoconf/lang.m4 (AC_LINK_IFELSE): Likewise.
1449         * lib/autoconf/specific.m4 (_AC_SYS_LARGEFILE_MACRO_VALUE):
1450         Likewise.
1451         (_AC_COMPILER_OBJEXT_REJECT): Reject *.dSYM.
1452         * THANKS: Update.
1453         Report and analysis by Jeff Squyres and Peter O'Gorman.
1455 2007-11-12  Benoit Sigoure  <tsuna@lrde.epita.fr>
1457         Fix typos in variable names.
1458         * tests/semantics.at (test for AC_CHECK_LIB): s/at_m/ac_m/.
1460 2007-11-11  Benoit Sigoure  <tsuna@lrde.epita.fr>
1462         Document that $((expression)) is not portable.
1463         * doc/autoconf.texi (Shell Substitutions): Here.
1465 2007-11-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1467         Ignore configure --help* errors due to LINENO-impaired shells.
1468         * tests/torture.at (Configuring subdirectories, Deep Package):
1469         In the --help* tests in read-only trees, make `.' temporarily
1470         writable again for the `stderr' file, and ignore errors due to
1471         the attempt to write configure.lineno.
1472         Report by Patrick Welche.
1474 2007-11-10  Jim Meyering  <meyering@redhat.com>
1476         Generate package.m4 in build-dir, not srcdir.
1477         * tests/Makefile.am (package.m4): Adjust target.
1478         Don't redirect directly to $@.
1479         (CLEANFILES): Add package.m4.
1480         ($(TESTSUITE)): Depend on just-built package.m4, not the one
1481         in $(srcdir).
1482         When running $(AUTOTEST), search "." before searching $(srcdir).
1484         Avoid a race condition that would make parallel "distclean" fail.
1485         * tests/Makefile.am (distclean-generic): Replace the default,
1486         automake-provided rule with an identical one, but with an additional
1487         dependency on distclean-local.  Simply adding the dependency would
1488         cause automake not to emit the rule at all.
1489         * BUGS: Building with -jN works, now.
1491         Distribute git-version-gen.
1492         * Makefile.am (EXTRA_DIST): Add build-aux/git-version-gen,
1493         since GNUmakefile is distributed, and requires it for dist* rules.
1495         Remove two more generated files from version control.
1496         * INSTALL: Remove generated file.
1497         * lib/autoscan/autoscan.list: Remove generated file.
1499 2007-11-09  Paul Eggert  <eggert@cs.ucla.edu>
1501         * GNUmakefile (PATH): Remove stray apostrophes; they become
1502         part of PATH, which isn't wanted here.
1504 2007-11-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1506         New config files output variable `top_build_prefix'.
1507         * lib/autoconf/status.m4 (_AC_OUTPUT_FILE): Substitute
1508         `top_build_prefix'.
1509         * doc/autoconf.texi (Preset Output Variables): Document it.
1510         * NEWS: Update.
1511         Report by Bob Friesenhahn.
1513         Avoid expr for arithmetic evaluation if the shell accepts $((...)).
1514         * lib/autotest/general.m4 (AT_INIT) <at_func_arith>: New
1515         function, to parametrize arithmetic with expr vs. the shell.
1516         Use it where possible.
1517         Suggestion by Benoit Sigoure.
1519 2007-11-03  Benoit Sigoure  <tsuna@lrde.epita.fr>
1521         Adjust the documentation of autotest WRT atlocal.
1522         * doc/autoconf.texi (Making testsuite Scripts): It is not necessary,
1523         when using Automake, to write a rule to produce atlocal, since it's
1524         an AC_CONFIG_FILES.  Mention that atlocal.in needs to be
1525         distributed, not atconfig.in.
1527 2007-11-04  Eric Blake  <ebb9@byu.net>
1529         Update list information.
1530         * README: Mention new autoconf-commit list.
1531         * doc/autoconf.texi (Introduction): Mention autoconf-commit list.
1533 2007-11-04  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1535         * lib/autoconf/functions.m4 (_AC_FUNC_MALLOC_IF): Fix comment typo.
1537         * lib/m4sugar/Makefile.am (version.m4): Another bash bug workaround.
1539         * build-aux/.gitignore: Ignore mkinstalldirs.
1541         * doc/autoconf.texi (autoreconf Invocation): Fix an underfull line.
1543 2007-11-03  Jim Meyering  <meyering@redhat.com>
1545         s/-/./ in snapshot version string: 2.61a-256-8b556 -> 2.61a.256-8b556
1546         * build-aux/git-version-gen: This syncs from coreutils.
1548         Adjust the build procedure so "make check" works reliably.
1549         * README-hacking: Include an extra step between "make" and
1550         "make check" to ensure that the latter passes.
1552         Use just-built tools, when possible.
1553         * GNUmakefile (PATH): Set and export here, ...
1554         (dummy): ... rather than here.
1556 2007-11-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1557         and Andreas Schwab  <schwab@suse.de>
1559         * tests/Makefile.am ($(srcdir)/package.m4): Work around bash
1560         exit status bug.
1562 2007-11-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1564         * configure.ac (AC_PREREQ): Require version 2.60, for
1565         AC_PROG_SED, AC_PROG_GREP.
1567 2007-11-02  Benoit Sigoure  <tsuna@lrde.epita.fr>
1568         and Jim Meyering  <meyering@redhat.com>
1569         and Andreas Schwab <schwab@suse.de>
1570         and Eric Blake  <ebb9@byu.net>
1572         Document a bug in GNU Bash with compound commands and redirections.
1573         * doc/autoconf.texi (Limitations of Builtins): Mention that GNU
1574         Bash doesn't properly set $? when `{ ... } >/bad' fails, and give
1575         workaround.
1577 2007-11-03  Eric Blake  <ebb9@byu.net>
1579         Support m4 1.4.5 in testsuite.
1580         * tests/torture.at (Define a newline): Exclude line numbers in
1581         error message.
1582         Reported by Ralf Wildenhues.
1584 2007-11-03  Jim Meyering  <meyering@redhat.com>
1586         Remove automake-provided files from version control.
1587         * build-aux/elisp-comp: Remove file.
1588         * build-aux/install-sh: Remove file.
1589         * build-aux/missing: Remove file.
1590         * build-aux/mdate-sh: Remove file.
1591         * build-aux/.gitignore: New file.
1592         Suggestion from Ralf Wildenhues.
1594 2007-11-03  Eric Blake  <ebb9@byu.net>
1596         Adjust version comparison to account for git snapshot numbers.
1597         * lib/m4sugar/m4sugar.m4 (_m4_version_unletter): Also treat - as a
1598         component separator.
1599         * doc/autoconf.texi (Number processing Macros)
1600         <m4_version_compare>: Document this change.
1601         * tests/m4sugar.at (m4@&t@_version_compare): Test it.
1603 2007-10-30  Bruno Haible  <bruno@clisp.org>
1605         * lib/autoconf/types.m4 (_AC_TYPE_LONG_LONG_SNIPPET): New macro,
1606         extracted from AC_TYPE_LONG_LONG_INT and AC_TYPE_UNSIGNED_LONG_LONG_INT.
1607         (AC_TYPE_LONG_LONG_INT, AC_TYPE_UNSIGNED_LONG_LONG_INT): Use it.
1608         Fixes problem with Sun C 5.[0-8] in 32-bit mode, reported in
1609         <http://lists.gnu.org/archive/html/autoconf-patches/2007-10/msg00210.html>
1610         Suggested by Paul Eggert.
1612 2007-10-28  Jim Meyering  <meyering@redhat.com>
1614         * README-hacking: Autoconf, Automake, and Perl are required to build.
1615         List Gzip and Tar separately.  Suggested by Ralf Wildenhues.
1617 2007-10-28  Jim Meyering  <meyering@redhat.com>
1619         README-hacking: Recommend running autoreconf -vi.
1620         * GNUmakefile (dummy): Use autoreconf -i, with appropriate PATH,
1621         so that we use just-built tools when they're available.
1622         Suggestions from Ralf Wildenhues.
1624 2007-10-28  Jim Meyering  <meyering@redhat.com>
1626         Make inter-release --version output more useful.
1628         Now, each unofficial build has a version "number" like 2.61a-19-58dd,
1629         which indicates that it is built using the 19th change set
1630         (in _some_ repository) following the "v2.61a" tag, and that 58dd
1631         is a prefix of the commit SHA1.
1632         * build-aux/git-version-gen: New file.
1633         * configure.ac: Run it to set the version.
1634         (AM_INIT_AUTOMAKE): Don't check NEWS here.
1635         * Makefile.am (dist-hook): Arrange so that .version appears only
1636         in distribution tarballs, never in a checked-out repository.
1637         * .gitignore: Add .version here, too.  Just in case.
1638         * tests/Makefile.am ($(srcdir)/package.m4): Depend on Makefile,
1639         not configure.ac, now that the version number changes automatically.
1641         Ensure that $(VERSION) is up to date for dist-related targets.
1642         * GNUmakefile: Arrange to rerun autoconf, if the version reported by
1643         git-version-gen doesn't match $(VERSION), but only for dist targets.
1645 2007-10-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1647         Fix `Deep Package' failure with a configure script early in PATH
1648         * tests/torture.at (Deep Package): Add `.' early in PATH.
1649         Report by Jim Meyering.
1651 2007-10-27  Jim Meyering  <meyering@redhat.com>
1653         Remove all generated files from version control.
1654         * aclocal.m4: Remove.
1655         * configure: Remove.
1656         * Makefile.in: Remove, along with all other Makefile.in in subdirs.
1657         * .gitignore: Add aclocal.m4, configure and Makefile.in.  Sort.
1658         * README-hacking: New file: how to build from just-checked-out sources.
1660 2007-10-23  Eric Blake  <ebb9@byu.net>
1662         Improve corner case of m4_expand.
1663         * lib/m4sugar/m4sugar.m4 (m4_expand, _m4_expand): Rewrite more
1664         efficiently.
1665         * tests/m4sh.at (AS@&t@_HELP_STRING): Test overquoted comma.
1666         * doc/autoconf.texi (Evaluation Macros) <m4_expand>: Update
1667         documentation.
1669 2007-10-23  Paul Eggert  <eggert@cs.ucla.edu>
1671         * doc/make-stds.texi: Update from gnulib.
1673 2007-10-22  Paul Eggert  <eggert@cs.ucla.edu>
1674         and Eric Blake  <ebb9@byu.net>
1676         * lib/autoconf/c.m4 (AC_C_RESTRICT): Work around Sun C++ compatibility
1677         problem reported by Bruno Haible in
1678         <http://lists.gnu.org/archive/html/bug-autoconf/2007-10/msg00027.html>.
1680 2007-10-22  Eric Blake  <ebb9@byu.net>
1682         * doc/autoconf.texi (Particular Types): Mention bug in HP-UX 11.00
1683         preprocessor.
1685 2007-10-22  Paul Eggert  <eggert@cs.ucla.edu>
1687         Don't check for bug in HP-UX 11.00 cpp.
1688         * lib/autoconf/types.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT):
1689         Use -1ull rather than -1u, since that causes problems with gnulib; see
1690         <http://lists.gnu.org/archive/html/bug-gnulib/2007-10/msg00329.html>.
1692 2007-10-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1694         * tests/autotest.at (Backquote command substitution)
1695         (Multiline backquote command substitution)
1696         (Parenthetical command substitution)
1697         (Multiline parenthetical command substitution): Fix typos in
1698         test names.
1700 2007-10-21  Eric Blake  <ebb9@byu.net>
1702         * configure: Regenerate.
1704 2007-10-21  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1706         Fix config status generation with Tru64 ksh.
1707         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE): Fix
1708         escaping of backslash in here-documents.
1710         Fix `Deep Package' test failure on FreeBSD.
1711         * tests/torture.at (Deep Package): Do not add `.' to $PATH
1712         unnecessarily.  Do not try running `/bin/sh configure' with a
1713         configure script to be found in $PATH, if the shell does not do
1714         this resolution.  Fixes test failure on FreeBSD.
1716         Fix config header generation with AIX awk.
1717         * lib/autoconf/status.m4 (_AC_OUTPUT_HEADERS_PREPARE): In awk
1718         script, use helper array D_is_set, as `" 0"' does not evaluate
1719         to true for AIX awk.
1721 2007-10-21  Eric Blake  <ebb9@byu.net>
1723         * tests/autotest.at (Banners): Reinstate test, with typo
1724         corrected.
1726 2007-10-20  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1728         * lib/autotest/general.m4 (Defaults): Validate input ranges ...
1729         <at_func_validate_ranges>: ... using this new function.
1730         * tests/autotest.at (Keywords and ranges): Test invalid ranges.
1731         Test --list with ranges and keywords.
1732         (Banners): Remove one now-failing test.
1734 2007-10-20  Eric Blake  <ebb9@byu.net>
1736         Fix testsuite --list subset.
1737         * lib/autotest/general.m4 (AT_INIT) <at_list_p>: Swap newlines
1738         back to spaces, before listing subset of tests.
1739         Reported by Ralf Wildenhues.
1741 2007-10-19  Eric Blake  <ebb9@byu.net>
1743         s/parenthesis/parentheses/ where appropriate.
1744         * doc/autoconf.texi: Fix typos.
1745         * lib/m4sugar/m4sugar.m4: Likewise.
1746         Reported by Ralf Wildenhues.
1748         Document m4_expand limitation.
1749         * lib/m4sugar/m4sugar.m4 (m4_expand): Mention problem with
1750         unbalanced parse.
1751         * doc/autoconf.texi (Pretty Help Strings, Evaluation Macros)
1752         (Writing Testsuites): Mention limitations inherited from
1753         m4_expand.
1755         Improve AT_BANNER handling.
1756         * lib/autotest/general.m4 (BANNERS): New named diversion.
1757         (TESTS_END): Diversion no longer used.
1758         (AT_INIT) <at_func_banner, BANNERS>: Factor all banners into a
1759         shell function, which prints only as needed, using an associative
1760         array of banner text from a special diversion.
1761         <PARSE_ARGS_END>: No longer need awk to find banners.
1762         <TESTS>: Banners are no longer processed by main driver loop, so
1763         we no longer need case statement.
1764         (AT_BANNER): Rewrite to populate new diversion.
1765         (AT_SETUP): Each test invokes its own banner.  No output is needed
1766         to the TESTS diversion.
1767         * doc/autoconf.texi (Writing Testsuites): Document slight
1768         semantics change.
1769         * tests/autotest.at (AT_BANNERS): Enhance test.
1770         * NEWS: Document AT_BANNER.
1772         Document and test AT_BANNER.
1773         * doc/autoconf.texi (Writing Testsuites): Document AT_BANNER.
1774         * tests/autotest.at (AT_CHECK_EGREP): Share between tests.
1775         (AT_CHECK_BANNERS): New test.
1777         Doc touchups.
1778         * doc/autoconf.texi (Text processing Macros) <m4_strip>
1779         <m4_text_wrap>: Clarify and fix typos.
1781 2007-10-18  Eric Blake  <ebb9@byu.net>
1783         Ignore `make dist' changelogs in testsuite.log.
1784         * lib/autotest/general.m4 (AT_INIT) <ChangeLogs>: Prune
1785         directories matching AT_PACKAGE_TARNAME-*.
1787         Fix AT_TESTED, AT_KEYWORDS.
1788         * lib/m4sugar/m4sugar.m4 (m4_append_uniq): Warn if separator
1789         occurs in string, as duplicates may be added.
1790         (_m4_append_uniq): New helper macro.
1791         (m4_append_uniq_w): New macro.
1792         * lib/autotest/general.m4 (AT_TESTED, AT_KEYWORDS): Fix
1793         duplication bug by using new macro.
1794         (AT_INIT) <at_tested>: Restore newline separators.  Invoke tested
1795         programs with stdin redirected, so programs that don't
1796         understand --version won't try to behave interactively.
1797         * tests/autotest.at (Tested programs): Catch this bug.
1798         * tests/m4sugar.at (m4@&t@_append): Test new macro.
1799         * tests/local.at (AT_TESTED): Add m4, perl.
1800         * doc/autoconf.texi (Text processing Macros): Document
1801         m4_append_uniq_w, and update text on m4_append.
1802         * NEWS: Document the addition.
1804 2007-10-17  Eric Blake  <ebb9@byu.net>
1806         Function cleanup.
1807         * lib/autotest/general.m4 (_AT_CREATE_DEBUGGING_SCRIPT): Convert
1808         from m4 macro...
1809         (AT_INIT) <at_func_create_debugging_script>: ...to shell
1810         function.
1811         (AT_INIT): Defer function declarations until after --help,
1812         --version.  Format functions consistently, trying to fit in 80
1813         columns.
1814         (TEST_FUNCTIONS): Based on recent changes, rename...
1815         (TEST_GROUPS): ...to this.
1817         Reject FreeBSD m4.
1818         * m4/m4.m4 (AC_PROG_GNU_M4): Also check for frozen file support.
1819         * configure: Regenerate.
1820         Reported by Bob Friesenhahn.
1822         Test recent additions.
1823         * tests/m4sugar.at (m4@&t@_map, m4@&t@_combine)
1824         (m4@&t_max and m4@&t_min): New tests.
1825         * doc/autoconf.texi (Evaluation Macros) <m4_apply>: Enhance
1826         description.
1828 2007-10-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1830         * TODO: multiline args in config files and headers work now.
1832         Autotest: do not use shell functions for individual tests.
1833         * lib/autotest/general.m4 (AT_INIT) <at_func_test>: Merely
1834         extract the source test source, do not invoke it.
1835         (AT_SETUP, AT_CLEANUP): Source test code outside shell function.
1836         * tests/autotest.at (Fallacy): Actually let the inner suite fail,
1837         expect exit status of 1.
1838         * tests/autotest.at (Skip): New test, for bogus zsh exit status.
1840         * lib/autotest/general.m4 (at_func_test): Fix test extraction
1841         script.
1843 2007-10-17  Eric Blake  <ebb9@byu.net>
1845         Fix m4_combine for empty suffix list.
1846         * lib/m4sugar/m4sugar.m4 (m4_combine): Check for suffix list.
1847         * doc/autoconf.texi (Text processing Macros): Document this.
1849         Add m4_combine, based on Libtool's lt_combine.
1850         * lib/m4sugar/m4sugar.m4 (m4_combine): New macro.
1851         * doc/autoconf.texi (Text processing Macros): Document it.
1852         * NEWS: Likewise.
1854 2007-10-16  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1856         Fix `configure --help=recursive' in unconfigured/read-only trees.
1857         * lib/m4sugar/m4sh.m4 (_AS_LN_S_PREPARE): Avoid errors when `.'
1858         is not writable, use 'cp -p' in this case, in the hope that it
1859         will not actually be needed.  Still try removing files, in case
1860         of other write errors.
1861         * lib/autoconf/general.m4 (_AC_INIT_SRCDIR): For ac_confdir,
1862         use $as_myself, not $0.
1863         (_AC_INIT_HELP): For --help=recursive, if the subdir does not
1864         exist, try again in the the source tree.  This change assumes
1865         that the subpackage configure script is capable of running
1866         --help=recursive in the source tree.
1867         * tests/torture.at (Configuring subdirectories, Deep Package):
1868         Adjust tests to expose both issues, also try invocation as
1869         `sh configure ...' and plain `configure ...' with PATH adjusted.
1870         * NEWS, THANKS: Update.
1871         Report by Hans Ulrich Niedermann.
1873 2007-10-16  Paul Eggert  <eggert@cs.ucla.edu>
1875         Check for 64-bit int errors in HP-UX 10.20 preprocessor.
1876         Problem reported by H.Merijn Brand in
1877         <http://lists.gnu.org/archive/html/bug-tar/2007-10/msg00018.html>.
1878         * lib/autoconf/types.m4 (AC_TYPE_LONG_LONG_INT):
1879         (AC_TYPE_UNSIGNED_LONG_LONG_INT):
1880         Check that preprocessor handles 64-bit ints, too.
1882 2007-10-16  Eric Blake  <ebb9@byu.net>
1884         m4_map is a looping construct.
1885         * lib/m4sugar/m4sugar.m4 (m4_map, _m4_map, m4_map_sep): Move.
1887         Fix m4_map, and add some more utility macros.
1888         * lib/m4sugar/m4sugar.m4 (m4_apply, m4_count, m4_dquote_elt)
1889         (m4_echo, m4_make_list): New documented macros.
1890         (_m4_quote, _m4_shift2): New helper macros.
1891         (m4_map): Change semantics to allow calling macro without
1892         arguments.
1893         (m4_map_sep): Likewise.  Also change semantics to quote separator,
1894         to match m4_join and m4_append.
1895         (m4_version_unletter): Fix use of m4_map.
1896         * doc/autoconf.texi (Evaluation Macros): Document m4_apply,
1897         m4_count, m4_dquote_elt, m4_echo, m4_make_list.
1898         (Text processing Macros): Mention m4_dquote as a faster
1899         alternative to joining with commas.
1900         (Looping constructs): Document m4_map, m4_map_sep.
1901         * NEWS: Mention new macros.
1903         A few more m4sugar improvements, to benefit libtool.
1904         * lib/m4sugar/m4sugar.m4 (m4_bpatsubsts, _m4_shiftn): Reduce size
1905         of expansion by avoiding extra uses of $@.
1906         (m4_shiftn): Avoid extra dnl, and forbid shifting by 0.
1907         (_m4_cdr): New helper macro.
1908         (_m4_map, m4_map_sep): Use it to reduce size of expansion.
1909         (_m4_shift3): New helper macro.
1910         (_m4_foreach): Swap argument order, and use new macro to reduce
1911         size of expansion.
1912         * doc/autoconf.texi (Looping constructs) <m4_shiftn>: Mention that
1913         count must be positive.
1915         * doc/autoconf.texi (Evaluation Macros) <m4_expand>: Fix typo.
1916         Reported by Ralf Wildenhues.
1918 2007-10-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1920         * doc/autoconf.texi (Portable Shell): Improve description of zsh
1921         4.x function subshell bug with exit and trap.
1923 2007-10-15  Eric Blake  <ebb9@byu.net>
1925         Enhance AS_HELP_STRING.
1926         * lib/m4sugar/m4sugar.m4 (m4_text_wrap): Don't expand arguments,
1927         and reduce number of expansions.
1928         * lib/m4sugar/m4sh.m4 (AS_HELP_STRING): Rework to use m4_expand,
1929         and to take indent and wrap column numbers.
1930         * tests/m4sh.at (AS@&t@_HELP_STRING): Update the test.
1931         * doc/autoconf.texi (Pretty Help Strings): Document details about
1932         arguments.
1933         (Text processing Macros): Minor tweaks.
1934         * NEWS: Document this change.
1936         Fix 2007-10-03 regression with AT_SETUP([a, b]).
1937         * lib/m4sugar/m4sugar.m4 (m4_expand): New macro.
1938         (m4_text_box): Use it.
1939         * lib/autotest/general.m4 (AT_SETUP): Use it.
1940         * lib/m4sugar/m4sh.m4 (_AS_RUN): Use it.
1941         * tests/autotest.at (AT_CHECK_AT_TITLE_CHAR): Test this.
1942         * NEWS: Revert caveat about semantics change on comma.
1943         * doc/autoconf.texi (Evaluation Macros): Document m4_expand.
1945 2007-10-13  Eric Blake  <ebb9@byu.net>
1947         Change m4_join to match libtool's ltsugar semantics.
1948         * lib/m4sugar/m4sugar.m4 (m4_join): Just define this, not defun.
1949         Ignore empty arguments, using...
1950         (_m4_join): ...this new helper.
1951         * tests/m4sugar.at (m4@&t@_join): New test.
1952         * doc/autoconf.texi (Text processing Macros): Document new
1953         semantics of m4_join.
1955         Make AC_PREREQ faster and more robust.
1956         * lib/m4sugar/m4sugar.m4 (m4_ignore, m4_unquote): New macros.
1957         (m4_version_prereq): Inline constant expansions.
1958         (m4_list_cmp): Reduce number of expansions, by avoiding m4_case.
1959         Rewrite in terms of [] list, not () list.
1960         (_m4_list_cmp, _m4_version_unletter): New helper macros.
1961         (m4_version_unletter): Write wrapper around new implementation to
1962         preserve old semantics.
1963         (m4_version_compare): Pass correct type of list, and avoid
1964         overhead of flattening expressions too early.
1965         (m4_do): Move to be near other quoting macros.
1966         (m4_max, m4_min): Always result in decimal output.
1967         * doc/autoconf.texi (Looping constructs): Add m4_car, m4_cdr.
1968         Move m4_do...
1969         (Evaluation Macros): ...here.  Add m4_ignore, m4_unquote.
1970         (Text processing Macros): Move m4_version_compare...
1971         (Number processing Macros): ...to this new node; document m4_cmp,
1972         m4_list_cmp, m4_sign, m4_max, m4_min.
1973         * tests/m4sugar.at (m4@&t@_version_compare): Enhance test, to pick
1974         up on bugs fixed by this patch.
1975         * NEWS: Document new macros.
1977 2007-10-12  Eric Blake  <ebb9@byu.net>
1979         * doc/autoconf.texi (Text processing Macros): Fix bad merge.
1980         (Reporting Messages): Fix underfull hbox.
1982         Some more m4sugar documentation.
1983         * lib/m4sugar/m4sugar.m4: Clean up macro order.
1984         * doc/autoconf.texi (Programming in M4): Lighten the warning on
1985         using m4sugar; it is stabilizing and useful.
1986         (Redefined M4 Macros): Touch up wording on M4 builtins; sort.  Add
1987         m4_divert, m4_undivert, __file__, __line__, __oline__.
1988         (Diagnostics): New node, documenting m4_assert, m4_errprintn,
1989         m4_fatal, m4_location, m4_warn.
1990         (Diversion support): New node, documenting m4_divert_push,
1991         m4_divert_pop, m4_divert_text, m4_divert_once.
1992         (Text processing Macros): Sort.  Add m4_flatten, m4_join,
1993         m4_newline, m4_strip, m4_text_box, m4_text_wrap.
1994         (Reporting Messages): Mark AC_DIAGNOSE, AC_WARNING, and AC_FATAL
1995         as obsolescent.
1996         (Printing Messages): Change cross-reference.
1998         Document interaction of recent m4_append change with Libtool HEAD.
1999         * lib/m4sugar/m4sugar.m4 (m4_append): Document semantics change.
2000         (m4_append_uniq): Add new parameters, based on lt_append_uniq.
2001         * tests/m4sugar.at (m4@&t@_append): New test.
2002         * NEWS: Document semantics change.
2003         * doc/autoconf.texi (Text processing Macros): Likewise.
2005         s/AC_VERSION/AC_AUTOCONF_VERSION/.
2006         * doc/autoconf.texi (Versioning): Change the name.
2007         * NEWS: Likewise.
2008         * lib/autoconf/general.m4 (AC_AUTOCONF_VERSION): Likewise.
2009         * tests/tools.at (autoconf: AC_AUTOCONF_VERSION): Likewise.
2010         Suggested by Ralf Wildenhues.
2012         Namespace cleanup.
2013         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE)
2014         (_AC_OUTPUT_HEADERS_PREPARE): Convert here-doc delimiters into
2015         autoconf namespace.
2016         * doc/autoconf.texi (Programming in M4sugar, Forbidden Patterns)
2017         (Programming in M4sh, Macro Names): Beef up description of
2018         namespaces reserved for autoconf.
2019         * configure: Regenerate.
2021 2007-10-12  Eric Blake  <ebb9@byu.net>
2022         and Paolo Bonzini  <bonzini@gnu.org>
2024         Speed up execution of subset of testsuite.
2025         * lib/autotest/general.m4 (TEST_FUNCTIONS): New diversion.
2026         (AT_INIT) <at_func_test>: New shell function.
2027         (AT_INIT) <at_myself>: New variable, set to absolute $as_myself.
2028         (AT_INIT) <at_test_source> New variable, names file that holds
2029         current test function definition.
2030         (AT_SETUP): Start the shell function at_func_test_#, into the
2031         TEST_FUNCTIONS diversion.
2032         (AT_CLEANUP): End the shell function.  Simplify the TESTS
2033         diversion to invoke the function.
2035 2007-10-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2037         * .gitignore: Ignore tags and TAGS files.
2039 2007-10-11  Eric Blake  <ebb9@byu.net>
2041         Config header generation followup.
2042         * lib/autoconf/general.m4 (_AC_DEFINE_Q): Check for raw newlines,
2043         which won't work with the preprocessor nor with the awk
2044         implementation.
2045         * tests/torture.at (Define a newline): Test raw newline detection,
2046         removing the XFAIL.
2047         * doc/autoconf.texi (Defining Symbols): Document recent change to
2048         allow backslash-newline.
2049         * THANKS: Update.
2051 2007-10-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2053         * lib/autotest/general.m4: Put function braces in separate line.
2055 2007-10-10  Eric Blake  <ebb9@byu.net>
2057         Avoid some overhead from m4_defn and m4_popdef.
2058         * lib/m4sugar/m4sugar.m4 (m4_defn, m4_popdef, m4_undefine): Only
2059         pass on first argument, since we are documented that way.
2060         (m4_for, m4_append_uniq, m4_text_wrap): Optimize out defined-ness
2061         check where it is safe to do so.
2062         (m4_append): Likewise, and quote the separator.
2063         (m4_text_box): Likewise, and avoid regex, also be robust to
2064         expansion and quadrigraphs.
2066         Another AC_DEFINE speedup.
2067         * lib/autoconf/general.m4 (AC_DEFINE_TRACE): Move parameter
2068         elision...
2069         (_AC_DEFINE_Q): ...here, and only do it once.
2070         * lib/autoconf/functions.m4 (AC_CHECK_FUNCS): Avoid overquoting.
2071         * lib/m4sugar/m4sh.m4 (AS_LITERAL_IF): Fix m4_defn overquoting
2072         introduced 2007-10-05.
2074         Whitespace cleanup.
2075         * lib/autoconf/general.m4: Use consistent indentation.
2076         * configure: Regenerate.
2078         * NEWS: Announce recent round of speed optimizations.
2080 2007-10-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2082         * NEWS: Announce shell function usage in Autotest.
2084 2007-10-10  Eric Blake  <ebb9@byu.net>
2085         and Paul Eggert  <eggert@cs.ucla.edu>
2087         Reduce number of forks at startup.
2088         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Speed up NLS
2089         sanitization.
2090         * configure: Regenerate.
2092 2007-10-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2093         and Paul Eggert  <eggert@cs.ucla.edu>
2095         Use awk for config header generation.
2096         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE): Fix comments.
2097         (_AC_OUTPUT_HEADERS_PREPARE): New macro.  Rewrite of the config
2098         header machinery for use with awk and placement outside the main
2099         config.status instantiation loop.  Retain multi-line defines
2100         through backslash-newline combinations, do not split the script
2101         any more.
2102         (_AC_OUTPUT_HEADER): Simplify accordingly, use $AWK.
2103         (_AC_OUTPUT_MAIN_LOOP): Call _AC_OUTPUT_HEADERS_PREPARE if
2104         needed.
2105         (AC_OUTPUT_MAKE_DEFS): Remove backslash-newline combinations
2106         from define values.
2107         * NEWS: Update.
2108         * tests/torture.at (#define header templates): Extend test by
2109         several more cases: white space before and after `#', macros
2110         with parameters in config.hin and as defines, multi-line macro
2111         values.
2112         (Torturing config.status): Use a define value twice the length
2113         in order to exercise the awk literal string limit.
2114         (Substitute and define special characters): Also try special
2115         delimiter, to exercise the special-case code.
2116         Suggestion by Eric Lemings.
2118 2007-10-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2120         * tests/local.at (AT_COPYRIGHT): Bump copyright years.
2122 2007-10-09  Eric Blake  <ebb9@byu.net>
2124         Improve header of bin/autoconf.
2125         * lib/m4sugar/m4sh.m4 (AS_INIT): Add a 'generated from' notice.
2126         * lib/autoconf/general.m4 (_AC_INIT_NOTICE): Override new notice
2127         from M4sh.
2128         * bin/autoconf.as: Put copyright up front in generated file.
2130         * bin/autoconf.as (exit_missing_arg): Font-lock tweak.
2132 2007-10-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2134         * doc/install.texi (Basic Installation): Document `uninstall'.
2135         * INSTALL: Regenerate.
2136         Suggestion by Roberto Bagnara.
2138 2007-10-08  Paul Eggert  <eggert@cs.ucla.edu>
2140         * doc/autoconf.texi (Limitations of Usual Tools): V7 awk had 'index'.
2142         Adjust doc. to match latest gnulib.
2143         * build-aux/texinfo.tex: Sync from gnulib.
2144         * doc/standards.texi: Likewise.
2145         * doc/autoconf.texi (Copying This Manual): Rename to "GNU Free
2146         Documentation License" and remove the subsection.  This simplifies
2147         the manual a bit and is more like what other GNU projects do
2148         nowadays.
2150 2007-10-08  Eric Blake  <ebb9@byu.net>
2152         Use recent changes.
2153         * configure: Regenerate.
2155         Fix regression in m4_text_wrap from 2007-10-05.
2156         * lib/m4sugar/m4sugar.m4 (m4_max, m4_min): New macros.
2157         (m4_sign): Sort.
2158         (m4_text_wrap): Fix off-by-one error in rewrite from m4_for to
2159         m4_format.
2160         * lib/autotest/general.m4 (AT_SETUP): Avoid negative width.
2161         * tests/autotest.at (Long test title, Longer test title): Test
2162         this fix, beyond what AS_HELP_STRING already tests.
2164         Avoid m4 warnings on bad m4_format usage.
2165         * lib/m4sugar/m4sugar.m4 (m4_text_wrap): Use %*s, in case width
2166         evaulates to 0.
2167         * lib/autotest/general.m4 (AT_SETUP): Likewise; also ensure that
2168         enough arguments are provided.
2170 2007-10-06  Paolo Bonzini  <bonzini@gnu.org>
2172         * doc/autoconf.texi (Shell portability): Document shell function
2173         portability.
2175 2007-10-06  Paolo Bonzini  <bonzini@gnu.org>
2177         * lib/autotest/general.m4 (AT_INIT): Add at_func_diff_devnull,
2178         at_func_check_skip, at_func_check_status, at_func_filter_trace,
2179         at_func_log_failure shell functions.  Use test -s to avoid
2180         useless diff invocations.
2181         (at_func_check_newline): Renamed from at_check_newline.
2182         (AT_SETUP): Define AT_captured_files to empty.
2183         (AT_DIFF_STDERR(*), AT_DIFF_STDOUT(*)): New, extracted from _AT_CHECK.
2184         (_AT_CHECK): Replace m4_case with m4_ifdef/m4_indir.  Use all
2185         the shell functions.
2187 2007-10-05  Paul Eggert  <eggert@cs.ucla.edu>
2189         Don't assume "." is writeable, for commands like "autoconf --version".
2190         * lib/m4sugar/m4sh.m4 (_AS_PATH_SEPARATOR_PREPARE): Use a
2191         different heuristic instead, one that doesn't rely on creating
2192         files.
2194         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ARGS): Handle "///"
2195         correctly.
2197 2007-10-05  Jim Meyering  <meyering@redhat.com>
2199         Avoid makeinfo warnings.
2200         * doc/autoconf.texi (Redefined M4 Macros): Add a `,' after @xref.
2201         (Looping constructs): Add ` ' after @defmac'd name, m4_do.
2203 2007-10-05  Eric Blake  <ebb9@byu.net>
2205         Resolve Python issue 1676135 regarding configure directory args.
2206         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ARGS): Strip trailing
2207         slashes from directory arguments.
2208         * tests/base.at (configure directories): New test.
2209         * doc/autoconf.texi (Installation Directory Variables): Document
2210         the change.
2211         * NEWS: Likewise.
2212         * THANKS: Update.
2213         Reported by Björn Lindqvist.
2215         Provide better short-circuiting operation.
2216         * lib/m4sugar/m4sugar.m4 (m4_cond, m4_newline): New macros.
2217         (m4_text_wrap): Use it.  Also avoid useless m4_for.
2218         * lib/m4sugar/m4sh.m4 (_AS_QUOTE_IFELSE, AS_LITERAL_IF): Use
2219         new macro.
2220         (_AS_IDENTIFIER_IF): Likewise, and fix bug when $1 is [,].
2221         * lib/autotest/general.m4 (_AT_DECIDE_TRACEABLE): Use new macros
2222         to avoid regexps.
2223         * doc/autoconf.texi (Redefined M4 Macros): Expand m4_if
2224         documentation.  Sort m4_mkstemp, m4_undefine.  Move m4_ifndef...
2225         (Conditional constructs): ...here, to new section.  Also document
2226         m4_cond, m4_ifval, m4_n, m4_ifvaln, m4_ifset, m4_case, m4_bmatch,
2227         m4_bpatsubsts, and m4_default.
2228         (Looping constructs): Document m4_shiftn, m4_shift2, m4_shift3,
2229         m4_do.
2231 2007-10-04  Eric Blake  <ebb9@byu.net>
2233         Fix recent testsuite failures.
2234         * lib/autotest/general.m4 (AT_INIT, AT_SETUP): Double-quote text
2235         that must not be re-expanded after AS_ESCAPE.
2236         * lib/m4sugar/m4sh.m4 (_AS_IDENTIFIER_IF): Don't expand $1 when
2237         checking if it is an identifier.
2239         Whitespace cleanup.
2240         * lib/autotest/general.m4 (_AT_CREATE_DEBUGGING_SCRIPT): Avoid
2241         leading whitespace, as it caused space-tab in testsuite.
2242         (AT_INIT): Avoid trailing newlines in testsuite.
2244         One more round of m4_foreach_w speedups.
2245         * lib/m4sugar/m4sugar.m4 (m4_flatten): Only use regex if newline
2246         is present.
2247         (_m4_split): Avoid useless expansions inside definition.  Move
2248         argument defaulting...
2249         (m4_split): ...here.  Change alternate quote to something less
2250         likely to appear in $1.  Also, special case space as regexp...
2251         (m4_foreach_w): ...to avoid regexp on single-term list.
2252         (m4_default, m4_defn, m4_popdef, m4_undefine, _m4_foreach): Avoid
2253         useless expansions inside definition.
2254         * tests/m4sugar.at (m4@&t@_split): Add tests.
2256 2007-10-04  Paolo Bonzini  <bonzini@gnu.org>
2258         * general.m4 (AT_INIT): Add at_check_newline function.
2259         (_AT_DECIDE_TRACEABLE): Include at_traceon test, use shell function.
2260         (_AT_CHECK): Don't use at_trace_this.
2262 2007-10-04  Paolo Bonzini  <bonzini@gnu.org>
2264         Fix previous commit.
2265         * lib/autotest/general.m4 (AT_LINE): Fix regex.
2267 2007-10-04  Eric Blake  <ebb9@byu.net>
2269         Speed up building testsuites.
2270         * lib/autotest/general.m4 (AT_LINE): Only use regex when file
2271         changed since last time.  Use simpler regex.
2273 2007-10-03  Eric Blake  <ebb9@byu.net>
2275         Optimize checking for identifiers.
2276         * lib/m4sugar/m4sh.m4 (AS_IDENTIFIER_IF, _AS_IDENTIFIER_IF): New
2277         macros, more efficient than regex on m4_re_word.
2278         * lib/autoconf/general.m4 (AC_SUBST, AC_DEFINE_TRACE_LITERAL):
2279         Rewrite in terms of new macro.  As a side-effect, AC_DEFINE can
2280         now use @&t@.
2281         * configure: Regenerate.
2283         Remove some XFAILs, and make AT_SETUP output line up.
2284         * lib/autotest/general.m4 (AT_SETUP): Only expand description
2285         once; thereafter, use its expansion, properly quoted.
2286         * tests/autotest.at (AT_CHECK_AT_TITLE): Also check macro
2287         expansion with arguments, and check for aligned output.
2288         (AT_CHECK_AT_TITLE_CHAR): Remove XFAILs for tests that now pass.
2289         Add a test for macros with parameters.
2290         * NEWS: Document the semantics change.
2291         * tests/base.at: Fix test titles containing commas.
2292         * tests/compile.at: Likewise.
2293         * tests/tools.at: Likewise.
2294         * tests/torture.at: Likewise.
2296         Another round of regex avoidance.
2297         * lib/m4sugar/m4sugar.m4 (m4_cr_alnum, m4_cr_all)
2298         (_m4_define_cr_not, m4_cr_not_letters, m4_cr_not_LETTERS)
2299         (m4_cr_not_Letters, m4_cr_not_digits, m4_cr_not_alnum)
2300         (m4_cr_not_symbols1, m4_cr_not_symbols2): New macros, implementing
2301         character ranges useful in m4_translit.
2302         (m4_toupper, m4_tolower): Optimize the constant portion of
2303         definition.
2304         * lib/m4sugar/m4sh.m4 (AS_LITERAL_IF): Also reject @S|@ because it
2305         creates $, and reject [] thanks to AS_TR_SH rewrite.
2306         (AS_TR_SH, AS_TR_CPP): Use just translit, not bpatsubst.
2307         (AS_ESCAPE): Factor...
2308         (_AS_ESCAPE): ...into new macro, with second argument required.
2309         Avoid regex in common case.
2310         (_AS_QUOTE): Use new macro.
2312         Whitespace cleanup.
2313         * lib/autoconf/types.m4: Avoid space-tab.
2314         * lib/m4sugar/m4sh.m4: Use tab consistently.
2316 2007-10-03  Paul Eggert  <eggert@cs.ucla.edu>
2318         * lib/m4sugar/m4sugar.m4 (m4_shift2, m4_shift3): New macros.
2319         (m4_shiftn): Remove no-longer-needed optimization.  Perhaps we
2320         should remove m4_shiftn entirely?
2321         (m4_case, b4_bmatch, m4_map_sep, m4_bpatsubsts, m4_join):
2322         Prefer m4_shift2 and m4_shift3 to m4_shiftn.
2323         * lib/autoconf/lang.m4 (_AC_LANG_DISPATCH): Likewise.
2324         * lib/m4sugar/m4sh.m4 (AS_CASE, AS_IF): Likewise.
2325         * tests/autotest.at (AT_CHECK_AT_TEST): Likewise.
2327 2007-10-03  Eric Blake  <ebb9@byu.net>
2329         Comment touchups.
2330         * lib/m4sugar/m4sugar.m4: Grammar fixes in comments.
2332 2007-10-02  Eric Blake  <ebb9@byu.net>
2334         Optimize appending text.
2335         * lib/m4sugar/m4sugar.m4 (m4_append_uniq): Use index, not regular
2336         expressions.
2338         Optimize recursion.
2339         * lib/m4sugar/m4sugar.m4 (m4_shiftn): This macro is called in a
2340         lot of hot spots; optimize it for 2 and 3 shifts.
2342         Optimize AC_PREREQ and other m4sugar numerics.
2343         * lib/m4sugar/m4sugar.m4 (m4_sign): Write with m4_eval.
2344         (m4_cmp): Compare arbitrary expressions, without overflow.
2345         (m4_version_unletter): Also recognize capital letters.
2346         (m4_version_compare): Avoid regex when splitting version number
2347         string.
2349 2007-10-01  Eric Blake  <ebb9@byu.net>
2351         Once again, reject IRIX m4.
2352         * m4/m4.m4 (AC_PROG_GNU_M4): Use indir builtin to root out non-GNU
2353         implementations that ignore --trace.
2354         * configure: Regenerate.
2355         Reported by Ralf Wildenhues.
2357         Fix regression in AC_DEFINE([macro(with_arg)]).
2358         * lib/autoconf/general.m4 (AC_DEFINE_TRACE): Don't chop off close
2359         quotes with a careless m4_substr.
2361 2007-09-30  Eric Blake  <ebb9@byu.net>
2363         Allow nameless iteration.
2364         * lib/m4sugar/m4sugar.m4 (m4_for, _m4_for): Access variable
2365         indirectly.
2366         * tests/m4sugar.at (myvar): Test this.
2368 2007-09-29  Eric Blake  <ebb9@byu.net>
2370         Speed optimization: avoid m4 regex when other algorithms work.
2371         * lib/m4sugar/m4sh.m4 (AS_LITERAL_IF): Rewrite without regex.
2372         (_AS_QUOTE_IFELSE): Likewise.
2373         * lib/m4sugar/m4sugar.m4 (m4_strip): Reduce from 3 to 2 regex.
2374         (m4_bpatsubsts): Split...
2375         (_m4_bpatsubsts): ...so that recursion can avoid patsubst on empty
2376         regex.
2377         (_m4_divert()): Define, to avoid m4 warning on `m4_divert'.
2378         (m4_qlen): Optimize on short strings, to avoid regex.
2379         (m4_sign): Avoid regex, and fix bug with `01' and `-0'.
2380         * lib/autoconf/general.m4 (AC_CACHE_VAL): Rewrite without regex.
2381         (AC_DEFINE_TRACE): Likewise.
2383 2007-09-28  Eric Blake  <ebb9@byu.net>
2385         Oops - my earlier 'optimization' caused a regression.
2386         * tests/local.at (AT_CHECK_M4): Fix typo.
2388 2007-09-27  Eric Blake  <ebb9@byu.net>
2389         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2391         Catch even more common AC_CACHE_VAL mistakes.
2392         * lib/autoconf/general.m4 (AC_CACHE_VAL): Warn if cache variable
2393         lacks '_cv_', or if AC_SUBST appears in body.
2394         * tests/base.at (AC_CACHE_CHECK): Test this change.
2396 2007-09-27  Stepan Kasal  <kasal@ucw.cz>
2397         and Eric Blake  <ebb9@byu.net>
2399         Autotest no longer caters to Ultrix redirection limitation.
2400         * doc/autoconf.texi (Writing testsuite.at): Remove the
2401         limitation that the first parameter of AT_CHECK cannot
2402         contain redirection.
2403         (File Descriptors): Mention that Ultrix limitation is no longer a
2404         show-stopper in modern code.
2405         * tests/local.at (AT_CHECK_M4): Fix for cases when the fourth
2406         parameter is `stderr' or `experr'.  Optimize if it was `ignore'.
2407         * lib/autotest/general.m4 (AT_CHECK): Update comment.
2409 2007-09-27  Eric Blake  <ebb9@byu.net>
2411         Squelch changeword in m4sugar.
2412         * lib/m4sugar/m4sugar.m4 (changeword): Disable this experimental
2413         feature of m4 1.4.x.
2415         Configure whitespace touchups.
2416         * lib/autoconf/general.m4 (_AC_INIT_HELP): Fix alignment of
2417         installation directories, and avoid TAB, in configure --help
2418         output.
2419         * configure.ac: Avoid extra trailing newline.
2420         * lib/m4sugar/m4sh.m4 (_AS_DETECT_BETTER_SHELL): Avoid space-tab.
2421         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Avoid TAB in
2422         config.status --help output.
2423         * configure: Regenerate.
2425         Fix underquotation in AS_HELP_STRING.
2426         * lib/m4sugar/m4sh.m4 (AS_HELP_STRING): Don't underquote lhs
2427         argument.
2428         * lib/m4sugar/m4sugar.m4 (m4_text_wrap): Don't underquote
2429         first-prefix argument.
2430         * tests/m4sh.at (AS@&t@_HELP_STRING): Test this fix.
2431         * NEWS: Document AS_HELP_STRING fix.
2433         Autotest formatting touchups.
2434         * lib/autotest/general.m4 (HELP_TUNING): Avoid TAB in terminal
2435         output.
2436         (PATH): Simplify computation of new PATH.
2438 2007-09-26  Eric Blake  <ebb9@byu.net>
2440         Fix testsuite breakage in last patch.
2441         * tests/autotest.at (AT_CHECK_AT_TITLE): Properly quote the
2442         font-lock fix.
2443         * tests/torture.at (@%:@define header templates): Rename, so that
2444         output lines up correctly.
2446         More font-lock happiness.
2447         * tests/autotest.at (AT_CHECK_AT_TITLE_CHAR): Clean up font
2448         confusion.
2450 2007-09-25  Eric Blake  <ebb9@byu.net>
2452         Typo fixes.
2453         * lib/autoconf/general.m4 (AC_SUBST): Fix typo in comment.
2454         * lib/m4sugar/m4sh.m4 (AS_VAR_PUSHDEF): Likewise.
2456         Improve documentation of M4 parameter expansion.
2457         * doc/autoconf.texi (Quoting and Parameters): New section.
2458         (Quotation and Nested Macros): Improve wording.
2460         Improve C99 detection.
2461         * lib/autoconf/c.m4 (_AC_PROG_CC_C99): Add support for HP cc, and
2462         avoid deprecation warning with icc.
2463         * THANKS: Update.
2464         Reported by Ted Bullock.
2466 2007-09-24  Jim Meyering  <jim@meyering.net>
2468         Whenever possible, use the vertical bar as sed delimiter.
2469         * lib/autoconf/functions.m4 (GETLOADAVG_LIBS) [AC_FUNC_GETLOADAVG]:
2470         Use "|", not "!".
2471         * lib/autoconf/status.m4 (_AC_SRCDIRS) [ac_top_builddir_sub]:
2472         [ac_dir_suffix]: Use "|", not "," as sed delimiter.
2473         * tests/mktests.sh (as_me): Likewise.
2474         * lib/freeze.mk (check-forbidden-patterns): Likewise.
2475         * lib/autoconf/fortran.m4 (_AC_PROG_FC_V_OUTPUT): Likewise.
2476         * configure: Regenerate.
2477         * doc/autoconf.texi (Shell Substitutions): Use "|", not "," in examples.
2478         * lib/autotest/general.m4 (AT_INIT): Use "|", not "&" as sed delimiter
2479         in the : -> $PATH_SEPARATOR transformation of $AUTOTEST_PATH.
2480         This is fine, as long as $PATH_SEPARATOR doesn't contain "|".
2482 2007-09-22  Jim Meyering  <jim@meyering.net>
2484         Add a comment.
2485         * lib/autoconf/headers.m4 (HAVE_STDBOOL_H): Document the
2486         2004-05-31 change also with a comment in the code.
2488 2007-09-20  Eric Blake  <ebb9@byu.net>
2490         More contribution housekeeping.
2491         * THANKS: Sort.
2492         * AUTHORS: Sort, reflect recent assignment from Helge Deller.
2494         Ignore additional files, when copying cross-repository.
2495         * .gitignore: Ignore CVS directories, emacs edits.
2496         * .cvsignore: Ignore .git directory, emacs edits.
2498 2007-09-15  Eric Blake  <ebb9@byu.net>
2500         Provide AC_VERSION, not m4_AUTOCONF_VERSION.
2501         * doc/autoconf.texi (Text processing Macros): Remove mention of
2502         m4_AUTOCONF_VERSION, and leave m4_PACKAGE_VERSION undocumented
2503         once again.
2504         (Notices): Move AC_PREREQ...
2505         (Versioning): ...to this new section, alongside the new AC_VERSION
2506         alias for the undocumented m4_PACKAGE_VERSION.
2507         * lib/m4sugar/m4sugar.m4 (m4_AUTOCONF_VERSION): Revert change.
2508         * lib/autoconf/general.m4 (AC_VERSION): New macro.
2509         * NEWS: Update to match this rename.
2510         * tests/m4sugar.at (m4@&t@_version_compare): Remove tests of
2511         m4_PACKAGE_VERSION.
2512         * tests/tools.at (autoconf: AC_VERSION): New test.
2513         Suggested by Paolo Bonzini and Benoit Sigoure.
2515 2007-09-14  Eric Blake  <ebb9@byu.net>
2517         Prepare for conversion to git.
2518         * doc/.cvsignore: Avoid multiple listings on one line.
2519         * bin/.cvsignore: Likewise.
2520         * .gitignore, bin/.gitignore, config/.gitignore, doc/.gitignore,
2521         lib/.gitignore, lib/Autom4te/.gitignore, lib/autoconf/.gitignore,
2522         lib/autoscan/.gitignore, lib/autotest/.gitignore,
2523         lib/emacs/.gitignore, lib/m4sugar/.gitignore, man/.gitignore,
2524         tests/.gitignore: New files, identical to .cvsignore counterpart.
2526 2007-09-13  Eric Blake  <ebb9@byu.net>
2528         Editing eye-candy.
2529         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE): Restore
2530         font-lock balance.
2531         * lib/m4sugar/m4sh.m4 (AS_MKDIR_P): Likewise.
2532         * lib/autoconf/general.m4 (_AC_DO_ECHO): Likewise.
2533         * configure: Regenerate.
2535         Clean up 'make dist' of previous patch.
2536         * tests/Makefile.am (EXTRA_DIST): Distribute mktests.stamp.
2537         (CLEANFILES): Don't clean the stamp, since we distribute the
2538         generated files pre-built.
2539         (MAINTAINERCLEANFILES): Clean it here instead.
2540         * tests/Makefile.in: Regenerate.
2542         Avoid parallel 'make check' issue.
2543         * tests/Makefile.am (mktests.stamp): New witness.
2544         (TESTSUITE_GENERATED_AT): Use it.
2545         (CLEANFILES): Clean the witness.
2546         * tests/.cvsignore (mktests.stamp): Ignore the witness.
2548         Document another awk pitfall.
2549         * doc/autoconf.texi (Limitations of Usual Tools) <awk>: Document
2550         limitation of field variables in END.
2551         Reported by Gary V. Vaughan.
2553         * AUTHORS: Add missing entries.
2555 2007-09-12  Eric Blake  <ebb9@byu.net>
2557         Publish m4_ifndef, m4_version_compare, m4_AUTOCONF_VERSION.
2558         * doc/autoconf.texi (Text processing Macros): Document
2559         m4_version_compare, m4_AUTOCONF_VERSION, m4_PACKAGE_VERSION.
2560         (Redefined M4 Macros): Document m4_ifndef.
2561         * lib/m4sugar/m4sugar.m4 (m4_AUTOCONF_VERSION): New macro; we
2562         can't obsolete m4_PACKAGE_VERSION at this time since Autoconf 1.10
2563         used it while it was undocumented.
2564         * NEWS: Document this change.
2565         * lib/m4sugar/Makefile.am (version.m4): Update copyright dates.
2566         * lib/m4sugar/Makefile.in: Regenerate.
2567         * tests/m4sugar.at (m4@&t@_version_compare): New test.
2568         Reported by Bruno Haible.
2570         * doc/autoconf.texi (Generic Compiler Characteristics): Add
2571         missing index entries.
2573 2007-09-11  Eric Blake  <ebb9@byu.net>
2575         Centralize all system extensions checks.
2576         * lib/autoconf/specific.m4 (AC_USE_SYSTEM_EXTENSIONS): Inline code
2577         from AC_AIX, AC_GNU_SOURCE, AC_MINIX.  Add Interix support.
2578         (AC_AIX, AC_GNU_SOURCE, AC_MINIX): Obsolete, and point to
2579         AC_USE_SYSTEM_EXTENSIONS.
2580         (AC_ISC_POSIX): Obsolete, and point to AC_SEARCH_LIBS.
2581         (AC_XENIX_DIR, AC_IRIX_SUN): Promote proper quoting in AU_DEFUN.
2582         * doc/autoconf.texi (Posix Variants): Reword this section,
2583         emphasizing that AC_USE_SYSTEM_EXTENSIONS is the preferred method,
2584         rather than a series of system-specific checks.
2585         (Obsolete Macros): Add AC_AIX, AC_GNU_SOURCE, AC_ISC_POSIX,
2586         AC_MINIX.
2587         * NEWS: Document this change.
2588         * THANKS: Update.
2589         Reported by Martin Koeppe.
2591 2007-09-08  Eric Blake  <ebb9@byu.net>
2593         Clean up obsolete macros references.
2594         * doc/autoconf.texi: Add anchors to support better
2595         cross-referencing.
2596         (Particular Structures): Move obsolete macros descriptions...
2597         (External Software): Likewise.
2598         (Package Options): Likewise.
2599         (Obsolete Macros): ...to here.  Add cross-references to
2600         documentation on replacements.
2601         * NEWS: Mention that these macros have been obsolete for a while
2602         now: AC_STRUCT_ST_BLKSIZE AC_STRUCT_ST_RDEV AC_WITH AC_ENABLE.
2604         Improve M4 path searching during configure.
2605         * lib/autoconf/programs.m4 (AC_PATH_PROGS_FEATURE_CHECK): New
2606         macro.
2607         (_AC_PATH_PROG_FEATURE_CHECK): Rename...
2608         (_AC_PATH_PROGS_FEATURE_CHECK): ...to this, add defaulted action
2609         parameter, and kill side effects.
2610         (_AC_PROG_GREP, AC_PROG_SED): Adjust callers.
2611         (_AC_FEATURE_CHECK_LENGTH): Kill extra whitespace.
2612         * m4/m4.m4 (AC_PROG_GNU_M4): Don't stop searching until working m4
2613         is found.
2614         (AC_PATH_PROGS_FEATURE_CHECK): Add backwards compatibility hack to
2615         allow bootstrapping with autoconf 2.61.
2616         * configure.ac (M4): AC_PROG_GNU_M4 now exits on failure.
2617         * configure: Regenerate.
2618         * doc/autoconf.texi (Generic Programs): Document new macro.
2619         * tests/mktests.sh (au_exclude_script): Exclude auto-testing new
2620         macro.
2621         * tests/semantics.at (AC_PATH_PROGS_FEATURE_CHECK): New test.
2622         * NEWS: Document the change.
2623         * THANKS: Update.
2624         Reported by Hans Aberg.
2626         * doc/autoconf.texi (Generic Programs): Fix typo.
2628 2007-09-06  Eric Blake  <ebb9@byu.net>
2630         * doc/autoconf.texi (Generic Programs): Use $PATH_SEPARATOR, not
2631         :, and make it clear that optional @var{path} defaults to $PATH.
2632         (Erlang Compiler and Interpreter): Likewise.
2634         Texinfo cleanup.
2635         * doc/autoconf.texi: Avoid lines > 80 columns when possible.
2636         Reword some paragraphs to avoid overfull, underfull hbox
2637         warnings.  Add index entries to avoid overfull vbox warnings.
2639 2007-09-05  Eric Blake  <ebb9@byu.net>
2641         * NEWS: Adjust wording for AC_CONFIG_LINKS.
2642         Reported by Ralf Wildenhues.
2644 2007-09-03  Eric Blake  <ebb9@byu.net>
2646         * NEWS: Document fixes that have been applied since 2.61a.
2648         Housekeeping.
2649         * THANKS: Update, and convert to UTF-8 encoding.
2650         * AUTHORS: Likewise.
2652 2007-08-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2654         * lib/autoconf/general.m4 (AC_SITE_LOAD): Guard against file
2655         names beginning with `-' again.
2657 2007-08-22  Stepan Kasal  <kasal@ucw.cz>
2658             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2660         * doc/autoconf.texi (Defining Directories): Mention
2661         AM_CPPFLAGS, as the way to modify CPPFLAGS when using Automake.
2663 2007-08-21  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2665         * lib/autoconf/general.m4 (AC_SITE_LOAD): Do not overwrite "$@"
2666         here, this macro is expanded by AC_INIT.  Fixes 2.60 regression.
2667         * tests/base.at (configure arguments): New test.
2668         * THANKS: Update.
2669         Report by Olaf Lenz.
2671         * lib/autoconf/general.m4 (_AC_ENABLE_IF): Expand macro
2672         arguments in comment.
2673         Report by Vincent Torri <vtorri at univ minus evry dot fr>.
2675 2007-08-20  Benoit Sigoure  <tsuna@lrde.epita.fr>
2677         * doc/autoconf.texi (File System Conventions): Index the proper
2678         way of detecting absolute file names.
2680 2007-08-20  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2682         * build-aux/config.guess, build-aux/config.sub,
2683         build-aux/elisp-comp, build-aux/install-sh, build-aux/mdate-sh,
2684         build-aux/missing, build-aux/texinfo.tex, doc/fdl.texi,
2685         doc/make-stds.texi, doc/standards.texi: Sync from gnulib.
2686         * doc/autoconf.texi (GNU Free Documentation License): Adjust for
2687         sectioning change in fdl.texi.
2689         * bin/autoconf.as: Update --version output to match current GCS.
2690         * bin/autoheader.in: Likewise.
2691         * bin/autom4te.in: Likewise.
2692         * bin/autoreconf.in: Likewise.
2693         * bin/autoscan.in: Likewise.
2694         * bin/autoupdate.in: Likewise.
2695         * bin/ifnames.in: Likewise.
2697 2007-08-18  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2699         * lib/autoconf/status.m4 (_AC_OUTPUT_LINK): Do not try to link a
2700         file to itself if source and build trees coincide.
2701         * tests/torture.at (AC_CONFIG_LINKS and identical files): New
2702         test.
2703         Report by Sebastian Freundt <hroptatyr@gna.org>.
2705 2007-07-20  Paul Eggert  <eggert@cs.ucla.edu>
2707         Reword the copyright notices to match what's suggested in GPLv3.
2708         In ChangeLog files, use more-permissive notice rather than GPL, as
2709         per usual GNU standards these days.
2711 2007-07-13  Paul Eggert  <eggert@cs.ucla.edu>
2713         * doc/autoconf.texi (autoreconf Invocation): Document ACLOCAL_AMFLAGS
2714         limitation reported by Leo Moisio in
2715         <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=432941>.
2717 2007-07-03  Paul Eggert  <eggert@cs.ucla.edu>
2719         * COPYING: Update to GPLv3.  All uses changed.
2721 2007-06-26  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2722         and Paul Eggert  <eggert@cs.ucla.edu>
2724         * doc/autoconf.texi (Limitations of Usual Tools): sed -e ''
2725         fails on AIX 5.3.
2727 2007-06-17  Noah Misch  <noah@cs.caltech.edu>
2729         * lib/autotest/general.m4 (AT_INIT): Handle absolute `srcdir'.
2730         * tests/autotest.at (srcdir propagation): Test absolute `srcdir' and
2731         `srcdir' as subdirectory of `builddir'.
2733 2007-06-13  Noah Misch  <noah@cs.caltech.edu>
2735         * lib/autotest/general.m4 (AT_INIT): Compute $srcdir correctly.
2736         * tests/autotest.at (srcdir propagation): New test.
2737         * THANKS: Update.
2738         Reported by Mike Frysinger.
2740 2007-06-13  Paul Eggert  <eggert@cs.ucla.edu>
2742         * lib/m4sugar/m4sh.m4 (_AS_PATH_SEPARATOR_PREPARE): Set FPATH too.
2743         Problem reported by Fred Kreek in
2744         <http://lists.gnu.org/archive/html/bug-autoconf/2007-06/msg00009.html>.
2745         * doc/autoconf.texi (Special Shell Variables): Warn about FPATH.
2746         (Macro Names, Defining Directories): Don't mention PATH as a name
2747         for a fully qualified file name, as this usage violates the GNU
2748         coding standards and we shouldn't recommend it.
2750         * lib/autotest/general.m4 (AT_INIT): Don't set PATH to the empty
2751         string and then assume shell builtins like "test" will work.
2753 2007-06-12  Noah Misch  <noah@cs.caltech.edu>
2755         * lib/autoconf/general.m4 (AC_SUBST): Raise a fatal error if VARIABLE is
2756         not a valid shell variable name.
2757         * tests/mktests.sh (ac_exclude_list): Add AC_ARG_VAR.
2758         * tests/torture.at (AC_SUBST: variable name validation): New test.
2759         Reported by Andreas Schwab.
2761 2007-06-04  Noah Misch  <noah@cs.caltech.edu>
2763         * doc/autoconf.texi (AC_F77_MAIN): Give a specific usage example that
2764         works with both C and C++.
2766 2007-06-03  Noah Misch  <noah@cs.caltech.edu>,
2767             Bruno Haible  <bruno@clisp.org>
2769         * lib/autoconf/c.m4 (AC_OPENMP): Use a simple loop instead of compiler
2770         brand tests.
2772 2007-05-31  Paul Eggert  <eggert@cs.ucla.edu>
2774         * doc/autoconf.texi (Particular Types): Give example of use for
2775         AC_TYPE_INT8_T etc.
2777 2007-05-29  Stepan Kasal  <kasal@ucw.cz>
2779         * lib/autoconf/types.m4 (_AC_TYPE_UNSIGNED_INT): Fix a typo.
2781 2007-05-28  Paul Eggert  <eggert@cs.ucla.edu>
2783         * doc/autoconf.texi (Particular Types): AC_TYPE_INT8_T does not
2784         define HAVE_INT8_T, and likewise for similar macros.
2785         Problem reported by Patrick Welche in
2786         <http://lists.gnu.org/archive/html/autoconf/2007-05/msg00062.html>.
2788 2007-05-25  Noah Misch  <noah@cs.caltech.edu>
2790         * bin/Makefile.am ($(top_builddir)/bin/autom4te): New dependency.
2792 2007-05-21  Paul Eggert  <eggert@cs.ucla.edu>
2794         * lib/autoconf/c.m4 (AC_OPENMP): Don't echo --enable-openmp
2795         choice, since that's what we do with --enable-largefile etc.
2796         Redo indenting and assignments to simplify things a bit, and make
2797         the parens work with Emacs.
2799         * doc/autoconf.texi (Generic Compiler Characteristics): Fix typo
2800         in my previous change: AC_C_OPENMP -> AC_OPENMP.  Reported by Bruno
2801         Haible.
2803 2007-05-21  Noah Misch  <noah@cs.caltech.edu>
2805         * lib/autoconf/c.m4 (AC_OPENMP): Simplify use of AC_ARG_ENABLE.
2806         * tests/local.at (AT_CHECK_ENV): Exempt OPENMP_CFLAGS.
2808 2007-05-21  Bruno Haible  <bruno@clisp.org>
2810         * NEWS: Rename AC_C_OPENMP to AC_OPENMP.
2811         * lib/autoconf/c.m4 (AC_OPENMP): Renamed from AC_C_OPENMP.
2812         * doc/autoconf.texi (Generic Compiler Characteristics): Move
2813         renamed AC_OPENMP documentation here, from "C compiler".
2814         Mention C++ and Fortran.
2816 2007-05-21  Paul Eggert  <eggert@cs.ucla.edu>
2818         * doc/autoconf.texi (C Compiler): Tweak OpenMP documentation a bit.
2820 2007-05-21  Bruno Haible  <bruno@clisp.org>
2822         * NEWS: Mention AC_C_OPENMP.
2823         * lib/autoconf/c.m4 (AC_C_OPENMP): New macro.
2824         * doc/autoconf.texi (C Compiler): Document AC_C_OPENMP.
2825         Based in part on Steven G. Johnson's investigations for the AX_OPENMP
2826         macro in the Autoconf macro archive.
2828 2007-05-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2830         * bin/autom4te.in: Fix typos.
2832 2007-05-16  Noah Misch  <noah@cs.caltech.edu>
2834         * bin/autoconf.as: Handle `-' just like other input files.
2835         * bin/autom4te.in (parse_args): Pass `-' through.
2836         (handle_output): Skip the forbidden token search if we read from stdin.
2837         (up_to_date): Always treat stdin as out of date.
2838         * tests/tools.at (autoconf: input from stdin): New test.
2839         (autoconf: forbidden tokens, basic): Check a second `autoconf' run.
2841 2007-05-16  Stepan Kasal  <kasal@ucw.cz>
2843         * tests/foreign.at tests/semantics.at, tests/tools.at: Remove
2844         parameters for AT_CLEANUP.
2845         * tests/local.at (AT_CHECK_AU_MACRO): Likewise.
2847 2007-05-14  Paul Eggert  <eggert@cs.ucla.edu>
2849         * NEWS: Document that AC_C_RESTRICT checks 'restrict' last.
2850         * doc/autoconf.texi (C Compiler): Likewise.
2852 2007-05-14  Noah Misch  <noah@cs.caltech.edu>
2854         * lib/autoconf/c.m4 (AC_C_RESTRICT): Check `restrict' last.
2856 2007-05-09  Stepan Kasal  <kasal@ucw.cz>
2858         * doc/autoconf.texi: Direntry for "autoconf Invocation"
2859         renamed to "autoconf-invocation"
2861         * doc/autoconf.texi (Caching Results): The CACHE-ID variable
2862         in the examples should not use the internal "ac_" prefix.
2864 2007-05-05  Noah Misch  <noah@cs.caltech.edu>
2866         * lib/autotest/general.m4 (_AT_NORMALIZE_TEST_GROUP_NUMBER): Use `eval'.
2867         * doc/autoconf.texi ($@, case): Document Zsh limitations.
2869 2007-05-03  Stepan Kasal  <kasal@ucw.cz>
2871         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Put a.out first.
2872         Reorganize the comments before and in the macro.
2874 2007-05-02  Stepan Kasal  <kasal@ucw.cz>
2876         * lib/autoconf/lang.m4, lib/autoconf/c.m4,
2877         lib/autoconf/fortran.m4, lib/autoconf/erlang.m4: Cleanup of
2878         section titles and other comments; no code change.
2880 2007-05-01  Kevin Ryde  <user42@zip.com.au>
2882         * doc/autoconf.texi (Particular Programs): Typo
2883         @acindex{AC_PROG_MKDIR_P} shouldn't have "AC" in that call.
2885 2007-04-30  Paul Eggert  <eggert@cs.ucla.edu>
2887         * lib/m4sugar/m4sh.m4 (_AS_SHELL_FN_SPY): Don't imply that
2888         'configure' will fail if the shell lacks proper support for shell
2889         functions.  Suggested by RMS.
2891 2007-04-29  Paul Eggert  <eggert@cs.ucla.edu>
2893         * doc/autoconf.texi (Limitations of Builtins): Correct the warning
2894         about Solaris /bin/printf '%010000x' 123.  Problem reported by
2895         Bruno Haible.
2897 2007-04-28  Paul Eggert  <eggert@cs.ucla.edu>
2899         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Don't look
2900         for a.* when searching for executables, as this prevents users
2901         from having files like a.c.  Problem reported by Ralf Wildenhues in:
2902         http://lists.gnu.org/archive/html/autoconf-patches/2007-04/msg00029.html
2903         This fixes a problem introduced on 2000-12-19.
2905 2007-04-26  Paul Eggert  <eggert@cs.ucla.edu>
2907         * doc/autoconf.texi (Limitations of Builtins): Warn about Solaris
2908         /bin/printf '%010000x' 123.  Problem reported by Arto C. Nirkko
2909         via Bruno Haible.
2911 2007-04-12  Paul Eggert  <eggert@cs.ucla.edu>
2913         * NEWS: Document recent changes to AC_CHECK_ALIGNOF, AC_CHECK_SIZEOF,
2914         AC_CHECK_TYPE, AC_CHECK_TYPES.
2915         * doc/autoconf.texi (Generic types): C types must be type-names
2916         (the C terminology), not type-ids (the C++ term).  C++ types
2917         must not be anonymous.
2918         * lib/autoconf/types.m4 (_AC_CHECK_TYPE_NEW): Remove special case
2919         for C++; this drops support for anonymous struct and union types,
2920         which were problematic anyway.
2921         * tests/semantics.at (AC_CHECK_HEADERS_NEW): Adjust test to work even
2922         for C++.
2924 2007-04-12  Jim Meyering  <jim@meyering.net>
2926         * doc/autoconf.texi (Libraries): Typo fix: insert missing "in".
2928 2007-04-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2930         * lib/autoconf/status.m4 (_AC_OUTPUT_LINK): Fix AC_CONFIG_LINKS
2931         to prefer a link source from the build tree, if it exists.
2932         Report by Pallav Gupta <pallavgupta@gmail.com>.
2934 2007-04-11  Paul Eggert  <eggert@cs.ucla.edu>
2936         * doc/autoconf.texi (Generic Types): Document the restrictions
2937         on types imposed by AC_CHECK_TYPE, AC_CHECK_TYPES.
2938         (Generic Compiler Characteristics): AC_CHECK_SIZEOF now works
2939         with objects too.  Document the restrictions on its use.
2940         Document the restrictions on AC_CHECK_ALIGNOF's type argument.
2941         * lib/autoconf/types.m4 (_AC_CHECK_TYPE_NEW):
2942         For C, just try sizeof (TYPE) and sizeof ((TYPE)); if the former
2943         works but the latter doesn't, then it's a valid type.
2944         This lets people use function types and so forth.
2945         For C++ there doesn't seem to be a simple solution, so leave it alone.
2946         (AC_CHECK_SIZEOF): Allow argument to be a variable.
2947         (AC_CHECK_SIZEOF, AC_CHECK_ALIGNOF): Don't bother to invoke
2948         AC_CHECK_TYPE; that wasn't documented or necessary.
2950 2007-04-11  Stepan Kasal  <kasal@ucw.cz>
2952         * lib/autoconf/general.m4 (_AC_LINK_IFELSE): Skip AS_TEST_X
2953         when cross-compiling.
2955 2007-04-11  Stepan Kasal  <kasal@ucw.cz>
2957         * doc/autoconf.texi (External Software): Fix a typo in the
2958         previous change.
2960 2007-04-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2962         * doc/autoconf.texi (External Software, Package Options):
2963         Fix ambiguous wording.  Report by Reuben Thomas <rrt@sc3d.org>.
2965 2007-04-06  Paul Eggert  <eggert@cs.ucla.edu>
2967         * doc/autoconf.texi (Particular Types): AC_C_LONG_DOUBLE is now
2968         obsolescent.  Suggested by Bruno Haible.
2969         * NEWS: Document this.
2971 2007-03-29  Paul Eggert  <eggert@cs.ucla.edu>
2973         * doc/autoconf.texi (Here-Documents, Limitations of Builtins):
2974         (Limitations of Usual Tools): Don't say "older" if Solaris 10 by
2975         default still has the problem.  Problem reported by Bruce Korb.
2977 2007-03-28  Stepan Kasal  <kasal@ucw.cz>
2978         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2980         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Fix a
2981         comment in the generated config.status.
2983 2007-03-27  Stepan Kasal  <kasal@ucw.cz>
2985         * lib/autoconf/status.m4 (AC_CONFIG_SUBDIRS): Update comment.
2987 2007-03-26  Paul Eggert  <eggert@cs.ucla.edu>
2989         * doc/autoconf.texi (Shellology): Rework treatment of the 'test'
2990         command and case statements to make it a bit clearer and describe
2991         more pitfalls.
2993 2007-03-23  Paul Eggert  <eggert@cs.ucla.edu>
2995         * doc/autoconf.texi (C Compiler): Mention that AC_PROG_CC_C99 also
2996         checks for unsigned long long int.
2998 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
3000         * doc/autoconf.texi (Limitations of Usual Tools): Warn about other
3001         nonstandard grep R.E. escape sequences.
3003 2007-03-17  Jim Meyering  <jim@meyering.net>
3005         * doc/autoconf.texi: Adjust grammar around use of "heuristics".
3006         (Limitations of Usual Tools): Also list \< and \>, and mention that
3007         HP-UX's grep, like the one from Solaris, does not support that syntax.
3009 2007-03-09  Stepan Kasal  <kasal@ucw.cz>
3011         * doc/autoconf.texi (Specifying Names): `--host' does not
3012         change the build type.
3014 2007-03-05  Paul Eggert  <eggert@cs.ucla.edu>
3016         * doc/autoconf.texi (C Compiler): Warn that AC_C_BIGENDIAN
3017         suggests AC_CONFIG_HEADERS.
3018         * lib/autoconf/c.m4 (AC_C_BIGENDIAN): Warn if not using
3019         AC_CONFIG_HEADERS.  Problem reported by
3020         Peter O'Gorman.
3022 2007-02-28  Paul Eggert  <eggert@cs.ucla.edu>
3024         * lib/autoconf/c.m4 (AC_C_BIGENDIAN): Fix typo "__LITLE_ENDIAN__".
3025         Problem reported by Paolo Bonzini in:
3026         http://lists.gnu.org/archive/html/autoconf-patches/2007-02/msg00024.html
3027         * tests/semantics.at (AC_C_BIGENDIAN): Don't reject hosts that have
3028         universal binaries.  Problem reported by Elias Pipping.
3030 2007-02-27  Paul Eggert  <eggert@cs.ucla.edu>
3032         * NEWS: AC_C_BIGENDIAN now supports universal binaries a la Mac OS X.
3033         * doc/autoconf.texi (C Compiler): Document this.  There is a new
3034         extra argument ACTION-IF-UNIVERSAL.
3035         * lib/autoconf/c.m4 (AC_C_BIGENDIAN): Implement this.
3036         Add support for Solaris-style _LITTLE_ENDIAN and _BIG_ENDIAN.
3037         Reindent for sanity's sake.
3039 2007-02-24  Eric Blake  <ebb9@byu.net>
3041         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Update
3042         copyright.
3043         * lib/autoconf/general.m4 (_AC_INIT_COPYRIGHT): Likewise.
3044         * lib/autotest/general.m4 (AT_INIT): Likewise.
3045         (_AT_DECIDE_TRACEABLE): Fix syntax highlighting.
3047 2007-02-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3049         * lib/autotest/general.m4 (AT_INIT): With --clean, return exit
3050         status of rm so we know when it failed.
3051         If cleaning of test dir failed before running the test, warn.
3052         Output the line separator in verbose mode before the warning
3053         to make clear the warning belongs to the following test.
3055 2007-02-08  Paul Eggert  <eggert@cs.ucla.edu>
3057         * doc/autoconf.texi (Parentheses): Mention problem with (( in
3058         shells.
3060 2007-02-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3061         and Paul Eggert  <eggert@cs.ucla.edu>
3063         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE): Fix quoting
3064         errors introduced in last change.
3066 2007-02-07  Paul Eggert  <eggert@cs.ucla.edu>
3068         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE): Prefer \r to
3069         an actual carriage return.  Use "ac_cr" to contain the actual
3070         carriage return.
3071         * doc/autoconf.texi (Limitations of Usual Tools): Document problem
3072         with traditional Awk and begin.
3073         * tests/torture.at (Limitations of Builtins): Document the problem
3074         with Bash 2.03 printf.
3075         (Substitute and define special characters):
3076         Remove trailing white space.  Work around a bug in Solaris 8 /bin/bash.
3078 2007-02-06  Ralf Menzel  <menzel@ls6.cs.uni-dortmund.de>  (tiny change)
3080         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE): Redirect
3081         input from /dev/null in awk test, so even Solaris /usr/bin/awk
3082         will not wait for input with a script containing only a BEGIN
3083         rule.
3085 2007-02-03  Paul Eggert  <eggert@cs.ucla.edu>
3087         * doc/autoconf.texi (Introduction, Why GNU M4): Clarify M4 version
3088         requirements.
3089         * README: Likewise.
3091 2007-02-02  Eric Blake  <ebb9@byu.net>
3093         * NEWS: Update copyright.
3095         * m4/m4.m4 (AC_PROG_GNU_M4): Reject M4 1.4 through 1.4.4 as
3096         broken.
3097         * configure.ac: Update error message.
3098         * NEWS: Note that M4 1.4.5 or later is now a hard dependency.
3099         Reported by Gary Vaughan and Jim Meyering, and problem analyzed
3100         by Stepan Kasal:
3101         http://lists.gnu.org/archive/html/bug-autoconf/2006-11/msg00025.html
3103 2007-01-31  Eric Blake  <ebb9@byu.net>
3105         * THANKS (people): Update.
3107 2007-01-28  Paul Eggert  <eggert@cs.ucla.edu>
3109         * doc/autoconf.texi (Shellology): pdksh 5.2.14 is still the
3110         latest version.
3111         (Shell Substitutions): Note problems with @{var:=value} etc.
3112         Add a new section for problems with @{#var} etc.  Problem noted
3113         by Ralf Wildenhues.  See:
3114         http://lists.gnu.org/archive/html/libtool-patches/2005-01/msg00157.html
3116 2007-01-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3118         * lib/autoconf/programs.m4 (AC_PROG_MKDIR_P): Also
3119         AC_SUBST([MKDIR_P]), so that Automake < 1.10 will pick up its
3120         trace, if a package uses AC_PROG_MKDIR_P explicitly.  The actual
3121         substitution will still be done by the special code.
3122         Report by Jim Meyering.
3124         * doc/autoconf.texi (File System Conventions): Mention that
3125         $PATH_SEPARATOR is for the build system only.
3126         Report by Keith Marshall.
3128 2007-01-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3130         * doc/autoconf.texi (Setting Output Variables): Mention that
3131         all non-NUL characters are ok in substituted values.
3132         * lib/autoconf/status.m4 (_AC_SED_CMD_LIMIT): Fix comment typo.
3133         (_AC_OUTPUT_FILES_PREPARE): Test and use backslash escaping of
3134         carriage return for $AWK, needed for BSD awk.
3135         * tests/torture.at (Substitute and define special characters):
3136         Test all 8 bit non-NUL characters.
3137         Report against Automake by Patrick Welche.
3139 2007-01-15  Stepan Kasal  <kasal@ucw.cz>
3141         * doc/autoconf.texi: Direntry for "autoconf Invocation" renamed.
3143 2007-01-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3145         * lib/autoconf/programs.m4 (AC_PROG_SED): When closing a pipe
3146         early on the reader side, drop stderr of the input to avoid
3147         `broken pipe' error output; this may happen even with shell
3148         builtin `echo' of some bash versions.  Reports by Ian Macdonald
3149         <iamacdo@telkomsa.net> and Sam Sexton <Sam.Sexton@reuters.com>.
3151 2007-01-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3153         * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS): Use newlines to
3154         separate items of `ac_user_opts', to avoid long lines.
3155         (_AC_INIT_PARSE_ENABLE2, _AC_ENABLE_IF_ACTION): Adjust.
3157 2007-01-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3159         * doc/autoconf.texi: Fix some typos.
3161 2007-01-05  Paul Eggert  <eggert@cs.ucla.edu>
3163         Fix some wording problems noted by Paolo Bonzini in:
3164         http://lists.gnu.org/archive/html/autoconf-patches/2007-01/msg00077.html
3165         * doc/autoconf.texi (Signed Overflow Examples): Give more
3166         discussion about the allow_superuser_privileges example,
3167         and change it a bit to make things clearer.
3168         (Optimization and Wraparound): Clarify whether the compiler
3169         will generate an infinite loop for the example derived from
3170         Autoconf's mktime test.
3171         (Signed Overflow Advice): Say that -ftrapv is meant for debugging.
3172         Also, clarify unsigned multiplication overflow.
3174 2007-01-04  Eric Blake  <ebb9@byu.net>
3176         * bin/Makefile.am (RELEASE_YEAR): New macro.
3177         (edit): Use it to supply correct copyright year to scripts.
3178         * bin/autoconf.as (version): Use it.
3179         * bin/autoheader.in ($version): Likewise.
3180         * bin/autom4te.in ($version): Likewise.
3181         * bin/autoreconf.in ($version): Likewise.
3182         * bin/autoscan.in ($version): Likewise.
3183         * bin/autoupdate.in ($version): Likewise.
3184         * bin/ifnames.in ($version): Likewise.
3186 2007-01-02  Paul Eggert  <eggert@cs.ucla.edu>
3188         * doc/autoconf.texi (Integer Overflow): Revised based on today's
3189         feedback.  The most important changes document what happens when
3190         you convert an out-of-range value to a signed integer type, and
3191         say that (sum < a) != (b < 0) reliably detects overflow when sum =
3192         a + b.
3194         * doc/autoconf.texi (Integer Overflow): Greatly expand and
3195         rewrite, taking notions from the recent discussion on the gcc and
3196         autoconf mailing lists; please see
3197         http://lists.gnu.org/archive/html/autoconf-patches/2006-12/msg00091.html
3198         and follow the many links.
3199         (Integer Overflow Basics, Signed Overflow Examples):
3200         (Optimization and Wraparound, Signed Overflow Advice):
3201         (Signed Integer Division): New sections.
3203 2006-12-28  Steven G. Johnson  <stevenj@alum.mit.edu>
3205         * lib/autoconf/general.m4 (AC_DEFINE_TRACE): Don't include
3206         preprocessor macro arguments in traced name.
3207         * doc/autoconf.texi (Defining symbols): Document longstanding
3208         support for AC_DEFINE-ing macros with arguments, and document
3209         behavior when the same variable has multiple AC_DEFINEs.
3210         * lib/autoconf/fortran.m4 (_AC_FC_WRAPPERS): Revert to the
3211         old implementation which AC_DEFINEs the FC_FUNC and FC_FUNC_
3212         macros directly, giving much shorter and simpler code.
3214 2006-12-28  Malcolm Purvis <malcolmp@xemacs.org>  (trivial change)
3216         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Insert a
3217         space before "$ac_configure_args" to prevent a 'config.status
3218         --recheck' failure if ac_configure_args doesn't contain a leading
3219         space.  This works around a problem with the XEmacs configure.ac,
3220         which uses the (undocumented) ac_configure_args variable
3221         inconsistently with Autoconf.
3223 2006-12-22  Paul Eggert  <eggert@cs.ucla.edu>
3225         * lib/autoconf/functions.m4 (AC_FUNC_MKTIME):
3226         Include <limits.h>, and use its INT_MAX to rewrite the
3227         j loop so that it does not overflow 'int'.  Problem reported by
3228         Ralf Wildenhues in
3229         <http://lists.gnu.org/archive/html/bug-gnulib/2006-12/msg00084.html>.
3230         Play it safe by shifting left by 1 rather than multiplying by 2,
3231         as GCC is less likely to optimize this away when the value
3232         is signed (when it assumes overflow leads to undefined behavior).
3233         Also, don't assume time_t uses two's complement.
3235 2006-12-20  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3237         * tests/torture.at (Substitute a 2000-byte string): Avoid using
3238         a 10kB long (multi-line) string literal, OpenServer 5.0.7 ksh
3239         dumps core on it.  Report by Tim Rice.
3241 2006-12-18  Steven G. Johnson  <stevenj@alum.mit.edu>
3243         * lib/autoconf/general.m4 (AC_ARG_ENABLE): Print help about
3244         --disable-option-checking to --help output even when
3245         AC_PRESERVE_HELP_ORDER is not used.
3246         (_AC_INIT_PARSE_ENABLE2): Print warnings using actual --enable or
3247         --with argument, rather than argument with [-.] replaced by
3248         underscores.
3249         * NEWS: Fix typo in previous change; the news was in the
3250         wrong section.
3252 2006-12-18  Paul Eggert  <eggert@cs.ucla.edu>
3254         * NEWS: Warnings are now generated by default for unknown
3255         --enable-* and --with-* options.
3256         * doc/autoconf.texi (Option Checking): Renamed from
3257         (Configure Option Checking).  Tighten up the wording a bit.
3258         (External Software, Package Options): Cross-reference to Option
3259         Checking, and use this to shorten our section.
3260         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ARGS): Prefer test -n
3261         "$x" to test "x$foo" != x.
3262         * lib/autoconf/status.m4 (AC_OUTPUT): Likewise.
3263         Don't warn if $enable_option_checking is "no".
3264         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ARGS): Initialize
3265         ac_unrecognized_opts to the empty string.
3266         Don't echo the unrecognized opts, as this might mishandle
3267         backslashes or leading -.
3268         (AC_PRESERVE_HELP_ORDER): Put the --disable-option-checking
3269         usage next to the other --disable-FEATURE options in the
3270         help string.
3272 2006-12-18  Steven G. Johnson  <stevenj@alum.mit.edu>
3274         * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS, _AC_INIT_PARSE_ARGS):
3275         (_AC_INIT_PARSE_ENABLE2, _AC_INIT_HELP, _AC_ENABLE_IF):
3276         Print warning for unrecognized --with and --enable options
3277         (AC_DISABLE_OPTION_CHECKING): New macro to disable warnings.
3278         * lib/autoconf/status.m4 (AC_CONFIG_SUBDIRS, _AC_OUTPUT_SUBDIRS):
3279         Disable option checking when subdirs are configured.
3280         (AC_OUTPUT): If warnings are enabled, print warning about
3281         unrecognized --with and --enable options at the end of
3282         the configure output (as well as at the beginning).
3283         * doc/autoconf.texi (Option Checking): New node.
3284         Document new option warning functionality.
3286 2006-12-16  Eric Blake  <ebb9@byu.net>
3288         * configure.ac (AC_INIT): Bump version, since 2.61a is released.
3289         * NEWS: Start news for current version.
3291 2006-12-15  Paul Eggert  <eggert@cs.ucla.edu>
3293         * lib/autoconf/functions.m4 (AC_FUNC_GETMNTENT):
3294         Define HAVE_GETMNTENT to 1, not to the empty string.
3295         Problem originally reported by Jochen Friedrich in
3296         <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=403243>.
3298         This change prompted by a problem report by Andrey Simonenko in
3299         <http://lists.gnu.org/archive/html/bug-autoconf/2006-12/msg00026.html>.
3300         * doc/autoconf.texi (Defining Symbols): AC_DEFINE works for
3301         object-like macros only, in the traditional portable character
3302         set.
3303         * lib/autoconf/general.m4 (AC_DEFINE_TRACE_LITERAL):
3304         Warn about attempts to define things that are not identifiers.
3305         * lib/autoconf/fortran.m4 (_AC_FC_WRAPPERS): Rewrite to avoid
3306         awful hack that AC_DEFINEd macro names containing parentheses.
3308 2006-12-12  Paul Eggert  <eggert@cs.ucla.edu>
3310         * doc/autoconf.texi: Undo some of the 2006-12-10 change.  It was
3311         too drastic, even if Texinfo in theory requires it for info mode.
3313         (config.status Invocation): Renamed back from Recreating a
3314         Configuration).
3315         (Obsolete config.status Use): Renamed back from Obsolete Recreation.
3316         (Autoconf 2.13): Renamed back from 20th-century Autoconf 2.
3318 2006-12-11  Paul Eggert  <eggert@cs.ucla.edu>
3320         * NEWS: Version 2.61a.
3322 2006-12-11  Paul Eggert  <eggert@cs.ucla.edu>
3323         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3325         * NEWS: Document changes with echo and printf, and the lack
3326         of limits on the total size of multi-line values of substituted
3327         variables, and the AC_FUNC_FSEEKO fix.
3329 2006-12-10  Paul Eggert  <eggert@cs.ucla.edu>
3331         * doc/autoconf.texi (Writing Autoconf Input): Renamed from
3332         Writing configure.ac.
3333         (Autoconf Input Layout): Renamed from configure.ac Layout.
3334         (Recreating a Configuration): Renamed from config.status Invocation.
3335         (Obsolete Recreation): Renamed from Obsolete config.status Use.
3336         (acconfig Header): Renamed from acconfig.h.
3337         (20th-century Autoconf 2): Renamed from Autoconf 2.13.
3338         (Writing Testsuites): Renamed from Writing testsuite.at.
3339         (Autom4te Cache): Renamed from autom4te.cache.
3341         * BUGS: Remove mention of VPATH problem, since it's now documented
3342         not to be a bug in the Autoconf build procedure itself, but rather
3343         a problem with the proprietary `make' programs.
3345         * doc/autoconf.texi (Build Directories): Add a cross reference
3346         to VPATH and Make.
3348         * build-aux/config.guess, build-aux/config.sub, build-aux/texinfo.tex:
3349         * doc/standards.texi: Sync from gnulib.
3351         * man/autoconf.1, man/autoheader.1, man/autom4te.1, man/autoreconf.1:
3352         * man/autoscan.1, man/autoupdate.1, man/config.guess.1:
3353         * man/config.sub.1, man/ifnames.1: Remove from CVS, since they're
3354         generated automatically.
3356 2006-12-06  Paul Eggert  <eggert@cs.ucla.edu>
3358         * lib/autoconf/c.m4 (_AC_PROG_CC_C89): Also try -xc99=all, for Sun
3359         C 5.8 on Solaris 10.  Using -xc99=all rather than -xc99 bypasses
3360         the buggy -xc99 option of Forte Developer 7 C on Solaris 9.
3362 2006-12-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3364         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE): Drop the
3365         `CEOF$ac_eof' special marker, the awk script cannot contain a
3366         line matching `^CEOF', so this is not needed any more.
3367         * tests/torture.at (Substitute a newline): Expose the `%!_!# '
3368         special marker in the test.
3370 2006-12-06  Stepan Kasal  <kasal@ucw.cz>
3372         * tests/tools.at (autom4te preselections): Use `find -newer';
3373         remove one of the sleeps.
3375         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ENABLE): Make it
3376         more readable, using ...
3377         (_AC_INIT_PARSE_ENABLE2): ... this new helper macro.
3379         * doc/autoconf.texi (autoheader Invocation): Do not double-
3380         quote the parameter of `AH_BOTTOM' in the example.
3382 2006-12-05  Stepan Kasal  <kasal@ucw.cz>
3384         * doc/autoconf.texi (Configuration Headers): Remove the
3385         example with multiple input files.
3386         (autoheader Invocation): Encourage `AH_BOTTOM', discouraging
3387         multiple input files.
3389 2006-12-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3391         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE): When
3392         creating the awk substitution script, handle one input line at a
3393         time, so that the maximum length of a substituted (multi-line)
3394         value is not limited by the size of the sed pattern space.
3395         The trade-off is a slightly repetitive sed script.
3396         * doc/autoconf.texi (Limitations of Usual Tools): Branch labels
3397         can only have up to 7 characters, due to Solaris 10 /bin/sed.
3398         * tests/torture.at (Substitute a 2000-byte string): Increase the
3399         test with several long lines, they should not be caught by sed
3400         limits any more.
3402         * tests/tools.at (autom4te preselections): New test, to flag
3403         entries missing from autom4te.cfg.
3404         Report by David Byron <dbyron@hheld.com>.
3406         * tests/torture.at (Substitute a 2000-byte string): Actually use
3407         AC_PROG_AWK, so the last change works as intended.
3408         (Substitute and define special characters): Likewise.
3409         (Substitute a newline): Likewise.
3411         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE): Use `$AWK'
3412         instead of `awk' consistently.
3413         (_AC_OUTPUT_CONFIG_STATUS): Initialize $AWK.
3414         * tests/torture.at (Torturing config.status): Test both the
3415         result of AC_PROG_AWK and plain awk.
3416         (Substitute a 2000-byte string): Likewise.
3417         (Substitute and define special characters): Likewise.
3418         (Substitute a newline): Likewise.
3420 2006-12-04  Paul Eggert  <eggert@cs.ucla.edu>
3422         * lib/autoconf/functions.m4 (AC_FUNC_FSEEKO): Check that fseeko
3423         can be assigned to a function pointer.  Problem reported by
3424         Peter Palfrader in <http://bugs.debian.org/401377>.  Based on
3425         part of a patch by Ralf Wildenhues in that same bug report.
3427 2006-12-01  Paul Eggert  <eggert@cs.ucla.edu>
3429         * tests/mktests.sh (ac_exclude_list): Exclude AC_FUNC_SETVBUF_REVERSED.
3430         * tests/semantics.at (AC_FUNC_SETVBUF_REVERSED): New test.
3432 2006-12-01  Eric Blake  <ebb9@byu.net>
3434         * lib/autoconf/c.m4 (AC_LANG_INT_SAVE): Avoid newline, to aid in
3435         cross-compiling from cygwin to mingw.
3436         Reported by Bob Rossi.  This resurrects the 2000-11-30 patch to
3437         aclang.m4, which was mistakenly removed in the 2001-09-17 patch
3438         to lib/autoconf/c.m4.
3440 2006-12-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3442         * lib/m4sugar/m4sh.m4 (_AS_ECHO_PREPARE): Use a longer test
3443         string for more reliable failure.  Wrap the entire test that
3444         causes the broken Solaris printf to dump core, in a subshell,
3445         so the segmentation fault message is reliably suppressed.
3446         Fix shell expansion errors by using /usr/ucb/echo always;
3447         avoid an error on systems without it by another subshell.
3448         Avoid m4 expansion of `$1'.  Set the zeroth argument of the
3449         subshell-$as_echo to `as_echo', for better error message.
3451 2006-11-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3453         * lib/autoconf/general.m4 (_AC_CACHE_DUMP): If `BASH_ARGV' or
3454         `BASH_SOURCE' contain a newline, set them to empty, as they may
3455         not be unset.
3457 2006-11-27  Paul Eggert  <eggert@cs.ucla.edu>
3459         Turn AC_FUNC_SETVBUF_REVERSED into a noop.  It's been obsolete for
3460         years and is too hard to maintain now.  The last straw was
3461         reported by Jerker Baeck in
3462         <http://lists.gnu.org/archive/html/autoconf/2006-11/msg00102.html>.
3463         * NEWS: AC_FUNC_SETVBUF_REVERSED is now obsolete.
3464         * doc/autoconf.texi (Particular Functions): Move
3465         AC_FUNC_SETVBUF_REVERSED from here...
3466         (Obsolete Macros): ... to here.  Say that it does nothing now.
3467         * lib/autoconf/functions.m4 (AC_FUNC_SETVBUF_REVERSED):
3468         Turn into (almost) a no-op.
3470         * lib/autoconf/c.m4 (AC_PROG_GCC_TRADITIONAL, AC_C_CONST):
3471         (AC_C_VOLATILE):
3472         Do not recommend via AN_FUNCTION, AN_IDENTIFIER, or AN_HEADER.
3473         These macros are obsolescent and new applications shouldn't need them.
3474         * lib/autoconf/functions.m4 (AC_FUNC_CLOSEDIR_VOID, AC_REPLACE_FNMATCH):
3475         (AC_FUNC_GETLOADAVG, AC_FUNC_GETPGRP, AC_FUNC_MEMCMP):
3476         (AC_FUNC_SELECT_ARGTYPES, AC_FUNC_SETPGRP, AC_FUNC_STAT, AC_FUNC_LSTAT):
3477         (AC_FUNC_STRFTIME, AC_FUNC_SETVBUF_REVERSED, AC_FUNC_UTIME_NULL):
3478         (AC_FUNC_VPRINTF): Likewise.
3479         * lib/autoconf/headers.m4 (AC_HEADER_DIRENT, AC_HEADER_STAT):
3480         (AC_HEADER_STDC, AC_HEADER_SYS_WAIT, AC_HEADER_TIME): Likewise.
3481         * lib/autoconf/types.m4 (AC_STRUCT_TM): Likewise.
3483         * doc/autoconf.texi (Setting Output Variables): Mention that
3484         @VAR1@VAR2 has unspecified behavior.  Problem reported by
3485         Ralf Wildenhues.
3486         * NEWS: Mention this.
3488         * Makefile.am: Put only a single '#' into the copyright notice,
3489         so that it's also present in the output file.  Standardize wording
3490         in makefile copyright notices to match GNU coding standards.
3491         * bin/Makefile.am: Likewise.
3492         * doc/Makefile.am: Likewise.
3493         * lib/Makefile.am: Likewise.
3494         * lib/freeze.mk: Likewise.
3495         * lib/autoconf/Makefile.am: Likewise.
3496         * lib/autoscan/Makefile.am: Likewise.
3497         * lib/autotest/Makefile.am: Likewise.
3498         * lib/m4sugar/Makefile.am: Likewise.
3499         * man/Makefile.am: Likewise.
3500         * tests/Makefile.am: Likewise.
3501         * lib/emacs/Makefile.am: Remove copyright notice; it's just a
3502         one-line file.
3504 2006-11-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3506         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE): Fix error
3507         in the sed script that mangles the awk script: delete up to the
3508         first exclamation mark only.
3509         * tests/torture.at (Substitute and define special characters):
3510         Test '!' too.
3512 2006-11-26  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3514         Rewrite config files generation: avoid quadratic growth in
3515         the number of substituted variables by using awk instead of sed
3516         for the bulk of the substitutions.
3517         * NEWS: Mention this.
3518         * doc/autoconf.texi (Setting Output Variables): `|#_!!_#|' is also
3519         forbidden in the output (and thus input) file.
3520         * lib/autoconf/status.m4 (_AC_AWK_LITERAL_LIMIT): New macro.
3521         (_AC_OUTPUT_FILES_PREPARE): Instead of several sed scripts,
3522         generate just one large awk script for substitutions,
3523         eliminating much of the earlier complexity, while adding some
3524         new complexity.  Only expand the substitution templates at
3525         configure time, for smaller configure script size.  If
3526         _AC_SUBST_FILES are used, test 'awk' for working getline support
3527         at config.status time.  If absent, interpolate through the
3528         shell.  The awk script was written with much help
3529         from Paolo Bonzini and Paul Eggert.
3530         (_AC_SED_CMD_NUM, _AC_SED_DELIM_NUM, _AC_SED_FRAG): Removed.
3531         (_AC_SED_FRAG_NUM): Likewise.
3532         (_AC_SUBST_CMDS): Renamed from...
3533         (_AC_SED_CMDS): ...this.
3534         (_AC_OUTPUT_FILE): Use _AC_SUBST_CMDS.
3535         * tests/torture.at (Substitute a 2000-byte string): Also
3536         substitute a line with 1000 words, and a variable with several
3537         long lines.
3538         (Substitute and define special characters): Test awk special
3539         characters, and put substitution input strings `@foo@' in the
3540         output, to test that no recursion happens; test several other
3541         combinations from Paolo Bonzini.
3543 2006-11-25  Paul Eggert  <eggert@cs.ucla.edu>
3545         * lib/autotest/general.m4 (AT_INIT): Undo recent changes
3546         that replaced echo with AS_ECHO where this wasn't necessary.
3547         Problem reportd by Ralf Wildenhues.
3548         * lib/m4sugar/m4sh.m4 (_AS_ECHO_PREPARE): Port to Solaris 7,
3549         where "/usr/bin/printf '%s\n' S" dumps core if S is long.
3550         This is Sun bug 4206210.  Problem reportd by Ralf Wildenhues.
3552 2006-11-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3554         * lib/freeze.mk (GREP): Removed, no need to initialize this.
3556 2006-11-21  Paul Eggert  <eggert@cs.ucla.edu>
3558         * doc/autoconf.texi (Limitations of Usual Tools): Don't claim
3559         that traditional Awk lacks 3-arg "split".  It has it.
3560         Mention that FS must be a single character, and a few other
3561         99-byte limits of traditional Awk.
3562         Mention that if (i in a) doesn't work with traditional Awk.
3564 2006-11-18  Paul Eggert  <eggert@cs.ucla.edu>
3566         * tests/autotest.at (BSx641-newline in command):
3567         (BS-BS-newline in command, BSx640-newline in command):
3568         (Newline-CODE-BS-newline in command):
3569         (Single-quote-BS-newline in command):
3570         (Single-quote-newline-BS-newline in command):
3571         Use printf '%s\n' instead of echo, for portability to hosts
3572         where echo interprets backslashes.  This will break on hosts
3573         that lack printf, but for now let's assume all such hosts
3574         are dead (if not, we should get reports of test failures).
3576 2006-11-17  Paul Eggert  <eggert@cs.ucla.edu>
3578         'echo' has some portability problems, when given a first argument
3579         with a leading '-', or when given any argument containing '\'.
3580         Avoid using 'echo' in these cases.
3581         * bin/Makefile.am $(bin_SCRIPTS): Rewrite to avoid 'echo' entirely.
3582         * lib/autoconf/c.m4 (AC_PROG_CC, AC_PROG_CXX, AC_PROG_OBJC): Likewise.
3583         * lib/autoconf/fortran.m4 (_AC_PROG_FC): Likewise.
3584         * lib/autotest/general.m4 (AT_INIT): Likewise.
3585         * bin/autoconf.as: Use AS_ECHO rather than plain echo, when the
3586         argument might be unportable.
3587         * lib/autoconf/c.m4 (AC_PROG_CC_C_O): Likewise.
3588         * lib/autoconf/erlang.m4 (AC_LANG(Erlang)): Likewise.
3589         * lib/autoconf/fortran.m4 (_AC_PROG_FC_V_OUTPUT):
3590         (_AC_FC_LIBRARY_LDFLAGS): Likewise.
3591         * lib/autoconf/functions.m4 (AC_FUNC_GETLOADAVG): Likewise.
3592         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ENABLE, _AC_INIT_PREPARE):
3593         (_AC_ARG_VAR_VALIDATE, AC_ARG_PROGRAM, _AC_MSG_LOG_CONFTEST):
3594         (AC_RUN_LOG, _AC_RUN_IFELSE, _AC_LIBOBJS_NORMALIZE): Likewise.
3595         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Likewise.
3596         * lib/autoconf/libs.m4 (_AC_PATH_X_DIRECT): Likewise.
3597         * lib/autoconf/programs.m4 (_AC_FEATURE_CHECK_LENGTH):
3598         (AC_PROG_MAKE_SET): Likewise.
3599         * lib/autoconf/status.m4 (_AC_SRCDIRS, _AC_OUTPUT_HEADER):
3600         (_AC_OUTPUT_SUBDIRS, _AC_OUTPUT_CONFIG_STATUS): Likewise.
3601         * lib/autotest/general.m4 (_AT_CREATE_DEBUGGING_SCRIPT, AT_INIT):
3602         (AT_CLEANUP, _AT_DECIDE_TRACEABLE, _AT_CHECK): Likewise.
3603         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE, _AS_ECHO_UNQUOTED):
3604         (_AS_BASENAME_SED, _AS_DIRNAME_SED, AS_MKDIR_P, AS_TMPDIR, AS_UNAME):
3605         (AS_TR_SH, AS_TR_CPP, AS_VAR_GET): Likewise.
3606         * bin/autoconf.as: Redo verbose flag implementation, as the old
3607         scheme wouldn't work with AS_ECHO.
3608         * lib/autotest/general.m4 (AT_INIT): Likewise.
3609         * lib/autoconf/general.m4 (AC_MSG_RESULT, AC_MSG_RESULT_UNQUOTED):
3610         Don't use ECHO_T, since ECHO_N is now reliable.
3611         * lib/autotest/general.m4 (AT_INIT): Likewise.
3612         * lib/autoconf/general.m4 (AC_ARG_PROGRAM): Use sed "$script"
3613         rather than using a here-document to put the script into a file.
3614         (_AC_DO_ECHO): Hoist the eval out of the echo, so that we can
3615         use AS_ECHO.
3616         * lib/m4sugar/m4sh.m4 (AS_VAR_GET): Likewise.
3617         * lib/autoconf/programs.m4 (_AC_FEATURE_CHECK_LENGTH): Use
3618         AS_ECHO_N rather than ECHO_N and ECHO_C.  This doesn't fix any
3619         bug, but we might as well stop using ECHO_N and ECHO_C internally.
3620         * lib/autotest/general.m4 (AT_SETUP): Likewise.
3621         * lib/m4sugar/m4sh.m4 (_AS_ECHO_N): Likewise.
3622         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS):
3623         (_AC_OUTPUT_MAIN_LOOP): Rework echo so that it has just one
3624         operand, as AS_ECHO requires.  Avoid double file name expansion.
3625         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Invoke _AS_ECHO_PREPARE.
3626         Don't set as_nl, since _AS_ECHO_PREPARE does that now.
3627         (_AS_PREPARE): Comment that _AS_ECHO_N_PREPARE is just for user code.
3628         (AS_ECHO, AS_ECHO_N, _AS_ECHO_PREPARE): New macros.
3629         * tests/c.at (AC_PROG_CPP without warnings, AC_PROG_CPP via CC):
3630         Double-quote strings that would otherwise contain M4 comments.
3631         * tests/m4sh.at (AS_ECHO and AS_ECHO_N): New test.
3633         * configure.ac (AC_INIT): Bump to 2.61a.
3634         * NEWS: Likewise.
3636 2006-11-17  Paul Eggert  <eggert@cs.ucla.edu>
3638         Version 2.61.
3640         * configure.ac (AC_INIT): Bump to 2.61.
3641         * NEWS: Likewise.
3643         * tests/autotest.at (Macro with backslash in a test title):
3644         Comment out for now, as this tests neither fails nor passes
3645         reliably.  Problem reported by Ralf Wildenhues.
3647 2006-11-16  Paul Eggert  <eggert@cs.ucla.edu>
3649         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ENABLE): Fix some typos
3650         in previous change, which caused test failures.
3652 2006-11-16  Stepan Kasal  <kasal@ucw.cz>
3654         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ARGS): Factor out
3655         code for --enable, --disable, --with, and --without to...
3656         (_AC_INIT_PARSE_ENABLE): ... a new macro.
3657         * doc/autoconf.texi (Package Options):
3658         * NEWS: Document that AC_ARG_ENABLE allows dots, too.
3660 2006-11-16  Paul Eggert  <eggert@cs.ucla.edu>
3662         Import these changes from config via gnulib:
3664         2006-11-15  Ben Elliston  <bje@gnu.org>
3666         From Josselin Mouette <joss@debian.org>:
3667         * build-aux/config.guess (SX-8:SUPER-UX:*:*): New.
3669         2006-11-08  Ben Elliston  <bje@gnu.org>
3671         * build-aux/config.guess (authenticamd:Interix*:[3456]*): Another AMD64.
3673         2006-11-07  Steve Woodford  <scw@NetBSD.org>
3674                     Ben Elliston  <bje@gnu.org>
3676         * build-aux/config.guess (*:NetBSD:*:*): Handle sh5el arch.
3677         * build-aux/config.sub (sh5el): New basic_machine.
3680         Import this change from coreutils:
3682         2006-02-13  Jim Meyering  <jim@meyering.net>
3684         * GNUmakefile (all): Emit diagnostics to stderr, not stdout.
3687         Import this change from gnustandards via gnulib:
3689         2006-11-15  Karl Berry  <karl@gnu.org>
3691         * standards.texi: core -> memory, throughout.
3692         (CPU Portability): show correct example of calling write
3693         on a char value; thanks to Paul Eggert for the code.
3694         Both of these suggestions from Eugene Y. Vasserman.
3697         Import these changes from texinfo via gnulib:
3699         2006-11-08  Karl Berry  <karl@gnu.org>
3701         * build-aux/texinfo.tex (\dopdfimage): look for png, jpg/jpeg/JPG, and
3702           as well as pdf images, since they are supported in pdftex with
3703           no further ado.
3705         2006-11-05  Karl Berry  <karl@gnu.org>
3707         * doc/texinfo.tex (Image Syntax): don't mention GIF any more.
3709 2006-11-13  Paul Eggert  <eggert@cs.ucla.edu>
3711         * NEWS: Document the AC_ARG_WITH change.
3713 2006-11-13  Bruno Haible  <bruno@clisp.org>
3715         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ARGS): For --with, --without
3716         options, transliterate also dots to underscores.
3717         (_AC_ENABLE_IF): Transliterate also dots to underscores.
3718         * doc/autoconf.texi (External Software): Document that AC_ARG_WITH's
3719         first argument may also contain dots.
3721 2006-11-09  Paul Eggert  <eggert@cs.ucla.edu>
3723         * tests/mktests.sh (ac_exclude_list): Exclude AC_PROG_CXX_C_O, for
3724         benefit of platforms like Solaris+GCC where it is common to have a
3725         non-working g++ installation.
3727 2006-11-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3728         and Joel E. Denny  <jdenny@ces.clemson.edu>
3729         and Paul Eggert  <eggert@cs.ucla.edu>
3731         * tests/autotest.at (AT_CHECK_AT_TITLE): Fix shell quoting bugs
3732         and non-portable sed scripts, and use $CONFIG_SHELL when invoking
3733         ./micro-suite.
3735 2006-11-08  Paul Eggert  <eggert@cs.ucla.edu>
3737         * lib/autoconf/types.m4 (AC_TYPE_LONG_LONG_INT): Set
3738         ac_cv_type_long_long_int to 'yes' instead of 'cross-compiling'.
3739         Imported from a similar patch to gnulib by Bruno Haible.
3741 2006-11-08  Paul Eggert  <eggert@cs.ucla.edu>
3743         * NEWS: New macros AC_C_FLEXIBLE_ARRAY_MEMBER, AC_C_VARARRAYS.
3744         * doc/autoconf.texi (C Compiler): Document them.
3745         * lib/autoconf/c.m4 (AC_C_FLEXIBLE_ARRAY_MEMBER, AC_C_VARARRAYS):
3746         New macros, taken from gnulib.
3748 2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
3750         * lib/autoconf/types.m4 (AC_TYPE_LONG_LONG_INT): Detect bug in
3751         Tandem NonStop Kernel (OSS) cc -O circa 2004, reported by
3752         Matthew Woehlke.
3754 2006-10-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3756         * tests/torture.at (Configuring subdirectories): Do not skip
3757         Automake 1.10 nor future Automake 11.1 (sic).
3759 2006-10-26  Joel E. Denny  <jdenny@ces.clemson.edu>
3760         and Stepan Kasal  <kasal@ucw.cz>
3762         Handle special characters in test case titles correctly.
3763         * lib/autotest/general.m4 (AT_INIT): M4-quote and AS_ESCAPE AT_help_all
3764         properly.
3765         (AT_SETUP): M4-quote and AS_ESCAPE the title properly everywhere.
3766         * tests/autotest.at (AT_CHECK_AT_TITLE): Add EXPANDED-TITLE-TO-TEST
3767         argument.  Extend to check titles printed by ./micro-suite and
3768         ./micro-suite -l and the title in micro-suite.log.
3769         (Backquote in a test title,
3770         Single-quote in a test title,
3771         Double-quote in a test title): Don't expect failure anymore.
3772         (Backslash in a test title): Put a non-whitespace character after the
3773         backslash so that Bourne shells might actually see it as an escape
3774         sequence.
3775         (Brackets in a test title,
3776         Pound in a test title,
3777         Comma in a test title,
3778         Quoted Macro in a test title,
3779         Macro in a test title,
3780         Macro with single-quote in a test title): New tests.
3781         (Macro with backquote in a test title,
3782         Macro with double-quote in a test title,
3783         Macro with backslash in a test title): New tests expected to fail.
3784         * tests/torture.at (#define header templates): M4-quote this title in
3785         AT_SETUP call so that no M4 code is commented inadvertently somewhere.
3786         The visible effect was a stray [] in the testsuite output.
3788 2006-10-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3790         * doc/autoconf.texi (Limitations of Builtins): Do not invoke
3791         `trap ... 0' inside a function, for AIX sh.
3793 2006-10-26  Paul Eggert  <eggert@cs.ucla.edu>
3795         * tests/base.at (AC_COMPUTE_INT): Test **0** rather than 1 / 0,
3796         since powerpc-apple-darwin8-gcc-4.0.1 (Apple Computer, Inc. build
3797         5363) simply issues a warning when dividing by zero at compile
3798         time.  Problem reported by Elias Pipping.
3800 2006-10-26  Eric Blake  <ebb9@byu.net>
3802         * THANKS: Update.
3803         * doc/autoconf.texi (Evaluation Macros): Improve the example to
3804         show effect on macros that expand with commas.
3805         Reported by Joel E. Denny.
3807         * tests/m4sugar.at (m4_warn, m4_require: circular dependencies):
3808         Also work with M4 1.4.8.
3810 2006-10-25  Paul Eggert  <eggert@cs.ucla.edu>
3812         * doc/autoconf.texi (Slashes): Document Tru64 4.0 bug reported by
3813         Jim Meyering.
3815 2006-10-25  Stepan Kasal  <kasal@ucw.cz>
3817         * tests/tools.at (autom4te --force): New test, verifies that
3818         `--force' always rewrites the output file.
3820 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
3822         * doc/autoconf.texi (Limitations of Usual Tools): Document that rm
3823         needs operands on NetBSD 2.0.2.  Problem reported by Bruno Haible.
3825 2006-10-24  Stepan Kasal  <kasal@ucw.cz>
3827         * tools/trace.at (autoconf --trace: user macros): Test `$%'.
3829 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
3831         * lib/autoconf/specific.m4 (_AC_SYS_LARGEFILE_MACRO_VALUE):
3832         If FUNCTION-BODY is nonempty, use AC_LINK_IFELSE rather than
3833         AC_COMPILE_IFELSE, to work around problem with OSF/1 4.0F fseeko
3834         reported by Nelson H. F. Beebe for Coreutils 6.4.
3836         * tests/tools.at (autoconf --trace: user macros): Remove test
3837         for tracing multiline macros, since m4 1.4.7a uses a different
3838         way to number lines.  Problem reported by Ralf Wildenhues.
3840 2006-10-24  Stepan Kasal  <kasal@ucw.cz>
3842         * bin/autom4te.in (handle_m4): Do not redirect stdin to
3843         /dev/null since the heuristics for interactive behaviour was
3844         fixed in CVS m4.
3846         * bin/autom4te.in: With --force, always refresh the output
3847         file.  Problem reported by Greg Schafer <gschafer@zip.com.au>.
3849         * bin/autoconf.as: Fix the verbose message at the end.
3851 2006-10-23  Paul Eggert  <eggert@cs.ucla.edu>
3853         * configure.ac (AC_INIT): Bump to 2.60c.
3854         * NEWS: Likewise.
3856 2006-10-22  Paul Eggert  <eggert@cs.ucla.edu>
3858         * NEWS: Version 2.60b.
3860         Import this change from Texinfo:
3861         2006-10-15  Karl Berry  <karl@gnu.org>
3862         * build-aux/texinfo.tex: automake 1.10
3864         * NEWS: Remove AC_CACHE_CHECK_INT.
3865         * doc/autoconf.texi (Caching Results): Likewise.
3866         * lib/autoconf/general.m4 (_AC_CACHE_CHECK_INT): Renamed from
3867         AC_CACHE_CHECK_INT, since it's no longer public.
3868         * lib/autoconf/types.m4: All uses of AC_CACHE_CHECK_INT changed.
3869         * tests/base.at (AC_COMPUTE_INT): Test this, not AC_CACHE_CHECK_INT.
3871 2006-10-20  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3873         * doc/autoconf.texi (Limitations of Usual Tools): Fix two typos.
3875 2006-10-19  Eric Blake  <ebb9@byu.net>
3877         * lib/m4sugar/m4sugar.m4 (m4_mkstemp): New macro.
3878         (m4_maketemp): Avoid warnings with M4 1.9a.
3879         * lib/emacs/autoconf-mode.el (autoconf-font-lock-keywords): Color
3880         m4_mkstemp.
3881         * doc/autoconf.texi (Redefined M4 Macros): Document m4_mkstemp.
3882         * NEWS: Likewise.
3884 2006-10-16  Eric Blake  <ebb9@byu.net>
3886         * doc/autoconf.texi (Setting Output Variables): Fix typo.
3888         * bin/autoconf.as (version): Reword to match GNU Coding
3889         Standards.
3890         * bin/autoheader.in (version): Likewise.
3891         * bin/autom4te.in (version): Likewise.
3892         * bin/autoreconf.in (version): Likewise.
3893         * bin/autoscan.in (version): Likewise.
3894         * bin/autoupdate.in (version): Likewise.
3895         * bin/ifnames.in (version): Likewise.
3897 2006-10-14  Stepan Kasal  <kasal@ucw.cz>
3899         * lib/m4sugar/m4sh.m4 (AS_LITERAL_IF): Expand $1 before
3900         looking for special shell characters.
3901         * lib/autoconf/functions.m4 (AC_CHECK_FUNC): Do not expand the
3902         macro defined by AS_VAR_PUSHDEF before passing it as a
3903         parameter.
3904         * lib/autoconf/general.m4 (AC_CHECK_FILE, AC_CHECK_DECL):
3905         * lib/autoconf/libs.m4 (AC_SEARCH_LIBS, AC_CHECK_LIB):
3906         * lib/autoconf/types.m4 (_AC_CHECK_TYPE_NEW, AC_CHECK_MEMBER):
3907         * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_MONGREL):
3908         (_AC_CHECK_HEADER_NEW, _AC_CHECK_HEADER_OLD, _AC_CHECK_HEADER_DIRENT):
3909         Likewise.
3910         * lib/autotest/general.m4 (AT_INIT): Quote parameters of
3911         AS_VAR_* properly.
3912         * tests/m4sh.at (AS_LITERAL_IF): New test.
3914 2006-10-14  Paul Eggert  <eggert@cs.ucla.edu>
3916         (Imported from Automake.)
3917         * build-aux/install-sh (posix_mkdir): Reject FreeBSD 6.1 mkdir -p -m,
3918         which incorrectly sets the mode of an existing destination
3919         directory.  In some cases the unpatched install-sh could do the
3920         equivalent of "chmod 777 /" or "chmod 0 /" on a buggy FreeBSD
3921         system.  We hope this is rare in practice, but it's clearly worth
3922         fixing.  Problem reported by Alex Unleashed in
3923         <http://lists.gnu.org/archive/html/bug-autoconf/2006-10/msg00012.html>.
3924         Also, don't bother to check for -m bugs unless we're using -m;
3925         suggested by Stepan Kasal.
3927 2006-10-14  Paul Eggert  <eggert@cs.ucla.edu>
3929         Import this change from Automake:
3931         2006-08-23  Alexandre Duret-Lutz  <adl@gnu.org>
3932         * lib/Autom4te/ChannelDefs.pm (usage): Mention that -Wportability
3933         is enabled by default with gnu and gnits strictness.
3934         Report from Bruno Haible.
3936         2006-03-10  Alexandre Duret-Lutz  <adl@gnu.org>
3937         * lib/Autom4te/ChannelDefs.pm: Make -Wportability the default in
3938         gnu and gnits modes.
3940         Import this change from Config:
3942         2006-09-20  Ben Elliston  <bje@gnu.org>
3943         * build-aux/config.sub (score, score-*): New.
3945         Import this change from Gnulib:
3947         2006-09-16  Karl Berry  <karl@gnu.org>
3948         * doc/fdl.texi (ADDENDUM): switch to @heading from @appendixsubsec,
3949         to avoid sectioning errors.
3951         Import these changes from Texinfo:
3953         2006-10-04  Karl Berry  <karl@gnu.org>
3954         * build-aux/texinfo.tex (\singlequotechar): rename to \codequoteright.
3955         (\quoteexpand): rename to \rquoteexpand.
3956         (\codequoteleft): new def, to look for @set codequotebacktick.
3957         (\lquoteexpand, \quoteexpand): new defs.
3958         (\lquoteChar, \rquoteChar, \dashChar, \underChar: new \chardef's.
3959         (\code): must use new \...Char values, since now ` is active.
3961         2006-08-26  Karl Berry  <karl@gnu.org>
3962         * build-aux/texinfo.tex (\textdegree): New command.
3964         2006-08-12  Karl Berry  <karl@gnu.org>
3965         * build-aux/texinfo.tex (error \box0): smaller font.
3967 2006-10-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3969         * doc/autoconf.texi (Autoheader Macros): Fix syntax error.
3971 2006-10-13  Stepan Kasal  <kasal@ucw.cz>
3973         * doc/autoconf.texi (Autoheader Macros): Warn that the text
3974         added to the template can get mangled.
3976 2006-10-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3978         * lib/autoconf/functions.m4 (AC_FUNC_OBSTACK): In the test,
3979         include the default headers, and redefine obstack_chunk_alloc
3980         and obstack_chunk_free.  Fixes false failure with glibc.
3982 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
3984         * lib/m4sugar/m4sh.m4 (_AS_TEST_PREPARE): Set as_executable_p,
3985         for backward compatibility with Libtool 1.5.22.  Problem reported
3986         by Ralf Wildenhues.
3988 2006-10-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3990         * lib/autoconf/c.m4 (AC_PROG_GCC_TRADITIONAL): Require
3991         AC_PROG_CC.
3992         Report by IOhannes m zmoelnig <zmoelnig@iem.at>.
3994 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
3996         * NEWS: AC_USE_SYSTEM_EXTENSIONS now defines _TANDEM_SOURCE for
3997         the NonStop platform.
3998         * doc/autoconf.texi (Posix Variants): Likewise.
3999         * lib/autoconf/specific.m4 (AC_USE_SYSTEM_EXTENSIONS): Likewise.
4001         * lib/m4sugar/m4sh.m4 (AS_TEST_X): New macro.
4002         (AS_EXECUTABLE_P): Use as_test_x rather than as_executable_p.
4003         (_AS_TEST_PREPARE): Set as_test_x rather than as_executable_p.
4004         Use a better substitute, by inspecting the output of "ls"
4005         rather than just using ":".
4006         * lib/autoconf/general.m4 (_AC_LINK_IFELSE): Use AS_TEST_X
4007         rather than AS_EXECUTABLE_P, since we needn't worry about
4008         non-regular files here.
4010         * NEWS: Autoconf-generated shell scripts no longer export BIN_SH,
4011         due to configuration hassles with this.  See Tonya Underwood's report
4012         <http://lists.gnu.org/archive/html/bug-autoconf/2006-10/msg00003.html>.
4013         * doc/autoconf.texi (Special Shell Variables): Likewise.
4015 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
4016             Stepan Kasal  <kasal@ucw.cz>
4018         * lib/m4sugar/m4sh.m4 (AS_BOURNE_COMPATIBLE): Don't set BIN_SH.
4019         (_AS_DETECT_BETTER_SHELL): Don't look in /usr/bin/posix.
4021 2006-10-11  Stepan Kasal  <kasal@ucw.cz>
4023         * lib/m4sugar/m4sh.m4 (AS_BOURNE_COMPATIBLE): Move the
4024           initialization which is not inherited through the environment
4025         (_AS_BOURNE_COMPATIBLE): ... to this new macro.
4026         (_AS_RUN): Call _AS_BOURNE_COMPATIBLE, not AS_BOURNE_COMPATIBLE.
4028 2006-10-09  Paul Eggert  <eggert@cs.ucla.edu>
4030         * doc/autoconf.texi (Limitations of Usual Tools): Describe
4031         problems with mkdir -p -m.
4033 2006-10-06  Paul Eggert  <eggert@cs.ucla.edu>
4035         * lib/autoconf/c.m4 (_AC_PROG_PREPROC_WORKS_IFELSE): Remove
4036         comment about ac_cpp_err; it was incorrect, and anyway
4037         ac_cpp_err is being removed below.
4038         * lib/autoconf/general.m4 (_AC_PREPROC_IFELSE): Don't
4039         set ac_cpp_err to 'yesyes' if preproc_warn_flag and werror_flag
4040         are both 'yes'.  In fact, don't bother setting ac_cpp_err at all;
4041         nobody uses it.
4042         (_AC_COMPILE_IFELSE, _AC_LINK_IFELSE): Don't log our funky tests
4043         with werror_flag and conftest.err and so forth.  This is more
4044         compatible with how _AC_PROG_PREPROC_WORKS_IFELSE behaves,
4045         and anyway the user shouldn't normally want to see this gorp logged.
4046         Problem reported by Ralf Wildenhues.
4047         * lib/autoconf/lang.m4 (AC_LANG_WERROR): werror_flag's default is
4048         empty, not 'no', since the rest of the code uses 'test -z'.
4050 2006-10-04  Paul Eggert  <eggert@cs.ucla.edu>
4052         * lib/autoconf/general.m4 (_AC_COMPILE_IFELSE, _AC_LINK_IFELSE):
4053         Use a single call to AC_DO_TOKENS rather than multiple, for
4054         efficiency.
4055         (_AC_LINK_IFELSE): Test that resulting file is executable.
4056         Problem reported by mwoehlke in
4057         <http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00048.html>.
4059         * lib/m4sugar/m4sh.m4 (_AS_TEST_PREPARE): Use "test -x /" rather
4060         than creating a file to use with test -x; this is much faster.
4062 2006-10-02  Bruno Haible  <bruno@clisp.org>
4064         * lib/autom4te.in (Automake-preselections): Add
4065         AM_GNU_GETTEXT_INTL_SUBDIR, for automake 1.10.
4067 2006-09-27  Stepan Kasal  <kasal@ucw.cz>
4069         * doc/autoconf.texi (Writing testsuite.at): Fix a typo: for
4070         standard error, `experr' should be used, not `expout'.
4072 2006-09-26  Paul Eggert  <eggert@cs.ucla.edu>
4074         * lib/autoconf/functions.m4 (AC_FUNC_FSEEKO): Don't compile the
4075         fseeko testing program twice; just use the earlier result.
4076         * lib/autoconf/specific.m4 (_AC_SYS_LARGEFILE_MACRO_VALUE):
4077         Set cache var to 'unknown' (not 'no') if leaving the macro unset
4078         still doesn't let the program compile.
4079         (AC_SYS_LARGEFILE): Test for _LARGE_FILES only if earlier tests
4080         failed.
4082         * lib/autoconf/functions.m4: Fix problems reported by Ralf Wildenhues.
4083         (AC_FUNC_ERROR_AT_LINE): Don't bother to check for error.h.  Just
4084         include it, without including anything else.
4085         (AC_FUNC_FSEEKO): Avoid gcc -Wall warnings about constant
4086         expressions.
4087         (AC_FUNC_STRNLEN): Require AC_USE_SYSTEM_EXTENSIONS.
4089 2006-09-26  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4091         * lib/autoconf/functions.m4 (AC_FUNC_ERROR_AT_LINE): Check for
4092         `error.h', and include it, for a `error_at_line' prototype.
4093         Use a nonempty format string in the link test.
4094         * lib/autoconf/functions.m4 (AC_FUNC_WAIT3): Include <sys/wait.h>,
4095         for a declaration of wait3.
4097 2006-09-26  Paul Eggert  <eggert@cs.ucla.edu>
4099         * NEWS: AC_CHECK_DECL now also works with aggregate objects.
4100         * doc/autoconf.texi (Generic Declarations): Clarify that AC_CHECK_DECL
4101         can apply to constants too, and that it checks for macro defns.
4102         * lib/autoconf/general.m4 (AC_CHECK_DECL): Assume C89 or better,
4103         and simply cast the identifier to void.  This handles structure
4104         values.  Problem reported by Ralf Wildenhues.
4105         * tests/semantics.at (AC_CHECK_DECLS): Also check enums.
4107 2006-09-26  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4109         * tests/semantics.at (AC_CHECK_DECLS): Also check macros,
4110         structure, and function symbols.
4112 2006-09-26  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4114         * tests/semantics.at (AC_CHECK_MEMBERS): Also test with a struct
4115         member.
4117 2006-09-25  Paul Eggert  <eggert@cs.ucla.edu>
4119         * NEWS: Recommend M4 1.4.7 instead of 1.4.6.
4120         * README: Likewise.
4121         * doc/autoconf.texi (Introduction, Why GNU M4): Likewise.
4123 2006-09-25  Paul Eggert  <eggert@cs.ucla.edu>
4124         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4126         * lib/autoconf/functions.m4 (AC_FUNC_OBSTACK): Avoid `gcc -Wall'
4127         warnings (uninitialized value).
4128         (AC_FUNC_UTIME_NULL): Likewise, test for and include <utime.h> if
4129         present.
4130         * lib/autoconf/types.m4 (AC_TYPE_LONG_LONG_INT): Likewise, add
4131         parentheses.
4132         (AC_STRUCT_TM): Likewise, avoid unused variables.
4134 2006-09-20  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4136         * lib/autoconf/c.m4 (_AC_ARG_VAR_LDFLAGS): Update comment.
4137         (_AC_ARG_VAR_LIBS): New macro: let LIBS be precious.
4138         (AC_PROG_CC, AC_PROG_CXX, AC_PROG_OBJC): Call _AC_ARG_VAR_LIBS.
4139         * lib/autoconf/fortran.m4 (AC_PROG_F77, AC_PROG_FC): Likewise.
4140         Report by Olly Betts.
4142 2006-09-19  Eric Blake  <ebb9@byu.net>
4144         * m4/m4.m4: Change copyright.
4145         * configure: Regenerate.
4146         * Makefile.in: Likewise.
4147         * bin/Makefile.in: Likewise.
4148         * doc/Makefile.in: Likewise.
4149         * lib/Makefile.in: Likewise.
4150         * lib/Autom4te/Makefile.in: Likewise.
4151         * lib/autoconf/Makefile.in: Likewise.
4152         * lib/autoscan/Makefile.in: Likewise.
4153         * lib/autotest/Makefile.in: Likewise.
4154         * lib/emacs/Makefile.in: Likewise.
4155         * lib/m4sugar/Makefile.in: Likewise.
4156         * man/Makefile.in: Likewise.
4157         * tests/Makefile.in: Likewise.
4159         * m4/m4.m4 (AC_PROG_GNU_M4): Check for m4 --debugfile support.
4160         * bin/Makefile.am (edit): Substitute M4_DEBUGFILE.
4161         * bin/autom4te.in (handle_m4): Favor --debugfile over misnamed
4162         --error-output, to avoid warnings with M4 2.0.
4164 2006-09-19  Stepan Kasal  <kasal@ucw.cz>
4166         * lib/autoconf/libs.m4 (AH_CHECK_LIB): Fix quoting, to be
4167           consistent with _AH_CHECK_FUNCS and _AH_CHECK_HEADERS.
4168         * lib/autoconf/headers.m4 (AH_CHECK_HEADERS_DIRENT): Likewise.
4170 2006-09-15  Stepan Kasal  <kasal@ucw.cz>
4172         * lib/autoconf/functions.m4 (AC_FUNC_GETMNTENT): Eliminate the
4173         expansion of AC_CHECK_FUNCS.
4175 2006-09-14  Stepan Kasal  <kasal@ucw.cz>
4177         * lib/autoconf/general.m4 (AC_CONFIG_MACRO_DIR): Remove a
4178         mistaken comment: the path has to be relative; do not use
4179         the path at runtime.
4181 2006-09-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4183         * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): Quote the
4184         argument to `--prefix' for sub-configure scripts.
4185         Pass `--silent' to sub-configure scripts.
4186         * tests/torture.at (Configuring subdirectories): Add tests
4187         for both changes.
4188         * doc/autoconf.texi (Setting Output Variables): Fix example to
4189         not show `--silent' being passed to a `configure' re-run.
4191 2006-09-12  Paul Eggert  <eggert@cs.ucla.edu>
4193         * doc/autoconf.texi (Input): Clarify role of AC_CONFIG_MACRO_DIR.
4194         * lib/autoconf/general.m4 (AC_CONFIG_MACRO_DIR): Do not check
4195         for the existence of the directory at configure-time.  That's
4196         too late, anyway.  Problem reported by Stefan Seefeld.
4198         * lib/m4sugar/m4sh.m4 (_AS_TEST_PREPARE): Avoid bug in UnixWare
4199         7.1.4 /usr/bin/posix/sh described by Tim Rice in
4200         <http://lists.gnu.org/archive/html/bug-autoconf/2006-09/msg00017.html>.
4202 2006-09-11  Stepan Kasal  <kasal@ucw.cz>
4204         * tests/local.at (AT_CHECK_M4): Fix this so that the testsuite
4205         works with GNU M4 1.4.3 again; make the normalized form
4206         match the current m4 message; fix the description.
4207         * test/tools.at (autom4te cache): Adapt to the change.
4209 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
4211         * lib/autoconf/functions.m4 (AC_FUNC_MKTIME):  Add year_2050_test
4212         to catch glibc bug 2821
4213         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
4215         Merge from gnulib as follows: Use AC_CHECK_HEADERS_ONCE instead of
4216         AC_CHECK_HEADERS, and likewise for AC_CHECK_FUNCS_ONCE and
4217         AC_CHECK_FUNCS.  Don't check for stdlib.h, since we now
4218         assume C89.
4220 2006-09-08  Stepan Kasal  <kasal@ucw.cz>
4222         * lib/autom4te.in (Autoconf-without-aclocal-m4): Move the
4223         preselections ...
4224         (Autoconf): ... here.
4225         (Autoscan-preselections): Delete.
4227 2006-09-07  Stepan Kasal  <kasal@ucw.cz>
4229         * lib/autom4te.in (Automake-preselections): Preselect
4230         AM_ENABLE_MULTILIB.
4232 2006-09-05  Paul Eggert  <eggert@cs.ucla.edu>
4234         * doc/autoconf.texi (Preset Output Variables): srcdir and
4235         top_srcdir are not necessarily relative.  Problem reported
4236         by Dries Kimpe.
4238 2006-09-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4240         * lib/autoconf/fortran.m4 (_AC_PROG_FC): Prefer xlf90/xlf95 over
4241         f90/f95 because the latter drivers of AIX Fortran 9.1 do not
4242         accept files with extension `.f'.  For consistency, also prefer
4243         xlf over f77.
4244         * doc/autoconf.texi (Fortran Compiler): Remove mention of bug
4245         from last patch.
4247 2006-09-05  Romain Lenglet  <rlenglet@users.forge.objectweb.org>
4249         * lib/autoconf/erlang.m4 (AC_ERLANG_CHECK_LIB): Added substitution
4250         of ERLANG_LIB_VER_* variables.
4251         * doc/autoconf.texi (Erlang Libraries): Document ERLANG_LIB_VER_*
4252         variables.
4254 2006-09-03  Paul Eggert  <eggert@cs.ucla.edu>
4255         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4257         * doc/autoconf.texi (Limitations of Builtins): Document 'unset'
4258         bugs of Bash 2.01 and 2.05a.
4259         (Fortran Compiler): Document that AC_PROG_CC should be called
4260         before AC_PROG_FC, due to a bug in Autoconf.
4262 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
4264         * NEWS: New macro AC_CACHE_CHECK_INT.  It replaces the
4265         old AC_COMPUTE_INT, which now behaves like _AC_COMPUTE_INT
4266         except the first two arguments are reversed.
4267         * doc/autoconf.texi (Caching Results): New macro AC_CACHE_CHECK_INT.
4268         (Generic Compiler Characteristics): AC_COMPUTE_INT no longer
4269         caches nor outputs a diagnostic.  Suggested by Bruno Haible.
4270         * lib/autoconf/general.m4 (AC_CACHE_CHECK_INT): New macro,
4271         equivalent to the old AC_COMPUTE_INT.
4272         (AC_COMPUTE_INT): No longer caches or reports.  New signature.
4273         All uses changed to AC_CACHE_CHECK_INT.
4274         * tests/base.at (AC_CACHE_CHECK_INT): New test.
4275         * tests/mktests.sh (ac_exclude_list): Add AC_CACHE_CHECK_INT.
4277 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
4279         * NEWS: AC_FUNC_FNMATCH, AC_FUNC_FNMATCH_GNU, AC_FUNC_GETLOADVG,
4280         and AC_REPLACE_FNMATCH are now obsolescent in Autoconf.  New
4281         programs should use their Gnulib counterparts.
4282         * doc/autoconf.texi (Particular Functions): Likewise.
4283         (Macro Names, testsuite Invocation): Replace uses of these
4284         obsolete macros with uses of non-obsolete macros.
4286 2006-08-29  Eric Blake  <ebb9@byu.net>
4288         * configure.ac (AC_INIT): Bump to 2.60b.
4289         * NEWS: Update.
4291 2006-08-28  Eric Blake  <ebb9@byu.net>
4293         * lib/autoconf/headers.m4 (AC_HEADER_STAT): Fix logic that was
4294         mistakenly swapped on 2006-08-15.
4296 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
4298         * NEWS: Version 2.60a.
4300 2006-08-25  Stepan Kasal  <kasal@ucw.cz>
4302         * lib/autoconf/general.m4 (_AC_LINK_IFELSE): Remove the IPA/IPO
4303         file created by the PGI compiler.
4305 2006-08-25  Noah Misch  <noah@cs.caltech.edu>
4307         * lib/Autom4te/General.pm (END): Use `File::Path::rmtree' to
4308         simplify the code.
4310 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
4312         Fix Lex library problem reported to us by Julio Garvia.
4313         * doc/autoconf.texi (Particular Programs): YYTEXT_POINTER is
4314         for the default, which the user can override.
4315         * lib/autoconf/programs.m4 (AC_PROG_LEX): Let _AC_PROG_LEX_YYTEXT_DECL
4316         deal with LEXLIB.
4317         (_AC_PROG_LEX_YYTEXT_DECL): Handle caching correctly; the old code
4318         didn't work if some values were cached but not others.  Test for
4319         broken lex libraries like native ia64-hp-hpux11.22; see
4320         <http://sources.redhat.com/ml/binutils/2003-12/msg00337.html>, and
4321         work around the problem by preferring an empty LEXLIB to -lfl or
4322         -ll.  Let the user set LEXLIB='' to indicate no library needed.
4324         * NEWS: Recommend M4 1.4.6 instead of 1.4.5.
4325         * README: Likewise.
4326         * doc/autoconf.texi (Introduction, Why GNU M4): Likewise.
4328 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
4330         Rework to use more-modern build style.
4331         Many files are renamed; all uses of their names were changed.
4332         * .x-sc_trailing_blank: Renamed from .x-sc_trailing_space.
4333         * .x-sc_useless_cpp_parens: New file.
4334         * build-aux/config.guess: Renamed from config/config.guess.  Update.
4335         * build-aux/config.sub: Renamed from config/config.sub.  Update.
4336         * build-aux/elisp-comp: Renamed from config/elisp-comp.
4337         * build-aux/install-sh: Renamed from config/install-sh.  Update.
4338         * build-aux/mdate-sh: Renamed from config/mdate-sh.
4339         * build-aux/missing: Renamed from config/missing.
4340         * build-aux/texinfo.tex: Renamed from config/texinfo.tex.  Update.
4341         * build-aux/vc-list-files: Renamed from config/vc-list-files.
4342         * config/Makefile.am: Removed.
4343         * config/mkinstalldirs: Removed.
4344         * config/move-if-change: Removed.
4345         * m4/m4.m4: Renamed from config/m4.m4.  Add (C) to copyright notice.
4346         * Makefile.am (SUBDIRS): Remove config.
4347         (ACLOCAL_AMFLAGS): Include from m4, not config.
4348         (EXTRA_DIST): Add config/announce-gen, config/prev-version.txt.
4349         (WGET, WGETFLAGS): New macros, since Makefile.maint no longer does this.
4350         (autom4te-update): Rewrite with a loop.  Get from gnulib, not automake.
4351         Fail if there's an error.
4352         * Makefile.cfg (move_if_change): Remove.
4353         (wget_files): Remove.
4354         (cvs_executable_files): New macro.
4355         (cvs_files): Use it.  Remove mkinstalldirs.  Add fdl.texi.
4356         (executable-update): Use $(cvs_executable_files).
4357         (local-checks-to-skip): Remove.
4358         * Makefile.maint: Merge from coreutils, plus add our own changes
4359         (gzip_rsyncable): New macro.
4360         (GZIP_ENV): Use it.
4361         (CVS_LIST): Use build-aux/vc-list-files.
4362         (VERSION_REGEXP): New macro.
4363         (local-checks-available): Add patch-check, $(syntax-check-rules),
4364         check-AUTHORS.
4365         (syntax-check-rules): Compute dynamically.
4366         (sc_cast_of_x_alloc_return_value): Work even if no source files.
4367         (sc_cast_of_alloca_return_value): Likewise.
4368         (sc_prohibit_atoi_atof): Simplify regexp.
4369         (sc_no_if_have_config_h, sc_require_config_h):
4370         (sc_prohibit_assert_without_use,
4371         (sc_obsolete_symbols): Check for O_NDELAY.
4372         (sc_texi_notab): Remove.
4373         (sc-changelog): Don't make an exception for '----' lines.
4374         (.re-list): Remove, so we don't have a junk file behind.
4375         (sc_system_h_headers): Remove the need for .re-list.
4376         (sc_the_the):  New rule.
4377         (sc_tight_scope): Simplify.
4378         (sc_trailing_blank): Renamed from sc_trailing_space.
4379         (longopt_re): New macro.
4380         (sc_two_space_separator_in_usage): New rule.
4381         (sc_unmarked_diagnostics): Look at all files under CVS.
4382         (sc_useless_cpp_parens, patch-check, check-AUTHORS): New rules.
4383         (news-date-check, changelog-check): Version is OK.
4384         (po-check): Look for lib files even if not in CVS.
4385         (copyright-check): Use $() not ``.
4386         (maintainer-distcheck): Do not depend on changelog-check.
4387         (my-distcheck): Depend on $(release_archive_dir)/$(prev-tgz).
4388         Also check for -Wpointer-arith.
4389         (WGET, WGETFLAGS, tgz-md5, tgz-sha1, bz2-md5, bz2-sha1):
4390         (xdelta-md5, xdelta-sha1, tgz-size, bz2-size, xd-size, rel-check):
4391         Remove.
4392         (announcement): Add --gpg-key-id arg.
4393         (cvs-sv): Remove.
4394         (move_if_change): Just use mv.
4395         (local_updates: Remove wget-update, po-update.
4396         (po_repo, do-po-update, po-update, wget_files, get-targets): Remove.
4397         (config.guess-url_prefix, config.sub-url_prefix): Remove.
4398         (ansi2knr.c-url_prefix, texinfo.tex-url_prefix):
4399         (standards.texi-url_prefix, make-stds.texi-url_prefix, target, url):
4400         ($(get-targets)): Remove.
4401         (cvs_files): Remove missing, mkinstalldirs, ansi2knr.c.
4402         (gnulib_repo): Renamed from automake_repo.  Get from gnulib now.
4403         (cvs-update): Get from gnulib.
4404         (emut_upload_commands): gnupload is in build-aux now.
4405         (alpha beta major): Add changelog-check.  Check version.
4406         * configure.ac (AC_CONFIG_AUX_DIR): Renamed from config to build-aux.
4407         (AC_CONFIG_FILES): Remove.
4408         * bin/autoconf.as: Add spaces to avoid distcheck warning.
4409         * config/announce-gen: Sync from coreutils.
4410         * doc/make-stds.texi: Sync from gnulib.
4411         * doc/standards.texi: Likewise.
4412         * man/Makefile.am: Adjust for config -> build-aux renaming.
4413         * tests/Makefile.am: Prefer $(FOO) to @FOO@.
4414         * tests/local.at: Adjust from config -> build-aux renaming.
4415         * tests/tools.at: Likewise.
4416         * tests/torture.at: Likewise.
4418         * NEWS: The C99 check now tests for vararg macros and 64-bit
4419         preprocessor ints.
4420         * doc/autoconf.texi (C Compiler): Document // comments, va_copy.
4421         * lib/autoconf/c.m4 (_AC_PROG_CC_C99): Test varargs macros and
4422         64-bit preprocessor ints.  Check for static initialization of
4423         long long.  Remove unnecessary casts.
4425 2006-08-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4427         * doc/autoconf.texi (Particular Programs): Mention that
4428         @INSTALL@ and @MKDIR_P@ may vary for different output files.
4429         Reported by Alexandre Duret-Lutz.
4431 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
4433         * lib/autoconf/fortran.m4 (_AC_FC_LIBRARY_LDFLAGS): Also ignore
4434         -lgcc?* and -lSystem, for Darwin/MacOS X.  Problem reported by
4435         Bill Northcott in
4436         <http://lists.gnu.org/archive/html/autoconf/2006-08/msg00083.html>.
4438 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
4440         * lib/autoconf/c.m4 (AC_C_CONST): Don't used shadowed vars, to
4441         pacify insanely picky compilers.  Problem reported by Eric Blake.
4443         * doc/autoconf.texi (Posix Variants): INTERACTIVE Unix is no
4444         longer supported by Sun.
4446 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
4448         * NEWS: Autoconf now uses constructs like "#ifdef HAVE_STDLIB_H"
4449         rather than "#if HAVE_STDLIB_H", so that it now works with "gcc
4450         -Wundef -Werror".  Problem reported by David Fang in
4451         <http://lists.gnu.org/archive/html/autoconf/2006-08/msg00045.html>.
4452         * doc/autoconf.texi (Header Templates, Default Includes):
4453         (Particular Functions, Generic Functions, Header Portability):
4454         (Particular Headers, Generic Headers, Generic Declarations, Guidelines):
4455         (Obsolete Macros, AC_FOO_IFELSE vs AC_TRY_FOO):
4456         (Present But Cannot Be Compiled, Preprocessor Symbol Index):
4457         Prefer #ifdef to #if.
4458         * lib/autoconf/c.m4 (AC_C_BIGENDIAN): Prefer #ifdef to #if.
4459         * lib/autoconf/functions.m4 (AC_FUNC_ALLOCA, _AC_FUNC_MALLOC_IF):
4460         (AC_FUNC_MKTIME, AC_FUNC_MMAP, _AC_FUNC_REALLOC_IF):
4461         (AC_FUNC_SELECT_ARGTYPES, AC_FUNC_SETVBUF_REVERSED, _AC_FUNC_VFORK):
4462         Likewise.
4463         * lib/autoconf/headers.m4 (_AC_INCLUDES_DEFAULT_REQUIREMENTS):
4464         (AC_HEADER_RESOLV, AC_HEADER_STAT): Likewise.
4465         * lib/autoconf/specific.m4 (AC_DECL_SYS_SYGLIST):
4466         (AC_SYS_RESTARTABLE_SYSCALLS): Likewise.
4467         * lib/autoconf/headers.m4 (AC_HEADER_STAT): Don't assume that
4468         S_ISDIR etc. are valid for use in #if; POSIX doesn't guarantee
4469         this.
4471 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
4473         * doc/autoconf.texi (Limitations of Usual Tools): Document sed
4474         problems with arg script text that doesn't end in newline, and
4475         with '-e a...'.  Problems reported by Ralf Wildenhues.
4477 2006-08-12  Alexandre Julliard  <julliard@winehq.org>  (tiny change)
4479         * lib/autoconf/libs.m4 (AC_PATH_X_DIRECT): Replace another
4480         check for libXt by a check for libX11.
4482 2006-08-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4484         * doc/autoconf.texi (config.status Invocation): Adjust according
4485         to last change.
4487 2006-08-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4489         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): `config.status
4490         --help' should mention that `--version' outputs configuration
4491         settings.  Report by Bruno Haible.
4493 2006-08-06  Paul Eggert  <eggert@cs.ucla.edu>
4495         Fix test suite failures reported by Pierre in
4496         <http://lists.gnu.org/archive/html/bug-autoconf/2006-08/msg00005.html>.
4497         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Don't claim
4498         the compiler created a file "b.out" when it didn't create anything
4499         at all.
4500         * lib/autoconf/specific.m4 (AC_SYS_INTERPRETER):
4501         Discard stderr too, when invoking the test script.
4503 2006-08-05  Alexandre Julliard  <julliard@winehq.org>  (tiny change)
4505         * lib/autoconf/libs.m4 (AC_PATH_XTRA): Fixed a typo
4506         in the restoring of the werror flag.
4508 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
4510         * doc/autoconf.texi (Volatile Objects): Be even a little
4511         less skeptical about "volatile", after discussion with
4512         Bruno Haible on bug-gnulib.
4513         (Limitations of Usual Tools): Warn about sed stripping
4514         leading white space from text.  From Bruno Haible.
4516 2006-07-20  Paul Eggert  <eggert@cs.ucla.edu>
4518         * lib/autoconf/libs.m4 (AC_PATH_XTRA): Don't use -R if the
4519         compiler complains about it, even if things works after the
4520         complaint.  Problem reported by Peter O'Gorman.
4522         * doc/autoconf.texi (Preset Output Variables): Document CFLAGS,
4523         CPPFLAGS, and LDFLAGS better.  Problem reported by Bruno Haible.
4524         Similarly for CXXFLAGS, OBJCFLAGS, ERLCFLAGS.
4526 2006-07-17  Paul Eggert  <eggert@cs.ucla.edu>
4528         * lib/autoconf/libs.m4 (AC_PATH_XTRA): Do the check for space
4529         after -R regardless of host.  Patrick Welche reports that this
4530         fixes things on NetBSD 3.99.
4532         * NEWS: Recommend M4 1.4.5.
4533         * README: Likewise.
4534         * doc/autoconf.texi (Introduction, Why GNU M4): Likewise.
4535         * tests/tools.at (autom4te cache): Update wording of diagnostic
4536         to match M4 1.4.5.
4538 2006-07-07  Paul Eggert  <eggert@cs.ucla.edu>
4540         * doc/autoconf.texi (C Compiler): Add a ref to Volatile Objects
4541         under AC_C_VOLATILE.
4542         (Volatile Objects): Be a little less skeptical about what
4543         "volatile" means.  Derived from thoughts by Ben Pfaff in
4544         <http://lists.gnu.org/archive/html/bug-gnulib/2006-07/msg00092.html>.
4546 2006-07-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4548         * doc/autoconf.texi: Fix some typos.
4550 2006-07-07  Paul Eggert  <eggert@cs.ucla.edu>
4552         * tests/torture.at (Configuring subdirectories): Set CONFIG_SITE
4553         more globally, since the 2006-06-30 patch didn't suffice.  Problem
4554         reported by Keith Marshall.  Also, don't bother with builddir2,
4555         since it shouldn't be needed any more.
4557 2006-07-07  Paolo Bonzini  <bonzini@gnu.org>
4559         * doc/autoconf.texi (Generic compiler characteristics):
4560         Document AC_COMPUTE_INT.  Fix wrong statements on Default
4561         Includes for AC_CHECK_SIZEOF and AC_CHECK_ALIGNOF.
4563         * lib/autoconf/general.m4 (AC_COMPUTE_INT): New.
4564         (_AC_COMPUTE_INT): Add obsoletion warnings.
4565         * lib/autoconf/types.m4 (AC_CHECK_SIZEOF, AC_CHECK_ALIGNOF): Use
4566         AC_COMPUTE_INT.
4568         * NEWS: Document change.
4570 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
4572         * doc/autoconf.texi (Volatile Objects): New section.
4574         * NEWS: Document previous change.
4576 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
4578         * lib/autoconf/types.m4 (AC_TYPE_LONG_LONG_INT):
4579         Require that long long int be at least 64 bits wide.  C99 requires
4580         this and enough programs depend on it so we should check for it.
4581         Bruno Haible reports in
4582         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00286.html>
4583         that long long int is 32 bits wide with some nonstandard compilers.
4584         (AC_TYPE_UNSIGNED_LONG_LONG_INT): Likewise.
4586 2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
4588         * tests/torture.at (Configuring subdirectories): Set CONFIG_SITE
4589         to a nonexistent file, so that we don't have to worry about
4590         a local site configuration that doesn't use /usr/local.
4591         Problem reported by Keith Marshall in
4592         <http://lists.gnu.org/archive/html/bug-autoconf/2006-06/msg00133.html>.
4594 2006-06-28  Paul Eggert  <eggert@cs.ucla.edu>
4596         * doc/autoconf.texi: Be more consistent about using @acronym with
4597         "HP" and "HP-UX".  Remove mention of OSF; the old version wasn't
4598         quite right (it talked about "OSF/Tru64", even though the
4599         operating systems were called OSF/1, Digital UNIX, and Tru64 UNIX,
4600         and it even mentioned "OSF 4"!) and at this point there's little
4601         reason to talk about OSF any more, since it died in 1994.
4602         (Specific Compiler Characteristics): Simplify example of
4603         negative-size array.
4604         (File Descriptors): Reorder to make the text flow better.
4605         Remove joke about "appreciate the various levels"; I didn't get it.
4606         Add remark about HP-UX sh -x bug with stderr noted by Bob Proulx in
4607         <http://lists.gnu.org/archive/html/bug-coreutils/2006-06/msg00225.html>.
4608         (File Descriptors, Limitations of Usual Tools):
4609         Tone down the advice against renaming or removing open files.
4610         (Limitations of Usual Tools): Add a new section, on 'rm'.
4612 2006-06-26  Stepan Kasal  <kasal@ucw.cz>
4614         * lib/autoconf/libs.m4 (_AC_PATH_X_DIRECT): Use -lX11, not
4615         -lXt in LIBS, idea from Karsten Hopp; this was due since
4616         this change:
4618         2005-09-18  Paul Eggert  <eggert@cs.ucla.edu>
4619         * lib/autoconf/libs.m4 (_AC_PATH_X_DIRECT): Look for X11/Xlib.h
4620         and XrmInitialize rather than X11/Intrinsic.h and XtMalloc
4621         (which belong to Xt, not X itself).  See Debian bug 327655.
4623 2006-06-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4625         * configure.ac (AC_INIT): Bump to 2.60a.
4626         * NEWS: Update.
4628 2006-06-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4630         Version 2.60.
4632         * configure.ac, NEWS: Update.
4634 2006-06-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4636         * config/texinfo.tex: Sync from upstream.
4638         * bin/autom4te.in (handle_traces): Transform the `@S|@'
4639         quadrigraph correctly in traces.
4641         * NEWS, lib/Autom4te/C4che.pm, lib/autoconf/functions.m4:
4642         Fix typos.
4644         * lib/autoconf/status.m4 (_AC_OUTPUT_FILE): Expand tests for
4645         datarootdir-related errors only if AC_DATAROOTDIR_CHECKED is
4646         not defined.
4647         * doc/autoconf.texi (Changed Directory Variables): New node,
4648         to document the whole `datarootdir' business a bit better.
4649         * NEWS: Update.
4650         * tests/torture.at (datarootdir workaround): Extend test.
4651         Prompted by report by Alexandre Julliard.
4653 2006-06-22  Paul Eggert  <eggert@cs.ucla.edu>
4655         * lib/autoconf/c.m4 (_AC_PROG_CC_C89): Check for C89 incompatibility
4656         when using default mode of IBM C 6 for AIX.  Problem and two-line
4657         fix reported by Larry Jones.
4659 2006-06-22  Alexandre Julliard <julliard@winehq.org>
4661         * lib/autoconf/status.m4 (_AC_OUTPUT_FILE): Avoid warning
4662         about literal '${datarootdir}' if a definition is found in the
4663         output file.
4665 2006-06-20  Paul Eggert  <eggert@cs.ucla.edu>
4667         * NEWS: Use "M4" rather than "m4" when appropriate.
4668         Problem reported by Eric Blake.
4669         * doc/autoconf.texi: Likewise.
4670         Use @acronym around BSD, GCC, and GNU when appropriate.
4671         (Why GNU M4): Renamed from "Why GNU m4".
4672         (Redefined M4 Macros): Mention that Posix
4673         m4wrap takes only 1 argument, but GNU M4 1.4.x takes more.
4674         (Buffer Overruns): Mention size_t and ptrdiff_t as alternatives
4675         to int.
4677 2006-06-20  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4679         * bin/autom4te.in (handle_output): Do not forbid the empty
4680         pattern.
4681         * tests/tools.at (autoconf: the empty token): New test.
4683 2006-06-20  Stepan Kasal  <kasal@ucw.cz>
4685         * lib/m4sugar/m4sugar.m4 (m4_init): Merge the two m4_wrap
4686         calls, so that we do not care whether they are LIFO or FIFO;
4687         in the m4_wrap, do not check which diversion is the topmost
4688         one, just check that the stack is balanced at the end.
4689         * lib/m4sugar/m4sh.m4 (AS_INIT): We are going to change the
4690         base diversion forever--pop the previous diversion before
4691         opening the new one; consequently, remove the m4_wrap call.
4692         * lib/autotest/general.m4 (AT_INIT): Likewise.
4693         * tests/m4sugar.at: Do not use
4694         m4_wrap([m4_diversion_pop([..])]), for educational purposes.
4696 2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
4697         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4699         * NEWS: Document that m4wrap/m4_wrap might not be LIFO.
4700         * doc/autoconf.texi (Redefined M4 Macros): Likewise.
4701         Rework example of m4wrap token-pasting trouble so that it doesn't
4702         care whether it's LIFO or FIFO.
4703         Fix some "contrary to"s that are awkward in English.
4705 2006-06-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4707         * lib/autoconf/types.m4 (_AC_TYPE_INT): Set `$ac_cv_c_int$1_t'
4708         to `yes' instead of `int$1_t' if the type is found, for more
4709         consistent configure output (where $1 is the number of bits).
4710         (_AC_TYPE_UINT): Likewise for `uint$1_t'.
4711         Suggested by Bruno Haible.
4713         * lib/autoconf/types.m4 (_AC_TYPE_UNSIGNED_INT): Solaris 2.5.1
4714         needs _UINT8_T and _UINT64_T defines as well, to avoid clashes
4715         with system headers.  Report by Bruno Haible.
4717 2006-06-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4719         * config/config.guess, config/config.sub: Sync from upstream.
4721         * bin/Makefile.am (autoconf.in): Use `--melt' for autom4te,
4722         in order to avoid picking up an older installed frozen m4sh.m4f.
4723         Besides an outdated shell startup, this could have been created
4724         by an earlier M4 version with incompatible frozen file format.
4726 2006-06-16  Paul Eggert  <eggert@cs.ucla.edu>
4728         * README: Recommend m4 1.4.4 instead of 1.4.3..
4729         * doc/autoconf.texi: Likewise.
4730         (Special Chars in Names): Say that $(.FOO) is portable, as
4731         suggested by Stepan Kasal.
4732         (Installation Directory Variables, Build Directories):
4733         (Automatic Remaking, Subdirectories, Fortran Compiler):
4734         (Making testsuite Scripts, Defining Directories):
4735         Quote variable usages better.
4736         (Making testsuite Scripts): Add clean-local rule to makefile
4737         snippet, by Eric Blake.
4738         (Installation Directory Variables): Fix table item font.
4739         Reword slightly to clarify.  Generalize advice about
4740         not using special characters to include all file-related
4741         vars, not just VPATH.
4742         (Special Chars in Variables): Warn about special characters in
4743         $(srcdir) too.
4744         (Assignments): Clarify default-value example as suggested by
4745         Ralf Wildenhues in
4746         <http://lists.gnu.org/archive/html/autoconf-patches/2006-06/msg00072.html>.
4747         (Special Shell Variables): Note leading ./ or ../, as suggested
4748         by Eric Blake.
4749         (Limitations of Builtins): Under cd, warn about CDPATH.
4750         (The Make Macro MAKEFLAGS): Untabify.  Problem reported by
4751         Ralf Wildenhues.
4753 2006-06-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4755         * doc/autoconf.texi (Configuration Actions): Remove duplicate
4756         `@var', for texi2html.
4757         (Systemology): Some more word wrapping, for DVI output.
4758         (autom4te Invocation): The short option for `--melt' is `-M',
4759         not `-m'.
4761 2006-06-15  Paul Eggert  <eggert@cs.ucla.edu>
4763         * doc/autoconf.texi: More formatting and English tweaks,
4764         many suggested by Ralf Wildenhues.
4765         Reword to avoid "@code{...}'s" and the like, since it's ugly
4766         with Emacs info mode.  discontents -> woes.
4767         Put a few "will"s back.  time stamp -> timestamp.
4768         side-effect -> side effect.
4770 2006-06-14  Paul Eggert  <eggert@cs.ucla.edu>
4772         * doc/autoconf.texi (Initializing configure, Shell Substitutions):
4773         Warn about $@ not persisting.  Problem reported by Julien Danjou in
4774         <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=372179>.
4775         (Special Chars in Names): Renamed from Leading _ in Macro Names.
4776         Mention other special chars, too.
4778 2006-06-14  Eric Blake  <ebb9@byu.net>
4780         * doc/autoconf.texi (The Make Macro MAKEFLAGS): New node.
4782 2006-06-13  Paul Eggert  <eggert@cs.ucla.edu>
4784         * doc/autoconf.texi: Some systematic minor improvements, as
4785         follows.  Use "makefile" when talking about makefiles
4786         generally (which might be named "makefile" or "Makefile" or even
4787         "foo.mk"), "Makefile" when talking about a specific makefile
4788         called "Makefile".  This unclutters the text from weird quotes
4789         (e.g., "`Makefile's" in info mode).  Similarly, use "@var{foo}
4790         values" rather than "@var{foo}s" and similar constructs containing
4791         "}s".  Use "Make rules" rather than "Makefile rules".  Minor
4792         English-language improvements.  Change the prefix "sub-" to "sub"
4793         and "re-" to "re".
4794         Put blank lines around examples more consistently.
4795         Avoid "rather" and "very" as intensifiers.
4796         Avoid "will" as an auxiliary.
4797         (Limitations of Make): Split this node into....
4798         (Portable Make, $< in Ordinary Make Rules, Failure in Make Rules):
4799         (Leading _ in Macro Names, Backslash-Newline-Newline):
4800         (Backslash-Newline Comments, Long Lines in Makefiles):
4801         (Macros and Submakes, The Make Macro SHELL, Comments in Make Rules):
4802         (obj/ and Make, make -k Status, VPATH and Make):
4803         (VPATH and Double-colon, $< in Explicit Rules):
4804         (Automatic Rule Rewriting, OSF/Tru64 Directory Magic):
4805         (Make Target Lookup, Single Suffix Rules, Timestamps and Make):
4806         New nodes, resulting from splitup of Limitations of Make.
4807         All cross-references changed.  Raise the top node from
4808         a section to a chapter, and all subnodes accordingly.
4809         Redo the introductory wording to match the new organization.
4810         (Installation Directory Variables): Use an example that is
4811         closer to what Autoconf actually does.  Mention that VPATH's
4812         value should not contain metacharacters or white space.
4813         (Fortran Compiler): Fix a VPATH bug in an example.
4814         (Leading _ in Macro Names): Mention that this problem is no longer
4815         of practical concern.
4816         (VPATH and Make): Reword the advice to make it clearer
4817         that Autoconf and Automake support VPATH in non-GNU make, but
4818         many packages have bugs in this area.
4819         ($< in Explicit Rules): Refer to Build Directories rather
4820         than using a (non-VPATH-safe) example.
4821         (Automatic Rule Rewriting): Mention the sort of disaster that
4822         can ensue with Solaris-style rule rewriting with VPATH.
4824 2006-06-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4826         * doc/install.texi (Compilers and Options): Weaken the
4827         suggestion to use GNU make for VPATH builds.
4829         * lib/autom4te.in (Automake-preselections): Add AM_PROG_CXX_C_O,
4830         AM_PROG_F77_C_O, AM_PROG_FC_C_O, AC_FC_SRCEXT, AC_FC_FREEFORM.
4832         * lib/autoconf/programs.m4 (AC_PROG_MAKE_SET): Fix M4 quotation
4833         in regular expression.
4835 2006-06-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4837         * doc/autoconf.texi (Installation Directory Variables):
4838         Drop extra @samp from `@table @samp' item.
4839         (Limitations of Usual Tools): Comment fix.
4840         Do not nest @samp just to point to other table items.
4841         (Writing testsuite.at) <AT_CHECK>: The second argument to
4842         `@dvar' is already @samp'ed.
4843         (Making testsuite Scripts) <AC_CONFIG_TESTDIR>: Likewise,
4844         do not use @var in the second argument.
4846 2006-06-07  Paul Eggert  <eggert@cs.ucla.edu>
4848         * lib/m4sugar/m4sh.m4 (_AS_DETECT_BETTER_SHELL): Look for
4849         $as_shell.exe too.  Problem reported by Andreas Buening in
4850         <http://lists.gnu.org/archive/html/autoconf/2006-06/msg00038.html>.
4852 2006-06-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4854         * lib/autoconf/functions.m4 (AC_FUNC_ALLOCA): Work around
4855         `unused variable' compiler warning, for `-Wall -Werror'.
4856         Reported by Jaap Haitsma in
4857         <http://lists.gnu.org/archive/html/bug-autoconf/2006-06/msg00012.html>.
4859 2006-06-06  Paul Eggert  <eggert@cs.ucla.edu>
4861         * lib/autoconf/c.m4 (AC_PROG_CC_C_O): Remove core file, in
4862         case the compiler dumps core.  Problem reported for
4863         OpenServer 5.0.7 by Tim Rice in
4864         <http://lists.gnu.org/archive/html/bug-autoconf/2006-06/msg00019.html>.
4865         * lib/autoconf/general.m4 (_AC_COMPILE_IFELSE, _AC_LINK_IFELSE):
4866         Likewise.
4868 2006-06-06  Tim Rice <tim@multitalents.net>.
4870         * lib/freeze.mk: Quiet check-forbidden-patterns so the string
4871         "ERROR" only shows up in "make check" output if there is an
4872         error.
4874 2006-06-06  Eric Blake  <ebb9@byu.net>
4876         * tests/tools.at (automatically allowed tokens): Fix typo.
4878 2006-06-05  Paul Eggert  <eggert@cs.ucla.edu>
4880         * NEWS: Don't blame non-GNU VPATH compatibility issues on Automake.
4882         * doc/autoconf.texi (Integer Overflow): Mention that INT_MIN % -1
4883         typically overflows on x86 CPUs, even though the C standard
4884         requires otherwise.
4886 2006-06-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4888         * configure.ac (AC_INIT): Bump to 2.59e.
4889         * NEWS: Update.
4891 2006-06-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4893         Version 2.59d.
4895         * config/texinfo.tex: Sync from upstream.
4897         * bin/autoreconf.in: Trace `LT_CONFIG_LTDL_DIR'; if it has been
4898         seen, invoke libtoolize with `--ltdl' argument.
4899         * lib/autom4te.in (Autoreconf-preselections): Adjust.
4900         * NEWS: Update.
4901         Suggested by Eric Blake.
4903 2006-06-05  Paul Eggert  <eggert@cs.ucla.edu>
4905         * NEWS: Whoops!  AC_FUNC_STRNLEN isn't obsolescent.  Problem
4906         reported by Ralf Wildenhues.
4907         * doc/autoconf.texi (AC_FUNC_STRNLEN): Likewise.
4909 2006-06-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4911         * THANKS: Update.
4913 2006-06-05  Paul Eggert  <eggert@cs.ucla.edu>
4915         * doc/autoconf.texi: Modernize some of the references to Solaris.
4917 2006-06-05  Stepan Kasal  <kasal@ucw.cz>
4919         * lib/m4sugar/m4sugar.m4 (m4_require): Modify the error
4920         message issued by AC_REQUIRE.
4921         * tests/m4sugar.at: Check m4_require's error message.
4922         * tests/base.at: Check AC_REQUIRE's error message.
4923         * tests/local.at (AT_CHECK_M4): New macro, almost identical
4924         to...
4925         (AT_CHECK_AUTOM4TE): ... which is now a thin wrapper around
4926         AT_CHECK_M4.
4927         (AT_CHECK_AUTOCONF): Use AT_CHECK_M4; no longer support
4928         `expout' as the last parameter.
4929         * tests/tools.at: Adapt to the above change.
4931 2006-06-04  Stepan Kasal  <kasal@ucw.cz>
4933         * doc/autoconf.texi (Limitations of Usual Tools): Correct
4934         information about race-free implementations of mkdir.
4936 2006-06-04  Eric Blake  <ebb9@byu.net>
4938         * bin/autoreconf.in (help): Document M4 environment variable.
4939         * bin/autoconf.as (Usage): Likewise.
4940         * bin/autom4te.in (help): Likewise.
4941         * doc/autoconf.texi (autom4te Invocation): Likewise.
4943 2006-06-04  Paul Eggert  <eggert@cs.ucla.edu>
4945         * NEWS: GNU make now recommended for VPATH builds.
4946         Mention that some macros are now documented to be obsolescent.
4947         * doc/autoconf.texi:
4948         Prefer "current" to "modern" to describe
4949         currently-used (albeit perhaps old-fashioned) hosts.
4950         Mention which ancient features no longer need to be worried about.
4951         setgid -> set-group-ID
4952         setuid -> set-user-ID (these are the Posix terms)
4953         Fix some misuses of "only".
4954         (AC_C_BACKSLASH_A, AC_C_CONST, AC_C_PROTOTYPES):
4955         (AC_C_STRINGIZE, AC_C_VOLATILE, AC_FUNC_CLOSEDIR_VOID):
4956         (AC_FUNC_GETPGRP, AC_FUNC_LSTAT, AC_FUNC_MEMCMP):
4957         (AC_FUNC_SELECT_ARGTYPES, AC_FUNC_SETPGRP):
4958         (AC_FUNC_SETVBUF_REVERSED, AC_FUNC_STAT, AC_FUNC_STRFTIME):
4959         (AC_FUNC_STRNLEN, AC_FUNC_UTIME_NULL, AC_FUNC_VPRINTF):
4960         (AC_HEADER_DIRENT, AC_HEADER_STAT, AC_HEADER_STDC):
4961         (AC_HEADER_SYS_WAIT, AC_HEADER_TIME, AC_ISC_POSIX):
4962         (AC_PROG_GCC_TRADITIONAL, AC_STRUCT_TM):
4963         Mention that these macros are obsolescent.
4964         (Installation Directory Variables): shall -> should
4965         (File Descriptors): Mention that 0, 1, 2 might get reopened.
4966         Mention that it's now safe to use 3 and 4.
4967         (Limitations of Usual Tools): cp -r is now specified by Posix.
4968         Omit longwinded and obsolescent discussion of cp -f.
4969         Modernize discussion of expr, ls.
4970         (Limitations of Make): Modernize discussion of VPATH builds.
4971         Mention $? as a workaround in some cases.
4972         * doc/install.texi (Basic Installation):
4973         Mention "./configure; make; make install" first.  Be more
4974         specific about why this file is generic.  Remove unnecessary
4975         parens.  Remove misleading "only".  Remove obsolete advice
4976         about csh.  Don't say "configure" takes awhile; say it
4977         might take a while.  Suggest CFLAGS=-g rather than CFLAGS=-O2,
4978         and CC=c99 rather than CC=c89, as these are blessed by current
4979         Posix.  Recommend GNU make if doing a VPATH build.
4981 2006-06-03  Paul Eggert  <eggert@cs.ucla.edu>
4983         * doc/autoconf.texi: Use a consistent style "$ @kbd{...}" for
4984         examples involving shell prompts.
4986 2006-06-02  Stepan Kasal  <kasal@ucw.cz>
4987         and Paul Eggert  <eggert@cs.ucla.edu>
4989         * doc/autoconf.texi (Here-Documents): Add details about the
4990         pre-ksh93g bug.  Reword slightly to make it clearer.  Consistently
4991         use "here-documents" instead of "here documents".
4993 2006-06-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4995         * config/texinfo.tex, doc/standards.texi: Sync from upstream.
4997 2006-06-01  Paul Eggert  <eggert@cs.ucla.edu>
4999         * doc/autoconf.texi (File System Conventions): Warn about ":"
5000         anywhere in directory names.
5002 2006-05-31  Paul Eggert  <eggert@cs.ucla.edu>
5004         * lib/autoconf/general.m4 (_AC_DO_ECHO): Be even more conservative
5005         about quoting the case statement, just in case.
5006         * doc/autoconf.texi (Here-Documents): Mention that the ksh bug
5007         was fixed in ksh93g; reported by Ralf Wildenhues.
5009 2006-05-31  Stepan Kasal  <kasal@ucw.cz>
5011         * doc/autoconf.texi (System Services): Do not document
5012         overriding EXEEXT via ac_cv_exeext=ext.
5013         (Particular Programs) <AC_PROG_MKDIR_P>:
5014         Document that ${MKDIR_P} understands --.
5015         * lib/autoconf/programs.m4 (AC_PROG_MKDIR_P): Improve the
5016         comment.
5018 2006-05-31  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5020         * lib/m4sugar/m4sh.m4 (_AS_DIRNAME_PREPARE): Guard against test
5021         argument with leading hyphen.  Problem reported by Paul Eggert.
5023 2006-05-30  Paul Eggert  <eggert@cs.ucla.edu>
5025         * lib/autoconf/general.m4 (_AC_DO_ECHO): Be more conservative
5026         about quoting ac_try: quote all of it, if any of it seems suspicious.
5027         This means we don't have to worry about ${ or sed any more.
5028         Also, double-quote the case statement, to work around misuses via
5029         underquoting as reported by Ralf Wildenhues in
5030         <http://lists.gnu.org/archive/html/autoconf-patches/2006-05/msg00169.html>.
5031         (_AC_EVAL_STDERR): Revert, since evidently some packages rely on this
5032         undocumented and dangerous macro.
5033         Problem reported by Ralf Wildenhues in
5034         <http://lists.gnu.org/archive/html/autoconf-patches/2006-05/msg00168.html>.
5036 2006-05-31  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5038         * lib/m4sugar/m4sh.m4 (_AS_DIRNAME_PREPARE): Check whether
5039         `dirname -- /' returns `/', for SunOS dirname scripts that escaped.
5040         Report by Sam Sirlin <sam@kalessin.jpl.nasa.gov>.
5042 2006-05-30  Paul Eggert  <eggert@cs.ucla.edu>
5044         * lib/autoconf/general.m4: Revert AC_TRY_EVAL and AC_TRY_COMMAND,
5045         since evidently some packages rely on the old, broken behavior.
5046         Problem reported by Ralf Wildenhues in
5047         <http://lists.gnu.org/archive/html/autoconf-patches/2006-05/msg00160.html>.
5048         (AC_TRY_EVAL, AC_TRY_COMMAND, _AC_EVAL): Go back to the
5049         pre-2006-05-26 definitions, but leave in the comments that
5050         these macros are dangerous and should not be used.
5051         (_AC_DO_ECHO): Renamed from _AC_EVAL_ECHO.  All callers changed.
5052         (_AC_DO): Renamed from _AC_EVAL.  All callers changed.
5053         (_AC_DO_STDERR): Renamed from _AC_EVAL_STDERR.  All callers changed.
5054         (_AC_DO_VAR): Renamed from AC_TRY_EVAL.
5055         (_AC_DO_TOKENS): Renamed from AC_TRY_COMMAND.
5057 2006-05-29  Paul Eggert  <eggert@cs.ucla.edu>
5059         * lib/autoconf/status.m4 (AC_OUTPUT_MAKE_DEFS): Rewrite to avoid
5060         the use of 'tr', since this is our only use of 'tr'.
5062 2006-05-29  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5063         and Paul Eggert  <eggert@cs.ucla.edu>
5065         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE):
5066         Don't assume 'grep' works on long lines, since AIX grep doesn't.
5068 2005-05-28  Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
5070         * lib/autoconf/status.m4 (_AC_OUTPUT_FILE): Do not use `grep' on
5071         the output file in the `${datarootdir}' test.
5073 2005-05-28  Stepan Kasal  <kasal@ucw.cz>
5074         and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
5076         * lib/autoconf/status.m4 (_AC_OUTPUT_FILE): If we have not seen
5077         mention of `datarootdir' in the input file(s), but literal
5078         `${datarootdir}' in the output file, and we haven't warned yet,
5079         then warn as well: the user may have (erroneously) used
5080         `AC_SUBST([mydatadir], [$datadir/my])' instead of the correct
5081         `AC_SUBST([mydatadir], ['${datadir}/my'])'.
5082         * tests/torture.at (datarootdir workaround): Extend this test.
5083         * NEWS: Update.
5085 2006-05-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5086         and Paul Eggert  <eggert@cs.ucla.edu>
5088         * doc/autoconf.texi (autoheader Invocation): The first argument to
5089         `AC_DEFINE_UNQUOTED' need not be a literal.  Mention the
5090         alternatives and clear up the language a bit.
5092 2006-05-27  Paul Eggert  <eggert@cs.ucla.edu>
5094         * NEWS: Reword notice for AC_TRY_COMMAND, AC_TRY_EVAL,
5095         ac_config_guess, ac_config_sub, ac_configure.
5096         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS):
5097         Fix typo that prevented an unnecessary space from being removed.
5098         Problems reported by Ralf Wildenhues in:
5099         http://lists.gnu.org/archive/html/autoconf-patches/2006-05/msg00143.html
5101 2006-05-26  Paul Eggert  <eggert@cs.ucla.edu>
5103         * doc/autoconf.texi (Particular Programs, Limitations of Usual Tools):
5104         Use better wording to talk about AC_PROG_MKDIR_P's thread-safety.
5105         Don't use the term "thread-safe" to talk about mkdir race
5106         conditions, since the problem is more a process than a thread
5107         issue.  Problem reported by Stepan Kasal in:
5108         http://lists.gnu.org/archive/html/autoconf-patches/2006-05/msg00088.html
5109         * lib/autoconf/programs.m4 (AC_PROG_MKDIR_P): Use code that mimics
5110         the test for 'install' more closely.  Look at MKDIR_P first.
5111         Look in the PATH, and at /opt/sfw/bin.
5112         Look for a 'gmkdir' program as well (Solaris 10 /opt/sfw/bin/gmkdir).
5113         Don't bother to try mkdir -p, since we already check mkdir --version;
5114         just look at the version number.  (There's no easy way to check
5115         for race-free implementations.)
5116         * tests/tools.at (autoconf: subdirectories): Adjust to above
5117         changes, since MKDIR_P now might end in "/mkdir -p".
5119         * doc/autoconf.texi (autoheader Invocation): Mention that the
5120         first arg of AC_DEFINE_UNQUOTED must be a literal.
5121         Problem reported by Ben Pfaff in
5122         <http://lists.gnu.org/archive/html/bug-autoconf/2006-05/msg00090.html>.
5124         * NEWS: Mention that AC_TRY_COMMAND and AC_TRY_EVAL may be removed.
5125         * doc/autoconf.texi (Special Chars in Variables): New section.
5126         (Preset Output Variables): Warn about special chars in CPPFLAGS.
5127         (Installation Directory Variables): Quote $(datadir) better.
5128         (Limitations of Builtins): Describe some of eval's trickiness.
5130         * lib/autoconf/c.m4 (AC_PROG_CC_C_O): Simplify quoting.
5131         * lib/autoconf/fortram.m4 (_AC_PROG_FC_V_OUTPUT): Likewise.
5132         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Put leading space
5133         in front of every arg, not just trailing args.  Quote apostrophes.
5134         (_AC_EVAL_ECHO): New macro.
5135         (_AC_EVAL, AC_EVAL_STDERR): Use it.  Quote arg of eval.
5136         (AC_TRY_EVAL, AC_TRY_COMMAND): Mention that these macros might get
5137         removed.
5138         (_AC_LINK_IFELSE): Use proper rule for shell continuation lines,
5139         exposed by quoting of eval argument.  Put the command on line line
5140         so it logs better.
5141         * lib/autoconf/libs.m4 (_AC_PATH_X_XMKMF): Use eval more safely.
5142         (_AC_PATH_X, AC_PATH_X): Quote more safely.
5143         * lib/autoconf/programs.m4 (AC_PROG_MAKE_SET): Use eval more safely.
5144         * lib/autoconf/specific.m4 (AC_SYS_LONG_FILE_NAMES): Don't use eval.
5145         * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): Minor style change.
5146         Handle special chars in prefix, ac_srcdir, ac_aux_dir.
5147         Use eval more safely.
5148         (_AC_OUTPUT_CONFIG_STATUS): Adjust to above changes.
5149         * lib/m4sugar/m4sh.m4 (AS_VAR_GET): Note that this API needs
5150         to be replaced.
5151         * tests/base.at (AC_TRY_COMMAND): Use proper rule for shell continuation
5152         lines, exposed by quoting of eval argument.
5154 2006-05-26  Stepan Kasal  <kasal@ucw.cz>
5155         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5157         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Drop the
5158         initialization of `ac_cv_exeext', do not override it if it was
5159         already set, unless it was set to `no', for compatibility with
5160         Autoconf-2.13, and comment this.
5161         Do not export `ac_cv_exeext', Libtool hasn't needed this for years.
5162         (_AC_COMPILER_EXEEXT_DEFAULT): Likewise, do not export it.
5163         (_AC_COMPILER_EXEEXT_WORKS, _AC_COMPILER_EXEEXT_CROSS): Typos.
5164         * doc/autoconf.texi (Compilers and Preprocessors) <EXEEXT>:
5165         Document that this test may be overridden by setting
5166         `ac_cv_exeext'.
5168 2006-05-26  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5170         Revert these two patches:
5172         2006-04-06  Eric Blake  <ebb9@byu.net>
5173         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_O): Inside cache
5174         check, s/ac_exeext/ac_cv_exeext/.  Fixes regression introduced
5175         2006-04-01.
5177         2006-04-01  Stepan Kasal  <kasal@ucw.cz>
5178         Clean up _AC_COMPILER_EXEEXT* macros.
5179         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Don't try to
5180           detect exeext, it will be done by _AC_COMPILER_EXEEXT_O; just set
5181           ac_file to the name of the default output file and call
5182           _AC_COMPILER_EXEEXT_WORKS.  Move the definition of ac_files and the
5183           initial `rm' of the candidate files...
5184         (_AC_COMPILER_EXEEXT): ... here and simplify them.  Moreover, use
5185           the same list in subsequent `rm' calls, and for the temporary
5186           redefinition of ac_clean_files; call _AC_COMPILER_OBJEXT at the end,
5187           and don't call the other _AC_COMPILER_EXEEXT_* macros directly, use...
5188         (_AC_COMPILER_EXEEXT_TESTS): ... this new macro.
5189         (_AC_COMPILER_EXEEXT_O): Don't export ac_cv_exeext, it's not needed (or
5190           no longer needed) by libtool.  Make it a cache check.
5191         (_AC_COMPILER_EXEEXT_CROSS): Remove the comment, it was obviously
5192           copied here by mistake.
5193         (AC_NO_EXECUTABLES): Redefine _AC_COMPILER_EXEEXT_TESTS, not
5194           _AC_COMPILER_EXEEXT.
5195         * lib/autoconf/c.m4 (AC_PROG_CC, AC_PROG_CXX, AC_PROG_OBJC): Do not call
5196           _AC_COMPILER_OBJEXT directly.
5197         * lib/autoconf/fortran.m4 (_AC_PROG_FC): Likewise.
5199 2006-05-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5201         * doc/autoconf.texi (Limitations of Usual Tools) < sed (`t')>:
5202         Fix description of how the buggy `sed' works.
5204 2006-05-25  Noah Misch  <noah@cs.caltech.edu>
5206         Sync from Automake:
5208         * lib/Autom4te/XFile.pm (lock): Allow EOPNOTSUPP, besides
5209         ENOLCK.  Only mention `make -j' when applicable.  Only raise
5210         fatal errors when `make -j' is involved.  Improve error message.
5212 2006-05-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5214         * doc/autoconf.texi (Here-Documents): We now know more about
5215         the variable expansion in here documents bug.
5216         Thanks to Tim Rice and Stepan Kasal.
5218         * doc/autoconf.texi (Making testsuite Scripts): Add an example
5219         how to use TESTSUITEFLAGS.  Suggested by Eric Blake.
5221 2006-05-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5223         * tests/autotest.at (Multiline command from M4 expansion):
5224         No failure to be expected if the shell quotes newlines in
5225         commands in the `set -x' output.  Report by Tim Rice.
5226         * THANKS: Update.
5228 2006-05-23  Paul Eggert  <eggert@cs.ucla.edu>
5230         * lib/autoconf/status.m4 (_AC_OUTPUT_HEADER): Don't use shell
5231         expansion in the here-documents used by config.status, as that
5232         runs afoul of the Korn shell version M-12/28/93d bug described in
5233         the Autoconf manual, and this in turn causes a Coreutils 5.95 build to
5234         fail as described by Tim Rice and diagnosed by Ralf Wildenhues in
5235         <http://lists.gnu.org/archive/html/bug-autoconf/2006-05/msg00082.html>.
5237 2006-05-23  Jim Meyering  <jim@meyering.net>
5239         * lib/autoconf/functions.m4 (AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK):
5240         Fix typo introduced with 2006-04-02 change.  It reversed the sense
5241         of the test.
5243 2006-05-23  Paul Eggert  <eggert@cs.ucla.edu>
5245         * lib/autoconf/status.m4 (_AC_OUTPUT_HEADER): Simplify ac_dA and
5246         ac_dB slightly, to save bytes in the script.
5247         Max out at 50 lines, rather than 96; this is more likely
5248         (though not guaranteed) to avoid obscure 'sed' failures.
5250 2006-05-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5252         * lib/autotest/general.m4 (AT_INIT): UnixWare `tr' may interpret
5253         `tr -d -' as bad option argument.  Work around this by deleting
5254         an unrelated character.
5255         Report by Tim Rice <tim@multitalents.net>.
5257 2006-05-22  Paul Eggert  <eggert@cs.ucla.edu>,
5258             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>,
5259             Stepan Kasal  <kasal@ucw.cz>
5261         * doc/autoconf.texi (Particular Programs): Do not promise that
5262         we always prefer the GNU version of the program, and that we
5263         search according to PATH; both rules can have exceptions.
5264         Update description of AC_PROG_GREP, AC_PROG_EGREP, AC_PROG_FGREP,
5265         AC_PROG_SED.  Move descriptions of limitations
5266         to the Limitations of Usual Tools section.
5267         (Limitations of Usual Tools) <sed>: Mention script length
5268         limitations with Solaris /usr/ucb/sed.
5269         <grep>: Fix wording for empty alternative.  Mention that -c and
5270         -l should not be combined, and that -E and -F should not be
5271         combined.
5273 2006-05-21  Paul Eggert  <eggert@cs.ucla.edu>
5274         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5276         * lib/autoconf/programs.m4 (AC_PROG_SED): Catch script length
5277         limits in Solaris 8 /usr/ucb/sed by testing a long script.
5279 2006-05-22  Stepan Kasal  <kasal@ucw.cz>
5281         * doc/autoconf.texi (Defining Symbols): Literal parameter of
5282         AC_DEFINE is now passed to m4_pattern_allow.
5283         * NEWS: Mention that; likewise for AC_SUBST.
5284         * lib/autoconf/general.m4 (AC_DEFINE_TRACE_LITERAL): Pass
5285         the parameter to m4_pattern_allow.
5286         * tests/tools.at: Add a check for that.
5288 2006-05-22  Stepan Kasal  <kasal@ucw.cz>
5290         * lib/autoconf/status.m4: Fix typos.
5292 2006-05-21  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5294         * lib/autoconf/programs.m4 (_AC_FEATURE_CHECK_LENGTH): Remove
5295         only the files that this macro generates.
5297 2006-05-21  Paul Eggert  <eggert@cs.ucla.edu>
5299         * doc/autoconf.texi (Limitations of Usual Tools) <sed>: For
5300         the HP-UX sed limitation of 99 commands, labels do not count.
5301         * lib/autoconf/status.m4 (_AC_SED_CMD_LIMIT): Mention that
5302         in the comment.
5303         (_AC_OUTPUT_HEADER): Revert the change from 2006-05-19.
5305 2006-05-21  Paul Eggert  <eggert@cs.ucla.edu>
5307         * lib/autoconf/functions.m4 (AC_FUNC_GETMNTENT):
5308         Import the following fix from coreutils:
5310         2006-01-13  Jim Meyering  <jim@meyering.net>
5312         Invoke AC_CHECK_FUNCS(getmntent) unconditionally so that tests of
5313         $ac_cv_func_getmntent (e.g., in gl_LIST_MOUNTED_FILE_SYSTEMS) need
5314         not double-quote uses of that variable, to accommodate the rare
5315         case in which getmntent is available in none of the libraries
5316         checked.  This happens at least on FreeBSD 5.0.
5318 2006-05-20  Paul Eggert  <eggert@cs.ucla.edu>
5320         * lib/autoconf/general.m4 (AC_CONFIG_AUX_DIRS): Bring back
5321         ac_config_guess, ac_config_sub, and ac_configure, since evidently
5322         some other programs unwisely rely on these undocumented vars.
5323         But put in warning comments about them.
5324         Problem reported by Ralf Wildenhues in
5325         <http://lists.gnu.org/archive/html/autoconf-patches/2006-05/msg00068.html>.
5326         * NEWS: Document that these variables are intended to go away.
5328 2006-05-20  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5330         * lib/autoconf/c.m4 (AC_PROG_CXX_C_O): Require AC_PROG_CXX,
5331         and set the language to C++ (analogous to the equivalent Fortran
5332         tests).
5334         * lib/autoconf/c.m4 (AC_PROG_CXX_C_O): New macro.
5335         * doc/autoconf.texi (C++ Compiler): Document it.
5336         * lib/autoconf/fortran.m4 (_AC_PROG_FC_C_O): Adjust comment.
5337         * NEWS: Update.
5339 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
5341         * lib/autoconf/status.m4 (_AC_OUTPUT_HEADER): Fix off-by-one bug
5342         that caused config.status to generate 100-command sed scripts; the
5343         portable limit is 99.
5345 2006-05-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5347         * lib/autoconf/programs.m4 (AC_PROG_MKDIR_P): Name temporary
5348         variable `ac_d' instead of `d' to avoid infringing namespace.
5349         Report by Ralf Menzel.
5351 2006-05-18  Paul Eggert  <eggert@cs.ucla.edu>
5353         * lib/autoconf/status.m4 (_AC_OUTPUT_FILE): Don't prepend
5354         $ac_top_build_prefix to $MKDIR_P if it's just 'mkdir -p'.
5355         * tests/tools.at (autoconf: subdirectories): New test, taken from
5356         the corresponding problem report by Ralf Wildenhues in:
5357         http://lists.gnu.org/archive/html/autoconf-patches/2006-05/msg00053.html
5359         * lib/autoconf/functions.m4 (AC_REPLACE_FNMATCH, AC_FUNC_FNMATCH_GNU):
5360         Quote some uses of shell variables if they might suffer unexpected
5361         globbing.  This doesn't fix all instances of quoting problems that
5362         I found, just the easy ones that look safe.
5363         * lib/autoconf/general.m4 (_AC_INIT_SRCDIR, _AC_INIT_HELP):
5364         (AC_CONFIG_AUX_DIR, AC_CONFIG_AUX_DIR_DEFAULT, AC_CONFIG_AUX_DIRS):
5365         (AC_CANONICAL_BUILD, AC_CANONICAL_HOST, AC_CANONICAL_TARGET):
5366         (AC_CACHE_LOAD, AC_CACHE_SAVE): Likewise.
5367         * lib/autoconf/libs.m4 (_AC_PATH_X_XMKMF, _AC_PATH_X_DIRECT): Likewise.
5368         * lib/autoconf/specific.m4 (AC_SYS_LONG_FILE_NAMES): Likewise.
5369         * lib/autoconf/status.m4 (_AC_OUTPUT_LINK, _AC_OUTPUT_SUBDIRS):
5370         Likewise.
5371         * lib/autotest/general.m4 (_AC_INIT_PARSE_ARGS): Likewise.
5372         * lib/m4sugar/m4sh.m4 (_AS_DETECT_BETTER_SHELL): Likewise.
5374 2006-05-18  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5376         * bin/autoreconf.in ($help): Reword according to the manual.
5377         Suggested by Olly Betts.
5379 2006-05-17  Olly Betts  <olly@survex.com>  (tiny change)
5380         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5382         * bin/autoreconf.in: Pass the directory argument to
5383         `require_configure_ac'.  Fix comment.
5384         * tests/torture.at (Configuring subdirectories): Expose this.
5385         Reported by Olly Betts.
5387 2006-05-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5389         * lib/Automake/Configure_ac.pm, lib/Automake/Channels.pm,
5390         lib/Automake/FileUtils.pm, lib/Automake/Struct.pm: Sync from
5391         Automake as follows:
5393         * lib/Autom4te/Configure_ac.pm (find_configure_ac): Use
5394         `$configure_in' instead of `configure.in', to preserve
5395         directory component.
5397 2006-05-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5399         * config/config.guess, config/config.sub, config/texinfo.tex,
5400         doc/make-stds.texi, doc/standards.texi: Sync from upstream.
5402 2006-05-14  Paul Eggert  <eggert@cs.ucla.edu>
5404         * lib/autoconf/headers.m4 (AC_HEADER_STDBOOL): Fix overly-picky
5405         test for C99 conformance; (bool) 0.5 is an integer constant
5406         expression, but (bool) -0.5 is not.  Problem reported by Fedor
5407         Sergeev in <http://forum.sun.com/jive/thread.jspa?threadID=96202>.
5409 2006-05-13  Paul Eggert  <eggert@cs.ucla.edu>
5411         * doc/autoconf.texi (Particular Programs): AC_PROG_MKDIR_P now
5412         sets MKDIR_P, not mkdir_p, to avoid collisions with Automake.
5413         Warn about obsolete install-sh files.  Remove stray sentence
5414         fragment and fix cross reference.
5415         * lib/autoconf/programs.m4 (AC_PROG_INSTALL): Don't insist on
5416         install -d; this undoes the 2006-05-10 change.
5417         (MKDIR_P): Mark with AN_MAKEVAR.
5418         (AC_PROG_MKDIR_P): Fall back on $ac_install_sh, not $INSTALL, so
5419         that we don't require $INSTALL to be thread-safe.  Move comments
5420         out of generated code.  Require AC_CONFIG_AUX_DIR_DEFAULT instead
5421         of AC_PROG_INSTALL.  Output a message saying that we're checking
5422         mkdir -p.  Set MKDIR_P rather than mkdir_p.  Do special magic for
5423         MKDIR_P instead of AC_SUBST.
5424         * lib/autoconf/status.m4 (_AC_OUTPUT_FILE, _AC_OUTPUT_CONFIG_STATUS):
5425         Special magic for MKDIR_P, too.
5426         * lib/m4sugar/m4sh.m4 (AS_MKDIR_P): Remove comment that defeated
5427         a dnl.
5428         * tests/local.at (AT_CHECK_ENV): mkdir_p -> MKDIR_P.
5430 2006-05-11  Paul Eggert  <eggert@cs.ucla.edu>
5432         Sync from Automake, as follows:
5434         2006-05-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5435         * config/install-sh: Initialize IFS, so field splitting isn't
5436         turned off later.
5437         * config/mkinstalldirs: Likewise.
5438         * config/missing: Remove superfluous quotes.  Replace all uses of
5439         `[' by `test', for consistency, and for..
5440         * config/missing (sed_minuso, sed_output): New variables.
5441         (autom4te, help2man, makeinfo): Use them.  Unifies detection of
5442         `-o FILE', `--output FILE', `--output=FILE', stricter regex.
5443         Fixes `missing' to detect `--output' for help2man.  Fixes
5444         PR automake/483.  Report by Dennis J. Linse.
5445         (autom4te): Document in `missing --help'.
5447 2006-05-10  Paul Eggert  <eggert@cs.ucla.edu>
5449         * NEWS: New macro AC_PROG_MKDIR_P.  AS_MKDIR_P is now more robust.
5450         * config/install-sh: Don't use 'path' to talk about file names,
5451         as per GNU coding standards.  Close a race condition reported by Ralf
5452         Wildenhues and Stepan Kasal.  There is still a race condition
5453         on hosts that predate Posix 1003.1-1992, but we can't help this.
5454         Don't mishandle weird characters like space on pre-Posix hosts.
5455         Invoke mkdir at most once per dir arg on pre-Posix hosts.
5456         * doc/autoconf.texi (Programming in M4sh): Cross-reference to
5457         AC_PROG_MKDIR_P from AS_MKDIR_P.
5458         (Limitations of Usual Tools): Cross-reference to AC_PROG_MKDIR_P
5459         from mkdir.  Mention that Autoconf 2.60 install-sh is safe but
5460         earlier editions are not (including Automake 1.8.3).
5461         Do not suggest mkinstalldirs for thread-safety.
5462         * lib/autoconf/programs.m4 (AC_PROG_INSTALL): Insist on an 'install'
5463         that understands -d, so that AC_PROG_MKDIR_P can fall back on $INSTALL.
5464         * lib/m4sugar/m4sh.m4 (AS_MKDIR_P): Make it more robust in the
5465         presence of special characters and race conditions.
5466         * tests/local.at (AT_CHECK_ENV): Add mkdir_p to the list of variables
5467         in Autoconf's name space.
5469 2006-05-10  Bruno Haible  <bruno@clisp.org>
5470         and Paul Eggert  <eggert@cs.ucla.edu>
5472         * lib/autoconf/programs.m4 (AC_PROG_MKDIR_P): New macro, taken
5473         from Automake with minor changes.
5474         * doc/autoconf.texi (Particular Programs): Document AC_PROG_MKDIR_P.
5476 2006-05-10  Paul Eggert  <eggert@cs.ucla.edu>
5478         * config/install-sh: Update to Automake CVS version, as follows:
5479         2006-04-25  Stepan Kasal  <kasal@ucw.cz>
5480         * lib/install-sh: Simplify the expr implementation of dirname.
5481         2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
5482         * lib/install-sh: Handle --, and diagnose unknown options.
5484 2006-05-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5486         * tests/Makefile.am (AUTOTEST): Use `$(MY_AUTOM4TE)' instead of
5487         `./autom4te' to create `./testsuite', since the `all' target
5488         will ensure its presence, but `installcheck' should not create
5489         the uninstalled wrappers.
5491         * tests/torture.at (Unusual Automake input files): Skip if we
5492         detect automake < 1.8.
5494 2006-05-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5496         * lib/autoconf/c.m4 (AC_PROG_CC_STDC): If ac_cv_prog_cc_stdc
5497         is set to `no', then that overrides and sets ac_cv_prog_cc_c89
5498         and ac_cv_prog_cc_c99 to `no', for backward compatibility.
5499         * NEWS: Update.
5501 2006-05-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5503         * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): Take care not to
5504         munge (multiple) white space and other oddities.
5505         * tests/torture.at (AT_CHECK_AC_ARG_VAR): Make sure to M4-escape
5506         single quotes in variable assignment.
5507         (AC_ARG_VAR, configure invocation): Adjust tests to expose this
5508         and similar failures by adding multiple spaces, tabs, and other
5509         special characters.
5510         Report and different test suggested by Francesco Romani
5511         <fromani@gmail.com> and Andrew Church <achurch@achurch.org>.
5513         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): When we escape
5514         single quotes, we only need to search for single quotes; this
5515         both simplifies the search pattern, and makes us less
5516         susceptible to `echo' variations for arguments not containing
5517         single quotes.
5518         (_AC_ARG_VAR_VALIDATE): Likewise.
5520 2006-05-04  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5522         * doc/autoconf.texi (Special Shell Variables) <IFS>: Document
5523         `$*' and IFS concatenation issue with traditional shells and
5524         bash-2.04.  Report by Seanster@Seanster.com.
5526 2006-05-03  Bruno Haible  <bruno@clisp.org>
5528         * doc/autoconf.texi (Limitations of Usual Tools): Identify more
5529         precisely which Mac OS X versions have the od problem.
5531 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
5533         * doc/autoconf.texi: Use @option systematically.
5535 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
5536         and Bruno Haible  <bruno@clisp.org>
5538         * doc/autoconf.texi (Limitations of Usual Tools): Add a paragraph
5539         about 'od'.
5540         (Integer Overflow): Mention the special case of integer division
5541         overflow.
5543 2006-05-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5545         * lib/autoconf/general.m4 (_AC_CANONICAL_SPLIT): Cater for
5546         traditional shells like the Solaris one that do not use the
5547         first IFS character for assembling `$*'.
5548         Prompted by a related report from autoconf_bug@nro.ca.
5550 2006-05-01  Paul Eggert  <eggert@cs.ucla.edu>
5551         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5553         * doc/autoconf.texi (Limitations of Builtins, Limitations of Make):
5554         Mention more problems with the -e option.
5556 2006-04-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5558         * NEWS: Typo.
5559         * doc/autoconf.texi (Systemology): Mention the Heirloom Project.
5561         * doc/autoconf.texi (Introduction, Pointers): Use `@/' liberally
5562         in URLs to improve DVI formatted output (requires texinfo 4.6).
5563         (System Services, Systemology, Shellology): Likewise.
5564         (Limitations of Usual Tools): Rewrite Mac OS X example for nicer
5565         output.
5567         * doc/autoconf.texi (Fortran Compiler): Do not use `@ovar' in
5568         continuous text.
5569         (Runtime): Fix macro argument names to match description:
5570         `action-if-found' -> `action-if-true' and similarly.
5571         (Obsolete Macros): Likewise.
5572         * lib/autoconf/general.m4 (_AC_COMPILE_IFELSE): Likewise.
5573         (AC_COMPILE_IFELSE, AC_TRY_COMPILE, _AC_LINK_IFELSE)
5574         (AC_LINK_IFELSE, AC_TRY_LINK, AC_COMPILE_CHECK): Likewise.
5576 2006-04-29  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5578         * doc/autoconf.texi (Limitations of Make): Clean up markup.
5580         * ChangeLog: Typo.
5581         * doc/autoconf.texi (Portable Shell): Allow wrapped URLs, for
5582         DVI output.
5584 2006-04-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5586         * doc/autoconf.texi (Limitations of Builtins): Document FreeBSD
5587         /bin/sh set unsorted output.
5588         * lib/autoconf/general.m4 (_AC_CACHE_DUMP): Adjust.
5589         * tests/local.at: Likewise.
5591 2006-04-26  Paul Eggert  <eggert@cs.ucla.edu>
5593         * doc/autoconf.texi (Portable C and C++, Varieties of Unportability):
5594         (Integer Overflow, Null Pointers, Buffer Overruns):
5595         (Floating Point Portability, Exiting Portably): New sections.
5596         (Writing Test Programs): Fix some langauge.  Recommend exiting
5597         with status 1, not merely nonzero.  Clarify exit declaration.
5598         (Run Time): Move C exit status stuff to new Exiting Portably section.
5599         (Systemology): Mention Posix and levenez.  Update v7 reference.
5600         (Portable Shell): Mention the Posix shell.
5602 2006-04-25  Stepan Kasal  <kasal@ucw.cz>
5604         * bin/autoconf.as (me): Replace by as_me.
5606 2006-04-25  Paul Eggert  <eggert@cs.ucla.edu>
5608         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Don't use AS_ERROR,
5609         since as_me isn't set yet.
5611 2006-04-23  Paul Eggert  <eggert@cs.ucla.edu>
5613         Prepare for deprecation of AS_BASENAME and AS_DIRNAME, and fix
5614         a few minor bugs in this area.
5616         * doc/autoconf.texi (Programming in M4sh): Comment out the
5617         documentation of AS_BASENAME, for now.
5618         (Shell Substitutions): Do not use AS_DIRNAME in an example.
5619         (Limitations of Builtins) <basename>: Do not refer to
5620         AS_BASENAME.
5621         * bin/autoconf.as (me): Don't use AS_BASENAME.
5622         (dir): Remove the unused variable.
5623         * lib/m4sugar/m4sh.m4 (_AS_DETECT_REQUIRED): Renamed from
5624         AS_DETECT_REQUIRED.  All uses changed.
5625         (_AS_DETECT_SUGGESTED): Renamed from AS_DETECT_SUGGESTED.
5626         All uses changed.
5627         (_AS_DETECT_BETTER_SHELL): Put ;; at the end of a case.
5628         (AS_BASENAME): Use "basename --" to protect against leading "-".
5629         (_AS_BASENAME_EXPR): Renamed from AS_BASENAME_EXPR.  All uses changed.
5630         (_AS_BASENAME_SED): Renamed from AS_BASENAME_SED.  All uses changed.
5631         (_AS_BASENAME_PREPARE): Reject implementations that cannot handle "--".
5632         (_AS_DIRNAME_PREPARE): Likewise.
5633         (_AS_DIRNAME_EXPR): Renamed from AS_DIRNAME_EXPR.  All uses changed.
5634         (_AS_DIRNAME_SED): Renamed from AS_DIRNAME_SED.  All uses changed.
5635         (AS_DIRNAME): Use "dirname --".
5637 2006-04-23  Paul Eggert  <eggert@cs.ucla.edu>
5639         * doc/autoconf.texi (Runtime): Renamed from "Run Time".  All uses
5640         of "run time" and "run-time" changed to "runtime", for consistency.
5641         * lib/autoconf/fortran.m4: Likewise (in comment).
5642         * lib/autoconf/functions.m4: Likewise.
5643         * lib/autoconf/general.m4: Likewise.
5644         * lib/autoconf/headers.m4: Likewise.
5646         * doc/autoconf.texi (Run Time): Document the exit status situation
5647         with more accuracy and detail.
5649 2006-04-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5651         * doc/autoconf.texi (Introduction): The GNU Autoconf Macro
5652         Archive is not officially `GNU' any more.  Update URL.
5653         (Defining Directories): Likewise
5654         * lib/autoconf/c.m4 (AC_C_RESTRICT): Update URL.
5656 2006-04-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5658         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Remove the leading
5659         newline from the `trap' code to finish `config.log'; the NetBSD
5660         /bin/sh resets the exit status after an empty command, as
5661         documented in doc/autoconf.texi.
5662         Reported by Dalibor Topic <robilad@kaffe.org>.
5664 2006-04-19  Paul Eggert  <eggert@cs.ucla.edu>
5666         * doc/autoconf.texi (C Compiler): Clarify AC_C_TYPEOF.
5667         Suggested by Bruno Haible.
5669 2006-04-18  Paul Eggert  <eggert@cs.ucla.edu>
5671         * configure.ac (ac_cv_sh_n_works): Don't try to test for it, since
5672         some shells (e.g., Solaris 8 /bin/sh) implement it verrrry slowly.
5673         Instead, just list the shells that we know work.
5674         * tests/local.at (AT_CHECK_SHELL_SYNTAX): Remove 2nd arg.  All uses
5675         changed.  Be more cautious about the _cv_ variable.
5676         * tests/tools.at (Syntax of the shell scripts): Check the
5677         _cv_ variable once, at first, to avoid an internal autoconf error
5678         when sh -n does not work.
5680 2006-04-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5682         * lib/Autom4te/FileUtils.pm: Sync from Automake.
5684 2006-04-16  Paul Eggert  <eggert@cs.ucla.edu>
5686         * lib/autoconf/general.m4 (_AC_INIT_CONFIG_LOG): Don't
5687         use ">&-" since we're only 99.999% sure that this is portable,
5688         and since the MinGW bug is fixed in a different way.
5689         * lib/autotest/general.m4 (AT_INIT): Likewise.
5691 2006-04-16  Stepan Kasal  <kasal@ucw.cz>
5693         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Handle --recheck
5694         before opening config.log, to avoid hitting a bug on MinGW.
5696 2006-04-14  Paul Eggert  <eggert@cs.ucla.edu>
5698         * lib/autoconf/general.m4 (_AC_INIT_CONFIG_LOG): Close
5699         AS_MESSAGE_LOG_FD before reopening it onto the log file.
5700         This works around a MinGW bug reported by Eric Paire.
5701         Make sure that all writes to the log file append to it,
5702         rather than possibly losing data.
5703         * lib/autotest/general.m4 (AT_INIT): Likewise.
5705 2006-04-14  Stepan Kasal  <kasal@ucw.cz>
5707         * lib/Autom4te/FileUtils.pm (find_file): Fix a typo in the
5708         description.
5710 2006-04-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5712         * NEWS: Update.
5714         * configure.ac (AC_INIT): Bump to 2.59d.
5716 2006-04-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5718         Version 2.59c.
5720         * Makefile.maint (news-date-check): Do not require a leading `*'
5721         before the release date in NEWS.
5723 2006-04-12  Stepan Kasal  <kasal@ucw.cz>
5724         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5726         * lib/autoconf/status.m4 (_AC_OUTPUT_FILE): If the templates for
5727         the instantiated file do not contain the string 'datarootdir'
5728         but contain @datadir@, @docdir@, @infodir@, @localedir@, or
5729         @mandir@, replace the reference '${datarootdir}' by the value.
5730         * tests/torture.at (datarootdir workaround): New test.
5731         * NEWS: Advertise this temporary fixup.
5732         Based on a patch by Bruno Haible, reported and analyzed by
5733         Paul Eggert and Noah Misch.
5735 2006-04-12  Eric Blake  <ebb9@byu.net>
5737         * tests/autotest.at (Debugging a failed test): Fix comment.
5739 2006-04-12  Stepan Kasal  <kasal@ucw.cz>
5741         * lib/m4sugar/m4sh.m4 (_AS_LN_S_PREPARE): Simplify the summary of
5742         all the changes since 2006-04-07.
5744 2006-04-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5746         * lib/m4sugar/m4sh.m4 (_AS_LN_S_PREPARE): If `ln -s file1 file2'
5747         succeeded, but `ln -s file dir' failed, take care to remove the
5748         leftover target before the next test, to prevent its spurious
5749         failure; also make sure `ln file dir' works before selecting it.
5750         Thanks to Keith Marshall for pointing this out.
5751         * THANKS: Update.
5753         * lib/autotest/general.m4 (AT_INIT): Store quoted variable
5754         assignments in `at_debug_args', so that we put them correctly
5755         in the `run' script.
5756         * tests/autotest.at (Debugging a failed test): Unmark XFAIL.
5757         Reported by Eric Blake.
5759 2006-04-11  Eric Blake  <ebb9@byu.net>
5761         * tests/autotest.at (AT_CHECK_AT): Add new argument, to allow
5762         top-level tests after micro-suite has been run.   Used in...
5763         (Debugging a successful test, Debugging script and environment),
5764         (Debugging a failed test): ...these new tests.  The first of these
5765         is fixed by...
5766         * lib/autotest/general.m4 (_AT_CREATE_DEBUGGING_SCRIPT): New
5767         macro, split out from...
5768         (AT_INIT): ...here, so that using -d also generates a run script.
5769         Document that -d inhibits top-level logging.
5770         * doc/autoconf.texi (testsuite Invocation): Document that -d only
5771         inhibits top-level logging; debug scripts are created.
5773         * lib/autotest/general.m4 (_AT_CHECK): Avoid syntax error on empty
5774         check.
5775         * tests/autotest.at (Empty test, Empty check): New test to check it.
5777         * lib/autoconf/c.m4 (AC_C_CONST, AC_C_VOLATILE): Avoid warnings
5778         from gcc.
5780 2006-04-10  Stepan Kasal  <kasal@ucw.cz>
5782         * tests/mktests.sh: Use "trap '' 0", not "trap 0".  Do not touch
5783         the files if a problem appears.  Make the empty *.at files
5784         read-only, too.  Proposed by Ralf Wildenhues.
5786 2006-04-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5788         * config/Makefile.am: Add comment to force updated Makefile.in.
5790         * lib/freeze.mk: Fix typo in comment.  Unlike the last, white
5791         space only patch to this file, this patch causes the Makefile.in
5792         files that include freeze.mk to be updated, and thus have a
5793         newer time stamp again, which in turn makes a pristine CVS
5794         checkout have correct time stamps.
5796         * Makefile.maint (cvs-sv): New macro, to be used..
5797         (config.guess-url_prefix, config.sub-url_prefix)
5798         (texinfo.tex-url_prefix, standards.texi-url_prefix): ..here;
5799         point to CVS text checkout of Gnulib files.
5800         (copyright-check): Bump current year.
5801         (announcement): Do not hard-wire `./announce-gen'.
5802         (cvs-update): Propagate failures of `cvs' and `move-if-change'
5803         correctly.
5804         * Makefile.cfg (executable-update): Use `chmod a+x' instead of
5805         `chmod +x'.
5806         (wget_files): Update config.guess, config.sub, texinfo.tex by
5807         `wget-update', now that their URLs work again.
5809 2006-04-10  Paul Eggert  <eggert@cs.ucla.edu>
5811         * doc/autoconf.texi (Particular Types): Don't use AC_CHECK_TYPE.
5812         Problem noted by Paul D. Smith.
5814 2006-04-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5816         * doc/autoconf.texi: Remove unused words from word list.
5817         * .x-sc_prohibit_atoi_atof, .x-sc_space_tab, .x-sc_sun_os_names,
5818         .x-sc_trailing_space: New files.
5820         * doc/standards.texi: Sync from gnulib.
5822         * NEWS, doc/autoconf.texi (AC_LIBOBJ vs LIBOBJS): Mark
5823         `LIBOBJDIR' as experimental.
5825         * lib/m4sugar/m4sh.m4 (_AS_LN_S_PREPARE): MSYS `ln -s' fails
5826         with a target directory; it's internally implemented as `cp'
5827         anyway, but since Autoconf advertises the possibility to use
5828         a target directory when LN_S is `ln -s', we need to find out.
5829         Reported by Rolf Ebert <rolf.ebert.gcc@gmx.de> against MSYS,
5830         analyzed by Keith Marshall <keith.marshall@total.com>.
5832         * THANKS: Update.
5834 2006-04-10  Paul Eggert  <eggert@cs.ucla.edu>
5836         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Just output
5837         confdefs.h as-is.  In general, if it has backslash-newline or the
5838         like, then it doesn't work either to sort or to remove empty
5839         lines.
5841 2006-04-09  Stepan Kasal  <kasal@ucw.cz>
5843         * tests/Makefile.am (AUTOCONF_FILES): Fix typo in the comment.
5845 2006-04-09  Alexandre Duret-Lutz  <adl@gnu.org>
5847         * lib/autom4te.in (Automake-preselections): Preselect
5848         _AM_SUBST_NOTMAKE.
5850 2006-04-08  Paul Eggert  <eggert@cs.ucla.edu>
5852         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Use '\'' for an
5853         apostrophe within a single-quoted string, as this is the usual
5854         tradition and is easier to read than '"'"'.  Don't rely on the
5855         shell treating "$/" like '$/'.  Use a more-consistent indenting
5856         style for the trap.
5858 2006-04-09  Eric Blake  <ebb9@byu.net>
5860         * tests/autotest.at (Backquote command substitution),
5861         (Multiline backquote command substitution): Remove mistaken
5862         AT_NO_CMDSUBST from the 2006-03-14 patch, which was meant to be
5863         applied...
5864         (Parenthetical command substitution, Multiline parenthetical
5865         command substitution): here.
5867 2006-04-08  Paul Eggert  <eggert@cs.ucla.edu>
5869         Import macros from gnulib (often changing their name).
5871         * NEWS: AC_C_TYPE_LONG_DOUBLE is now obsolete.
5872         New macros AC_CHECK_DECLS_ONCE, AC_CHECK_FUNCS_ONCE,
5873         AC_CHECK_HEADERS_ONCE, AC_FUNC_STRTOLD, AC_HEADER_ASSERT,
5874         AC_STRUCT_DIRENT_D_INO, AC_STRUCT_DIRENT_D_TYPE,
5875         AC_TYPE_LONG_DOUBLE, AC_TYPE_LONG_DOUBLE_WIDER, AC_TYPE_INT8_T,
5876         AC_TYPE_INT16_T, AC_TYPE_INT32_T, AC_TYPE_INT64_T,
5877         AC_TYPE_INTMAX_T, AC_TYPE_INTPTR_T, AC_TYPE_LONG_LONG_INT,
5878         AC_TYPE_UINT8_T, AC_TYPE_UINT16_T, AC_TYPE_UINT32_T,
5879         AC_TYPE_UINT64_T, AC_TYPE_UINTMAX_T, AC_TYPE_UINTPTR_T,
5880         AC_TYPE_UNSIGNED_LONG_LONG_INT, AC_USE_SYSTEM_EXTENSIONS.
5881         The manual mentions Gnulib more prominently.
5882         * doc/autoconf.texi (Gnulib): New node.
5883         (Pointers): Add Gnulib URL.
5884         (Particular Functions): Alphabetize.  Add AC_FUNC_STRTOLD.
5885         (Generic Functions): Add AC_CHECK_FUNCS_ONCE.  Refer to new
5886         Gnulib section.
5887         (Particular Headers): Add AC_HEADER_ASSERT.  For stdbool.h,
5888         suggest a #define rather than a typedef for _Bool, and mention
5889         Gnulib rather than trying to substitute stdbool code.
5890         (Generic Headers): Add AC_CHECK_HEADERS_ONCE.
5891         (Generic Declarations): Add AC_CHECK_DECLS_ONCE.
5892         (Particular Structures): Add AC_STRUCT_DIRENT_D_INO,
5893         AC_STRUCT_DIRENT_D_TYPE.
5894         (Particular Types): Mention stdint.h and inttypes.h as standard
5895         headers too.
5896         Add AC_TYPE_INT8_T, AC_TYPE_INT16_T, AC_TYPE_INT32_T, AC_TYPE_INT64_T,
5897         AC_TYPE_INTMAX_T, AC_TYPE_INTPTR_T, AC_TYPE_LONG_DOUBLE,
5898         AC_TYPE_LONG_DOUBLE_WIDER, AC_TYPE_LONG_LONG_INT, AC_TYPE_UINT8_T,
5899         AC_TYPE_UINT16_T, AC_TYPE_UINT32_T, AC_TYPE_UINT64_T,
5900         AC_TYPE_UINTMAX_T, AC_TYPE_UINTPTR_T, AC_TYPE_UNSIGNED_LONG_LONG_INT.
5901         (C Compiler): Move AC_C_LONG_DOUBLE to ...
5902         (Obsolete Macros): here.  Under AC_LONG_DOUBLE, mention
5903         AC_TYPE_LONG_DOUBLE or AC_TYPE_LONG_DOUBLE_WIDER instead.
5904         (Posix Variants): Add AC_USE_SYSTEM_EXTENSIONS.
5905         (Coding Style).  Don't mention m4_expand_once.
5906         * lib/autoconf/c.m4 (AC_C_LONG_DOUBLE): Implement via
5907         AC_TYPE_LONG_DOUBLE_WIDER.  Now obsolete.
5908         * lib/autoconf/functions.m4 (_AH_CHECK_FUNCS): New macro.
5909         (AC_CHECK_FUNCS): Use it.
5910         (AC_CHECK_FUNCS_ONCE, AC_FUNC_STRTOLD): New macros.
5911         (AC_FUNC_WAIT3): "the Open Group standards" -> "POSIX".
5912         * lib/autoconf/general.m4 (AC_CHECK_DECLS_ONCE): New macro.
5913         * lib/autoconf/headers.m4 (AC_CHECK_HEADERS_ONCE): New macro.
5914         (AC_HEADER_ASSERT): New macro.
5915         (AC_HEADER_STDBOOL): Don't assume "#error" works.
5916         Catch a bug in IBM AIX xlc compiler version 6.0.0.0.
5917         Catch a bug in an HP-UX C compiler.
5918         * lib/autoconf/specific.m4 (AC_USE_SYSTEM_EXTENSIONS): New macro.
5919         * lib/autoconf/types.m4 (AC_TYPE_INTMAX_T. AC_TYPE_UINTMAX_T):
5920         (AC_TYPE_INTPTR_T, AC_TYPE_UINTPTR_T. AC_TYPE_LONG_DOUBLE):
5921         (AC_TYPE_LONG_DOUBLE_WIDER, AC_C_LONG_DOUBLE, AC_TYPE_LONG_LONG_INT):
5922         (AC_TYPE_UNSIGNED_LONG_LONG_INT, _AC_TYPE_INT, _AC_TYPE_UNSIGNED_INT):
5923         (_AC_STRUCT_DIRENT, AC_STRUCT_DIRENT_D_INO, AC_STRUCT_DIRENT_D_TYPE):
5924         New macros.
5926         * tests/mktests.sh (ac_exclude_list, au_exclude_list): Do not
5927         use /^foo|bar$/, it does not mean /^(foo|bar)$/.
5929 2006-04-08  Stepan Kasal  <kasal@ucw.cz>
5931         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Fix the wording
5932         of the warning introduced by the 2001-08-28 change.
5934 2006-04-08  Stepan Kasal  <kasal@ucw.cz>,
5935             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5937         * lib/autoconf/general.m4 (AC_CACHE_SAVE): All `ac_cv_env_foo'
5938         variables shall be overriden by the cache.
5939         * tests/torture.at (AC_ARG_VAR): Test also with a first value
5940         that contains braces.
5942 2006-04-07  Stepan Kasal  <kasal@ucw.cz>
5944         Revert the patch from 2006-04-01 and only improve
5945         _AS_DETECT_BETTER_SHELL:
5947         * lib/m4sugar/m4sh.m4 (_AS_PATH_WALK): Do not optimize; do not
5948         skip nonexistent directories.
5949         (_AS_DETECT_BETTER_SHELL): The optimization is moved here--try
5950         only shell candidates which exist.
5951         (AS_UNAME): No need to give three parameters to _AS_PATH_WALK.
5952         * lib/autotest/general.m4 (AT_INIT): No need to give three
5953         parameters to _AS_PATH_WALK.
5955 2006-04-07  Stepan Kasal  <kasal@ucw.cz>,
5956             Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
5958         * bin/autoupdate.in (handle_autoconf_patches): Change the way we
5959         distinguish m4sugar macros.
5960         * tests/tools.at (autoupdating with aclocal and m4_include):
5961         New test.  Bug reported by Gary V. Vaughan <gary@gnu.org>,
5962         test case by Noah Misch <noah@cs.caltech.edu>.
5964 2006-04-07  Stepan Kasal  <kasal@ucw.cz>
5966         Revert my change from 2006-03-17, in other words:
5967         * lib/m4sugar/m4sh.m4 (AS_BOURNE_COMPATIBLE): Insert BIN_SH=xpg4
5968           and DUALCASE=1.
5969         (AS_SHELL_SANITIZE): Remove DUALCASE=1.
5970         * doc/autoconf.texi (Special Shell Variables) <BIN_SH>: Say that
5971           it is set.
5973 2006-04-07  Eric Blake  <ebb9@byu.net>
5975         * doc/autoconf.texi (Programming in M4sh): Document that
5976         AS_MKDIR_P exits the script on failure.
5977         * lib/autotest/general.m4: Remove redundant AS_ERROR.
5979 2006-04-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5981         * config/elisp-comp, config/install-sh, config/mdate-sh,
5982         config/missing, config/mkinstalldirs: Sync from Automake.
5984         * lib/Autom4te/FileUtils.pm, lib/Autom4te/Struct.pm: Sync
5985         from Automake.
5987         * doc/make-stds.texi: Sync from gnulib.
5989 2006-04-06  Eric Blake  <ebb9@byu.net>
5991         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_O): Inside cache
5992         check, s/ac_exeext/ac_cv_exeext/.  Fixes regression introduced
5993         2006-04-01.
5995 2006-04-06  Stepan Kasal  <kasal@ucw.cz>,
5996             Eric Blake  <ebb9@byu.net>,
5997             Paul Eggert  <eggert@cs.ucla.edu>,
5998             Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
6000         * lib/autoconf/general.m4 (_AC_CACHE_DUMP): Fix the detection of
6001         whether `set' quotes correctly: redirect stderr of the tested
6002         `set', and use a subshell, for Ultrix; use `sed' instead of
6003         `grep' for zsh `set' which may write binary output; match only
6004         at the beginning of a line, to avoid false positives.
6005         In order to avoid false positives by unrelated variables with
6006         multiline content, put the dump algorithm in a subshell and
6007         unset all variables containing newlines (except some which are
6008         special to the shell).  Warn about cache variables that are
6009         unset.
6011 2006-04-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6013         * config/config.guess, config/config.sub, config/texinfo.tex:
6014         Sync from upstream.
6016         * tests/mktests.sh: Reword comments.
6018         * tests/mktests.sh: Only skip internal macros starting with
6019         `_AC_' or `__AC_'.  Noted by Stepan Kasal.
6020         Update exclusion lists for the test suite to this end:
6021         (AC_ARG_VAR): Do test this now.
6022         (AC_SEARCH_LIBS, AC_REPLACE_FUNCS): Need an argument.
6023         (AC_LINKER_OPTION): Remove (renamed to _AC_LINKER_OPTION).
6024         (AC_LIST_MEMBER_OF): Likewise (renamed to _AC_LIST_MEMBER_IF).
6025         (AC_LINK_FILES): Obsoleted since (and thus AU_DEFUN'ed).
6027         * doc/autoconf.texi (Shell Substitutions): Mention the MSYS
6028         shell issue with double-quoted command substitutions of native
6029         commands.
6030         Reported to MSYS by Mark Cave-Ayland, to Autoconf by Keith
6031         Marshall.
6033         * Makefile.maint (sc_cast_of_argument_to_free): Do not fail when
6034         no file matches the glob, discard the warning, set `nullglob'.
6035         (syntax-check): Likewise.
6036         (sc_cast_of_x_alloc_return_value): Likewise.
6037         (sc_cast_of_alloca_return_value, sc_error_exit_success)
6038         (sc_prohibit_jm_in_m4, .re-list, sc_unmarked_diagnostics)
6039         (m4-check): Likewise.
6040         (sc_system_h_headers): Do not print rule on execution.
6041         (sc_tight_scope): Do not fail for non-existing `src' directory.
6042         (sc_changelog): Skip the Copyright footer.
6043         * lib/autoconf/lang.m4: Remove trailing space.
6045         * lib/autoconf/status.m4: More replacements to
6046         <tab><space> where this makes sense.
6048 2006-04-06  Stepan Kasal  <kasal@ucw.cz>
6050         * tests/Makefile.am (maintainer-check-posix):
6051           s/POSIXLY_CORRECTLY/POSIXLY_CORRECT/
6053         * lib/autoconf/status.m4 (_AC_CONFIG_FOOS): Append TAGS to
6054           ac_config_<foo>s again, sometimes normalized, sometimes not.
6055         (AC_CONFIG_FILES, AC_CONFIG_HEADERS, AC_CONFIG_LINKS):
6056         (AC_CONFIG_COMMANDS): Do not do so here.
6057         (_AC_CONFIG_REGISTER_DEST): Double quote the tags in macros _AC_LIST_TAGS
6058           and_AC_LIST_TAG_COMMANDS; fixes another regression introduced by the
6059           2005-07-25 rewrite.  Noticed by Noah Misch.
6061         * lib/autoconf/general.m4 (AC_PRESERVE_HELP_ORDER): Do not define
6062           _AC_PRESERVE_HELP_ORDER, ...
6063         (AC_ARG_ENABLE, AC_ARG_WITH): ... use AC_PROVIDE_IFELSE insetad.
6065         * lib/autoconf/general.m4 (AC_ARG_VAR): Do not use m4_divert_once
6066           inside m4_expand_once; it is redundant.
6068         * lib/autoconf/general.m4 (_AC_INIT_HELP): Remove the broken support
6069           for --help from Cygnus `configure.'
6071 2006-04-06  Paul Eggert  <eggert@cs.ucla.edu>
6073         * doc/autoconf.texi (C Compiler): Warn about #error.  Follows up
6074         on a patch proposed by Ralf Wildenhues.
6076 2006-04-05  Paul Eggert  <eggert@cs.ucla.edu>
6078         * lib/autoconf/status.m4: Replace <space>''<tab> with
6079         <tab><space> where this makes sense.
6081 2006-04-05  Howard Chu  <hyc@highlandsun.com>  (trivial change)
6082             Noah Misch  <noah@cs.caltech.edu>
6084         * lib/autoconf/general.m4 (AC_PRESERVE_HELP_ORDER): New macro.
6085         (AC_ARG_ENABLE, AC_ARG_WITH): Adjust.
6086         * doc/autoconf.texi (Help Formatting): New node.
6087         * NEWS: Announce AC_PRESERVE_HELP_ORDER.
6089 2006-04-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6091         * TODO, config/Makefile.am, lib/freeze.mk, lib/autoconf/c.m4,
6092         lib/autoconf/specific.m4, lib/autoconf/status.m4,
6093         lib/autoconf/types.m4, lib/autotest/general.m4,
6094         tests/mktests.sh, tests/torture.at: White space cleanup:
6095         remove some SPACE before TAB, or add quoting ('' or @&t@).
6097         * NEWS, TODO, bin/autoreconf.in: `filesystem' -> `file system'.
6099         * doc/autoconf.texi (Shell Substitutions): Document `^' vs. `|'.
6101 2006-04-05  Eric Blake  <ebb9@byu.net>
6103         * lib/autotest/general.m4 (AT_INIT): Prep AT_*_all, so that an
6104         empty test suite works.
6105         * tests/autotest.at (Empty test suite): Remove xfail.
6107 2006-04-05  Noah Misch  <noah@cs.caltech.edu>
6109         * lib/autoconf/status.m4 (_AC_CONFIG_FOOS): Do not append normalized
6110         TAGS to ac_config_<foo>s.
6111         (AC_CONFIG_FILES, AC_CONFIG_HEADERS, AC_CONFIG_LINKS): Do so here.
6112         (AC_CONFIG_COMMANDS): Append NAME to ac_config_commands without
6113         normalizing it, consistent it with previous releases.
6114         * tests/torture.at (Macro calls in AC_CONFIG_COMMANDS tags): New test.
6116 2006-04-05  Paul Eggert  <eggert@cs.ucla.edu>
6118         * lib/m4sugar/m4sh.m4 (AS_BASENAME_EXPR, AS_DIRNAME_EXPR):
6119         Use simplified args that Eric Blake originally suggested.
6121 2006-04-04  Paul Eggert  <eggert@cs.ucla.edu>
6123         * tests/mktests.sh: Don't use 'cat'; just read the files directly.
6124         Prefer 'sort -u' to 'sort | uniq'.  Filter data before sorting it.
6125         Use 'comm' rather than N instances of grep; this also fixes a bug
6126         whereby substrings were incorrectly matched, causing us to not
6127         generate tests for AC_F77_NAME_MANGLING and AC_FUNC_LSTAT.
6128         (exclude_list): Exclude empty macros.
6129         (ac_exclude_list): Exclude AC_INCLUDES_DEFAULT.
6131         Use awk rather than grep -E or egrep, to avoid
6132         portability problems with regular expressions containing newlines.
6133         (exclude_list, ac_exclude_list, au_exclude_list, ac_exclude_script):
6134         Switch from grep to awk syntax.
6135         (ac_exclude_script): Renamed from ac_exclude_egrep.
6136         (au_exclude_script): Renamed from au_exclude_egrep.
6138 2006-04-04  Noah Misch  <noah@cs.caltech.edu>
6140         * lib/autoconf/general.m4 (_AC_INIT_HELP): Only `configure.in' evidences
6141         a subdirectory subject to Cygnus `configure'.
6142         * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): Likewise.
6144         * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_MONGREL): Omit the bug
6145         report request when we have no AC_PACKAGE_BUGREPORT.
6147 2006-04-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6149         * THANKS: Update.
6151         * tests/mktests.sh: Update copyright year in the header of the
6152         generated files.
6154         * lib/autoconf/c.m4 (AC_C_INLINE): Do not skip cleanup code.
6155         (AC_C_RESTRICT): Likewise.  Furthermore, add a function with a
6156         typedef'ed restricted pointer, to catch a compiler bug on
6157         HP-UX 11.x, and fix warnings so it passes with -Werror.
6158         (_AC_PROG_CC_C99): Likewise.
6159         Reported by Albert Chin <china@thewrittenword.com>.
6160         * tests/mktests.sh: Do not skip AC_C_INLINE, AC_C_RESTRICT.
6162 2006-04-03  Noah Misch  <noah@cs.caltech.edu>
6164         * bin/autoscan.in (subdirs): New global.
6165         (scan_file): Prune directories with configure{,.{ac,in,gnu}}.
6166         (output): Emit AC_CONFIG_SUBDIRS as needed.
6167         * tests/autoscan.at (autoscan): Remove XFAIL.
6169 2006-04-03  Noah Misch  <noah@cs.caltech.edu>
6171         * lib/autoconf/general.m4 (AC_CACHE_SAVE): Use AC_MSG_NOTICE.
6173 2006-04-03  Eric Blake  <ebb9@byu.net>
6175         * THANKS: Add myself.
6177 2006-04-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6179         * lib/autotest/general.m4 (AT_INIT): Add `at_testdir' to pointer
6180         to log, point to testsuite output tree.
6182 2006-04-02  Paul Eggert  <eggert@cs.ucla.edu>
6184         * NEWS: AC_PROG_CC and AC_PROG_CXX no longer declare 'exit'.
6185         * doc/autoconf.texi (Function Portability): Mention that C++
6186         has trouble with 'exit'.
6187         (Guidelines): Test programs shouldn't use 'exit'.
6188         * lib/autoconf/c.m4 (_AC_PROG_CXX_EXIT_DECLARATION):
6189         Remove; all uses removed.
6190         (AC_LANG_INT_SAVE(C), AC_C_BIGENDIAN):
6191         Return from 'main' instead of calling 'exit'.
6192         * lib/autoconf/functions.m4 (_AC_LIBOBJ_ALLOCA, AC_FUNC_CLOSEDIR_VOID):
6193         (_AC_FUNC_FNMATCH_IF, AC_FUNC_GETGROUPS):
6194         (AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK, _AC_FUNC_MALLOC_IF):
6195         (AC_FUNC_MEMCMP, AC_FUNC_MKTIME, AC_FUNC_MMAP, _AC_FUNC_REALLOC_IF):
6196         (AC_FUNC_SETPGRP, _AC_FUNC_STAT, AC_FUNC_STRTOD, AC_FUNC_STRERROR_R):
6197         (AC_FUNC_STRNLEN, AC_FUNC_SETVBUF_REVERSED, AC_FUNC_UTIME_NULL):
6198         (_AC_FUNC_FORK, _AC_FUNC_VFORK, AC_FUNC_WAIT3): Likewise.
6199         * lib/autoconf/headers.m4 (AC_HEADER_STDC): Likewise.
6200         * lib/autoconf/specific.m4 (AC_SYS_RESTARTABLE_SYSCALLS): Likewise.
6201         * lib/autoconf/types.m4 (AC_TYPE_GETGROUPS): Likewise.
6202         * tests/compile.at: Likewise.
6204 2006-04-02  Pavel Roskin  <proski@gnu.org>
6206         * doc/autoconf.texi (AC_PATH_X): Update per 2005-08-26 change.
6208 2006-04-01  Stepan Kasal  <kasal@ucw.cz>
6210         Clean up _AC_COMPILER_EXEEXT* macros.
6212         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Don't try to
6213           detect exeext, it will be done by _AC_COMPILER_EXEEXT_O; just set
6214           ac_file to the name of the default output file and call
6215           _AC_COMPILER_EXEEXT_WORKS.  Move the definition of ac_files and the
6216           initial `rm' of the candidate files...
6217         (_AC_COMPILER_EXEEXT): ... here and simplify them.  Moreover, use
6218           the same list in subsequent `rm' calls, and for the temporary
6219           redefinition of ac_clean_files; call _AC_COMPILER_OBJEXT at the end,
6220           and don't call the other _AC_COMPILER_EXEEXT_* macros directly, use...
6221         (_AC_COMPILER_EXEEXT_TESTS): ... this new macro.
6222         (_AC_COMPILER_EXEEXT_O): Don't export ac_cv_exeext, it's not needed (or
6223           no longer needed) by libtool.  Make it a cache check.
6224         (_AC_COMPILER_EXEEXT_CROSS): Remove the comment, it was obviously
6225           copied here by mistake.
6226         (AC_NO_EXECUTABLES): Redefine _AC_COMPILER_EXEEXT_TESTS, not
6227           _AC_COMPILER_EXEEXT.
6228         * lib/autoconf/c.m4 (AC_PROG_CC, AC_PROG_CXX, AC_PROG_OBJC): Do not call
6229           _AC_COMPILER_OBJEXT directly.
6230         * lib/autoconf/fortran.m4 (_AC_PROG_FC): Likewise.
6232 2006-04-01  Stepan Kasal  <kasal@ucw.cz>
6234         * lib/m4sugar/m4sh.m4 (_AS_DIRNAME_PREPARE): New macro.
6235         (AS_DIRNAME): Use it.
6236         (_AS_PREPARE): Add _AS_DIRNAME_PREPARE.
6238         * tests/*.at: Remove the generated ones.
6240 2006-04-01  Stepan Kasal  <kasal@ucw.cz>
6242         * lib/autotest/general.m4 (AT_INIT): Don't optimize the first PATH walk.
6244 2006-04-01  Eric Blake  <ebb9@byu.net>
6246         * lib/m4sugar/m4sh.m4 (_AS_PATH_WALK): Optimize nonexistent
6247         directories, unless optional third argument supplied.
6248         (AS_UNAME): Don't optimize PATH walk.
6250         * lib/Autom4te/Struct.pm, lib/autoconf/c.m4: s/non-existent/nonexistent/
6252 2006-04-01  Eric Blake  <ebb9@byu.net>
6253         and Stepan Kasal  <kasal@ucw.cz>
6255         * lib/m4sugar/m4sh.m4: Sort sections as implied by the comments,
6256         and fix some typos.
6258 2006-04-01  Noah Misch  <noah@cs.caltech.edu>
6260         * lib/autoconf/general.m4 (_AC_INIT_VERSION): Emit script name and
6261         Autoconf version number despite a zero- or one-argument AC_INIT.
6263         * bin/autoreconf.in (parse_args): Multiple -v send --verbose to
6264         subordinate tools.
6265         * lib/Autom4te/General.pm (getopt): Make -v and -d incremental.
6266         * doc/autoconf.texi (autoreconf Invocation): Document it.
6268         * doc/autoconf.texi: Use `Cygwin', `MinGW', and `license' consistently.
6269         Append LocalWords so ispell-buffer passes cleanly.  Spelling fixes.
6271 2006-04-01  Eric Blake  <ebb9@byu.net>
6273         * lib/m4sugar/m4sh.m4 (AS_MKDIR_P): Allow use in shell lists.
6274         * lib/autotest/general.m4: Be tolerant of existing directory when
6275           rm failed to remove it.
6277 2006-04-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6279         * bin/autoupdate.in: Redefine m4_location so that warnings print
6280         the correct lines of the input file by subtracting..
6281         (_au__first_line): ..this new definition.
6283         * lib/autoconf/general.m4 (AC_COMPILE_CHECK): Prefer
6284         AC_MSG_CHECKING over obsolete AC_CHECKING in autoupdated code.
6285         Remove stray newline in output.
6286         (AC_FOREACH): AU_DEFUN this as literal for autoupdate, and also
6287         AC_DEFUN this for autoconf, including the obsoletion diagnose.
6288         Fixes autoupdating of code where the replacement output contains
6289         m4sugar macros.
6290         * lib/autoconf/lang.m4 (AC_LANG_SAVE): Likewise.
6291         * tests/mktests.sh (ac_exclude_list): Add AC_FOREACH.
6292          (au_exclude_list): Add AC_LANG_SAVE.
6293         * tests/tools.at: Several new tests for all of this.
6294         * doc/autoconf.texi (Obsoleting Macros): Give a hint about the
6295         hairy details.
6296         The AC_LANG_SAVE issue was reported against Libtool by
6297         Dalibor Topic <robilad@kaffe.org>, and against Autoconf 2.57 by
6298         Kristian Kvilekval <kris@cs.ucsb.edu>.
6300 2006-04-01  Stepan Kasal  <kasal@ucw.cz>
6302         * bin/autoupdate.in: Handle m4 builtins and m4sugar macros together--
6303           switch all of them on and of when necessary.  Fixes the bug when
6304           m4sugar macros (e.g., m4_define) were expanded after the first
6305           automatic update (e.g., after AC_PREREQ or AC_INIT).
6307 2006-03-31  Paul Eggert  <eggert@cs.ucla.edu>
6309         * doc/autoconf.texi (Programming in M4sh): Sharpen the descriptions
6310         of AS_BASENAME and AS_DIRNAME.  Reported by Stepan Kasal.
6312         * lib/m4sugar/m4sh.m4 (AS_BASENAME_EXPR): Handle ///, ////, etc.
6313         correctly.  Problem reported by Eric Blake.
6314         (_AS_EXPR_PREPARE): Detect Tru64 expr bug.  Problem reported by
6315         Ralf Wildenhues.
6317 2006-03-30  Paul Eggert  <eggert@cs.ucla.edu>
6319         * doc/autoconf.texi (Programming in M4sh, Limitations of Usual Tools):
6320         Tighten up the basename/dirname wording.
6322 2006-03-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6324         * Makefile.maint (sc_texi_notab): New check: do not use TABs
6325         in texinfo files outside of verbatim environments.
6326         (syntax-check-rules): Update.
6327         * doc/autoconf.texi (Configuration Headers): Conform to it.
6329 2006-03-30  Chris Pickett <cpicke@cs.mcgill.ca>  (tiny change)
6331         * doc/autoconf.texi (autoreconf Invocation): Mention that -I for
6332           aclocal cannot be given on the command line.
6334 2006-03-29  Paul Eggert  <eggert@cs.ucla.edu>
6336         * doc/autoconf.texi (Programming in M4sh): Mention AS_BASENAME.
6337         Give an example for AS_DIRNAME instead of referring to Posix..
6338         (File System Conventions): Put discussion of // versus / here, and
6339         modernize it a bit.
6340         (Limitations of Usual Tools): Add basename.  Remove verbiage
6341         after dirname, since it got moved to the above sections.
6342         All this was inspired by a patch proposed earlier by Eric Blake.
6344 2006-03-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6346         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Quote
6347         `$0' to protect against spaces.
6348         * lib/autotest/general.m4 (AT_INIT): Likewise.
6349         * lib/m4sugar/m4sh.m4 (_AS_LINENO_PREPARE): Likewise, for
6350         `$0', $as_me.
6352 2006-03-26  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6354         * bin/autoscan.in: The value of find_configure_ac should be
6355         checked for existence, so we don't barf over a nonexisting
6356         configure.ac.  Reported by Laurence Darby <ldarby@tuffmail.com>.
6358 2006-03-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6360         * bin/autoupdate.in: Fix some typos.
6362 2006-03-21  Stepan Kasal  <kasal@ucw.cz>
6364         * doc/autoconf.texi (Installation Directory Variables): Fix typo.
6366         * lib/autoscan/autoscan.list: Refreshed.
6368 2006-03-20  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6370         * tests/local.at (AT_CHECK_ENV): Ignore AC_SUBSTed Objective C
6371         and Erlang related variables.
6373         * lib/autoconf/c.m4 (AC_LANG(Objective C), AC_LANG_OBJC)
6374         (_AC_LANG_ABBREV(Objective C), _AC_LANG_PREFIX(Objective C))
6375         (AC_LANG_SOURCE(Objective C), AC_LANG_PROGRAM(Objective C))
6376         (AC_LANG_CALL(Objective C), AC_LANG_FUNC_LINK_TRY(Objective C))
6377         (AC_LANG_BOOL_COMPILE_TRY(Objective C))
6378         (AC_LANG_INT_SAVE(Objective C), AC_LANG_PREPROC(Objective C))
6379         (AC_PROG_OBJCPP, AC_LANG_COMPILER(Objective C), AC_PROG_OBJC)
6380         (_AC_PROG_OBJC_G): New macros.
6381         (_AC_ARG_VAR_CPPFLAGS): Adjusted.
6382         * doc/autoconf.texi (Objective C Compiler): New node.
6383         (Preset Output Variables): Document OBJCFLAGS.
6384         (Language Choice): Document `Objective C' language.
6385         (Fortran Compiler): Fix typo.
6386         * NEWS: Updated.
6387         Inspired by a patch from David M. Lloyd <dmlloyd@tds.net>.
6389 2006-03-20  Stepan Kasal  <kasal@ucw.cz>
6391         * doc/autoconf.texi (Default Includes): Fix typo
6392           s/AC_HEADERS_STDC/AC_HEADER_STDC/
6393         (Limitations of Usual Tools): s/unwriteable/unwritable/
6394         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT, _AC_COMPILER_EXEEXT):
6395           Fix typos in the comments.
6397 2006-03-17  Stepan Kasal  <kasal@ucw.cz>
6399         * lib/autoconf/programs.m4 (AC_PATH_TOOL, AC_CHECK_TOOL, AC_CHECK_TOOLS):
6400           Factor out the warning to...
6401         (_AC_TOOL_WARN): ... this new macro; use `cross_compiling'.
6402         * tests/local.at (AT_CHECK_MACRO_CROSS): Avoid this warning.
6403         * tests/semantics.at (AC_C_BIGENDIAN): Likewise.
6405         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE): Do not special
6406           case `ac_delim' when writing the sed script.
6408         * lib/m4sugar/m4sh.m4 (AS_BOURNE_COMPATIBLE): Removed BIN_SH=xpg4,
6409           moved DUALCASE=1 ...
6410         (AS_SHELL_SANITIZE): ... here.
6411         * doc/autoconf.texi (Special Shell Variables) <BIN_SH>: Do not say
6412           that it is set.
6414         * lib/autoconf/programs.m4 (AC_CHECK_PROG): Quote the parameter of
6415           AC_SUBST.
6416         (_AC_PATH_PROG): Store the result to VARIABLE.
6417         (AC_PATH_PROG): No need to set VARIABLE again.
6419         * tests/local.at (AT_CHECK_MACRO_CROSS): New macro, creates two tests:
6420           the first one is usual AT_CHECK_MACRO test, the second one checks
6421           that the same works when cross-compiling.
6422         * tests/semantics.at (AC_CHECK_ALIGNOF, AC_CHECK_ALIGNOF struct):
6423         (AC_CHECK_SIZEOF, AC_CHECK_SIZEOF struct): Use it.
6425 2006-03-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6427         * lib/m4sugar/m4sh.m4 (_AS_DETECT_BETTER_SHELL): Prepend
6428         the directory `/usr/bin/posix' in the shell search, to prefer
6429         the Posix shell not only in subsequent spawns as with `$BIN_SH'
6430         on Tru64.
6432         * doc/autoconf.texi (contents): To fix texi2html output, hide
6433         `@setcontentsaftertitlepage' for HTML.
6434         (Writing Autoconf Macros): Likewise, insert space after `@c'.
6435         (Leviticus, Numbers, Deuteronomy): Likewise, change `@,c' to
6436         `@,{c}'.
6438 2006-03-16  Stepan Kasal  <kasal@ucw.cz>
6440         * lib/m4sugar/m4sh.m4 (_AS_PREPARE): Move the IFS setup and CDPATH
6441           sanitizing...
6442         (AS_SHELL_SANITIZE): ...here; mention _AS_PATH_WALK needs IFS set.
6443         * lib/autoconf/general.m4 (_AC_CANONICAL_SPLIT): Add an explanation
6444           why IFS is restored so late; thank you, Ralf, for reminding us.
6446 2006-03-15  Stepan Kasal  <kasal@ucw.cz>
6448         * doc/autoconf.texi (Pretty Help Strings): No need to use cached
6449           variables in the examples.
6451 2006-03-14  Romain Lenglet  <rlenglet@users.forge.objectweb.org>
6453         * doc/autoconf.texi (several sections): Cleaned up documentation for
6454         macros in erlang.m4.
6456 2006-03-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6458         * tests/autotest.at (AT_NO_CMDSUBST): New macro to determine
6459         failure condition for `$(cmd)' style command substitutions.
6460         (Parenthetical command substitution, Multiline parenthetical
6461         command substitution): Use it.
6463         * doc/autoconf.texi (Special Shell Variables): Missing word.
6464         Reported by Keith Marshall <keith.marshall@total.com>.
6466         * lib/m4sugar/m4sh.m4 (_AS_PATH_WALK): Do not forget to reset
6467         IFS even in case of empty `$PATH'.
6469 2006-03-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6471         * lib/autotest/general.m4 (AT_INIT) <at_optarg>: Optimize
6472         `expr' away if there is nothing to do.
6473         < --keywords >: Simplify and robustify argument handling.
6474         Revert erroneous comment from 2005-08-23.  Extend to allow
6475         keyword negation with `!'.
6476         Update help message.  Remove broken code to prevent running
6477         tests multiple times.
6478         * doc/autoconf.texi (testsuite Invocation) < --keywords >:
6479         Update and fix the documentation accordingly.
6480         * tests/autotest.at (Keywords): Renamed to..
6481         (Keywords and ranges): .. this.  Extended to make sure negated
6482         keywords, keywords taken from AT_SETUP arguments, and numeric
6483         test ranges work, and that matching is case-insensitive.
6485 2006-03-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6487         * lib/autoconf/types.m4 (_AC_CHECK_TYPE_NEW): Use a typedef to
6488         allow to pass unnamed structs even in C++.
6489         (AC_CHECK_SIZEOF):  Likewise.
6490         Also fix quoting error in `AC_MSG_FAILURE' arguments.
6491         * tests/semantics.at (AC_CHECK_ALIGNOF struct, AC_CHECK_SIZEOF
6492         struct): New tests for unnamed structs, each both native and
6493         cross-compiling.
6495         * lib/autoconf/c.m4 (AC_C_TYPEOF): Use typedef to avoid defining
6496         a structure inside a cast, for C++ conformance.
6497         * lib/autoconf/types.m4 (AC_CHECK_ALIGNOF): Likewise.
6498         Also fix quoting error in `AC_MSG_FAILURE' arguments.
6500         * lib/autoconf/c.m4 (AC_PROG_CC_STDC): If we cannot enable C99
6501         nor C89 mode, set `$ac_cv_prog_cc_stdc' to `no' instead of
6502         trying to execute the command `no'.
6504         * lib/autoconf/lang.m4 (AC_LANG_CONFTEST): AC_DEFUN this, not
6505         m4_define, so that the requirements of `AC_INCLUDES_DEFAULT' are
6506         expanded outside.
6508         * doc/autoconf.texi (autoconf Invocation): Fix typos in trace
6509         example.  Do not emphasize `$%', it is hardly new and special.
6510         Reported by Edouard Bechetoille <ebecheto@ens-lyon.fr>.
6512         * doc/autoconf.texi (Limitations of Usual Tools): Document
6513         OpenBSD and traditional `grep' failure to handle multiple
6514         patterns separated by newlines.
6516 2006-03-10  Romain Lenglet  <rlenglet@users.forge.objectweb.org>
6518         * doc/autoconf.texi (several sections): Add documentation for macros
6519         in erlang.m4.
6521 2006-03-10  Eric Blake  <ebb9@byu.net>
6523         * doc/autoconf.texi (Obsolete Macros): Fix wording of
6524         AC_TRY_LINK_FUNC.
6526 2006-03-10  Paul Eggert  <eggert@cs.ucla.edu>
6528         * doc/autoconf.texi: Use @acronym more consistently for acronyms
6529         like BSD, GPL, LGPL.  Fix minor English typos.
6530         (AC_STDC_HEADERS, AC_PROG_GCC_TRADITIONAL):
6531         Mention that these macros are becoming obsolete.
6532         (AC_STDC_HEADERS, AC_PROG_CC, AC_C_CONST, AC_C_VOLATILE):
6533         Use more modern terminology for which standard is what.
6534         (AC_PROG_CC): Mention gcc first, and remove obsolete references to egcs
6535         and to ansi2knr.
6536         (AC_PROG_CXX): Likewise.
6537         (AC_C_PROTOTYPES, Test Functions, AC_LIBOBJ vs LIBOBJS):
6538         Remove obsolete discussion about how to port to K&R.
6539         (Guidelines for Test Programs): Suggest AC_HEADER_STDBOOL rather than
6540         the obsolescent AC_HEADER_STDC.
6541         (AC_FOO_IFELSE vs AC_TRY_FOO): Don't use #error; test programs
6542         can't rely on it.
6544 2006-03-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6546         * tests/c.at (AC_PROG_CPP without warnings, AC_PROG_CPP via CC):
6547         Remove stdin redirection from /dev/null to allow pipe to work.
6549 2006-03-08  Paul Eggert  <eggert@cs.ucla.edu>
6551         * tests/c.at (AC_PROG_CPP without warnings, AC_PROG_CPP via CC):
6552         Require that /lib/cpp include stdio.h correctly.  Solaris 10's
6553         doesn't.  Problem reported by D'Arcy A MacIsaac and diagnosed by
6554         Ralf Wildenhues.
6556 2006-03-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6558         * lib/autoconf/status.m4 (_AC_SED_CMD_LIMIT): The limit for
6559         HP-UX sed is 99 commands, not 100.
6560         (_AC_OUTPUT_FILES_PREPARE): Do not count the `}' of an
6561         _AC_SUBST_FILES fragment.  Separate `{' and `r' commands by
6562         newline for portability.
6563         * tests/torture.at (Torturing config.status): Also test 100
6564         AC_SUBST_FILE invocations.  Fix test to actually verify the
6565         AC_CONFIG_FILES output.
6566         * doc/autoconf.texi (Limitations of Usual Tools): Document HP-UX
6567         command, label, and read-file `r' limits.  Unify HP-UX spelling.
6569         * tests/Makefile.am (edit, $(wrappers)): Do not use `$<' in
6570         non-suffix rule.
6571         ($(TESTSUITE_GENERATED_AT)): Use `$(srcdir)` for the benefit of
6572         non-GNU make.
6573         (autoconfdir, $(AUTOCONF_FILES)): Likewise.
6574         * tests/mktests.sh: Small shell portability fixes.
6576 2006-03-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6578         * doc/autoconf.texi (Caching Results): Fix the examples to use a
6579         recommended quoting style and discard unwanted output.
6581 2006-03-05  Paul Eggert  <eggert@cs.ucla.edu>
6583         * lib/autotest/general.m4 (_AT_NORMALIZE_TEST_GROUP_NUMBER): New macro.
6584         (AT_INIT): Use it, to remove arbitrary limit of 999,999 test
6585         cases, and to work around Tru64 expr bug.
6587 2006-03-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6589         * doc/autoconf.texi (Limitations of Usual Tools): Mention Tru64
6590         expr bug that turns the result of a regex match into a number if
6591         possible.
6593 2006-03-04  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6595         * lib/autoconf/types.m4 (AC_CHECK_ALIGNOF): Work around
6596         HPUX compiler bug, similarly to AC_CHECK_SIZEOF, as documented
6597         in section `Specific Compiler Characteristics'.
6599 2006-03-04  Eric Blake  <ebb9@byu.net>
6601         * lib/autoconf/functions.m4 (AC_FUNC_STRERROR_R): Avoid unused
6602         variable warning.
6604 2006-03-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6606         * lib/autoconf/status.m4 (_AC_OUTPUT_HEADER): Force correct
6607         order of variable initialization, so even the Solaris 2.6 shell
6608         can create a config header correctly.  Fixes lots of test suite
6609         failures.
6611 2006-02-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6613         * doc/autoconf.texi (Text processing Macros): New node to
6614         document the m4sugar macros m4_re_escape, m4_tolower,
6615         m4_toupper, m4_split, m4_normalize, m4_append, m4_append_uniq.
6617 2006-02-22  Paul Eggert  <eggert@cs.ucla.edu>
6619         * lib/autoconf/libs.m4 (_AC_PATH_X_DIRECT): Fix typo:
6620         XrmInitialize (0) -> XrmInitialize ().
6621         Reported by Toshio Kuratomi.
6623 2006-02-21  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6625         * lib/m4sugar/m4sh.m4 (AS_IF): Extend to allow more than one
6626         test, as in `if tests; then cmd1; elif ...; else ...; fi'.
6627         * doc/autoconf.texi (Programming in M4sh): Adjusted.
6628         * tests/m4sh.at (AS_IF and AS_CASE): Test this.  Also make sure
6629         both macros are defun'ed so that required macros are evaluated
6630         outside.
6632         * doc/autoconf.texi (Prerequisite Macros): State more precisely
6633         where a required macro will be expanded.
6634         (Coding Style): Another reason not to use `m4_define'.
6636 2006-02-21  Eric Blake  <ebb9@byu.net>
6638         * lib/autoconf/general.m4 (_AC_LIBOBJ): Minor optimization.
6640 2006-02-20  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6642         * doc/autoconf.texi (Looping constructs): New node, to
6643         document m4_for, m4_foreach, m4_foreach_w, and mention
6644         obsolete AC_FOREACH.
6645         (Obsolete Macros): Document AC_FOREACH.
6646         * lib/m4sugar/m4sugar.m4 (_m4_for): Fix declaration comment.
6647         (m4_for): Fix to never loop (almost) endlessly, work correctly
6648         with arithmetic expressions in arguments, a step of zero or
6649         non-integer multiple of the interval, and avoid integer
6650         overflow.
6651         * tests/m4sugar.at: New test for m4_for, m4_foreach, and
6652         m4_foreach_w.
6654 2006-02-20  Romain Lenglet  <rlenglet@users.forge.objectweb.org>
6656         Add basic support for Erlang, both for configuring Erlang/OTP
6657         tools, and Erlang as a conf test language.
6658         * lib/autoconf/erlang.m4: New file.
6659         * lib/autoconf/autoconf.m4: Add erlang.m4.
6660         * lib/autoconf/Makefile.am (dist_autoconflib_DATA): Likewise.
6661         * lib/freeze.mk (autoconf_m4f_dependencies): Likewise.
6662         * NEWS: Add short description of new macros.
6663         * THANKS: Add Romain Lenglet.
6665 2006-02-20  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6667         * doc/autoconf.texi (Shellology) <pdksh>: Document that pdksh as
6668         native /bin/sh may not set KSH_VERSION (seen on OpenBSD).
6670 2006-02-15  Eric Blake  <ebb9@byu.net>
6672         * lib/autoconf/general.m4 (AC_CHECK_DECL): Avoid unused variable
6673         warning.
6675 2006-02-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6677         * lib/m4sugar/m4sh.m4 (AS_CASE): New macro.
6678         (_AS_CASE): Private helper macro.
6679         * tests/m4sh.at: Basic tests for AS_IF and AS_CASE.
6680         * doc/autoconf.texi (Programming in M4sh): Document AS_CASE.
6681         Fix syntax of AS_IF description
6682         (Prerequisite Macros): Mention AS_IF and AS_CASE as workarounds
6683         for the AC_REQUIRE mess.
6684         * NEWS: Mention AS_CASE, AS_BOURNE_COMPATIBLE, and
6685         AS_SHELL_SANITIZE.
6687 2006-02-14  Paul Eggert  <eggert@cs.ucla.edu>
6689         * doc/autoconf.texi: Minor style cleanup.
6690         Be consistent about spaces after commas.
6691         Insert [] where empty args look a bit funny.
6692         Fix some "i.e." and "e.g." usages.
6693         Try to avoid "X/Y" usages.
6694         Don't be pedantic about "ISO C99"; just say C99.
6695         Prefer GNU style for spaces in front of parens.
6696         (Function Portability): Comment about C89 versus C99
6697         signed integer division.
6698         (Particular Headers): Use current gnulib style for dirent
6699         includes.
6701 2006-02-14  Stepan Kasal  <kasal@ucw.cz>
6702         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6704         * bin/autoupdate.in (handle_autoconf_macros): Fix updating of
6705         macros without parameters.
6706         * lib/autoconf/autoupdate.m4 (AU_ALIAS): Likewise.
6707         * doc/autoconf.texi (Obsoleting Macros): Document AU_ALIAS.
6708         * tests/tools.at (autoupdating AU_ALIAS): New test for AU_ALIAS
6709         `$#' bug.
6710         (autoupdate): Updated to match AU_ALIAS fix.
6712 2006-02-13 Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6713         and Paul Eggert  <eggert@cs.ucla.edu>
6715         * doc/autoconf.texi (Programming in M4sh): Document
6716         AS_BOURNE_COMPATIBLE and AS_SHELL_SANITIZE.
6718 2006-02-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6720         * lib/m4sugar/m4sh.m4 (_AS_BOURNE_COMPATIBLE): Renamed to..
6721         (AS_BOURNE_COMPATIBLE): ..this.
6722         (_AS_RUN, AS_SHELL_SANITIZE): Adjusted all callers.
6724 2006-02-12  Paul Eggert  <eggert@cs.ucla.edu>
6726         * doc/install.texi (Defining Variables): Tighten up the
6727         CONFIG_SHELL wording.
6729 2006-02-12 Paul Eggert  <eggert@cs.ucla.edu>
6730         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6732         * lib/m4sugar/m4sh.m4 (_AS_BOURNE_COMPATIBLE): Look at the output
6733         of (set -o) rather than testing whether (set -o posix) succeeds,
6734         to work around a bug in the AIX 5.3 shell.  Problem originally
6735         reportd by Howard Chu for libtool.
6737 2006-02-10  J.T. Conklin  <jtc@acorntoolworks.com>
6739         * doc/autoconf.texi (Running the Compiler, Running the Linker):
6740         Changes the macro arguments in summaries to match the
6741         descriptions.
6743 2006-02-04  Stepan Kasal  <kasal@ucw.cz>
6745         * doc/install.texi (Defining Variables): Classify the `CONFIG_SHELL'
6746         hint as ``a workaround for a bug.''
6748 2006-01-31  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6750         * bin/autoreconf.in: New option `--no-recursive'.
6751         Improve wording for subpackages a bit.
6752         * doc/autoconf.texi (autoreconf Invocation): Updated.
6753         * NEWS: Updated.
6755         * doc/install.texi (Defining Variables): Put `CONFIG_SHELL'
6756         in environment of `configure', not the command line.
6757         Reported by Howard Chu <hyc@highlandsun.com>.
6759 2006-01-25  Paul Eggert  <eggert@cs.ucla.edu>
6761         * doc/autoconf.texi (Limitations of Builtins): Document the
6762         problem with "trap -".
6764 2006-01-23  Steven G. Johnson  <stevenj@fftw.org>
6766         * lib/autoconf/fortran.m4 (_AC_FC_LIBRARY_LDFLAGS, _AC_FC_DUMMY_MAIN):
6767         (_AC_FC_MAIN, __AC_FC_NAME_MANGLING): Use _AC_LANG in check
6768         messages to differentiate Fortran and Fortran 77 tests.
6769         (AC_FC_SRCEXT, AC_FC_FREEFORM): Use AC_LANG_PUSH/POP instead of
6770         AC_LANG_ASSERT, to allow use in mixed-language projects.
6772 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
6774         * lib/autoconf/c.m4 (AC_LANG_FUNC_LINK_TRY(C)): Prefer "defined
6775         FOO" to "defined (FOO)".
6776         * lib/autoconf/functions.m4 (_AC_LIBOBJ_ALLOCA): Likewise.
6777         * lib/autoconf/headers.m4 (AC_HEADER_STAT): Likewise.
6778         * lib/autoconf/specific.m4 (AC_XENIX_DIR): Likewise.
6779         * tests/tools.at (ifnames): Likewise.
6781 2006-01-21  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6783         * lib/m4sugar/m4sh.m4 (AS_TMPDIR): Do not pass `-q' to mktemp.
6784         * lib/Autom4te/General.pm (mktmpdir): Likewise.
6785         (END): Improve error message a bit.
6786         Reported by Bruce Korb <bkorb@gnu.org>.
6788 2006-01-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6790         * lib/autoconf/fortran.m4 (_AC_FC_LIBRARY_LDFLAGS): Ignore
6791         `-LIST:' and `-LNO:', for PathScale 2.3 compilers.
6793 2006-01-11  Stepan Kasal  <kasal@ucw.cz>
6795         * doc/autoconf.texi (Header Portability): On Solaris 8, sys/ptem.h
6796         requires sys/stream.h.  Reported by Oliver Kiddle.
6798 2006-01-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6799             Stepan Kasal  <kasal@ucw.cz>
6801         * lib/autotest/general.m4 (AT_INIT): When ensuring writability
6802         before the removals of test dirs, use `find' to avoid modification
6803         of symlinked directories.
6805 2006-01-11  Steven G. Johnson  <stevenj@alum.mit.edu>
6807         * lib/autoconf/fortran.m4 (AC_F77_DUMMY_MAIN, AC_FC_DUMMY_MAIN):
6808         Don't ignore the macro arguments.
6810 2006-01-11  David Thompson  <dthompsn@vizsolutions.com>
6812         * lib/autoconf/c.m4 (_AC_PROG_CXX_EXIT_DECLARATION): Add `exit'
6813         declaration that works for MSVC.
6815 2006-01-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6817         * lib/autoconf/lang.m4 (_AC_COMPILER_OBJEXT_REJECT):
6818         Add `*.map' and `.inf' for Green Hills compiler.
6819         Reported by Stefan Seefeld <stefan@codesourcery.com>.
6821         * lib/m4sugar/m4sugar.m4 (m4_text_wrap): Handle quadrigraphs
6822         correctly: pad with spaces after FIRST_PREFIX if necessary,
6823         and compute string lenghts with `m4_qlen' instead of `m4_len'.
6824         * lib/m4sugar/m4sh.m4 (AS_HELP_STRING): Comments updated.
6825         * tests/m4sh.at (AS_HELP_STRING): Test extended.
6826         * NEWS: Updated.
6827         Reported by numerous people, numerous times.
6829 2006-01-05  Paul Eggert  <eggert@cs.ucla.edu>
6831         * bin/autoconf.as, bin/autoheader.in, bin/autom4te.in
6832         * bin/autoreconf.in, bin/autoscan.in, bin/autoupdate.in, bin/ifnames.in:
6833         * lib/autoconf/general.m4, lib/autoconf/status.m4:
6834         * lib/autotest/general.m4, tests/local.at:
6835         Update copyright year to 2006.
6837         * Makefile.maint (sc_root_tests): Use the recommended style s/a/b/ for
6838         sed substitutions.
6839         * doc/autoconf.texi (Installation Directory Variables): Use s|a|b|
6840         for file names, again.  Reported by Noah Misch.
6841         (Coding Style): Explain that s|a|b| is preferred for file names.
6842         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE): Prefer s/a/b/.
6843         (AC_OUTPUT_MAKE_DEFS): Likewise.
6844         * lib/autotest/general.m4 (AT_INIT): Likewise.
6845         * lib/m4sugar/m4sh.m4 (_AS_LINENO_PREPARE): Likewise.
6846         * tests/local.at (AT_CHECK_AUTOM4TE): Likewise.
6848         Fix Posix-conformance bugs re use of { command in sed scripts,
6849         and improve the sed-related documentation a bit.
6850         * doc/autoconf.texi (Installation Directory Variables): Use
6851         our own style advice re 's,a,b,' versus 's|a|b|'.  Use "Sed"
6852         rather than "sed" when talking about Sed in general.
6853         (Particular Programs): Likewise.
6854         (Coding Style): y is like s with respect to / and ,.
6855         (Limitations of Usual Tools): Document the weird restrictions
6856         that Posix has about { }.  Use better quoting.
6857         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE, _AC_OUTPUT_HEADER):
6858         Rewrite to conform to Posix rules about { } in sed scripts.
6859         * lib/m4sugar/m4sh.m4 (AS_DIRNAME_SED, AS_BASENAME_SED): Likewise.
6860         * tests/foreign.at (Libtool): Likewise.
6861         * tests/semantics.at (AC_CHECK_PROG & AC_CHECK_PROGS):
6862         Use our own style advice re 's,a,b,' versus 's|a|b|'.
6864 2006-01-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6866         * lib/autoconf/status.m4: Fix typo.
6868         * lib/autoconf/fortran.m4 (_AC_FC_LIBRARY_LDFLAGS): Ignore
6869         singly- or doubly-quoted arguments to `-cmdline', `-ignore',
6870         `-def', for the benefit of Portland `pgf90 -Mipa'.
6871         Reported by Christopher Hulbert <cchgroupmail@gmail.com>.
6873 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
6875         * doc/autoconf.texi: Update copyright (and other) dates to 2006.
6876         * doc/autoconf.texi (Shellology): Mac OS X 10.2 changed the default
6877         shell from zsh to bash.
6879 2005-12-31  Stepan Kasal  <kasal@ucw.cz>
6881         * lib/autoconf/programs.m4 (_AC_PROG_GREP): Use $PATH_SEPARATOR;
6882           ":" caused problems on OS/2-EMX.  Suggested by Andrew Belov.
6884 2005-12-29  Paul Eggert  <eggert@cs.ucla.edu>
6886         * doc/autoconf.texi (Shell Substitutions): Warn about unbalanced
6887         parentheses in $(...).  Problem reported by Eric Blake.
6889 2005-12-12  Paul Eggert  <eggert@cs.ucla.edu>
6891         * doc/autoconf.texi (Limitations of Usual Tools):
6892         Mention which characters can be escaped with \ in portable regular
6893         expressions used in grep, sed, expr.  Mention the leading ^ problem
6894         with expr.  Clean up some confusing wording.  Mention which
6895         grep options are portable.
6897 2005-12-09  Stepan Kasal  <kasal@ucw.cz>
6899         * tests/local.at (AT_CHECK_AUTOM4TE): Fix typo in the comment.
6901 2005-12-02  Paul Eggert  <eggert@cs.ucla.edu>
6903         * doc/autoconf.texi (Limitations of Builtins): Fix typos in previous
6904         patch, noted by Ralf Wildenhues.
6906 2005-12-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6908         * lib/m4sugar/m4sh.m4 (_AS_BOURNE_COMPATIBLE): Try `set -o
6909         posix' unconditionally, for pdksh in `native sh' emulation.
6911 2005-12-01  Paul Eggert  <eggert@cs.ucla.edu>
6913         * doc/autoconf.texi (Shellology): Document eval $? problem
6914         with ash.
6915         (Limitations of Builtins): Likewise.
6917 2005-11-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6919         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Pass
6920         CONFIG_SHELL in the environment of the configure rerun.
6921         * doc/autoconf.texi (Here-Documents, config.status Invocation):
6922         Suggest passing CONFIG_SHELL absolute, and in the environment
6923         rather than as option.
6925 2005-11-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6927         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE):
6928         Fix quoting of output line (triggered for many AC_SUBST_FILEs).
6929         Fix macro quoting.  Fix output for n * 98 substituted variables.
6931 2005-11-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6933         * lib/autoconf/status.m4 (_AC_OUTPUT_MAIN_LOOP): Initialize
6934         `tmp' to avoid file removal race.
6936 2005-11-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6938         * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS): Initialize
6939         ac_clean_files and LIBOBJS.
6941 2005-11-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6943         * lib/autoconf/programs.m4 (AC_CHECK_PROG, AC_PATH_PROG):
6944         Factor functionality to..
6945         (_AC_CHECK_PROG, _AC_PATH_PROG): these new macros, but only
6946         `AC_SUBST($1)' in the public version.
6947         (AC_CHECK_TOOL, AC_PATH_TOOL, AC_PATH_TARGET_TOOL)
6948         (AC_CHECK_TARGET_TOOL): Use internal versions for ac_ct_* and
6949         ac_pt_* variables.
6951 2005-11-01  Stepan Kasal  <kasal@ucw.cz>
6953         * lib/autoconf/c.m4 (AC_PROG_CC_C_O): Remove the comment about 8+3
6954         filesystems.
6956 2005-11-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6958         * NEWS: Move AH_HEADER mention to right place.
6960 2005-10-27  Stepan Kasal  <kasal@ucw.cz>
6962         * lib/autoconf/c.m4 (AC_PROG_CC_C_O): "conftst2" -> "conftest2"
6963         * lib/autoconf/fortran.m4 (_AC_PROG_FC_C_O): Likewise.
6965 2005-10-25  Stepan Kasal  <kasal@ucw.cz>
6967         * lib/autoconf/c.m4 (AC_PROG_CC_C_O): rm -f conftst2.*, not only
6968         conftst2.$ac_objext.
6969         * lib/autoconf/fortran.m4 (_AC_PROG_FC_C_O): Likewise.
6971 2005-10-24  Stepan Kasal  <kasal@ucw.cz>
6973         * lib/autoconf/c.m4 (AC_PROG_CC_C_O): Use conftst2.o instead of
6974         conftest.o, to see whether the compiler really obeys; rm the object
6975         file before and after the test and register it with ac_clean_files.
6976         * lib/autoconf/fortran.m4 (_AC_PROG_FC_C_O): Likewise.
6978 2005-10-21  Stepan Kasal  <kasal@ucw.cz>
6980         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE): When determining,
6981         the delimiter CEOF$ac_eof: fix quoting of CEOF[0-9]* and modify the
6982         code so that the most common case requires less forks.
6984 2005-10-20  Stepan Kasal  <kasal@ucw.cz>
6986         * doc/autoconf.texi (Shell Substitutions}: Document that ${10} is
6987         not portable; thanks to Paul Eggert and Alexandre.
6989         * NEWS: Fix an old typo.
6991 2005-10-20  Jim Meyering  <jim@meyering.net>
6993         * doc/autoconf.texi: Typo: s/feature/features/ in ``the features of
6994         the latter'', in two places.
6996 2005-10-19  Paul Eggert  <eggert@cs.ucla.edu>
6998         * doc/autoconf.texi (Generating Sources): AC_LANG_PROGRAMS ->
6999         AC_LANG_PROGRAM, fixing a typo.  Don't give details about
7000         the inner workings of AC_LANG_FUNC_LINK_TRY.
7001         * lib/autoconf/c.m4 (AC_LANG_CALL(C)): Reformat to match
7002         AC_LANG_FUNC_LINK_TRY.  This involves returning the value returned
7003         by the function rather than ignoring it.
7004         (AC_LANG_FUNC_LINK_TRY(C)): Call the function rather than simply
7005         comparing its address.  Intel's interprocedural optimization was
7006         outsmarting the old heuristic.  Problem reported by
7007         Mikulas Patocka.
7009 2005-10-19  Stepan Kasal  <kasal@ucw.cz>
7011         * lib/autoconf/general.m4 (AC_SUBST): Remove an obsolete comment.
7013 2005-10-05  Paul Eggert  <eggert@cs.ucla.edu>
7015         * lib/m4sugar/m4sugar.m4 (_m4_map): New macro.
7016         (m4_map, m4_map_sep): Use it.  Handle the empty list correctly.
7018 2005-10-04  Stepan Kasal  <kasal@ucw.cz>
7020         * lib/autotest/general.m4 (AT_INIT): Really make the subtree writable
7021         before removing it (chmod -R u+rwx); there are three instances of this.
7023 2005-10-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7024             Stepan Kasal  <kasal@ucw.cz>
7026         * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): Balance parentheses.
7027         * lib/autotest/general.m4 (AT_INIT): If the test dir already exists,
7028         make its content writable before removing it.  Remove an errorneous
7029         comment from the end, where the logs of the failed tests are copied
7030         to the main log file.
7032 2005-09-27  Stepan Kasal  <kasal@ucw.cz>
7034         * tests/semantics.at (AC_C_BIGENDIAN): Pass --force to autoheader,
7035           in case the computer is too quick.  Double quote the configure.ac
7036           snippets.
7038         * tests/local.at (AT_CHECK_AUTOCONF): Always pass --force to prevent
7039           problems if the testsuite were running too fast.
7041 2005-09-18  Paul Eggert  <eggert@cs.ucla.edu>
7043         * lib/autoconf/libs.m4 (_AC_PATH_X_DIRECT): Look for X11/Xlib.h
7044         and XrmInitialize rather than X11/Intrinsic.h and XtMalloc
7045         (which belong to Xt, not X itself).  See Debian bug 327655.
7046         * NEWS: Mention this.
7048 2005-09-07  Stepan Kasal  <kasal@ucw.cz>
7050         * lib/autoconf/c.m4 (AC_LANG_SOURCE(C)): Remove an incorrect comment.
7052 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
7054         * config/move-if-change: Don't output "$2 is unchanged";
7055         suggested by Ben Elliston.  Handle weird characters correctly.
7057 2005-09-06  Stepan Kasal  <kasal@ucw.cz>
7059         * lib/autoconf/libs.m4 (AC_SEARCH_LIBS): Merge the two AC_LINK_IFELSE
7060           calls, so that the final expansion of this macro is shorter.
7061           Create the conftest.$ac_ext outside the `for' loop, to speed the run.
7062           Do not use `break' in the argument to AC_LINK_IFELSE, it would skip
7063           the cleanup there.  Use AS_VAR_* macros, to be more general.
7064         * tests/semantics.at (AC_SEARCH_LIBS): Check for the cleanup.
7066         * lib/autoconf/general.m4: Use AS_IF where appropriate.
7068         * lib/m4sugar/m4sh.m4 (AS_IF): Use m4_default.
7070 2005-09-01  Stepan Kasal  <kasal@ucw.cz>
7072         * doc/autoconf.texi (Configuration Headers): Add an index entry
7073           for AH_HEADER.
7075 2005-08-26  Pavel Roskin  <proski@gnu.org>
7077         * lib/autoconf/libs.m4 (_AC_PATH_X_XMKMF): Use shell variable
7078         XMKMF to locate xmkmf.  Make XMKMF precious.  Export CC when
7079         running xmkmf.
7081 2005-08-26  Paul Eggert  <eggert@cs.ucla.edu>
7083         * lib/m4sugar/m4sh.m4 (_AS_VERSION_COMPARE_PREPARE):
7084         The previous patch didn't work, so try a better one.
7086 2005-08-26  Stepan Kasal  <kasal@ucw.cz>
7088         * doc/autoconf.texi (Programming in M4sh) <AS_TR_CPP>: Fix m4 quoting
7089         in the example.  Reported by Bruno Haible.
7090         <AS_TR_SH>: Likewise.  Also modify the example to be more convincing:
7091         "if $undefined_var;" succeeds with my shell.
7093         * lib/autoconf/general.m4 (AC_CANONICAL_BUILD, AC_CANONICAL_HOST,
7094         AC_CANONICAL_TARGET): Define by AC_DEFUN, no need to use AC_DEFUN_ONCE;
7095         but change the m4_divert_text to m4_divert_once.
7097 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
7099         * lib/m4sugar/m4sh.m4 (_AS_VERSION_COMPARE_PREPARE):
7100         Work around bug in Solaris /usr/xpg4/bin/awk.
7101         The bug is present in at least Solaris 8 through 10.
7103 2005-08-24  Stepan Kasal  <kasal@ucw.cz>
7105         * lib/autoconf/general.m4 (_AC_CANONICAL_SPLIT): Simplify; rejecting
7106         some evil values and relying on the fact that $* concatenates the
7107         parameters by the first character from IFS.
7109 2005-08-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>,
7110             Stepan Kasal  <kasal@ucw.cz>
7112         * lib/autoconf/status.m4 (_AC_CONFIG_REGISTER_DEST): When the
7113         first header appears, define AH_HEADER.
7114         * doc/autoconf.texi (Configuration Headers): Document AH_HEADER.
7115         Update limitations about when to call AC_CONFIG_HEADERS.
7116         (Configuration Commands): Document that AC_CONFIG_COMMANDS_PRE
7117         parameter can call AC_SUBST, AC_DEFINE, or AC_CONFIG_FOOS; explain
7118         that AC_CONFIG_COMMANDS_PRE and AC_CONFIG_COMMANDS_POST are not
7119         ``Configuration Actions''; fix their index entries.
7121         * lib/autotest/general.m4 (AT_INIT): Process multiple keywords
7122         options correctly.  Process N-M as M-N if M is smaller than N.
7123         Process ranges correctly so that N-N will run only N.
7124         Sort and uniquify the tests that will be run.  If there is more
7125         than one test, reinsert the banners for the tests.
7126         * tests/autotest.at (Keywords): Unmark XFAIL.
7128 2005-08-23  Stepan Kasal  <kasal@ucw.cz>
7130         * lib/autoconf/general.m4 (_AC_DEFINE_Q): Strip the parameter list
7131           before passing the macro name to AH_TEMPLATE.
7133         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): config.status
7134           now opens log after option processing; in particular, --version
7135           and --help do not touch config.log.
7137         * Makefile.maint: Revert the change from 2005-08-12.
7139 2005-08-22  Stepan Kasal  <kasal@ucw.cz>
7141         * lib/autoconf/general.m4 (AC_ARG_ENABLE, AC_ARG_WITH): Factor out
7142           common code to...
7143         (_AC_ENABLE_IF, _AC_ENABLE_IF_ACTION): ... these new macros.
7145 2005-08-21  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7147         * doc/autoconf.texi (Using Autotest, testsuite Scripts)
7148         (Autotest Logs, Writing testsuite.at, testsuite Invocation):
7149         Language cleanup.
7151         * doc/autoconf.texi (Defining Symbols, Changed Results):
7152         Prepend to LIBS, not append, in examples.
7154 2005-08-16  Stepan Kasal  <kasal@ucw.cz>
7156         When building in place, set srcdir="."; suggested by Tim Van Holder.
7158         * lib/autoconf/general.m4 (_AC_INIT_SRCDIR): Do this; to recognize
7159           build in place, we need ac_pwd, and thus have to AC_REQUIRE ...
7160         (_AC_INIT_DIRCHECK): ... this macro and AC_DEFUN both of them.
7161         * lib/autoconf/status.m4 (_AC_SRCDIRS): Fix a comment: srcdir="."
7162           does not mean "no --srcdir option".
7164 2005-08-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7166         * tests/autoscan.at (autoscan): New file.
7167         * tests/suite.at: Use it.
7168         * tests/Makefile.am (TESTSUITE_HAND_AT): Add it.
7169         Reported against Libtool by Gideon Go <gideon.go@gmail.com>.
7171         * tests/autotest.at (Keywords): Test keywords combinations.
7173 2005-08-12  Stepan Kasal  <kasal@ucw.cz>
7175         * Makefile.maint (GZIP_ENV): When checking the help text of gzip,
7176           add "2>&1"; gzip 1.2.4 prints help on stderr.
7178 2005-07-27  Stepan Kasal  <kasal@ucw.cz>
7180         * lib/autotest/general.m4 (_AT_DECIDE_TRACEABLE): The symbol at_reason
7181         was pushdef'ed twice while popped only once.  Push it only once.
7182         (_AT_CHECK): Cosmetic changes to the "case $at_status" command.
7184 2005-07-26  Stepan Kasal  <kasal@ucw.cz>
7186         * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): The message is now
7187         prefixed by mere "===", not "configure: === ".
7189 2005-07-25  Paul Eggert  <eggert@cs.ucla.edu>
7191         * Makefile.maint: Update from Bison.
7193         * lib/m4sugar/m4sugar.m4 (m4_strip): Comment fix---change tab to
7194         "<tab>" in comment, so that the point is understandable.
7196 2005-07-25  Stepan Kasal  <kasal@ucw.cz>
7198         Rewrite substantial part of lib/autoconf/status.m4.
7199         The main change is that CONFIG_FILES, CONFIG_HEADERS, CONFIG_LINKS,
7200         and CONFIG_COMMANDS are not processed in four separate loops.
7201         Instead, there is one main loop.  This alows that the common code
7202         is expanded only once, thus config.status (and configure) is smaller.
7204         The registration mechnism in AC_CONFIG_FILES and cousins also changed;
7205         the AC_LIST_FILES and cousins macros are no longer used.
7207         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES, _AC_OUTPUT_HEADERS,
7208         _AC_OUTPUT_LINKS, _AC_OUTPUT_COMMANDS): Renamed to ...
7209         (_AC_OUTPUT_FILE, _AC_OUTPUT_HEADER, _AC_OUTPUT_LINK,
7210         _AC_OUTPUT_COMMAND): ..., respectively.  These macros no longer
7211         contain the initialization, nor the for loop, nor the associated
7212         commands; all these go to ...
7213         (_AC_OUTPUT_MAIN_LOOP): ... this new macro, called from
7214         _AC_OUTPUT_CONFIG_STATUS.
7215         (_AC_CONFIG_SPLIT, _AC_CONFIG_SPLIT_SOURCE_DEST, _AC_CONFIG_SPLIT_FILE_IN):
7216         Nuked; the code was merged into _AC_OUTPUT_MAIN_LOOP.
7217         (_AC_OUTPUT_FILE): The creation of the sed script ...
7218         (AC_OUTPUT): ... and the setup of ac_vpsub goes to ...
7219         (_AC_OUTPUT_FILES_PREPARE): ... a new macro, also called from
7220         _AC_OUTPUT_MAIN_LOOP.
7221         (_AC_CONFIG_FILES, _AC_CONFIG_HEADERS, _AC_CONFIG_LINKS,
7222         _AC_CONFIG_COMMANDS): Use ...
7223         (_AC_CONFIG_FOOS): ... this new macro, which uses these ...
7224         (_AC_CONFIG_REGISTER, _AC_CONFIG_REGISTER_DEST): ... new macros.
7225         (_AC_CONFIG_FILE, _AC_CONFIG_HEADER, _AC_CONFIG_LINK,
7226         _AC_CONFIG_COMMAND, _AC_CONFIG_DEPENDENCIES): No longer needed.
7227         (_AC_CONFIG_DEPENDENCY): Update, it uses these ...
7228         (_AC_CONFIG_DEPENDENCY_DEFAULT, _AC_FILE_DEPENDENCY_TRACE_COLON):
7229         ... new macros.
7230         (_AC_CONFIG_UNIQUE): Update.
7231         (AC_LIST_FILES, AC_LIST_HEADERS, AC_LIST_LINKS, AC_LIST_COMMANDS):
7232         Replaced by this ...
7233         (_AC_LIST_TAGS): ... new common macro.
7234         (AC_LIST_FILE_COMMANDS, AC_LIST_HEADER_COMMANDS, AC_LIST_LINK_COMMANDS,
7235         AC_LIST_COMMAND_COMMANDS): Replaced by this ...
7236         (_AC_LIST_TAG_COMMANDS): ... new common macro.
7237         (_AC_CONFIG_COMMANDS_INIT): Moved top to the `registration' section;
7238         this didn't belong to the `config commands' section.
7239         (_AC_OUTPUT_COMMANDS_INIT): Don't initialize, m4_ifdef is our friend.
7240         (AC_CONFIG_COMMANDS_PRE, AC_OUTPUT_COMMANDS_PRE,
7241         AC_CONFIG_COMMANDS_POST): Moved to a new section, these didn't belong
7242         to the `config commands' section either.
7243         (AC_CONFIG_SUBDIRS): Don't touch diversion DEFAULTS.
7244         (_AC_LIST_SUBDIRS): Don't initialize, m4_ifdef is our friend.
7246         ... and many changes to the comments nearby.
7248         * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS): At the end of the day,
7249         set ac_subdirs_all='_AC_LIST_SUBDIRS'.
7250         * tests/torture.at (AC_CONFIG_FILES, HEADERS, LINKS and COMMANDS):
7251         AC_CONFIG_COMMANDS(command:input,...) is no longer allowed.
7252         (#define header templates): The comment at the top of the generated
7253         header now includes the name(s) of the source file(s).
7255         Several unrelated small changes:
7257         * lib/autoconf/general.m4 (AC_CACHE_VAL): Be didactic, quote the first
7258         parameter to AC_DIAGNOSE.
7259         * lib/autoconf/status.m4 (AC_CONFIG_SUBDIRS): Likewise.
7260         (_AC_LINK_FILES_CNT): Don't AU_DEFUN this; it causes confusing messages
7261         with autoupdate; use m4_define_default inside AU_DEFUNed AC_LINK_FILES.
7262         (AC_OUTPUT): In the compatibility code, use m4_ifvaln, to be consistent
7263         with AU::AC_OUTPUT.
7264         (AU::AC_OUTPUT): Don't double-quote $2 and $3, the compatibility code
7265         in AC_OUTPUT doesn't double-quote it either.
7266         * tests/tools.at (autoupdate): AU::AC_OUTPUT no longer double-quotes the
7267         parameters.
7269 2005-07-10  Stepan Kasal  <kasal@ucw.cz>
7271         * lib/autoconf/fortran.m4 (_AC_PROG_FC_V_OUTPUT): Document which
7272         versions of Portland Group compiler produce single- and double-quoted
7273         -cmdline argument.  Reported by Steven G. Johnson <stevenj@fftw.org>
7274         and Ole Holm Nielsen <Ole.H.Nielsen@fysik.dtu.dk>.
7276 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
7278         * tests/local.at (AT_CONFIG_CMP): Ignore lines like "LIBS=''" too.
7279         This is a corrected version of yesterday's patch.
7281 2005-07-07  Stepan Kasal  <kasal@ucw.cz>
7283         * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): Report the full
7284         path, too; insert a "===" to emphasize the line.
7286         * lib/autoconf/general.m4 (AC_CANONICAL_BUILD): Rename
7287           ac_cv_build_alias to ac_build_alias.
7288         (AC_CANONICAL_HOST, AC_CANONICAL_TARGET): Simplify.
7290         On 2005-02-24, an unintentional AC_SUBST([CC]) was introduced; this
7291         change eliminates it.  Problem reported by Alexandre Duret-Lutz.
7292         * lib/autoconf/general.m4 (_AC_ARG_VAR_PRECIOUS): Move the AC_SUBST ...
7293         (AC_ARG_VAR): ... here.
7294         (_AC_INIT_PREPARE): Call AC_SUBST for build_alias, host_alias and
7295           target_alias.
7297         Keep a list of all precious variables and process them with one simple
7298         for loop, instead of expanding all commands, or, OTOH, complicated
7299         processing of output of "set".
7300         * lib/autoconf/general.m4 (_AC_ARG_VAR_PRECIOUS): Acumulate the
7301         variable names in new macro...
7302         (_AC_PRECIOUS_VARS): ... which will be assigned to ac_precious_vars.
7303         (_AC_ARG_VAR_STORE): New macro which writes to diversion PARSE_ARGS
7304           a loop to assign all ac_env_* and ac_cv_env_* variables.
7305         (_AC_ARG_VAR_VALIDATE): Use shell variable ac_precious_vars, divert
7306           to INIT_PREPARE.
7307         (_AC_INIT_DEFAULTS): At the end, if _AC_PRECIOUS_VARS is set, assign
7308           its value to shell variable ac_precious_vars and call
7309           _AC_ARG_VAR_STORE and _AC_ARG_VAR_VALIDATE.
7310         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Don't call
7311           _AC_ARG_VAR_VALIDATE.
7313         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Move AC_LANG_PUSH(C)
7314           and the AC_SUBSTs ...
7315         (AC_INIT): ... here.
7317         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Changed the title of
7318           the ac_subst_files section in config.log.
7320         * tests/local.at (AT_CONFIG_CMP): Revert Paul's previous change.
7322 2005-07-06  Paul Eggert  <eggert@cs.ucla.edu>
7324         * NEWS: New macro AC_C_TYPEOF.
7325         * doc/autoconf.texi (C Compiler): Document AC_C_TYPEOF.
7326         * lib/autoconf/c.m4 (AC_C_TYPEOF): New macro.
7327         * tests/c.at (C keywords): Test AC_C_TYPEOF.
7329         Fix problems reported by Nicolas Joly.
7330         * tests/base.at (Input/Output): Ignore 'loading site script' chatter.
7331         * tests/local.at (AT_CONFIG_CMP): Ignore lines like "LIBS=''" too.
7332         They are generated by the Tru64 v5.1B shell.
7334 2005-07-05  Stepan Kasal  <kasal@ucw.cz>
7336         Fix my changes from 2005-07-01; reported by Noah Misch.
7337         * lib/autoconf/status.m4 (_AC_CONFIG_DEPENDENCIES): Fix the
7338         description, the macro now accepts only a single tag.
7339         (_AC_CONFIG_UNIQUE): Likewise; s/AC_File/[$1]/
7341         Fix cases when the varsions of Autoconf and Autotest don't match.
7342         Reported by Noah Misch.
7343         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): Set also
7344         at_top_builddir, for compatibility with older autotest.
7345         * lib/autotest/general.m4 (AT_INIT): If at_top_build_prefix
7346         is not set, use at_top_builddir, for compatibility with older
7347         versions of autoconf.
7349 2005-07-04  Paul Eggert  <eggert@cs.ucla.edu>
7351         * bin/autom4te.in ($m4): Catch usages like --nesting-limit=2048.
7352         Problem reported by Patrick Welche.
7354 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
7356         * lib/autoconf/general.m4 (AC_ARG_PROGRAM): Use &, not |, in
7357         sed substitution command, so that we allow | in program prefixes
7358         and program suffixes.  (& is a problem anyway; we're not fixing
7359         that here.)
7360         * lib/autoconf/status.m4 (AC_CONFIG_FILES): Likewise, for
7361         configure_input, top_builddir, srcdir, etc.
7362         * lib/autotest/general.m4 (AT_INIT): Likewise, for
7363         PATH_SEPARATOR in AUTOTEST_PATH.
7365 2005-07-02  Alexandre Duret-Lutz  <adl@gnu.org>
7367         * lib/autoconf/general.m4 (AC_SITE_LOAD): Rewrite the
7368         for loop over config.site files using `set', to allow
7369         directory names containing IFS characters.
7371 2005-07-01  Paul Eggert  <eggert@cs.ucla.edu>
7373         * lib/autoconf/general.m4 (_AC_INIT_DIRCHECK): Remove the tests for
7374         directories with weird names.  Apparently some people like living
7375         on the edge.  However, improve the test that "pwd" actually does
7376         report a name for the working directory.
7377         * NEWS: Remove the claim that we test for funny chars in dir names.
7379 2005-07-01  Stepan Kasal  <kasal@ucw.cz>
7381         * lib/autoconf/general.m4 (AC_FOREACH): Make obsolete; it's
7382         replaced ...
7383         * lib/m4sugar/m4sugar.m4 (m4_foreach_w): ... by this new macro.
7384         * lib/autoconf/status.m4 (_AC_CONFIG_DEPENDENCIES, _AC_CONFIG_UNIQUE):
7385         Now accept a single tag, not whitespace separated list.
7386         (AC_CONFIG_SUBDIRS): Call _AC_CONFIG_UNIQUE in a m4_foreach_w loop.
7388 2005-06-30  Stepan Kasal  <kasal@ucw.cz>
7390         * doc/autoconf.texi (Configuration Headers): Change the explanation
7391         about #include <config.h>.
7392         (Generic Functions): Mention the Gnulib project.
7393         (Limitations of Usual Tools) <sed>: Another minor rephrasing.
7395         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Use a here
7396         document to output the default config_* lists to config.status.
7397         Don't recognize option --file, if the functionality is not there.
7398         Likewise for --header; moreover, recognize --he and --h as shortcuts
7399         for --help in that case.
7401         * lib/autoconf/status.m4: Fix the order of the "sections", so that it
7402         matches the order of execution.  No code changed.
7404 2005-06-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7406         * lib/autoconf/fortran.m4 (_AC_PROG_FC_V_OUTPUT): Fix also for
7407         single-quoted -cmdline argument in Portland Group compiler.
7408         Reported against LAM by Ole Holm Nielsen <Ole.H.Nielsen@fysik.dtu.dk>.
7410 2005-06-30  Alexandre Duret-Lutz  <adl@gnu.org>
7412         * lib/autom4te.in (Automake-preselections): Preselect AC_SUBST_TRACE.
7414 2005-06-29  Stepan Kasal  <kasal@ucw.cz>
7416         * doc/autoconf.texi (File Descriptors): ksh doesn't pass open file
7417         descriptors to child processes; reported by Norman Gray.
7419 2005-06-29  Stepan Kasal  <kasal@ucw.cz>
7421         * lib/autoconf/general.m4 (AC_ARG_VAR): Move next to _AC_ARG_PRECIOUS.
7423         * lib/autoconf/general.m4 (AC_SUBST_TRACE): New macro, to be traced
7424         instead of AC_SUBST; proposed by Alexandre Duret-Lutz.
7425         (AC_SUBST): Call it.
7426         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES): Call AC_SUBST_TRACE for
7427         the directory specific variables; but don't call it for configure_input.
7429 2005-06-28  Derek Price  <derek@ximbiot.com>
7431         * doc/autoconf.texi (Limitations of Usual Tools) <sed>: Reword recent
7432         addition.
7434 2005-06-23  Paul Eggert  <eggert@cs.ucla.edu>
7436         * NEWS: Don't worry about spaces in bindir etc.  Only srcdir and working
7437         directory have inherent problems with special characters like spaces,
7438         due to limitations in Make syntax.  Problem reported by Alexandre
7439         Duret-Lutz.
7440         * lib/autoconf/general.m4 (_AC_INIT_DIRCHECK): Implement the above.
7441         Also, fix Tru64 porting problem with shell patterns,
7442         reported by Ralf Wildenhues.
7444 2005-06-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7446         * doc/autoconf.texi (Subdirectories): Fix markup typos.
7448 2005-06-23  Paul Eggert  <eggert@cs.ucla.edu>
7450         * tests/local.at (AT_CHECK_ENV): Simplify regexp slightly.
7452         Fix some more shell quoting problems.  Prompted by a bug report
7453         from Justace Clutter.
7454         * lib/autoconf/general.m4 (_AC_INIT_DIRCHECK): Put name of invalid
7455         variable into diagnostic.  Make the diagnostic an error, not a warning,
7456         because we really don't support spaces and suchlike in dir names.
7457         (_AC_INIT_SRCDIR): Allow special characters in $ac_unique_file.
7458         Don't worry about backslashes in srcdir; it can't happen now.
7459         (_AC_INIT_PARSE_ARGS): Allow weird characters in ac_optarg.
7460         Simplify ac_optarg handling.
7461         (_AC_ARG_VAR_VALIDATE): Remove unnecessary and inconsistent quotes.
7463 2005-06-22  Stepan Kasal  <kasal@ucw.cz>
7465         Fix AT_CONFIG_CMP for Solaris hosts; idea from Ralf Menzel.
7466         * configure.ac: Call AC_PROG_EGREP and AC_PROG_SED.
7467         * tests/atlocal.in: Propagate $EGREP and $SED.
7468         * tests/local.at (AT_CHECK_ENV): Use $EGREP, not $GREP -E.
7469         (AT_CONFIG_CMP): Use sed instead of grep plumbing.
7471         * doc/autoconf.texi (Limitations of Usual Tools) <grep>: Mention
7472         that '\|' is not allowed in BREs; recommend using newline separated
7473         list of patterns instead of multiple -e options.
7475         * lib/autoconf/fortran.m4 (_AC_PROG_FC_V_OUTPUT): Remove an old comment.
7477         * lib/autoconf/general.m4 (_AC_CANONICAL_SPLIT): Use AC_SUBST/2.
7479 2005-06-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7481         * lib/autoconf/general.m4 (_AC_CANONICAL_SPLIT): Fix typo.
7483 2005-06-21  Stepan Kasal  <kasal@ucw.cz>
7485         * doc/autoconf.texi (Limitations of Usual Tools) <sed>: Document that
7486         b, t, r, w commands require single space, while : cannot have any.
7487         (Special Shell Variables): Fix sed code this in the example.
7488         * lib/autoconf/status.m4 (_AC_OUTPUT_HEADERS): Likewise; and fix a typo.
7489         * lib/autotest/general.m4 (AT_ARG_OPTION): Fix typo in the description.
7491         * lib/m4sugar/m4sugar.m4 (m4_split): If the parameter is empty,
7492         expand to the empty list.  Don't use two pairs of m4_changequote,
7493         it's not necessary.
7495 2005-06-20  Derek Price  <derek@ximbiot.com>
7497         * lib/m4/programs.m4 (AC_PROG_YACC): Declare YACC & YFLAGS precious.
7499 2005-06-17  Paul Eggert  <eggert@cs.ucla.edu>
7501         * lib/m4sugar/m4sh.m4 (as_awk_strverscmp): Port to Solaris /bin/awk.
7502         * doc/autoconf.texi:
7503         Don't mention Solaris versions so much, if a
7504         problem is common to all extant versions of Solaris.  Say "SunOS
7505         4" instead of "SunOS" for SunOS 4.
7506         (awk): Mention more of the limitations of traditional Awk.
7507         (cat): Don't talk about cat -v.
7509 2005-06-16  Paul Eggert  <eggert@cs.ucla.edu>
7511         * lib/m4sugar/m4sh.m4 (_AS_VERSION_COMPARE_PREPARE): New macro.
7512         (AS_VERSION_COMPARE): New macro.  The API is taken from CVS,
7513         but the implementation is entirely different and is designed
7514         to be compatible with glibc strverscmp.
7515         * tests/m4sh.at (AS_VERSION_COMPARE): New test.
7517         * doc/autoconf.texi (Limitations of Usual Tools): Mention expr bug
7518         on Mac OS X 10.4 reported by Peter O'Gorman in:
7519         http://lists.gnu.org/archive/html/autoconf-patches/2005-06/msg00041.html
7520         * lib/autoconf/general.m4 (_AC_CANONICAL_SPLIT):
7521         Use shell builtins rather than 'expr', to work around expr bug.
7523 2005-06-10  Paul Eggert  <eggert@cs.ucla.edu>
7525         * doc/autoconf.texi: "filesystem" -> "file system".
7526         "behaviour" -> "behavior".
7527         Warn about \(...\)* in Solaris sed (written by Ralf Menzel).
7528         * lib/autoconf/general.m4: Omit blank after ":" sed command,
7529         as per POSIX.
7530         * lib/m4sugar/m4sh.m4: Likewise.
7531         * lib/autoconf/status.m4 (_AC_OUTPUT_HEADERS): Work around problem
7532         with Solaris sed.  Fix by Ralf Menzel and Stepan Kasal.
7534         * man/Makefile.am (MOSTLYCLEANFILES): Add $(srcdir)/*.t.
7535         (.x.1): Ignore the time stamp in the .TH line when deciding whether
7536         to update the man page.  That way, we don't have to check in new
7537         man pages every month.
7539         * lib/m4sugar/m4sh.m4 (AS_VAR_TEST_SET): Work even if $1 contains
7540         quotes and backslashes.  Patch from Derek Price.
7542 2005-06-10  Derek Price  <derek@ximbiot.com>
7544         * doc/autoconf.texi (Programming in M4sh): Document AS_TR_CPP &
7545         AS_TR_SH.
7547 2005-06-08  Paul Eggert  <eggert@cs.ucla.edu>
7549         * lib/autotest/general.m4 (AT_INIT): Don't accept Solaris 9's diff
7550         -u, since it outputs chatter if the input files are the same.
7551         Problem reported by Ralf Menzel.
7553 2005-06-08  Derek Price  <derek@ximbiot.com>
7555         * lib/m4sugar/m4sugar.m4: Undefine include & sinclude rather than
7556         renaming them since they are about to be redefined anyhow.
7558 2005-06-08  Derek Price  <derek@ximbiot.com>
7560         * doc/autoconf.texi (Redefined M4 Macros): Add index entries for most
7561         redefined M4 macros to this node.  Document m4_include & m4_sinclude.
7562         Move m4_undefine to alphabetical order.
7564 2005-06-07  Paul Eggert  <eggert@cs.ucla.edu>
7566         * README: Recommend GNU M4 1.4.3 or later.
7567         * doc/autoconf.texi (Introduction): Likewise.
7568         Reword to avoid some formatting glitches.
7569         Use "#!/bin/sh", not "#! /bin/sh"; the space isn't needed these days.
7570         Clarify explanation of HP compiler bug.
7571         Redo example output tp match current CVS snapshot.
7572         Use @example.org in email addresses when the examples
7573         might get inadvertently cut-and-pasted into user code.
7574         Remove example of autom4te usage that doesn't seem to work now.
7575         Use modern AC_INIT (except when the example is meant to be
7576         shown with Autoconf 2.13).
7577         Update ksh info for Solaris 9 and later.
7578         KB -> kB.
7579         Modernize description of Automake versions a bit.
7580         Don't claim a future version of Autoconf is near.
7581         * doc/install.texi: Reword to avoid some formatting glitches.
7583 2005-06-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7585         * doc/autoconf.texi: Add [] to examples, so that the manual
7586         follows its own advice about quoting better.
7587         Reword to avoid some formatting glitches.
7588         * doc/installt.exi: Reword to avoid some formatting glitches.
7590         * doc/autoconf.texi (Limitations of Builtins) <case>: Mention
7591         Tru64 ksh pattern matching bug.  Reported against Libtool by
7592         Albert Chin <libtool@mlists.thewrittenword.com> and
7593         Nicolas Joly <njoly@pasteur.fr>.
7595 2005-06-06  Stepan Kasal  <kasal@ucw.cz>
7597         m4_cdr of one-member list was [[]] (one-member list containing an
7598         empty string) instead of [] (an empty list.  Callers were skewed to
7599         match this misbehaviour.  As a consequence of this:
7600          - m4_foreach([x], [], [foo]) expanded to `foo', while
7601          - the expansion of m4_foreach([x], [[]], [foo]) was empty.
7602         This bug has been fixed:
7604         * lib/m4sugar/m4sugar.m4 (m4_cdr): If only one argument is given,
7605           expand to an empty string; print error msg if called without
7606           an argument list.
7607         (m4_foreach, m4_map, m4_map_sep): Don't expect the previous
7608           misbehaviour; handle [] and [[]] correctly.
7610 2005-06-06  Stepan Kasal  <kasal@ucw.cz>
7612         * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS): Nuke ac_max_here_lines.
7613         * lib/autoconf/status.m4 (_AC_OUTPUT_HEADERS): Simplify the sed
7614           scripts created and the loop applying them, use _AC_SED_CMD_LIMIT.
7616 2005-06-06  Ralf Menzel <menzel@ls6.cs.uni-dortmund.de>  (trivial change)
7618         * doc/autoconf.texi (Limitations of Usual Tools): Solaris' awk cannot
7619           swallow records with more than 99 fields.
7620         * lib/autotest/general.m4 (AT_INIT): Use the awk builtin `split' to
7621           parse the long line.
7623 2005-06-04  Stepan Kasal  <kasal@ucw.cz>
7625         * doc/autoconf.texi (Limitations of Usual Tools): AIX awk cannot
7626           swallow literals longer than 399.  Reported by Ralf Wildenhues.
7627         * lib/autotest/general.m4 (AT_INIT): Pass $at_groups though stdin,
7628           to workaround this limitation.
7630 2005-06-03  Steven G. Johnson  <stevenj@alum.mit.edu>
7632         * lib/autoconf/fortran.m4 (_AC_PROG_FC): Find g95 in addition
7633         to gfortran, and make these the first two compiler names
7634         checked (following the general autoconf preference for gcc).
7636 2005-06-03  Stepan Kasal  <kasal@ucw.cz>
7638         * tests/Makefile.am (check_SCRIPTS): Set to $(wrappers).
7639         (DISTCLEANFILES): Remove $(check_SCRIPTS).
7640         (testsuite): Make sure autotest.m4f is up-to-date before using it.
7642 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
7644         * lib/autotest/general.m4 (AT_INIT): Don't create a regular
7645         expression of unbounded size when processing the --list
7646         option.  This runs afoul of a limit of 399 bytes per regular
7647         expression on AIX.  Problem reported by Ralf Wildenhues.
7649 2005-06-01  Paul Eggert  <eggert@cs.ucla.edu>
7651         * NEWS: Note yesterday's changes to AC_SUBST and AC_SUBST_FILE.
7652         * doc/autoconf.texi (Particular Headers): Reword example
7653         for multiline stdbool replacement.
7654         (Setting Output Variables): Reword text a bit.  Don't
7655         give all the details about |#_!!_#|.
7656         Reword description of line replacement.
7658 2005-05-31  Dan Manthey  <dan_manthey@partech.com>
7660         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES): Output variables may
7661         now contain newlines, and substituted files must be referenced on
7662         a line alone; the sed scripts to substitute them are now very
7663         different.
7664         (_AC_SED_CMD_LIMIT): Added; single place to store limit on how many
7665         commands can be put in a sed script portably.
7666         * doc/autoconf.texi (Setting Output Variables): Document above
7667         changes.  (Particular Header Checks) <AC_HEADER_STDBOOL>: Give exaple
7668         use of multiline substitution.
7669         * tests/torture.at: No longer expect substitution of newline to fail.
7671 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
7673         * lib/m4sugar/m4sh.m4 (_AS_SHELL_FN_WORK): Fix diagnostics.
7674         From Ralf Menzel (trivial change).
7676 2005-05-25  Paul Eggert  <eggert@cs.ucla.edu>
7678         * tests/local.at: Don't attempt to check for negated character
7679         classes in shell scripts.  The test was too brittle.
7681 2005-05-25  Stepan Kasal  <kasal@ucw.cz>
7683         * bin/autoconf.as: Don't use "shift 2"; it's not portable enough.
7684         * doc/autoconf.texi (Limitations of Builtins): Document this
7685           limitation.
7687 2005-05-24  Stepan Kasal  <kasal@ucw.cz>
7689         * lib/m4sugar/m4sh.m4 (_AS_ECHO_LOG): New macro to factor out
7690           common code; used in many places in the tree.
7691         (AS_ESCAPE): Make the pattern a bit simpler; use \& insetad of \1.
7692         (_AS_ECHO_UNQUOTED): Move the macro lower; no code change.
7694         * lib/m4sugar/m4sugar.m4 (m4_ifset): Use m4_ifval.
7696         * lib/autoconf/general.m4 (_AC_INIT_SRCDIR): Merge the two error
7697           messages when ac_unique_file is not found.
7698         (AC_CONFIG_MACRO_DIR): Simplify the `if' at the end.
7699         (AC_MSG_CHECKING, AC_MSG_RESULT): Put braces around the two echo
7700           commands, for consistency with AC_MSG_ERROR and such.
7702         * bin/autoconf.as: Make more use of "shift 2" in option processing.
7704         * bin/Makefile.am: Merge the two rules for creating scripts.
7706 2005-05-23  Stepan Kasal  <kasal@ucw.cz>
7708         * lib/autoconf/general.m4 (AC_MSG_RESULT_UNQUOTED): Make
7709         obsolete; it was never documented.
7710         (AC_CACHE_CHECK): Use AC_MSG_RESULT instead.
7712 2005-05-20  Stepan Kasal  <kasal@ucw.cz>
7714         * NEWS: @top_builddir@ is now a dirname, ac_top_builddir will follow.
7715         * lib/autoconf/status.m4 (_AC_SRCDIRS): Rename ...
7716         (ac_top_builddir): ... this ...
7717         (ac_top_build_prefix): ... to this; the old name is also kept, for
7718           backward compatibility.
7719         (ac_top_builddir_sub): New variable, without the trailing slash,
7720           always nonempty.
7721         (_AC_OUTPUT_FILES): s/@top_builddir@/$ac_top_builddir_sub/
7722         * doc/autoconf.texi (Configuration Actions): Rename
7723           ac_top_builddir to ac_top_build_prefix.
7724         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): Rename
7725           at_top_builddir to at_top_build_prefix.
7726         * lib/autotest/general.m4 (AT_INIT): Likewise.
7728 2005-05-20  Stepan Kasal  <kasal@ucw.cz>
7730         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Simplify the init
7731           of confdefs.h .
7733 2005-05-17  Stepan Kasal  <kasal@ucw.cz>
7735         * lib/m4sugar/m4sugar.m4 (m4_text_wrap): Don't m4_quote the second
7736           argument to m4_foreach.  I guess it was necessary in the past,
7737           but I think it's a no-op now.
7739 2005-05-17  Stepan Kasal  <kasal@ucw.cz>
7741         * lib/autoconf/general.m4 (_AC_INIT_HELP): Merge two consecutive
7742           ``cat <<_ACEOF'' commands to one.
7743         (_AC_CANONICAL_SPLIT): Use expr, not ``echo|sed.''
7744         * lib/autoconf/status.m4: On various places, use expr instead of
7745           ``echo|sed.''
7746         (_AC_CONFIG_SPLIT, _AC_CONFIG_SPLIT_SOURCE_DEST):
7747         (_AC_CONFIG_SPLIT_FILE_IN): New macros, to factor out common code.
7748         * lib/autotest/general.m4 (AT_INIT): Use expr to get the numbers from
7749           a range.
7750         * tests/local.at (AT_CHECK_SHELL_SYNTAX): Use awk to search for
7751           the wrong patterns between ``case'' and ``esac.''  The previous
7752           code had false positives.
7754 2005-05-14  Alexandre Duret-Lutz  <adl@gnu.org>
7756         * lib/autoconf/functions.m4 (_AC_LIBOBJ_ALLOCA): Prepend ${LIBOBJDIR},
7757         as on 2005-05-02.
7758         * doc/autoconf.texi (Particular Functions) <AC_FUNC_ALLOCA>:
7759         Mention LIBOBJDIR.
7761 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
7763         * AUTHORS, BUGS, COPYING, ChangeLog, ChangeLog.0, ChangeLog.1,
7764         ChangeLog.2, GNUmakefile, Makefile.am, Makefile.cfg,
7765         Makefile.maint, NEWS, README, README-alpha, TODO, configure.ac,
7766         bin/Makefile.am, bin/autoconf.as, bin/autoheader.in,
7767         bin/autom4te.in, bin/autoreconf.in, bin/autoscan.in,
7768         bin/autoupdate.in, bin/ifnames.in, config/Makefile.am,
7769         config/config.guess, config/config.sub, config/elisp-comp,
7770         config/m4.m4, config/mdate-sh, config/missing, config/texinfo.tex,
7771         doc/Makefile.am, doc/fdl.texi, lib/Makefile.am, lib/autom4te.in,
7772         lib/freeze.mk, lib/Autom4te/C4che.pm, lib/Autom4te/ChannelDefs.pm,
7773         lib/Autom4te/Channels.pm, lib/Autom4te/Configure_ac.pm,
7774         lib/Autom4te/FileUtils.pm, lib/Autom4te/General.pm,
7775         lib/Autom4te/Request.pm, lib/Autom4te/Struct.pm,
7776         lib/Autom4te/XFile.pm, lib/autoconf/Makefile.am,
7777         lib/autoconf/autoconf.m4, lib/autoconf/autoheader.m4,
7778         lib/autoconf/autoscan.m4, lib/autoconf/autotest.m4,
7779         lib/autoconf/autoupdate.m4, lib/autoconf/c.m4,
7780         lib/autoconf/fortran.m4, lib/autoconf/functions.m4,
7781         lib/autoconf/general.m4, lib/autoconf/headers.m4,
7782         lib/autoconf/lang.m4, lib/autoconf/libs.m4,
7783         lib/autoconf/oldnames.m4, lib/autoconf/programs.m4,
7784         lib/autoconf/specific.m4, lib/autoconf/status.m4,
7785         lib/autoconf/types.m4, lib/autoscan/Makefile.am,
7786         lib/autoscan/autoscan.list, lib/autoscan/autoscan.pre,
7787         lib/autotest/Makefile.am, lib/autotest/autotest.m4,
7788         lib/autotest/general.m4, lib/emacs/Makefile.am,
7789         lib/emacs/autoconf-mode.el, lib/emacs/autotest-mode.el,
7790         lib/m4sugar/Makefile.am, lib/m4sugar/m4sh.m4,
7791         lib/m4sugar/m4sugar.m4, man/Makefile.am, tests/Makefile.am,
7792         tests/atlocal.in, tests/autotest.at, tests/base.at, tests/c.at,
7793         tests/compile.at, tests/foreign.at, tests/fortran.at,
7794         tests/local.at, tests/m4sh.at, tests/m4sugar.at, tests/mktests.sh,
7795         tests/semantics.at, tests/suite.at, tests/tools.at,
7796         tests/torture.at, tests/wrapper.as:
7797         Update FSF postal mail address.
7799 2005-05-13  Stepan Kasal  <kasal@ucw.cz>
7801         * lib/autoconf/general.m4 (AC_CONFIG_LIBOBJ_DIR): Remove the broken
7802           check.
7803         * lib/m4sugar/m4sugar.m4 (m4_bmatch): Halt with error if we don't get
7804           enough arguments, similarly as in m4_bpatsubsts.
7806 2005-05-12  Stepan Kasal  <kasal@ucw.cz>
7808         * lib/autoconf/status.m4 (_AC_SRCDIRS): Simplify the computation
7809           of absolute paths.
7811 2005-05-11  Stepan Kasal  <kasal@ucw.cz>
7813         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ARGS): Make the check
7814           for absolute directory names in one loop.
7815         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Handle
7816           abbreviations of --version and --debug.
7818 2005-05-10  Paul Eggert  <eggert@cs.ucla.edu>
7820         * doc/autoconf.texi (Autoconf Language): Be more precise about
7821         quoting rules.  Problems noted by Stepan Kasal.
7822         Also, throughout this document, be more careful about white space.
7823         "blank", "white space", and "space" all have different meanings
7824         and we should be careful to say what we mean.
7826 2005-05-05  Paul Eggert  <eggert@cs.ucla.edu>
7828         Fix C++ related problems reported by Werner Lemberg.
7829         * doc/autoconf.texi (C++ Compiler): Mention .cpp extension.
7830         * lib/autoconf/c.m4 (AC_LANG(C++)): Set ac_ext to .cpp, not .cc.
7831         * lib/autoconf/types.m4 (AC_TYPE_SIGNAL): Simplify test, to
7832         avoid problems with C++ and throw.
7833         * tests/compile.at: .cpp, not .cc.
7835         * tests/semantics.at: Prepend LIBOBJDIR, as per 2005-05-02 change.
7837 2005-05-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7839         * doc/autoconf.texi (Generic Functions): Typos.
7841 2005-05-02  Gary V. Vaughan  <gary@gnu.org>
7843         * lib/autoconf/general.m4 (_AC_LIBOBJS_NORMALIZE): Prepend each
7844         object named in LIBOBJS and LTLIBOBJS with the ${LIBOBJDIR}, as
7845         set by latest automake.
7847 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
7849         * doc/autoconf.texi (Limitations of Usual Tools): "expr '' \| ''"
7850         outputs 0 on GNU/Linux these days.
7852 2005-04-29  Paul Eggert  <eggert@cs.ucla.edu>
7854         * doc/autoconf.texi (Autoconf Language): Add more description
7855         about quoting heuristics.
7856         (Limitations of Builtins): Describe "set -" problems.
7858 2005-04-29  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7860         * lib/autotest/general.m4 (AT_KEYWORDS): Separate by space,
7861         not newline.
7863         * doc/autoconf.texi (External Software): Replace AC_DEFINE_UNQUOTED
7864         by AC_DEFINE; it was a mistake.
7865         From bug reported against libtool by Dalibor Topic <robilad@kaffe.org>.
7867 2005-04-25  Stepan Kasal  <kasal@ucw.cz>
7869         * lib/autoconf/status.m4 (_AC_OUTPUT_HEADERS): A tiny optimization.
7871 2005-04-22  Stepan Kasal  <kasal@ucw.cz>
7873         * doc/autoconf.texi (External Software): Quadrigraphs are not
7874           processed correctly in AS_HELP_STRING; avoid this in the examples.
7875         * lib/m4sugar/m4sh.m4 (AS_HELP_STRING): Add a FIXME about quadrigraphs.
7876         * lib/m4sugar/m4sugar.m4 (m4_text_wrap): Likewise; and rephrase the
7877           comment and reduce m4_default([foo], []) to [foo].
7878         (m4_strip): Update the explanation.
7880 2005-04-19  Paul Eggert  <eggert@cs.ucla.edu>
7882         * lib/autoconf/general.m4 (_AC_INIT_PREPARE, _AC_RUN_IFELSE):
7883         Remove core.conftest.* too; it's generated by Tru64 5.1.
7884         Problem reported by Jennis Pruett.
7885         * lib/autoconf/functions.m4
7886         (AC_FUNC_SETVBUF_REVERSED, AC_FUNC_UTIME_NULL):
7887         Don't bother to remove core files; AC_RUN_IFELSE should do that
7888         for you.
7890 2005-04-19  Stepan Kasal  <kasal@ucw.cz>
7892         * lib/m4sugar/m4sugar.m4 (m4_bpatsubsts): Add the b- to comment, too.
7894 2005-04-19  Alexandre Duret-Lutz  <adl@gnu.org>
7896         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ARGS): Handle --docdir.
7897         Report from Horst Wente.
7899 2005-04-15  Stepan Kasal  <kasal@ucw.cz>
7901         * lib/autoconf/general.m4 (_AC_ARG_VAR_VALIDATE): Fixed a typo in
7902           the comment.
7904 2005-04-14  Gregorio Guidi  <greg_g@gentoo.org>
7906         * doc/autoconf.texi (External Software, Package Options): Add
7907           examples showing how to implement --with-* and --enable-* options.
7909 2005-04-13  Paul Eggert  <eggert@cs.ucla.edu>
7911         * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): Look for configure.ac
7912         as well as configure.in.  Problem reported by Gregorio Guidi.
7914 2005-04-10  Paul Eggert  <eggert@cs.ucla.edu>
7916         * doc/autoconf.texi (Particular Functions): Use gnulib's current
7917         pattern for alloca snippet.
7919 2005-04-04  Stepan Kasal  <kasal@ucw.cz>
7921         * lib/autotest/general.m4 (_AT_DECIDE_TRACEABLE): Fix a typo.
7923 2005-04-01  Stepan Kasal  <kasal@ucw.cz>
7925         * doc/autoconf.texi (Generic Programs): Fix a typo.
7927 2005-04-01  Paul Eggert  <eggert@cs.ucla.edu>
7929         * lib/autotest/general.m4 (AT_INIT): Don't assume that "date +%s"
7930         fails if %s isn't supported.  Problem reported by Ralf Wildenhues.
7932 2005-03-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7934         * lib/autoconf/fortran.m4 (_AC_FC_LIBRARY_LDFLAGS):
7935         Merge `-z option' as well for the benefit of Solaris link flags.  Pass
7936         whole-archive (-zallextract, -zdefaultextract) options in the hope of
7937         unique libraries, for the Sun Fortran 95 8.0 compiler.  Bug reported
7938         against Libtool by Yury Puhalsky <pooh@cryptopro.ru>.
7940 2005-03-22  Paul Eggert  <eggert@cs.ucla.edu>
7942         * NEWS: The configure command now warns you if you attempt to use
7943         a directory whose name contains a special character like space,
7944         newline, or "\".
7945         * doc/autoconf.texi (Installation Directory Variables): Allow
7946         "," in file names.  Do not use \@; it's not a portable regexp.
7947         * bin/Makefile.am (edit): Likewise.
7948         * lib/Makefile.am (edit): Likewise.
7949         * tests/Makefile.am (edit): Likewise.
7950         * tests/semantics.at: Likewise.
7951         * tests/torture.at: Likewise.
7952         * lib/autoconf/general.m4 (AC_ARG_PROGRAM): Likewise.
7953         * lib/autoconf/status.m4 (_AC_SRCDIRS): Likewise.
7954         * doc/autoconf.texi (File System Conventions): Warn about
7955         unportable file names.
7956         * lib/autoconf/general.m4 (_AC_INIT_DIRCHECK): New macro.
7957         (AC_INIT): Use it.
7958         (_AC_INIT_SRCDIR): Use ac_pwd rather than invoking pwd.
7959         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Propagate
7960         ac_pwd, and quote srcdir.
7961         * lib/autotest/general.m4 (AT_INIT): Quote file name args.
7963         * doc/autoconf.texi: Fix some systematic formatting problems.
7964         ".)"  needs a following @: if not at the end of a sentence, and
7965         similarly for "!)".  "etc." should be preceded by a comma.
7966         "n-th" -> "@var{n}th".  pdksh is still buggy, so update its date.
7968 2005-03-22  Bruno Haible  <bruno@clisp.org>
7970         * doc/autoconf.texi (Input): Mention that AC_CONFIG_AUX_DIR's
7971         argument is often called 'build-aux'.
7973 2005-03-07  Stepan Kasal  <kasal@ucw.cz>
7975         * doc/autoconf.texi (Quotation Rule Of Thumb): Mention that the
7976           macro AC_TRY_LINK is obsolete.
7977         (Installation Directory Variables): Change `AC_OUTPUT_FILES' to
7978           `AC_CONFIG_FILES'.
7980 2005-02-24  Stepan Kasal  <kasal@ucw.cz>
7982         * lib/autoconf/c.m4 (AC_PROG_CC): Be more careful to skip
7983           `/usr/ucb/cc'; use `cl.exe' to distinguish the MS compiler
7984           from a Common Lisp's `cl'.
7985         (AC_PROG_CXX): Behave according to the documentation: don't
7986           search for $ac_tool_prefix$CCC and $CCC, just set CXX=$CCC;
7987           make the variable CCC precious; use `cl.exe', not `cl'.
7989 2005-02-23  Paul Eggert  <eggert@cs.ucla.edu>
7990             Alexandre Duret-Lutz  <adl@gnu.org>
7992         * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS): Redirect stdin from
7993         /dev/null, as "configure" shouldn't read stdin, and this insulates
7994         us from problems (e.g., when testing for "cl").  Also, do this
7995         redirection before invoking "hostname" or "uname", and keep the
7996         original input stream available via...
7997         (AS_ORIGINAL_STDIN_FD): ... this new macro.
7998         (_AC_PREPROC_IFELSE, _AC_COMPILE_IFELSE, _AC_LINK_IFELSE): Don't
7999         bother with "</dev/null" since it's now done at the top of
8000         'configure'.
8001         * lib/autoconf/c.m4 (AC_PROG_CC, AC_PROG_CXX): Likewise.
8002         * lib/autoconf/fortran.m4 (_AC_PROG_FC): Likewise.
8003         * lib/autoconf/programs.m4 (_AC_PATH_PROG_FLAVOR_GNU): Likewise.
8004         * doc/autoconf.texi (File Descriptor Macros): New section.
8005         (Printing Messages): Mention it.
8006         * tests/base.at (Input/Output): New test.
8008 2005-02-23  Paul Eggert  <eggert@cs.ucla.edu>
8010         * lib/m4sugar/m4sh.m4 (_AS_ECHO_N_PREPARE): Don't set ECHO_C to
8011         newline if neither \c nor -n work, as that would output two
8012         newlines.  Prefer -n to \c.  Reported by Stepan Kasal.
8014 2005-02-12  Stepan Kasal  <kasal@ucw.cz>
8016         * lib/m4sugar/m4sh.m4 (AS_IF): Define by m4_defun, not m4_define.
8017         This causes that any required macros inside will get before the if.
8018         * doc/autoconf.texi (autom4te.cache): A typo.
8020 2005-02-12  Paul Eggert  <eggert@cs.ucla.edu>
8022         Undo previous change, except keep the change to
8023         lib/autoconf/programs.m4 that replaced grep with shell
8024         pattern-matching.  This is because net-snmp configure reads stdin.
8025         Reported by Noah Misch.
8027 2005-02-11  Paul Eggert  <eggert@cs.ucla.edu>
8029         * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS): Redirect stdin
8030         from /dev/null, as "configure" shouldn't read stdin, and this
8031         insulates us from problems (e.g., when testing for "cl").
8032         Suggested by Alexandre Duret-Lutz.  Also, do this redirection
8033         before invoking "hostname" or "uname".
8034         (_AC_PREPROC_IFELSE, _AC_COMPILE_IFELSE,
8035         _AC_LINK_IFELSE): Undo previous change, as it's no longer needed.
8036         * lib/autoconf/c.m4 (AC_PROG_CC, AC_PROG_CXX): Don't bother with
8037         "</dev/null" since it's now done at the top of 'configure'.
8038         * lib/autoconf/fortran.m4 (_AC_PROG_FC): Likewise.
8039         * lib/autoconf/programs.m4 (_AC_PATH_PROG_FLAVOR_GNU): Likewise.
8040         Also, replace grep with shell pattern-matching, to save a process.
8042 2005-02-10  Paul Eggert  <eggert@cs.ucla.edu>
8044         * lib/autoconf/general.m4 (_AC_PREPROC_IFELSE, _AC_COMPILE_IFELSE,
8045         _AC_LINK_IFELSE): Redirect stdin to /dev/null, in an attempt to
8046         avoid thinking that Allegro Common Lisp's "cl" command is a C++
8047         compiler.
8049 2005-02-09  Paul Eggert  <eggert@cs.ucla.edu>
8051         * doc/autoconf.texi (Limitations of Usual Tools): Document that
8052         grep -q isn't portable.  Improve grep -s explanation.
8053         Problem reported by Dan Manthey.
8055 2005-02-08  Paul Eggert  <eggert@cs.ucla.edu>
8057         * doc/autoconf.texi (Special Shell Variables): Clarify
8058         PATH_SEPARATOR wording; fix typo in IFS.  Reported by Gary V. Vaughan.
8060 2005-02-07  Paul Eggert  <eggert@cs.ucla.edu>
8062         * doc/autoconf.texi: Use @acronym for DJGPP.
8063         Fix some @code's that should have been @env's, and vice versa.
8064         Sort environment variable names.
8065         Mention that shells no longer inherit IFS.
8066         Don't recommend PATH_SEPARATOR=';' so strongly.
8067         Mention that $RANDOM might expand to the empty string.
8068         "symlink" and "soft link" -> "symbolic link".
8069         Improve mktemp description (reported by Bruno Haible).
8071 2005-02-05  Paul Eggert  <eggert@cs.ucla.edu>
8073         * tests/foreign.at (Libtool): Don't overquote AT_SETUP arg.
8074         * tests/m4sh.at (AS_DIRNAME, AS_BASENAME, AS_MKDIR_P, AS_HELP_STRING):
8075         Likewise.
8076         * tests/semantics.at (AC_C_BIGENDIAN, AC_PATH_PROG & AC_PATH_PROGS):
8077         Likewise.
8079 2005-02-04  Paul Eggert  <eggert@cs.ucla.edu>
8081         * NEWS: Mention AT_COPYRIGHT.
8083         * tests/local.at (AT_CMP): Use diff directly on input files rather
8084         than copying them.
8086         * lib/autoconf/programs.m4 (AC_PROG_SED): Don't look in
8087         /usr/xpg4/bin since that sed dumps core (at least on Solaris 8).
8089 2005-02-04  Noah Misch  <noah@cs.caltech.edu>
8090         and Paul Eggert  <eggert@cs.ucla.edu>
8092         * tests/autotest.at (Empty test suite): New test.
8093         * tests/torture.at (Substitute and define special characters)
8094         (Substitute a 2000-byte string, Define to a 2000-byte string)
8095         (Substitute a newline, Define a newline): New tests.
8097 2005-02-04  Noah Misch  <noah@cs.caltech.edu>
8099         * lib/m4sugar/m4sugar.m4 (m4_re_string, m4_re_word): Revert 2002-03-04.
8100         * tests/local.at (AT_CHECK_M4SUGAR): Add `m4sugar' to keywords.
8101         (AT_CHECK_ENV): Ignore LTLIBOBJS, FC variables, EGREP, FGREP, and SED.
8102         * tests/m4sugar.at (AT_CHECK_M4SUGAR_TEXT, AT_CHECK_M4RE): New macros.
8103         (Standard regular expressions): New test.
8104         (m4_warn, m4_require: circular dependencies, m4_text_wrap): Strip
8105         excess test name quoting.
8106         * tests/semantics.at (AC_CHECK_HEADERS_OLD, AC_CHECK_HEADERS_NEW): Pass
8107         CPPFLAGS to `configure' instead of setting it in `configure'.
8109         * lib/m4sugar/m4sh.m4 (AS_UNAME): Try only /usr/bin/hostinfo, not
8110         any `hostinfo' in $PATH, since hostinfo.exe is a popular file name
8111         on some platforms.
8113         * lib/autoconf/fortran.m4 (AC_LANG(Fortran), AC_FC_SRCEXT):
8114         s/FC_SRCEXT/ac_fc_srcext/; s/FCFLAGS_SRCEXT/ac_fcflags_srcext/.
8116         * tests/local.at (AT_CMP): New macro.
8117         (AT_DATA_AUTOCONF): Do not call AC_PROG_GREP.
8118         (AC_SAVE_STATE): Move environment grep...
8119         (AT_CHECK_ENV): to here.  Filter out `'$''.  Use AT_CMP.
8120         (AT_CONFIG_CMP): New macro.
8121         (AT_CHECK_MACRO): Run `configure' twice with cache and compare results.
8122         * tests/c.at (Extensions): Do not exit early.
8123         * tests/atlocal.in: Inherit $GREP.
8125         * lib/autoconf/c.m4 (_AC_C_STD_TRY): New macro.
8126         (_AC_PROG_CC_C89, _AC_PROG_CC_C99): Use it.
8128         * lib/autoconf/general.m4 (_AC_INIT_COPYRIGHT): Update for 2005.
8129         (AC_COPYRIGHT): Factor header comment portion out and move into...
8130         * lib/m4sugar/m4sh.m4 (AS_COPYRIGHT): This.
8131         * lib/autotest/general.at (AT_COPYRIGHT): New macro.
8132         (AT_INIT): Add Autotest copyright notice.  Display copyright notices in
8133         --version output.
8134         * tests/local.at: Add Autoconf test suite copyright notice.
8135         * doc/autoconf.texi (Writing testsuite.at): Document AT_COPYRIGHT.
8137 2005-02-04  Bruno Haible  <bruno@clisp.org>
8138         and Paul Eggert  <eggert@cs.ucla.edu>
8140         * doc/autoconf.texi (Limitations of Usual Tools): New mkstemp entry.
8142 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
8144         * lib/m4sugar/m4sugar.m4 (m4_re_escape): Escape ?, ^, \, $ too;
8145         this fixes a bug tickled by the AT_CAPTURE_FILE change noted below.
8147         Try not to generated lines of unlimited length, as POSIX places a
8148         2047-byte limit on line length of portable text files.
8149         * lib/autoconf/general.m4 (AC_SUBST, AC_SUBST_FILE):
8150         Use newline as a separator, not space.
8151         * lib/autotest/general.m4 (AT_TESTED, AT_KEYWORDS): Likewise.
8152         (AT_CAPTURE_FILE): Use space-backslash-newline as a separator, not
8153         space.
8155 2005-02-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8157         * lib/m4sugar/m4sh.m4 (_AS_SHELL_FN_WORK): Move func_* to
8158         as_func_*.  Add test to check whether positional parameters
8159         are restored after function return.
8161 2005-02-02  Paul Eggert  <eggert@cs.ucla.edu>
8163         * doc/autoconf.texi (Special Shell Variables): Mention _,
8164         BIN_SH, DUALCASE.  Say that variables other than "status" are safe
8165         if they contain a lower-case letter.  The DUALCASE problem was
8166         reported by Ralf Wildenhues.
8168         * bin/autoconf.as: Don't exit with status 0 after write failure
8169         with --help or --version.
8170         * lib/autoconf/general.m4 (_AC_INIT_HELP, _AC_INIT_VERSION): Likewise.
8171         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Likewise.
8173 2005-02-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8175         * doc/autoconf.texi (Limitations of Usual Tools):
8176         Unicos 9 sed limitations.
8177         * lib/autoconf/fortran.m4 (_AC_PROG_FC): Try cf77 before fort77
8178         to get the option-enhanced interface on older Crays.  Try ftn for
8179         Fortran 95 (newer Crays).
8181 2005-02-01  Paul Eggert  <eggert@cs.ucla.edu>
8183         * man/Makefile.am (.x.1): Go back to the simple solution, but take
8184         care to echo the commands, so the user knows what's going on.
8185         Modified from a suggestion by Stepan Kasal.
8187         * doc/autoconf.texi (autoreconf Invocation): Mention autopoint,
8188         with a cross reference.  Derived from a suggestion by Bruce Korb.
8190 2005-01-31  Paul Eggert  <eggert@cs.ucla.edu>
8192         * doc/autoconf.texi (config.status Invocation): Warn about
8193         discrepancy between CONFIG_SHELL and shell used to invoke 'configure'.
8194         * doc/install.texi (Defining Variables): Likewise.
8195         Based on a proposed patch by Ralf Wildenhues.
8197         * man/Makefile.am (.x.1): Make sure the required generated files
8198         are up to date.  Problem and original solution proposed by Stepan Kasal.
8199         $(dist_man_MANS:.1=-bin-prereq), $(dist_man_MANS:.1=-tests-prereq),
8200         implicit-man-prerequisites): New rules, used by the above.
8202         * doc/make-stds.texi, doc/standards.texi: Sync from gnulib.
8203         * config/config.guess, config/config.sub, config/install-sh: Likewise.
8204         * config/missing, config/texinfo.tex: Likewise.
8206 2005-01-29  Stepan Kasal  <kasal@ucw.cz>
8208         Simplify the implementation of m4_require (a.k.a. AC_REQUIRE).
8209         Update the long comment explaining it.
8211         m4_require no longer writes an ``is required by'' line to the
8212         execution stack.  It contains only one bit of non-redundant
8213         information: that the macro was required, not called.  And even
8214         this bit is useless in most situations: have you ever met a macro
8215         which both calls and requires the same macro?
8217         * lib/m4sugar/m4sugar.m4 (_m4_defun_pro): Don't push a diversion...
8218         (_m4_defun_pro_outer): ... only via this macro, for the outermost
8219           macro.
8220         (_m4_defun_epi, _m4_defun_epi_outer): Complementarily.
8221         (m4_expansion_stack_pop): Remove the misplaced comment.
8222         (m4_require): Don't put the ``is required by'' line to the
8223           execution stack; slightly improve the out-of-a-defun error message.
8224         (_m4_divert_grow): New macro, counter for the temporary diversions.
8225         (_m4_require_call): Use it.
8226         * tests/m4sugar.at (m4_require): Expect output without the
8227           ``is required by'' messages.
8229 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
8231         * doc/autoconf.texi (Limitations of Usual Tools): Recommend X
8232         rather than x for expr.
8234         * lib/autoconf/lang.m4 (_AC_COMPILER_OBJEXT): Avoid subshells when
8235         this is safe.
8236         * lib/autoconf/programs.m4 (AC_PROG_EGREP, AC_PROG_FGREP): Likewise.
8237         * lib/autoconf/specific.m4 (AC_SYS_LONG_FILE_NAMES): Likewise.
8238         * lib/autotest/general.m4 (AT_INIT): Likewise.
8239         * lib/m4sugar/m4sh.m4 (_AS_LINENO_WORKS): Likewise.
8240         * tests/mktests.sh: Likewise.
8242 2005-01-27  Akim Demaille  <akim@epita.fr>
8244         Have autoheader honor --force.
8246         * doc/make-stds.texi, doc/standards.texi: Update from masters.
8247         * lib/Autom4te/Channels.pm, lib/Autom4te/Configure_ac.pm
8248         * lib/Autom4te/FileUtils.pm, lib/Autom4te/XFile.pm: Update
8249         from masters, so that FileUtils.pm's update_file provide --force
8250         support.
8251         * bin/autoheader.in: Pass $force to update_file so that
8252         config.h.in is always recreated when --force.
8254 2005-01-24  Stepan Kasal  <kasal@ucw.cz>
8256         * doc/autoconf.texi (Introduction): Update Peter Simons' address.
8258 2005-01-21  Paul Eggert  <eggert@cs.ucla.edu>
8260         * doc/autoconf.texi (Limitations of Builtins): Clarify that
8261         "if test ! -d foo; ..." is portable.  Suggested by Stepan Kasal.
8263 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
8265         * doc/autoconf.texi (Shell Substitutions): Fix typo in case statement.
8266         Warn about newline stripping in `` and $().  Update Solaris
8267         version to 9.
8268         (Limitations of Builtins): Use expr "X...", not expr "x...", as
8269         X insulates us from future changes to Posix.
8270         (Limitations of Usual Tools): For AS_DIRNAME, warn about newline
8271         stripping.
8273 2005-01-19  Stepan Kasal  <kasal@ucw.cz>
8275         * doc/autoconf.texi (Defining Symbols): Delete the false comment that
8276           you cannot use AC_DEFINE to define macros containing `[' or `]'.
8278 2005-01-13  Paul Eggert  <eggert@cs.ucla.edu>
8280         * doc/autoconf.texi (Limitations of Usual Tools): Document bug
8281         in Solaris 8 join.  Problem reported by Tomohiro Suzuki on
8282         bug-tar mailing list.
8284 2005-01-05  Stepan Kasal  <kasal@ucw.cz>
8286         * lib/m4sugar/m4sugar.m4 (m4_copy): Fix the explanation.
8288 2005-01-05  Paul Eggert  <eggert@cs.ucla.edu>
8290         * lib/autoconf/c.m4 (AC_LANG_INT_SAVE(C)): Declare longval and
8291         ulongval to be static, to avoid unwanted GCC warning.  Problem
8292         reported by Michael Jennings via Daniel Reed; see
8293         <https://bugzilla.redhat.com/beta/show_bug.cgi?id=143852>.
8295 2005-01-05  Alexandre Duret-Lutz  <adl@gnu.org>
8297         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ARGS): Define datarootdir,
8298         docdir, htmldir, dvidir, pdfdir, psdir, and localdir.  Update
8299         datadir, infodir, and mandir.  Adjust argument parsing code.
8300         (_AC_INIT_HELP): Update help text.
8301         * doc/autoconf.texi (Installation Directory Variables): Document
8302         new variables.
8304 2005-01-04  Noah Misch  <noah@cs.caltech.edu>
8306         * lib/autoconf/programs.m4 (AC_PROG_MAKE_SET): If the Make program does
8307         not seem to work, assume it does set $(MAKE).
8308         * doc/autoconf.texi (AC_PROG_MAKE_SET): Update.
8310 2005-01-03  Stepan Kasal  <kasal@ucw.cz>
8312         * lib/m4sugar/m4sh.m4 (AS_REQUIRE): Add a comment about nesting.
8314 2005-01-03  Stepan Kasal  <kasal@ucw.cz>
8316         A cleanup of the diversion support in m4sugar.
8318         * lib/m4sugar/m4sugar.m4 (_m4_divert): A typo in description.
8319         (_m4_divert_n_stack): New macro; the expansion is
8320           <newline>m4_divert_stack, if m4_divert_stack is defined, and void
8321           otherwise.
8322         (m4_divert, m4_divert_push, m4_divert_pop, m4_init): Use it.
8323         (m4_divert_push, m4_divert_pop, _m4_defun_epi): Don't expand the word
8324           stored in _m4_divert_diversion or _m4_divert_dump.
8325         (m4_divert_pop): When the parameter is given, compare the symbolic
8326           name with the last diversion pushed on the stack.  Previously, the
8327           current diversion was compared with the numeric value of the
8328           diversion given as the parameter.
8329         (m4_require): If the macro hasn't been expanded yet, call ...
8330         (_m4_require_call): this new macro.
8332 2005-01-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8334         * lib/autoconf/general.m4 (_AC_INIT_PREPARE, _AC_ARG_VAR_VALIDATE):
8335         Workarounds for documented `case' limitations.
8337 2005-01-03  Paul Eggert  <eggert@cs.ucla.edu>
8339         * doc/autoconf.texi (Limitations of Usual Tools): Warn about
8340         sed 'command1;command2'.  Problem reported by Ralf Wildenhues.
8342 2005-01-02  Paul Eggert  <eggert@cs.ucla.edu>
8344         * bin/autoconf.as, bin/autoheader.in, bin/autom4te.in,
8345         bin/autoreconf.in, bin/autoscan.in, bin/autoupdate.in,
8346         bin/ifnames.in, tests/mktests.sh: Update copyright date to 2005.
8348         Patch from Roger Leigh (with some minor changes) as follows:
8349         * NEWS: New macros AC_PROG_CC_C89, AC_PROG_CC_C99.
8350         Resurrect AC_PROG_CC_STDC.
8351         * doc/autoconf.texi (C Compiler): Add AC_PROG_CC_STDC,
8352         AC_PROG_CC_C89, AC_PROG_CC_C99.
8353         (Obsolete Macros): Remove AC_PROG_CC_STDC; it's no longer obsolete.
8354         * lib/autoconf/c.m4 (_AC_PROG_CC_C89, _AC_PROG_CC_C99, AC_PROG_CC_C89,
8355         AC_PROG_CC_C99): New macros.
8356         (AC_PROG_CC_STDC): Use them.
8357         (_AC_PROG_CC_STDC): Remove.
8358         (AC_C_PROTOTYPES): Use ac_cv_prog_cc_c89, not ac_cv_prog_cc_stdc.
8359         * THANKS: Add Roger Leigh.
8361 2004-12-30  Noah Misch  <noah@cs.caltech.edu>
8363         * bin/autoreconf.in (autoreconf_current_directory):  AM_INIT_AUTOMAKE
8364         signals that the package uses Automake; a `Makefile.am' is typical but
8365         not essential.  Reported by Magnus Therning.
8366         * tests/torture.at (autoreconf.): New banner.
8367         (autoreconf and non-AC configure): Rename to `Non-Autoconf
8368         AC_CONFIG_SUBDIRS'.
8369         (autoreconf an empty directory): Rename to `Empty directory'.
8370         (Unusual Automake input files): New test.
8372 2004-12-30  Noah Misch  <noah@cs.caltech.edu>
8374         * lib/autotest/general.m4 (AT_CAPTURE_FILE): New macro.
8375         (AT_SETUP): Clear AT_capture_files.
8376         (_AT_CHECK): On failure, log each of AT_capture_files.  Fix comment.
8377         (AT_KEYWORDS): Fix comment typo.
8378         * tests/autotest.at (AT_CHECK_AT): Use AT_CAPTURE_FILE.
8379         * tests/local.at (AT_CHECK_CONFIGURE): Use AT_CAPTURE_FILE.
8380         * doc/autoconf.texi (Writing testsuite.at): Document AT_CAPTURE_FILE.
8382 2004-12-29  Albert Chin-A-Young  <china@thewrittenword.com>
8384         * lib/autoconf/programs.m4 (_AC_FEATURE_CHECK_LENGTH):
8385         If the variable to set is already set, set ac_cv_path_$1
8386         to the preset value so caller can assume ac_cv_path_$1
8387         is available.  (trivial change)
8389 2004-12-27  Noah Misch  <noah@cs.caltech.edu>
8391         * BUGS (Minor Problems): Warn about makefile limitations.
8392         * Makefile.am: Find and update `INSTALL' in $(srcdir).
8393         * man/Makefile.am: Find and update manual pages in $(srcdir).
8395 2004-12-24  Eric Blake  <ebb9@byu.net>
8397         * lib/m4sugar/m4sh.m4 (_AS_DETECT_BETTER_SHELL): Test candidate
8398         shells in subshell, to avoid noise from ash.  (trivial change)
8400 2004-12-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8402         * doc/autoconf.texi (Limitations of Builtins) <case>: Mention
8403         problems with SunOS ksh and backslash escaping, Bourne shells and
8404         closing brackets (both within character classes).  Bug reported
8405         against Libtool by Alexander Kurz <alexander.kurz@qsc.de>.
8406         <read>: New entry.  Mention non-availability of -r.
8408 2004-12-21  Akim Demaille  <akim@epita.fr>
8410         * lib/autotest/general.m4 (AT_LINE): Don't add srcdir here, to
8411         avoid cluttering displayed messages.  Rather, prepend srcdir where
8412         AT_LINE is used for log files.
8414 2004-12-21  Stepan Kasal  <kasal@ucw.cz>
8416         * lib/autoconf/status.m4: Quote ``$tmp'' in many places.
8417         * lib/m4sugar/m4sh.m4 (AS_TMPDIR): Fix the comment, as traps are
8418           no longer part of the macro, quote the occurrence of ``$tmp''.
8419         * doc/autoconf.texi (Forbidden Patterns): Typo.
8421 2004-12-21  Akim Demaille  <akim@epita.fr>
8423         * lib/autotest/general.m4 (AT_INIT): Make sure the "ok" etc. are
8424         separated from the test title by forcing a white space.
8426 2004-12-21  Akim Demaille  <akim@epita.fr>
8428         Enable Emacs navigation within testsuite.log files.
8430         * lib/autotest/general.m4 (AT_CLEANUP): Add an hint for Emacs to
8431         use the compilation mode.
8432         (AT_LINE): Point to the srcdir.
8434 2004-12-19  Noah Misch  <noah@cs.caltech.edu>
8436         * tests/Makefile.am (installcheck-local): Use $(bindir).
8437         (check-local, installcheck-local): Pass TESTSUITEFLAGS.
8438         * doc/autoconf.texi (Making testsuite Scripts): Recommend the same
8439         Makefile.am scheme Autoconf now uses.
8441 2004-12-18  Noah Misch  <noah@cs.caltech.edu>
8443         * lib/m4sugar/m4sugar.m4 (m4_qlen, m4_qdelta): New macros.
8444         * lib/autotest/general.m4 (AT_SETUP): Use m4_qdelta.
8446 2004-12-18  Noah Misch  <noah@cs.caltech.edu>
8448         * lib/autotest/general.m4 (_AT_DECIDE_TRACEABLE): New macro.
8449         (_AT_CHECK): Use it.
8450         * lib/m4sugar/m4sh.m4 (AS_ESCAPE_FOR_EXPAND): Remove.
8451         (AS_ESCAPE): Fix comment.
8452         * tests/autotest.at: Adjust section banner comments.
8453         (AT_CHECK_AT): Accept STATUS and STDERR.
8454         (AT_CHECK_AT_TEST): Likewise.
8455         (Invalid brace-enclosed parameter expansion)
8456         (Multiline command from M4 expansion)
8457         (Double-M4-quoted command): New tests.
8459 2004-12-17  Paul Eggert  <eggert@cs.ucla.edu>
8461         * doc/autoconf.texi: Update GNU FDL version from 1.1 to 1.2.
8463 2004-12-17  Akim Demaille  <akim@epita.fr>
8465         * lib/autoconf/general.m4 (AC_SUBST, AC_SUBST_FILES): Pass $1 to
8466         m4_pattern_allow.
8467         Suggested by Alexandre Duret-Lutz.
8468         * doc/autoconf.texi (Setting Output Variables): Catch up.
8470 2004-12-17  Stepan Kasal  <kasal@ucw.cz>
8472         * lib/m4sugar/m4sh.m4 (_AS_TEST_PREPARE): Fix comment.
8474 2004-12-17  Stepan Kasal  <kasal@ucw.cz>
8476         * lib/autoconf/general.m4 (_AC_LIBOBJ): We can use AC_SUBST/2,
8477           remove the comment which said we cannot.
8479 2004-12-17  Stepan Kasal  <kasal@ucw.cz>
8481         Add a specialized check for resolv.h.  Thanks to Gerrit P. Haase,
8482         Reini Urban and Paul Eggert for reporting the dependencies.
8484         * lib/autoconf/headers.m4 (AC_HEADER_RESOLV): New macro.
8485         * doc/autoconf.texi (AC_HEADER_RESOLV): Document it.
8486         (AC_HEADER_STAT): @cvindex{STAT_MACROS_BROKEN}, not @acindex.
8488 2004-12-17  Stepan Kasal  <kasal@ucw.cz>
8490         * bin/autoscan.in: Open autoscan.log only after ``parse_args'';
8491           so that eg. ``autoscan --help'' doesn't truncate it.
8493 2004-12-15  Nicolas Joly  <njoly@pasteur.fr>
8495         * lib/autoconf/programs.m4 (_AC_FEATURE_CHECK_LENGTH): Remove
8496         generated conftest files.
8498 2004-12-13  Noah Misch  <noah@cs.caltech.edu>
8500         * lib/autotest/general.m4 (_AT_CHECK) [--trace]: Do not enable shell
8501         tracing on commands with possibly-escaped newlines.
8502         * doc/autoconf.texi (Writing testsuite.at): Delete documentation of the
8503         discontinued behavior and its implications.
8504         * tests/autotest.at (BS-newline in command, ^BS-newline in command)
8505         (BSx641-newline in command, BS-BS-newline in command)
8506         (BSx640-newline in command, Newline-CODE-BS-newline in command)
8507         (Single-quote-BS-newline in command)
8508         (Single-quote-newline-BS-newline in command): New tests.
8510 2004-12-13  Stepan Kasal  <kasal@ucw.cz>
8512         * lib/m4sugar/m4sh.m4 (AS_EXECUTABLE_P): Use test -f && test -x
8513           on platforms where it works.
8514         (_AS_TEST_PREPARE): Test for ``test -x''.
8515         (_AS_BROKEN_TEST_PREPARE): Nuke.
8517 2004-12-13  Stepan Kasal  <kasal@ucw.cz>
8519         * lib/m4sugar/m4sh.m4 (AS_TMPDIR): Move the trap commands ...
8520         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): ... here;
8521           give only 4-letter prefix to AS_TMPDIR, comment fixed.
8522         * lib/autoconf/programs.m4 (_AC_PATH_PROG_FEATURE_CHECK): Don't
8523           create the temporary directory.
8524         (_AC_FEATURE_CHECK_LENGTH): Work in current directory.
8526 2004-12-12  Kelley Cook  <kcook@gcc.gnu.org>
8528         * bin/autoheader.in: Exit if no AC_CONFIG_HEADERS was found.
8529         (trivial change)
8531 2004-12-12  Alexandre Duret-Lutz  <adl@gnu.org>
8533         * doc/autoconf.texi (Limitations of Usual Tools) <expr (:)>: Typo.
8535 2004-12-11  Noah Misch  <noah@cs.caltech.edu>
8537         * lib/autotest/general.m4 (_AT_CHECK) [--trace]: Rework a shell pattern
8538         to avoid using a negated character class.  Reported by Nicolas Joly.
8539         * tests/local.at (AT_CHECK_SHELL_SYNTAX): Check for similar constructs.
8541 2004-12-10  Paul Eggert  <eggert@cs.ucla.edu>
8543         * man/Makefile.am (autoconf.1, autoheader.1, autom4te.1, autoreconf.1,
8544         autoscan.1, autoupdate.1, ifnames.1, config.guess.1, config.sub.1):
8545         Don't depend on .x file explicitly, since "make" does that for us.
8546         Suggested by Stepan Kasal.
8548         * bin/Makefile.am (MOSTLYCLEANFILES): Renamed from CLEANFILES.
8549         Add *.tmp.
8550         (autoconf, autoheader, autom4te, autoreconf, autoscan, autoupdate,
8551         ifnames): Factor common code.  And they said it couldn't be done!
8553 2004-12-09  Paul Eggert  <eggert@cs.ucla.edu>
8555         * bin/.cvsignore: Add autoconf.in.
8556         * tests/.cvsignore: Add wrapper.in.
8557         * lib/autotest/general.m4: Escape '$' in case pattern.
8559 2004-12-09  Noah Misch  <noah@cs.caltech.edu>
8561         * man/Makefile.am (autoconf.1): Regenerate when `autoconf.as' changes.
8563         * lib/autotest/general.m4 [--trace] (AT_INIT): Do not `set -v'.
8565         * tests/autotest.at: New file.
8566         * tests/suite.at: Include it.
8567         * tests/Makefile.am: Distribute it.
8569         * lib/autotest/general.m4 [--trace] (_AT_CHECK): Do not enable
8570           shell tracing on a command that could contain multiple lines.
8571         * doc/autoconf.text: Document that fact and its implications.
8572         * lib/m4sugar/m4sh.m4 (AS_ESCAPE_FOR_EXPAND): New macro.
8573         * tests/autotest.at (Multiline backquote command substitution,
8574           Multiline parameter expansion, Literal multiline command,
8575           Multiline parenthetical command substitution): Remove XFAIL.
8577 2004-12-09  Paul Eggert  <eggert@cs.ucla.edu>
8579         * doc/autoconf.texi (Libraries): Clarify problems with AC_CHECK_LIB
8580         and suggest AC_SEARCH_LIBS.  Suggested by Noah Misch and Stepan Kasal.
8582 2004-12-08  Noah Misch  <noah@cs.caltech.edu>
8584         * configure.ac (test suite): Cease to generate wrapper scripts.
8585         * configure: Regenerate.
8586         * lib/freeze.mk (MY_AUTOM4TE): Wrap the uninstalled autom4te directly.
8587         (m4f_dependencies): Adjust accordingly.
8588         * tests/Makefile.am (Wrappers): Generate wrapper scripts.
8589         (wrapper.in): Generate it in the build directory.
8590         (MAINTAINERCLEANFILES): Delete wrapper.in.
8591         (CLEANFILES): Add wrapper.in.
8592         * tests/wrapper.as: Move AS_INIT to very top, preserving copyright in
8593         the output.  Replace each $as_me with a @wrap_program@.
8594         * tests/wrapper.in: Delete it; we always build it.
8596         * bin/Makefile.am (autoconf.in): Generate it in the build directory.
8597         (EXTRA_DIST): Remove autoconf.in.
8598         (CLEANFILES): Add autoconf.in.
8599         (autoconf): Find autoconf.in in the build directory.
8600         * bin/autoconf.in: Delete it; we always build it.
8602 2004-12-08  Noah Misch  <noah@cs.caltech.edu>
8604         * lib/autotest/general.m4 (AT_INIT): Replace a `tr' with a `sed'.  Join
8605         PATH members so as to not prepend an empty element.  Move a comment.
8606         * Makefile.am (SUBDIRS): Build in `tests' last.
8607         * tests/Makefile.am (installcheck-local): Add check-local dependencies.
8609 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
8611         * lib/mdate-sh: Don't use "set - x`$ls_command /`", as zsh mishandles
8612         the spaces inside $ls_command.  Problem reported by Loulou Pouchet in
8613         <http://lists.gnu.org/archive/html/autoconf/2004-12/msg00074.html>.
8614         Don't use "set - x"; plain "set x" is enough, and simplifies debugging.
8616 2004-12-07  Stepan Kasal  <kasal@ucw.cz>
8618         * lib/autoconf/functions.m4 (AC_FUNC_GETMNTENT): Fix typo in previous
8619         patch: extra "-l"s.
8621 2004-12-06  Paul Eggert  <eggert@cs.ucla.edu>
8623         * lib/autoconf/functions.m4 (AC_FUNC_GETMNTENT): Check libc before
8624         looking elsewhere for getmntent.  Problem reported by Mark D. Baushke.
8625         * doc/autoconf.texi (Particular Functions): Mention new behavior.
8627 2004-12-03  Stepan Kasal  <kasal@ucw.cz>
8629         * lib/autoconf/general.m4 (AC_DEFINE, AC_DEFINE_UNQUOTED): Factor
8630           out the common code to ...
8631         (_AC_DEFINE_Q): ... a new macro; simplify the condition about the
8632           value of the #define--default to 1, iff the macro was called
8633           with exactly one parameter.
8635 2004-12-02  Paul Eggert  <eggert@cs.ucla.edu>
8637         * lib/autoconf/functions.m4 (AC_FUNC_MEMCMP): Use
8638         "char c = '\200';" rather than "char c = 0x80;" as the
8639         latter doesn't conform to the strict C standard due to
8640         overflow on signed char hosts.
8642         * lib/autoconf/c.m4 (_AC_PROG_CC_STDC): Prefer -qlanglvl=extc89
8643         to -qlanglvl=ansi.  We don't want to disable extensions.
8645 2004-11-29  Paul Eggert  <eggert@cs.ucla.edu>
8647         * doc/autoconf.texi (Particular Programs): @code{$PATH} -> @env{PATH}.
8648         (Using Autotest, testsuite Scripts, Writing testsuite.at):
8649         Reword slightly to avoid some English-language problems noted
8650         by Ralf Wildenhues in:
8651         http://lists.gnu.org/archive/html/autoconf-patches/2004-11/msg00027.html
8653 2004-11-29  Stepan Kasal  <kasal@ucw.cz>
8655         * NEWS: Add ^L above each release.
8657 2004-11-28  Paul Eggert  <eggert@cs.ucla.edu>
8659         Fix documentation problems reported by Russ Boylan in
8660         <http://lists.gnu.org/archive/html/bug-autoconf/2004-11/msg00056.html>,
8661         along with some nearby cruft.
8662         * doc/autoconf.texi (Libtool): Libtool can be used without
8663         Automake (not without Autoconf).
8664         (Introduction): Mention lists.gnu.org.
8665         * BUGS: Don't mention bugs.gnu.org.
8666         Remove mention of ancient libtool compatibility problem.
8667         * NEWS: Mention that bugs.gnu.org is kaput.
8668         * README: Likewise.  Mention where mailing list archives can be found.
8670 2004-11-28  Stepan Kasal  <kasal@ucw.cz>
8672         * lib/m4sugar/m4sh.m4 (AS_HELP_STRING): A typo in the comment.
8674 2004-11-26  Paul Eggert  <eggert@cs.ucla.edu>
8676         * doc/autoconf.texi (Pretty Help Strings): Go back to
8677         single-quoting assignments to cache variables.
8679 2004-11-23  Stepan Kasal  <kasal@ucw.cz>
8681         * doc/autoconf.texi (Pretty Help Strings): Fix quoting issues
8682         with the examples; fix the bug in MY_ARG_WITH example reported
8683         by Alexandre Duret-Lutz.
8684         * lib/autoconf/general.m4 (AC_ARG_ENABLE, AC_ARG_ENABLE): Enable
8685         expansion of $1 in the comment emitted to configure.
8687 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
8689         * doc/autoconf.texi (Pretty Help Strings): Fix typo
8690         in my editing of the previous patch.  Problem reported
8691         by Alexandre Duret-Lutz.
8693 2004-11-22  Stepan Kasal  <kasal@ucw.cz>
8695         * doc/autoconf.texi (Autoconf Language): Explain that
8696         ``descriptions'' may not be double quotes.
8697         (Quotation Rule Of Thumb): Likewise.
8698         (Pretty Help Strings): Likewise; remove the wrong comment;
8699         simplify the examples and improve their quoting.
8701 2004-11-13  Stepan Kasal  <kasal@ucw.cz>
8703         * lib/autoconf/programs.m4 (_AC_FEATURE_CHECK_LENGTH): Don't check
8704         the $1_found variable, don't test whether the file is executable;
8705         Both things are checked ...
8706         (_AC_PATH_PROG_FEATURE_CHECK): ... here; AS_EXECUTABLE_P replaces
8707         the former ``test -f''.
8708         * lib/m4sugar/m4sh.m4 (_AS_TEST_PREPARE): Fix a typo.
8710 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
8712         * doc/autoconf.texi (Limitations of Usual Tools): Avoid cp -r;
8713         use cp -R instead.
8715 2004-11-10  Derek R. Price  <derek@ximbiot.com>
8717         * doc/autoconf.texi (Limitations of Usual Tools): Note `cp -r'
8718         limitations.  Reorder paragraphs for clarity.
8720 2004-10-11  Paul Eggert  <eggert@cs.ucla.edu>
8722         * doc/autoconf.texi: Standardize spelling of "Posix" (as opposed
8723         to "POSIX" or "@acronym{POSIX}"), and similarly for "DOS
8724         variants", "Unix", and some related minor wording fixups.
8726         (Shellology, Special Shell Variables): Document that the Zsh
8727         problem with NULLCMD was fixed in zsh 3.1.6-dev-18.  Thanks
8728         to Alexandre Duret-Lutz for this info.
8730 2004-10-10  Alexandre Duret-Lutz  <adl@gnu.org>
8732         * doc/autoconf.texi (One-Shot Macros): New node.
8734 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
8736         * doc/autoconf.texi (Function Portability): Fix misdescription
8737         of putenv.  Problem reported by Michael Wardle.
8739 2004-09-22  Paul Eggert  <eggert@cs.ucla.edu>
8741         * doc/autoconf.texi (auindex): New macro.
8742         (AU_DEFUN): Use it to fix the bug when the index contained AC_AU_DEFUN.
8743         Problem reported by Stepan Kasal.
8745 2004-09-05  Paul Eggert  <eggert@cs.ucla.edu>
8747         Fix problems reported by Andreas Buening in:
8748         http://lists.gnu.org/archive/html/autoconf-patches/2004-04/msg00004.html
8749         * lib/autoconf/programs.m4 (AC_PROG_MAKE_SET): Set SHELL=/bin/sh
8750         in test makefile.
8751         * lib/autotest/general.m4 (AT_INIT): Don't assume /dev/null is
8752         readable; it's not true in OS/2-emx.
8754 2004-09-04  Paul Eggert  <eggert@cs.ucla.edu>
8756         * lib/autoconf/libs.m4 (_AC_PATH_X_XMKMF): If xmkmf returns
8757         "/usr/include", clear ac_x_includes instead of leaving it as "no"
8758         (trivial change).  Problem and patch reported by Andrew Church in:
8759         http://lists.gnu.org/archive/html/bug-autoconf/2004-04/msg00016.html
8761 2004-09-03  Paul Eggert  <eggert@cs.ucla.edu>
8763         * doc/autoconf.texi: Give AC_DEFINE and AC_DEFINE_UNQUOTED
8764         three args in examples.  Problem reported by Frederik Fouvry in:
8765         http://lists.gnu.org/archive/html/bug-autoconf/2004-09/msg00017.html
8766         Also, fix some minor spacing and punctuation bugs.
8768 2004-09-02  Akim Demaille  <akim@epita.fr>
8770         * doc/autoconf.texi (Limitations of Builtins): Swap "cd" and
8771         "case" to restore ordering.
8772         Reported by Stepan Kasal.
8774 2004-08-26  Akim Demaille  <akim@epita.fr>
8776         * doc/autoconf.texi: Minor typos and stylos.
8778 2004-08-20  Paul Eggert  <eggert@cs.ucla.edu>
8780         * configure.ac (AC_INIT): Bump to 2.59c.
8782 2004-08-20  Paul Eggert  <eggert@cs.ucla.edu>
8784         Version 2.59b.
8786         * README: Add advice about m4 1.4.2.
8788         * Makefile.cfg (wget_files): Remove config.guess, config.sub,
8789         texinfo.tex for now (done by hand now).
8790         * Makefile.maint (wget_files, cvs_files):
8791         Remove ansi2knr.c; nobody uses it.
8792         (ansi2knr.c-url_prefix): Remove.
8793         (cvs-update): Fix test for failure.  I don't know why it ever
8794         worked...
8796         * doc/autoconf.texi: Update URLs, some of which went stale.
8797         Use @uref rather than @href.
8799         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ARGS): Have configure
8800         handle "--" as per POSIX.  Suggested by Paul Pogonyshev.
8802         * config/config.guess, config/config.sub, config/elisp-comp,
8803         config/install-sh, config/mkinstalldirs, config/texinfo.tex,
8804         doc/fdl.texi, doc/standards.texi: Sync with master copy.
8806         * NEWS, TODO, configure.ac, bin/autoscan.in,
8807         bin/autoupdate.in, bin/ifnames.in, doc/autoconf.texi,
8808         doc/install.texi, lib/Autom4te/Configure_ac.pm,
8809         lib/Autom4te/FileUtils.pm, lib/autoconf/general.m4,
8810         lib/autoconf/programs.m4, lib/autoconf/status.m4,
8811         lib/autotest/general.m4, lib/m4sugar/m4sh.m4,
8812         lib/m4sugar/m4sugar.m4, tests/local.at, tests/m4sh.at,
8813         tests/tools.at, tests/torture.at:
8814         Use "file name" rather than "filename" or "path",
8815         to be consistent with the terminology of the GNU coding standards.
8817 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
8819         * lib/autoconf/c.m4 (AC_LANG_BOOL_COMPILE_TRY(C),
8820         AC_C_LONG_DOUBLE): Undo 2004-06-04 change, as it didn't work with
8821         HP-UX 11.23 cc/aCC or Tru64 4.0 cc.  Problem reported by Noah Misch in
8822         <http://lists.gnu.org/archive/html/autoconf/2004-07/msg00004.html>.
8824         More fixes to support spaces in the name of the build directory.
8825         This isn't a complete fix but it's an improvement.
8827         * bin/autoconf.as (autom4te_options): New var.
8828         Use it instead of appending to AUTOM4TE, so that we can allow
8829         spaces in the build directory's absolute name.
8830         * bin/autoheader.in ($autoconf): Allow spaces in file names.
8831         * lib/autotest/general.m4 (AT_INIT, AT_CLEANUP, _AT_CHECK,
8832         AT_CHECK_NOESCAPE): Likewise.
8833         * tests/wrapper.as (testdir, AUTOM4TE_CFG, autom4te_perllibdir,
8834         main program): Likewise.
8836 2004-08-18  Paul Eggert  <eggert@cs.ucla.edu>
8838         * lib/autoconf/general.m4 (_AC_INIT_HELP): Quote $ac_popdir uses.
8839         From Ralf Corsepius in:
8840         http://lists.gnu.org/archive/html/autoconf-patches/2004-08/msg00014.html
8842 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
8844         * doc/autoconf.texi (Function Portability): Document isinf and
8845         and isnan.  From a suggestion by Kevin Ryde.
8847         * lib/Autom4te/General.pm (END): Return correct exit status even
8848         if unlink succeeds and sets $?.  Needed with Solaris 8's perl 5.00503.
8850 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
8852         * tests/torture.at (Deep Package): Use configure.in, not configure.ac,
8853         for compatibility with Automake 1.4.  Reported by J C Fitzgerald in
8854         <http://lists.gnu.org/archive/html/bug-autoconf/2003-08/msg00051.html>.
8856 2004-08-04  Alexandre Duret-Lutz  <adl@gnu.org>
8858         * lib/autoconf/general.m4 (AC_REQUIRE_AUX_FILE): New empty macro.
8859         (AC_CANONICAL_BUILD): Call it to require config.sub and config.guess.
8860         * lib/autoconf/programs.m4 (AC_PROG_INSTALL): Likewise for install-sh.
8861         * doc/autoconf.texi (Input): Document AC_REQUIRE_AUX_FILE.
8862         * lib/autom4te.in (Automake-preselections): Preselect
8863         AC_REQUIRE_AUX_FILE.  Automake 1.10 will trace it.
8865 2004-08-02  Alexandre Duret-Lutz  <adl@gnu.org>
8867         * lib/autom4te.in (Automake-preselections): Preselect
8868         AC_CANONICAL_BUILD and AC_CANONICAL_TARGET.  Automake 1.9.1 will
8869         trace them.
8871 2004-07-29  Paul Eggert  <eggert@cs.ucla.edu>
8873         * lib/m4sugar/m4sh.m4 (_AS_BOURNE_COMPATIBLE): Set BIN_SH, for
8874         Tru64.
8875         * doc/autoconf.texi (Shellology): Mention BIN_SH.
8876         Document problem with "`""`" in pdksh POSIX mode.
8878 2004-07-27  Paul Eggert  <eggert@cs.ucla.edu>
8880         * lib/m4sugar/m4sh.m4 (_AS_BOURNE_COMPATIBLE): Use "set -o posix"
8881         with pdksh, too.  Problem reported by Patrick Welche via
8882         Gary V. Vaughan.
8883         * doc/autoconf.texi (Shellology): Note that set -o posix is
8884         useful for pkdsh, too.
8886 2004-06-24  Paul Eggert  <eggert@cs.ucla.edu>
8888         * lib/m4sugar/m4sh.m4 (_AS_DETECT_BETTER_SHELL): Require
8889         _AS_UNSET_PREPARE, so that we can use $as_unset directly.
8890         Don't fail if ENV or BASH_ENV is readonly.
8891         (AS_SHELL_SANITIZE): Don't fail if ENV, MAIL, MAILPATH, LC_ALL,
8892         etc. are read only.  Problem reported by Ludovic Courtes.
8894 2004-06-23  Noah Misch  <noah@cs.caltech.edu>
8896         * lib/m4sugar/m4sh.m4 (_AS_BOURNE_COMPATIBLE): If the shell is
8897         zsh, disable GLOB_SUBST to avoid backslash handling problems.
8898         (trivial change)
8900 2004-06-04  Paul Eggert  <eggert@cs.ucla.edu>
8902         * doc/autoconf.texi (File System Conventions): Warn about
8903         names like "aux".  Problem reported by Eric Blake.
8905         * lib/autoconf/c.m4 (AC_LANG_BOOL_COMPILE_TRY (C)): Use division
8906         by zero instead of array size, so that we can use any arithmetic
8907         constant expression (instead of requiring an integer constant
8908         expression).  This allows us to test expressions like DBL_MAX <
8909         LDBL_MAX, which didn't conform to the C standard using the old
8910         method.
8911         (AC_C_LONG_DOUBLE): Put back in the tests for LDBL_MAX and LDBL_EPSILON,
8912         now that we can do floating-point tests at compile time.
8914 2004-06-02  Paul Eggert  <eggert@cs.ucla.edu>
8916         * lib/autoconf/c.m4 (AC_C_LONG_DOUBLE): Don't check LDBL_MAX
8917         and LDBL_EPSILON, as the resulting expression isn't an
8918         integer constant expression and violates the C standard.
8919         Problem reported by Nelson H. F. Beebe.  Also, check
8920         for "L" suffix, and check that long double doesn't have
8921         worse range or precision than double, that mixed-mode
8922         arithmetic doesn't generate a diagnostic, that double
8923         constants fit in long double.
8925 2004-06-03  Kevin Ryde  <user42@zip.com.au>
8927         * doc/autoconf.texi (Function Portability): Add notes on free(NULL),
8928         malloc(0) and realloc(NULL,size).
8930         * doc/autoconf.texi (Shell Substitutions): Spelling error reported by
8931         Bob Proulx.
8933 2004-05-31  Paul Eggert  <eggert@cs.ucla.edu>
8935         * lib/autoconf/headers.m4 (HAVE_STDBOOL_H): Detect _Bool bug
8936         in HP aC++/ANSI C B3910B A.05.55 [Dec 04 2003].  Problem reported
8937         by Jim Meyering.
8939 2004-05-26  Paul Eggert  <eggert@cs.ucla.edu>
8941         * doc/autoconf.texi (Limitations of Builtins): Mention that ! COMMAND
8942         can be rewritten using if-then-else.  Suggested by Bruno Haible.
8944 2004-05-25  Paul Eggert  <eggert@cs.ucla.edu>
8946         * doc/autoconf.texi (testsuite Scripts): Fix typo.
8947         Problem reported by Stepan Kasal.
8949 2004-05-24  Paul Eggert  <eggert@cs.ucla.edu>
8951         * tests/Makefile.am (autoconfdir): Fix to match comment (trivial
8952         change).  Patch reported by Ralf Wildenhues in
8953         <http://mail.gnu.org/archive/html/bug-autoconf/2004-05/msg00092.html>.
8955         * lib/autoconf/functions.m4 (AC_FUNC_MBRTOWC): Don't assume that a
8956         function F exists if the compiler and linker let you compile an
8957         expression like (F != 0).  Recent versions of GCC optimize away
8958         the reference to F in that case, since every function address must
8959         be nonzero, so the link succeeds even if F does not exist.
8960         Problem reported by Manu in
8961         <http://mail.gnu.org/archive/html/bug-gnu-utils/2004-05/msg00060.html>.
8963         * doc/autoconf.texi (Systemology): Standardize on the spelling of
8964         "Unix".  Many uses changed.
8965         (Limitations of Builtins): Explain better why the ! command isn't
8966         portable.
8968 2004-05-22  Alexandre Duret-Lutz  <adl@gnu.org>
8970         * lib/autom4te.in (Automake-preselections): Preselect
8971         LT_SUPPORTED_TAG in lieu of AC_LIBTOOL_TAGS.
8973 2004-05-19  Kevin Ryde  <user42@zip.com.au>
8975         * doc/autoconf.texi (Function Portability): Add strerror_r, cross
8976         referencing AC_FUNC_STRERROR_R.
8978         * doc/autoconf.texi (Particular Functions): In AC_FUNC_CLOSEDIR_VOID,
8979         note pessimistic assumption when cross compiling.
8981 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
8983         * doc/autoconf.texi (Limitations of Make): Note that BSD make
8984         (until 2004) invoked subcommands with sh -e, contra POSIX.
8985         Reported by Kevin Ryde.
8987 2004-05-10  Eric Sunshine  <sunshine@sunshineco.com>
8989         * programs.m4 (_AC_PROG_GREP): Fixed bug where PATH argument handed to
8990         _AC_PATH_PROG_FEATURE_CHECK contained leading whitespace (i.e.
8991         "        $PATH:/usr/xpg4/bin"). This resulted in bogus tests, such as
8992         `test -f "        /usr/bin/grep"', which _always_ failed.
8993         (AC_PROG_SED): Ditto bogus PATH fix.
8994         * autoconf.texi (AC_PROG_GREP): Properly document that this macro
8995         requires that grep correctly supports _multiple_ `-e' options, rather
8996         than stating only that grep should accept `-e'.
8998 2004-05-03  Paul Eggert  <eggert@cs.ucla.edu>
9000         Port to C99, which requires that 'exit' be declared.
9002         * lib/autoconf/c.m4 (AC_C_BIGENDIAN): Use AC_INCLUDES_DEFAULT
9003         to ensure that stdlib.h is included.
9004         * lib/autoconf/functions.m4 (_AC_LIBOBJ_ALLOCA, AC_FUNC_SETPGRP,
9005         AC_FUNC_STRTOD, AC_FUNC_SETVBUF_REVERSED, AC_FUNC_FORK, _AC_FUNC_FORK,
9006         _AC_FUNC_VFORK, AC_FUNC_WAIT3): Likewise.
9007         * lib/autoconf/specific.m4 (AC_SYS_RESTARTABLE_SYSCALLS): Likewise.
9008         * lib/autoconf/types.m4 (AC_TYPE_GETGROUPS): Likewise.
9009         * lib/autoconf/headers.m4 (AC_HEADER_STDC): Include <stdlib.h>
9010         when using 'exit' in a test; C99 requires that 'exit' be declared.
9012 2004-05-02  Paul Eggert  <eggert@cs.ucla.edu>
9014         * doc/autoconf.texi (Particular Programs): AC_PROG_GREP
9015         now prefers 'grep' implementations that accept -e.
9016         (Limitations of Usual Tools): Describe problems of traditional
9017         egrep and fgrep with long input lines, and of traditional grep
9018         with -e.
9019         * lib/autoconf/programs.m4 (AC_PROG_GREP): Check for -e, too.
9020         (_AC_PROG_GREP): Assume 3rd arg is properly quoted for the shell.
9021         All callers changed.  Append /usr/xpg4/bin to the PATH, for
9022         Solaris.
9023         (_AC_FEATURE_CHECK_LENGTH): Discard stderr, so we don't bother
9024         the user with complaints about multiple -e options.
9025         * tests/local.at (AC_STATE_SAVE): Use $GREP, not grep.
9026         Define it with AC_PROG_GREP.
9027         * configure.ac (AC_PROG_GREP): Add.
9028         * lib/freeze.mk (GREP): New macro.
9030 2004-05-02  Eric Sunshine  <sunshine@sunshineco.com>
9032         * lib/m4sugar/m4sh.m4 (_AS_DETECT_BETTER_SHELL): Consult $SHELL as
9033         a possible candidate only after all others fail, rather than
9034         consulting it first.  This improves backward compatibility by
9035         better reflecting the way shell selection occurred in previous
9036         versions of Autoconf, and should help to avoid triggering latent
9037         problems in other packages, such as the one in Automake where zsh
9038         is not handled robustly:
9039         http://mail.gnu.org/archive/html/automake/2004-04/msg00095.html
9040         Although it is not Autoconf's responsibility to work around
9041         problems in Automake, it nevertheless makes sense to avoid
9042         introducing unnecessary incompatibilites.
9044 2004-04-22  Albert Chin-A-Young  <china@thewrittenword.com>,
9045             Gary V. Vaughan  <gary@gnu.org>
9047         * lib/autoconf/programs.m4 (_AC_FEATURE_CHECK_LENGTH): Don't guess
9048         how deeply nested we are when a suitable tool is found, set the
9049         ac_path_TOOL_found flag.
9050         (_AC_PATH_PROG_FEATURE_CHECK): Encapsulate knowledge of how deeply
9051         nested we are in this macro.  Break out of all 3 nested loops if
9052         ac_path_TOOL_found is set.
9054 2004-04-21  Gary V. Vaughan  <gary@gnu.org>
9056         * lib/autoconf/programs.m4 (_AC_FEATURE_CHECK_LENGTH): Break out
9057         of the _AS_PATH_WALK loop too if GNU flavor is found.
9059 2004-04-21  Alexandre Duret-Lutz  <adl@gnu.org>
9061         * doc/autoconf.texi (Limitations of Make): Update documentation
9062         for `$<'.  New entry `Long lines', based on a report from Simon
9063         Josefsson.  Augment the documentation for SHELL = @SHELL@ with a
9064         paragraph about DJGPP, based on a mail from Richard Dawe.
9066 2004-04-20  Paul Eggert  <eggert@twinsun.com>
9068         * tests/c.at (C keywords): Don't assume that GCC supports
9069         "restrict" and "inline", as sufficiently-old GCC versions do not
9070         (also, GCC configured to be in pedantic C89 mode does not).
9071         Problem reported by Sumit Pandya in:
9072         http://mail.gnu.org/archive/html/autoconf/2004-04/msg00092.html
9074         * lib/autoconf/c.m4 (_AC_PROG_CC_G, _AC_PROG_CXX_G): Don't
9075         consider -g to work if it generates warnings when plain compiles
9076         don't.  Problem reported by Braden McDaniel in:
9077         http://mail.gnu.org/archive/html/autoconf-patches/2003-07/msg00014.html
9079         * doc/autoconf.texi (Slashes): New section, to document a problem
9080         reported by Jim Meyering in:
9081         http://mail.gnu.org/archive/html/bug-coreutils/2004-02/msg00060.html
9083         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Remove potential
9084         linker output files before linking, to work around IRIX 6 linker bug.
9085         Problem reported by Rainer Orth in:
9086         http://mail.gnu.org/archive/html/autoconf-patches/2004-02/msg00007.html
9088 2004-04-20  Gary V. Vaughan  <gary@gnu.org>
9090         * lib/autoconf/programs.m4 (_AC_FEATURE_CHECK_LENGTH): Make the
9091         best tool so far counter rely on the tool path variable name to
9092         avoid checks for one tool being affected by the results of running
9093         the length check on a previous tool.
9095         * lib/autoconf/programs.m4 (_AC_PROG_GREP): Take an additional
9096         match expression argument, as different greps have different
9097         regular expression flavours.
9098         (AC_PROG_FGREP): Pass 'FGREP'. fgrep treats all match chars as
9099         literals.
9100         (AC_PROG_EGREP): Pass 'EGREP$'.
9101         (AC_PROG_GREP): Pass 'GREP$'.
9103 2004-04-20  Albert Chin-A-Young  <china@thewrittenword.com>
9105         * lib/autoconf/programs.m4 (AC_PROG_GREP): Cache variable
9106         is `ac_cv_path_GREP', not `oc_cv_path_GREP'.
9108 2004-03-29  Paul Eggert  <eggert@twinsun.com>
9110         * doc/autoconf.texi (Particular Headers, Particular Types, Generic
9111         Types, Specific Compiler Characteristics, System Services,
9112         Obsolete Macros): Use 'long int', 'short int', 'unsigned int'
9113         etc. consistently instead of 'long', 'short', 'unsigned' etc.
9114         * lib/autoconf/c.m4 (AC_LANG_INT_SAVE(C), AC_C_BIGENDIAN): Likewise.
9115         * lib/autoconf/functions.m4 (AC_FUNC_MMAP, AC_FUNC_SELECT_ARGTYPES):
9116         Likewise.
9117         * lib/autoconf/headers.m4 (AC_HEADER_SYS_WAIT): Likewise.
9118         * lib/autoconf/types.m4 (AC_TYPE_GETGROUPS, AC_TYPE_SIZE_T,
9119         AC_TYPE_OFF_T): Likewise.
9120         * tests/semantics.at (AC_CHECK_TYPES: backward compatibility):
9121         Likewise.
9123         * tests/foreign.at (Libtool): Create an empty aclocal.m4, to
9124         pacify libtool 1.5.2.  Fix quoting problems in sed command.
9126 2004-03-28  Paul Eggert  <eggert@twinsun.com>
9128         * doc/autoconf.texi (Particular Structures): AC_STRUCT_TIMEZONE
9129         now defines HAVE_DECL_TZNAME if it is declared, when
9130         HAVE_STRUCT_TM_TM_ZONE is not defined.
9131         * lib/autoconf/types.m4 (AC_STRUCT_TIMEZONE): Implement this.
9132         Do not assume atoi.  Rely on HAVE_DECL_TZNAME when testing
9133         for HAVE_TZNAME.
9135 2004-03-28  Steven G. Johnson  <stevenj@fftw.org>
9137         * lib/autoconf/fortran.m4 (_AC_PROG_FC_V_OUTPUT): Corrected
9138         superfluous backslashing of quotes (") in sed expressions;
9139         thanks to Paul Eggert.
9141 2004-03-26  Steven G. Johnson  <stevenj@alum.mit.edu>
9143         * lib/autoconf/fortran.m4 (_AC_PROG_FC): new name of Intel
9144         Fortran compiler is ifort, also added pghpf; thanks to Nelson
9145         H. F. Beebe for the bug report.
9147 2004-03-26  Steven G. Johnson  <stevenj@fftw.org>
9149         * lib/autoconf/fortran.m4 (_AC_PROG_FC_V_OUTPUT): fix for
9150         quoted -cmdline argument in Portland Group compiler (bug
9151         reported by Jeffrey J. Barteet).
9153 2004-03-25  Kevin Ryde  <user42@zip.com.au>
9155         * doc/autoconf.texi (Specifying Names): Move cross_compiling ovindex to
9156         (Run Time): ... here, where it's now mentioned.
9158 2004-03-19  Alexandre Duret-Lutz  <adl@gnu.org>
9160         * doc/autoconf.texi (autom4te Invocation): Language Autoconf
9161         inherits from language Autoconf-without-aclocal-m4.
9162         (Customizing autom4te): Adjust example; the cache must now be
9163         disabled for language Autoconf-without-aclocal-m4.
9165 2004-03-16  Paolo Bonzini  <bonzini@gnu.org>
9166             Nathanael Nerode  <neroden@twcny.rr.com>
9168         * lib/autoconf/programs.m4 (AC_PATH_TOOL, AC_CHECK_TOOL,
9169         AC_CHECK_TOOLS): Warn if a cross-tool is found without
9170         a prefix.
9171         (AC_PATH_TARGET_TOOL, AC_CHECK_TARGET_TOOL,
9172         AC_CHECK_TARGET_TOOLS): New macros.
9173         * doc/autoconf.texi (Generic Programs): Document
9174         (AC_PATH_TARGET_TOOL, AC_CHECK_TARGET_TOOL,
9175         AC_CHECK_TARGET_TOOLS, and warn for future changes
9176         in the behavior of AC_PATH_TOOL, AC_CHECK_TOOL and
9177         AC_CHECK_TOOLS.
9178         (Specifying Names): Document the reason for these future
9179         behavioral changes.
9180         * tests/mktests.sh: Do not generate tests for the
9181         new macros.
9182         * NEWS: Document these changes.
9184         * doc/autoconf.texi: Avoid macros with unbraced arguments,
9185         they make TeX hang up.
9187 2004-03-15  Paul Eggert  <eggert@bogus.example.com>
9189         * NEWS: New macro AC_CHECK_ALIGNOF.
9190         * doc/autoconf.texi (Generic Compiler Characteristics): Document it.
9191         * lib/autoconf/types.m4 (AC_CHECK_SIZEOF): Use long int rather than
9192         int; avoid "a `$1'" since this isn't grammatical if $1 begins with a
9193         vowel.
9194         (AC_CHECK_ALIGNOF): New macro.
9195         * tests/mktests.sh (ac_exclude_list): Exclude AC_CHECK_ALIGNOF.
9196         * tests/semantics.at (AC_CHECK_ALIGNOF): Add tests similar to
9197         those for sizeof.
9199 2004-03-03  Paul Eggert  <eggert@twinsun.com>
9201         * bin/Makefile.am (edit): Don't use $< in a context where
9202         POSIX doesn't require support for it.  Use $@.in instead.
9203         Problem reported by Anthony N. Frasso in
9204         <http://mail.gnu.org/archive/html/autoconf/2004-03/msg00008.html>.
9205         * bin/autoscan.in, bin/autoupdate.in: Add @configure_input@ comment.
9207 2004-02-23  Gary V. Vaughan  <gary@gnu.org>
9209         * bin/autoreconf.in (autoreconf_current_directory): Recognize LT_INIT
9210         from the next generation of Libtool.
9211         * lib/autom4te.in (Autoreconf-preselections): Ditto.
9213 2004-02-20  Alexandre Duret-Lutz  <adl@gnu.org>
9215         * doc/autoconf.texi (Limitations of Usual Tools) <mkdir>: `mkdir -p'
9216         is not always thread-safe.  Report from Nathanael Nerode.
9218 2004-02-18  Paul Eggert  <eggert@twinsun.com>
9220         Fix a dependencies problem, stemming from a Autoconf 2.59 build
9221         problem on QNX reported by Stephen Rasku in
9222         <http://mail.gnu.org/archive/html/bug-autoconf/2004-02/msg00066.html>.
9224         * bin/Makefile.am ($(srcdir)/autoconf.in): Depend on
9225         $(m4sh_m4f_dependencies); this removes a FIXME.
9226         * tests/Makefile.am ($(srcdir)/wrapper.in): Likewise.
9227         (MAINTAINERCLEANFILES): Split into pieces,
9228         one per related section.  Add $(srcdir)/wrapper.in.
9230 2004-02-09  Paul Eggert  <eggert@twinsun.com>
9232         * doc/autoconf.texi (Setting Output Variables): Emphasize that
9233         AC_SUBST provides no portable way to escape literal newlines.
9235         * lib/autoconf/fortran.m4 (_AC_FC_LIBRARY_LDFLAGS): Ignore all
9236         flags of the form -lcrt*.o, not just -lcrt[01].o and -lcrtbegin.o.
9237         Darwin uses -lcrt2.o and there's little point to cataloging all
9238         the system variants.  Partial fix reported by Andreas Waechter in:
9239         http://mail.gnu.org/archive/html/autoconf-patches/2004-02/msg00006.html
9240         for bug reported by Nelson H. F. Beebe in:
9241         http://mail.gnu.org/archive/html/bug-autoconf/2003-12/msg00090.html
9243 2004-02-04  Paolo Bonzini  <bonzini@gnu.org>
9245         * doc/autoconf.texi (AU_DEFUN): Fix English,
9246         suggested by Paul Eggert.
9247         * lib/autoconf/autoupdate.m4: Correct reference to
9248         acobsolete.m4, suggested by Alexandre Duret-Lutz.
9250 2004-02-02  Paolo Bonzini  <bonzini@gnu.org>
9252         * bin/autoupdate.in: Define __file__ so that warnings
9253         refer to the correct file.
9254         * doc/autoconf.texi (AU_DEFUN): Describe more correctly
9255         the behavior of the third argument.
9256         * lib/autoconf/autoupdate.m4 (AU_DEFUN): Describe more
9257         correctly the behavior of the third argument.  Document
9258         what the three macros that AU_DEFUN defines do.  Fix
9259         warning message when the third argument includes $0
9260         (reported by Alexandre Duret-Lutz).
9262 2004-01-30  Paolo Bonzini  <bonzini@gnu.org>
9263             Eric Sunshine  <sunshine@sunshineco.com>
9264             Paul Eggert  <eggert@twinsun.com>
9266         * lib/m4sugar/m4sh.m4 (M4SH-SANITIZE): New diversion.
9267         (AS_INIT): Output shell initialization there. Removed optional
9268         parameter. Expand _AS_SHELL_FN_SPY.
9269         (AS_INIT_WITH_SHELL_FN): Removed.
9270         (_AS_SHELL_FN_SPY): New macro.
9271         (AS_DETECT_REQUIRED, AS_DETECT_SUGGESTED): New
9272         macros.
9273         (AS_SHELL_SANITIZE): Remove loop to find better shell
9274         and documentation for the parameter.
9275         (_AS_DETECT_BETTER_SHELL): Move it here.
9276         (_AS_SHELL_FN_WORK): Remove shell invocation, reformat.
9277         (_AS_RUN): Move it here, support testing with eval.
9278         (AS_REQUIRE_SHELL_FN): Require shell functions when
9279         it is used.
9280         (_AS_LINENO_WORKS): Put around braces, we do not
9281         trigger the bash bug anymore.
9282         * lib/autotest/general.m4: Document M4SH-SANITIZE, do not
9283         use AS_INIT_WITH_SHELL_FN.
9284         * bin/autoconf.in, tests/wrapper.in: Regenerated.
9286 2004-01-30  Paolo Bonzini  <bonzini@gnu.org>
9288         * bin/autoupdate.in: Trace AU_DEFINE instead of AU_DEFUN.
9289         * doc/autoconf.texi: Don't say that the third parameter
9290         is broken.
9291         * lib/autoconf/autoupdate.m4 (AU_DEFINE): New dummy macro.
9292         (AU_DEFUN): Honor the third parameter, create autoupdate
9293         macros with AU_DEFINE.
9294         * lib/autoconf/headers.m4 (AC_USG, AC_MEMORY_H,
9295         AC_DIR_HEADER): Use AU_DEFUN's third parameter.
9296         * lib/autoconf/lang.m4 (AC_LANG_SAVE): Likewise.
9297         * lib/autoconf/programs.m4 (AC_RSH): Likewise.
9298         * lib/autoconf/specific.m4 (AC_HAVE_POUNDBANG,
9299         AC_ARG_ARRAY, AC_CYGWIN, AC_EMXOS2, AC_MINGW32,
9300         AC_XENIX_DIR): Likewise.
9301         * lib/autoconf/types.m4 (AC_INT_16_BITS, AC_LONG_64_BITS,
9302         AC_STRUCT_ST_BLKSIZE, AC_STRUCT_ST_RDEV): Likewise.
9303         * lib/autoconf/status.m4: Remove FIXME.
9304         * tests/local.at (AT_CHECK_AU_MACRO): Ignore stderr, check
9305         that the macro is not present anymore in the updated
9306         configure.ac.
9307         * tests/tools.at (autoupdate AC_LINK_FILES): Ignore stderr
9308         of autoupdate.
9310 2004-01-28  Paul Eggert  <eggert@twinsun.com>
9312         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): Add 2004 to
9313         copyright years.
9314         * lib/autoconf/general.m4 (_AC_INIT_COPYRIGHT): Add 1992 thorugh
9315         2003 (except 1997) to the list of copyright years.  This undoes
9316         the 2003-05-22 change, which removed the older years from the list.
9317         * lib/autoconf/status.m4 (AC_OUTPUT): Update copyright date to 2004.
9319 2004-01-27  Gary V. Vaughan  <gary@gnu.org>
9320             Albert Chin-A-Young  <china@thewrittenword.com>
9322         * lib/autoconf/programs.m4 (AC_PROG_GREP): New macro to test for a
9323         grep or ggrep program in PATH that accepts as long lines as
9324         possible.
9325         * lib/autoconf/programs.m4 (_AC_PROG_GREP): Factor out the core of
9326         AC_PROG_GREP.
9327         (AC_PROG_EGREP, AC_PROG_FGREP): Use it to find best available
9328         egrep and fgrep respectively if $GREP -E/-F don't work.
9329         (_AC_PATH_PROG_FEATURE_CHECK): Factor out the common core of
9330         _AC_PROG_GREP, and AC_PROG_SED.
9331         (_AC_FEATURE_CHECK_LENGTH): New helper macro for finding the
9332         longest input length accepted by a command.
9333         (AC_PROG_SED): Use it.
9334         * doc/autoconf.texi (Particular Programs): Document the changes.
9335         * NEWS: Updated.
9337 2004-01-27  Paul Eggert  <eggert@twinsun.com>
9339         * bin/autoconf.as ($version): Update copyright from 2003 to 2004.
9340         * bin/autoheader.in, bin/autom4te.in, bin/autoreconf.in,
9341         bin/autoscan.in, bin/autoupdate.in, bin/ifnames.in: Likewise.
9342         * lib/autoconf/general.m4 (_AC_INIT_COPYRIGHT): Likewise.
9344         * Makefile.in, aclocal.m4, configure, bin/Makefile.in,
9345         bin/autoconf.in, config/Makefile.in, config/config.guess,
9346         config/config.sub, config/install-sh, config/mdate-sh,
9347         config/mkinstalldirs, config/texinfo.tex, doc/Makefile.in,
9348         lib/Makefile.in, lib/Autom4te/Makefile.in,
9349         lib/autoconf/Makefile.in, lib/autoscan/Makefile.in,
9350         lib/autotest/Makefile.in, lib/emacs/Makefile.in,
9351         lib/m4sugar/Makefile.in, man/Makefile.in, man/autoconf.1,
9352         man/autoheader.1, man/autom4te.1, man/autoreconf.1,
9353         man/autoscan.1, man/autoupdate.1, man/config.guess.1,
9354         man/config.sub.1, man/ifnames.1, tests/Makefile.in,
9355         tests/acc.at, tests/acfortran.at, tests/acfunctions.at,
9356         tests/acgeneral.at, tests/acheaders.at, tests/aclang.at,
9357         tests/aclibs.at, tests/acspecific.at, tests/acstatus.at,
9358         tests/actypes.at: Regenerate and/or sync with original
9359         sources.
9361 2004-01-26  Paul Eggert  <eggert@twinsun.com>
9363         * doc/autoconf.texi (Default Includes): Include <stdint.h> even if
9364         HAVE_INTTYPES_H is defined.  This is needed on Tru64 5.1b with
9365         Compac C V6.5-207 (dtk), which defines uintmax_t in <stdint.h> but
9366         not <inttypes.h>.  Problem reported by Tim Mooney in
9367         <http://mail.gnu.org/archive/html/bug-coreutils/2004-01/msg00147.html>.
9368         * lib/autoconf/headers.m4 (_AC_INCLUDES_DEFAULT_REQUIREMENTS):
9369         Likewise.
9371         * lib/autoconf/programs.m4 (AC_PROG_SED): Use diff, not sed;
9372         otherwise "make check" fails because it forbids cmp (I guess
9373         because cmp treats files as binary on DOS-like systems).
9375         * tests/mktests.sh: Update copyright date to 2004, since some tests
9376         have changed in 2004.
9378 2004-01-23  Gary V. Vaughan  <gary@gnu.org>
9380         * lib/autoconf/programs.m4 (AC_PROG_SED):  New macro to test for a
9381         non-truncating sed or gsed program in PATH.
9382         * tests/acprograms.at: Add it.
9383         * doc/autoconf.texi (Particular Programs): Document it.
9384         * NEWS: Updated.
9386 2004-01-15  Paul Eggert  <eggert@twinsun.com>
9388         * lib/autoconf/c.m4 (_AC_PROG_CC_STDC): Try -std, not -std1, since
9389         -std1 disables some useful extensions on Tru64.  Problem reported
9390         by N. Lichtmaier in
9391         <http://mail.gnu.org/archive/html/autoconf/2004-01/msg00100.html>.
9393 2004-01-14  Paul Eggert  <eggert@twinsun.com>
9395         * doc/autoconf.texi (Programming in M4sh): Document that
9396         AS_MKDIR_P succeeds if the destination is a symbolic link
9397         to an existing directory.
9398         (Limitations of Usual Tools): Note that mkdir -p might not
9399         succeed on symlinks to directories.
9401 2004-01-13  Paul Hilfinger  <hilfinger@CS.Berkeley.EDU>
9403         * lib/autoconf/autoupdate.m4 (AU_DEFUN): Grammar fix in comment.
9404         * bin/autoheader.in: Grammar fix in message.
9405         * lib/m4sugar/m4sh.m4 (AS_MKDIR_P):
9406         Test for dir before calling mkdir -p.  (trivial changes)
9408 2004-01-13  Eric Blake  <ebb9@byu.net>
9410         * doc/autoconf.texi (Obsolete Macros): In AC_TRY_COMPILE and
9411         AC_TRY_LINK, s/AC_LANG_SOURCE/AC_LANG_PROGRAM/.  (trivial change)
9413 2004-01-10  Jim Meyering  <jim@meyering.net>
9415         * doc/autoconf.texi (Running the Preprocessor): Correct grammar.
9417 2004-01-09  Paul Eggert  <eggert@twinsun.com>
9419         * lib/autoconf/general.m4: Fix bug: AC_CHECK_SIZEOF evokes a warning
9420         with `autoconf -Wall,error'.  Bug reported by Eric Blake in:
9421         http://mail.gnu.org/archive/html/autoconf-patches/2004-01/msg00000.html
9422         (_AC_COMPUTE_INT_COMPILE): Invoke _AC_COMPILE_IFELSE, not
9423         AC_COMPILE_IFELSE, since we now assume our caller invokes
9424         AC_LANG_COMPILER_REQUIRE, for symmetry with _AC_COMPUTE_INT_RUN.
9425         (_AC_COMPUTE_INT_RUN): Likewise, for _AC_RUN_IFELSE instead
9426         of AC_RUN_IFELSE; this avoids the warning mentioned above.
9427         (_AC_COMPUTE_INT): Invoke AC_LANG_COMPILER_REQUIRE.
9429 2004-01-07  Paul Eggert  <eggert@twinsun.com>
9431         * lib/autoconf/general.m4 (_AC_LIBOBJS_NORMALIZE): Avoid \$ inside
9432         `"'...'"`, as it's confusing (and I suspect it may not work on
9433         some platforms).  The code was incorrect anyway, as it assumed
9434         that \$ evaluated to itself in that context.  Reported by
9435         Alexandre Duret-Lutz.
9437 2004-01-07  Alexandre Duret-Lutz  <adl@gnu.org>
9439         * lib/autom4te.in (Automake-preselections): Preselect AC_LIBTOOL_TAGS
9440         and _LT_AC_TAGCONFIG.
9442 2004-01-06  Paul Eggert  <eggert@twinsun.com>
9444         * doc/autoconf.texi (One Macro Call): Fix an incorrect
9445         example, and add more examples.  Reported by Eric Sunshine.
9447 2004-01-05  Paul Eggert  <eggert@twinsun.com>
9449         * doc/autoconf.texi (Limitations of Usual Tools):
9450         Remove warning against "rm -fr" introduced yesterday; it
9451         was a false alarm.
9453         * bin/Makefile.am (autoconf, autoheader, autom4te, autoreconf,
9454         autoscan, autoupdate, ifnames): Don't use chmod -w.
9455         * lib/Makefile.am (autom4te.cfg): Likewise.
9456         * doc/autoconf.texi (Limitations of Usual Tools): Warn against
9457         "chmod -w".
9459 2004-01-04  Paul Eggert  <eggert@twinsun.com>
9460             Paolo Bonzini  <bonzini@gnu.org>
9462         * lib/m4sugar/m4sh.m4 (_AS_LINENO_PREPARE): Speed up sed scripts
9463         by doing lineno substitution only on lines containing "$LINENO".
9465 2004-01-04  Paul Eggert  <eggert@twinsun.com>
9467         * lib/autoconf/general.m4 (AC_ARG_PROGRAM):
9468         Use "rm -f" to remove conftest.sed, not plain "rm".
9469         Bug reported by David Relson in
9470         <http://mail.gnu.org/archive/html/autoconf/2004-01/msg00011.html>.
9472         * Makefile.am (autom4te-update):
9473         Replace "rm -rf" and "rm -fr" with "rm -f -r", as POSIX requires.
9474         * Makefile.maint (my-distcheck, do-po-update): Likewise.
9475         * doc/autoconf.texi (Guidelines): Likewise.
9476         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Likewise.
9477         * lib/autoconf/libs.m4 (_AC_PATH_X_XMKMF): Likewise.
9478         * lib/autoconf/specific.m4 (AC_SYS_LONG_FILE_NAMES): Likewise.
9479         * lib/autotest/general.m4 (AT_INIT): Likewise.
9480         * lib/m4sugar/m4sh.m4 (AS_TMPDIR): Likewise.
9481         * tests/Makefile.am (clean-local): Likewise.
9482         * tests/tortue.at (AC_CONFIG_FILES, HEADERS, LINKS and COMMANDS,
9483         srcdir): Likewise.
9484         * doc/autoconf.texi (Limitations of Usual Tools):
9485         Warn against "rm -fr".
9487 2004-01-03  Paul Eggert  <eggert@twinsun.com>
9489         * doc/autoconf.texi (Limitations of Usual Tools): Mention that cc
9490         -c -o might not work.  From a suggestion by Kevin Ryde.
9491         (C Compiler, Generating Sources, Limitations
9492         of Usual Tools, Limitations of Make, Making testsuite Scripts):
9493         Don't put '-o' after non-options, as POSIX doesn't allow this.
9494         Mention that cc's name might be gcc or c89 or whatever.
9496 2004-01-04  Kevin Ryde  <user42@zip.com.au>
9498         * doc/autoconf.texi: Add various further index entries.
9500 2003-12-29  Paul Eggert  <eggert@twinsun.com>
9502         * bin/autoreconf.in (autoreconf_current_directory):
9503         Fix typo: mkdir without umask arg.
9505 2003-12-27  Alexandre Duret-Lutz  <adl@gnu.org>
9507         * doc/autoconf.texi (Limitations of Make) <Automatic rule rewriting>:
9508         Documents OSF1/Tru64 make behavior.  Replace `VPATH = ../src' by
9509         `VPATH = ../pkg/src' in examples to make the OSF1/Tru64 make
9510         explanation clearer.
9512 2003-12-24  Andreas Schwab  <schwab@suse.de>
9514         * doc/autoconf.texi (Default Includes): Fix misspelling of
9515         AC_INCLUDES_DEFAULT.
9517 2003-12-03  Paolo Bonzini  <bonzini@gnu.org>
9519         * configure.ac: Test if sh -n works.
9520         * configure: Regenerate.
9521         * tests/atlocal.in: Store the result here.
9522         * tests/local.at (AT_CHECK_SHELL_SYNTAX): Extracted from
9523         tools.at, looking in atlocal's ac_cv_sh_n_works instead
9524         of explicitly testing.
9525         (AT_CHECK_PERL_SYNTAX): Moved from tools.at.
9526         (AT_CHECK_AUTOCONF): Test for the configure script syntax.
9527         * tests/tools.at (Syntax of the shell scripts): Simplify
9528         using AT_CHECK_SHELL_SYNTAX.
9529         (Syntax of the Perl scripts): Remove definition of
9530         AT_CHECK_PERL_SYNTAX.
9532 2003-12-03  Paolo Bonzini  <bonzini@gnu.org>
9534         * lib/m4sugar/m4sh.m4 (_AS_SHELL_FN_WORK): Redirect
9535         stderr to /dev/null.
9536         * bin/autoconf.in: Regenerate.
9537         * bin/wrapper.in: Regenerate.
9539 2003-11-26  Paolo Bonzini  <bonzini@gnu.org>
9541         * lib/m4sugar/m4sh.m4 (_AS_BOURNE_COMPATIBLE):
9542         Extracted from AS_SHELL_SANITIZE.
9543         (_AS_SHELL_FN_WORK, AS_INIT_WITH_SHELL_FN): New
9544         macros.
9545         (AS_SHELL_SANITIZE): Move reinvocation code from
9546         _AS_LINENO_WORKS, use it to find out if shell
9547         functions work.
9548         (_AS_LINENO_WORKS): Don't find another shell if $LINENO
9549         does not work.
9550         (AS_INIT): Pass parameter down to AS_SHELL_SANITIZE.
9551         (AS_REQUIRE_SHELL_FN): Test that AS_INIT_WITH_SHELL_FN
9552         was called.
9553         * lib/autotest/general.m4: Use AS_INIT_WITH_SHELL_FN.
9554         * bin/autoconf.in: Regenerate.
9555         * tests/wrapper.in: Regenerate.
9556         * tests/tools.at: Test the syntax of tests/autoconf
9557         and tests/testsuite.
9559 2003-11-24  Akim Demaille  <akim@epita.fr>
9561         * config/announce-gen (&print_locations, &print_signatures)
9562         (&sizes): New.
9563         Use them.
9564         No longer rely on Gnus to inline the list of signatures: compute
9565         them on the fly.
9567 2003-11-24  Akim Demaille  <akim@epita.fr>
9569         * doc/autoconf.texi (Particular Programs): AC_PROG_LEX can
9570         override some files.
9571         (Input): AC_CONFIG_AUX_DIR(aux) is a bad idea on DOS.
9572         From Debian Autoconf 2.58.
9574 2003-11-24  Akim Demaille  <akim@epita.fr>
9576         * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): Quote $ac_popdir
9577         uses.
9578         From Debian Autoconf 2.58.
9580 2003-11-24  Paolo Bonzini  <bonzini@gnu.org>
9582         * TODO: Remove already done things.  Update the part about finding
9583         tools for the target.
9585 2003-11-24  Paolo Bonzini  <bonzini@gnu.org>
9587         * lib/autoconf/headers.m4 (AC_USG, AC_MEMORY_H, AC_DIR_HEADER):
9588         Make wording more consistent.
9589         * lib/autoconf/specific.m4 (AC_CYGWIN, AC_EMXOS2, AC_MINGW32):
9590         Explain the transition better.
9591         * lib/autoconf/types.m4 (AC_INT_16_BITS, AC_LONG_64_BITS): Explain
9592         the transition better.
9594 2003-11-24  Paolo Bonzini  <bonzini@gnu.org>
9596         * doc/autoconf.texi (Obsoleting Macros): Don't document the third
9597         parameter of AU_DEFUN.
9598         * lib/autoconf/autoupdate.m4 (AU_DEFINE): Remove.
9599         (AU_DEFUN): Remove the third parameter, it was not used.
9600         Use AC_DEFUN directly, not AU_DEFINE.
9601         * lib/autoconf/status.m4 (AC_LINK_FILES): Move the message into
9602         the expanded body, consistently with other macros such as AC_USG.
9604 2003-11-17  Paul Eggert  <eggert@twinsun.com>
9606         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Put at least 14 bytes
9607         into the initial confdefs.h, to work around a bug in NextStep 3.3
9608         patch 3 reported by Eric Sunshine.
9610 2003-11-15  Kevin Ryde  <user42@zip.com.au>
9612         * doc/autoconf.texi (Using System Type): Revise, showing $host rather
9613         than $target since the latter is not usual, add guidelines on when to
9614         use or not use the system type.
9616 2003-11-12  Derek Price  <derek@ximbiot.com>
9618         * doc/autoconf.texi (Limitations of Usual Tools): Fix what looks like a
9619         typo misrepaired by an auto-spellcheck.
9621 2003-11-12  Akim Demaille  <akim@epita.fr>
9623         * bin/autoreconf.in (&parse_args): Don't call automake with
9624         --force-missing unless it actually supports it.
9625         From Debian #219336.
9627 2003-11-12  Akim Demaille  <akim@epita.fr>
9629         * configure.ac: Bump to 2.59a.
9630         Require 2.59.
9632 2003-11-06  Akim Demaille  <akim@epita.fr>
9634         Version 2.59.
9636 2003-11-05  Alexandre Duret-Lutz  <adl@gnu.org>
9638         * lib/autoconf/status.m4 (_AC_SRCPATHS): Fix use of AS_SET_CATFILE
9639         so that ac_abs_builddir, ac_abs_top_builddir, ac_abs_srcdir,
9640         and ac_abs_top_srcdir are absolute paths.
9641         * lib/m4sugar/m4sh.m4 (AS_SET_CATFILE): Remove misleading comment.
9643 2003-11-05  Akim Demaille  <akim@epita.fr>
9645         * configure.ac: Bump to 2.58a.
9647 2003-11-05  Kevin Ryde  <user42@zip.com.au>
9649         * doc/autoconf.texi (Using Autotest): Avoid @strong{Note: ...}, since
9650         it provokes a warning from makeinfo about looking like a cross
9651         reference in info output.
9653         * doc/autoconf.texi (Function Portability): Add notes on signal
9654         handler return type, as per AC_TYPE_SIGNAL.
9656 2003-11-04  Akim Demaille  <akim@epita.fr>
9658         Version 2.58.
9659         * doc/standards.texi: Update from master.
9661         * tests/mktests.sh (ac_exclude_list): Add AC_FC_FREEFORM.
9663 2003-11-04  Akim Demaille  <akim@epita.fr>
9665         AC_CONFIG_FILE([d1/foo:d2/foo]) triggers error messages when
9666         computing the absolute path to d1 in the source hierarchy: it may
9667         not exist at all.  So don't cd into it.
9668         From Alexandre Duret-Lutz.
9669         http://mail.gnu.org/archive/html/bug-autoconf/2003-10/msg00205.html
9671         * lib/m4sugar/m4sh.m4 (AS_SET_CATFILE): New.
9672         From Paul Eggert, but named after Perl's IO::Spec->catfile.
9673         * doc/autoconf.texi (Programming in M4sh): Document.
9674         * lib/autoconf/status.m4 (_AC_SRCPATHS): Use it.
9676 2003-11-03  Pavel Roskin  <proski@gnu.org>
9678         * doc/autoconf.texi (Generic Structure Checks): Describe
9679         action-if-found and action-if-not-found in AC_CHECK_MEMBERS.
9681 2003-10-31  Akim Demaille  <akim@epita.fr>
9683         * tests/fortran.at (GNU Fortran 77): Don't run FC macros.
9684         (GNU Fortran): New.
9685         * doc/autoconf.texi (Language Choice): Document.
9686         * lib/autoconf/fortran.m4 (AC_FC_SRCEXT, AC_FC_FREEFORM): Assert
9687         the current language is Fortran.
9689 2003-10-31  Akim Demaille  <akim@epita.fr>
9691         * bin/autom4te.in (&freeze): Use a less likely warning separator
9692         than `\n\n', so that `\n\n\n' is valid in warnings.
9693         Reported by Steve Huston.
9695 2003-10-28  Akim Demaille  <akim@epita.fr>
9697         * Makefile.cfg (local_updates, executable-update): Tweak to be
9698         robust to parallel makes.
9699         Suggested by Alexandre Duret-Lutz.
9701 2003-10-27  Akim Demaille  <akim@epita.fr>
9703         * Makefile.cfg (executable-update): New.
9704         (local_updates): Call it.
9706 2003-10-27  Akim Demaille  <akim@epita.fr>
9708         * lib/autoconf/general.m4 (_AC_RUN_IFELSE, _AC_INIT_PREPARE):
9709         Don't remove core.* as it may remove valid user files.
9710         * lib/autoconf/functions.m4 (AC_FUNC_SETVBUF_REVERSED)
9711         (AC_FUNC_UTIME_NULL): Likewise.
9713 2003-10-23  Akim Demaille  <akim@epita.fr>
9715         Version 2.57g.
9716         * config/config.guess, config/config.sub: Upgrade from masters.
9718 2003-10-23  Akim Demaille  <akim@epita.fr>
9720         * lib/autoconf/fortran.m4 (AC_FC_SRCEXT): Functions using
9721         AC_COMPILE_IFELSE that use break skip the clean up.  So do it by
9722         hand...
9724 2003-10-23  Akim Demaille  <akim@epita.fr>
9726         * lib/autoconf/general.m4 (_AC_LINK_IFELSE, _AC_COMPILE_IFELSE):
9727         Don't forget to remove conftest.err.
9729 2003-10-23  Akim Demaille  <akim@epita.fr>
9731         * lib/autoconf/general.m4 (_AC_LIBOBJ): Don't insert twice the
9732         same object file in $LIBOBJS.
9733         Reported by Alexandre Duret-Lutz & Derek Robert Price.
9734         * doc/autoconf.texi (Generic Functions): Adjust.
9736 2003-10-20  Paul Eggert  <eggert@twinsun.com>
9738         * lib/m4sugar/m4sh.m4 (_AS_TR_SH_PREPARE, _AS_TR_CPP_PREPARE):
9739         Use 'eval', so that the resulting configure scripts work even if
9740         the current directory has a weird file name like 'y%s+%pp%;s%@%_%g'.
9742 2003-10-20  Daniel Jacobowitz  <drow@mvista.com>
9744         * lib/autoconf/lang.m4 (AC_LANG_WERROR): New macro.
9745         * lib/autoconf/general.m4 (_AC_COMPILE_IFELSE, _AC_PREPROC_IFELSE)
9746         (_AC_LINK_IFELSE): Check the werror flag.
9747         * doc/autoconf.texi (Generic Compiler Characteristics): Document
9748         AC_LANG_WERROR.
9749         * NEWS: Mention it.
9751 2003-10-20  Daniel Jacobowitz  <drow@mvista.com>
9753         * lib/autoconf/lang.m4 (AC_NO_EXECUTABLES): Override
9754         _AC_COMPILER_EXEEXT to attempt a link.  If linking fails,
9755         override AC_LINK_IFELSE.
9757 2003-10-15  Paul Eggert  <eggert@twinsun.com>
9759         * lib/m4sugar/m4sh.m4 (_AS_UNSET_PREPARE): Work around a bug in
9760         pdksh 5.2.14.  Bug reported by Ralf Corsepius.
9761         * doc/autoconf.texi (Shellology): Mention the Korn shell and pdksh.
9762         Mention /usr/dt/bin/dtksh on Solaris.
9763         (Shell Substitutions): Warn about $((...)).
9764         (Parentheses): New section.
9766 2003-10-15  Kevin Ryde  <user42@zip.com.au>
9768         * doc/autoconf.texi (Function Portability): Add @prindex for exit.
9769         Add putenv and unsetenv.  Add sysconf _SC_PAGE_SIZE.
9771 2003-10-13  Nathanael Nerode  <neroden@gcc.gnu.org>
9773         * lib/autoconf/functions.m4 (AC_FUNC_FORK): Trivial fix for vfork
9774         cross test.
9776 2003-10-11  Steven G. Johnson  <stevenj@alum.mit.edu>
9778         * lib/autoconf/fortran.m4 (_AC_PROG_FC): Use the new official
9779         name for the GNU Fortran 95+ compiler, 'gfortran', not 'g95'.
9781 2003-10-10  Andreas Schwab  <schwab@suse.de>
9783         * bin/autoheader.in: Avoid empty first line in --version and
9784         --help output.
9785         * bin/ifnames.in: Likewise.
9787 2003-10-09  Paul Eggert  <eggert@twinsun.com>
9789         * lib/Autom4te/XFile.pm: Don't assume -j is solo.
9790         Issue a more-informative diagnostic.
9791         Problems reported by Eric Sunshine.
9793 2003-10-08  Steven G. Johnson  <stevenj@alum.mit.edu>
9795         * lib/autoconf/fortran.m4 (_AC_PROG_FC_V_OUTPUT): Omit quoted
9796         -mGLOB_options_string stuff for Intel ifc, which can cause
9797         _AC_FC_LIBRARY_LDFLAGS to fail.  Use (faster) case for
9798         pattern-matching instead of grep.
9800 2003-10-08  Steven G. Johnson  <stevenj@alum.mit.edu>
9802         * doc/autoconf.texi: Document new FC Fortran macros.
9804 2003-10-08  Gary V. Vaughan  <gary@gnu.org>
9806         * lib/autoconf/general.m4 (AC_CONFIG_MACRO_DIR): Stub out a macro
9807         that future autopoint/aclocal/automake/autoreconf will be able
9808         to trace to find where to install local m4 macros.
9809         * doc/autoconf.texi (Input): Document it.
9810         * NEWS: Updated.
9812 2003-10-06  Gary V. Vaughan  <gary@gnu.org>
9814         * lib/autoconf/fortran.m4 (_AC_FC_LIBRARY_LDFLAGS): Add
9815         -lcrtbegin.o to list of ignored flags and fix underquoting of
9816         -lcrt[01].o.
9818 2003-10-04  Steven G. Johnson  <stevenj@ab-initio.mit.edu>
9820         * lib/autoconf/fortran.m4 (_AC_PROG_FC_G): Use language-specific
9821         cache variable instead of $G77 to decide whether to include -O2,
9822         since $G77 is specific to Fortran 77.
9824 2003-10-03  Steven G. Johnson  <stevenj@alum.mit.edu>
9826         * lib/autoconf/fortran.m4 (AC_FC_FREEFORM): Support Absoft "-f
9827         free" flag.  Re-order flags tested into rough order of popularity.
9829 2003-10-03  Steven G. Johnson  <stevenj@alum.mit.edu>
9831         * lib/autoconf/fortran.m4 (AC_PROG_FC): Reverse the order of the
9832         arguments so that it can be used with syntax identical to
9833         AC_PROG_F77, and so that we can more easily decide to
9834         remove/deprecate the DIALECT optional argument in the future if it
9835         proves troublesome.
9836         (AC_FC_FREEFORM): Exit 77 upon failure to fix test suite for
9837         non-freeform-supporting compilers.  Document freeform flags.
9839 2003-10-03  Akim Demaille  <akim@epita.fr>
9841         * configure.ac: Look for emacs, not macs.
9842         Reported by Eric Sunshine.
9844 2003-10-03  Akim Demaille  <akim@epita.fr>
9846         * lib/autom4te.in (Autoreconf-preselections): Trace AC_CONFIG_AUX_DIR.
9847         * bin/autoreconf.in (autoreconf_current_directory): Create the
9848         AUX_DIR if needed, for sake of automake --add-missing etc.
9849         Suggested by Alexandre Duret-Lutz.
9851 2003-10-03  Akim Demaille  <akim@epita.fr>
9853         * configure.ac: Quotation and formatting changes.
9854         (EMACS): Don't set it if it is not recent enough to support
9855         autoconf-mode.el.
9856         From Eric Sunshine.
9858 2003-10-02  Akim Demaille  <akim@epita.fr>
9860         * bin/ifnames.in (&scan_file): Skip C++ comments.
9861         From Jeremy Yallop.
9863 2003-10-01  Pavel Roskin  <proski@gnu.org>
9865         * doc/autoconf.texi (Particular Structure Checks):
9866         Fix misspelling of HAVE_STRUCT_STAT_ST_BLOCKS.
9868 2003-10-01  Akim Demaille  <akim@epita.fr>
9870         Version 2.57f.
9872 2003-09-30  Paul Eggert  <eggert@twinsun.com>
9874         * lib/Autom4te/XFile.pm: Use Errno.
9875         (lock): Ignore ENOLCK errors.  Problem reported Andreas Schwab in
9876         <http://mail.gnu.org/archive/html/bug-autoconf/2003-09/msg00141.html>.
9878 2003-09-30  Akim Demaille  <akim@epita.fr>
9880         * config/announce-gen (&print_news_deltas): Extracted from...
9881         (&print_changelog_deltas): here.
9882         (&news_file): Rename as...
9883         (@news_file): this.
9885 2003-09-30  Nicolas Joly  <njoly@pasteur.fr>
9887         * lib/autoconf/fortran.m4 (_AC_PROG_FC): Remove files which might
9888         have been created when invoking the compiler.
9889         * tests/fortran.at (GNU Fortran 77): Quote $G77.
9891 2003-09-29  Akim Demaille  <akim@epita.fr>
9893         Version 2.57e.
9895         * config/mkinstalldirs: Upgrade.
9897 2003-09-28  Paul Eggert  <eggert@twinsun.com>
9899         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Set DUALCASE=1, for MKS sh.
9900         Problem reported by Lars J. Aas in
9901         <http://mail.gnu.org/archive/html/autoconf/2003-07/msg00042.html>.
9902         (_AS_MKDIR_P_PREPARE): Change "rm -fr ./-p" to the more-conservative
9903         "test -d ./-p && rmdir ./-p".  Suggested by Andreas Schwab in:
9904         http://mail.gnu.org/archive/html/autoconf-patches/2003-09/msg00039.html
9906 2003-09-26  Akim Demaille  <akim@epita.fr>
9908         * lib/autoconf/status.m4 (_AC_OUTPUT_COMMANDS): Make sure the
9909         directory for AC_CONFIG_COMMANDS' first argument exists.
9910         This makes valid the invocation of _AC_SRCPATH that follows.
9911         Reported by Eric Sunshine.
9912         * doc/autoconf.texi (Configuration Commands): Adjust.
9914 2003-09-26  Akim Demaille  <akim@epita.fr>
9916         * bin/autoscan.in (Autom4te::FileUtils): Use it for find_file.
9917         Reported by Ralf Corsepius.
9919 2003-09-26  Akim Demaille  <akim@epita.fr>
9921         * lib/autoconf/general.m4 (AC_HELP_STRING): Don't overquote the
9922         arguments.
9923         Actually, use AU_ALIAS.
9924         From Bruno Haible.
9926 2003-09-26  Paul Eggert  <eggert@twinsun.com>
9928         * lib/m4sugar/m4sh.m4 (_AS_MKDIR_P_PREPARE): If mkdir -p . fails,
9929         rm -fr ./-p to remove junk left behind on NextStep and OpenStep.
9930         Problem reported by Eric Sunshine in:
9931         http://mail.gnu.org/archive/html/autoconf-patches/2002-12/msg00014.html
9933 2003-09-26  Akim Demaille  <akim@epita.fr>
9935         The test suite are sometimes assigning timings incorrectly.
9936         Reported by Henk Krus.
9937         Diagnosed by Nicolas Joly.
9939         * lib/autotest/general.m4 (AT_CLEANUP): Rename AT_help as
9940         AT_help_all.
9941         Instead of making AT_help a sequence of assignments to grow
9942         $at_help_all, just make AT_help_all be the growing contents of
9943         $at_help_all, and make a single assignment in...
9944         (AT_INIT): here.
9945         (at_times_skip): Flip the meaning and rename as...
9946         (at_times_p): this.
9947         (AT_INIT): When summarizing the test that ran, remove
9948         $at_times_file after use, and check it is present before trying to
9949         use it.
9951 2003-09-25  Akim Demaille  <akim@epita.fr>
9953         Version 2.57d.
9955         * bin/Makefile.am (edit): Handle '@configure_input@'.
9956         (autoconf, autoheader, autom4te, autoreconf, autoscan, autoupdate)
9957         (ifnames): chmod -w.
9958         * tests/wrapper.as (AUTOCONF, AUTOM4TE, ): Point to tests/
9959         executables, not bin/ executables!  Otherwise all the magic needed
9960         to find non installed files is turned off.  This caused a failure
9961         of test 40 and 41 that ran aclocal 1.8 which in turn ran autom4te
9962         as found in its environment (sent by tests/autoreconf): pointing
9963         to bin/autom4te that could not find its files.
9964         * tests/mktests.sh: Force the replacement of generated files, for
9965         the sake of "mv" program that are interactive when overwriting a
9966         -w file.
9967         * config/install-sh: Upgrade from CVS Automake.
9969 2003-09-23  Paul Eggert  <eggert@twinsun.com>
9971         * doc/autoconf.texi (Limitations of Builtins): Document test -h
9972         versus test -L issues.
9974 2003-09-23  Daniel Jacobowitz  <drow@mvista.com> and
9975             Paul Eggert  <eggert@twinsun.com>
9977         Trivial change to support GCC's configuration procedure.
9978         * lib/autoconf/c.m4 (AC_PROG_CPP_WERROR): New macro.
9979         * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_MONGREL): Don't warn
9980         about inconsistency if the preprocessor is set to give errors for
9981         any warning.
9982         * doc/autoconf.texi (C Compiler Characteristics): Document this.
9984 2003-09-13  Alexandre Duret-Lutz  <adl@gnu.org>
9986         * Makefile.am (autom4te-update, autom4te_files): Fetch Struct.pm
9987         and XFile.pm from Automake.
9988         * lib/Autom4te/XFile.pm: Update from Automake.
9990 2003-09-12  Akim Demaille  <akim@epita.fr>
9992         Version 2.57c.
9994 2003-09-12  Akim Demaille  <akim@epita.fr>
9996         * config/config.guess, config/config.sub, config/missing,
9997         * lib/Autom4te/Channels.pm, lib/Autom4te/Configure_ac.pm: Update
9998         from masters.
10000 2003-09-12  Akim Demaille  <akim@epita.fr>
10002         * doc/autoconf.texi (Header Portability): Promote linux/types.h,
10003         not asm/types.h.
10005 2003-09-11  Akim Demaille  <akim@epita.fr>
10007         * doc/autoconf.texi (Header Portability): linux/random.h.
10008         From Peter Hendrickson.
10010 2003-09-10  Akim Demaille  <akim@epita.fr>
10012         * tests/mktests.sh (au_exclude_egrep): Make it harder to be
10013         willing to edit the output files.
10015 2003-09-10  Akim Demaille  <akim@epita.fr>
10017         * tests/fortran.at (GNU Fortran 77): Also exercise AC_FC_SRCEXT
10018         and AC_FC_FREEFORM.
10019         * tests/mktests.sh: Skip AC_FC_SRCEXT.
10020         * lib/autoconf/fortran.m4 (AC_FC_SRCEXT, AC_FC_FREEFORM): Likewise.
10022 2003-09-09  Akim Demaille  <akim@epita.fr>
10024         * lib/Autom4te/FileUtils.pm (&update_file): s/cannot not/cannot/g.
10025         Reported by Gary Vaughan.
10026         * bin/autom4te.in (handle_m4): Likewise.
10028 2003-09-09  Akim Demaille  <akim@epita.fr>
10030         * lib/Autom4te/FileUtils.pm (&update_file): Be sure not to leave
10031         trailing files.
10033 2003-09-07  Paul Eggert  <eggert@twinsun.com>
10035         * lib/autoconf/specific.m4 (AC_SYS_RESTARTABLE_SYSCALLS):
10036         Improve the accuracy of the wording about obsolescence.
10037         From a suggestion by Ian Lance Taylor in
10038         <http://mail.gnu.org/archive/html/autoconf/2003-09/msg00044.html>.
10040 2003-09-05  Paul Eggert  <eggert@twinsun.com>
10042         * lib/autoconf/fortran.m4 (AC_FC_FREEFORM): Try -ffree-form too,
10043         for the benefit of g77 3.2.  Fix suggested by Steven G. Johnson.
10045 2003-09-04  Akim Demaille  <akim@epita.fr>
10047         * tests/mktests.sh (ac_exclude_list): Fix the filtering of
10048         AC_FUNC_WAIT3.
10050 2003-09-04  Akim Demaille  <akim@epita.fr>
10052         * bin/autom4te.in: Use &fatal where more appropriate than &error.
10053         (freeze): When exiting, use $exit_code.
10054         * lib/autoconf/fortran.m4: Comment changes.
10056 2003-09-04  Akim Demaille  <akim@epita.fr>
10058         * tests/mktests.sh (ac_exclude_list): Add AC_FC_FUNC.
10060 2003-09-02  Steven G. Johnson  <stevenj@alum.mit.edu>
10062         Add support for newer Fortran dialects.  The F77 interface is
10063         unchanged, and continues to support Fortran 77.  New FC macros
10064         correspond to all the old F77 macros, with output variables FC,
10065         FCFLAGS, and FCLIBS.  AC_PROG_FC defaults to picking the newest
10066         available dialect, but older dialects can be specified.  There are
10067         new macros AC_FC_SRCEXT to set the source extension, and
10068         AC_FC_FREEFORM to accept free-form source files.
10070         * lib/autoconf/c.m4 (_AC_LANG_PREFIX(C), _AC_LANG_PREFIX(C++)):
10071         New macros.
10072         (AC_LANG_PROGRAM(C)): Invoke _AC_LANG_PROGRAM_C_FC_HOOKS if defined.
10073         * lib/autoconf/fortran.m4 (AC_LANG(Fortran), _AC_FORTRAN_ASSERT,
10074         _AC_LANG_ABBREV(Fortran), _AC_LANG_PREFIX(Fortran 77),
10075         _AC_LANG_PREFIX(Fortran), _AC_FC, AC_LANG_SOURCE(Fortran),
10076         AC_LANG_PROGRAM(Fortran), AC_LANG_CALL(Fortran),
10077         AC_LANG_PREPROC(Fortran), AC_LANG_COMPILER(Fortran),
10078         _AC_FC_DIALECT_YEAR, _AC_F95_FC, _AC_F90_FC, _AC_F77_FC,
10079         _AC_PROG_FC, AC_PROG_FC, _AC_PROG_FC_G, _AC_PROG_FC_C_O,
10080         AC_PROG_FC_C_O, _AC_PROG_FC_V_OUTPUT, _AC_PROG_FC_V,
10081         _AC_FC_LIBRARY_LDFLAGS, AC_FC_LIBRARY_LDFLAGS, _AC_FC_DUMMY_MAIN,
10082         AC_FC_DUMMY_MAIN, _AC_FC_MAIN, AC_FC_MAIN, __AC_FC_NAME_MANGLING,
10083         _AC_FC_WRAPPERS, AC_FC_WRAPPERS, _AC_FC_FUNC, AC_FC_FUNC,
10084         AC_FC_SRCEXT, AC_FC_FREEFORM):
10085         New macros.
10086         (AC_PROG_F77, AC_PROG_F77_C_O, AC_F77_LIBRARY_LDFLAGS,
10087         AC_F77_DUMMY_MAIN, AC_F77_MAIN, _AC_F77_NAME_MANGLING,
10088         AC_F77_NAME_MANGLING, AC_F77_WRAPPERS, AC_F77_FUNC):
10089         Rewrite in terms of the above.
10090         (_AC_PROG_F77_G, _AC_PROG_F77_V_OUTPUT, _AC_PROG_F77_V): Remove.
10091         * lib/autoconf/lang.m4 (_AC_LANG_PREFIX): New macro.
10092         * tests/acfortran.at: Test AC_FC_FREEFORM, AC_FC_FUNC,
10093         AC_FC_MAIN, AC_FC_SRCEXT, AC_FC_WRAPPERS, AC_PROG_FC_C_O.
10095 2003-09-02  Paul Eggert  <eggert@twinsun.com>
10097         * doc/autoconf.texi (Limitations of Usual Tools, Limitations of Make):
10098         Document problems with timestamp resolution that 'make', 'cp -p', and
10099         'touch -r' have.
10101 2003-08-27  Akim Demaille  <akim@epita.fr>
10103         * tests/m4sugar.at (cross_warning): Make sure to enable the
10104         output, so that we can track spurious m4sugar output.
10105         * tests/local.at: Require 2.57.
10106         (AT_CHECK_M4SUGAR, AT_CHECK_M4SH): Don't m4_default the arguments that
10107         are defaulted by AT_CHECK anyway.
10108         Use AT_CHECK_AUTOM4TE.
10109         * lib/m4sugar/m4sugar.m4: There should be no output at all: add a
10110         missing dnl.
10112 2003-08-27  Akim Demaille  <akim@epita.fr>
10114         * bin/autoheader.in: Issue the "Using auxiliary..." message only
10115         when -Wobsolete is set.
10116         Set it on by default.
10117         Suggested by Klee Dienes.
10119 2003-08-27  Akim Demaille  <akim@epita.fr>
10121         * doc/autoconf.texi (AC_FUNC_FSEEKO, AC_SYS_LARGEFILE): More
10122         documentation.
10123         From Guido Draheim.
10125 2003-08-26  Akim Demaille  <akim@epita.fr>
10127         * doc/autoconf.texi (Output): Make clear that one can run code
10128         after AC_OUTPUT.
10130 2003-08-25  Akim Demaille  <akim@epita.fr>
10132         * config/announce-gen, GNUmakefile, Makefile.maint: Update from
10133         CVS Bison.
10135 2003-08-25  Alexandre Duret-Lutz  <adl@gnu.org>
10137         * bin/autoreconf.in (parse_args): Do not pass --no-force to
10138         Automake versions prior to 1.8.
10140 2003-08-25  Akim Demaille  <akim@epita.fr>
10142         * doc/autoconf.texi (Header Portability): netinet/if_ether.h.
10143         From Ville Karaila.
10145 2003-08-24  Akim Demaille  <akim@epita.fr>
10147         * configure.ac: Bump to 2.57c.
10149 2003-08-22  Akim Demaille  <akim@epita.fr>
10151         Version 2.57b.
10153         * Makefile.cfg (local-checks-to-skip): New.
10154         * Makefile.maint (local-check): Rename as...
10155         (local-checks-available): this.
10156         (local-check): New.
10158         * Makefile.am (EXTRA_DIST): Add Makefile.cfg.
10159         * configure.ac: Require Automake 1.7.6.
10161 2003-08-22  Akim Demaille  <akim@epita.fr>
10163         Output stack traces in warnings.
10165         * lib/m4sugar/m4sugar.m4 (_m4_warn): New.
10166         Replace the former...
10167         (m4_warn): Pass the call stack to _m4_warn.
10168         * bin/autom4te.in: Adjust to output the call stack.
10169         * tests/m4sugar.at (m4@&t@_warn): Adjust.
10171 2003-08-22  Akim Demaille  <akim@epita.fr>
10173         * lib/Autom4te/Request.pm, lib/Autom4te/C4che.pm: New.
10174         * bin/autom4te.in: Adjust.
10176 2003-08-21  Akim Demaille  <akim@epita.fr>
10178         * lib/Autom4te/General.pm (&file_name_is_absolute): Remove.
10179         (&verbose): Remove.
10180         (&getopt): Adjust the note and verb channels, depending upon
10181         --verbose.
10182         * bin/autoheader.in, bin/autom4te.in, bin/autoscan.in,
10183         * bin/autoupdate.in: Adjust.
10184         Use &verb, not &verbose.
10186 2003-08-21  Akim Demaille  <akim@epita.fr>
10188         * bin/autoheader.in (&parse_args): Use &parse_warnings and
10189         &parse_WARNINGS.
10190         ($help): Use Autom4te::ChannelDefs::usage.
10191         * bin/autoscan.in: Use Autom4te::ChannelDefs.
10192         * lib/Autom4te/General.pm: Don't export error: you don't own it.
10194 2003-08-21  Akim Demaille  <akim@epita.fr>
10196         First stab at preserving warnings between calls to autom4te,
10197         including when the cache is used.
10199         There are still several issues: (i) there are too many runs of m4
10200         (one for include, one for warnings, and some more), (ii) warnings
10201         spreading on several lines are not handled gracefully, (iii) the
10202         code meant to have the call stack display for errors does not work
10203         (its handling should move from m4 to autom4te).
10205         * bin/autom4te.in Autom4te::Channels, Autom4te::ChannelDefs):
10206         Use them.
10207         (@preselect): Add m4_warn.
10208         ($exit_status): Remove, use $exit_code.
10209         ($help): Use Autom4te::ChannelDefs::usage.
10210         (&handle_m4): No longer define the m4_warnings.
10211         At each run, extract and report the warnings.
10212         Always cache the result, including if the exit status is on
10213         failure, since if nothing changes, we should result in the same
10214         failure, hence we can use the cache.
10215         * lib/m4sugar/m4sugar.m4 (m4_warning_ifelse, _m4_warning_ifelse)
10216         (_m4_warning_error_ifelse, __m4_warning_error_ifelse, _m4_warn):
10217         Remove.
10218         (m4_warn): Redefine as a do-nothing: it is its invocation that
10219         matters, as warnings are now reported via traces.
10220         * lib/autoconf/general.m4 (AC_DIAGNOSE): Don't make it a copy of
10221         the contents of m4_warn: make it _call_ m4_warn, so that tracing
10222         the latter reveals calls to the former.
10224         Adjust the tests.
10226         * tests/m4sugar.at (m4@&t@_warn): Use existing warning categories.
10228 2003-08-21  Akim Demaille  <akim@epita.fr>
10230         * bin/autoreconf.pm (Autom4te::Channels, Autom4te::ChannelDefs):
10231         Use them.
10233 2003-08-21  Akim Demaille  <akim@epita.fr>
10235         * lib/Autom4te/FileUtils.pm (&find_file): Walk the @include in
10236         forward order.
10237         * lib/Autom4te/ChannelDefs.pm: Doc typos.
10238         (&parse_warnings): Accept a list of warning requests.
10239         (&usage): Return a string, not a side effect.
10240         (cross): New warning category.
10242 2003-08-21  Akim Demaille  <akim@epita.fr>
10244         * lib/Autom4te/Configure_ac.pm (&find_configure_ac)
10245         (&require_configure_ac): Accept an optional directory argument.
10246         ($configure_ac): Remove.
10247         * lib/Autom4te/General.pm (&find_configure_ac, &canonfile)
10248         (&catfile): Remove.
10249         * bin/autoheader.in, bin/autoreconf.in, bin/autoupdate.in,
10250         * bin/autoscan.in: Adjust.
10252 2003-08-20  Akim Demaille  <akim@epita.fr>
10254         * bin/autoheader.in: Remove duplicate 'use Autom4te::FileUtils'.
10255         Reported by Alexandre Duret-Lutz.
10257 2003-08-20  Akim Demaille  <akim@epita.fr>
10259         * bin/autoupdate.in, bin/autoheader.in, bin/autoreconf.in,
10260         * bin/autom4te: Adjust.
10261         In particular, be Autoconf tools are really silent when properly
10262         working, bind the verbosity of the 'note' channel to $verbose.
10263         * lib/Autom4te/General.pm (&find_file, &mtime, &update_file)
10264         (&xsystem, &contents): Remove, since they are exported by...
10265         * lib/Autom4te/FileUtils.pm: this.
10266         More perldoc.
10267         * lib/Autom4te/General.pm (&up_to_date_p): Move to...
10268         * lib/Autom4te/FileUtils.pm: here.
10270 2003-08-20  Akim Demaille  <akim@epita.fr>
10272         * lib/Autom4te/Channels.pm, lib/Autom4te/ChannelDefs.pm
10273         * lib/Autom4te/Configure_ac.pm, lib/Autom4te/FileUtils.pm: New,
10274         from CVS Automake.
10276 2003-08-20  Akim Demaille  <akim@epita.fr>
10278         * Makefile.am (automake_cvsweb, automake_cvsargs, autom4te_files)
10279         (autom4te-update): New.
10280         * Makefile.cfg (update): Bind autom4te-update.
10282 2003-08-19  Derek Price  <derek@ximbiot.com>
10284         * lib/autotest/general.m4: Comment various HELP_* diversions.
10285         (PARSE_ARGS_BEGIN): New section for option parsing related
10286         initialization.
10287         (AT_ARG_OPTION,AT_ARG_OPTION_ARG,_AT_ARG_OPTION): New macros to define
10288         package specific options and associated help.
10290 2003-08-19  Akim Demaille  <akim@epita.fr>
10292         * config/announce-gen, Makefile.cfg: New.
10293         * Makefile.am: Adjust.
10294         * GNUmakefile, Makefile.maint: Update from CVS Coreutils.
10296 2003-08-19  Alexandre Duret-Lutz  <adl@gnu.org>
10298         * lib/autom4te.in (Automake-preselections): Preselect
10299         AC_CONFIG_LIBOBJ_DIR, AC_CONFIG_LINKS, m4_include,
10300         and m4_sinclude.
10302 2003-08-19  Alexandre Duret-Lutz  <adl@gnu.org>
10304         * lib/autom4te.in (Autoconf): Move all args except aclocal.m4? into ...
10305         (Autoconf-without-aclocal-m4): ... this new language.
10306         * doc/autoconf.texi (autom4te Invocation): Mention
10307         Autoconf-without-aclocal-m4.
10309 2003-08-18  Derek Price  <derek@ximbiot.com>
10311         * doc/autoconf.texi (Writing testsuite.at): Document RUN-IF-FAIL &
10312         RUN-IF-PASS optional arguments.
10314 2003-08-18  Derek Price  <derek@ximbiot.com>
10316         * doc/autoconf.texi (Programming in M4sh): Add doc for AS_IF.
10318 2003-08-16  Derek Price  <derek@ximbiot.com>
10320         * doc/autoconf.texi (Writing testsuite.at): Document defaults for
10321         STDOUT & STDERR arguments.
10323 2003-08-14  Derek Price  <derek@ximbiot.com>
10325         * lib/autotestgeneral.m4 (AT_INIT): Reformat test summary line to print
10326         DESCRIPTION rather than FILE and LINE.  Shorten result to fit in new,
10327         shorter column three.  Add DESCRIPTION to log file content.
10329 2003-08-13  Derek Price  <derek@ximbiot.com>
10331         * lib/autotest/general.m4 (AT_INIT): Correct typo in final status
10332         output.
10334 2003-08-12  Derek Price  <derek@ximbiot.com>
10336         * lib/autotest/general.m4 (AT_CHECK): Use new _AT_CHECK API.
10337         (AT_CHECK_NOESCAPE): Move core functionality to...
10338         (_AT_CHECK): ...this new macro.
10340 2003-08-07  Derek Price  <derek@ximbiot.com>
10342         * lib/autotest/general.m4 (AT_CHECK): Move core functionality...
10343         (AT_CHECK_NOESCAPE): ...to this new macro.
10345 2003-07-31  Paul Eggert  <eggert@twinsun.com>
10347         * lib/m4sugar/m4sh.m4 (_AS_UNSET_PREPARE): Work around a bug
10348         in Bash 2.01.  Problem reported by Brian Gough in
10349         <http://mail.gnu.org/archive/html/bug-autoconf/2003-07/msg00106.html>.
10351 2003-07-25  John W. Eaton  <jwe@bevo.che.wisc.edu>
10353         * lib/autoconf/fortran.m4 (AC_F77_LIBRARY_LDFLAGS): Also ignore
10354         -lcrt1.o, for OS X.  (trivial change)
10356 2003-07-07  Paul Eggert  <eggert@twinsun.com>
10358         * lib/autoconf/c.m4 (AC_C_INLINE): Wrap the '#define inline ...'
10359         inside '#ifndef __cplusplus'.  Problem reported by
10360         Bob Friesenhahn.
10362 2003-07-06  Bill Clarke  <llib@computer.org>
10364         * lib/autoconf/functions.m4 (AC_FUNC_MMAP): Cast pointer to
10365         'long', not 'int', for benefit of Sun's recent C++ compilers
10366         (trivial change).  See:
10367         http://mail.gnu.org/archive/html/autoconf-patches/2003-07/msg00007.html
10368         (This really should be 'intptr_t', not 'long', but that would
10369         take more work.)
10371 2003-06-25  Akim Demaille  <akim@epita.fr>
10373         * lib/Makefile.am (autom4te.cfg): Make it read only.
10374         Depend on Makefile since it contains substitutions.
10375         From Paolo Bonzini.
10376         * lib/autom4te.in (args): Add local.at? for Autotest args.
10377         This change was made on autom4te.cfg which is generated.
10378         Reported by Raja R. Harinath.
10380 2003-06-25  Akim Demaille  <akim@epita.fr>
10382         * doc/autoconf.texi (Header Portability): sys/mount.h.
10383         From Gareth McCaughan.
10385 2003-06-23  Akim Demaille  <akim@epita.fr>
10387         * lib/autotest/general.m4 (AT_INIT): Report a single config.log,
10388         not all of them.  This fixes 1. the fact that when testing
10389         Autoconf there are many many config.log, 2. the incorrect use of
10390         top_srcdir to find config.log.
10391         Don't mix the detailed output of failed test with the summary of
10392         failures.  Rather, append detailed log afterwards.
10394 2003-06-23  Akim Demaille  <akim@epita.fr>
10396         * tests/local.at (AT_CHECK_CONFIGURE): Adjust to the verbose being
10397         always run: output config.log on $at_group_log.
10399 2003-06-23  Akim Demaille  <akim@epita.fr>
10401         * tests/torture.at (#define header templates): Don't use quotes in
10402         C++ comments as it puzzles Emacs' sh font-lock-mode.
10404 2003-06-23  Akim Demaille  <akim@epita.fr>
10406         * tests/mktests.sh (au_exclude_egrep): Fix output copyright notice.
10407         * lib/autom4te.cfg (args): Add local.at? for Autotest args.
10408         * tests/atspecific.m4: Rename as...
10409         * tests/local.at: This.
10410         * tests/suite.at: Move the globals into...
10411         * tests/local.at: here.
10412         * tests/Makefile.am: Adjust.
10413         * doc/autoconf.texi (testsuite Scripts): Adjust.
10415 2003-06-21  Kevin Ryde  <user42@zip.com.au>
10417         * lib/autoconf/c.m4 (_AC_PROG_CC_STDC): Extend test program to get an
10418         error from OSF 4.0 Compaq cc in its default almost-ANSI mode, thereby
10419         ensuring we add -std1 for full-ANSI.
10421         * doc/autoconf.texi (hdrindex): New macro.
10422         Add index entries for portability of various standard header files.
10424 2003-06-20  Akim Demaille  <akim@epita.fr>
10426         * configure.ac: Bump to 2.57b.
10428 2003-06-20  Akim Demaille  <akim@epita.fr>
10430         Version 2.57a.
10432 2003-06-20  Akim Demaille  <akim@epita.fr>
10434         * bin/autom4te.in: Don't rely on $HOME being defined.
10435         Reported by Marc Espie as PR/233.
10437 2003-06-20  Akim Demaille  <akim@epita.fr>
10439         * lib/autotest/general.m4: Use at_times_file only if used.
10440         From Nicolas Joly.
10442 2003-06-20  Akim Demaille  <akim@epita.fr>
10444         * config/config.guess, config/config.sub, config/elisp-comp,
10445         * config/install-sh, config/mkinstalldirs, doc/standards.texi:
10446         Update from masters.
10448 2003-06-11  Paolo Bonzini  <bonzini@gnu.org>
10450         * doc/autoconf.texi (Writing testsuite.at): Document AT_XFAIL_IF
10451         * lib/autotest/general.m4 (AT_XFAIL_IF): New macro.
10452         (TEST_SCRIPT): New diversion.
10453         (AT_SETUP): Divert output to TEST_SCRIPT and move some code...
10454         (AT_CLEANUP): ...to here.  Undivert TEST_SCRIPT.
10455         (AT_INIT): Support for expected failures.
10457 2003-06-02  Akim Demaille  <akim@epita.fr>
10459         * bin/autom4te.in, bin/autoscan.in, bin/autoheader.in: White space
10460         changes.
10461         * lib/Autom4te/General.pm (&backname): Remove, no longer used by
10462         Autoconf nor Automake.
10463         (&contents): New, from Automake.
10464         PODify.
10466 2003-05-28  Paul Eggert  <eggert@twinsun.com>
10468         * NEWS, doc/autoconf.texi (Particular Functions),
10469         lib/autoconf/functions.m4 (AC_FUNC_MKTIME): Check that mktime
10470         is the inverse of localtime.
10472 2003-05-25  Alexandre Duret-Lutz  <adl@gnu.org>
10474         * lib/Autom4te/General.pm (END): Print diagnostics to STDERR.
10475         (handle_exec_errors): New function.  Work around $! being
10476         altered by WEXITSTATUS.
10477         (xqx, xsystem): Use handle_exec_errors.
10479 2003-05-23  Alexandre Duret-Lutz  <adl@gnu.org>
10481         * lib/Autom4te/General.pm (END): Rewrite exit code processing.
10482         Do not call `_exit()', simply modify `$?'.
10483         (xsystem): Reset $! before running system, and check it afterward.
10484         * tests/tools.at (autoupdating AC_PREREQ): Expect exit status
10485         63 for version mismatches.
10487 2003-05-23  Akim Demaille  <akim@epita.fr>
10489         * lib/autoconf/status.m4: Prefer "TAB-SP" to "SP-TAB", because of
10490         Emacs' dangerous whitespace.el behavior (smashing "useless" spaces in
10491         the middle of a line).
10492         * lib/m4sugar/m4sugar.m4: Likewise.
10493         Remove useless spaces in comments.
10495 2003-05-23  Akim Demaille  <akim@epita.fr>
10497         * lib/m4sugar/m4sugar.m4 (m4_version_prereq): Failure causes an
10498         exit 63, so that we (or Automake's "missing") can tell the
10499         difference with a plain failure.
10500         * doc/autoconf.texi (Notices): Adjust.
10502 2003-05-23  Akim Demaille  <akim@epita.fr>
10504         * Makefile.am, bin/Makefile.am, config/Makefile.am,
10505         * doc/Makefile.am, lib/autoconf/Makefile.am, tests/Makefile.am:
10506         White spaces cleanup.
10508 2003-05-22  Jim Meyering  <jim@meyering.net>
10509             Paul Eggert  <eggert@twinsun.com>
10511         * lib/autoconf/c.m4 (_AC_PROG_CXX_EXIT_DECLARATION):
10512         Remove `#include <stdlib.h>' from the list; we should never
10513         make confdefs.h include <stdlib.h> or <cstdlib>, because the
10514         resulting namespace pollution would cause other tests to fail.
10515         Configure scripts run with some older versions of g++ and HP's
10516         aCC would fail due to such an #include.  Problems reported by
10517         Matthew Mueller in <http://bugs.debian.org/120704> and by
10518         Keith Bostic in
10519         <http://mail.gnu.org/archive/html/autoconf/2003-05/msg00063.html>.
10520         In the test, use the test declaration before including <stdlib.h>,
10521         as that's closer to how it'll be used.
10523 2003-05-23  Akim Demaille  <akim@epita.fr>
10525         * doc/autoconf.texi (Header Portability): ucred.h.
10526         From Ian Redfern.
10528 2003-05-22  Paolo Bonzini  <bonzini@gnu.org>
10530         Overhaul Autotest's logging: generate separate log files
10531         in testsuite.dir/NNN/testsuite.log, and append them to
10532         testsuite.log instead of re-running the test verbosely.
10534         * lib/autotest/general.m4 (AT_INIT): Use a single redirected
10535         file descriptor, write 0 to at_status_file instead of setting
10536         at_status=0, initialize some new variables (at_status_file,
10537         at_group_log, at_suite_log, at_tee_pipe).  Remove the cruft
10538         to rerun the tests, instead append the at_group_log to the
10539         at_suite_log when a test fails.
10540         (AT_SETUP): pipe the test case's output into at_tee_pipe,
10541         with the AS_MESSAGE_LOG_FD redirected to stdout.
10542         (AT_CLEANUP): save the output status in $at_status_file
10543         and restore it, redirect the AS_MESSAGE_LOG_FD back to
10544         its original place.
10545         (AT_CHECK): since tests are run with a redirected stdout,
10546         and used to be re-run in verbose mode, turn some $at_verbose
10547         into echo, and don't redirect the output of testing stdout
10548         and stderr.
10550         * lib/autotest/autoconf.texi (testsuite Scripts): Update
10551         the name of the debugging directory and information about
10552         its contents.
10554 2003-05-22  Paolo Bonzini  <bonzini@gnu.org>
10556         * lib/m4sugar/m4sh.m4 (AS_REQUIRE): Actually use the 2nd
10557         parameter.
10559 2003-05-22  Akim Demaille  <akim@epita.fr>
10561         * lib/autoconf/autotest.m4, lib/autoconf/autoupdate.m4
10562         * lib/autoconf/fortran.m4 lib/autoconf/general.m4
10563         * lib/autoconf/headers.m4 lib/autoconf/oldnames.m4
10564         * lib/autoconf/status.m4: Fix and adjust copyright notices.
10566 2003-05-22  Akim Demaille  <akim@epita.fr>
10568         * aclocal.m4, bin/autoconf.as, lib/autoconf/autoconf.m4,
10569         * lib/autoconf/autoheader.m4, lib/autoconf/autoupdate.m4,
10570         * lib/autoconf/c.m4, lib/autoconf/fortran.m4,
10571         * lib/autoconf/general.m4, lib/autoconf/headers.m4,
10572         * lib/autoconf/lang.m4, lib/autoconf/libs.m4,
10573         * lib/autoconf/programs.m4, lib/autoconf/specific.m4,
10574         * lib/autoconf/status.m4, lib/autoconf/types.m4,
10575         * lib/autotest/general.m4, lib/m4sugar/m4sugar.m4,
10576         * tests/atspecific.m4, tests/base.at, tests/compile.at,
10577         * tests/foreign.at, tests/m4sh.at, tests/semantics.at,
10578         * tests/tools.at, tests/torture.at:
10579         Whitespace clean up.
10580         Suggested by Jim Meyering.
10582 2003-05-22  Akim Demaille  <akim@epita.fr>
10584         * lib/autoconf/functions.m4 (AC_FUNC_GETLOADAVG): Restore smashed
10585         ' \t' as '\t ' so that Emacs' whitespace.el keep it.
10586         Reported by Jim Meyering.
10588 2003-05-22  Akim Demaille  <akim@epita.fr>
10590         * doc/autoconf.texi: Replace AC_HELP_STRING AS_HELP_STRING.
10591         Add AC_HELP_STRING  to the obsolete macros section.
10592         Typos.
10593         Use '@.' for sentences that ended in a capital letter.
10594         From Art Haas.
10596 2003-05-22  Akim Demaille  <akim@epita.fr>
10598         * config/config.guess, config/config.sub, config/elisp-comp,
10599         * config/install-sh, config/mdate-sh, config/mkinstalldirs,
10600         * config/texinfo.tex, doc/standards.texi: Update from masters.
10602 2003-05-21  Paolo Bonzini  <bonzini@gnu.org>
10604         * lib/m4sugar/m4sh.m4 (AS_VAR_SET): Escape the RHS before passing
10605         it to eval.
10607 2003-05-21  Akim Demaille  <akim@epita.fr>
10609         * bin/autoupdate.in ($m4): Fix quotation.
10610         Reported by Martin Mokrejs.
10612 2003-05-19  Paul Eggert  <eggert@twinsun.com>
10614         * ChangeLog, ChangeLog.2, THANKS, lib/m4sugar/m4sugar.m4:
10615         Remove non-ASCII characters.
10617 2003-05-18  Paolo Bonzini  <bonzini@gnu.org>
10619         * tests/semantics.at (AC_SEARCH_LIBS): New test.
10620         * tests/semantics.at (AC_CHECK_HEADERS_OLD,
10621         AC_CHECK_HEADERS_NEW): New tests.
10623 2003-05-17  Akim Demaille  <akim@epita.fr>
10625         * lib/autoconf/functions.m4: Use the default includes so that
10626         memcmp be declared before being tested.
10627         Reported by Sander Niemeijer.
10628         (AC_FUNC_ERROR_AT_LINE, AC_FUNC_GETGROUPS, AC_FUNC_STRNLEN): Likewise.
10629         * doc/autoconf.texi (Default Includes): Document
10630         AC_INCLUDES_DEFAULT.
10632 2003-05-17  Akim Demaille  <akim@epita.fr>
10634         * lib/autoconf/specific.m4: Include signal.h and unistd.h.
10635         * doc/autoconf.texi (Obsolete Macros): Adjust.
10636         Reported by Werner LEMBERG and Debian Bug 190886.
10638 2003-05-16  Akim Demaille  <akim@epita.fr>
10640         * lib/m4sugar/m4sh.m4 (_AS_UNSET_PREPARE): s/FOO/as_foo/ to avoid
10641         user name space clashes.
10642         Reported by Bruno Haible.
10644 2003-05-16  Akim Demaille  <akim@epita.fr>
10646         * bin/autoheader.in, bin/autom4te.in, bin/autoreconf.in,
10647         * bin/autoscan.in, bin/autoupdate.in, bin/ifnames.in (BEGIN): Make
10648         them uniform, and more robust to Perl special characters.
10649         Reported by Martin Mokrejs.
10651 2003-05-14  Akim Demaille  <akim@epita.fr>
10653         * tests/foreign.at (Libtool): Skip all Libtools pre 1.4.
10655 2003-05-14  Akim Demaille  <akim@epita.fr>
10657         * doc/autoconf.texi (Header Portability): X11/extensions/scrnsaver.h,
10658         linux/irda.h.
10660 2003-05-12  Akim Demaille  <akim@epita.fr>
10662         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Improve the
10663         message.
10664         From Matthias Andree.
10666 2003-05-07  Alexandre Duret-Lutz  <adl@gnu.org>
10668         * lib/Autom4te/XFile.pm (lock, truncate): Do not pass @_ to flock
10669         and truncate.
10671 2003-05-06  Akim Demaille  <akim@epita.fr>
10673         Don't try to be smart with aclocal 1.8+ because (i) aclocal no
10674         longer updates aclocal.m4 if useless, (ii) if a file m4_included
10675         by aclocal.m4 is changed it might require the importing of another
10676         m4 extension file, i.e., aclocal must be run.
10678         * bin/autoreconf.in (&run_aclocal, $aclocal_supports_force): New.
10679         (&parse_args): Use --force with aclocal if required and supported.
10680         (&autoreconf_current_directory): Use &run_aclocal.
10682 2003-05-06  Akim Demaille  <akim@epita.fr>
10684         Lock autom4te's cache.
10686         * lib/Autom4te/XFile.pm ($me, &name, &lock, &truncate, &seek): New.
10687         * bin/autom4te.in (&Request::save, &Request::load): Use an IO::File
10688         argument instead of a file name, so that the request file remains
10689         open during the whole autom4te run.
10690         ($icache_file): New.
10691         (&freeze): Lock the $icache_file.
10693 2003-04-29  Derek Price  <derek@ximbiot.com>
10695         * lib/autotest/general.m4 (AT_KEYWORDS): Don't use a comma as the
10696         seperator with m4_append_uniq().  It doesn't work.
10697         (AT_CLEANUP): Add `;' to end of at_help_all.
10698         (AT_INIT): Allow --keywords to be specified more than once.  When
10699         grepping $at_help_all for keywords, use the field and keyword
10700         seperators to ensure a complete keyword match.  Alter at_prev handling
10701         to support the new --keywords behavior.
10703 2003-04-27  Karl Berry  <karl@freefriends.org>
10705         * doc/autoconf.texi: Make the dir entries in the autoconf manual
10706         align better with others.  I also made some of the individual
10707         entries on one line, for brevity and to make it easier for me to
10708         sort my dir-example file in the Texinfo distribution :).
10710 2003-04-12  Jim Meyering  <jim@meyering.net>
10712         * NEWS: Mention the new macro.
10713         * lib/autoconf/c.m4 (AC_C_RESTRICT): New macro.
10714         * doc/autoconf.texi (C Compiler): Describe AC_C_RESTRICT.
10715         * tests/c.at: Test AC_C_RESTRICT.
10716         * tests/mktests.sh (ac_exclude_list): Add exclusion for AC_C_RESTRICT.
10718 2003-04-08  Akim Demaille  <akim@epita.fr>
10720         * bin/ifnames.in: Skip C++ comments.
10721         From Jeremy Yallop.
10723 2003-04-08  Akim Demaille  <akim@epita.fr>
10725         * GNUmakefile (SHELL): Don't assume sh is in /bin/.
10726         From Ilya Zakharevich.
10728 2003-04-08  Akim Demaille  <akim@epita.fr>
10730         * doc/autoconf.texi (Particular Headers): Some about sys/socket.h,
10731         net/if.h, stdlib.h.
10733 2003-04-01  Derek Price  <derek@ximbiot.com>
10735         * lib/autoconf/programs.m4 (AC_PROG_INSTALL): Correct syntax error
10736         from Akim's checkin of 2003-03-29.
10738 2003-04-01  Derek Price  <derek@ximbiot.com>
10740         * tests/torture.at (Configuring subdirectories): Add missing
10741         close-quote for Akim's change from 2003-03-28.
10743 2003-04-01  Akim Demaille  <akim@epita.fr>
10745         * doc/autoconf.texi (ac, at, ms): Rename these indexes as...
10746         (AC, AT, MS): these.
10747         (shortindexflag, @acindex, @ahindex, @asindex, @atindex, @msindex):
10748         New.
10749         Use them.
10750         * doc/Makefile.am (CLEANFILES): Adjust.
10751         (TEXI2DVI): Make it --batch.
10753 2003-03-31  Derek Price  <derek@ximbiot.com>
10755         * lib/autotest/general.m4: Revert the checkin from 2003-03-27
10756         which removed the main loop.
10757         Thanks to Akim Demaille.
10759 2003-03-29  Akim Demaille  <akim@epita.fr>
10761         * lib/autoconf/programs.m4 (AC_PROG_INSTALL): Skip OS/2's install,
10762         that starts a GUI.
10763         From Ilya Zakharevich.
10765 2003-03-29  Akim Demaille  <akim@epita.fr>
10767         * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_MONGREL): The
10768         documentation to read is Autoconf's.
10769         Suggested by Paul Eggert.
10771 2003-03-28  Akim Demaille  <akim@epita.fr>
10773         * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_MONGREL): Suggest
10774         reading the section "Present But Cannot Be Compiled" when the
10775         header causes problems.
10777 2003-03-28  Akim Demaille  <akim@epita.fr>
10779         * tests/torture.at (Configuring subdirectories): Require aclocal
10780         1.4, otherwise the test fails, as it does support configure.ac.
10781         This fixes the "test 40 failed" bug reports.
10783 2003-03-28  Akim Demaille  <akim@epita.fr>
10785         * doc/autoconf.texi (C Compiler): `#line' portability.
10786         From Paul Eggert and Nelson H. F. Beebe.
10788 2003-03-27  Derek Price  <derek@ximbiot.com>
10790         * lib/autotest/general.m4: Eliminate main loop and reorganize test
10791         layout in order to allow scripting around test groups.
10793 2003-03-27  Derek Price  <derek@ximbiot.com>
10795         * lib/autotest/general.m4 (PARSE_ARGS,PARSE_ARGS_END,HELP,HELP_MODES,
10796         HELP_TUNING,HELP_OTHER,HELP_END,PREPARE_TESTS,TESTS_END): Define and
10797         use new diversions in preparation for accepting new arguments and
10798         allowing scripting around tests.
10799         (OPTIONS,TAIL): Remove these diversions to make way for the ones above.
10801 2003-03-26  Derek Price  <derek@ximbiot.com>
10803         * lib/autoconf/general.m4 (AC_ARG_VAR): Use AS_HELP_STRING instead of
10804         obsolete AC_HELP_STRING.
10805         (AC_HELP_STRING): AU_DEFUN to...
10806         * lib/m4sugar/m4sh.m4 (AS_HELP_STRING): ...here.
10807         * tests/m4sh.at (AS_HELP_STRING): New test.
10809         * tests/acgeneral.at: Regenerated.
10811 2003-03-26  Derek Price  <derek@ximbiot.com>
10813         * lib/autotest/general.m4: s/DEFAULT/DEFAULTS/ since it makes more
10814         sense.  Verbosify the diversion definitions comment.
10816 2003-03-26  Derek Price  <derek@ximbiot.com>
10818         * lib/autotest/general.m4 (AT_INIT): Remove redundant call to
10819         AS_PREPARE.
10821 2003-03-21  Eric Siegerman  <eric_97@pobox.com>
10823         * doc/autoconf.texi (Present But Cannot Be Compiled):
10824         Grammar fixes and minor rewording. (trivial change)
10826 2003-03-06  Paul Eggert  <eggert@twinsun.com>
10828         Work around a problem noted by Nelson H. F. Beebe with coreutils
10829         4.5.9: Sun c89 (Sun WorkShop 6 update 2 C 5.3 Patch 111679-08
10830         2002/05/09) rejects '#line 32768 "configure"' because the line
10831         number overflows.
10832         * lib/autoconf/c.m4 (AC_LANG_SOURCE(C)): Do not generate
10833         #line directives.
10834         * lib/autoconf/lang.m4 (AC_LANG_SOURCE): Fix comment to match this.
10835         * doc/autoconf.texi (Generating Sources): Document this.
10837 2003-03-01  Richard Dawe  <rich@phekda.freeserve.co.uk>
10839         * tests/atspecific.m4 (AT_CHECK_AUTOM4TE): Normalize
10840         file name for the m4 program, when it has an "exe" file extension.
10841         DJGPP's error messages include the error code in brackets -
10842         remove the error code during normalization.
10844 2003-02-28  Akim Demaille  <akim@epita.fr>
10846         * doc/autoconf.texi (Present But Cannot Be Compiled): New.
10848 2003-02-28  Alexandre Duret-Lutz  <adl@gnu.org>
10850         * doc/autoconf.texi (Limitations of Make): Remove the section
10851         about `$<' in inference rules, it was a bogus interpretation of
10852         an old Automake change.  Discuss NetBSD, FreeBSD, OpenBSD, and
10853         Tru64 make in the "target lookup" section.
10854         (Automake): Automake 1.5+ no longer requires special tools to be
10855         present on the developer's host.
10857 2003-02-26  Richard Dawe  <rich@phekda.freeserve.co.uk>
10859         * bin/autoheader.in (BEGIN): For DJGPP SHELL may not be set
10860         to a shell that can handle redirection or quoting correctly.
10861         Override SHELL with the shell detected by configure.
10862         Use of $^O suggested by Tim van Holder.
10863         * bin/autom4te.in (BEGIN): Likewise.
10864         * bin/autoreconf.in (BEGIN): Likewise.
10865         * bin/autoscan.in (BEGIN): Likewise.
10866         * bin/autoupdate.in (BEGIN): Likewise.
10867         * bin/ifnames.in (BEGIN): Likewise.
10869         * bin/ifnames.in: Add final newline to help and version messages.
10871         * lib/autoconf/programs.m4 (AC_PROG_MAKE_SET): Translate colons,
10872         to cope with DOS-style absolute paths, when constructing
10873         ${ac_make}.
10875         * lib/autoconf/status.m4 (_AC_OUTPUT_HEADERS, _AC_OUTPUT_FILES):
10876         When constructing paths with IFS=:, quote the path. If we're
10877         constructing a DOS-style absolute path, we don't want to split it
10878         on the colon.
10880         * tests/atspecific.m4 (AT_CHECK_CONFIGURE): Fix typo
10881         in description.
10883 2003-02-25  Pavel Roskin  <proski@gnu.org>
10885         * bin/autoheader.in: Add missing newline when printing
10886         suggestion how change AC_DEFINE call.
10888 2003-02-24  Paul Eggert  <eggert@twinsun.com>
10890         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Fix typo in
10891         2002-09-01 patch by replacing "test -n" with "test -z".
10892         This fixes a bug found by Jeff Painter and reported by Tom Epperly in
10893         <http://mail.gnu.org/archive/html/autoconf/2003-02/msg00139.html>.
10895         * doc/autoconf.texi (Shell Substitutions): test -n -> test -z,
10896         to fix a mismatch between example and discussion.
10898 2003-02-24  Kevin Ryde  <user42@zip.com.au>
10900         * doc/autoconf.texi (Limitations of Builtins): Add notes on printf
10901         format starting with "-".
10903 2003-02-20  Alexandre Duret-Lutz  <adl@gnu.org>
10905         * doc/autoconf.texi (Limitations of Make): `foo=bar make -e'
10906         is not portable inside Makefile.
10908 2003-02-20  Akim Demaille  <akim@epita.fr>
10910         * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_MONGREL): When
10911         compiler says yeah, but preproc says nope, compiler is right.
10912         Conversely, prompt the reader to send a bug report to the
10913         maintainers of the package, not of Autoconf.
10915 2003-02-20  Klee Dienes  <kdienes@apple.com>
10917         * bin/autoreconf.in (autoreconf_current_directory): Properly
10918         handle an empty aclocal.m4.
10920 2003-02-20  Akim Demaille  <akim@epita.fr>
10922         * lib/autoconf/general.m4 (AC_PREFIX_PROGRAM): Quote
10923         $ac_prefix_program.
10924         From Larry Jones.
10926 2002-12-23  Paul Eggert  <eggert@twinsun.com>
10928         * lib/autoconf/c.m4 (AC_LANG_FUNC_LINK_TRY(C)): Define $1 to an
10929         innocuous variant befor including <limits.h> or <assert.h>.  This
10930         works around a bug reported by Albert Chin: HP-UX 11i
10931         (and earlier versions) have a <limits.h> that declares
10932         gettimeofday and many other functions.
10934 2002-12-03  Paul Eggert  <eggert@twinsun.com>
10936         Version 2.57.
10938         * NEWS, configure.ac: Update version.
10940         * doc/fdl.texi: Upgrade to FDL version 1.2.
10942         * lib/autoconf/c.m4 (AC_LANG_FUNC_LINK_TRY(C)): Use the function f
10943         nontrivially in main's body, so that f's external declaration is
10944         not optimized away in AIX.  This should fix the bug reported by
10945         Martin Frydl in
10946         <http://mail.gnu.org/pipermail/autoconf/2002-November/014508.html>.
10948         * lib/autoconf/c.m4 (AC_LANG_FUNC_LINK_TRY(C),
10949         _AC_PROG_PREPROC_WORKS_IFELSE): Use <limits.h> if __STDC__ is
10950         defined, to support freestanding compilers.  This should fix the
10951         bug reported by Momchil Velkov in
10952         <http://mail.gnu.org/pipermail/autoconf/2002-November/014490.html>.
10954         * doc/autoconf.texi (Obsolete Macros): Fix typos (insert empty
10955         arg, AC_DEFINE -> AC_DEFINE_UNQUOTED) in documentation for
10956         obsolete AC_CHECK_TYPE.  The missing empty arg was reported
10957         by Simon Josefsson in
10958         <http://mail.gnu.org/pipermail/autoconf-patches/2002-December/008830.html>.
10960         * Makefile.maint (www-gnu): New macro.
10961         (standards.texi-url_prefix, make-stds.texi-url_prefix): Use it, as
10962         the location has moved.
10964 2002-12-02  Martin Frydl  <martin@systinet.com>
10966         * bin/autom4te.in (at_flatten): rewritten to avoid M4 problem when
10967         \(.*\) match is too long and there is something more to be checked.
10968         <http://mail.gnu.org/pipermail/autoconf/2002-November/014524.html>
10970 2002-11-15  Akim Demaille  <akim@epita.fr>
10972         Version 2.56.
10974         * config/install-sh: chmod +x.
10975         From Paul Eggert.
10976         * config/move-if-change: Indenting changes.
10977         * Makefile.am (AUTOMAKE_OPTIONS): Move to...
10978         * configure.ac (AM_INIT_AUTOMAKE): here.
10979         Require 1.7.1.
10981 2002-11-14  Akim Demaille  <akim@epita.fr>
10983         Version 2.55.
10985         * config/config.guess, config/config.sub, config/install-sh:
10986         Update from masters.
10988 2002-11-14  Akim Demaille  <akim@epita.fr>
10990         * Makefile.maint: Sync with Bison, i.e.:
10991         (po-check): Scan .l and .y files instead of the
10992         .c and the .h files that they generate.  This fixes the bug
10993         reported by Tim Van Holder in:
10994         <http://mail.gnu.org/pipermail/bison-patches/2002-November/001352.html>
10995         Look for N_ as well as for _.  Try to avoid matching #define for
10996         N_ and _.
10997         From Paul Eggert.
10999 2002-11-14  Akim Demaille  <akim@epita.fr>
11001         * doc/autoconf.texi (C Compiler): Compiling several files at once.
11002         From Paul Eggert and Albert Chin-A-Young.
11004 2002-11-14  Akim Demaille  <akim@epita.fr>
11006         * doc/autoconf.texi (C Compiler): Solitary backslashes.
11007         From Paul Eggert and Albert Chin-A-Young.
11009 2002-11-14  Kevin Ryde  <user42@zip.com.au>
11011         * lib/autoconf/c.m4 (AC_LANG_FUNC_LINK_TRY(C)): Initialize f=$1 rather
11012         than assigning in main, to avoid HP cc +O3 optimizing it away.
11014 2002-11-12  Peter Eisentraut  <peter_e@gmx.net>
11016         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Add -q
11017         option.  Process --recheck after parsing all options.  Pass -q
11018         option to configure on --recheck.
11019         (AC_OUTPUT): Pass -q from configure to config.status.
11020         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Strip -q from
11021         arguments to record.
11022         * doc/autoconf.texi (config.status Invocation): Document
11023         config.status -q option.
11025 2002-11-07  Alexandre Duret-Lutz  <adl@gnu.org>
11027         * bin/autoscan.in (scan_file): Scan Makefile.am too. Ignore
11028         Makefile.in if Makefile.am exists.
11029         (output): Strip `.am' from Makefiles.  Don't
11030         output AC_CONFIG_FILES if no Makefiles were found.
11032 2002-11-07  Akim Demaille  <akim@epita.fr>
11034         * Makefile.am (cvs_files): Add elisp-comp, mdate-sh.
11035         (local_updates): New.
11036         * Makefile.maint: Update, from CVS Bison.
11037         (local_updates): New.
11039 2002-11-06  Akim Demaille  <akim@epita.fr>
11041         * lib/autoconf/c.m4 (AC_LANG_FUNC_LINK_TRY): Wrap the `f'
11042         declaration in extern "C" too.
11043         Reported by Roberto Bagnara.
11045 2002-11-06  Akim Demaille  <akim@epita.fr>
11047         * tests/torture.at (Configuring subdirectories): Don't use grep
11048         -w.
11049         * doc/autoconf.texi (Limitations of Usual Tools): Grep -w.
11050         Reported by Ezra Peisach.
11052 2002-11-05  Akim Demaille  <akim@epita.fr>
11054         * lib/autoconf/autoheader.m4 (_AH_TEMPLATE_OLD, _AH_VERBATIM_OLD):
11055         Remove.
11056         We _have_ to stop using the old compatibility scheme that tried to
11057         avoid useless backslashes because Libtool 1.4.3 contains a
11058         AC_DEFINE([error_t], [int],
11059         [Define to a type to use for \`error_t' if it is not
11060         otherwise available.])
11061         We _have_ to quote the single quote and backslashes with \.  The
11062         old compatibility scheme saw that ` was backslashed, and therefore
11063         did not quote the single quote.  Hence before this patch, Autoconf
11064         was not compatible with Libtool.
11066 2002-11-04  Paul Eggert  <eggert@twinsun.com>
11068         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Set the following variables,
11069         too: LC_ADDRESS, LC_IDENTIFICATION, LC_MEASUREMENT, LC_MONETARY,
11070         LC_NAME, LC_PAPER, LC_TELEPHONE.
11071         * doc/autoconf.texi (Special Shell Variables): Mention those vars.
11073 2002-11-04  Akim Demaille  <akim@epita.fr>
11075         Version 2.54c.
11077         * Makefile.maint (update, cvs-update, po-update, do-po-update):
11078         New.
11079         * config/texinfo.tex: Update.
11081 2002-11-03  Akim Demaille  <akim@epita.fr>
11083         * bin/autoreconf.in (&autoreconf_current_directory): New, extracted
11084         from...
11085         (&autoreconf): here.
11086         ($help, $make, &parse_args, &autoreconf_current_directory):
11087         Support -m/--make.
11088         * doc/autoconf.texi (autoreconf Invocation): Adjust.
11090 2002-10-31  Bruno Haible  <bruno@clisp.org>
11092         * lib/autoconf/functions.m4 (_AC_FUNC_MALLOC_IF): Change message.
11093         Change name of cache variable to ac_cv_func_malloc_0_nonnull.
11094         (AC_FUNC_MALLOC): Change description of HAVE_MALLOC macro.
11095         (_AC_FUNC_REALLOC_IF): Change message. Change name of cache variable
11096         to ac_cv_func_realloc_0_nonnull.
11097         (AC_FUNC_REALLOC): Change description of HAVE_REALLOC macro.
11099 2002-10-31  Akim Demaille  <akim@epita.fr>
11101         The test suite was no longer checking for trailing envvars and files.
11103         * tests/atspecific.m4 (AC_STATE_SAVE): Don't use quadrigraphs here.
11104         (AT_CHECK_ENV): Make sure the `state-ls.before file exists.
11106 2002-10-31  Akim Demaille  <akim@epita.fr>
11108         * lib/autoconf/programs.m4 (AC_PROG_MAKE_SET): Use and display
11109         `$(MAKE)' instead of '${MAKE}' to emphasize that we refer to the
11110         Make variable, not a shell variable.
11111         Suggested by Bruno Haible.
11113 2002-10-31  Akim Demaille  <akim@epita.fr>
11115         * bin/autom4te.in (load_configuration): Reject #args out of any
11116         language.
11118 2002-10-31  Akim Demaille  <akim@epita.fr>
11120         * lib/autoconf/general.m4 (_AC_MSG_LOG_CONFTEST): New.
11121         (_AC_PREPROC_IFELSE, _AC_COMPILE_IFELSE, _AC_LINK_IFELSE)
11122         (_AC_RUN_IFELSE): Use it.
11123         * lib/autoconf/lang.m4 (_AC_COMPILER_OBJEXT):
11124         (_AC_COMPILER_EXEEXT_DEFAULT): Likewise.
11125         * lib/autoconf/c.m4 (AC_LANG_SOURCE): Don't include confdefs.h,
11126         inline it.
11128 2002-10-30  Akim Demaille  <akim@epita.fr>
11130         * bin/autom4te.in (&parse_args, $help): Support --no-cache.
11131         * doc/autoconf.texi (autom4te Invocation): Adjust.
11132         Suggested by Tim van Holder.
11134 2002-10-29  Paul Eggert  <eggert@twinsun.com>
11136         * doc/autoconf.texi (Particular Functions): AC_FUNC_MALLOC and
11137         AC_FUNC_REALLOC check for compatibility with glibc, not POSIX.
11138         Problem reported by Bruno Haible.
11140 2002-10-29  Akim Demaille  <akim@epita.fr>
11142         * doc/autoconf.texi (Header Templates): Put also in words what the
11143         pictures says to assist free style readers.
11144         (Customizing autom4te): s/--cache=/--cache /.
11146 2002-10-29  Akim Demaille  <akim@epita.fr>
11148         * lib/autoconf/functions.m4 (_AC_FUNC_VFORK): Include stdlib.h and
11149         sys/wait.h.
11150         sparc_address_test returns void.
11151         Use it with an argument, as prototyped.
11152         From Bruno Haible.
11154 2002-10-29  Akim Demaille  <akim@epita.fr>
11156         * doc/autoconf.texi (Subdirectories): Cygnus dirs have
11157         configure.in, not configure.ac.
11158         Reported by Bruno Haible.
11160 2002-10-29  Akim Demaille  <akim@epita.fr>
11162         * tests/torture.at (Deep Package): New test.
11163         (Configuring subdirectories): Don't use a testSubDir as Autotest
11164         now does it itself.
11166 2002-10-29  Akim Demaille  <akim@epita.fr>
11168         * bin/autoreconf.in (&parse_args, $help): Support --warnings.
11169         * doc/autoconf.texi (Invoking autom4te): Rename as...
11170         (autom4te Invocation): this, for consistency with the other nodes.
11172 2002-10-29  Akim Demaille  <akim@epita.fr>
11174         * lib/autom4te.in (Autoconf): s/automate/autom4te/.
11175         Reported by Ralf Corsepius.
11177 2002-10-29  Akim Demaille  <akim@epita.fr>
11179         * lib/m4sugar/m4sh.m4 (_AS_QUOTE): The warning about quoted
11180         characters is a back as an `obsolete' warning now.
11181         Reported by Ralf Corsepius.
11183 2002-10-28  Akim Demaille  <akim@epita.fr>
11185         * configure.ac: Bump to 2.54c.
11187 2002-10-28  Akim Demaille  <akim@epita.fr>
11189         Version 2.54b.
11191         * tests/foreign.at (Libtool): Adjust to broken libtoolize.
11193 2002-10-28  Akim Demaille  <akim@epita.fr>
11195         * tests/atspecific.m4 (AT_CHECK_AUTOM4TE): Be robust to different
11196         m4 executable names, and different GNU M4 version.
11197         Reported by Ezra Peisach and Paul Jarc.
11199 2002-10-27  Akim Demaille  <akim@epita.fr>
11201         * lib/autoconf/functions.m4 (_AC_FUNC_VFORK): Really use
11202         AC_RUN_IFELSE.
11204 2002-10-27  Akim Demaille  <akim@epita.fr>
11206         * doc/autoconf.texi: More AC_MSG_FAILURE promotion.
11207         * lib/autoconf/fortran.m4 (_AC_F77_NAME_MANGLING):
11208         Die when a simple Fortran program cannot be compiled.
11209         * lib/autoconf/lang.m4 (AC_LANG_CALL, AC_LANG_FUNC_LINK_TRY):
11210         Issue a warning if no function is given.
11212 2002-10-27  Akim Demaille  <akim@epita.fr>
11214         * doc/autoconf.texi (Run Time): Document AC_RUN_IFELSE.
11215         Move the documentation of AC_TRY_RUN to...
11216         (Obsolete Macros): here.
11217         Adjust all the old samples still using AC_TRY_RUN to AC_RUN_IFELSE.
11218         (autoconf Invocation): Remove the duplicates with `invoking
11219         autom4te'.
11220         * lib/autoconf/headers.m4 (AC_HEADER_STDC): Don't use AC_TRY_RUN.
11221         * lib/autoconf/c.m4 (AC_C_BIGENDIAN): Likewise.
11223 2002-10-27  Akim Demaille  <akim@epita.fr>
11225         * doc/autoconf.texi (Generating Sources): Document AC_LANG_CALL
11226         and AC_LANG_FUNC_LINK_TRY.
11227         (Examining Libraries): Rename as...
11228         (Running the Linker): this.
11229         Document AC_LINK_IFELSE.
11230         Move the documentation of AC_TRY_LINK and AC_TRY_LINK_FUNC to...
11231         (Obsolete Macros): here.
11232         * lib/autoconf/fortran.m4 (_AC_F77_NAME_MANGLING): Don't use
11233         AC_TRY_LINK_FUNC nor AC_TRY_LINK.
11234         * lib/autoconf/libs.m4 (AC_CHECK_LIB, AC_PATH_XTRA): Likewise.
11235         * lib/autoconf/headers.m4 (AC_USG): Likewise.
11237 2002-10-27  Akim Demaille  <akim@epita.fr>
11239         * lib/autoconf/headers.m4 (AC_HEADER_STDC): Don't use AC_TRY_CPP.
11241         More `check config.log' messages.
11243         * lib/autoconf/general.m4 (AC_MSG_FAILURE): New.
11244         * doc/autoconf.texi (Printing Messages): Document it.
11245         * lib/autoconf/types.m4 (AC_CHECK_SIZEOF): Use it when
11246         appropriate.
11247         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT)
11248         (_AC_COMPILER_EXEEXT_WORKS, _AC_COMPILER_EXEEXT_O)
11249         (_AC_COMPILER_OBJEXT): Likewise.
11250         * lib/autoconf/general.m4 (AC_RUN_IFELSE): Likewise.
11251         * lib/autoconf/fortran.m4 (_AC_LANG_PROGRAM_C_F77_HOOKS):
11252         Likewise.
11253         * lib/autoconf/c.m4 (AC_PROG_CPP, AC_PROG_CC, AC_PROG_CXXCPP):
11254         Likewise.
11256         Deprecate macros with unusual interfaces.
11258         * lib/autoconf/general.m4 (AC_TRY_CPP, AC_TRY_LINK)
11259         (AC_TRY_COMPILE, AC_TRY_RUN): AU_DEFUN'ed.
11261         Document the new ones, and proper style.
11263         * doc/autoconf.texi (Generating Sources): New.
11264         Document AC_LANG_CONFTEST, AC_LANG_SOURCE, AC_LANG_PROGRAM.
11265         (Examining Declarations): Rename as...
11266         (Running the Preprocessor): this.
11267         Document AC_PREPROC_IFELSE.
11268         (Examining Syntax): Rename as...
11269         (Running the Compiler): this.
11270         (AC_FOO_IFELSE vs AC_TRY_FOO): New section.
11271         (Obsolete Macros): Move the definition of AC_TRY_CPP and
11272         AC_TRY_COMPILE here.
11274 2002-10-27  Akim Demaille  <akim@epita.fr>
11276         Move sections around.
11278         * doc/autoconf.texi (Customizing autom4te): Remove a lost
11279         sentence.
11280         Reported by Burno Haible.
11281         (Language Choice): Now the first section of...
11282         (Writing Tests): this section.
11283         Make the introduction less C-centric.
11284         (Guidelines, Test Functions): Move to...
11285         (Writing Test Programs): this new section.
11286         (Test Programs): Merge into...
11287         (Run Time): this.
11289 2002-10-27  Akim Demaille  <akim@epita.fr>
11291         * lib/freeze.mk ($(AUTOM4TE_CFG)): Add a missing dependency on
11292         autom4te.in that resulted in the need for two `make' runs.
11294 2002-10-27  Akim Demaille  <akim@epita.fr>
11296         * configure.ac: Bump to 2.54b.
11298 2002-10-25  Akim Demaille  <akim@epita.fr>
11300         Version 2.54a.
11302         * Makefile.maint: Update from the Coreutils.
11303         (AMTAR): Remove, obsolete.
11304         (automake_repo): Update to redhat.com.
11305         (cvs_file): New.
11306         Adjust to the fact that ansi2knr is now hosted by Automake.
11307         * Makefile.am (cvs_files): Add install-sh and mkinstalldirs.
11308         * config/config.guess, config/mkinstalldirs, config/texinfo.tex:
11309         Update from masters.
11310         * lib/autoscan/Makefile.am (EXTRA_DIST, nodist_autoscanlib_DATA):
11311         autoscan.pre is not to be installed, and autoscan.list is not to
11312         be shipped.
11313         (CLEANFILES): Add autoscan.list.
11314         (autoscan.list): Disable the cache.
11315         * bin/Makefile.am: Include freeze.mk.
11317 2002-10-25  Akim Demaille  <akim@epita.fr>
11319         * bin/autom4te.in (&load_configuration): Take the file as
11320         argument.
11321         (&parse_args): Handle -C, --cache.
11322         ($help): Adjust.
11323         (MAIN): Load ~/.autom4te.cfg and ./.autom4te.cfg.
11324         * lib/autom4te.in (Autoconf): Pass --cache=autom4te.cache.
11325         * doc/autoconf.texi (Invoking autom4te): Document --cache.
11326         Now a subsection of...
11327         (Using autom4te): This new section.
11328         (Customizing autom4te): New.
11329         (autom4te.cache): Adjust.
11331 2002-10-25  Akim Demaille  <akim@epita.fr>
11333         * doc/autoconf.texi (Generic Headers): More information on how to
11334         use AC_CHECK_HEADERS.
11336 2002-10-25  Akim Demaille  <akim@epita.fr>
11338         * bin/autoconf.as, bin/autoconf.in, bin/autoupdate.in ($help):
11339         Space changes.
11341 2002-10-25  Akim Demaille  <akim@epita.fr>
11343         * bin/autoscan.in (output): Output AC_PREREQ.
11344         (%needed_macros): Add AC_PREREQ so that configure.ac without one
11345         be reported.
11347 2002-10-23  Akim Demaille  <akim@epita.fr>
11349         * doc/autoconf.texi (Particular Headers): In AC_HEADER_STDBOOL,
11350         document _Bool.
11352 2002-10-23  Akim Demaille  <akim@epita.fr>
11354         * bin/autom4te.in (handle_traces): Handle @&t@ in traces.
11355         Reported by Peter Eisentraut.
11357 2002-10-23  Akim Demaille  <akim@epita.fr>
11359         * lib/autoconf/headers.m4 (AC_HEADER_STDBOOL): Also look for the
11360         type _Bool.
11361         Fix a typo.
11362         * doc/autoconf.texi (Particular Headers): Adjust according to Paul
11363         Eggert's recommandations.
11365 2002-10-22  Akim Demaille  <akim@epita.fr>
11367         * lib/autoconf/headers.m4 (AC_HEADER_STDBOOL): New, based on CVS
11368         Bison, by Paul Eggert.
11369         * doc/autoconf.texi (Particular Headers): Document it.
11371 2002-10-22  Aaron M. Ucko  <amu@alum.mit.edu>
11373         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Avoid duplicates in
11374         `$ac_configure_args'.
11376 2002-10-22  Akim Demaille  <akim@epita.fr>
11378         * doc/autoconf.texi: Use AC_CONFIG_HEADERS in examples.
11379         (AC_ST_BLKSIZE, AC_ST_RDEV): Directly point to AC_CHECK_MEMBERS.
11380         From Art Haas.
11382 2002-10-22  Akim Demaille  <akim@epita.fr>
11384         Restore the 2002-10-11  Akim Demaille  <akim@epita.fr> patch:
11386         * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_MONGREL)
11387         (AC_CHECK_HEADER, _AC_CHECK_HEADER_NEW,_AC_CHECK_HEADER_OLD): Restore.
11388         (_AC_CHECK_HEADER_NEW): Rename as...
11389         (AC_CHECK_HEADER): this.
11391 2002-10-22  Akim Demaille  <akim@epita.fr>
11393         * doc/autoconf.texi (Limitations of Usual Tools): Remove incorrect
11394         words about HP-UX cmp: it was actually a user-written cmp.
11396 2002-10-22  Akim Demaille  <akim@epita.fr>
11398         * tests/foreign.at (Libtool): Don't check autoconf's stderr: there
11399         are a few warnings.
11400         * lib/autoconf/autoheader.m4 (AH_VERBATIM, _AH_VERBATIM_OLD):
11401         Quote for Perl '' strings, not "".
11402         * bin/autoheader.in: Invoke autoconf to get '' strings, not ""
11403         strings.
11405 2002-10-22  Akim Demaille  <akim@epita.fr>
11407         * lib/m4sugar/m4sh.m4 (_AS_QUOTE): The warning about quoted
11408         characters is a syntax warning now.
11409         (_AS_QUOTE): Accept $2 as list of characters to quote.
11410         * lib/autoconf/autoheader.m4 (AH_VERBATIM, _AH_VERBATIM_OLD):
11411         Quote for Perl, not sh.
11412         * bin/autoheader.in: When $debug, report the file which is
11413         `do'ne.
11414         * tests/tools.at (autom4te, autoheader): Exercise @bar, not merely
11415         `@', to tickle Perl's lists.
11416         Reported by Carlos Velasco.
11418 2002-10-18  Akim Demaille  <akim@epita.fr>
11420         * bin/autom4te.in (handle_m4): Pass --fatal-warning to m4, so that
11421         missing included files _are_ errors.
11422         Thanks to Alexandre Duret-Lutz.
11423         * tests/tools.at (autom4te cache): Adjust.
11424         * tests/atspecific.m4 (AT_CHECK_AUTOM4TE): New.
11425         (AT_CHECK_M4SUGAR): Use it.
11426         * tests/m4sugar.at (m4_warn, m4_require: circular dependencies):
11427         Adjust.
11428         * tests/tools.at (autom4te): Now it does exit 1.
11430 2002-10-17  Akim Demaille  <akim@epita.fr>
11432         * lib/autoconf/general.m4 (AC_CACHE_SAVE): Don't use cmp.
11433         Fixes the `AC_ARG_VAR' test failures.
11434         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES): Don't use cmp.
11435         * lib/freeze.mk (check-forbidden-patterns): New.
11436         * lib/autoconf/Makefile.am, lib/autotest/Makefile.am
11437         * lib/m4sugar/Makefile.am (check-local): Use it to catch `cmp'.
11438         * doc/autoconf.texi (Limitations of Usual Tools): HP-UX' cmp and
11439         /dev/null.
11440         Reported months ago by H. Merijn Brand.
11442 2002-10-17  Akim Demaille  <akim@epita.fr>
11444         * tests/tools.at (autoheader): Put randoms `@' to stress Perl.
11446 2002-10-16  Paul Eggert  <eggert@twinsun.com>
11448         * Makefile.maint (wget_files): Remove ansi2knr.c.
11449         (ansi2knr.c-url_prefix): Remove.
11451 2002-10-16  Akim Demaille  <akim@epita.fr>
11453         Because of caching, some files that no longer exist and are no
11454         longer required can still cause errors.
11455         Reported by Alexandre Duret-Lutz.
11457         * bin/autom4te.in (&parse_args): Do not prepend `--reload-state'
11458         to frozen files in @ARGV, as @ARGV must remain being a list of
11459         files.  Rather, at M4 call sites, use this...
11460         (&files_to_options): New function.
11461         (&freeze): Use &error.
11462         (&up_to_date): If a file that was included according to the cache
11463         is no longer there, then the output is out dated.
11464         (&main): Don't even check whether a file is up to date is anyway
11465         --force is given.
11466         * tests/tools.at (autom4te cache): New.
11468 2002-10-16  Akim Demaille  <akim@epita.fr>
11470         * bin/autoconf.as: Kill dead options.
11471         * bin/autoupdate.in (&parse_args): Kill old options.
11472         * bin/autoreconf.in (&parse_args): Remove dead options.
11473         Factor some code.
11474         (&autoreconf): Report the directories we enter *and leave*, so
11475         that error messages can be easily located, and use GNU Make
11476         format, so that Emacs' compile mode understands us.
11477         * lib/Autom4te/General.pm (&update_file): Use `verbose' to report
11478         if some file was changed instead of `print'.
11479         * bin/autoheader.in: Suggest AC_DEFINE with 3 args when needed.
11480         (&parse_args): Remove the dead options.
11481         * tests/atspecific.m4 (AT_CHECK_AUTOHEADER): Adjust to the new
11482         autoheader's quiet mode.
11483         (AT_CHECK_AUTOUPDATE): Likewise.
11484         * tests/tools.at (autoupdate): Adjust.
11485         * tests/semantics.at (AC_C_BIGENDIAN): Likewise.
11487 2002-10-11  Akim Demaille  <akim@epita.fr>
11489         No longer use CPP to check for the existing of headers: use CC to
11490         check for compilability.
11492         * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_MONGREL)
11493         (AC_CHECK_HEADER, _AC_CHECK_HEADER_OLD): Remove.
11494         (_AC_CHECK_HEADER_NEW): Rename as...
11495         (AC_CHECK_HEADER): this.
11497         * lib/autotest/general.m4 (AT_INIT): Include the failed test
11498         numbers in the Subject suggestion.
11500 2002-10-11  Akim Demaille  <akim@epita.fr>
11502         * lib/autoconf/specific.m4 (AC_DECL_SYS_SIGLIST): Obsolete.
11503         Suggest using AC_CHECK_DECLS instead.
11505 2002-10-11  Akim Demaille  <akim@epita.fr>
11507         * tests/torture.at (AC_ARG_VAR): Have configure report the value
11508         of `precious'.
11510 2002-10-11  Akim Demaille  <akim@epita.fr>
11512         * lib/m4sugar/m4sh.m4 (_AS_PATH_SEPARATOR_PREPARE): Use $$ in the
11513         file name to enable parallel executions.
11514         From Sam Varshavchik.
11516 2002-10-08  Akim Demaille  <akim@epita.fr>
11518         * bin/autoreconf.in (&autoreconf): Run autopoint before the first
11519         aclocal invocation, as Gettext macros might not be visible to
11520         aclocal.
11521         Instead of blindly running autopoint, scan configure.ac (not the
11522         traces) for AM_GNU_GETTEXT_VERSION uses, as autopoint does.
11523         Reported by Paul D. Smith.
11525 2002-10-08  Paul Eggert  <eggert@twinsun.com>
11527         Work around problems found when POSIXLY_CORRECT=1 is set.
11528         None of this seems to have anything to do with POSIX, really,
11529         but it's how Perl getopt works.
11530         * bin/autom4te.in (parse_args): Configure GetOpt with
11531         "permute", too.
11532         * doc/autoconf.texi (Invoking autom4te):
11533         --warning -> --warnings.
11534         * lib/autom4te.in: --warning -> --warnings.
11536 2002-09-28  Akim Demaille  <akim@epita.fr>
11538         * doc/autoconf.texi (autom4te.cache): New section.
11540 2002-09-28  Akim Demaille  <akim@epita.fr>
11542         * lib/autom4te.in (Autoscan-preselections, Autoreconf-preselections)
11543         (Automake-preselections): Update.
11544         * bin/autoreconf.in, bin/autoheader.in: Comment changes.
11546 2002-09-28  Akim Demaille  <akim@epita.fr>
11548         * lib/autoscan/autoscan.pre: Move all the remaining rules to...
11549         * lib/autoconf/c.m4, lib/autoconf/functions.m4,
11550         * lib/autoconf/headers.m4, lib/autoconf/libs.m4,
11551         * lib/autoconf/specific.m4, lib/autoconf/types.m4: here.
11553 2002-09-28  Akim Demaille  <akim@epita.fr>
11555         * tests/torture.at (Configuring subdirectories): Be robust to
11556         users who use config.site to require for a cache: in this case,
11557         the two last configure runs, using two different sets of
11558         arguments, trigger a legitimate error.
11560 2002-09-28  Akim Demaille  <akim@epita.fr>
11562         * tests/m4sh.at (Functions Support, Functions and return Support):
11563         New.
11565 2002-09-28  Akim Demaille  <akim@epita.fr>
11567         * bin/Makefile.am (ETAGS_SH, ETAGS_PERL): Update: ifnames and
11568         autoheader are Perl programs.
11569         (autoconf, autoheader, autoreconf, autoupdate, ifnames, autoscan)
11570         (autom4te): Specify that the sources are in the $srcdir.
11571         * doc/autoconf.texi (Installation Directory Variables): Adjust.
11573 2002-09-28  Akim Demaille  <akim@epita.fr>
11575         * lib/autoscan/autoscan.pre (st_blksize, st_blocks, st_rdev)
11576         (tm_zone): Move their rules to...
11577         * lib/autoconf/types.m4: here, using AN_ macros.
11578         * lib/autoscan/autoscan.pre (AWK, BISON, INSTALL, LEX, LN, MAKE)
11579         (RANLIB, YACC, awk, bison, byacc, flex, gawk, install, lex, ln)
11580         (make, mawk, nawk, ranlib, yacc): Similarly, move to...
11581         * lib/autoconf/programs.m4: here.
11582         * lib/freeze.mk (ETAGS_FOR_M4, ETAGS_FOR_M4SUGAR)
11583         (ETAGS_FOR_AUTOCONF): New.
11584         Use it.
11586 2002-09-28  Akim Demaille  <akim@epita.fr>
11588         * lib/autoconf/autoscan.m4: New file.
11589         * lib/autoconf/autoconf.m4: Include it.
11590         * lib/autoconf/functions.m4: Use AN_FUNCTION for all the functions
11591         that were listed in the original autoscan.list.
11592         * lib/autoconf/headers.m4: Similarly with headers.
11593         * lib/freeze.mk (autoconf_m4f_dependencies): Add autoscan.m4.
11594         (.m4.m4f): Don't pass --prepend-include, since that's done by
11595         tests/autom4te itself.
11596         * lib/autoscan/Makefile.am: Include freeze.mk.
11597         (autoscan.list): New target --this file is no longer a source.
11598         (autoscan.pre): New file.
11600 2002-09-28  Akim Demaille  <akim@epita.fr>
11602         * bin/autoscan.in (@kinds): Make them singular.
11603         Adjust all uses.
11604         (&init_tables): When --debug, report the list of rules to ease
11605         tracking changes in autoscan.list.
11606         * lib/autoscan/autoscan.list (function): Strip comments, sort.
11608 2002-09-28  Akim Demaille  <akim@epita.fr>
11610         * lib/autoscan/functions, lib/autoscan/headers,
11611         * lib/autoscan/identifiers, lib/autoscan/makevars,
11612         * lib/autoscan/programs: Merge into...
11613         * lib/autoscan/autoscan.list: this.
11614         * bin/autoscan.in (&init_tables): Adjust.
11616 2002-09-28  Akim Demaille  <akim@epita.fr>
11618         * lib/autoscan/functions, lib/autoscan/headers,
11619         * lib/autoscan/identifiers, lib/autoscan/makevars,
11620         * lib/autoscan/programs: Make the `kind' explicit, i.e., each
11621         `functions' line is now prefixed with `function:'.
11622         * bin/autoscan.in (&init_tables): Adjust.
11624 2002-09-28  Akim Demaille  <akim@epita.fr>
11626         From now on, autoscan files must always map a macro name to a
11627         word: there is no `default' macro for autoscan.
11629         * bin/autoscan.in (&init_tables): Reject entries with no macro at
11630         all.
11631         * lib/autoscan/functions, lib/autoscan/headers: Make the macro
11632         explicit.
11634 2002-09-28  Akim Demaille  <akim@epita.fr>
11636         * bin/autoscan.in (%c_keywords): Remove.
11637         (&used): Keep only track of the words we might be interested in.
11638         (&output_kind): It is no longer needed to look for non active
11639         checks.
11641 2002-09-27  Akim Demaille  <akim@epita.fr>
11643         * lib/autoconf/functions.m4 (AC_FUNC_MBRTOWC): New, stolen from
11644         jm_FUNC_MBRTOWC, by Paul Eggert, from the Coreutils 4.5.1.
11645         * lib/autoscan/functions: Adjust.
11646         * doc/autoconf.texi (Particular Functions): Adjust.
11648 2002-09-27  Akim Demaille  <akim@epita.fr>
11650         * doc/autoconf.texi (Limitations of Usual Tools): Some about mv
11651         from /tmp.
11652         Thanks to Bill Moseley and Paul Eggert.
11653         * lib/m4sugar/m4sh.m4 (AS_TMPDIR): $2 is the directory into which
11654         the tmpdir must be created.
11655         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Have the tmp
11656         dir be in the build tree, instead of $TMPDIR.
11658 2002-09-27  Akim Demaille  <akim@epita.fr>
11660         * bin/autoscan.in: Improve the comments.
11661         (&parse_args): Drop obsolete undocumented options.
11662         (&output_kind): Output warnings.
11663         * lib/autoscan/functions: (dcgettext): Now trigger AM_GNU_GETTEXT.
11664         (getwd): Trigger a warning.
11666 2002-09-26  Akim Demaille  <akim@epita.fr>
11668         * bin/autoreconf.in: Clarify that -s is meaningless without -i.
11669         Reported by Ralf Corsepius.
11670         * doc/autoconf.texi (autoreconf Invocation): Likewise.
11672 2002-09-26  Akim Demaille  <akim@epita.fr>
11674         Single suffix rules and seperated dependencies are not portable.
11676         * doc/autoconf.texi (Installation Directory Variables): Update.
11677         (Limitations of Make): Some about `Single Suffix Rules and
11678         Separated Dependencies'.
11679         * bin/Makefile.am (autoconf, autoheader, autoreconf, autoupdate)
11680         (ifnames, autoscan, autom4te): Un-factor into several rules.
11682 2002-09-25  Paul Eggert  <eggert@twinsun.com>
11684         * BUGS (Interoperability bugs): New section.  Mention libtool
11685         1.4.2, configure.ac, and AC_CONFIG_AUX_DIR interoperability bug.
11687 2002-09-24  Paul Eggert  <eggert@twinsun.com>
11689         Fix a portability bug reported by Alexandre Duret-Lutz: Solaris 8
11690         make handles suffix-rules differently from GNU make.
11692         * bin/Makefile.am (SUFFIXES, .in): Remove.
11693         (autoconf autoheader autoreconf autoupdate ifnames autoscan autom4te):
11694         Move the body of the old .in rule here.
11696 2002-09-16  Akim Demaille  <akim@epita.fr>
11698         i960 compilers create `b.out' files by default.
11699         Reported by Ralf Corsepius.
11701         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT): Remove b.out files.
11702         (_AC_COMPILER_EXEEXT_DEFAULT): Adjust to b.out.
11704 2002-09-13  Paul Eggert  <eggert@twinsun.com>
11706         * doc/autoconf.texi (Particular Headers): Remove obsolete
11707         reference to `struct timezone' in the description of
11708         AC_HEADER_TIME.
11710 2002-09-13  Akim Demaille  <akim@epita.fr>
11712         Version 2.54.
11714         * config/config.sub, config/config.guess: Update.
11715         * Makefile.maint: Update from bits of the Coreutils 4.5.1.
11716         * Makefile.am: Adjust.
11718 2002-09-13  Akim Demaille  <akim@epita.fr>
11720         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Suggest
11721         reading config.log when the compiler is rejected.
11722         Suggested by Guido Draheim.
11724 2002-09-13  Akim Demaille  <akim@epita.fr>
11726         * bin/autoreconf.in: Don't use Cwd::chdir, since in its internals
11727         (chdir_init) might hang when stat'ing mounted directories.
11728         Reported by Vance Shipley.
11730 2002-09-12  Akim Demaille  <akim@epita.fr>
11732         * bin/autoscan.in (&parse_args): Pass a reference to the lists, not
11733         the lists.
11735 2002-09-12  Akim Demaille  <akim@epita.fr>
11737         * doc/autoconf.texi (Defining Symbols): Present two different
11738         prototypes for AC_DEFINE and AC_DEFINE_UNQUOTED to emphasize the
11739         difference between 1 argument calls, and 2-3 argument calls.
11741 2002-09-12  Peter Eisentraut  <peter_e@gmx.net>
11743         * doc/autoconf.texi: Review grammar and punctuation.
11745 2002-09-11  Paul Eggert  <eggert@twinsun.com>
11747         * doc/autoconf.texi: Fix minor formatting, spelling, and
11748         grammatical typos.
11749         (Defining Symbols): Explain that AC_DEFINE(var) defaults to 1, but
11750         AC_DEFINE(var,,description) does not; and the AC_DEFINE(var) case
11751         is obsolescent.
11753 2002-09-11  Akim Demaille  <akim@epita.fr>
11755         * doc/autoconf.texi (Questions): Rename as...
11756         (FAQ): this.
11757         (Defining Directories): New.
11759 2002-09-09  Akim Demaille  <akim@epita.fr>
11761         * doc/autoconf.texi (Making testsuite Scripts): Update.
11762         Suggested by Nishio Futoshi.
11764 2002-09-09  Koji Arai  <JCA02266@nifty.ne.jp>
11766         * doc/autoconf.texi (Making testsuite Scripts): Use `@@' where a
11767         plain `@' is wanted.
11769 2002-09-09  Akim Demaille  <akim@epita.fr>
11771         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Keep the
11772         `duplicates', since the algorithm was too naive and could keep
11773         `--prefix=1 --prefix=2 --prefix=1' as `--prefix=1 --prefix=2', and
11774         keep `--prefix foo --prefix bar' as `--prefix foo bar'.
11775         Reported by Ralf Corsepius.
11776         * tests/torture.at (Configuring subdirectories): Exercise these
11777         cases.
11779 2002-09-09  Akim Demaille  <akim@epita.fr>
11781         * lib/autoconf/functions.m4 (AC_FUNC_GETLOADAVG): Use $srcdir when
11782         looking for a replacement file.
11783         * lib/autoconf/general.m4 (AC_CHECK_DECLS): Check that the
11784         directory is relative.
11785         * doc/autoconf.texi (Generic Functions): Clarify the replacement
11786         directory definition.
11787         Reported by Andreas Schwab and Jim Meyering.
11789 2002-09-06  Akim Demaille  <akim@epita.fr>
11791         * doc/autoconf.texi (Setting Output Variables): Clarify what
11792         precious variables are.
11793         Suggested by Pontus Skoeld.
11795 2002-09-05  Akim Demaille  <akim@epita.fr>
11797         * bin/Makefile.am (autoconf, autoheader, autoreconf, autoupdate)
11798         (ifnames, autoscan, autom4te): Since we don't only depend on
11799         configure.ac variables (such as VERSION etc.), but also on prefix
11800         and so forth, depend on Makefile, not configure.ac.
11801         Reported by Alexandre Duret-Lutz.
11802         * doc/autoconf.texi (Installation Directory Variables): Adjust.
11804 2002-09-05  Kevin Ryde  <user42@zip.com.au>
11806         * doc/autoconf.texi (Limitations of Make): HP-UX trailing backslashes
11807         doesn't seem to be confined to ia64, just say "some versions".
11809 2002-09-04  Akim Demaille  <akim@epita.fr>
11811         * Makefile.am, doc/Makefile.am: Remove pdf targets, handled by
11812         Automake 1.6c.
11813         * Makefile.am (maintainer-clean-local): Remove.
11814         (MAINTAINERCLEANFILES): Remove COPYING.
11816 2002-09-03  Paul Eggert  <eggert@twinsun.com>
11818         * doc/autoconf.texi (Configuration Commands): Remove obsolete
11819         example for AC_CONFIG_COMMANDS_PRE.  Problem reported by Marcus
11820         Brinkmann.
11822 2002-09-03  Akim Demaille  <akim@epita.fr>
11824         * configure.ac: Bump to 2.53d.
11825         * Makefile.am (AUTOMAKE_OPTIONS): Require 1.6c, i.e., CVS Automake
11826         as of today, on Automake's team suggestion.
11828 2002-09-03  Akim Demaille  <akim@epita.fr>
11830         Version 2.53c.
11832 2002-09-02  Akim Demaille  <akim@epita.fr>
11834         * bin/autom4te.in (parse_args): Don't honor AUTOM4TE_PATH and
11835         SITE_MACRO_DIR.
11836         * configure.ac: Disable SITE_MACRO_DIR.
11838 2002-09-02  Jim Meyering  <meyering@lucent.com>
11840         * doc/autoconf.texi (AC_SYS_POSIX_TERMIOS): Reflect renaming: s/am/ac/,
11841         i.e., change am_cv_sys_posix_termios to ac_cv_sys_posix_termios.
11842         Also, tweak grammar: s/make sure to/be sure to/.
11844 2002-09-02  Paul Eggert  <eggert@twinsun.com>
11846         * doc/autoconf.texi (Limitations of Builtins): Explain why logical
11847         directory names are generally preferable to physical names.
11849 2002-09-02  Akim Demaille  <akim@epita.fr>
11851         * lib/Autom4te/General.pm (&update_file): s/die/error/.
11852         Reported by Raja R. Harinath.
11853         * bin/autoheader.in, bin/autoreconf.in, bin/autoscan.in,
11854         * bin/autoupdate.in: Use error instead of die.
11856 2002-09-01  Paul Eggert  <eggert@twinsun.com>
11858         * tests/mktests.sh (ac_exclude_egrep, au_exclude_egrep): Use
11859         ordinary shell concatenation rather than echo+tr+sed command that
11860         runs afoul of a long-line-related sed bug in Solaris 8.
11862         * bin/autoheader.in (parse_args): --warning -> --warnings.
11864         * bin/autoconf.as: Work even if "ls" outputs "FOO not found" to
11865         stdout, as traditional "ls" does.
11866         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT,
11867         _AC_COMPILER_EXEEXT_O): Likewise.
11868         * doc/autoconf.texi (Limitations of Usual Tools): Add "ls".
11870         * bin/autoconf.as: Add --prepend-include option.  This patch was
11871         applied to bin/autoconf.in in the 2002-07-17 patch by Mark D. Roth,
11872         but bin/autoconf.in is generated automatically from bin/autoconf.as.
11874         * bin/autoconf.in, configure: Regenerate.
11876         * doc/autoconf.texi (Special Shell Variables): Mention
11877         ENV, MAIL, MAILPATH, PS1, PS2, PS4.  Index PWD.
11879         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Unset ENV, MAIL,
11880         MAILPATH and set PS1, PS2, PS4 to default values, to work
11881         around bug in pre-3.0 UWIN ksh reported by Bruce Lilly.
11882         For LC_ALL etc, first try to set to "C" as POSIX requires and as
11883         the Autoconf documentation specifies; fall back to "unset" only if
11884         this fails.  Use a shell for-loop for this rather than an m4 loop,
11885         to shorten the output script.
11887 2002-08-30  Paul Eggert  <eggert@twinsun.com>
11889         * doc/autoconf.texi (Special Shell Variables): Mention POSIX
11890         1003.1-2001's requirements for CDPATH.  Give a simpler workaround
11891         for the CDPATH problem.  Document PWD.
11892         (Limitations of Builtins): Document the problem that "cd $foo" and
11893         "ls $foo" may refer to different directories in shells conforming
11894         to POSIX 1003.1-2001.  Use PS1 rather than CDPATH for "unset"
11895         example, since the old example is now out of date.
11897         * lib/autoconf/general.m4 (_AC_INIT_SRCDIR): Reject FOO if "cd
11898         FOO" and "ls FOO" talk about different directories; this catches
11899         problems when POSIX 1003.1-2001 "cd" fails due to symlink
11900         spaghetti.
11902         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Use AS_UNSET instead
11903         of rolling our own unset.
11904         (_AS_PREPARE): $as_unset CDPATH instead of AS_UNSETting it, since
11905         in practice we needn't worry about CDPATH if unset doesn't work.
11907         * Makefile.in, aclocal.m4, bin/Makefile.in,
11908         config/Makefile.in, doc/Makefile.in, lib/Makefile.in,
11909         lib/Autom4te/Makefile.in, lib/autoconf/Makefile.in,
11910         lib/autoscan/Makefile.in, lib/autotest/Makefile.in,
11911         lib/emacs/Makefile.in, lib/m4sugar/Makefile.in, man/Makefile.in,
11912         tests/Makefile.in: Regenerate with Automake 1.6.3.
11914         * config/config.guess, config/config.sub, config/mkinstalldirs:
11915         Update.
11917         * configure: Regenerate with self.
11919 2002-08-30  Kevin Ryde  <user42@zip.com.au>
11921         * doc/autoconf.texi (Limitations of Usual Tools): Notes on "cc"
11922         default output.
11924 2002-08-29  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
11926         * bin/autom4te.in (Request::load): Correctly test for "do" read
11927         failure.
11929 2002-08-29  Akim Demaille  <akim@epita.fr>
11931         * lib/Autom4te/General.pm (&xqx): New.
11932         (&xsystem): Use WIFEXITED and WEXITSTATUS instead of decoding $? by
11933         hand, which is not portable.
11934         (&error): New.
11935         * bin/autom4te.in: Use them.
11936         Use &error instead of die.
11937         * tests/m4sugar.at (m4_warn, m4_require: circular dependencies):
11938         Adjust.
11940 2002-08-17  Paul Eggert  <eggert@twinsun.com>
11942         * lib/autoconf/fortran.m4 (AC_PROG_F77): Remove fc from the
11943         default list of compilers to try, since it was long ago superseded
11944         by the ksh fc builtin.  Suggested by Steven G. Johnson.
11946 2002-07-31  Alexandre Duret-Lutz  <duret_g@epita.fr>
11948         * doc/autoconf.texi (Invoking autom4te): End the option table,
11949         fixing a bug introduced by the previous patch.
11950         (Limitations of Make): Add a 'target lookup' subentry in the
11951         'VPATH' entry.  Rewrite all `make' occurences as `@command{make}'.
11953 2002-07-29  Mark D. Roth  <roth@feep.net>
11955         * bin/autom4te.in: Remove --include-envvar and --site-macro-subdir
11956         options and use $AUTOM4TE_PATH.
11957         * doc/autoconf.texi: Remove documentation of autom4te
11958         --include-envvar and --site-macro-subdir options and document
11959         use of $AUTOM4TE_PATH.
11960         * lib/autom4te.in: Remove --include-envvar and --site-macro-subdir
11961         arguments from each language section.
11963 2002-07-29  Paul Eggert  <eggert@twinsun.com>
11965         * doc/install.texi: Include copyright symbol in copyright notice.
11967         * Makefile.am (MAKEINFO): Remove; it's a user-specified macro.
11968         Replace with:
11969         (AM_MAKEINFOFLAGS): New macro.
11970         * doc/Makefile.am (MAKEINFO, AM_MAKEINFOFLAGS): Likewise.
11971         * Makefile.am (INSTALL): Use the new macros.
11972         Use -o rather than --output, since "missing" does not grok --output.
11974 2002-07-25  Alexandre Duret-Lutz  <duret_g@epita.fr>
11976         * doc/autoconf.texi (Limitations of Make): Escaped newlines in
11977         comments do not always work. Never trust the exit status of
11978         `make -k'.
11980 2002-07-24  Kevin Ryde  <user42@zip.com.au>
11982         * doc/autoconf.texi (Limitations of Make, Making testsuite Scripts):
11983         Untabify, since tabs are not enjoyed by texi2dvi and makeinfo.
11985 2002-07-23  Paul Eggert  <eggert@twinsun.com>
11987         * lib/m4sugar/m4sh.m4 (_AS_PATH_SEPARATOR_PREPARE):
11988         Use PATH="/nonexistent;.", not PATH=".;.", as FreeBSD ksh2002
11989         apparently treats PATH="nonexistent" as if it contained ".".
11990         Bug reported by Stefan `Sec' Zehl.
11992 2002-07-22  Alexandre Duret-Lutz  <duret_g@epita.fr>
11994         * doc/autoconf.texi (Limitations of Make): Mention the special
11995         handling of the obj/ directory by BSD make.
11997 2002-07-20  Kevin Ryde  <user42@zip.com.au>
11999         * doc/autoconf.texi (Limitations of Make): Add HP-UX IA-64 trailing
12000         backslashes.
12002 2002-07-19  Akim Demaille  <akim@epita.fr>
12004         * doc/autoconf.texi (Function Portability): `exit'.
12005         (Programming in M4sh): Ethymology of M4sh.
12007 2002-07-19  Akim Demaille  <akim@epita.fr>
12009         * doc/autoconf.texi (AC_LIBOBJ vs LIBOBJS): More about $U.
12011 2002-07-18  Akim Demaille  <akim@epita.fr>
12013         Version 2.53b.
12015 2002-07-18  Akim Demaille  <akim@epita.fr>
12017         * config/config.guess, config/config.sub: Update.
12019 2002-07-18  Akim Demaille  <akim@epita.fr>
12021         Handle LIBOBJS and LTLIBOBJS once for all, including Libtool's and
12022         Automake's parts.
12024         * lib/autoconf/general.m4 (_AC_LIBOBJS_NORMALIZE): New.
12025         * lib/autoconf/status.m4 (AC_OUTPUT_COMMANDS_PRE): Call it.
12026         * tests/semantics.at (AC_REPLACE_FUNCS): Adjust.
12028 2002-07-18  Akim Demaille  <akim@epita.fr>,
12029             Alexandre Duret-Lutz  <duret_g@epita.fr>
12031         * lib/autoconf/status.m4 (_AC_OUTPUT_HEADERS): Install
12032         _AC_AM_CONFIG_HEADER_HOOK for Automake 1.7.
12034 2002-07-17  Russ Allbery  <rra@stanford.edu>
12036         * doc/autoconf.texi (Initializing configure): Clarify the
12037         description of the tarname default.
12039 2002-07-17  Andreas Buening  <andreas.buening@nexgo.de>
12041         * lib/autoconf/functions.m4 (AC_FUNC_FORK): Don't set
12042         ac_cv_func_fork_works before running _AC_FUNC_FORK, do it if the
12043         latter was not run.
12045 2002-07-17  Akim Demaille  <akim@epita.fr>
12047         * lib/Autom4te/General.pm (find_file): Browse the directories in
12048         the order they are given.
12050 2002-07-17  Akim Demaille  <akim@epita.fr>
12052         * tests/wrapsh.as, tests/wrappl.as: Merge into...
12053         * tests/wrapper.as: this.
12054         * tests/Makefile.am, configure.ac: Adjust.
12056 2002-07-17  Mark D. Roth  <roth@feep.net>
12058         * configure.ac: Add --enable-site-macro-dir option.
12059         * bin/Makefile.am: Expand @SITE_MACRO_DIR@.
12060         * bin/autom4te.in: Add --prepend-include, --include-envvar, and
12061         --site-macro-subdir options.
12062         * bin/autoconf.in: Add --prepend-include option.
12063         * bin/autoheader.in: Add --prepend-include option.
12064         * bin/autoreconf.in: Add --prepend-include option.
12065         * bin/autoscan.in: Add --prepend-include option.
12066         * bin/autoupdate.in: Add --prepend-include option.
12067         * doc/autoconf.texi: Document use of $AC_MACRO_PATH and site
12068         macro directory, remove note that include path directories are
12069         used in reverse order, and document --prepend-include option.
12070         * lib/autom4te.in: Use --prepend-include instead of --include.
12071         * tests/wrapsh.in: Use --prepend-include instead of --include.
12073 2002-07-17  Akim Demaille  <akim@epita.fr>
12075         * lib/autoconf/general.m4 (_AC_INIT_PACKAGE): `_' is allowed in
12076         tarnames.
12077         * doc/autoconf.texi (Initializing configure): Adjust.
12079 2002-07-17  Akim Demaille  <akim@epita.fr>
12081         * lib/autoconf/functions.m4 (AC_FUNC_REALLOC, _AC_FUNC_REALLOC)
12082         (_AC_FUNC_MALLOC): New.
12083         (AC_FUNC_MALLOC): Use the latter.
12084         Define HAVE_MALLOC to 0 if broken.
12085         * doc/autoconf.texi (Particular Functions): Adjust.
12087 2002-07-16  Akim Demaille  <akim@epita.fr>
12089         * lib/autoconf/c.m4 (AC_C_BACKSLASH_A): New.
12090         * doc/autoconf.texi (C Compiler): Adjust.
12092 2002-07-09  Akim Demaille  <akim@epita.fr>
12094         * doc/autoconf.texi: Properly set the ``header'' part.
12096 2002-07-09  Akim Demaille  <akim@epita.fr>
12098         * doc/autoconf.texi (Systemology): Some about Darwin.
12100 2002-07-09  Alexandre Duret-Lutz  <duret_g@epita.fr>
12102         * lib/autoconf/specific.m4 (AC_CYGWIN, AC_EMXOS2, AC_MINGW32):
12103         Don't use AC_REQUIRE in AU_DEFUN.
12105 2002-07-09  Art Haas  <ahaas@neosoft.com>
12107         * doc/autoconf.texi: Use @enddots{} or @dots{} where appropriate.
12109 2002-07-02  Alexandre Duret-Lutz  <duret_g@epita.fr>
12111         * bin/autoheader.in, bin/autom4te.in, bin/autoreconf.in,
12112         bin/autoupdate.in, bin/ifnames.in, lib/Autom4te/General.pm,
12113         lib/Autom4te/Struct.pm, lib/Autom4te/XFile.pm: Add local variables
12114         so that Emacs setups GNU style for perl-mode and cperl-mode.
12116 2002-06-27  Paul Eggert  <eggert@twinsun.com>
12118         * config/install-sh: Quote $src.  Prefer || to test's -o option,
12119         as per "Limitations of Builtins".
12120         * tests/atspecific.m4 (AT_CHECK_ENV): Likewise, for && vs test -a.
12121         * tests/semantics.at (AC_C_BIGENDIAN): Likewise.
12123         * tests/mktests.sh: Use grep instead of fgrep, as per
12124         "Limitations of Builtins".
12126 2002-06-15  Paul Eggert  <eggert@twinsun.com>
12128         * tests/wrapsh.as (AUTOCONF, AUTOHEADER, AUTOM4TE, AUTOM4TE_CFG,
12129         autom4te_perllibdir): Set to top build dir or src dir as appropriate,
12130         so that we consistently test the just-built programs.
12131         * tests/wrappl.as: Likewise.
12133 2002-06-12  Paul Eggert  <eggert@twinsun.com>
12135         * bin/autoconf.as (AUTOM4TE): Default to a fully qualified path
12136         name, so that symlinks to 'autoconf' work properly.  Bug reported
12137         by Bruno Haible.
12138         * bin/autoheader.in (AUTOM4TE): Likewise.
12139         * bin/autoreconf.in (autoconf, autoheader): Likewise.
12140         * bin/autoscan.in (autom4te): Likewise.
12141         * bin/autoupdate.in (autom4te): Likewise.
12143         * lib/autoconf/functions.m4 (_AC_LIBOBJ_FNMATCH): Also check for
12144         btowc, to fix a portability bug with diffutils-2.8.2/lib/fnmatch.c
12145         on Solaris 2.5.1.
12147 2002-06-11  Andreas Schwab  <schwab@suse.de>
12149         * doc/autoconf.texi: Add more dir entries.
12151 2002-06-10  Alexandre Duret-Lutz  <duret_g@epita.fr>
12153         * bin/autom4te.in ($cache): Don't define using `$me', the name
12154         of the cache should not depend on the name under which autom4te
12155         was installed.
12157 2002-06-07  Akim Demaille  <akim@epita.fr>
12159         * tests/tools.at (autoconf: forbidden tokens, basic)
12160         (autoconf: forbidden tokens, exceptions): Adjust to the change of
12161         words in autom4te.in.
12163 2002-06-07  Peter Eisentraut  <peter_e@gmx.net>
12165         * lib/autoconf/c.m4 (AC_LANG_PROGRAM(C)): Use
12166         _AC_LANG_PROGRAM_C_F77_HOOKS.
12168 2002-06-07  Akim Demaille  <akim@epita.fr>
12170         * lib/autoconf/functions.m4 (AC_REPLACE_FUNC_FNMATCH): Typo,
12171         rename as...
12172         (AC_REPLACE_FNMATCH): this.
12173         * tests/mktests.sh (exclude_list): Exclude AC_REPLACE_FNMATCH,
12174         AC_FUNC_FNMATCH_GNU.
12176 2002-06-07  Akim Demaille  <akim@epita.fr>
12178         * doc/autoconf.texi (Systemology): Point to Tru64 docs, and the
12179         Rosetta Stone for Unix.
12181 2002-06-07  Akim Demaille  <akim@epita.fr>
12183         * bin/autom4te.in (warn_forbidden): When rejecting a token,
12184         suggest m4_pattern_allow.
12185         Suggested by Adam J. Richter.
12187 2002-06-07  Akim Demaille  <akim@epita.fr>
12189         * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS): Initialize
12190         ac_config_libobj_dir.
12191         (AC_CONFIG_LIBOBJ_DIR): New.
12192         * lib/autoconf/functions.m4 (_AC_FUNC_FNMATCH): Split into...
12193         (_AC_FUNC_FNMATCH_IF, _AC_LIBOBJ_FNMATCH): these.
12194         Use ac_config_libobj_dir to find the replacement files.
12195         (AC_FUNC_FNMATCH, AC_FUNC_FNMATCH_GNU): Split into...
12196         (AC_FUNC_FNMATCH, AC_FUNC_FNMATCH_GNU, AC_REPLACE_FNMATCH)
12197         (AC_REPLACE_FNMATCH_GNU): these.
12198         (AC_FUNC_GETLOADAVG): Use ac_config_libobj_dir.
12199         * doc/autoconf.texi (Particular Functions, Generic Functions): Adjust.
12200         * tests/mktests.sh (ac_exclude_list): Don't check
12201         AC_FUNC_GETLOADAVG as it requires getloadavg.c which is not shipped.
12203 2002-06-06  Paul Eggert  <eggert@twinsun.com>
12205         * lib/autoconf/status.m4 (_AC_OUTPUT_LINKS): Fall back on cp
12206         if ln doesn't work.
12207         * NEWS: Likewise.
12208         * doc/autoconf.texi (Configuration Links): Likewise.
12209         (Limitations of Usual Tools): Prefer $(LN_S) to ln -s || ln.
12211 2002-06-05  Paul Eggert  <eggert@twinsun.com>
12213         * config/config.guess, config/config.sub, config/texinfo.tex:
12214         Update from masters.
12216 2002-05-29  Paul Eggert  <eggert@twinsun.com>
12218         * bin/autom4te.in ($m4): Do not assume that egrep and fgrep exist.
12219         * lib/autoconf/c.m4 (AC_C_BIGENDIAN): Likewise.
12220         * lib/autoconf/general.m4 (_AC_RUN_LOG_STDERR, AC_EGREP_CPP):
12221         Likewise.
12222         * lib/autoconf/Makefile.am (check-local): Likewise.
12223         * lib/autoconf/status.m4 (AC_CONFIG_HEADER): Likewise.
12224         * lib/autoconf/types.m4 (commentary only): Likewise.
12225         * lib/autotest/general.m4 (AT_INIT, AT_CHECK): Likewise.
12226         * lib/autotest/Makefile.am (check-local): Likewise.
12227         * lib/m4sugar/Makefile.am (check-local): Likewise.
12228         * tests/atspecific.m4 (AT_CONFIGURE_AC, AT_CHECK_DEFINES): Likewise.
12229         * tests/mktests.sh (egrep): New var; use it instead of plain egrep.
12231         * lib/autoconf/programs.m4 (AC_PROG_EGREP, AC_PROG_FGREP): New macros.
12232         * doc/autoconf.texi (Particular Programs): Document them.
12233         (Limitations of Usual Tools): Warn that egrep and fgrep may not exist.
12234         * NEWS: Likewise.
12236 2002-05-27  Paul Eggert  <eggert@twinsun.com>
12238         * lib/autoconf/types.m4 (AC_TYPE_MBSTATE_T): New macro.
12239         * NEWS, doc/autoconf.texi (Particular Types): Document it.
12240         * lib/autoconf/functions.m4 (_AC_FUNC_FNMATCH): Require it
12241         instead of AC_MBSTATE_T, which never existed.
12243 2002-05-23  Akim Demaille  <akim@epita.fr>
12245         * doc/autoconf.texi (Hosts and Cross-Compilation): Specify the
12246         version of Autoconf that is discussed.
12248 2002-05-22  Paul Eggert  <eggert@twinsun.com>
12250         * lib/autoconf/fortran.m4 (AC_PROG_F77): Remove cf77 and cft77
12251         from the default list of compilers to try.  Suggested by
12252         Kate Hedstrom.
12253         * NEWS: Document the above.
12254         * doc/autoconf.texi (Fortran 77 Compiler): Don't suggest cf77.
12256 2002-05-17  Paul Eggert  <eggert@twinsun.com>
12258         * lib/autoconf/types.m4 (AC_CHECK_MEMBER): Work correctly even if
12259         the member is itself an aggregate.  Bug reported by Sergey Poznyakoff.
12260         This improves on an earlier suggestion by H. Peter Anvin.
12262 2002-05-16  Paul Eggert  <eggert@twinsun.com>
12264         AC_FUNC_FNMATCH now tests only for POSIX compatibility.
12265         AC_FUNC_FNMATCH_GNU also tests for GNU extensions.
12266         Both macros now accept an optional source-dir arg.
12267         New macro AC_GNU_SOURCE to define _GNU_SOURCE.
12269         * NEWS: Document this.
12270         * doc/autoconf.texi (Particular Functions, UNIX Variants): Likewise.
12272         * lib/autoconf/functions.m4 (_AC_FUNC_FNMATCH): New macro.
12273         (AC_FUNC_FNMATCH): Use it.  Test only for POSIX conformance,
12274         not for GNU extensions; this undoes part of the 2000-11-03 change,
12275         reverting to 2.13-compatible behavior.
12276         Add new optional argument DIR.
12277         (AC_FUNC_FNMATCH_GNU): New macro.
12279         * lib/autoconf/specific.m4 (AC_GNU_SOURCE): New macro.
12281 2002-05-08  Paul Eggert  <eggert@twinsun.com>
12283         * lib/autoconf/headers.m4 (AC_HEADER_TIOCGWINSZ):
12284         Don't require AC_SYS_POSIX_TERMIOS.  The test is unnecessary,
12285         and it causes a 'test' syntax error if it fails.
12286         Bug reported by Stephen Gildea.
12288         * lib/autoconf/functions.m4 (AC_FUNC_SETVBUF_REVERSED):
12289         If prototypes are supported, use them to check this at compile-time,
12290         instead of trying to check it at run-time.  If we must do a run-time
12291         check, assume that setvbuf is standard when cross-compiling, as
12292         nonstandard setvbuf occurs only on ancient and unlikely hosts.
12293         Bug reported by Paul D. Smith.
12295         * lib/autoconf/functions.m4 (AC_FUNC_GETLOADAVG): Add optional
12296         argument specifying location of getloadavg.c.  This removes a
12297         FIXME.  This idea was taken from Jim Meyering's implementation in
12298         textutils.
12299         * doc/autoconf.texi (Particular Functions): Document this.
12300         Also, mention HAVE_NLIST_H rather than NLIST_STRUCT, since
12301         that's what the code does; this fixes a bug reported by
12302         Paul D. Smith.
12304 2002-05-03  Akim Demaille  <akim@epita.fr>
12306         * bin/autoreconf.in (autoreconf): Rewrite to use Gettext's
12307         autopoint instead of gettextize.
12308         ($uses_alocal): Rename as...
12309         ($uses_aclocal): this.
12310         * doc/autoconf.texi (autoreconf Invocation): Adjust.
12311         Suggested by Bruno Haible.
12313 2002-05-03  Akim Demaille  <akim@epita.fr>
12315         * lib/m4sugar/m4sugar.m4 (m4_map_sep): New.
12317 2002-04-29  Paul Eggert  <eggert@twinsun.com>
12319         * bin/autoreconf.in (autoreconf): Don't age aclocal.m4's input
12320         files to be 1 second older; just set them to be the same time.
12321         Also, sleep 1 second after the first aclocal, to work around
12322         problems with sub-second time stamps on the input files.
12324 2002-04-29  Thien-Thi Nguyen  <ttn@gnu.org>
12326         * doc/autoconf.texi: Mention "set -e -x" lossage
12327         under node "Limitations of Builtins".
12329 2002-04-29  Akim Demaille  <akim@epita.fr>
12331         * doc/install.texi: Better wording for setting variables when
12332         running configure.
12333         From Christian Cornelssen.
12335 2002-04-29  Akim Demaille  <akim@epita.fr>
12337         * tests/m4sh.at (LINENO): If testsuite itself is rewritten because
12338         of lack of $LINENO support, then the test will compare the $LINENO
12339         in testsuite vs. the lineno in the test file.  This is wrong, of
12340         course.
12341         Be sure to protect it.
12342         Reported by Patrick Welche.
12344 2002-04-25  Akim Demaille  <akim@epita.fr>
12346         * doc/autoconf.texi (Obsolete Macros): Typo.
12347         Reported by Vladimir Volovich.
12349 2002-04-25  Akim Demaille  <akim@epita.fr>
12351         * bin/autoreconf.in (autoreconf): Don't let aclocal.m4 be older
12352         than some of the input files, hence, on the second run of aclocal,
12353         if some of its input are younger, make them older.
12354         Suggested by Paul Eggert.
12356 2002-04-25  Akim Demaille  <akim@epita.fr>
12358         * doc/autoconf.texi (Limitations of Usual Tools): sed and `!'.
12359         Thanks to Paul Eggert.
12361 2002-04-25  Akim Demaille  <akim@epita.fr>
12363         * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS): Let ac_subst_files
12364         and ac_subst_vars be sh variables containing the list of
12365         AC_SUBST_FILES'ed and AC_SUBST'ed identifiers.  Output them in the
12366         DEFAULT diversion.
12367         (_AC_INIT_PREPARE): Use them to log them.
12368         (_AC_SUBST, _AC_SUBST_SED_PROGRAM): Remove.
12369         (AC_SUBST, AC_SUBST_FILE): Instead of buliding the
12370         _AC_SUBST_SED_PROGRAM, store the list of output files/variables in
12371         _AC_SUBST_FILES and _AC_SUBST_VARS.
12372         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES): Adjust.
12374 2002-04-24  Akim Demaille  <akim@epita.fr>
12376         * bin/autoreconf.in (autoreconf): Run automake after autoconf and
12377         autoheader, so that automake does not complain about a missing
12378         config.h.in that was to be created.
12380 2002-04-23  Akim Demaille  <akim@epita.fr>
12382         * bin/autoheader.in (parse_args): --warning takes an argument.
12383         Fixes PR/220.
12385 2002-04-22  Peter Eisentraut  <peter_e@gmx.net>
12387         * lib/autoconf/general.m4 (_AC_RUN_IFELSE): Remove gmon.out
12388         and bb.out when cleaning up.
12390 2002-04-22  Akim Demaille  <akim@epita.fr>
12392         Version 2.53a.
12394 2002-04-22  Akim Demaille  <akim@epita.fr>
12396         * tests/m4sh.at (LINENO): Fix the Zsh skip pattern.
12398 2002-04-22  Akim Demaille  <akim@epita.fr>
12400         * doc/autoconf.texi (Pretty Help Strings): Remove a spurious
12401         comma.
12402         Reported by Gregory Giannoni.
12404 2002-04-22  Akim Demaille  <akim@epita.fr>
12406         * tests/m4sh.at (LINENO): Skip the test if LINENO cannot be unset.
12407         Fixes false failures on Darwin.
12409 2002-04-21  Paul Eggert  <eggert@twinsun.com>
12411         * TODO, bin/autoupdate.in, doc/autoconf.texi,
12412         lib/autoconf/general.m4, lib/autoconf/libs.m4,
12413         lib/autoconf/status.m4, lib/m4sugar/m4sugar.m4, tests/m4sh.at,
12414         tests/tools.at: Minor spelling and grammar fixes.
12416 2002-04-20  Paul Eggert  <eggert@twinsun.com>
12418         * doc/autoconf.texi (Shell Substitutions): Fix typos in yesterday's
12419         ZSH_VERSION fixes.  Bug reported by Raja R Harinath.
12420         * lib/autotest/general.m4 (AT_INIT): Likewise.
12421         * tests/atgeneral.m4 (AT_INIT): Likewise.
12423 2002-04-19  Paul Eggert  <eggert@twinsun.com>
12425         * NEWS, TODO, bin/autom4te.in, bin/autoreconf.in, bin/autoupdate.in,
12426         doc/autoconf.texi, lib/freeze.mk, lib/Autom4te/Struct.pm,
12427         lib/autoconf/autoheader.m4, lib/autoconf/c.m4,
12428         lib/autoconf/functions.m4, lib/autoconf/general.m4,
12429         lib/autoconf/lang.m4, lib/autoconf/libs.m4, lib/autoscan/identifiers,
12430         lib/autotest/general.m4, lib/m4sugar/m4sh.m4, tests/atgeneral.m4,
12431         tests/atspecific.m4, tests/semantics.at, tests/torture.at:
12432         Minor spelling and grammar fixes.
12434         * doc/autoconf.texi: Follow the outline suggested in the GNU
12435         Sample Texts sections of the Texinfo 4.2 manual.  Most
12436         importantly, this makes sure that the copyright notices appear in
12437         all output formats.  You probably need Texinfo 4.2 to generate
12438         the manual now.
12440         Fix some bugs when using "$@" when there might be zero positional
12441         arguments in cases where this matters.
12443         * bin/autoconf.as: Rewrite so that the problem does not come up.
12444         * lib/autoconf/programs.m4 (AC_CHECK_PROG): Likewise.
12445         * lib/autoconf/status.m4 (AC_OUTPUT): Likewise.
12446         * lib/autotest/general.m4 (AT_INIT): Likewise.
12448         * bin/autoheader.in: Use 'case' statement to work around problem.
12449         * bin/auto4mte.in: Likewise.
12450         * bin/autoreconf.in: Likewise.
12451         * bin/autoscan.in: Likewise.
12452         * bin/autoupdate.in: Likewise.
12453         * bin/ifnames.in: Likewise.
12455         * doc/autoconf.texi (Shell Substitutions): Document the problem.
12457         * lib/autotest/general.m4 (AT_INIT):
12458         Use Zsh alias to work around problem.
12459         * tests/atgeneral.m4 (AT_INIT): Likewise.
12461         * tests/c.at: We can't have zero arguments, so remove workaround
12462         that is not portable to Zsh.
12464 2002-04-19  Alexandre Duret-Lutz  <duret_g@epita.fr>
12466         * bin/autoupdate.in (handle_autoconf_macros): Honor AU_DEFUNs
12467         from aclocal.m4 too.
12469 2002-04-12  Akim Demaille  <akim@epita.fr>
12471         * tests/wrappl.as: New, M4sh precursor of wrappl.in.
12473 2002-04-10  Akim Demaille  <akim@epita.fr>
12475         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Install the Zsh
12476         workaround for ${1+"$@"}.
12477         * doc/autoconf.texi (Shell Substitutions): Explain it.
12478         From Oliver Kiddle and Peter Stephenson.
12480         Have M4sh perform minimal shell sanitizing.
12482         * lib/m4sugar/m4sh.at (AS_SHELL_SANITIZE): Split the `_AS_PREPARE_*'
12483         part into...
12484         (_AS_PREPARE): this new macro.
12485         (AS_PREPARE): New.
12486         (AS_INIT): Invoke AS_SHELL_SANITIZE.
12487         * tests/m4sh.at (AT_DATA_LINENO): Use _AS_PREPARE.
12489         Adjust Autoconf and Autotest.
12491         * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS): Don't invoke
12492         AS_SHELL_SANITIZE, AS_INIT did it, but invoke AS_PREPARE.
12493         * lib/autotest/general.m4 (AT_INIT): Likewise.
12494         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS):
12495         Invoke _AS_PREPARE (not AS_PREPARE) in addition to
12496         AS_SHELL_SANITIZE.
12498         Use this M4sh to generate Autoconf's shell scripts.
12500         * tests/wrapsh.as: New, precursor of wrapsh.in.
12501         * tests/Makefile.am: Include lib/freeze.mk to get the dependencies
12502         on Autotest and M4sh.
12503         ($(TESTSUITE)): Use $(autotest_m4f_dependencies).
12504         (wrapsh.in): New target.
12505         * bin/autoconf.as: New, precursor of autoconf.in.
12506         (autoconf.in): New target.
12508 2002-04-09  Alexandre Duret-Lutz  <duret_g@epita.fr>
12510         * doc/autoconf.texi (Limitations of Make): Mention the issue
12511         with indented comments in rules.
12513 2002-04-09  Andreas Schwab  <schwab@suse.de>
12515         * lib/autoconf/status.m4 (_AC_SRCPATHS): Handle empty
12516         ac_top_builddir when setting ac_abs_top_builddir.
12518 2002-04-06  Kevin Ryde  <user42@zip.com.au>
12520         * doc/autoconf.texi (Systemology): Add link to Unix V7 online docs.
12521         (Portable Shell): Cross reference to Systemology.
12523 2002-04-05  Akim Demaille  <akim@epita.fr>
12525         * bin/autoreconf.in (autoreconf): Be sure to accumulate the
12526         directories when descending in a SUBDIRS.
12527         Reported by Ezra Peisach.
12529 2002-04-04  Andreas Schwab  <schwab@suse.de>
12531         * lib/m4sugar/m4sh.m4 (_AS_PATH_WALK): Only simplify if path
12532         contains no literal separators.
12534 2002-04-03  Akim Demaille  <akim@epita.fr>
12536         * lib/autoconf/status.m4 (_AC_CONFIG_FILE, _AC_CONFIG_HEADER)
12537         (_AC_CONFIG_COMMAND, _AC_CONFIG_LINK): New.
12538         Use dnl, not the KILL diversion.
12539         Extracted from...
12540         (AC_CONFIG_FILES, AC_CONFIG_HEADERS, AC_CONFIG_COMMANDS)
12541         (AC_CONFIG_LINKS): here.
12542         Adjust.
12543         Don't use the KILL diversion, as it kills spurious output, which
12544         results in failures being hidden.
12545         Use m4_defn where appropriate.
12546         (AC_CONFIG_IF_MEMBER): Kill the real bug: a spurious parenthesis
12547         after the second argument.
12548         Use m4_defn.
12549         * lib/autom4te.in (Autoconf, Autotest, M4sh): Don't pass --warning
12550         syntax, as it is provided by M4sugar.
12551         * tests/torture.at (Multiple AC_CONFIG_FILES): New.
12553 2002-04-03  Andreas Schwab  <schwab@suse.de>
12555         * lib/m4sugar/m4sugar.m4 (m4_bmatch): Make sure m4_bregexp is not
12556         expanded if $# <= 2.
12558         * bin/autoreconf.in (autoreconf): Run automake after rerunning
12559         aclocal.
12561 2002-04-03  Akim Demaille  <akim@epita.fr>
12563         * lib/autoconf/lang.m4 (_AC_COMPILER_OBJEXT_REJECT)
12564         (_AC_COMPILER_EXEEXT_REJECT): New.
12565         Also recognize *.bb and *.bbg as compilation byproducts.
12566         (_AC_COMPILER_EXEEXT_DEFAULT, _AC_COMPILER_EXEEXT_O)
12567         (_AC_COMPILER_OBJEXT): Use them.
12568         Fixes Debian #138666.
12570 2002-04-02  Peter Eisentraut  <peter_e@gmx.net>
12572         Integrate AC_PROG_CC_STDC into AC_PROG_CC.
12574         * lib/autoconf/c.m4 (AC_PROG_CC_STDC): Rename to _AC_PROG_CC_STDC.
12575         AU_DEFUN old name.  Use _AC_COMPILE_IFELSE.
12576         (AC_PROG_CC): Call _AC_PROG_CC_STDC.
12577         (AC_C_INLINE): Do not require AC_PROG_CC_STDC.
12578         (AC_C_CONST): Same.
12579         (AC_C_INLINE): Same.
12580         (AC_C_PROTOTYPES): Same.  Require AC_PROG_CC instead.
12581         * doc/autoconf.texi, NEWS: Document.
12582         * tests/mktests.sh (au_exclude_list): Add AC_PROG_CC_STDC and
12583         AC_C_CROSS.
12585 2002-04-02  Akim Demaille  <akim@epita.fr>
12587         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Invoke
12588         _AS_MKDIR_P_PREPARE.
12590 2002-03-28  Kevin Ryde  <user42@zip.com.au>
12592         * lib/autoconf/c.m4 (AC_C_INLINE): Test with a typedef return value,
12593         to avoid versions of HP C which don't allow that.
12595 2002-03-27  Paul Eggert  <eggert@twinsun.com>
12597         * lib/m4sugar/m4sh.m4 (_AS_BASENAME_PREPARE): New macro.
12598         (AS_SHELL_SANITIZE): Invoke it.
12599         (AS_BASENAME): AS_REQUIRE it, and use $as_basename.
12601 2002-03-26  Akim Demaille  <akim@epita.fr>
12603         * doc/autoconf.texi (Portable Shell): Add pointers to FAQs.
12605 2002-03-26  Akim Demaille  <akim@epita.fr>
12607         * doc/autoconf.texi (Introduction): The GNATS base moved.
12609 2002-03-25  Paul Eggert  <eggert@twinsun.com>
12611         * tests/m4sh.at: Don't rely on "PATH=test:$PATH test-1" working
12612         as POSIX requires, as it doesn't work with Zsh.
12613         * doc/autoconf.texi (Assignments): Document the problem.
12615 2002-03-25  Alexandre Duret-Lutz  <duret_g@epita.fr>
12617         * doc/autoconf.texi (Limitations of Make): Mention more issue
12618         about VPATH, overriding of macros in sub-makes, and handling of
12619         SHELL.
12621 2002-03-21  Paul Eggert  <eggert@twinsun.com>
12623         * doc/autoconf.texi (Here-Documents): Mention Solaris 8 dtksh
12624         problem with here-document buffer boundaries.
12626         * lib/m4sugar/m4sh.m4 (_AS_LINENO_PREPARE): Unset ENV and BASH_ENV
12627         when reinvoking the shell, to work around problems with installers
12628         who put strange things like "cd" commands in their environments.
12630 2002-03-19  Akim Demaille  <akim@epita.fr>
12632         * tests/semantics.at (AC_C_BIGENDIAN): s/unknow/unknown/.
12633         From Aaron Ucko.
12635 2002-03-19  Akim Demaille  <akim@epita.fr>
12637         * bin/autoscan.in (scan_file): Specify the location in `&used'
12638         invocations.
12639         From Nicolas Joly.
12641 2002-03-19  Akim Demaille  <akim@epita.fr>
12643         * doc/autoconf.texi: Adjust @code/@command, @xref/@ref usage.
12644         From Nishio Futoshi.
12646 2002-03-19  Akim Demaille  <akim@epita.fr>
12648         * lib/m4sugar/m4sugar.m4 (m4_define_default, m4_fst, m4_map): New.
12650 2002-03-18  Paul Eggert  <eggert@twinsun.com>
12652         * doc/autoconf.texi (Programming in M4sh): Add AS_MKDIR_P.
12653         (Limitations of Usual Tools): Add mkdir section.
12655         * lib/m4sugar/m4sh.m4 (_AS_MKDIR_P_PREPARE): New macro.
12656         (AS_MKDIR_P): Require it.  Use mkdir -p if available, falling
12657         back on AS_DIRNAME to compute prefixes otherwise; this is
12658         roughly what mkinstalldirs does.  That way, we need not have
12659         our own filename disassembler.  The old disassembler did not
12660         work with Solaris 8 dtksh, which is ksh Version M-12/28/93d.
12662         * lib/autotest/general.m4 (AT_INIT, AT_CLEANUP):
12663         Create at_test_all by a series of assignments,
12664         not by a single assignment of a long string.  The latter causes ksh
12665         version 11/16/88g to silently misbehave on OpenServer 5.0.6a,
12666         presumably because of a buffer overrun.
12668 2002-03-14  Paul Eggert  <eggert@twinsun.com>
12670         * lib/autotest/general.m4 (at_times_skip):
12671         Renamed from at_times.  Now a boolean.
12672         ksh93 Version M-12/28/93d doesn't like 'x=times; $x'; it
12673         says 'times: not found'.
12675 2002-03-14  Akim Demaille  <akim@epita.fr>
12677         * bin/autoreconf.in (&study_gettextize): New.
12678         (&autoreconf): Handle newest gettextize.
12679         Rerun aclocal if needed.
12680         Suggested by Andreas Schwab.
12682 2002-03-13  Akim Demaille  <akim@epita.fr>
12684         * doc/autoconf.texi (Special Shell Variables): More about IFS.
12686 2002-03-13  Akim Demaille  <akim@epita.fr>
12688         * doc/autoconf.texi (Header Portability): New.
12689         Add information about stdint.h and inttypes.h from Paul Eggert.
12691 2002-03-13  Akim Demaille  <akim@epita.fr>
12693         * doc/autoconf.texi (Limitations of Usual Tools): Some about `cp
12694         -p'.
12695         From Bob Proulx.
12697 2002-03-12  Akim Demaille  <akim@epita.fr>
12699         * lib/m4sugar/m4sh.m4 (AS_BASENAME_EXPR): AS_REQUIRE, not
12700         m4_require.
12702 2002-03-11  Andreas Schwab  <schwab@suse.de>
12704         * configure.ac: Explicitly check for EMACS since AM_PATH_LISPDIR
12705         does not do it if --with-lispdir is given.
12707 2002-03-08  Akim Demaille  <akim@epita.fr>
12709         Version 2.53.
12711 2002-03-08  Akim Demaille  <akim@epita.fr>
12713         * doc/autoconf.texi (Subdirectories): Clarify that the
12714         subdirectory should exist.
12716 2002-03-08  Akim Demaille  <akim@epita.fr>
12718         * Makefile.am (AUTOMAKE_OPTIONS): 1.6.
12720 2002-03-08  Akim Demaille  <akim@epita.fr>
12722         * bin/autom4te.in (&handle_m4): Do not foreach with `$_' as it
12723         aliases the actual variables, and modifications of the former
12724         affect the latter.
12726 2002-03-08  Akim Demaille  <akim@epita.fr>
12728         * bin/autom4te.in (&handle_m4): Protect us from corrupted file
12729         because of C-c: have m4 output in tmp files, then mv them.
12731 2002-03-08  Akim Demaille  <akim@epita.fr>
12733         * bin/autoconf.in, bin/autoheader.in, bin/autom4te.in,
12734         * bin/autoreconf.in, bin/autoscan.in, bin/autoupdate.in,
12735         * bin/ifnames.in: Copyright update.
12737 2002-03-08  Akim Demaille  <akim@epita.fr>
12739         * doc/autoconf.texi (Invoking autom4te): New.
12741 2002-03-05  Akim Demaille  <akim@epita.fr>
12743         * doc/autoconf.texi (Specifying Names): Clarification suggested by
12744         Kevin Ryde.
12746 2002-03-05  Akim Demaille  <akim@epita.fr>
12748         Version 2.52i.
12750 2002-03-04  Akim Demaille  <akim@epita.fr>
12752         * doc/autoconf.texi (AC_LIBOBJ vs. LIBOBJS): New.
12753         * lib/autoconf/general.m4 (AC_INIT): More informative error
12754         message for LIBOBJ.
12756 2002-03-04  Akim Demaille  <akim@epita.fr>
12758         * lib/freeze.mk ($(build_libdir)/m4sugar/version.m4): New, for
12759         parallel builds.
12761 2002-03-04  Akim Demaille  <akim@epita.fr>
12763         * doc/autoconf.texi (Transforming Names): Equality between target
12764         and host is irrelevant.
12765         (Specifying Names, Canonicalizing): Remove all references to the
12766         backward compatibility hooks.  Rather, collect them all into...
12767         (Hosts and Cross-Compilation): this new section.
12768         * doc/install.texi (System Type): Ditto.
12769         * lib/autoconf/general.m4 (AC_CANONICAL_HOST): Explicitly state
12770         that `--host' implies cross-compilation.
12772 2002-03-04  Akim Demaille  <akim@epita.fr>
12774         * doc/autoconf.texi (Evaluation Macros): New.
12775         * lib/m4sugar/m4sugar.m4 (m4_lquote): Remove, it is totally
12776         useless.
12777         (_m4_foreach): Define the variant with immediate evaluation so
12778         that it contains exactly the items, not an expression which
12779         evaluation is the current item.
12780         (m4_re_string, m4_re_word): Don't over quote them.
12782 2002-03-04  Akim Demaille  <akim@epita.fr>
12784         Instead of having stacking `shift's evaluated at the end, let
12785         `foreach' loops immediately evaluate them.
12787         * lib/m4sugar/m4sugar.m4 (m4_quote, m4_dquote): Use $@ rather than
12788         $*.  This is the n-th time I change my mind, but hopefully this is
12789         the last...
12790         (m4_lquote): New.
12791         (m4_text_wrap): Use m4_foreach, which is finally correct _and_
12792         efficient.
12793         (m4_foreach_quoted, m4_car_quoted, _m4_foreach_quoted): Remove, as
12794         it was only a hack for m4_text_wrap.
12795         (m4_car2): Remove, replaced by...
12796         (m4_cdr): New.
12797         (_m4_foreach): Adjust.
12798         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Adjust, and use
12799         m4_bpatsubst for clarification.
12801 2002-03-04  Akim Demaille  <akim@epita.fr>
12803         * doc/autoconf.texi (Changequote is Evil): New.
12805 2002-03-03  Kevin Ryde  <user42@zip.com.au>
12807         * doc/autoconf.texi (Portable Shell): Mention 32-byte #! length limit
12808         on old systems like SunOS.
12810 2002-03-01  Peter Eisentraut  <peter_e@gmx.net>
12812         * lib/autoconf/c.m4, lib/autoconf/fortran.m4,
12813         lib/autoconf/functions.m4, lib/autoconf/general.m4,
12814         lib/autoconf/headers.m4, lib/autoconf/lang.m4,
12815         lib/autoconf/programs.m4, lib/autoconf/status.m4: Improve spelling
12816         of messages.
12818 2002-02-28  Akim Demaille  <akim@epita.fr>
12820         * lib/autotest/general.m4 (AT_INIT): Suggest a title to the
12821         message to be sent.
12823 2002-02-28  Kevin Ryde  <user42@zip.com.au>
12825         * doc/autoconf.texi (Function Portability): Add va_copy and va_list.
12827 2002-02-25  Akim Demaille  <akim@epita.fr>
12829         * lib/autoconf/functions.m4 (AC_FUNC_SETPGRP): Fix the test.
12830         From Akinori Musha.
12832 2002-02-13  Alexandre Duret-Lutz  <duret_g@epita.fr>
12834         * lib/Autom4te/XFile.pm (getline, getlines): New functions,
12835         translate \r\n to \n.
12837 2002-02-07  Akim Demaille  <akim@epita.fr>
12839         Version 2.52h.
12841 2002-02-07  Akim Demaille  <akim@epita.fr>
12843         Fix Autoconf PR/209.
12844         Also reported by Frank Denis.
12846         * lib/m4sugar/m4sh.m4 (_AS_PATH_WALK): Don't over quote.
12848 2002-02-07  Akim Demaille  <akim@epita.fr>
12850         Fix Autoconf PR/207:
12851         AC_PREFIX_PROGRAM fails with dashed program names
12853         * lib/autoconf/general.m4 (AC_PREFIX_PROGRAM): Just use a fresh
12854         variable when looking for the prefix program.
12855         Now it also works for shell variables.
12857 2002-02-07  Akim Demaille  <akim@epita.fr>
12859         * doc/autoconf.texi (Limitations of Builtins): More about
12860         case/esac.
12862 2002-02-06  Akim Demaille  <akim@epita.fr>
12864         * lib/autoconf/status.m4 (_AC_OUTPUT_COMMANDS): Don't output empty
12865         case/esac, some shells don't support it.
12866         Reported by Zack Weinberg.
12867         * tests/torture.at (AC_CONFIG_COMMANDS with empty commands): New.
12869 2002-02-06  Akim Demaille  <akim@epita.fr>
12871         * lib/autotest/general.m4 (AT_INIT): When handling --keywords, be
12872         sure not to introduce newlines in at_groups.
12873         * lib/autotest/Makefile.am (autotest.m4f): Typo.
12875 2002-02-06  Akim Demaille  <akim@epita.fr>
12877         * tests/torture.at (Configuring subdirectories): Skip if aclocal
12878         is not available.
12880 2002-02-05  Paul Eggert  <eggert@twinsun.com>
12882         * doc/autoconf.texi (Specific Compiler Characteristics):
12883         Describe HP-UX cc bug workaround more accurately.
12884         * lib/autoconf/types.m4 (AC_CHECK_SIZEOF): Cast to long,
12885         not unsigned long.
12886         * tests/semantics.at (AC_CHECK_SIZEOF): Check non-GCC
12887         cross-compilers, too.  This undoes some of the most recent change
12888         to this file.
12890 2002-02-05  Akim Demaille  <akim@epita.fr>
12892         * tests/Makefile.am (check_SCRIPTS): Use it, instead of WRAPPERS,
12893         to make sure they are up to date when `check' is run.
12895 2002-02-05  Akim Demaille  <akim@epita.fr>
12897         * doc/autoconf.texi (Making testsuite Scripts): Document
12898         package.m4.
12900 2002-02-05  Akim Demaille  <akim@epita.fr>
12902         * lib/freeze.mk: New.
12904 2002-02-05  Akim Demaille  <akim@epita.fr>
12906         Implement `autom4te --freeze'.
12908         * bin/autom4te.in (&freeze): New.
12909         * lib/autoconf/autoconf.m4, lib/autotest/general.m4,
12910         * lib/m4sugar/m4sh.m4: Don't include files given by autom4te.
12912 2002-02-05  Akim Demaille  <akim@epita.fr>
12914         * bin/autom4te.in (&parse_args): Implement `frozen files are
12915         optional are the sum of the previous files on the command line'.
12916         Also, pass `--reload-state=' on them, so...
12917         (handle_m4): don't.
12918         * lib/autom4te.in (Autotest, Autoconf): Rely on M4sh.
12919         (M4sh): Rely on M4sugar.
12920         (Autotest, M4sh, M4sugar): Use frozen files.
12922 2002-01-31  Akim Demaille  <akim@epita.fr>
12924         * lib/autoconf/general.m4 (_AC_INIT_PACKAGE): Accept $4.
12925         * doc/autoconf.texi (Initializing configure): Adjust.
12927 2002-01-30  Akim Demaille  <akim@epita.fr>
12929         * lib/autoconf/general.m4 (_AC_INIT_PACKAGE): Map non
12930         alphanumeric to `-' instead of `_'.
12932 2002-01-30  Akim Demaille  <akim@epita.fr>
12934         * tests/semantics.at (AC_CHECK_SIZEOF): Split into two tests: one
12935         for plain code, the other for cross-compilation code.  The latter
12936         is now run with GCC only.
12937         * doc/autoconf.texi (Compilers and Preprocessors): New.
12939 2002-01-30  Akim Demaille  <akim@epita.fr>
12941         * lib/autoconf/general.m4 (_AC_INIT_PACKAGE): Support pre-defined
12942         values.
12943         * doc/autoconf.texi (Initializing configure): Explain how to
12944         change AC_INIT default values.
12946 2002-01-29  Akim Demaille  <akim@epita.fr>
12948         * tests/torture.at (Configuring subdirectories): Use configure.in,
12949         so that aclocal 1.4 works.
12950         Reported by Alexandre Duret-Lutz and Larry Schmitt.
12952 2002-01-28  Akim Demaille  <akim@epita.fr>
12954         * doc/autoconf.texi (Writing testsuite.at): AT_CLEANUP no longer
12955         needs an argument.
12957 2002-01-28  Akim Demaille  <akim@epita.fr>
12959         * lib/autotest/general.m4 (AT_INIT): Don't be ridiculous: adjust
12960         AUTOTEST_PATH *after* it was set.
12961         Don't put `.' in the PATH: the user should be precise and `./' if
12962         needed.  In addition, given that the test suite does some `cd', if
12963         `.' is in the path, the `tested programs' sections will report
12964         programs found in the test suite's directory, while during the
12965         tests (performed in their own directory), these programs are no
12966         longer visible.  In other words, the results is confusing and
12967         useless.
12968         * tests/m4sh.at: Adjust: don't rely on `.' being in the PATH.
12970 2002-01-24  Akim Demaille  <akim@epita.fr>
12972         Version 2.52g.
12974 2002-01-24  Akim Demaille  <akim@epita.fr>
12976         * bin/autoheader.in, bin/autoconf.in, bin/autoscan.in,
12977         * doc/autoconf.texi: Finally add Akim as an author.
12979 2002-01-24  Akim Demaille  <akim@epita.fr>
12981         * lib/m4sugar/m4sh.m4 (_AS_LINENO_PREPARE): Use PATH_SEPARATOR.
12982         (_AS_PATH_SEPARATOR_PREPARE): Don't expect $SHELL to be
12983         Bourne. Use /bin/sh.
12984         From Andreas Buening.
12986 2002-01-24  Akim Demaille  <akim@epita.fr>
12988         * config/config.guess, config/config.sub, config/texinfo.tex:
12989         Update from masters.
12991 2002-01-24  Akim Demaille  <akim@epita.fr>
12993         * Makefile.am (AUTOMAKE_OPTIONS): 1.5b.
12994         * config/auxdir.m4, config/cond.m4, config/depend.m4,
12995         * config/init.m4, config/install-sh.m4, config/lispdir.m4,
12996         * config/missing.m4, config/sanity.m4, config/select.m4,
12997         * config/strip.m4: Remove, to ease sync'ing with any version of
12998         Automake.
13000 2002-01-24  Akim Demaille  <akim@epita.fr>
13002         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ARGS)
13003         (_AC_INIT_PREPARE): Support -n as --no-create, as documented.
13004         Reported by Geir Ove Myhr.
13006 2002-01-21  Akim Demaille  <akim@epita.fr>
13008         * lib/autoconf/functions.m4 (AC_FUNC_MMAP): #Undef malloc.
13010 2002-01-21  Akim Demaille  <akim@epita.fr>
13012         * lib/Autom4te/General.pm (getopt): Use a more GNUish error
13013         message on invalid options.
13014         * bin/autom4te.in (parse_args): Don't use
13015         Autoconf::General::getopt with non valid options.
13017 2002-01-17  Jim Meyering  <meyering@lucent.com>
13019         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Initialize
13020         $ac_cv_exeext so we don't use an old, invalid, cached value.
13022 2002-01-11  Akim Demaille  <akim@epita.fr>
13024         * lib/autoconf/functions.m4 (AC_FUNC_STRNLEN): New, from Jim
13025         Meyering.
13026         * doc/autoconf.texi (Function Portability): Document the strnlen
13027         limitation.
13028         (Particular Functions): Document AC_FUNC_STRNLEN.
13029         * lib/autoscan/functions: Adjust.
13031 2002-01-06  Akim Demaille  <akim@epita.fr>
13033         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): Don't create
13034         package.m4, since is really depends upon configure.ac, not
13035         configure.
13036         * doc/autoconf.texi (testsuite Scripts): Adjust.
13037         * tests/Makefile.am (package.m4): New.
13038         EXTRA_DIST it since its a source.
13040 2002-01-06  Akim Demaille  <akim@epita.fr>
13042         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ARGS): Move the AC_SUBST
13043         of PACKAGE_NAME, PACKAGE_TARNAME, PACKAGE_VERSION, PACKAGE_STRING,
13044         and PACKAGE_BUGREPORT from here...
13045         (_AC_INIT_DEFAULTS): to here, since it is unrelated to the
13046         arguments.
13047         (_AC_INIT_PREPARE): AC_DEFINE these symbols.
13048         * lib/autotest/general.m4: Use AT_PACKAGE_*, not PACKAGE_*.
13049         (AT_INIT): No longer catch `^PACKAGE_(BUGREPORT|STRING)$'.
13050         * tests/tools.at (autoheader): Adjust.
13051         * tests/atspecific.m4 (AT_CHECK_DEFINES): Adjust.
13053 2002-01-06  Akim Demaille  <akim@epita.fr>
13055         * bin/autoscan.in (scan_file): Use `&used'.
13057 2002-01-03  Akim Demaille  <akim@epita.fr>
13059         * doc/autoconf.texi (Output): Improved wording regarding use of
13060         AC_OUTPUT.
13061         From Olly Betts.
13063 2001-12-18  Kevin Ryde  <user42@zip.com.au>
13065         * doc/autoconf.texi (Function Portability): Add notes on sscanf
13066         sometimes needing writable input.
13068 2001-12-17  Jim Meyering  <meyering@lucent.com>
13070         * doc/autoconf.texi (New Macros): Tweak wording.
13072 2001-12-14  Akim Demaille  <akim@epita.fr>
13074         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): We cleaning up the
13075         trailing files, don't apply `-rf' to files which might not be
13076         created by configure (core, core.*, and *.core), but just `rm -f'.
13077         Suggested by Jonathan Kamens.
13079 2001-12-14  Aaron M. Ucko  <amu@alum.mit.edu>
13081         * lib/autoconf/general.m4: Avoid duplicates in `$ac_configure_args'.
13083 2001-12-14  Akim Demaille  <akim@epita.fr>
13085         * Makefile.am (MAINTAINERCLEANFILES): Remove configure.
13087 2001-12-13  Peter Eisentraut  <peter_e@gmx.net>
13089         * lib/autoconf/status.m4 (_AC_SRCPATHS): Rename buildpath to
13090         abs_builddir, top_buildpath to abs_top_builddir, srcpath to
13091         abs_srcdir, top_srcpath to abs_top_srcdir.
13092         (_AC_OUTPUT_FILES): Adjust.
13093         * NEWS, doc/autoconf.texi, lib/autoconf/autotest.m4,
13094         * tests/atspecific.m4, tests/autoreconf.in, tests/tools.at,
13095         * tests/wrappl.in, tests/wrapsh.in: Adjust.
13097 2001-12-12  Steven G. Johnson  <stevenj@alum.mit.edu>
13099         * lib/autoconf/fortran.m4 (_AC_PROG_F77_V_OUTPUT): Fix failed
13100         C/Fortran linking on HP/UX, by extracting the Fortran library
13101         search path from the LPATH line in the $F77 -v output.
13103 2001-12-12  Kevin Ryde  <user42@zip.com.au>
13105         * doc/autoconf.texi (File Descriptors): Use a clearer layout for the
13106         forbidden file descriptors table.
13108 2001-11-26  Akim Demaille  <akim@epita.fr>
13110         * bin/autoscan.in (%c_keywords): Build it at top level.
13111         Map to 1 in order to simplify its uses.
13113 2001-11-26  Akim Demaille  <akim@epita.fr>
13115         * bin/autoscan.in (&scan_c_file, &scan_sh_file, &scan_makefile):
13116         Remove $filepath, useless.
13117         (&scan_makefile): Don't remove the $(FOO), ${FOO} and @FOO@
13118         variables, they are really part of the tokens.
13119         Split the input line on spaces and then look for tokens.
13120         Now autoscan ceases to ask for AC_PROG_LEX for the package Bison
13121         because of `lex$U.$(OBJEXT)'.
13122         (&scan_files): Use "@list" instead of join.
13123         * doc/Makefile.am (CLEANFILES): Add *.fns.
13125 2001-11-26  Akim Demaille  <akim@epita.fr>
13127         * tests/autoreconf.in, tests/autom4te.in, tests/autoupdate.in:
13128         Remove, replaced by...
13129         * tests/wrappl.in: Be common for all the Perl executables.
13130         In particular autoscan and autoheader want -I.
13131         * configure.ac: Adjust.
13132         * lib/autoscan/headers: errno.h is portable.
13134 2001-11-26  Akim Demaille  <akim@epita.fr>
13136         * bin/autoscan.in (used): New.
13137         Use it.
13139 2001-11-26  Akim Demaille  <akim@epita.fr>
13141         * bin/autoscan.in (&scan_c_file): Better parsing of CPP
13142         directives.
13143         (&scan_sh_file): Remove a duplicate pattern.
13144         (&check_configure_ac): Use long options.
13145         * lib/autoscan/headers (alloca.h): Check with AC_FUNC_ALLOCA.
13147 2001-11-26  Akim Demaille  <akim@epita.fr>
13149         * bin/autoscan.in (scan_c_file): Fix the handling of C comments.
13150         Before, having a line containing the opening of a multi line
13151         comment made the whole line be ignored.
13153 2001-11-26  Akim Demaille  <akim@epita.fr>
13155         * doc/autoconf.texi (Using an Autotest Test Suite): New.
13156         (testsuite Scripts): Be one of its subsection.
13157         (Autotest Logs): New.
13159 2001-11-26  Akim Demaille  <akim@epita.fr>
13161         Test groups are now run two directories deeper.
13163         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): Replace srcdir,
13164         top_srcdir and top_builddir with at_srcdir, at_top_srcdir and
13165         at_top_builddir.
13166         * lib/autotest/general.m4 (AT_INIT): Compute srcdir,
13167         top_srcdir, builddir and top_builddir.
13168         Use `at_*dir' relatively to the directory containing the
13169         suite, use `*dir' when relatively to the current group dir.
13171 2001-11-25  Joseph S. Myers  <jsm28@cam.ac.uk>
13173         * doc/autoconf.texi, TODO, lib/autoconf/fortran.m4,
13174         lib/autoconf/functions.m4, lib/autoconf/headers.m4,
13175         tests/atgeneral.m4, tests/tools.at, tests/atspecific.m4: Fix
13176         spelling errors.
13178 2001-11-22  Alexandre Duret-Lutz  <duret_g@epita.fr>
13180         * doc/autoconf.texi (Using System Type): Add an example of `case
13181         $host' usage so people quit using `case $target' everywhere.
13183 2001-11-22  Akim Demaille  <akim@epita.fr>
13185         * doc/autoconf.texi (Installation Directory Variables): Englishoes
13186         spotted by Jim Meyering.
13188 2001-11-16  Paul Eggert  <eggert@twinsun.com>
13190         This patch implements a `long double' suggestion by Oliver Kiddle.
13192         * lib/autoconf/c.m4 (AC_LANG_BOOL_COMPILE_TRY(C)): Make the array
13193         static, to catch errors if the value isn't known at compile-time
13194         and the compiler supports dynamic arrays.  Change its name from
13195         `_array_' to `test_array' to avoid potential name clashes.
13196         (AC_C_LONG_DOUBLE): Make it a compile-time test, not a run-time
13197         test.  Do not define HAVE_LONG_DOUBLE if `long double' is no
13198         better than double.  Catch a bug in GCC 2.95.2 x86.
13199         * doc/autoconf.texi (C Compiler): Document the above.
13200         * NEWS: Likewise.
13202 2001-11-13  Akim Demaille  <akim@epita.fr>
13204         * tests/m4sh.at (LINENO): Protect from autom4te's substitution by
13205         hand.
13206         * tests/tools.at: Don't protect dnl, AT_DATA_M4SH does.
13208 2001-11-13  Akim Demaille  <akim@epita.fr>
13210         * lib/autotest/general.m4 (AT_INIT): After having run the test
13211         group, go back to the initial directory, not to at_suite_dir.
13213 2001-11-13  Akim Demaille  <akim@epita.fr>
13215         * tests/atspecific.m4 (AT_DATA_M4SUGAR, AT_DATA_M4SH)
13216         (AT_DATA_AUTOCONF):  Also protect @&t@ from autom4te.
13217         (AT_CHECK_AUTOCONF, AT_CHECK_AUTOHEADER): Pass no --include
13218         option.
13219         (AT_CHECK_CONFIGURE): Use absolute paths.
13220         (_AT_CHECK_AC_MACRO): Create aclocal.m4 with AC_STATE_SAVE in it.
13221         The problem is still the old one: there is no means in M4 (that I
13222         know about) to create a defining macro, because there is no means
13223         to create `$1' etc., therefore, the defining macro ``swallows''
13224         all the arguments meant to the defined macro.
13226 2001-11-13  Akim Demaille  <akim@epita.fr>
13228         * tests/atspecific.m4 (AT_DATA_AUTOCONF): New.
13229         (AT_CONFIGURE_AC): Output the definition of AC_STATE_SAVE in
13230         configure.ac.
13231         * tests/aclocal.m4: Remove, as it is no longer used.
13233 2001-11-13  Akim Demaille  <akim@epita.fr>
13235         * lib/autotest/general.m4: Change `tests?' into `groups?' in
13236         variable names when referring to a single test group, or to
13237         `suite' when referring to the whole test suite.
13238         `at_last_test' is removed: m4 compute at_format itself.
13239         (at_stdout, at_stder1, at_stderr): New variables.
13240         (AT_CHECK): Use them.
13242 2001-11-13  Akim Demaille  <akim@epita.fr>
13244         * lib/autotest/general.m4 (AT_INIT): Be sure to put `.', relative,
13245         in PATH.
13246         Create `testsuite.dir/003/run' instead of `testsuite.003'.
13247         Do it as soon as a test fails, don't wait till the end of the test
13248         suite.
13249         Don't remove $as_me.[0-9]*, since these files no longer exist.
13251 2001-11-13  Akim Demaille  <akim@epita.fr>
13253         * tests/tools.at: Use absolute paths, since we are no longer run
13254         in place.
13256 2001-11-13  Akim Demaille  <akim@epita.fr>
13258         Now that tests are running in their own private dir, there is no
13259         need to list the files to remove at the end of tests groups.
13261         * lib/autotest/general.m4 (_AT_CLEANUP_FILE, AT_CLEANUP_FILES):
13262         (AT_data_files, at_data_files): Remove.
13263         (AT_CLEANUP, AT_DATA): Simplify.
13264         (AT_INIT): Adjust.
13265         Remove the group dir if !debug && !failed.
13266         * tests/atspecific.m4: Adjust.
13268 2001-11-13  Akim Demaille  <akim@epita.fr>
13270         Start a new layout for Autotest: `testsuite' creates
13271         `testsuite.dir' in which the at-check-line etc. files are to be
13272         found, and `testsuite.dir/003' where the test group 3 is run.
13274         * lib/autotest/general.m4 (AT_INIT): at_tests_dir,
13275         at_check_line_file, at_format, at_test_normalized, at_group_dir
13276         are new variables.
13277         Create the directories.
13278         Use absolute paths for at- files.
13279         (AT_CHECK): Adjust.
13281 2001-11-11  Michael Matz  <matz@kde.org>
13283         * m4sugar.m4 (_m4_foreach): Make it linear instead quadratic.
13284         (m4_car2): New.
13285         (m4_car): Properly quote arguments.
13287 2001-11-13  Akim Demaille  <akim@epita.fr>
13289         * tests/aclocal.m4 (AC_STATE_SAVE): s/LIBOBJS/LIB@&t@OBJS/ to cope
13290         with stricter rules on LIBOBJS.
13292 2001-11-12  Paul Eggert  <eggert@twinsun.com>
13294         * lib/autoconf/c.m4 (AC_C_PROTOTYPES): Define __PROTOTYPES too.
13295         * doc/autoconf.texi (C Compiler): AC_C_PROTOTYPES now defines
13296         __PROTOTYPES too.
13298 2001-11-12  Akim Demaille  <akim@epita.fr>
13300         * lib/autoconf/functions.m4 (AC_FUNC_GETMNTENT): Use AC_CHECK_FUNCS.
13302 2001-11-12  Akim Demaille  <akim@epita.fr>
13304         * lib/autoconf/c.m4, lib/autoconf/fortran.m4,
13305         * lib/autoconf/functions.m4, lib/autoconf/general.m4,
13306         * lib/autoconf/headers.m4, lib/autoconf/libs.m4,
13307         * lib/autoconf/programs.m4, lib/autoconf/specific.m4,
13308         * lib/autoconf/types.m4: When invoking AC_DEFINE and friends,
13309         specify to what the macro should be defined (typically to 1).
13311 2001-11-12  Akim Demaille  <akim@epita.fr>
13313         * lib/autoconf/functions.m4 (AC_FUNC_STRTOD): AC_SUBST POW_LIB.
13314         From Jim Meyering.
13316 2001-11-12  Akim Demaille  <akim@epita.fr>
13318         * lib/autoconf/programs.m4 (_AC_PROG_LEX_YYTEXT_DECL): Use
13319         AC_TRY_EVAL to run $LEX, not AC_TRY_COMMAND.  This validates the
13320         definition used by Automake where LEX is +/- "${missing} lex" and
13321         `missing' itself contains variables.
13323 2001-11-12  Akim Demaille  <akim@epita.fr>
13325         * lib/autotest/general.m4 (AT_INIT): Push KILL at the end.
13326         Now that M4sh pushes BODY, the comments were output at the end of
13327         the test suites.
13329 2001-11-08  Akim Demaille  <akim@epita.fr>
13331         * bin/autoreconf.in (&autoreconf): Run aclocal before tracing, so
13332         that we can trace macros from aclocal.m4.
13333         Trace AC_PROG_LIBTOOL, not AM_PROG_LIBTOOL, since the latter is
13334         obsoleted, and redirect to the former anyway.
13335         Reported by Ralf Corsepius.
13337 2001-11-08  Akim Demaille  <akim@epita.fr>
13339         * bin/autoreconf.in (&autoreconf): AC_CONFIG_SUBIDRS are to be
13340         processed only if present.
13341         * tests/torture.at (Configuring subdirectories): Use autoreconf
13342         instead of successive calls to autoconf.
13343         Add a nonexistent subdirectory to exercise the patch above.
13344         Reported by Ralf Corsepius.
13346 2001-11-08  Kevin Ryde  <user42@zip.com.au>
13348         * doc/autoconf.texi (Limitations of Usual Tools): Note HP-UX cc
13349         doesn't accept .S files.
13351 2001-11-07  Akim Demaille  <akim@epita.fr>
13353         * lib/m4sugar/m4sugar.m4 (m4_pattern_forbid): Accepts $2.
13354         * lib/autoconf/general.m4 (AC_INTI): Forbid LIBOBJS.
13355         (_AC_LIBOBJ): s/LIBOBJS/LIB@&t@OBJS/.
13356         * bin/autom4te.in (warn_forbidden): New.
13357         (handle_output): Use it.
13358         Read m4_pattern_forbid with messages.
13360 2001-11-05  Akim Demaille  <akim@epita.fr>
13362         * bin/autom4te.in (--normalize): Remove.
13363         * lib/autom4te.in: Adjust.
13365 2001-11-05  Akim Demaille  <akim@epita.fr>
13367         * tests/Makefile.am (testsuite): Rename this target as...
13368         ($(TESTSUITE)): this.
13369         From Nicolas Joly.
13371 2001-11-05  Alexandre Duret-Lutz  <duret_g@epita.fr>
13373         * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): When removing
13374         the --prefix option, also remove it's argument.
13376 2001-11-05  Akim Demaille  <akim@epita.fr>
13378         * doc/autoconf.texi (testsuite Invocation): Update.
13379         (Writing testsuite.at): Update.
13381 2001-11-03  Akim Demaille  <akim@epita.fr>
13383         * doc/autoconf.texi: s/@code/@command/ where appropriate.
13385 2001-11-03  Akim Demaille  <akim@epita.fr>
13387         * lib/Autom4te/General.pm: (&catfile, &canonfile)
13388         (&file_name_is_absolute): New, wrappers around routines from
13389         File::Spec.
13390         Use and export them.
13391         (&find_configure_ac): Optionally take a directory where to look at.
13392         * bin/autoreconf.in (&parse_args): Trim the configure.ac part of
13393         the arguments.
13394         Default @ARGV to `.', not find_configure_ac.
13395         (&autoreconf): Argument is a directory.
13396         Trace AC_CONFIG_SUBDIRS and schedule the subdirs for autoreconf'ing.
13397         * doc/autoconf.texi (autoreconf Invocation): Update.
13399 2001-11-03  Akim Demaille  <akim@epita.fr>
13401         * lib/Autom4te/General.pm (@export_vars, @export_subs)
13402         (@export_forward_subs): New.
13403         Add basename, dirname, and fileparse.
13404         (@EXPORT): Adjust.
13405         * bin/autoreconf.in (&autoreconf): Fix call to fileparse.
13406         Don't look for aclocal flags if we already know aclocal is not
13407         used.
13408         Move aclocal.m4t only if it exists.
13409         Reported by Ezra Peisach.
13411 2001-11-03  Akim Demaille  <akim@epita.fr>
13413         * bin/autoreconf.in (&parse_args): Work only on the configure.ac
13414         passed on command line, defaulting to ./configure.ac if present.
13415         (&maybe_autoreconf, File::Find): Remove, unused.
13416         (&autoreconf): If autoconf is not used, don't try to trace.
13418 2001-11-02  Akim Demaille  <akim@epita.fr>
13420         * configure.ac: Bump to 2.52g.
13422 2001-11-02  Akim Demaille  <akim@epita.fr>
13424         Version 2.52f.
13426 2001-11-02  Akim Demaille  <akim@epita.fr>
13428         * config/config.guess, config/config.sub, doc/standards.texi:
13429         * config/lispdir.m4: Update from masters.
13430         * configure.ac: Bump to 2.52f.
13432 2001-11-02  Akim Demaille  <akim@epita.fr>
13434         * bin/autoreconf.in (&autoreconf): Set `$aclocal_flags' to ''.
13435         Don't run aclocal when aclocal.m4 is not from aclocal.
13436         From Ezra Peisach.
13437         Don't run libtoolize and gettextize if --install is not given.
13439 2001-11-01  Paul Eggert  <eggert@twinsun.com>
13441         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): _AS_CR_PREPARE needs to
13442         be invoked before _AS_LINENO_PREPARE.
13443         (_AS_LINENO_PREPARE): Use as_cr_digits and as_cr_alnum rather
13444         than character ranges.
13446         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Fix NLS before
13447         invoking AS_BASENAME.  Set the locale variables to 'C' if
13448         possible, as POSIX requires this to get the traditional
13449         behavior.
13450         * doc/autoconf.texi (Special Shell Variables): Describe the above.
13452 2001-10-31  Paul Eggert  <eggert@twinsun.com>
13454         * lib/m4sugar/m4sh.m4 (_AS_LINENO_WORKS): Do not surround body
13455         with {}, as that triggers a bug in Bash 2.05.
13457         (_AS_LINENO_PREPARE): Use Sed rather than
13458         Awk.  Fix the sed prepass to work even if there are multiple
13459         instances of $LINENO on the same line.  Do not substitute for
13460         other variables like $LINENOT.  Do not check file dates; such a
13461         check is unreliable on sufficiently fast machines, and removing
13462         the check makes the code simpler and more reliable.  Check for
13463         output and chmod failures.
13465         * doc/autoconf.texi (Special Shell Variables): Document
13466         the above.
13468 2001-10-31  Akim Demaille  <akim@epita.fr>
13470         * tests/Makefile.am (atconfig): Remove this target, Automake
13471         handles it now.
13473 2001-10-31  Akim Demaille  <akim@epita.fr>
13475         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): Do not
13476         AC_CONFIG_FILES(atlocal) as it means a file atlocal.in *must* be
13477         provided, while it is optional.
13478         * configure.ac: Adjust.
13480 2001-10-26  Paul Eggert  <eggert@twinsun.com>
13482         * NEWS, README, configure.ac, lib/Autom4te/General.pm,
13483           lib/Autom4te/Struct.pm:
13484         Require Perl 5.005_03 instead of just 5.005, as some tests fail
13485         with 5.005_02.
13487         * doc/autoconf.texi (Special Shell Variables): Document some
13488         more LINENO gotchas, particularly with respect to the Awk+Sed hack.
13490         * lib/m4sugar/m4sh.m4 (_AS_LINENO_WORKS): New macro.
13491         (_AS_LINENO_PREPARE): Use it instead of shell eval, since
13492         eval $LINENO is not portable in practice.
13494 2001-10-24  Akim Demaille  <akim@epita.fr>
13496         * lib/Autom4te/General.pm (backname): New.
13498 2001-10-24  Akim Demaille  <akim@epita.fr>
13500         * m4/: Remove, merged into...
13501         * config/: here.
13503 2001-10-23  Tim Van Holder  <tim.van.holder@pandora.be>
13505         * doc/autoconf.texi (Shellology): Mention the problems with bash
13506         2.05's use of ANSI quoting in its `set' builtin.
13508 2001-10-22  Paul Eggert  <eggert@twinsun.com>
13510         * lib/autoconf/functions.m4 (AC_FUNC_STRERROR_R):
13511         Rename ac_cv_func_strerror_r_works to ac_cv_func_strerror_r_char_p,
13512         and rename HAVE_WORKING_STRERROR_R to STRERROR_R_CHAR_P, since
13513         POSIX decided to standardize on the int flavor of strerror_r.
13514         Always do char* test, as there's no reason not to.
13515         Assign to a char* var, to catch strerror_r that returns int*.
13517         * doc/autoconf.texi (Particular Functions):
13518         Document the above changes.  Also, document the fact that
13519         AC_FUNC_STRERROR_R defines HAVE_DECL_STRERROR_R.
13521         * NEWS: Mention HAVE_WORKING_STRERROR_R -> STRERROR_R_CHAR_P.
13523 2001-10-20  Akim Demaille  <akim@epita.fr>
13525         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): The name of
13526         the executable was missing from the log.
13528 2001-10-20  Akim Demaille  <akim@epita.fr>
13530         * lib/Autom4te/General.pm (&update_file): If destination is
13531         unchanged, remove the source.
13532         (&up_to_date_p): Don't be verbose, be debug.
13533         * bin/autoreconf.in: No longer support --m4dir.
13534         (&autoreconf): Display the full path of the configure.ac we are
13535         studying.
13536         Trace it only once.
13537         Be sure to honor --force with gettextize.
13538         Always run aclocal.
13539         * doc/autoconf.texi: Adjust.
13541 2001-10-20  Akim Demaille  <akim@epita.fr>
13543         * bin/autoheader.in ($localdir, $m4, $SIMPLE_BACKUP_SUFFIX):
13544         Remove, dead.
13545         * bin/autoreconf.in (&autoreconf): Do not run gettextize when
13546         `intl' is already present, as it refuses unless --force.
13547         (&parse_args): Use -I, --include instead of the old Autoconf
13548         options.
13549         ($localdir, $autoconf_dir): Remove.
13550         (@include): New.
13551         (&maybe_autoreconf): New, to preserve $_ for File::Find.
13553 2001-10-19  Jens Petersen  <petersen@redhat.com>
13555         * lib/autoconf/programs.m4 (AC_PROG_AWK): Prefer gawk to mawk.
13556         * doc/autoconf.texi (Particular Programs): Likewise.
13558 2001-10-19  Akim Demaille  <akim@epita.fr>
13560         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES): Name the generated
13561         file in @configure_input@.
13562         Don't mention `automatically' in addition to `generated'.
13563         * tests/torture.at (#define header templates): Adjust.
13565 2001-10-19  Akim Demaille  <akim@epita.fr>
13567         * lib/emacs/autoconf-mode.el, lib/emacs/autotest-mode.el: In a
13568         comment, explain how to install automatic mode selection.
13569         From Russ Allbery.
13571 2001-10-19  Ezra Peisach  <epeisach@zif.mit.edu>
13573         * bin/autoreconf.in (autoreconf): Display the path to the
13574         configure.ac being studied.
13576 2001-10-18  Paul Eggert  <eggert@twinsun.com>
13578         * lib/autoconf/types.m4 (AC_CHECK_SIZEOF): Cast sizeof to unsigned
13579         long, to work around a bug in the HP C compiler version HP92453-01
13580         B.11.11.23709.GP.
13582         * lib/m4sugar/m4sh.m4 (AS_DIRNAME): Use 'dirname' if that works.
13583         (AS_BASENAME_EXPR): New macro.
13584         (AS_BASENAME_SED): Do not assume GNU sed semantics.
13585         (AS_BASENAME): Use 'basename' if that works; then try 'expr';
13586         and fall back on 'sed' only if the other two fail.  This makes
13587         AS_BASENAME act more like AS_DIRNAME.
13588         (as_me): Shell-quote the argument of AS_BASENAME, in case $0
13589         contains white space.
13590         * lib/autoconf/general.m4 (_AC_INIT_SRCDIR):
13591         Use AS_DIRNAME, since I think it's now DOS-friendly.
13592         * tests/m4sh.at (DIRNAME_TEST): New arg $3.
13593         Allow "dirname //FOO" to return either / or //, as POSIX allows
13594         either behavior.
13596 2001-10-10  Akim Demaille  <akim@epita.fr>
13598         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Recognize
13599         `a_out.exe' for OpenVMS 7.1, DEC C 5.5 compiler, via GNV.
13600         From Eric Sharkey.
13602 2001-10-10  Akim Demaille  <akim@epita.fr>
13604         * lib/m4sugar/m4sh.m4 (_AS_ECHO_N_PREPARE): m4_defun, not
13605         m4_define, since...
13606         (_AS_ECHO_N): AS_REQUIREs it.
13608 2001-10-10  Akim Demaille  <akim@epita.fr>
13610         * lib/autoconf/general.m4 (_AC_INCLUDES_DEFAULT_REQUIREMENTS)
13611         (AC_INCLUDES_DEFAULT): Move to...
13612         * lib/autoconf/headers.m4: here.
13613         * lib/autoconf/types.m4: Comment changes.
13614         * doc/autoconf.texi: Specify where the default includes are used
13615         in the macro prototypes.
13617 2001-10-09  Akim Demaille  <akim@epita.fr>
13619         * lib/autoconf/autoconf.m4 (m4_patsubst, m4_regexp): New
13620         transition code.
13622 2001-10-08  Akim Demaille  <akim@epita.fr>
13624         * bin/autoreconf.in (&autoreconf): Remove debugging code.
13625         (&parse_args): Pass verbosity/debugging options to subtools when
13626         --debug, not when --verbose.
13627         * lib/autom4te.in (Autoreconf-preselections): New.
13628         (Autoconf): Use it.
13630 2001-10-08  Akim Demaille  <akim@epita.fr>
13632         * bin/autoreconf.in (autoreconf): Run libtoolize when appropriate.
13634 2001-10-08  Akim Demaille  <akim@epita.fr>
13636         * doc/autoconf.texi (autoreconf Invocation): Adjust.
13637         * bin/autoreconf.in (autoreconf): Run gettextize when appropriate.
13639 2001-10-08  Akim Demaille  <akim@epita.fr>
13641         * tests/tools.at (AT_CHECK_PERL_SYNTAX): Check autoreconf.
13642         (Syntax of the shell scripts): Don't.
13643         * bin/autoheader.in, bin/autom4te.in, bin/autoreconf.in: Don't
13644         bother with $force since...
13645         * lib/Autom4te/General.pm: does.
13647 2001-10-08  Akim Demaille  <akim@epita.fr>
13649         * bin/autoreconf.in: Rewrite in Perl.
13650         * configure.ac: Adjust.
13651         * lib/Autom4te/General.pm (&up_to_date_p): New.
13652         * bin/autom4te.in (&up_to_date_p): Use it.
13653         Rename as...
13654         (&up_to_date): this.
13656 2001-10-08  Akim Demaille  <akim@epita.fr>
13658         * lib/m4sugar/m4sugar.m4 (m4_case, m4_bmatch, m4_normalize)
13659         (m4_list_cmp): Use $0 to reinvoke yourself.
13660         (m4_patsubsts): New.
13661         (m4_strip, m4_version_unletter): Use it.
13662         * tests/atspecific.m4 (AT_DATA_M4SUGAR, AT_DATA_M4SH): Likewise.
13664 2001-10-08  Akim Demaille  <akim@epita.fr>
13666         * lib/autoconf/autoconf.m4, lib/autoconf/general.m4,
13667         * lib/autoconf/libs.m4, lib/autoconf/status.m4,
13668         * lib/autoconf/types.m4, lib/autotest/general.m4,
13669         * lib/m4sugar/m4sh.m4, lib/m4sugar/m4sugar.m4, tests/atspecific.m4,
13670         * tests/torture.at: Rename m4_regexp, m4_patsubst, and m4_match to
13671         m4_bregexp, m4_bpatsubst, and m4_bmatch.
13672         * doc/autoconf.texi (Redefined M4 Macros): Adjust.
13674 2001-10-08  Akim Demaille  <akim@epita.fr>
13676         * lib/m4sugar/m4sh.m4: Use AS_REQUIRE.
13678 2001-10-08  Akim Demaille  <akim@epita.fr>
13680         * lib/m4sugar/m4sh.m4 (AS_DIRNAME_EXPR): Use AS_REQUIRE.
13681         * tests/tools.at (AT_DATA_FORBIDDEN): Rename/move/duplicate to...
13682         * tests/atspecific.m4 (AT_DATA_M4SUGAR, AT_DATA_M4SH): here.
13683         * tests/tools.at, tests/m4sh.at: Use it.
13684         * tests/m4sh.at: Don't rely on Autoconf macros.
13685         (DIRNAME_TEST): Also exercise the expr variant.
13686         * tests/m4sugar.at, tests/atspecific.m4 (AT_CHECK_M4SUGAR): The
13687         preferred M4sugar extension is now `.4s'.
13688         * tests/README: Remove.
13690 2001-10-08  Akim Demaille  <akim@epita.fr>
13692         * lib/m4sugar/m4sugar.m4 (m4_provide_ifelse): Rename as...
13693         (m4_provide_if): this.
13694         * lib/m4sugar/m4sh.m4 (AS_REQUIRE): New.
13695         * lib/autoconf/general.m4 (AS_DEFUN, AC_DEFUN_ONCE, AC_BEFORE)
13696         (AC_REQUIRE, AC_PROVIDE, AC_PROVIDE_IFELSE): Be exact copy of the
13697         M4sugar peer, i.e., drop the `AC_PROVIDE_$1' broken marker.
13699 2001-10-08  Akim Demaille  <akim@epita.fr>
13701         Use `add-log-current-defun-function' for ChangeLog creation.
13702         Suggested by Tom Tromey.
13704         * lib/emacs/autotest-mode.el (autotest-mode-map): New.
13705         (autotest-mode): Adjust.
13706         * lib/emacs/autoconf-mode.el (autoconf-mode-map): Modernize, map
13707         'comment-region onto `C-c ;'.
13708         Comments are `#', not `dnl'.
13709         (autoconf-current-defun): New.
13710         (autoconf-font-lock-keywords): Recognize `m4_defun'.
13712 2001-10-08  Akim Demaille  <akim@epita.fr>
13714         * lib/autoconf/general.m4 (_m4_divert(BODY)): Move to...
13715         * lib/m4sugar/m4sh.m4: here.
13716         (AS_INIT): Push the BODY diversion, set the #! /bin/sh line.
13717         * lib/autoconf/general.m4 (AC_PLAIN_SCRIPT) : Remove.
13718         (AT_INIT): Replace AC_PLAIN_SCRIPT with AS_INIT invocation,
13719         include handle the m4_pattern_*, no longer push the
13720         BODY diversion nor set the /bin/sh line, AS_INIT does it.
13721         * lib/autotest/general.m4 (AT_INIT): Likewise.
13722         * tests/base.at: Adjust the tests to use AS_INIT.
13723         * tests/tools.at (AT_DATA_FORBIDDEN): New.
13724         (autoconf: forbidden tokens): Adjust to work on M4sh instead of
13725         Autoconf.
13727 2001-10-07  Paul Eggert  <eggert@twinsun.com>
13729         * doc/autoconf.texi (config.status Invocation):
13730         CONFIG_SHELL defaults to a shell that supports LINENO if available.
13732         * lib/m4sugar/m4sh.m4 (_AS_LINENO_PREPARE): If the current
13733         shell does not support LINENO, and if CONFIG_SHELL is unset or
13734         empty, and if we can find a shell that does support LINENO,
13735         then set CONFIG_SHELL to that shell and then re-execute
13736         ourselves with CONFIG_SHELL.
13738 2001-10-05  Paul Eggert  <eggert@twinsun.com>
13740         * tests/Makefile.am (clean-local): Don't invoke $(TESTSUITE) if it
13741         doesn't exist.  Remove *.tmp, as a .tmp file is created during the
13742         build of $(TESTSUITE).
13744 2001-10-05  Akim Demaille  <akim@epita.fr>
13746         * lib/m4sugar/m4sh.m4 (_AS_LINENO_PREPARE): Look in the path
13747         iff we are a bareword.
13748         Reported by Raja R Harinath.
13750 2001-10-05  Akim Demaille  <akim@epita.fr>
13752         * tests/m4sh.at (LINENO): New.
13753         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Be sure to set
13754         PATH_SEPARATOR before using it.
13755         Fix the absolute path case/esac pattern.
13756         Provide $0 as fallback for as_myself.
13757         Reported by Raja R Harinath.
13759 2001-10-05  Akim Demaille  <akim@epita.fr>
13761         * Makefile.am, config/Makefile.am, lib/emacs/Makefile.am,
13762         * m4/Makefile.am, man/Makefile.am: Add/adjust MAINTAINERCLEANFILES.
13764 2001-10-05  Akim Demaille  <akim@epita.fr>
13766         * lib/m4sugar/m4sh.m4 (_AS_LINENO_PREPARE): New, extracted from...
13767         (AS_SHELL_SANITIZE): here.  Use it.
13768         (_AS_LINENO_PREPARE): Preserve the exit status of $0.lineno.
13769         From Paul Eggert.
13771 2001-10-04  Akim Demaille  <akim@epita.fr>
13773         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Use a portable
13774         combination of Awk and sed to replace $LINENO.
13776 2001-10-02  Paul Eggert  <eggert@twinsun.com>
13778         * doc/autoconf.texi (Limitations of Builtins): You can't use
13779         "source"; it's not portable.  Remove confusing and
13780         somewhat-incorrect example involving "." and "/".
13782         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): "source" -> ".", for
13783         compatibility with POSIX shells.
13785 2001-10-02  Akim Demaille  <akim@epita.fr>
13787         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Just source 40.lineno
13788         instead of exec'ing to preserve $0 and $@.
13790 2001-10-01  Akim Demaille  <akim@epita.fr>
13792         * tests/testsuite (AT_INIT) <at_pass_list>: New.
13793         Don't run twice the same test.
13795 2001-10-01  Akim Demaille  <akim@epita.fr>
13797         * lib/autotest/general.m4 (AT_INIT) <--help>: Catch up with reality.
13798         No longer output the list of tests.
13799         <--list>: New option.
13800         <--full-help>: Remove.
13801         Complete the short/long options duality.
13802         Various small adjustments.
13804 2001-10-01  Akim Demaille  <akim@epita.fr>
13806         * doc/autoconf.texi: Use @kbd for user input.
13807         Always use `$' as shell prompt.
13809 2001-09-30  Paul Eggert  <eggert@twinsun.com>
13811         * lib/autoconf/status.m4 (AC_OUTPUT_MAKE_DEFS):
13812         Don't use nested parenthesization.  This patch was originally
13813         suggested to bug-autoconf by Philippe De Muyter on 2000-05-28,
13814         but somehow it didn't get incorporated then.
13815         * doc/autoconf.texi (Limitations of Usual Tools):
13816         Clarify remark about sed and nested parenthesization.
13818         * lib/autoconf/types.m4 (AC_CHECK_SIZEOF):
13819         Report an error if the size cannot be determined even though
13820         the type exists.
13821         * lib/autoconf/general.m4 (_AC_COMPUTE_INT_COMPILE):
13822         Check for `expr' arithmetic overflow, and for compilation failure,
13823         and invoke a new argument $4 if either is discovered.
13824         This makes _AC_COMPUTE_INT_COMPILE more like _AC_COMPUTE_INT_RUN.
13825         (_AC_COMPUTE_INT): Pass IF-FAILS arg to _AC_COMPUTE_INT_COMPILE.
13827 2001-09-28  Akim Demaille  <akim@epita.fr>
13829         * lib/emacs/autoconf-mode.el, lib/emacs/autotest-mode.el: New.
13830         * m4/lispdir.m4: New.
13831         * aclocal.m4, configure.ac: Adjust.
13833 2001-09-28  Akim Demaille  <akim@epita.fr>
13835         * lib/autotest/general.m4 (AT_VICTIMS): Rename as...
13836         (AT_TESTED): this.
13837         (AT_INIT): More the wrapped section to where it will be expanded.
13838         Output `AT_tested' only when existing.
13839         Catch unexpanded PACKAGE_STRING and PACKAGE_BUGREPORT.
13841 2001-09-27  Akim Demaille  <akim@epita.fr>
13843         Fix the passing of $? to ACTION-IF-FAILED in AC_TRY_RUN, that
13844         generates too many bug reports.
13846         * lib/autoconf/general.m4 (_AC_RUN_IFELSE): Pass the right exit
13847         status when executing the ACTION-IF-FALSE.
13848         * tests/base.at (AC_TRY_*): Rename as...
13849         (AC_TRY_COMMAND): this.
13850         (AC_RUN_IFELSE): New.
13851         * tests/compile.at (Extensions, C keywords)
13852         (AC_PROG_CPP requires AC_PROG_CC, GNU Fortran 77)
13853         (Broken/missing compilers, AC_PROG_CPP with warnings)
13854         (AC_PROG_CPP without warnings, AC_PROG_CPP via CC): Move to...
13855         * tests/c.at (Extensions, C keywords)
13856         (Broken/missing compilers, AC_PROG_CPP with warnings)
13857         (AC_PROG_CPP without warnings, AC_PROG_CPP via CC)
13858         (AC_PROG_CPP requires AC_PROG_CC): here and...
13859         * tests/fortran.at (GNU Fortran 77): there.
13860         * doc/autoconf.texi (autoconf Invocation): Fix the example:
13861         AC_TRY_RUN is about compilation, not shell commands.
13862         (Test Programs): AC_TRY_RUN works as used to be advertised.
13864 2001-09-27  Akim Demaille  <akim@epita.fr>
13866         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Fix bugs spotted by
13867         Raja R Harinath:
13868         Be sure to detect when $LINENO always returns the same value.
13869         Look for the original script, basename($0) is certainly not
13870         enough.
13871         Pass the CLI arguments to `$as_me.lineno'.
13873 2001-09-25  Akim Demaille  <akim@epita.fr>
13875         * lib/autotest/general.m4 (AT_INIT): Dump the whole config.log.
13876         Be sure the close and reopen the LOG fd before and after using tee
13877         to extend the log.
13878         <at_tests_pattern>: Adjust to the new format of at_help_all.
13880 2001-09-23  Akim Demaille  <akim@epita.fr>
13882         * bin/autom4te.in (parse_args): There can be several invocations
13883         of --language now.
13885 2001-09-23  Akim Demaille  <akim@epita.fr>
13887         * doc/autoconf.texi (Top): Wrap in @ifnottex.
13889 2001-09-23  Akim Demaille  <akim@epita.fr>
13891         * lib/autoconf/status.m4 (_AC_SRCPATHS): Compute and provide
13892         ac_buildpath, ac_top_buildpath, ac_srcpath, and ac_top_srcpath.
13893         (_AC_OUTPUT_FILES): Also substitute srcpath, top_srcpath,
13894         builddir, buildpath, top_builddir, and top_buildpath.
13895         (_AC_OUTPUT_SUBDIRS): Compute the dir variables *before* changing
13896         the current directory.
13897         * lib/autoconf/general.m4 (_AC_INIT_HELP): Compute the dir
13898         variables *before* changing the current directory.
13899         Skip nonexistent dirs.
13900         * doc/autoconf.texi (Preset Output Variables): Document these
13901         variables.
13903         * lib/autotest/general.m4: Do not reset AT_victims.
13904         Don't compute at_srcdir nor at_top_srcdir.
13906         * tests/tools.at: Hence use top_srcdir.
13908         * tests/Makefile.am, tests/autoconf, tests/autoheader,
13909         * tests/autom4te, tests/autoreconf, tests/autoupdate, tests/ifnames:
13910         Remove.
13911         * tests/autoreconf.in, tests/wrappl.in, tests/autom4te.in,
13912         * tests/wrapsh.in, tests/autoupdate.in: New.
13913         * tests/Makefile.am (DISTCLEANFILES, EXTRA_DIST): Adjust.
13914         * configure.ac: Build the position independent wrappers.
13916         * man/Makefile.am: Now that test wrappers are position
13917         independent, use them and drop dark envvar magic.
13919 2001-09-23  Akim Demaille  <akim@epita.fr>
13921         * doc/autoconf.texi (Common Shell Constructs): Rename as...
13922         (Programming in M4sh): this.
13923         Promote to @section.
13925 2001-09-23  Akim Demaille  <akim@epita.fr>
13927         * lib/autotest/general.m4 (AT_INIT): Dump config.log last.
13928         Pass $at_debug_args to the rerun test suite.
13929         * lib/m4sugar/Makefile.am (DISTCLEANFILES): New.
13930         * bin/Makefile.am (ETAGS_SH): Don't use characters ranges.
13931         From Paul Eggert.
13933 2001-09-23  Akim Demaille  <akim@epita.fr>
13935         * bin/autom4te.in (@my_warning): Remove, handled by `autom4te.cfg'.
13937 2001-09-23  Akim Demaille  <akim@epita.fr>
13939         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Fix shell
13940         over-escaping.
13942 2001-09-23  Akim Demaille  <akim@epita.fr>
13944         * lib/Autom4te/General.pm (&debug): New.
13945         * bin/autom4te.in ($language): Move to...
13946         (parse_args): here.
13947         Handle --language in languages.
13948         * lib/autom4te.in (Automake-selections, Autoheader-selections)
13949         (Autoscan-selections): New.
13950         (Autoconf): Adjust.
13952 2001-09-23  Tim Van Holder  <tim.van.holder@pandora.be>
13954         * m4/auxdir.m4, m4/cond.m4, m4/depend.m4, m4/init.m4,
13955         * m4/install-sh.m4, m4/missing.m4, m4/sanity.m4, m4/strip.m4: Updated
13956         to match current versions from CVS Automake.
13958 2001-09-23  Alexandre Duret-Lutz  <duret_g@epita.fr>
13960         * doc/autoconf.texi (Special Shell Variables): Add pdksh output
13961         for $LINENO.
13963 2001-09-22  Akim Demaille  <akim@epita.fr>
13965         * lib/autoconf/autotest.m4: Create `package.m4'.
13966         * tests/Makefile.am (package.m4): Remove.
13968 2001-09-22  Akim Demaille  <akim@epita.fr>
13970         Rely on `$LINENO' when possible instead of `__oline__'.
13972         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Provide some form of
13973         `$LINENO' support replacement when not supported.
13974         (_AS_CR_PREPARE, _AS_TR_CPP_PREPARE, _AS_TR_SH_PREPARE): Invoke
13975         them explicitly to be sure they are not output before this section
13976         (via m4_require).  Cosmetic only.
13977         * lib/autoconf/c.m4, lib/autoconf/general.m4,
13978         * lib/autoconf/programs.m4: Replace all the occurrences of
13979         `__oline__' with `$LINENO'.
13980         * doc/autoconf.texi (Special Shell Variables): Document LINENO.
13982 2001-09-21  Tim Van Holder  <tim.van.holder@pandora.be>
13984         * lib/autoconf/functions.m4 (_AC_FUNC_FORK): Replaceded an 8-bit
13985         character (u: -> ue) in a code comment.
13986         (AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK): Only run 'ln -s' if we know
13987         it works.
13989 2001-09-21  Akim Demaille  <akim@epita.fr>
13991         * Makefile.maint (AUTOM4TE): Neutralize autom4te.
13992         Suggested by Jim Meyering.
13994 2001-09-20  Tim Van Holder  <tim.van.holder@pandora.be>
13996         * lib/autoconf/programs.m4: Use extensions listed in
13997         $ac_executable_extensions when looking for programs.
13999 2001-09-20  Tim Van Holder  <tim.van.holder@pandora.be>
14001         * lib/autoconf/general.m4: Fix a small Englisho.
14002         * lib/autoconf/status.m4: Fix a small typo.  Handle DOS paths when
14003         setting up ac_dir_suffix and ac_top_builddir.
14004         * lib/m4sugar/m4sh.m4: Default CDPATH to $PATH_SEPARATOR, not ':'.
14006 2001-09-20  Tim Van Holder  <tim.van.holder@pandora.be>
14008         * doc/autoconf.texi (File System Conventions): Clarify the use of
14009         PATH_SEPARATOR.
14010         (Special Shell Variables[PATH_SEPARATOR]): Ditto.
14011         (Special Shell Variables[CDPATH]): Mention that $PATH_SEPRATOR should
14012         be used instead of ':'.
14013         * lib/autotest/general.m4: Replace occurrences of ':' in
14014         AUTOTEST_PATH with $PATH_SEPARATOR at test suite startup.
14016 2001-09-20  Tim Van Holder  <tim.van.holder@pandora.be>
14018         * tests/atgeneral.m4: Add basic support for test ranges (e.g. 7-34) as
14019         arguments.  Fixed a typo.
14021 2001-09-20  Tim Van Holder  <tim.van.holder@pandora.be>
14023         * man/Makefile.am (.x.1): Use @PATH_SEPARATOR@, not ':' to set up
14024         $PATH.  Also set AUTOM4TE_CFG, so we can process autom4te properly.
14026 2001-09-20  Tim Van Holder  <tim.van.holder@pandora.be>
14028         * bin/autoscan.in: Add 'exec-perl-if-not-run-by-perl'.
14029         * bin/autoupdate.in: Ditto.
14030         * bin/autoheader.in: Reworded a few comments.
14031         * bin/autoconf.in: Reworded help text for a few options.
14032         * bin/autoheader.in, bin/autom4te.in, bin/autoreconf.in,
14033         * bin/autoscan.in, bin/autoupdate.in: Ditto.
14035 2001-09-20  Tim Van Holder  <tim.van.holder@pandora.be>
14037         * lib/Autom4te/XFile.pm (open): Simplified the error message (we
14038         already have $file).  Set output files to binary mode (helps avoid
14039         CR issues on DOSish systems).
14041 2001-09-19  Akim Demaille  <akim@epita.fr>
14043         * lib/autotest/general.m4: Englishoes.
14044         From Tim Van Holder and Alexey Mahotkin.
14046 2001-09-18  Paul Eggert  <eggert@twinsun.com>
14048         * doc/autoconf.texi (Common Shell Constructs): New node,
14049         documenting AS_DIRNAME.
14050         (Limitations of Usual Tools): Refer to it when discussing dirname.
14051         Also, update discussion of POSIX standard to reflect latest draft.
14053         * lib/autoconf/c.m4:
14054         (AC_LANG_INT_SAVE(C)): Also support negative values, down to LONG_MIN.
14056         * lib/autoconf/general.m4 (_AC_COMPUTE_INT_COMPILE):
14057         Do not pass a first argument with leading '-'
14058         to expr, by parenthesizing initial integers that might be negative.
14060         * doc/autoconf.texi (Particular Functions): AC_FUNC_GETPGRP
14061         now merely checks whether it is an error to pass an argument
14062         to getpgrp.
14064         * lib/autoconf/functions.m4 (_AC_FUNC_GETPGRP_TEST): Remove.
14065         (AC_FUNC_GETPGRP): Don't bother with a runtime test.  Just check
14066         whether it is a (compile-time) error to pass an argument to
14067         getpgrp.  This simpler test supports the revised documentation,
14068         and is all that AC_FUNC_GETPGRP's users really need.
14070 2001-09-18  Akim Demaille  <akim@epita.fr>
14072         * doc/autoconf.texi (Limitations of Make) <$<>: New.
14074 2001-09-18  Akim Demaille  <akim@epita.fr>
14076         * doc/autoconf.texi (Limitations of Usual Tools) <find>: More about
14077         `{}'.
14078         * lib/autotest/general.m4 (AT_INIT): Adjust.
14080 2001-09-18  Paul Wagland  <paul@wagland.net>
14082         * tests/m4sh.at: Ensure that AS_DIRNAME handles '/', '//' and '///'
14083         correctly.
14084         Add test for AS_BASENAME.
14085         * lib/m4sugar/m4sh.m4: Fix AS_BASENAME so that it passes the previous
14086         added test. It now correctly handles /1/2/3/, returning '3' not ''.
14087         Added AS_BASENAME_SED to make the interface the same as AS_DIRNAME.
14088         * tests/base.at: Fixed the expected responses. The old ones were
14089         one line out...
14090         * lib/autoconf/general.m4: Fixed AC_PREFIX_PROGRAM, it now behaves as
14091         the documentation claims it should (and how it behaved in 2.13).
14093 2001-09-18  Akim Demaille  <akim@epita.fr>
14095         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): No INIT-CMDS in
14096         the AC_CONFIG_COMMANDS invocation.
14097         This also solves the name clash problems.
14098         Don't set the package's ID.
14099         * lib/m4sugar/Makefile.am (version.m4): Revamp.
14100         No longer to be shipped.
14101         (version.in): Remove.
14102         * lib/m4sugar/m4sugar.m4, lib/autoconf/general.m4,
14103         * lib/autoconf/status.m4: Adjust.
14104         Use `m4_PACKAGE_STRING'.
14105         * lib/autotest/general.m4 (AT_INIT): N-th signature change: now
14106         the only optional argument is the name of the test suite.
14107         Expect `package.m4' to define the package signature.
14108         * lib/autom4te.in (Autotest): Add `package.m4?'.
14109         * tests/Makefile.am (package.m4): New.
14110         * tests/suite.at: ifnames is a victim.
14112 2001-09-18  Akim Demaille  <akim@epita.fr>
14114         * lib/autom4te.in (Autoconf): Preselect AM_CONDITIONAL,
14115         AC_LIBSOURCE, AC_CONFIG_FILES.
14116         * lib/autotest/general.m4 (AT_INIT): Don't abort when a tested
14117         program version string doesn't match the package's.
14118         * lib/autoconf/general.m4 (AC_CACHE_VAL): Reestablish the space
14119         after `(cached)'.
14121 2001-09-17  Paul Eggert  <eggert@twinsun.com>
14123         * lib/autoconf/c.m4: (AC_LANG_INT_SAVE(C)):
14124         Allow expression to return any value that can fit into unsigned long
14125         (not int, as before).  Check for output errors.
14127 2001-09-17  Bruno Haible  <haible@ilog.fr>
14129         * lib/autoconf/c.m4: (AC_LANG_INT_SAVE(C)):
14130         Always include <stdio.h> and <stdlib.h>. Evaluate
14131         the expression in an extra function before these includes. Call
14132         fprintf "%d" only after ensuring the argument is of type 'int'.
14133         Reported by Wayne Chapeskie <waynec@spinnaker.com>.
14135 2001-09-17  Paul Eggert  <eggert@twinsun.com>
14137         Fix bug reported by Paul Townsend on AIX 4.3.3.0 with CFLAGS=-O4
14138         or CFLAGS=-O5.  In that case, the linker has a relaxed view of
14139         fatal errors, and AC_CHECK_LIB causes it to include libraries even
14140         when they don't exist.
14142         * lib/autoconf/headers.m4 (AC_HEADER_DIRENT): Use AC_SEARCH_LIBS,
14143         not AC_CHECK_LIB, so that we don't use -ldir or -lx if we don't
14144         need it.
14146         * lib/autoconf/specific.m4 (AC_ISC_POSIX): Replace the old, crufty
14147         version with the version used by fileutils 4.1, except use
14148         AC_SEARCH_LIBS, not AC_CHECK_LIB, so that we don't use -lcposix if
14149         we don't need it.
14151         * doc/autoconf.texi (AC_ISC_POSIX): Describe new behavior.
14153 2001-09-13  Akim Demaille  <akim@epita.fr>
14155         * tests/base.at, tests/m4sh.at: Be sure to issue the bangshe line
14156         _first_.
14157         Reported by Gerrit P. Haase.
14159 2001-09-13  Akim Demaille  <akim@epita.fr>
14161         * lib/autotest/general.m4 (AT_INIT): Reset `AT_victims' so that
14162         m4_defn'ing is valid.
14164 2001-09-13  Akim Demaille  <akim@epita.fr>
14166         * lib/m4sugar/m4sugar.m4 (m4_append_uniq): New.
14167         * lib/autotest/general.m4 (AT_VICTIMS, AT_KEYWORDS, _AT_CLEANUP_FILE):
14168         Use it.
14170 2001-09-13  Akim Demaille  <akim@epita.fr>
14172         * lib/m4sugar/m4sugar.m4 (_AS_QUOTE_IFELSE, _AS_BOX_INDIR): Use
14173         m4_match.
14174         (m4_re_escape): New.
14175         * lib/autoconf/status.m4 (AC_CONFIG_IF_MEMBER): Use it.
14176         * lib/autoconf/general.m4 (AC_CACHE_SAVE): Use m4_match.
14177         * lib/autoconf/status.m4 (AC_CONFIG_IF_MEMBER, AC_CONFIG_LINKS):
14178         Likewise.
14179         * lib/autoconf/types.m4 (_AC_CHECK_TYPE_REPLACEMENT_TYPE_P)
14180         (_AC_CHECK_TYPE_MAYBE_TYPE_P, AC_CHECK_MEMBER): Likewise.
14181         * lib/autotest/general.m4 (AT_INIT): Rename AT_TESTS_ALL as
14182         AT_tests_all for consistency.
14183         Set at_victims.
14184         (AT_VICTIMS): Similar to AT_KEYWORDS.
14185         (_AT_CLEANUP_FILE_IF): Use m4_match and m4_re_escape.
14187 2001-09-13  Akim Demaille  <akim@epita.fr>
14189         * lib/autotest/general.m4 (AT_INIT): Fix stupid bugs.
14191 2001-09-13  Akim Demaille  <akim@epita.fr>
14193         * lib/autotest/general.m4 (AT_INIT): Create and remove
14194         `$as_me.[0-9]+' instead of `debug-[0-9]+.sh', so that multiple
14195         test suites can cohabit.
14197 2001-09-13  Akim Demaille  <akim@epita.fr>
14199         * tests/mktests.sh: Don't output banners for empty test files.
14201 2001-09-13  Akim Demaille  <akim@epita.fr>
14203         Test suites can be run independently of configure.
14205         * lib/m4sugar/m4sh.m4 (_AS_ECHO, _AS_ECHO_N_PREPARE): New.
14206         * lib/autoconf/programs.m4 (_AC_PROG_ECHO): Remove.
14207         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Adjust: AC_SUBST
14208         ECHO_N etc.
14209         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): Don't ask for at_n
14210         and at_c.
14211         * lib/autotest/general.m4: Use ECHO_*.
14213 2001-09-13  Akim Demaille  <akim@epita.fr>
14215         * bin/ifnames.in: Rewrite in Perl.
14216         * configure.ac: Don't look for AWK.
14217         * tests/tools.at (AWK portability): Remove.
14218         (Syntax of the shell scripts): Don't check ifnames.
14219         (AT_CHECK_PERL_SYNTAX): New.
14220         (Syntax of the Perl scripts): Check ifnames.
14221         * tests/ifnames: New.
14223 2001-09-13  Akim Demaille  <akim@epita.fr>
14225         * lib/autotest/general.m4 (AT_INIT): Let --keywords also match
14226         test group titles.
14227         * tests/atspecific.m4 (AT_CHECK_AU_MACRO): AT_KEYWORDS(autoupdate).
14228         Remove all the other keywords.
14230 2001-09-10  Akim Demaille  <akim@epita.fr>
14232         * lib/autotest/general.m4 (AT_INIT): Remove the diversion HELP and
14233         SETUP: no longer used.
14234         Support -k, --keywords.
14235         <at_help>: Be `no', `short', or `long'.
14236         <at_help_all>: New variable.
14237         (AT_KEYWORDS): New.
14238         (AT_CLEANUP_FILE_IFELSE, AT_CLEANUP_FILE): Rename as...
14239         (_AT_CLEANUP_FILE_IF, _AT_CLEANUP_FILE): these.
14240         (_AT_CLEANUP_FILE_IF): Simplify the regexp.
14241         (AT_SETUP): Reset AT_line, AT_keywords, AT_description.
14242         No longer fill the HELP diversion.
14243         (AT_CLEANUP): Use them.
14244         * lib/m4sugar/m4sugar.m4 (m4_append): Support a separator.
14245         (m4_list_append): Remove.
14247         Spread a few keywords in the Autoconf test suite.
14249 2001-09-10  Akim Demaille  <akim@epita.fr>
14251         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): Don't pass
14252         PATH_SEPARATOR, let M4sh compute it.
14253         * lib/m4sugar/m4sh.m4 (_AS_PATH_SEPARATOR_PREPARE): New.
14254         * lib/autoconf/programs.m4 (AC_SHELL_PATH_WALK): Use PATH_SEPARATOR.
14255         Move to...
14256         * lib/m4sugar/m4sh.m4 (_AS_PATH_WALK): Here.
14257         Simplify when the path is not a literal.
14258         (AS_UNAME): Use it to report PATH.
14259         * lib/autoconf/general.m4 (_AC_INIT_PREPARE_FS_SEPARATORS): Remove.
14260         (_AC_INIT_DEFAULTS): AC_SUBST PATH_SEPARATOR.
14261         * lib/autoconf/programs.m4 (AC_PROG_INSTALL): Use _AS_PATH_WALK.
14262         * lib/autotest/general.m4 (AT_INIT): Use _AS_PATH_WALK to
14263         normalize the path, and to look for victims.
14264         * tests/semantics.at (AC_PATH_PROG & AC_PATH_PROGS)
14265         (AC_CHECK_PROG & AC_CHECK_PROGS): Use PATH_SEPARATOR.
14267 2001-09-07  Akim Demaille  <akim@epita.fr>
14269         * bin/autom4te.in (&handle_m4): `< /dev/null' so that GNU M4 1.5
14270         doesn't neutralize SIGINT, making autoconf etc. non interruptible.
14271         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): Move the package
14272         related variables into `at_package_*'.
14273         * lib/autotest/general.m4 (AT_VICTIMS): New.
14274         (AT_INIT): Adjust for stand-alone/embedded test suites.
14275         (AS_MESSAGE_LOG_FD): Define and use it.
14276         * tests/suite.at (AT_VICTIMS): Use it.
14277         * tests/tools.at (autoupdating AC_PREREQ): Don't depend upon
14278         at_version.
14280 2001-09-07  Akim Demaille  <akim@epita.fr>
14282         Move toward possibly stand-alone test suites.
14284         * lib/autotest/general.m4: Stop displaying srcdir everywhere as,
14285         in addition, it introduces useless differences in logs.
14286         (AT_INIT): Let atconfig and atlocal be both optional.
14287         Adjust PATH computation.
14288         * lib/m4sugar/m4sh.m4 (AS_UNAME): More readable display of PATH.
14290 2001-09-07  Akim Demaille  <akim@epita.fr>
14292         * lib/autoconf/Makefile.am (autoconf.m4f): Depends upon
14293         m4sugar/version.m4.
14295 2001-09-05  Akim Demaille  <akim@epita.fr>
14297         * lib/autoconf/c.m4 (AC_LANG_BOOL_COMPILE_TRY(C)): Use `_array_'
14298         to avoid GCC warnings.
14299         From Uwe Seimet.
14301 2001-09-05  Akim Demaille  <akim@epita.fr>
14303         * bin/autom4te.in: --language is -l, not -s.
14305 2001-09-05  Akim Demaille  <akim@epita.fr>
14307         Be ready to handle filenames as stupid as `dnl.at', for if even
14308         the maintainer is dumb enough to do that...
14310         * lib/autotest/general.m4 (AT_SETUP, AT_LINE): Demonstrates your
14311         excellence in M4 quotation: consider `__file__' is active.
14313         And BTW, when invoking m4, pass the --include in the right order:
14314         the wrong one.
14316         * bin/autom4te.in, bin/autoupdate.in: Use reverse when kingtal to
14317         4m.
14319 2001-09-05  Akim Demaille  <akim@epita.fr>
14321         * lib/Autom4te/XFile.pm: New lib file.
14322         * bin/autoupdate.in, bin/autoscan.pl, bin/autom4te.in,
14323         * bin/autoheader.in: Use it.
14325 2001-09-05  Akim Demaille  <akim@epita.fr>
14327         * bin/autoupdate.in (&handle_m4_macros) <unm4.m4>: Undefine iff
14328         defined.
14330 2001-09-05  Akim Demaille  <akim@epita.fr>
14332         * lib/Autom4te/General.pm (&getopt): Work around the `-' Getopt bug.
14333         * bin/autoheader.in, bin/autoupdate.in (&parse_args): Adjust.
14335         * bin/autoscan.in: Use `getopt' and `find_files' etc.
14336         Add -I, --include support.
14337         * doc/autoconf.texi (autoscan Invocation): Adjust.
14339 2001-09-05  Akim Demaille  <akim@epita.fr>
14341         CVS GNU M4 doesn't like `undefine(undefined)'.
14343         * bin/autoupdate.in (&handle_m4_macros, &handle_autoconf_macros):
14344         New, extracted from main.
14345         Use IO::File wherever possible.
14346         (input.m4): Be constant, use -I instead of hard coding $tmp.
14347         Therefore be a quoted heredoc.
14348         Don't invoke `_au_disable', since ac was not loaded, but just
14349         `unm4.m4'.
14351 2001-08-31  Akim Demaille  <akim@epita.fr>
14353         Version 2.52d.
14355 2001-08-31  Akim Demaille  <akim@epita.fr>
14357         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Fix the
14358         previous patch.
14359         * tests/atspecific.m4 (AT_CHECK_AUTOHEADER): Can create `config.hin~'.
14361 2001-08-31  Akim Demaille  <akim@epita.fr>
14363         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): DU 5.0 has
14364         serious problems handling heredocs in heredocs.
14365         Reported by Nicolas Joly.
14367 2001-08-31  Akim Demaille  <akim@epita.fr>
14369         * doc/autoconf.texi: Don't promote non `m4_*' M4 macros.
14370         (Making testsuite Scripts): Update.
14372 2001-08-31  Akim Demaille  <akim@epita.fr>
14374         * lib/Makefile.am (CLEANFILES): Add autom4te.cfg.
14376 2001-08-31  Akim Demaille  <akim@epita.fr>
14378         * doc/autoconf.texi (Quadrigraphs): Document `@&t@'.
14379         (testsuite Scripts): There is no such thing as `atconfig.in'.
14380         And actually one diagram is missing: test suite runtime.
14382 2001-08-31  Akim Demaille  <akim@epita.fr>
14384         * lib/Autom4te/General.pm (&find_file): Browse the includes in the
14385         inverse order.
14387 2001-08-31  Akim Demaille  <akim@epita.fr>
14389         * bin/autoupdate.in (@include): `installcheck' revealed the path
14390         to m4sugar was lacking!
14392 2001-08-31  Akim Demaille  <akim@epita.fr>
14394         * man/Makefile.am (.x.1): We really have to pass
14395         autom4te_perllibdir.
14397 2001-08-31  Akim Demaille  <akim@epita.fr>
14399         * lib/autotest/general.m4 (AT_INIT): Don't pass all the args to
14400         debug scripts, in particular passing explicitly listed tests to
14401         run is stupid.
14403 2001-08-31  Akim Demaille  <akim@epita.fr>
14405         * bin/autom4te.in (&parse_args): Strip `.' from `@include'.
14406         * bin/autoupdate.in: Use --include, -I, and --force, -f, too.
14407         Use directly autom4te, not autoconf.
14408         * tests/autoupdate: $top_srcdir/lib is needed too for melt files.
14410 2001-08-31  Akim Demaille  <akim@epita.fr>
14412         * tests/semantics.at (AC_C_BIGENDIAN): Missing eol.
14413         * bin/autoheader.in (%symbol): Strip arguments of macros.
14415 2001-08-31  Akim Demaille  <akim@epita.fr>
14417         * doc/autoconf.texi: Catch up -I, --include changes.
14419 2001-08-31  Akim Demaille  <akim@epita.fr>
14421         * bin/autom4te.in (&parse_args): Die on unknown languages.
14422         * bin/autoheader.in: Run directly autom4te --mode=autoconf, no
14423         need for autoconf.
14424         Promote --include over --macrodir and other obsolete options.
14426 2001-08-31  Akim Demaille  <akim@epita.fr>
14428         * lib/Autom4te/General.pm ($version, $help, &getopt): New.
14429         * bin/autoupdate.in, bin/autoheader.in, bin/autom4te.in: Use them.
14430         * bin/autom4te.in ($autoconf): Pass --force.
14431         `print $out' doesn't print `$_' but `$out'.
14432         * tests/tools.at (Syntax of the Perl scripts): Pass the lib dir.
14433         (autoheader): Pass --force since the test suite goes too fast for
14434         the time stamps.
14435         Adjust to the new autoheader messages.
14437 2001-08-31  Akim Demaille  <akim@epita.fr>
14439         * bin/autoheader.in: Handle the acconfig.h etc. junk files.
14440         Check the completeness of the #template.
14441         * lib/Autom4te/General.pm (&update_file): s/remove/unlink/.
14442         * tests/semantics.at (AC_C_BIGENDIAN): Adjust AT_CHECK_AUTOHEADER
14443         invocation.
14445 2001-08-31  Akim Demaille  <akim@epita.fr>
14447         * lib/Autom4te/General.pm (&find_file, &update_file): New.
14448         * bin/autoupdate.in, bin/autoheader.in: Adjust.
14449         Drop AC_MACRODIR dead for real.
14450         * tests/atspecific.m4 (AT_CHECK_AUTOHEADER): Now autoheader says
14451         `autoheader: `config.hin' is created'.
14452         * tests/tools.at (Syntax of the Perl scripts): Check autoheader.
14454 2001-08-31  Akim Demaille  <akim@epita.fr>
14456         * bin/autoheader.in: Rewrite in Perl.
14457         * tests/autoheader: Adjust.
14459 2001-08-31  Akim Demaille  <akim@epita.fr>
14461         * bin/autoconf.in (--include, -I): New option.
14462         Map --localdir, --autoconf-dir onto it.
14463         Forward autom4te's options instead of interpreting them.
14464         * bin/autoconf.in, bin/autoheader.in (AC_MACRODIR, autoconf_dir):
14465         There is no such envvar since the inception of autom4te.cfg.
14466         * bin/autom4te.in (&parse_args): Uniquify `@include'.
14467         * bin/autoupdate.in: Adjust, and perform more control.
14468         * tests/atspecific.m4 (AT_CHECK_AUTOCONF): Adjust.
14469         * tests/autoconf: Dittowise.
14471 2001-08-31  Akim Demaille  <akim@epita.fr>
14473         * bin/autoconf.in: Don't bother with `acsite.m4' and `aclocal.m4'.
14474         * bin/autom4te.in (&find_file): Support `FILE?' standing for
14475         optionally `FILE'.
14476         Use -e, not -f, since /dev/null for instance is OK.
14477         (&parse_args): Adjust.
14478         * lib/autom4te.in (Autoconf): Add `acsite.m4?' and `aclocal.m4?'.
14480 2001-08-31  Akim Demaille  <akim@epita.fr>
14482         * configure.ac: Also find tested executables in bin.
14483         * bin/autoconf.in, bin/autoheader.in, bin/autoreconf.in,
14484         * bin/autoscan.in, autoupdate.in: Use exclusively the name of the
14485         installed peer executables, only PATH is allowed to resolve it.
14486         Pass `autoconf_dir' via options, not via invisible envvars.
14487         * lib/Autom4te/General.pm (&find_peer): Remove.
14488         * lib/autotest/general.m4 (AT_INIT): `AUTOTEST_PATH=a:b' gives
14489         `abuild:asrc:bbuild:bsrc', not `abuild:bbuild:asrc:bsrc'.
14490         * man/Makefile.am: Let help2man rely on PATH instead of trying to
14491         find the executables for it.
14492         * tests/Makefile.am: Major cleanup.  Too lazy to document...
14493         * tests/atlocal.in: Remove all the obscure envvar manipulations.
14494         We only need PERL.
14495         * tests/atspecific.m4, tests/tools.at: Passing --localdir is
14496         indeed related to running the test suite, while passing
14497         --autoconf-dir and others is related to running non installed
14498         Autoconf executables.  So don't do that, leave it to...
14499         * tests/autoconf, tests/autoheader, tests/autom4te, tests/autoupdate,
14500         * tests/autoscan: New.
14501         * tests/atspecific.m4 (AT_CHECK_M4SUGAR, AT_CHECK_M4SH): Don't
14502         refer to library files: rely on --language.
14504 2001-08-29  Akim Demaille  <akim@epita.fr>
14506         * bin/autom4te.in, lib/autom4te.in, bin/autoconf.in:
14507         s/--set/--language/.
14509 2001-08-29  Akim Demaille  <akim@epita.fr>
14511         * doc/autoconf.texi: Strip the @nodes.
14512         Suggested by Paul Eggert.
14513         (Initializing configure): Typo.
14515 2001-08-29  Akim Demaille  <akim@epita.fr>
14517         * bin/autom4te.in (&handle_output): s/@__@/@&t@/.
14518         Suggested by Paul Eggert.
14520 2001-08-29  Akim Demaille  <akim@epita.fr>
14522         * Makefile.maint (do-po-update): Wget refuses to overwrite files:
14523         download in a tmp dir.
14525 2001-08-29  Akim Demaille  <akim@epita.fr>
14527         * lib/autotest/general.m4: s/AT-devnull/devnull/ since there are
14528         case insensitive OSes out there :(
14529         From Tim Van Holder.
14531 2001-08-29  Akim Demaille  <akim@epita.fr>
14533         * lib/autom4te.in: New.
14534         * lib/Makefile.am (edit, autom4te.cfg): New.
14535         * bin/autom4te.in (BEGIN): Simplify.
14536         Rely on `AC_MACRODIR' in addition of `autom4te_perllibdir'.
14537         (&load_configuration): New.  Use it.
14538         (&parse_args): Support --mode, --set, and --melt.
14539         * bin/autoconf.in: Simplify and adjust.
14540         * tests/Makefile.am (AUTOMAKE): Use --set.
14541         * tests/atlocal.in: Adjust.
14542         * BUGS: distcheck and check are weak.
14544 2001-08-29  Akim Demaille  <akim@epita.fr>
14546         * lib/autotest/general.m4: Use
14547                 foo=`(command) 2>/dev/null`
14548         not
14549                 foo=`command` 2>/dev/null
14550         (at-devnull): Rename as...
14551         (AT-devnull): this.
14552         (--clean): Remove AT-* files too.
14553         * doc/autoconf.texi (Limitations of Usual Tools): Document `date'.
14554         Reported by Nicolas Joly.
14556 2001-08-28  Akim Demaille  <akim@epita.fr>
14558         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Don't use single
14559         quotes inside single quotes.
14560         Reported by Nicolas Joly.
14562 2001-08-28  Kevin Ryde  <user42@zip.com.au>
14564         * doc/autoconf.texi (Function Portability): Mention C right shifts.
14566 2001-08-27  Tim Van Holder  <tim.van.holder@pandora.be>
14568         * lib/autotest/general.m4: Reword some messages.
14569         (AT_INIT): Check for the `times' builtin before using it.
14570         Support test ranges as arguments to the testsuite.
14571         Have -e imply -d as the help text suggested.
14573 2001-08-27  Akim Demaille  <akim@epita.fr>
14575         * Makefile.maint: Formatting changes.
14576         (do-po-update, po-update, cvs-update, update): New targets.
14577         (AMTAR): Remove.
14579 2001-08-27  Akim Demaille  <akim@epita.fr>
14581         * lib/autotest/general.m4 (AT_INIT) <at_cmd_line>: Remove.
14582         <at_cmd_line>: New.
14583         Pass it to debug-*.sh scripts.
14584         <AUTOTEST_PATH>: May contain absolute dir names.
14586 2001-08-27  Akim Demaille  <akim@epita.fr>
14588         * lib/autotest/general.m4 (AT_INIT): Log the command line.
14589         Support `VAR=VAL' as arguments.
14590         Compute PATH _after_ the options processing, so that AUTOTEST_PATH
14591         may be set via the command line.
14593 2001-08-27  Akim Demaille  <akim@epita.fr>
14595         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): $2 defaults to $1.
14596         * lib/autotest/autotest.m4 (AT_INIT): Expand AUTOTEST_PATH into
14597         first the build dirs, then the src dirs.
14598         * configure.ac (AC_CONFIG_TESTDIR): Adjust.
14600 2001-08-27  Akim Demaille  <akim@epita.fr>
14602         * lib/autotest/general.m4 (AT_INIT): Output the definition of
14603         at_data_files earlier.
14604         (--clean, -c): New option.
14605         * tests/Makefile.am: Use this option.
14607 2001-08-27  Akim Demaille  <akim@epita.fr>
14609         * lib/autoconf/status.m4 (_AC_SRCPATHS): Rename `ac_dots' as
14610         `ac_top_builddir' to mimic Automake's vocabulary, which much more
14611         readable.
14612         Adjust callers.
14613         * doc/autoconf.texi (Configuration Actions): Document the vars
14614         available in commands.
14615         Emphasize the risks of collisions in init-cmds.
14617 2001-08-27  Akim Demaille  <akim@epita.fr>
14619         * doc/autoconf.texi (Input) <AC_INIT>: Move to..
14620         (Initializing configure): this new node.
14622 2001-08-27  Akim Demaille  <akim@epita.fr>
14624         * Makefile.am (EXTRA_DIST): INSTALL.txt is a dead hack.
14626 2001-08-27  Akim Demaille  <akim@epita.fr>
14628         * m4/atconfig.m4 (AT_CONFIG): Remove, replaced by...
14629         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): this.
14630         New file.
14631         * m4/Makefile.am (EXTRA_DIST): Oops, adjust...
14633 2001-08-27  Akim Demaille  <akim@epita.fr>
14635         * lib/autoconf/general.m4 (AU_DEFINE, AU_DEFUN, AU_ALIAS): Move
14636         to...
14637         * lib/autoconf/autoheader.m4: this new file.
14638         * lib/autoconf/general.m4 (AH_OUTPUT, AH_VERBATIM)
14639         (_AH_VERBATIM_OLD, AH_TEMPLATE, _AH_TEMPLATE_OLD, AH_TOP, AH_BOTTOM):
14640         Move to...
14641         * lib/autoconf/autoupdate.m4: this new file.
14643 2001-08-27  Akim Demaille  <akim@epita.fr>
14645         * lib/autoconf/status.m4 (_AC_SRCPATHS): New.
14646         (_AC_OUTPUT_LINKS, _AC_OUTPUT_FILES, _AC_OUTPUT_SUBDIRS): Use it.
14647         Standardize the var names (ac_sub_srcdir -> ac_srcdir, ac_subdir
14648         -> ac_dir).
14649         (_AC_OUTPUT_HEADERS): AS_DIRNAME always return a dir name.
14650         * lib/autoconf/general.m4 (_AC_INIT_HELP): Ditto.
14652 2001-08-27  Akim Demaille  <akim@epita.fr>
14654         * lib/autoconf/autoconf.m4 (AC_CONFIG_COMMANDS)
14655         (AC_CONFIG_COMMANDS_POST, AC_CONFIG_COMMANDS_PRE, AC_CONFIG_FILES)
14656         (AC_CONFIG_HEADER, AC_CONFIG_HEADERS, AC_CONFIG_IF_MEMBER)
14657         (AC_CONFIG_LINKS, AC_CONFIG_SUBDIRS, AC_FILE_DEPENDENCY_TRACE)
14658         (AC_LINK_FILES, AC_LIST_COMMANDS, AC_LIST_COMMANDS_COMMANDS)
14659         (AC_LIST_FILES, AC_LIST_FILES_COMMANDS, AC_LIST_HEADERS)
14660         (AC_LIST_HEADERS_COMMANDS, AC_LIST_LINKS, AC_LIST_LINKS_COMMANDS)
14661         (AC_OUTPUT, AC_OUTPUT_COMMANDS, AC_OUTPUT_COMMANDS_POST)
14662         (AC_OUTPUT_COMMANDS_PRE, AC_OUTPUT_MAKE_DEFS)
14663         (_AC_CONFIG_COMMANDS_INIT, _AC_CONFIG_DEPENDENCIES)
14664         (_AC_CONFIG_DEPENDENCY, _AC_CONFIG_UNIQUE, _AC_LINK_FILES_CNT)
14665         (_AC_LIST_SUBDIRS, _AC_OUTPUT_COMMANDS, _AC_OUTPUT_COMMANDS_CNT)
14666         (_AC_OUTPUT_COMMANDS_INIT, _AC_OUTPUT_CONFIG_STATUS)
14667         (_AC_OUTPUT_FILES, _AC_OUTPUT_HEADERS, _AC_OUTPUT_LINKS)
14668         (_AC_OUTPUT_SUBDIRS): Move to...
14669         * lib/autoconf/status.m4: this new file.
14670         * lib/autoconf/general.m4, lib/autoconf/Makefile.am: Adjust.
14671         * tests/Makefile.am, tests/suite.at: Adjust.
14673 2001-08-27  Akim Demaille  <akim@epita.fr>
14675         Automake 1.5.
14677         * Makefile.am (AUTOMAKE_OPTIONS): Add 1.5 and dist-bzip2.
14678         (AMTAR): Help automake define it.
14679         (INSTALL, install-data-hook): The INSTALL.txt trick is no longer
14680         needed, 1.5 can have a macro and a target with the same name.
14681         * m4/auxdir.m4, m4/cond.m4, m4/depend.m4, m4/install-sh.m4,
14682         * m4/strip.m4: New.
14683         * m4/init.m4, m4/sanity.m4: Update.
14684         * doc/Makefile.am (CLEANFILES): 1.5 knows the texi2dvi files.
14685         * lib/autoconf/Makefile.am, lib/autotest/Makefile.am,
14686         * lib/m4sugar/Makefile.am, lib/autoscan/Makefile.am,
14687         * lib/Autom4te/Makefile.am, man/Makefile.am: Use dist/nodist.
14689 2001-08-27  Akim Demaille  <akim@epita.fr>
14691         Provide a mean to ``AC_PREREQ'' for M4sugar, M4sh and Autotest.
14693         * lib/autoconf/version.in: Remove.
14694         * lib/m4sugar/version.in: New.
14695         * lib/m4sugar/m4sugar.m4 (m4_acversion, m4_version_prereq): New.
14696         Adjust callers.
14697         * bin/autoupdate.in: Distinguish M4sugar vs. Autoconf macros by
14698         the name of the directory they're in, instead of the filename,
14699         since version.m4 is now in m4sugar, but m4_acversion must not be
14700         classified as an Autoconf macro.
14701         ($input_m4): Don't qualify the path to m4sugar.
14702         Rather, pass autoconf_dir to m4.
14703         * tests/Makefile.am (testsuite): Remove -I top_srcdir, unneeded.
14704         * tests/suite.at: Require 2.52c.
14706 2001-08-27  Akim Demaille  <akim@epita.fr>
14708         testsuite.log should include config.log.
14710         * lib/autotest/autotest.m4: New.
14711         * lib/autotest/general.m4, tests/atspecific.m4: Adjust.
14712         * tests/suite.at : Adjust.
14713         (AT_INIT): Log config.log.
14714         * lib/m4sugar/m4sugar.m4 (m4_text_box): New.
14715         * lib/m4sugar/m4sh.m4 (_AS_BOX_LITERAL): Adjust.
14716         * lib/autoconf/general.m4 (_AC_INIT_CONFIG_LOG): Use them.
14717         (_AC_INIT_PREPARE): Fix the incredibly messy and buggy completion
14718         of config.log on traps.
14719         (_AC_OUTPUT_CONFIG_STATUS): Use AS_BOX.
14720         Use consistently `_ACEOF' for configure's here docs, and `_CSEOF'
14721         for config.status'.
14722         Open the log as soon as possible.
14723         Use the same log introduction as configure's.
14725 2001-08-22  Paul Eggert  <eggert@twinsun.com>
14727         * doc/autoconf.texi (Indices): New node.
14728         Move indices out of the top level menu and into this submenu.
14730 2001-08-22  Akim Demaille  <akim@epita.fr>
14732         * lib/autoconf/programs.m4 (_AC_PROG_LEX_YYTEXT_DECL): Use
14733         AC_TRY_COMMAND.
14734         (AC_DECL_YYTEXT): Fix the previous patch: it points to AC_PROG_LEX.
14736 2001-08-22  Akim Demaille  <akim@epita.fr>
14738         * lib/autoconf/general.m4 (AC_SHELL_PATH_WALK, AC_CHECK_PROG)
14739         (AC_CHECK_PROGS, AC_PATH_PROG, AC_PATH_PROGS, AC_CHECK_TOOL_PREFIX)
14740         (AC_PATH_TOOL, AC_CHECK_TOOL, AC_CHECK_TOOLS): Move to...
14741         * lib/autoconf/programs.m4: here.
14742         * lib/autoconf/specific.m4 (_AC_PROG_ECHO, AC_PROG_MAKE_SET)
14743         (AC_PROG_RANLIB, AC_PROG_YACC, AC_PROG_LEX, _AC_DECL_YYTEXT)
14744         (AC_PROG_INSTALL, AC_PROG_LN_S, AC_RSH): Move to...
14745         * lib/autoconf/programs.m4: here.
14746         (_AC_DECL_YYTEXT): Rename as...
14747         (_AC_PROG_LEX_YYTEXT_DECL): this.
14748         * lib/autoconf/autoconf.m4, lib/autoconf/Makefile.am
14749         * tests/Makefile.am, tests/suite.am: Adjust.
14751 2001-08-22  Akim Demaille  <akim@epita.fr>
14753         * lib/autoconf/general.m4 (AC_LIST_MEMBER_OF, AC_LINKER_OPTION):
14754         Move to...
14755         * lib/autoconf/fortran.m4 (_AC_LIST_MEMBER_IF, _AC_LINKER_OPTION):
14756         here.
14757         * lib/autoconf/general.m4 (AC_TRY_LINK_FUNC): Move to...
14758         * lib/autoconf/functions.m4: here.
14759         * lib/autoconf/general.m4 (AC_SEARCH_LIBS, AC_CHECK_LIB)
14760         (AH_CHECK_LIB): Move to...
14761         * lib/autoconf/libs: this new file.
14762         * lib/autoconf/specific.m4 (_AC_PATH_X_XMKMF, _AC_PATH_X_DIRECT)
14763         (_AC_PATH_X, AC_PATH_X, AC_PATH_XTRA): Move to...
14764         * lib/autoconf/libs.m4: here.
14765         * lib/autoconf/autoconf.m4, lib/autoconf/Makefile.am: Adjust.
14767 2001-08-22  Akim Demaille  <akim@epita.fr>
14769         * lib/m4sugar/m4sh.m4 (AS_MKDIR_P): Fail if fails.
14770         * lib/autoconf/general.m4 (_AC_OUTPUT_SUBDIRS): Adjust.
14771         (AC_SITE_LOAD): Better logging of config.site.
14773 2001-08-20  Akim Demaille  <akim@epita.fr>
14775         * configure.ac (AT_CONFIG): Fix the path.
14776         * m4/atconfig.m4 (AT_CONFIG): Don't use EOF but ATEOF so that 2.52
14777         can be used.
14779 2001-08-20  Alexandre Duret-Lutz  <duret_g@epita.fr>
14781         * lib/autoconf/c.m4 (AC_C_BIGENDIAN): Prepare the cross-compile
14782         program with AC_LANG_PROGRAM before feeding it to
14783         AC_COMPILE_IFELSE.  Cleanup grep usage.
14785 2001-08-20  Akim Demaille  <akim@epita.fr>
14787         * ChangeLog, ChangeLog.0, ChangeLog.1, ChangeLog.2, AUTHORS, BUGS,
14788         * NEWS, README, README-alpha, TODO, tests/README: This package is
14789         `Autoconf', not `autoconf' (the executable).
14791 2001-08-20  Akim Demaille  <akim@epita.fr>
14793         Info readers seem to need `Index' in the index node title :(
14795         * doc/autoconf.texi: Reverse the 2001-08-15 change which
14796         simplified index node names.
14798 2001-08-20  Akim Demaille  <akim@epita.fr>
14800         * lib/autoconf/general.m4 (_AC_INIT_PACKAGE): Warn if the
14801         arguments are not literals.
14802         * doc/autoconf.texi (Input) <AC_INIT>: Arguments must be literals.
14803         Specify the output variables, and macros defined.
14805 2001-08-20  Akim Demaille  <akim@epita.fr>
14807         * doc/autoconf.texi (Examining Declarations) <AC_TRY_CPP>:
14808         (Examining Syntax) <AC_TRY_COMPILE>
14809         (Examining Libraries) <AC_TRY_LINK>
14810         (Test Programs) <AC_TRY_RUN>: These macros double quote some of
14811         their arguments.
14812         Reported by Werner Lemberg.
14814 2001-08-20  Akim Demaille  <akim@epita.fr>
14816         * lib/autotest/general.m4 (AT_INIT): Compute top_builddir,
14817         top_srcdir and srcdir from at_topbuild_2_topsrc and at_testdir.
14818         Load atlocal late enough to dump it in the log.
14819         * m4/atconfig.m4 (AT_CONFIG): Pass them to atconfig.
14821 2001-08-20  Akim Demaille  <akim@epita.fr>
14823         * tests/torture.at (Configuring subdirectories): New test.
14824         * lib/autoconf/general.m4 (_AC_INIT_SRCDIR): Say what you are
14825         looking for.
14826         * m4/atconfig.m4: Be sure the let $[0] be expandable.
14827         (top_srcdir): Fix its computation.
14829 2001-08-20  Akim Demaille  <akim@epita.fr>
14831         * lib/autoconf/general.m4 (_AC_OUTPUT_COMMANDS): Say what you do.
14832         * m4/atconfig.m4 (AT_CONFIG): $1 is now the directory where the
14833         test suite lives.
14834         Create `atconfig' automagically.
14835         Configure atlocal.in if present.
14836         * tests/atconfig.in: Remove.
14837         * tests/atlocal.in: New.
14838         * tests/Makefile.am: Adjust.
14840 2001-08-20  Akim Demaille  <akim@epita.fr>
14842         Huh!?!?!  There are still some user EOF tags used, which prevents
14843         their use in AC_CONFIG_COMMANDS for instance...
14845         * lib/autoconf/general.m4, lib/autoconf/specific.m4,
14846         * lib/autotest/general.m4: Rename the EOF tags as `_ACEOF',
14847         `_CSEOF', or `_ATEOF', as appropriate.
14848         * lib/m4sugar/Makefile.am, lib/autoconf/Makefile.am,
14849         * lib/autotest/Makefile.am (check-local): Enforce this constraint.
14851 2001-08-20  Akim Demaille  <akim@epita.fr>
14853         * tests/base.at, tests/m4sh.at, tests/m4sugar.at,
14854         * tests/semantics.at, tests/tools.at, tests/torture.at:
14855         s/^AT_DATA\(([^][]+),/AT_DATA([$1],/.
14857 2001-08-20  Akim Demaille  <akim@epita.fr>
14859         Autotest invokes M4sh's initialization.
14861         * lib/autotest/general.m4: Adjust the diversion names.
14862         (AT_INIT): Run AS_INIT.
14863         Use the BINSH diversion to invoke /bin/sh.
14864         * tests/base.at, tests/m4sh.at, tests/m4sugar.at, tests/tools.at:
14865         * tests/torture.at: Respect M4sugar and M4sh macro name spaces.
14867 2001-08-20  Akim Demaille  <akim@epita.fr>
14869         Let M4sh have its own diversions.
14871         * lib/autoconf/general.m4 (_m4_divert(BINSH), _m4_divert(REVISION))
14872         (_m4_divert(NOTICE)): Rename as...
14873         * lib/m4sugar/m4msh.m4 (_m4_divert(BINSH), _m4_divert(HEADER-REVISION))
14874         (_m4_divert(HEADER-COMMENT)): these.
14875         (_m4_divert(HEADER-COPYRIGHT), _m4_divert(HEADER-COPYRIGHT)): New.
14876         (_m4_divert(NOTICE)): New, for Libtool.
14877         * lib/autoconf/general.m4 (_m4_divert(PREPARE)): Remove, replaced
14878         long ago with `_m4_divert(GROW)'.
14879         (AC_COPYRIGHT, AC_REVISION, _AC_INIT_NOTICE): Adjust.
14881 2001-08-20  Akim Demaille  <akim@epita.fr>
14883         * tests/base.at, tests/compile.at, tests/foreign.at,
14884         * tests/m4sh.at, tests/m4sugar.at, tests/mktests.sh,
14885         * tests/semantics.at, tests/suite.at, tests/tools.at,
14886         * tests/torture.at: Ask Autotest mode, not Autoconf mode.
14888 2001-08-20  Akim Demaille  <akim@epita.fr>
14890         * bin/autom4te.in (handle_output): Handle @__@.
14892 2001-08-20  Akim Demaille  <akim@epita.fr>
14894         * lib/autoconf/autoconf.m4, lib/autoconf/oldnames.m4,
14895         * lib/autotest/general.m4: Adjust the license.
14897 2001-08-17  Paul Eggert  <eggert@twinsun.com>
14899         * doc/autoconf.texi (Function Portability): Mention snprintf,
14900         following up on a suggestion by Kevin Ryde.
14902 2001-08-17  Akim Demaille  <akim@epita.fr>
14904         * doc/install.texi, doc/autoconf.texi: Use `autoconf', not
14905         `autoconf_manual', as texinfo.tex 2001-06-21.10 chokes on it.
14907 2001-08-17  Akim Demaille  <akim@epita.fr>
14909         * lib/autotest/general.m4 (AT_INIT): Refer to `$as_me.log', not
14910         `$0.log' as for projects where testsuite is in src, we'd have
14911         testsuite.log created in src.
14913 2001-08-17  Akim Demaille  <akim@epita.fr>
14915         * bin/autom4te.in (&parse_args): Recognize --normalize.
14917 2001-08-17  Akim Demaille  <akim@epita.fr>
14919         Start implementing the AC_CHECK_HEADER transition scheme.
14921         * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_NEW)
14922         (_AC_CHECK_HEADER_OLD, _AC_CHECK_HEADER_MONGREL): New.
14923         (AC_CHECK_HEADER): Use them.
14925 2001-08-17  Akim Demaille  <akim@epita.fr>
14927         * doc/autoconf.texi: Work around Texinfo buglets.
14928         (Transformation Rules): One example is enough, users are expected
14929         to have their brains on. And BTW, use DESTDIR.
14930         (dvar): New macro.  Use it.
14932 2001-08-17  Akim Demaille  <akim@epita.fr>
14934         * doc/autoconf.texi (Writing testsuite.at) <AT_CHECK>: Complete.
14935         * lib/autotest/general.m4 (AT_INIT): Use the relative dir when
14936         looking for ChangeLogs.
14938 2001-08-17  Akim Demaille  <akim@epita.fr>
14940         * bin/autom4te.in: --normalize is a new option.
14941         * bin/autoconf.in: Use it.
14943 2001-08-17  Akim Demaille  <akim@epita.fr>
14945         * bin/Makefile.am, lib/Autom4te/Makefile.am, lib/autoconf/Makefile.am
14946         * lib/autotest/Makefile.am, lib/m4sugar/Makefile.am: Add TAGS support.
14948 2001-08-16  Paul Eggert  <eggert@twinsun.com>
14950         * doc/autoconf.texi, doc/install.texi: Put copyright notice at
14951         start, not at end.
14953 2001-08-15  Akim Demaille  <akim@epita.fr>
14955         * doc/Makefile.am (fu): New index, can't use fn because of defmac.
14956         Use it.
14958 2001-08-15  Akim Demaille  <akim@epita.fr>
14960         * doc/autoconf.texi (pr): New index.
14961         (prindex, findex): Use, merge, and output them.
14962         (Environment Variable Index, Output Variable Index)
14963         (Preprocessor Symbol Index, Autoconf Macro Index, M4 Macro Index)
14964         (Autotest Macro Index): Rename as...
14965         (Environment Variables, Output Variables,Preprocessor Symbols)
14966         (Autoconf Macros, M4 Macros, Autotest Macros): these.
14967         * doc/install.texi: Use @command.
14968         (Environment Variables): Rename as...
14969         (Defining Variables): this.
14971 2001-08-15  Akim Demaille  <akim@epita.fr>
14973         * doc/autoconf.texi (Function Portability): sprintf's return
14974         value.
14975         From Kevin Ryde.
14977 2001-08-15  Akim Demaille  <akim@epita.fr>
14979         * Makefile.maint (CVS): New.
14980         (local-check): Run changelog-check. last.
14981         (alpha): Don't depend upon local-check, since...
14982         (cvs-dist): depends upon it.
14984 2001-08-15  Tim Van Holder  <tim.van.holder@pandora.be>
14986         * tests/Makefile.am: Use a clean-local rule to remove
14987         autom4te.cache (it's a directory, not a file.
14988         * Makefile.am: Ditto (but maintainer-clean-local).
14990 2001-08-15  Akim Demaille  <akim@epita.fr>
14992         * bin/autom4te.in (@m4_warning): New.
14993         (&handle_m4): Use it.
14994         * tests/m4sugar.at (m4_warn): Pass `-f' to autom4te to ensure the
14995         warnings are issued at each run.
14996         * tests/atspecific.m4 (AT_CHECK_M4SUGAR, AT_CHECK_M4SH): M4sugar
14997         is in the src tree.
14999 2001-08-15  Akim Demaille  <akim@epita.fr>
15001         * tests/atspecific.m4 (AT_CHECK_AUTOUPDATE): Perl is now required:
15002         don't waste time running `autoupdate --version' works.
15003         * tests/tools.at (autoupdating AC_PREREQ): Likewise.
15005 2001-08-13  Akim Demaille  <akim@epita.fr>
15007         * doc/autoconf.texi (ma): Rename this index as...
15008         (ac): this.
15010 2001-08-13  Akim Demaille  <akim@epita.fr>
15012         * Makefile.am: Remove dead code and dead comments.
15013         (pdf, html): New targets.
15014         * doc/autoconf.texi (Using Autotest): New chapter.
15015         * doc/Makefile.am (pdf): New targets.
15016         (CLEANFILES): Adjust.
15018 2001-08-13  Akim Demaille  <akim@epita.fr>
15020         * lib/autotest/general.m4 (AT_INIT): Log the start/stop dates and
15021         duration of the test suite.
15023 2001-08-12  Alexandre Duret-Lutz  <duret_g@epita.fr>
15025         * tests/semantics.at (AC_C_BIGENDIAN): Explicitelly save and load
15026         endianness for comparison instead of relying on AT_CHECK_ENV.
15028 2001-08-11  Paul Eggert  <eggert@twinsun.com>
15030         * doc/autoconf.texi, doc/install.texi: Add a copyright notice
15031         to the INSTALL file.
15033 2001-08-11  Paul Eggert  <eggert@twinsun.com>
15035         * NEWS: The autoconf manual now is distributed under the terms
15036         of the GNU Free Documentation License.
15038         * doc/autoconf.texi: Switch from old style copyright notice to FDL.
15039         Add an appendix "Copying This Manual" for the FDL.
15041         * doc/fdl.texi: New file, from
15042         <http://www.gnu.org/licenses/fdl.texi>.
15044         * doc/Makefile.am (autoconf_TEXINFOS): Add fdl.texi.
15046 2001-08-10  Paul Eggert  <eggert@twinsun.com>
15048         * AUTHORS, BUGS, ChangeLog, ChangeLog.0, ChangeLog.1,
15049         ChangeLog.2, GNUmakefile, Makefile.maint, NEWS, README,
15050         README-alpha, TODO, configure.ac, lib/autoconf/Makefile.am,
15051         m4/atconfig.m4, m4/init.m4, m4/m4.m4, m4/missing.m4,
15052         m4/sanity.m4, tests/README, tests/aclocal.m4,
15053         tests/atspecific.m4, tests/base.at, tests/compile.at,
15054         tests/foreign.at, tests/m4sh.at, tests/m4sugar.at,
15055         tests/semantics.at, tests/suite.at, tests/tools.at,
15056         tests/torture.at: Add copyright notice.
15058         * tests/mktests.sh: Update year in copyright notice.
15060 2001-08-12  Alexandre Duret-Lutz  <duret_g@epita.fr>
15062         * tests/semantics.at (AC_C_BIGENDIAN): New test.
15064 2001-08-11  Alexandre Duret-Lutz  <duret_g@epita.fr>
15066         * lib/autoconf/c.m4 (AC_C_BIGENDIAN): Handle ACTION-IF-TRUE,
15067         ACTION-IF-FALSE, and ACTION-IF-UNKNOWN.
15068         * doc/autoconf.texi (C Compiler Characteristics): Update
15069         documentation for AC_C_BIGENDIAN.
15071 2001-08-11  Alexandre Duret-Lutz  <duret_g@epita.fr>
15073         * lib/autoconf/c.m4 (AC_C_BIGENDIAN): Guess endianness by grep'ing
15074         magic values from an object file when cross-compiling.
15075         Based on code by Guido Draheim <Guido.Draheim@gmx.de>.
15077 2001-08-10  Akim Demaille  <akim@epita.fr>
15079         * bin/autom4te.in (&handle_output): Don't use `grep' with side
15080         effects.
15081         Suggested by Russ Allbery.
15083 2001-08-10  Ralf Corsepius  <corsepiu@faw.uni-ulm.de>
15085         * lib/autoconf/general.m4 (_AC_OUTPUT_SUBDIRS): Propagate the
15086         current $prefix to the sub-configures.
15088 2001-08-09  Tim Van Holder  <tim.van.holder@pandora.be>
15090         * lib/autoconf/lang.m4: Ignore *.xSYM when looking for an executable
15091         extension (needed on BeOS).  Reported by Guido van Rossum.
15093 2001-08-09  Akim Demaille  <akim@epita.fr>
15095         * bin/autom4te.in ($icache): Load it only if older than autom4te.
15097 2001-08-07  Akim Demaille  <akim@epita.fr>
15099         * lib/autotest/general.m4 (AT_INIT): All the `at-*' are to be
15100         removed.
15101         (at-setup-line): Huh?  Be a variable `at_setup_line', not a file.
15102         No need to remove the files before and after the each test, before
15103         each test and at the end of the suite is enough.
15104         Display only the children `times', not the shell's.
15105         If the test failed or was skipped, at-times is not available.
15107 2001-08-07  Akim Demaille  <akim@epita.fr>
15109         Always produce testsuite.log, including when there are no
15110         failures.  This helps getting information on skipped tests, and
15111         duration of the tests.  Err, implement the latter btw.
15113         * lib/autotest/general.m4 (AT_INIT): Set up fd 6 for the log.
15114         Dump information on the first run of each test.
15115         (AT_CLEANUP): Create `at-times' containing the duration of the
15116         test group.
15118 2001-08-07  Akim Demaille  <akim@epita.fr>
15120         The use of `dumpstat' revealed that `len' was used although it
15121         should not.  m4_text_wrap was using it, but in the Autoconf world
15122         where it is legal.  Hence (i) test M4sh in its own world, not
15123         Autoconf's, and (ii), ahem, fix the bug :)
15125         * lib/autotest/general.m4: Be sure the set good quotes, as tracing
15126         does not like `' instead of [].
15127         (AT_INIT): Forbid `^_?AT_'.
15128         And don't output such tokens.
15129         * tests/Makefile.am (CLEANFILES): Add `script', `script.s4g',
15130         `script.as', and `autom4te.cache'.
15131         Remove `empty' and `macro' which are no longer used.
15132         * tests/atspecific.m4 (AT_CHECK_M4SUGAR, AT_CHECK_M4SH): New.
15133         * tests/m4sugar.at: Use it.
15134         * lib/m4sugar/m4sugar.m4: Use `m4_len' not `len'.
15136 2001-08-07  Akim Demaille  <akim@epita.fr>
15138         * bin/autoconf.in, bin/autoheader.in: --force, -f is a new option.
15140 2001-08-07  Alexandre Duret-Lutz  <duret_g@epita.fr>
15142         * bin/autom4te.in (handle_output): Typo in quadrigraph substitution.
15144 2001-08-04  Akim Demaille  <akim@epita.fr>
15146         * lib/autoconf/functions.m4 (AC_FUNC_ALLOCA, AC_FUNC_ERROR_AT_LINE)
15147         (AC_FUNC_FSEEKO, AC_FUNC_OBSTACK): Use AC_LANG_IFELSE, not
15148         AC_TRY_LINK.
15149         * lib/autoconf/headers.m4 (AC_HEADER_MAJOR): Likewise.
15150         * lib/autoconf/fortran.m4 (_AC_LANG_PROGRAM_C_F77_HOOKS)
15151         (AC_F77_MAIN): Likewise.
15153 2001-08-04  Akim Demaille  <akim@epita.fr>
15155         Don't rely on M4sugar outputting the patterns in files, since we
15156         might process the output _without_ running m4, hence without these
15157         files.
15159         * lib/m4sugar/m4sugar.m4 (m4_init): No need for `m4_tmpdir'.
15160         * bin/autom4te.in (@Request::includes): Remove, unused.
15161         (@Request::source): Rename as...
15162         (@Request::input): this.
15163         (@preselect): Add `m4_pattern_forbid' and `m4_pattern_allow'.
15164         (&handle_output): Fetch the patterns from the traces.
15165         `$forbidden' and `$allowed' are constant: use m//o.
15166         (&handle_m4): M4sugar no longer wants `m4_tmpdir'.
15167         (m4_pattern_forbid, m4_pattern_allow): Adjust for tracing only.
15169 2001-08-04  Akim Demaille  <akim@epita.fr>
15171         `autoconf && autoheader' is sped up.  Now, speed up `autoheader &&
15172         autoconf', i.e., in addition to caching traces, cache the output.
15174         * bin/autom4te.in (Request::cache): Rename as...
15175         (Request::id): this.
15176         ($cache, $icache, $tcache, $ocache): New.
15177         (&handle_m4): Save M4 output in the cache instead of $tmp.
15178         (&handle_output): Adjust.
15179         (&up_to_date_p): Check that the output cache is up to date too.
15180         (top level): Run `&handle_m4' iff force or the cache is invalid.
15181         Run `&handle_output' if the output cache is more recent.
15183 2001-08-04  Akim Demaille  <akim@epita.fr>
15185         * bin/autom4te.in ($force): New.
15186         (&parse_args, &print_usage): -f, --force is a new option.
15187         (&handle_output): CPP directives might have spaces after `#'.
15188         (&parse_args): The first file only can be frozen.
15190 2001-08-04  Akim Demaille  <akim@epita.fr>
15192         Don't let autom4te compute the `include' traces several times:
15193         first check that the trace cache file is up to date, and then
15194         compare its timestamp with that of the output.
15196         * bin/autom4te.in, bin/autoupdate.in, bin/autoscan.in: Normalize
15197         the preamble.  Don't require 5.005 as Autom4te::General does it,
15198         and better yet (use `use', not `require'!).
15199         * lib/Autom4te/Struct.pm: Rename the last occurrences of
15200         Class::Struct as Autom4te::Struct.
15201         * lib/Autom4te/General.pm (File::stat): Use it.
15202         (&mtime): New, export it.
15203         * bin/autom4te.in: Use it.
15204         Declare `$req' is invalid if it is outdated.
15205         Don't declare it valid before saving it if something went wrong.
15207 2001-08-04  Akim Demaille  <akim@epita.fr>
15209         Autom4te shall not encode Autoconf data, and preselecting traces
15210         must be proposed to the users.
15212         * bin/autom4te.in (@required_trace): Remove.
15213         (@preselect): New.
15214         (&parse_args, &print_usage): -p, --preselect is a new option.
15215         (&up_to_date_p): Adjust.
15216         * bin/autoconf.in: Preselect some Autoconf macros.
15218 2001-08-04  Akim Demaille  <akim@epita.fr>
15220         * tests/tools.at (autoconf --trace: user macros): Check traces on
15221         macros invoked without arguments, and macros invoked with multiple
15222         lines arguments.
15224 2001-08-03  Alexandre Duret-Lutz  <duret_g@epita.fr>
15226         * bin/autom4te.in (handle_traces): Fix rewriting of traces without
15227         arguments.
15229 2001-08-03  Akim Demaille  <akim@epita.fr>
15231         * bin/autoconf.in ($@): Work around the usual sh bug.
15232         From Nicolas Joly.
15234 2001-08-03  Akim Demaille  <akim@epita.fr>
15236         Clean up the handling of the M4 builtins tracing exception.
15238         * bin/autom4te.in (Request::request): Don't complete M4 builtins
15239         trace requests.
15240         (@m4_builtins): Rename as...
15241         (@m4_builtin): this.
15242         (%m4_builtin_alternate_name): New.
15243         (&parse_args): Complete the trace requests with alternate names.
15244         (&handle_traces): Hence no longer do it here.
15245         (&trace_requests): Remove, unused.
15247 2001-08-03  Akim Demaille  <akim@epita.fr>
15249         * doc/autoconf.texi (Redefined M4 Macros): Document m4_exit,
15250         m4_if, and m4_wrap.
15252 2001-08-03  Akim Demaille  <akim@epita.fr>
15254         * lib/m4sugar/m4sugar.m4 (m4_init): Also forbid `_m4_*' tokens.
15255         (m4_divert_pop): Dump the whole diversion stack when a diversion
15256         mismatch happens.
15257         * bin/autom4te.in (&handle_output): Remember of the first
15258         occurrence of a possibly undefined macro, not the last.
15259         Complain about the possibly undefined macros in the same order as
15260         the appear in the output.
15261         * lib/autoconf/Makefile.am (autoconf.m4f): List its dependencies.
15262         * tests/tools.at (autoconf: forbidden tokens, basic)
15263         (autoconf: forbidden tokens, exceptions): No longer sort
15264         autoconf's stderr, as it is now deterministic.
15265         Check that `dnl' is caught.
15267 2001-08-01  Akim Demaille  <akim@epita.fr>
15269         * configure.ac: Bump to 2.52c.
15271 2001-08-01  Akim Demaille  <akim@epita.fr>
15273         Version 2.52b.
15275         * lib/Autom4te/Makefile.am (perllibdir): s/Autoconf/Autom4te/.
15277 2001-08-01  Akim Demaille  <akim@epita.fr>
15279         Version 2.52a.
15281 2001-08-01  Akim Demaille  <akim@epita.fr>
15283         * lib/Autom4te/General.pm: Use `carp' and `croak', not `warn' and
15284         `die'.
15285         (&END): New.
15286         * bin/autoconf.in, bin/autom4te.in, bin/autoupdate.in: Remove your
15287         `END', as `Autom4te::General::END' will be triggered.
15288         * bin/autoupdate.in, bin/autoscan.in: Improve error messages accuracy.
15289         * bin/autoupdate.in (File::Compare, File::Copy): Use them instead of
15290         system to run `mv', `rm', and `cmp'.
15292 2001-08-01  Akim Demaille  <akim@epita.fr>
15294         * lib/Autom4te/General.pm (&unique): New.
15295         * bin/autoscan.in (&output): Use it to issue trace requests once.
15297 2001-08-01  Akim Demaille  <akim@epita.fr>
15299         * lib/Autom4te/General.pm: New.
15300         * bin/autom4te.in (Autom4te::General): Use it.
15301         ($me, $tmp, $verbose, $debug, &mktmpdir, &verbose, &xsystem)
15302         (&find_configure_ac, &find_slave): Remove.
15303         * bin/autoscan.in: Likewise.
15304         * bin/autoupdate.in: Likewise.
15306 2001-08-01  Akim Demaille  <akim@epita.fr>
15308         * autoconf.in, autom4te.in, autoscan.in, ifnames.in,
15309         * autoheader.in, autoreconf.in, autoupdate.in: Move to...
15310         * bin: here, new directory.
15311         * lib/Autoconf: Rename as...
15312         * lib/Autom4te: this, to please case insensitive junkie OSes.
15314 2001-08-01  Akim Demaille  <akim@epita.fr>
15316         * autom4te.in ($m4): Handle the --nesting-limit.
15317         * autoconf.in (M4): Remove.
15319 2001-08-01  Akim Demaille  <akim@epita.fr>
15321         * autoconf.in ($AWK): Remove, no longer used.
15322         * test/tools.at: Use AT_CHECK_AUTOCONF.
15323         (AWK portability): Remove, for autoconf no longer uses AWK.
15324         (Syntax of the Perl scripts): New.
15325         * configure.ac: autoconf no longer needs an AWK with a good
15326         regexp engine.
15327         Use a static test on AC_PACKAGE_VERSION.
15328         * autom4te.in (&up_to_date_p): Output depends on the arguments.
15329         * lib/autoconf/Makefile.am: Ship version.m4, maintainer file.
15330         * tests/atconfig.in (PERL): New.
15332 2001-08-01  Akim Demaille  <akim@epita.fr>
15334         * lib/autoconf/lang.m4 (AC_LANG(C), AC_LANG_C, _AC_LANG_ABBREV(C))
15335         (AC_LANG(C++), AC_LANG_CPLUSPLUS, _AC_LANG_ABBREV(C++))
15336         (AC_LANG_SOURCE(C), AC_LANG_PROGRAM(C), AC_LANG_CALL(C))
15337         (AC_LANG_FUNC_LINK_TRY(C), AC_LANG_BOOL_COMPILE_TRY(C))
15338         (AC_LANG_INT_SAVE(C), _AC_ARG_VAR_CPPFLAGS, _AC_ARG_VAR_LDFLAGS)
15339         (AC_LANG_PREPROC(C), _AC_PROG_PREPROC_WORKS_IFELSE, AC_PROG_CPP)
15340         (AC_LANG_COMPILER(C), ac_cv_prog_gcc, AC_PROG_CC, _AC_PROG_CC_G)
15341         (AC_PROG_GCC_TRADITIONAL, AC_PROG_CC_C_O, AC_LANG_PREPROC(C++))
15342         (AC_PROG_CXXCPP, AC_LANG_COMPILER(C++), ac_cv_prog_gxx)
15343         (AC_PROG_CXX, _AC_PROG_CXX_G, _AC_PROG_CXX_EXIT_DECLARATION)
15344         (AC_PROG_CC_STDC, AC_C_CROSS, AC_C_CHAR_UNSIGNED, AC_C_LONG_DOUBLE)
15345         (AC_C_BIGENDIAN, AC_C_INLINE, AC_C_CONST, AC_C_VOLATILE)
15346         (AC_C_STRINGIZE, AC_C_PROTOTYPES): Move to...
15347         * lib/autoconf/c.m4: here, new file.
15349         * lib/autoconf/lang.m4 (AC_LANG(Fortran 77), AC_LANG_FORTRAN77)
15350         (_AC_LANG_ABBREV(Fortran 77), AC_LANG_SOURCE(Fortran 77))
15351         (AC_LANG_PROGRAM(Fortran 77), AC_LANG_CALL(Fortran 77))
15352         (AC_LANG_PREPROC(Fortran 77), AC_LANG_COMPILER(Fortran 77))
15353         (ac_cv_prog_g77, AC_PROG_F77, _AC_PROG_F77_G, AC_PROG_F77_C_O)
15354         (_AC_PROG_F77_V_OUTPUT, _AC_PROG_F77_V, AC_F77_LIBRARY_LDFLAGS)
15355         (AC_F77_DUMMY_MAIN, _AC_LANG_PROGRAM_C_F77_HOOKS, AC_F77_MAIN)
15356         (_AC_F77_NAME_MANGLING, AC_F77_NAME_MANGLING, AC_F77_WRAPPERS)
15357         (AC_F77_FUNC): Move to...
15358         * lib/autoconf/fortran.m4: here, new file.
15360 2001-08-01  Akim Demaille  <akim@epita.fr>
15362         * acfunctions.m4: Rename as...
15363         * lib/autoconf/functions.m4: this.
15364         * acgeneral.m4: Rename as...
15365         * lib/autoconf/general.m4: this.
15366         * acheaders.m4: Rename as...
15367         * lib/autoconf/headers.m4: this.
15368         * aclang.m4: Rename as...
15369         * lib/autoconf/lang.m4: this.
15370         * acoldnames.m4: Rename as...
15371         * lib/autoconf/oldnames.m4: this.
15372         * acspecific.m4: Rename as...
15373         * lib/autoconf/specific.m4: this.
15374         * actypes.m4: Rename as...
15375         * lib/autoconf/types.m4: this.
15376         * autoconf.m4: Rename as...
15377         * lib/autoconf/autoconf.m4: this.
15379         * m4sugar.m4: Rename as...
15380         * lib/m4sugar/m4sugar.m4: this.
15381         * m4sh.m4: Rename as...
15382         * lib/m4sugar/m4sh.m4: this.
15384         * tests/atgeneral.m4: Rename as...
15385         * lib/autotest/general.m4: this.
15387         * acfunctions: Rename as...
15388         * lib/autoscan/functions: this.
15389         * acheaders: Rename as...
15390         * lib/autoscan/headers: this.
15391         * acidentifiers: Rename as...
15392         * lib/autoscan/identifiers: this.
15393         * aclibraries: Rename as...
15394         * lib/autoscan/libraries: this.
15395         * acmakevars: Rename as...
15396         * lib/autoscan/makevars: this.
15397         * acprograms: Rename as...
15398         * lib/autoscan/programs: this.
15400 2001-08-01  Akim Demaille  <akim@epita.fr>
15402         * doc/autoconf.texi: Moving/deleting open files is not portable.
15403         Portability issues for `.' (source), and more information about sed.
15405 2001-07-25  Steven G. Johnson  <stevenj@alum.mit.edu>
15407         * aclang.m4 (AC_F77_LIBRARY_LDFLAGS): Ignore -libmil (on Solaris),
15408         which has a special meaning and is not a reference to libibmil.a.
15409         Reported by Matteo Frigo.
15411 2001-07-25  Pavel Roskin  <proski@gnu.org>
15413         * autom4te.in (mktmpdir): Strip trailing newline from mktemp
15414         output.
15416 2001-07-25  Akim Demaille  <akim@epita.fr>
15418         * autoconf.in: Try to define the variables before using them.
15419         * autom4te.in ($perllibdir): Use `$autom4te_perllibdir' as envvar
15420         instead of `$perllibdir'.
15421         * tests/atconfig.in ($autom4te_perllibdir): Export it.
15423 2001-07-25  Akim Demaille  <akim@epita.fr>
15425         * autoconf.in (ac_LF_and_DOT): Remove, unused.
15427 2001-07-24  Akim Demaille  <akim@epita.fr>
15429         Let autoconf use autom4te for traces.
15431         * autoconf.in ($task, task trace): Remove, merely pass --trace to
15432         autom4te.
15433         * autoheader.in: Don't pass `-' to autoconf, rather, a tmp file.
15434         (Because I found no way for autom4te to accept `-').
15435         * autom4te.in (&Request::request): Beware of M4 builtins.
15436         (END): Don't try to remove the content of an empty dir.
15437         (&parse_args): Default is `$f:$l:$n:$%', not `$f:$l:$n:$*'.
15438         (&handle_output): Set a default value to `$forbidden'.
15439         * autoupdate.in (&verbose, &xsystem): New, from autom4te.in.
15440         ($autoconf): Pass --debug and --verbose.
15441         * tests/atspecific.m4 (AT_CHECK_AUTOCONF): Clean up autom4te's
15442         cache.
15444 2001-07-24  Akim Demaille  <akim@epita.fr>
15446         Let autoconf use autom4te to create configure.
15448         * autoconf.in ($automate): New var.
15449         (task script): Use autom4te.
15450         * autom4te.in (File::Spec): Use it.
15451         (&find_file): New.
15452         (&parse_args): --warning is -W, not -w.
15453         Find the top level files.
15454         (&handle_m4): Pass the warnings flags.
15455         Don't report verbosely m4's failures, unless requested.
15456         (&handle_output): Don't complain for forbidden tokens in comments.
15457         Be sure to report all the forbidden tokens within a single line.
15458         (&trace_format_to_m4): Preserve `$_'.
15459         (&handle_traces): Sort the output macros.
15460         (&up_to_date_p): Find the files before trying to get its time stamp.
15462 2001-07-24  Akim Demaille  <akim@epita.fr>
15464         * Makefile.am: Ship, build and install Autom4te.
15465         (SUBDIRS): Add lib.
15466         * lib/Autoconf/Struct.pm: New, from Automake 1.5.
15467         * configure.in: Require Perl.
15468         * man/autom4te.in: New.
15470 2001-07-19  Paul Eggert  <eggert@twinsun.com>
15472         * doc/autoconf.texi (Cache Checkpointing): Use AC_MSG_ERROR in
15473         example, rather than (exit 1); exit (which isn't portable).
15475 2001-07-18  Akim Demaille  <akim@epita.fr>
15477         Version 2.52.
15479 2001-07-18  Akim Demaille  <akim@epita.fr>
15481         The C-Fortran 77 hooks are available only once AC_F77_DUMMY_MAIN
15482         was run, while they are needed also when it is expanded.
15483         Reported by Nicolas Joly.
15485         * aclang.m4 (AC_F77_DUMMY_MAIN): Define _AC_LANG_PROGRAM_C_F77_HOOKS.
15486         (AC_LANG_PROGRAM(C)): Use it instead of depending upon
15487         AC_F77_DUMMY_MAIN being expanded.
15489 2001-07-18  Akim Demaille  <akim@epita.fr>
15491         * configure.in: Bump to 2.51a.
15493 2001-07-17  Akim Demaille  <akim@epita.fr>
15495         Version 2.51.
15497 2001-07-17  Akim Demaille  <akim@epita.fr>
15499         * aclang.m4 (AC_F77_DUMMY_MAIN): Let the interface be more
15500         Autoconfy: $1 = action-if-found, $2 = action-if-not-found.
15502 2001-07-17  Akim Demaille  <akim@epita.fr>
15504         The runtime test for AC_FUNC_GETPGRP fails when prototypes are
15505         used.  Well, then use the prototypes when you can, and runtime as
15506         a last resort.
15507         Reported by Artur Frysiak
15509         * acfunctions.m4 (_AC_FUNC_GETPGRP_TEST): New.
15510         (AC_FUNC_GETPGRP): Use it.
15511         First try to compile with 0-ary or 1-ary calls.
15513 2001-07-17  Akim Demaille  <akim@epita.fr>
15515         * actypes.m4 (_AC_CHECK_TYPE_REPLACEMENT_TYPE_P): `foo_t' is a
15516         replacement type.
15517         From Paul Eggert.
15519 2001-07-17  Akim Demaille  <akim@epita.fr>
15521         * Makefile.maint: Sync. with cppi 1.10.
15523 2001-07-17  Akim Demaille  <akim@epita.fr>
15525         * aclang.m4 (AC_LANG_PROGRAM(C)): Output F77_DUMMY_MAIN only when
15526         AC_F77_DUMMY_MAIN has been run.
15527         From Pavel Roskin and Steven G. Johnson.
15529 2001-07-17  Akim Demaille  <akim@epita.fr>
15531         * configure.in: Rename as...
15532         * configure.ac: this.
15534 2001-07-17  Akim Demaille  <akim@epita.fr>
15536         * Makefile.am (INSTALL.txt): Don't use $@ and $< in non suffix
15537         rules.
15538         From Marc Espie.
15539         * Makefile.maint (release-archive-dir): Rename as...
15540         (release_archive_dir): this, so that it can be specialized in
15541         Makefile.
15543 2001-07-14  Akim Demaille  <akim@epita.fr>
15545         * configure.in: Bump to 2.50d.
15547 2001-07-14  Akim Demaille  <akim@epita.fr>
15549         Version 2.50c.
15550         * Makefile.maint (alpha): Typo.
15552 2001-07-14  Akim Demaille  <akim@epita.fr>
15554         * doc/autoconf.texi (Limitations of Make): Macro names and underscore.
15556 2001-07-14  Akim Demaille  <akim@epita.fr>
15558         * config/config.guess, config/config.sub, config/texinfo.tex
15559         * doc/standards.texi, doc/make-stds.texi: Update.
15561 2001-07-14  Akim Demaille  <akim@epita.fr>
15563         * Makefile.maint (cvs-check, cvs-tag-check, cvs-diff-check): New.
15565 2001-07-14  Akim Demaille  <akim@epita.fr>
15567         * Makefile.maint (maintainer-check): Rename as...
15568         (maintainer-distcheck): this.
15569         (changelog-check, static-check): New.
15570         Use them.
15572 2001-07-14  Kevin Ryde  <user42@zip.com.au>
15574         * doc/autoconf.texi (C++ Compilers Characteristics): Last resort
15575         for CXX is g++, not gcc.
15577 2001-07-14  Akim Demaille  <akim@epita.fr>
15579         * doc/autoconf.texi (Files): New subsection.
15581 2001-07-14  Akim Demaille  <akim@epita.fr>
15583         * doc/autoconf.texi (C Compiler, Fortran 77 Compiler): Be subsections
15584         of...
15585         (Generic Compiler Characteristics): this.
15586         (C++ Compiler): New subsection.
15588 2001-07-14  Akim Demaille  <akim@epita.fr>
15590         * autoscan.in: Use IO::File.
15591         Adjust all the routines to use it.
15592         ($log): New file (autoscan.log).
15593         (output): Dump detailed logs into $log, and a shortened version to
15594         stderr.
15595         (&scan_makefile): Refine the regexp catching tokens in the code.
15596         * doc/autoconf.texi (autoscan Invocation): Document `autoscan.log'
15597         and the `configure.ac' checking feature.
15599 2001-07-12  Akim Demaille  <akim@epita.fr>
15601         For some AWK, such as on HPUX 11, `xfoo' does not match `foo|^bar'.
15602         Reported by Michael Elizabeth Chastain.
15604         * autoconf.in: Refuse such AWK.
15605         * configure.in: Likewise.
15606         * Makefile.am (acversion.m4): Do not use move-if-change this file
15607         has dependencies.
15608         * doc/autoconf.texi (Fortran 77 Compiler): Some typos.
15610 2001-07-10  Jens Petersen  <petersen@redhat.com>
15612         * autoscan.in (&scan_makefile): Improve programs regexp to parse
15613         things like "g++", "file.c" and "some-conf" as tokens.
15614         (&scan_file): Match C++ files extensions.
15615         If the filename extension is C++ then ask for c++.
15617 2001-07-05  Steven G. Johnson  <stevenj@alum.mit.edu>
15619         * aclang.m4 (AC_F77_DUMMY_MAIN): Use AC_TRY_LINK, not
15620         AC_TRY_LINK_FUNC, to check whether defining a dummy
15621         main-like routine is needed for linking with F77 libs.
15623 2001-07-05  Pavel Roskin  <proski@gnu.org>
15625         * aclocal.m4 (_AC_PROG_CXX_EXIT_DECLARATION): Remove conftest*
15626         after using break.
15627         (_AC_PROG_F77_V_OUTPUT): Remove conftest*, not conftest.* after
15628         linking.
15630 2001-07-05  Akim Demaille  <akim@epita.fr>
15632         * Makefile.am (move_if_change): New.  Use it instead of `mv'.
15633         (acversion.m4): Name it `$(srcdir)/acversion.m4' to ease broken
15634         Makes' lives.
15635         Reported by Nicolas Joly.
15637 2001-07-04  Akim Demaille  <akim@epita.fr>
15639         * acgeneral.m4 (_AC_RUN_IFELSE): Remove conftest.o when cleaning
15640         up.
15641         * acfunctions.m4 (AC_FUNC_WAIT3): Use `break' to silent some
15642         warnings from compilers.
15643         * aclang.m4 (_AC_LANG_COMPILER_GNU): Log the version information
15644         for all the compilers, not only GNU.  Hence move from here...
15645         (AC_PROG_CC, AC_PROG_CXX, AC_PROG_F77): to here.
15647 2001-07-04  Akim Demaille  <akim@epita.fr>
15649         * acfunctions.m4 (AC_FUNC_STRTOD, AC_FUNC_STRERROR_R)
15650         (AC_FUNC_STRCOLL, AC_FUNC_WAIT3): Use AC_RUN_IFELSE and
15651         AC_COMPILE_IFELSE.
15653 2001-07-04  Akim Demaille  <akim@epita.fr>
15655         * acgeneral.m4 (_AC_INCLUDES_DEFAULT_REQUIREMENTS): Actually apply
15656         the ``strings.h'' change claimed below.
15658 2001-07-04  Akim Demaille  <akim@epita.fr>
15660         * aclang.m4 (_AC_LANG_COMPILER_GNU): s/-dumpspecs/-v/.
15662 2001-07-04  Akim Demaille  <akim@epita.fr>
15664         * acgeneral.m4 (_AC_INCLUDES_DEFAULT_REQUIREMENTS): Include
15665         strings.h if usable with string.h.
15666         Suggested by Paul Eggert.
15668 2001-07-04  Akim Demaille  <akim@epita.fr>
15670         * autoscan.in (&scan_file): Skip FILE if there is FILE.in.
15671         From Jens Petersen.
15673 2001-07-03  Akim Demaille  <akim@epita.fr>
15675         * acgeneral.m4 (_AC_OUTPUT_CONFIG_STATUS): Specify CONFIG_FILES
15676         etc. in the log.
15678 2001-07-03  Akim Demaille  <akim@epita.fr>
15680         * acheaders.m4 (AC_CHECK_HEADER): When INCLUDES are set, use the
15681         compiler, not the preprocessor.
15682         * acgeneral.m4 (_AC_INCLUDES_DEFAULT_REQUIREMENTS): No longer use
15683         dedicated code to check for inttypes.h, as AC_CHECK_HEADERS does
15684         the right thing.
15685         * Makefile.am (.m4.m4f): Emphasize M4 error messages and fail
15686         earlier if there are.
15688 2001-07-03  Akim Demaille  <akim@epita.fr>
15690         * autoscan.in ($initfile): Remove.
15691         (&find_file): Rename as...
15692         (&scan_file): this.
15693         Immediately scan the current file, instead of gathering them, and
15694         later having them handled by &scan_files.
15695         (&scan_files): Merely invoke Find::File.
15696         Adjust.
15698 2001-07-02  Akim Demaille  <akim@epita.fr>
15700         * autoscan.in: Formatting changes, matching the invocation order.
15701         (File::Find): Use it instead of Perl 4's `find.pl'.
15702         (&wanted): Rename as...
15703         (&find_file): this.
15705 2001-07-01  Pavel Roskin  <proski@gnu.org>
15707         * aclang.m4 (AC_F77_DUMMY_MAIN): Remove conftest* after using
15708         break in the argument to AC_TRY_LINK_FUNC.
15709         (AC_F77_MAIN): Remove conftest* after using break in the
15710         argument to AC_TRY_LINK.
15712 2001-07-01  Steven G. Johnson  <stevenj@alum.mit.edu>
15714         Add alternate 'main' routine detection for linking C/C++ with Fortran,
15715         fixing link failures for e.g. AC_F77_WRAPPERS on NetBSD.
15717         * aclang.m4 (AC_F77_DUMMY_MAIN): New macro to detect whether a
15718         dummy alternate main is required even if the user provides her own
15719         'main'.
15720         (AC_F77_MAIN): New macro to detect whether it is possible to
15721         provide an alternate 'main' function name, using the 'main' from
15722         the Fortran libraries.
15723         (AC_LANG_PROGRAM(C)): Use F77_DUMMY_MAIN, if it is defined, so that
15724         cross-language link tests can be performed successfully.
15725         (_AC_F77_NAME_MANGLING): Require AC_F77_DUMMY_MAIN.  Also put $FLIBS
15726         after $LIBS, for consistency; this should be the general rule since
15727         the user may want to link to Fortran libraries that require $FLIBS.
15728         * doc/autoconf.texi: Document AC_F77_DUMMY_MAIN and AC_F77_MAIN.
15730 2001-06-29  Pavel Roskin  <proski@gnu.org>
15732         * atgeneral.m4 (AT_CHECK): Add a newline to the end of
15733         at-stdout and at-stderr instead of removing the newline
15734         from the echo output, which is not guaranteed to work.
15736 2001-06-28  Jens Petersen  <petersen@redhat.com>
15738         * aclang.m4 (_AC_PROG_CXX_EXIT_DECLARATION): Only add declaration to
15739         confdefs.h when non-zero.
15741 2001-06-28  Akim Demaille  <akim@epita.fr>
15743         * configure.in: Bump to 2.50c.
15745 2001-06-26  Akim Demaille  <akim@epita.fr>
15747         Version 2.50b.
15749 2001-06-26  Akim Demaille  <akim@epita.fr>
15751         Version 2.50a.
15753 2001-06-25  Pavel Roskin  <proski@gnu.org>
15755         * tests/atspecific.m4 (AT_CHECK_MACRO): Accept one more
15756         argument, AUTOCONF-FLAGS.
15757         * tests/mktests.sh (update_exclude_list): Add
15758         AC_SYS_RESTARTABLE_SYSCALLS and AC_FUNC_WAIT3.
15759         * tests/semantics.at: Test AC_SYS_RESTARTABLE_SYSCALLS and
15760         AC_FUNC_WAIT3 with "-W no-obsolete".
15762 2001-06-25  Akim Demaille  <akim@epita.fr>
15764         * tests/foreign.at (libtool): Fix the `libtoolize --version' decoding.
15766 2001-06-25  Akim Demaille  <akim@epita.fr>
15768         * autoscan.in (%macro): Now maps from word to list of macros.
15769         (&init_tables): Die when a word which is already handled by
15770         explicit macros is mapped to the default macro.
15771         (&print_unique): Remove, inlined in...
15772         (&output_kind): here.
15773         (File::Basename): Use it.
15774         (&output): Sort the CONFIG_FILES.
15775         * acheaders: Normalize.
15776         * acfunctions: Likewise.
15778 2001-06-25  Akim Demaille  <akim@epita.fr>
15780         * aclang.m4 (_AC_LANG_COMPILER_GNU): If GNU, dump the compiler
15781         characteristics in the logs.
15782         Suggested by Mo DeJong.
15784 2001-06-24  Akim Demaille  <akim@epita.fr>
15786         * acfunctions.m4 (AM_FUNC_ERROR_AT_LINE, AM_FUNC_FNMATCH)
15787         (AM_FUNC_MKTIME, AM_FUNC_OBSTACK, AM_FUNC_STRTOD): Reactivated.
15788         * doc/autoconf.texi (Autoconf 2.13): New section.
15790 2001-06-24  Akim Demaille  <akim@epita.fr>
15792         * autoconf.in (Task traces): Separate the error messages from the
15793         traces to improve robustness.
15795 2001-06-23  Akim Demaille  <akim@epita.fr>
15797         * tests/torture.at (AC_ARG_VAR): Make it a single test instead of
15798         three as failures are unlikely, and speed matters.
15800 2001-06-23  Akim Demaille  <akim@epita.fr>
15802         * doc/autoconf.texi (Redefined M4 Macros): New.
15804 2001-06-23  Akim Demaille  <akim@epita.fr>
15806         * acgeneral.m4 (_AC_INCLUDES_DEFAULT_REQUIREMENTS): Consider
15807         inttypes.h is missing if it conflicts with sys/types.h, as on IRIX
15808         5.3.
15810 2001-06-23  Paolo Bonzini  <bonzini@gnu.org>
15812         * acgeneral.m4 (_AC_OUTPUT_CONFIG_STATUS): Defer parsing of
15813         config.status targets to after the evaluation of the INIT-CMDS.
15814         Double quote config.status targets (used to be single quoted).
15816 2001-06-23  Akim Demaille  <akim@epita.fr>
15818         * tests/torture.at (CONFIG_FILES, HEADERS, LINKS and COMMANDS):
15819         Check the content of the created file.
15820         Check the ./config.status command line invocation.
15822 2001-06-23  Akim Demaille  <akim@epita.fr>
15824         * tests/foreign.at (Libtool): Reject prehistoric versions.
15826 2001-06-23  Akim Demaille  <akim@epita.fr>
15828         * aclang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Try to be robust to
15829         preexisting files matching a.*.
15831 2001-06-23  Akim Demaille  <akim@epita.fr>
15833         * acgeneral.m4 (_AC_ARG_VAR_VALIDATE): Output error messages on
15834         stderr.
15835         * doc/autoconf.texi (AC_ARG_VAR): Update.
15837 2001-06-21  Akim Demaille  <akim@epita.fr>
15839         * acgeneral.m4 (_AC_ARG_VAR_VALIDATE): Die instead of warning when
15840         precious variables have changed.
15841         * tests/torture.at (AC_ARG_VAR): Adjust.
15843 2001-06-21  Akim Demaille  <akim@epita.fr>
15845         ./configure --program-suffix=foo produces `transform=s,$$,foo,;',
15846         but some sed choke on multiple `;', and other tools (e.g.,
15847         Automake), include the separator themselves.
15849         * acgeneral.m4 (AC_ARG_VAR): Be sure not to leave extra `;'.
15851 2001-06-19  Tim Van Holder  <tim.van.holder@pandora.be>
15853         * doc/autoconf.texi (Functions Portability): Rename as...
15854         (Function Portability): this.
15855         (Function Portability): Document potential problems with unlink().
15857 2001-06-19  Paul Eggert  <eggert@twinsun.com>
15859         * NEWS, doc/autoconf.texi: Document quadrigraphs.
15861 2001-06-18  Akim Demaille  <akim@epita.fr>
15863         * acfunctions.m4 (AC_FUNC_FORK): Fix typos.
15865 2001-06-18  Ruediger Kuhlmann  <info@ruediger-kuhlmann.de>
15867         * acfunctions.m4: (AC_FUNC_VFORK) rename as...
15868         (_AC_FUNC_VFORK): this.
15869         Remove AC_DEFINEs and don't guess cross-compilation values.
15870         (_AC_FUNC_FORK): New, check whether fork() isn't just a stub.
15871         (AC_FUNC_FORK): New, use _AC_FUNC_VFORK and _AC_FUNC_FORK to
15872         define HAVE_WORKING_FORK, HAVE_WORKING_VFORK; and vfork to fork if
15873         vfork doesn't work.
15874         Guess values if cross-compiling, but warn.
15875         * acfunctions: Add AC_FUNC_FORK.
15876         * doc/autoconf.texi: Document AC_FUNC_FORK. Give example to define
15877         and vfork appropriately.
15879 2001-06-18  Akim Demaille  <akim@epita.fr>
15881         * doc/autoconf.texi (Functions Portability): New section.
15883 2001-06-18  Akim Demaille  <akim@epita.fr>
15885         * autoconf.in (M4): Pass --nesting-limit=1024, unless already set
15886         in $M4.
15887         Suggested by Andreas Schwab.
15889 2001-06-18  Akim Demaille  <akim@epita.fr>
15891         * acfunctions.m4 (AC_FUNC_CHOWN, AC_FUNC_CLOSEDIR_VOID)
15892         (AC_FUNC_GETPGRP, AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK)
15893         (AC_FUNC_MMAP, AC_FUNC_SELECT_ARGTYPES, _AC_FUNC_STAT)
15894         (AC_FUNC_UTIME_NULL): Use AC_INCLUDES_DEFAULT.
15895         Don't use AC_TRY_RUN, which double quotes, prefer AC_RUN_IFELSE,
15896         and either AC_LANG_SOURCE or AC_LANG_PROGRAM.
15897         (AC_FUNC_CLOSEDIR_VOID): Protect C++ from `int closedir ();' (or
15898         the converse).
15900 2001-06-18  Akim Demaille  <akim@epita.fr>
15902         * doc/autoconf.texi (ms): New index.
15903         (Macro Index): Rename as...
15904         (Autoconf Macro Index): this.
15905         (M4 Macro Index): New appendix.
15906         (Programming in M4): New chapter.
15907         Define M4sugar, M4sh, m4_pattern_forbid, and m4_pattern_allow.
15908         (Quoting): Rename as...
15909         (M$ Quotation): this.
15910         Be part of `Programming in M4).
15912 2001-06-18  Nicolas Joly  <njoly@pasteur.fr>
15914         * tests/torture.at (AC_ARG_VAR): Set variables and export them
15915         in separate statements for compatibility with Tru64 v5.1.
15917 2001-06-17  Akim Demaille  <akim@epita.fr>
15919         * acgeneral.m4 (_AC_ARG_VAR_VALIDATE): Be sure to cache the
15920         current values of the precious variables, not the previously
15921         cached values.
15922         Pass precious variables which are set to config.status.
15923         * doc/autoconf.texi (Setting Output Variables): Document AC_ARG_VAR.
15924         * tests/torture.at (AC_ARG_VAR): New.
15926 2001-06-15  Paul Eggert  <eggert@twinsun.com>
15928         * doc/autoconf.texi: Move AC_FUNC_WAIT3 and
15929         AC_SYS_RESTARTABLE_SYSCALLS to the obsolete section,
15930         and explain why and how to replace them.
15931         * acfunctions.m4 (AC_FUNC_WAIT3): Warn as obsolete.
15932         * acspecific.m4 (AC_SYS_RESTARTABLE_SYSCALLS): Likewise.
15934 2001-06-15  Akim Demaille  <akim@epita.fr>
15936         `build_alias', `host_alias', and `target_alias' are not AC_SUBST'd.
15937         Reported by Bruno Haible.
15939         * acgeneral.m4 (AC_ARG_VAR): Move the AC_SUBST, from here...
15940          (_AC_ARG_VAR_PRECIOUS): to here.
15942 2001-06-15  Pavel Roskin  <proski@gnu.org>
15944         * acheaders.m4 (_AC_CHECK_HEADER_DIRENT): Instead of defining
15945         an unused pointer use cast to this type and `if' statement to
15946         avoid warnings from the compiler.
15947         (AC_HEADER_TIME): Likewise.
15948         * actypes.m4 (AC_CHECK_MEMBER): s/foo/ac_aggr/. Use the member
15949         in `if' statement to avoid warnings from the compiler. Declare
15950         ac_aggr static to avoid the need to initialize it.
15952 2001-06-14  Akim Demaille  <akim@epita.fr>
15954         * doc/autoconf.texi (Portable Shell): Move to follow `Writing
15955         Macros'.
15957 2001-06-13  Akim Demaille  <akim@epita.fr>
15959         * m4/missing.m4, config/missing: Updated to Automake 1.4g's.
15960         Suggested by Alexander Mai.
15962 2001-06-13  Akim Demaille  <akim@epita.fr>
15964         * acgeneral.m4 (_AC_INCLUDES_DEFAULT_REQUIREMENTS): Guard
15965         sys/types.h and sys/stat.h, and check for them.
15967 2001-06-13  Akim Demaille  <akim@epita.fr>
15969         * acheaders.m4 (AC_CHECK_HEADER, AC_CHECK_HEADERS): Support $4 =
15970         INCLUDES.
15972 2001-06-12  Maciej W. Rozycki  <macro@ds2.pg.gda.pl>
15974         * acspecific.m4 (AC_PATH_XTRA): Check if linking against libX11
15975         succeeds and only try adding libdnet upon a failure.
15977 2001-06-12  Akim Demaille  <akim@epita.fr>
15979         * autoscan.in (&output_kind): Output the comment only if it exists.
15980         (%kind_comment): Add entry for `programs'.
15981         (&output_programs): Use &output_kind.
15982         (&output_functions, &output_identifiers, &output_headers)
15983         (&output_programs): Inline, and remove.
15985 2001-06-12  Akim Demaille  <akim@epita.fr>
15987         * autoscan.in (%kind_comment): New.
15988         (output_kind): New.
15989         (output_functions, output_identifiers, output_headers): Use it.
15991 2001-06-12  Akim Demaille  <akim@epita.fr>
15993         * autoscan.in (&print_unique): Take `$kind' and `$word' as
15994         arguments, to factor indirections into `%macro' and `%used'.
15995         (%generic_macro): Fix a typo.
15997 2001-06-12  Akim Demaille  <akim@epita.fr>
15999         * aclibraries: New.
16000         * autoscan.in (@kinds): Add `libraries'.
16001         Use `@kinds' instead of hard coded lists.
16002         (%programs, %headers, %identifiers, %makevars, %libraries, %functions):
16003         Remove, replaced by...
16004         (%used): this.
16006 2001-06-12  Akim Demaille  <akim@epita.fr>
16008         * autoscan.in (%functions_macros %headers_macros)
16009         (%identifiers_macros %programs_macros %makevars_macros): Remove,
16010         replaced by...
16011         (%macro): New.
16013 2001-06-11  Raja R Harinath  <harinath@cs.umn.edu>
16015         * aclang.m4 (AC_NO_EXECUTABLES): Override
16016         _AC_COMPILER_EXEEXT_WORKS, not _AC_LANG_COMPILER_WORKS.
16018 2001-06-11  Akim Demaille  <akim@epita.fr>
16020         * aclang.m4 (AC_NO_EXECUTABLES): Define the macros with their
16021         trailing new line.
16022         Reported by Andreas Schwab.
16024 2001-06-11  Akim Demaille  <akim@epita.fr>
16026         * Makefile.am, Makefile.maint: Typos.
16028 2001-06-09  Akim Demaille  <akim@epita.fr>
16030         * doc/autoconf.texi (Here-Documents): New section, gathering
16031         documentation about here-documents.
16032         Use `href', not `uref', and other changes.
16034 2001-06-09  Akim Demaille  <akim@epita.fr>
16036         * doc/autoconf.texi (Portable Shell Programming): Promoted as a
16037         chapter.
16039 2001-06-09  Akim Demaille  <akim@epita.fr>
16041         * doc/autoconf.texi (Limitations of Builtins): Complete the
16042         description of the here-docs penalties with Alexandre Oliva's
16043         explanations.
16045 2001-06-01  Paul Eggert  <eggert@twinsun.com>
16047         * doc/autoconf.texi: Talk about here documents and speedups.
16048         Do not use "echo" on arbitrary strings.
16049         Spell "here-documents" consistently with the standard.
16051 2001-06-09  Akim Demaille  <akim@epita.fr>
16053         * doc/autoconf.texi (Concept Index): Introduce it.
16054         Regenerate the menus.
16056 2001-06-09  Akim Demaille  <akim@epita.fr>
16058         * Makefile.maint, GNUmakefile: New, from Jim Meyering.
16059         * config/prev-version.txt: New.
16060         * config/move-if-change: New, for GNU libc.
16062 2001-06-06  Pavel Roskin  <proski@gnu.org>
16064         * tests/atgeneral.m4 (AT_INIT): Remove "/bin/sh" after $SHELL.
16066 2001-06-06  Akim Demaille  <akim@epita.fr>
16068         * acgeneral.m4 (AC_CHECK_LIB): Fix the cache var name to work
16069         properly when $1 is not a literal.
16070         Fixes PR Autoconf/187, reported by Bram Moolenaar.
16072 2001-06-06  Akim Demaille  <akim@epita.fr>
16074         Invoking AC_COPYRIGHT before AC_INIT fails.
16076         * Makefile.am (.m4.m4f): Pass --fatal-warnings to m4.
16077         * acgeneral.m4 (_m4_divert(VERSION_FSF))
16078         (_m4_divert(VERSION_USER)): New.
16079         (AC_COPYRIGHT): $2 is the diversion to use.
16080         (_AC_INIT_COPYRIGHT): Use the FSF diversion.
16081         (AC_INIT): Remove dead comments as now it's commutative.
16083 2001-06-06  Akim Demaille  <akim@epita.fr>
16085         * tests/semantics.at (AC_CHECK_LIB): Strengthen to reflect
16086         PR autoconf/187.
16088 2001-06-05  Akim Demaille  <akim@epita.fr>
16090         * acgeneral.m4 (_AC_INIT_PARSE_ARGS): `prefix' and `exec_prefix'
16091         can be empty.
16092         `*dir' variables cannot be NONE.
16093         Reported by Mark Kettenis.
16095 2001-06-05  Paul Eggert  <eggert@twinsun.com>
16097         * doc/autoconf.texi: Fix references to Solaris and SunOS versions.
16099 2001-06-04  Akim Demaille  <akim@epita.fr>
16101         * acgeneral.m4 (AC_VAR_SET, AC_VAR_GET, AC_VAR_TEST_SET)
16102         (AC_VAR_SET_IFELSE, AC_VAR_PUSHDEF and AC_VAR_POPDEF, AC_TR_CPP)
16103         (AC_TR_SH): Move as...
16104         * m4sh.m4 (AS_VAR_SET, AS_VAR_GET, AS_VAR_TEST_SET)
16105         (AS_VAR_SET_IF, AC_VAR_PUSHDEF, AS_VAR_POPDEF, AS_TR_CPP)
16106         (AS_TR_SH): these.
16107         (_AS_TR_PREPARE, _AS_CR_PREPARE, _AS_TR_CPP_PREPARE)
16108         (_AS_TR_SH_PREPARE): New.
16109         (AS_SHELL_SANITIZE): Invoke _AS_TR_PREPARE.
16110         * tests/aclocal.m4 (AC_STATE_SAVE): `as_' vars can be modified.
16112 2001-06-02  Akim Demaille  <akim@epita.fr>
16114         * Makefile.am (.m4.m4f): Pass the options first.
16115         Fixes PR autoconf/182.
16117 2001-06-02  Nathan Sidwell  <nathan@codesourcery.com>
16119         GNU getopt, when POSIXLY_CORRECT does not permute options and
16120         arguments.  So pass the options first.
16121         Fixes PR autoconf/184.
16123         * autoconf.sh (m4_prefiles, m4f_prefiles): New variables.
16124         (run_m4): Remove files.
16125         (run_m4f): Remove.
16126         Update remainder of script to use them.
16127         (for warning in): Do not use a literal comma as it will not be
16128         split by IFS.
16130 2001-06-02  Christian Marquardt  <marq@gfz-potsdam.de>
16132         * aclang.m4 (AC_PROG_F77): Add Fujitsu's "frt" to the list of
16133         Fortran compilers to check.
16134         (_AC_PROG_F77_V): Add '-###' as a possible option to print
16135         information on library and object files.
16136         (AC_PROG_CXX): Add Fujitsu's "FCC" to the list of C++ compilers
16137         to check.
16139 2001-06-02  Akim Demaille  <akim@epita.fr>
16141         * autom4te.in (Request::@request): Declare with `vars', not `my',
16142         as it prevents updates via `do FILENAME'.
16144 2001-06-02  Akim Demaille  <akim@epita.fr>
16146         * configure.in (standards_texi): Remove, dead code.
16148 2001-06-02  Akim Demaille  <akim@epita.fr>
16150         * autom4te.in: New.
16152 2001-06-02  Pavel Roskin  <proski@gnu.org>
16154         * acgeneral.m4 (_AC_INIT_PREPARE): Don't rely on $? in the traps
16155         for signals other than 0 - exit with code 1.
16156         * m4sh.m4 (AS_TMPDIR): Likewise.
16157         * autoconf.in: Likewise. Also don't rely on exit == exit $?.
16158         * autoheader.in: Likewise.
16159         * autoreconf.in: Likewise.
16160         * tests/torture.at (Signal handling): New test for the above.
16162 2001-06-01  Akim Demaille  <akim@epita.fr>
16164         * m4sugar.m4 (m4_defn, m4_undefine, m4_popdef): Clarify the error
16165         message.
16167 2001-05-31  Akim Demaille  <akim@epita.fr>
16169         * acfunctions, acheaders, acidentifiers, acmakevars, acprograms:
16170         Add copyright and comments.
16171         * acheaders: Add stdint.h.
16172         Suggested by Paul Eggert.
16174 2001-05-31  Akim Demaille  <akim@epita.fr>
16176         * atgeneral.m4 (AT_INIT): Use $SHELL.
16177         * atspecific.m4 (AT_CHECK_DEFINES): Skip HAVE_STDINT_H.
16179 2001-05-31  Akim Demaille  <akim@epita.fr>
16181         * acgeneral.m4 (_AC_INCLUDES_DEFAULT_REQUIREMENTS): Include
16182         stdint.h.
16183         From Paul Eggert and Lars Hecking.
16185 2001-05-31  Akim Demaille  <akim@epita.fr>
16187         * tests/base.at: Adjust line numbers in error messages.
16189 2001-05-31  Akim Demaille  <akim@epita.fr>
16191         * tests/base.at, tests/m4sh.at: When using AC_PLAIN_SCRIPT be sure
16192         to emit the bangshe line.
16193         Reported by David Carter.
16195 2001-05-30  Steven G. Johnson  <stevenj@alum.mit.edu>
16197         * aclang.m4 (AC_PROG_F77): Add Compaq's "fort" to the list of
16198         Fortran (95) compilers to check.
16200 2001-05-29  Alexandre Duret-Lutz  <duret_g@epita.fr>
16202         * doc/autoconf.texi (Introduction, Pointers): Update the Autoconf
16203         Macro Archive URL.
16205 2001-05-23  Pavel Roskin  <proski@gnu.org>
16207         * aclang.m4 (AC_PROG_CPP): Use `break' instead of `break 2' since
16208         _AC_PROG_PREPROC_WORKS_IFELSE expands arguments outside the loop.
16209         (AC_PROG_CXXCPP): Likewise.
16211 2001-05-22  Akim Demaille  <akim@epita.fr>
16213         * config: New directory.
16214         * configure.in: AC_CONFIG_AUX_DIR it.
16215         * tests/atspecific.m4 (AT_CONFIGURE_AC): Adjust.
16217 2001-05-22  Akim Demaille  <akim@epita.fr>
16219         * autoconf.in, autoreconf.in, autoheader.in, autoscan.in, ifnames.in,
16220         * autoupdate.in: Specify the Emacs mode.
16221         * acversion.m4.in: Rename as...
16222         * acversion.m4: this.
16223         * tests/Makefile.am (CLEANFILES): More garbage.
16225 2001-05-22  Akim Demaille  <akim@epita.fr>
16227         * autoconf.sh, autoreconf.sh, autoheader.sh, autoscan.pl, ifnames.sh:
16228         Rename as...
16229         * autoconf.in, autoreconf.in, autoheader.in, autoscan.in, ifnames.in:
16230         these.
16232 2001-05-21  Akim Demaille  <akim@epita.fr>
16234         * configure.in: Bump to 2.50a.
16237         -----
16239         Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007 Free
16240         Software Foundation, Inc.
16242         Copying and distribution of this file, with or without
16243         modification, are permitted provided the copyright notice and this
16244         notice are preserved.