Speed up execution of subset of testsuite.
[autoconf/ericb.git] / ChangeLog
blob2fc0a0bfb9214379ff53c62e7447d0d1c69ad68f
1 2007-10-12  Eric Blake  <ebb9@byu.net>
2         and Paolo Bonzini  <bonzini@gnu.org>
4         Speed up execution of subset of testsuite.
5         * lib/autotest/general.m4 (TEST_FUNCTIONS): New diversion.
6         (AT_INIT) <at_func_test>: New shell function.
7         (AT_INIT) <at_myself>: New variable, set to absolute $as_myself.
8         (AT_INIT) <at_test_source> New variable, names file that holds
9         current test function definition.
10         (AT_SETUP): Start the shell function at_func_test_#, into the
11         TEST_FUNCTIONS diversion.
12         (AT_CLEANUP): End the shell function.  Simplify the TESTS
13         diversion to invoke the function.
15 2007-10-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
17         * .gitignore: Ignore tags and TAGS files.
19 2007-10-11  Eric Blake  <ebb9@byu.net>
21         Config header generation followup.
22         * lib/autoconf/general.m4 (_AC_DEFINE_Q): Check for raw newlines,
23         which won't work with the preprocessor nor with the awk
24         implementation.
25         * tests/torture.at (Define a newline): Test raw newline detection,
26         removing the XFAIL.
27         * doc/autoconf.texi (Defining Symbols): Document recent change to
28         allow backslash-newline.
29         * THANKS: Update.
31 2007-10-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
33         * lib/autotest/general.m4: Put function braces in separate line.
35 2007-10-10  Eric Blake  <ebb9@byu.net>
37         Avoid some overhead from m4_defn and m4_popdef.
38         * lib/m4sugar/m4sugar.m4 (m4_defn, m4_popdef, m4_undefine): Only
39         pass on first argument, since we are documented that way.
40         (m4_for, m4_append_uniq, m4_text_wrap): Optimize out defined-ness
41         check where it is safe to do so.
42         (m4_append): Likewise, and quote the separator.
43         (m4_text_box): Likewise, and avoid regex, also be robust to
44         expansion and quadrigraphs.
46         Another AC_DEFINE speedup.
47         * lib/autoconf/general.m4 (AC_DEFINE_TRACE): Move parameter
48         elision...
49         (_AC_DEFINE_Q): ...here, and only do it once.
50         * lib/autoconf/functions.m4 (AC_CHECK_FUNCS): Avoid overquoting.
51         * lib/m4sugar/m4sh.m4 (AS_LITERAL_IF): Fix m4_defn overquoting
52         introduced 2007-10-05.
54         Whitespace cleanup.
55         * lib/autoconf/general.m4: Use consistent indentation.
56         * configure: Regenerate.
58         * NEWS: Announce recent round of speed optimizations.
60 2007-10-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
62         * NEWS: Announce shell function usage in Autotest.
64 2007-10-10  Eric Blake  <ebb9@byu.net>
65         and Paul Eggert  <eggert@cs.ucla.edu>
67         Reduce number of forks at startup.
68         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Speed up NLS
69         sanitization.
70         * configure: Regenerate.
72 2007-10-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
73         and Paul Eggert  <eggert@cs.ucla.edu>
75         Use awk for config header generation.
76         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE): Fix comments.
77         (_AC_OUTPUT_HEADERS_PREPARE): New macro.  Rewrite of the config
78         header machinery for use with awk and placement outside the main
79         config.status instantiation loop.  Retain multi-line defines
80         through backslash-newline combinations, do not split the script
81         any more.
82         (_AC_OUTPUT_HEADER): Simplify accordingly, use $AWK.
83         (_AC_OUTPUT_MAIN_LOOP): Call _AC_OUTPUT_HEADERS_PREPARE if
84         needed.
85         (AC_OUTPUT_MAKE_DEFS): Remove backslash-newline combinations
86         from define values.
87         * NEWS: Update.
88         * tests/torture.at (#define header templates): Extend test by
89         several more cases: white space before and after `#', macros
90         with parameters in config.hin and as defines, multi-line macro
91         values.
92         (Torturing config.status): Use a define value twice the length
93         in order to exercise the awk literal string limit.
94         (Substitute and define special characters): Also try special
95         delimiter, to exercise the special-case code.
96         Suggestion by Eric Lemings.
98 2007-10-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
100         * tests/local.at (AT_COPYRIGHT): Bump copyright years.
102 2007-10-09  Eric Blake  <ebb9@byu.net>
104         Improve header of bin/autoconf.
105         * lib/m4sugar/m4sh.m4 (AS_INIT): Add a 'generated from' notice.
106         * lib/autoconf/general.m4 (_AC_INIT_NOTICE): Override new notice
107         from M4sh.
108         * bin/autoconf.as: Put copyright up front in generated file.
110         * bin/autoconf.as (exit_missing_arg): Font-lock tweak.
112 2007-10-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
114         * doc/install.texi (Basic Installation): Document `uninstall'.
115         * INSTALL: Regenerate.
116         Suggestion by Roberto Bagnara.
118 2007-10-08  Paul Eggert  <eggert@cs.ucla.edu>
120         * doc/autoconf.texi (Limitations of Usual Tools): V7 awk had 'index'.
122         Adjust doc. to match latest gnulib.
123         * build-aux/texinfo.tex: Sync from gnulib.
124         * doc/standards.texi: Likewise.
125         * doc/autoconf.texi (Copying This Manual): Rename to "GNU Free
126         Documentation License" and remove the subsection.  This simplifies
127         the manual a bit and is more like what other GNU projects do
128         nowadays.
130 2007-10-08  Eric Blake  <ebb9@byu.net>
132         Use recent changes.
133         * configure: Regenerate.
135         Fix regression in m4_text_wrap from 2007-10-05.
136         * lib/m4sugar/m4sugar.m4 (m4_max, m4_min): New macros.
137         (m4_sign): Sort.
138         (m4_text_wrap): Fix off-by-one error in rewrite from m4_for to
139         m4_format.
140         * lib/autotest/general.m4 (AT_SETUP): Avoid negative width.
141         * tests/autotest.at (Long test title, Longer test title): Test
142         this fix, beyond what AS_HELP_STRING already tests.
144         Avoid m4 warnings on bad m4_format usage.
145         * lib/m4sugar/m4sugar.m4 (m4_text_wrap): Use %*s, in case width
146         evaulates to 0.
147         * lib/autotest/general.m4 (AT_SETUP): Likewise; also ensure that
148         enough arguments are provided.
150 2007-10-06  Paolo Bonzini  <bonzini@gnu.org>
152         * doc/autoconf.texi (Shell portability): Document shell function
153         portability.
155 2007-10-06  Paolo Bonzini  <bonzini@gnu.org>
157         * lib/autotest/general.m4 (AT_INIT): Add at_func_diff_devnull,
158         at_func_check_skip, at_func_check_status, at_func_filter_trace,
159         at_func_log_failure shell functions.  Use test -s to avoid
160         useless diff invocations.
161         (at_func_check_newline): Renamed from at_check_newline.
162         (AT_SETUP): Define AT_captured_files to empty.
163         (AT_DIFF_STDERR(*), AT_DIFF_STDOUT(*)): New, extracted from _AT_CHECK.
164         (_AT_CHECK): Replace m4_case with m4_ifdef/m4_indir.  Use all
165         the shell functions.
167 2007-10-05  Paul Eggert  <eggert@cs.ucla.edu>
169         Don't assume "." is writeable, for commands like "autoconf --version".
170         * lib/m4sugar/m4sh.m4 (_AS_PATH_SEPARATOR_PREPARE): Use a
171         different heuristic instead, one that doesn't rely on creating
172         files.
174         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ARGS): Handle "///"
175         correctly.
177 2007-10-05  Jim Meyering  <meyering@redhat.com>
179         Avoid makeinfo warnings.
180         * doc/autoconf.texi (Redefined M4 Macros): Add a `,' after @xref.
181         (Looping constructs): Add ` ' after @defmac'd name, m4_do.
183 2007-10-05  Eric Blake  <ebb9@byu.net>
185         Resolve Python issue 1676135 regarding configure directory args.
186         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ARGS): Strip trailing
187         slashes from directory arguments.
188         * tests/base.at (configure directories): New test.
189         * doc/autoconf.texi (Installation Directory Variables): Document
190         the change.
191         * NEWS: Likewise.
192         * THANKS: Update.
193         Reported by Björn Lindqvist.
195         Provide better short-circuiting operation.
196         * lib/m4sugar/m4sugar.m4 (m4_cond, m4_newline): New macros.
197         (m4_text_wrap): Use it.  Also avoid useless m4_for.
198         * lib/m4sugar/m4sh.m4 (_AS_QUOTE_IFELSE, AS_LITERAL_IF): Use
199         new macro.
200         (_AS_IDENTIFIER_IF): Likewise, and fix bug when $1 is [,].
201         * lib/autotest/general.m4 (_AT_DECIDE_TRACEABLE): Use new macros
202         to avoid regexps.
203         * doc/autoconf.texi (Redefined M4 Macros): Expand m4_if
204         documentation.  Sort m4_mkstemp, m4_undefine.  Move m4_ifndef...
205         (Conditional constructs): ...here, to new section.  Also document
206         m4_cond, m4_ifval, m4_n, m4_ifvaln, m4_ifset, m4_case, m4_bmatch,
207         m4_bpatsubsts, and m4_default.
208         (Looping constructs): Document m4_shiftn, m4_shift2, m4_shift3,
209         m4_do.
211 2007-10-04  Eric Blake  <ebb9@byu.net>
213         Fix recent testsuite failures.
214         * lib/autotest/general.m4 (AT_INIT, AT_SETUP): Double-quote text
215         that must not be re-expanded after AS_ESCAPE.
216         * lib/m4sugar/m4sh.m4 (_AS_IDENTIFIER_IF): Don't expand $1 when
217         checking if it is an identifier.
219         Whitespace cleanup.
220         * lib/autotest/general.m4 (_AT_CREATE_DEBUGGING_SCRIPT): Avoid
221         leading whitespace, as it caused space-tab in testsuite.
222         (AT_INIT): Avoid trailing newlines in testsuite.
224         One more round of m4_foreach_w speedups.
225         * lib/m4sugar/m4sugar.m4 (m4_flatten): Only use regex if newline
226         is present.
227         (_m4_split): Avoid useless expansions inside definition.  Move
228         argument defaulting...
229         (m4_split): ...here.  Change alternate quote to something less
230         likely to appear in $1.  Also, special case space as regexp...
231         (m4_foreach_w): ...to avoid regexp on single-term list.
232         (m4_default, m4_defn, m4_popdef, m4_undefine, _m4_foreach): Avoid
233         useless expansions inside definition.
234         * tests/m4sugar.at (m4@&t@_split): Add tests.
236 2007-10-04  Paolo Bonzini  <bonzini@gnu.org>
238         * general.m4 (AT_INIT): Add at_check_newline function.
239         (_AT_DECIDE_TRACEABLE): Include at_traceon test, use shell function.
240         (_AT_CHECK): Don't use at_trace_this.
242 2007-10-04  Paolo Bonzini  <bonzini@gnu.org>
244         Fix previous commit.
245         * lib/autotest/general.m4 (AT_LINE): Fix regex.
247 2007-10-04  Eric Blake  <ebb9@byu.net>
249         Speed up building testsuites.
250         * lib/autotest/general.m4 (AT_LINE): Only use regex when file
251         changed since last time.  Use simpler regex.
253 2007-10-03  Eric Blake  <ebb9@byu.net>
255         Optimize checking for identifiers.
256         * lib/m4sugar/m4sh.m4 (AS_IDENTIFIER_IF, _AS_IDENTIFIER_IF): New
257         macros, more efficient than regex on m4_re_word.
258         * lib/autoconf/general.m4 (AC_SUBST, AC_DEFINE_TRACE_LITERAL):
259         Rewrite in terms of new macro.  As a side-effect, AC_DEFINE can
260         now use @&t@.
261         * configure: Regenerate.
263         Remove some XFAILs, and make AT_SETUP output line up.
264         * lib/autotest/general.m4 (AT_SETUP): Only expand description
265         once; thereafter, use its expansion, properly quoted.
266         * tests/autotest.at (AT_CHECK_AT_TITLE): Also check macro
267         expansion with arguments, and check for aligned output.
268         (AT_CHECK_AT_TITLE_CHAR): Remove XFAILs for tests that now pass.
269         Add a test for macros with parameters.
270         * NEWS: Document the semantics change.
271         * tests/base.at: Fix test titles containing commas.
272         * tests/compile.at: Likewise.
273         * tests/tools.at: Likewise.
274         * tests/torture.at: Likewise.
276         Another round of regex avoidance.
277         * lib/m4sugar/m4sugar.m4 (m4_cr_alnum, m4_cr_all)
278         (_m4_define_cr_not, m4_cr_not_letters, m4_cr_not_LETTERS)
279         (m4_cr_not_Letters, m4_cr_not_digits, m4_cr_not_alnum)
280         (m4_cr_not_symbols1, m4_cr_not_symbols2): New macros, implementing
281         character ranges useful in m4_translit.
282         (m4_toupper, m4_tolower): Optimize the constant portion of
283         definition.
284         * lib/m4sugar/m4sh.m4 (AS_LITERAL_IF): Also reject @S|@ because it
285         creates $, and reject [] thanks to AS_TR_SH rewrite.
286         (AS_TR_SH, AS_TR_CPP): Use just translit, not bpatsubst.
287         (AS_ESCAPE): Factor...
288         (_AS_ESCAPE): ...into new macro, with second argument required.
289         Avoid regex in common case.
290         (_AS_QUOTE): Use new macro.
292         Whitespace cleanup.
293         * lib/autoconf/types.m4: Avoid space-tab.
294         * lib/m4sugar/m4sh.m4: Use tab consistently.
296 2007-10-03  Paul Eggert  <eggert@cs.ucla.edu>
298         * lib/m4sugar/m4sugar.m4 (m4_shift2, m4_shift3): New macros.
299         (m4_shiftn): Remove no-longer-needed optimization.  Perhaps we
300         should remove m4_shiftn entirely?
301         (m4_case, b4_bmatch, m4_map_sep, m4_bpatsubsts, m4_join):
302         Prefer m4_shift2 and m4_shift3 to m4_shiftn.
303         * lib/autoconf/lang.m4 (_AC_LANG_DISPATCH): Likewise.
304         * lib/m4sugar/m4sh.m4 (AS_CASE, AS_IF): Likewise.
305         * tests/autotest.at (AT_CHECK_AT_TEST): Likewise.
307 2007-10-03  Eric Blake  <ebb9@byu.net>
309         Comment touchups.
310         * lib/m4sugar/m4sugar.m4: Grammar fixes in comments.
312 2007-10-02  Eric Blake  <ebb9@byu.net>
314         Optimize appending text.
315         * lib/m4sugar/m4sugar.m4 (m4_append_uniq): Use index, not regular
316         expressions.
318         Optimize recursion.
319         * lib/m4sugar/m4sugar.m4 (m4_shiftn): This macro is called in a
320         lot of hot spots; optimize it for 2 and 3 shifts.
322         Optimize AC_PREREQ and other m4sugar numerics.
323         * lib/m4sugar/m4sugar.m4 (m4_sign): Write with m4_eval.
324         (m4_cmp): Compare arbitrary expressions, without overflow.
325         (m4_version_unletter): Also recognize capital letters.
326         (m4_version_compare): Avoid regex when splitting version number
327         string.
329 2007-10-01  Eric Blake  <ebb9@byu.net>
331         Once again, reject IRIX m4.
332         * m4/m4.m4 (AC_PROG_GNU_M4): Use indir builtin to root out non-GNU
333         implementations that ignore --trace.
334         * configure: Regenerate.
335         Reported by Ralf Wildenhues.
337         Fix regression in AC_DEFINE([macro(with_arg)]).
338         * lib/autoconf/general.m4 (AC_DEFINE_TRACE): Don't chop off close
339         quotes with a careless m4_substr.
341 2007-09-30  Eric Blake  <ebb9@byu.net>
343         Allow nameless iteration.
344         * lib/m4sugar/m4sugar.m4 (m4_for, _m4_for): Access variable
345         indirectly.
346         * tests/m4sugar.at (myvar): Test this.
348 2007-09-29  Eric Blake  <ebb9@byu.net>
350         Speed optimization: avoid m4 regex when other algorithms work.
351         * lib/m4sugar/m4sh.m4 (AS_LITERAL_IF): Rewrite without regex.
352         (_AS_QUOTE_IFELSE): Likewise.
353         * lib/m4sugar/m4sugar.m4 (m4_strip): Reduce from 3 to 2 regex.
354         (m4_bpatsubsts): Split...
355         (_m4_bpatsubsts): ...so that recursion can avoid patsubst on empty
356         regex.
357         (_m4_divert()): Define, to avoid m4 warning on `m4_divert'.
358         (m4_qlen): Optimize on short strings, to avoid regex.
359         (m4_sign): Avoid regex, and fix bug with `01' and `-0'.
360         * lib/autoconf/general.m4 (AC_CACHE_VAL): Rewrite without regex.
361         (AC_DEFINE_TRACE): Likewise.
363 2007-09-28  Eric Blake  <ebb9@byu.net>
365         Oops - my earlier 'optimization' caused a regression.
366         * tests/local.at (AT_CHECK_M4): Fix typo.
368 2007-09-27  Eric Blake  <ebb9@byu.net>
369         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
371         Catch even more common AC_CACHE_VAL mistakes.
372         * lib/autoconf/general.m4 (AC_CACHE_VAL): Warn if cache variable
373         lacks '_cv_', or if AC_SUBST appears in body.
374         * tests/base.at (AC_CACHE_CHECK): Test this change.
376 2007-09-27  Stepan Kasal  <kasal@ucw.cz>
377         and Eric Blake  <ebb9@byu.net>
379         Autotest no longer caters to Ultrix redirection limitation.
380         * doc/autoconf.texi (Writing testsuite.at): Remove the
381         limitation that the first parameter of AT_CHECK cannot
382         contain redirection.
383         (File Descriptors): Mention that Ultrix limitation is no longer a
384         show-stopper in modern code.
385         * tests/local.at (AT_CHECK_M4): Fix for cases when the fourth
386         parameter is `stderr' or `experr'.  Optimize if it was `ignore'.
387         * lib/autotest/general.m4 (AT_CHECK): Update comment.
389 2007-09-27  Eric Blake  <ebb9@byu.net>
391         Squelch changeword in m4sugar.
392         * lib/m4sugar/m4sugar.m4 (changeword): Disable this experimental
393         feature of m4 1.4.x.
395         Configure whitespace touchups.
396         * lib/autoconf/general.m4 (_AC_INIT_HELP): Fix alignment of
397         installation directories, and avoid TAB, in configure --help
398         output.
399         * configure.ac: Avoid extra trailing newline.
400         * lib/m4sugar/m4sh.m4 (_AS_DETECT_BETTER_SHELL): Avoid space-tab.
401         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Avoid TAB in
402         config.status --help output.
403         * configure: Regenerate.
405         Fix underquotation in AS_HELP_STRING.
406         * lib/m4sugar/m4sh.m4 (AS_HELP_STRING): Don't underquote lhs
407         argument.
408         * lib/m4sugar/m4sugar.m4 (m4_text_wrap): Don't underquote
409         first-prefix argument.
410         * tests/m4sh.at (AS@&t@_HELP_STRING): Test this fix.
411         * NEWS: Document AS_HELP_STRING fix.
413         Autotest formatting touchups.
414         * lib/autotest/general.m4 (HELP_TUNING): Avoid TAB in terminal
415         output.
416         (PATH): Simplify computation of new PATH.
418 2007-09-26  Eric Blake  <ebb9@byu.net>
420         Fix testsuite breakage in last patch.
421         * tests/autotest.at (AT_CHECK_AT_TITLE): Properly quote the
422         font-lock fix.
423         * tests/torture.at (@%:@define header templates): Rename, so that
424         output lines up correctly.
426         More font-lock happiness.
427         * tests/autotest.at (AT_CHECK_AT_TITLE_CHAR): Clean up font
428         confusion.
430 2007-09-25  Eric Blake  <ebb9@byu.net>
432         Typo fixes.
433         * lib/autoconf/general.m4 (AC_SUBST): Fix typo in comment.
434         * lib/m4sugar/m4sh.m4 (AS_VAR_PUSHDEF): Likewise.
436         Improve documentation of M4 parameter expansion.
437         * doc/autoconf.texi (Quoting and Parameters): New section.
438         (Quotation and Nested Macros): Improve wording.
440         Improve C99 detection.
441         * lib/autoconf/c.m4 (_AC_PROG_CC_C99): Add support for HP cc, and
442         avoid deprecation warning with icc.
443         * THANKS: Update.
444         Reported by Ted Bullock.
446 2007-09-24  Jim Meyering  <jim@meyering.net>
448         Whenever possible, use the vertical bar as sed delimiter.
449         * lib/autoconf/functions.m4 (GETLOADAVG_LIBS) [AC_FUNC_GETLOADAVG]:
450         Use "|", not "!".
451         * lib/autoconf/status.m4 (_AC_SRCDIRS) [ac_top_builddir_sub]:
452         [ac_dir_suffix]: Use "|", not "," as sed delimiter.
453         * tests/mktests.sh (as_me): Likewise.
454         * lib/freeze.mk (check-forbidden-patterns): Likewise.
455         * lib/autoconf/fortran.m4 (_AC_PROG_FC_V_OUTPUT): Likewise.
456         * configure: Regenerate.
457         * doc/autoconf.texi (Shell Substitutions): Use "|", not "," in examples.
458         * lib/autotest/general.m4 (AT_INIT): Use "|", not "&" as sed delimiter
459         in the : -> $PATH_SEPARATOR transformation of $AUTOTEST_PATH.
460         This is fine, as long as $PATH_SEPARATOR doesn't contain "|".
462 2007-09-22  Jim Meyering  <jim@meyering.net>
464         Add a comment.
465         * lib/autoconf/headers.m4 (HAVE_STDBOOL_H): Document the
466         2004-05-31 change also with a comment in the code.
468 2007-09-20  Eric Blake  <ebb9@byu.net>
470         More contribution housekeeping.
471         * THANKS: Sort.
472         * AUTHORS: Sort, reflect recent assignment from Helge Deller.
474         Ignore additional files, when copying cross-repository.
475         * .gitignore: Ignore CVS directories, emacs edits.
476         * .cvsignore: Ignore .git directory, emacs edits.
478 2007-09-15  Eric Blake  <ebb9@byu.net>
480         Provide AC_VERSION, not m4_AUTOCONF_VERSION.
481         * doc/autoconf.texi (Text processing Macros): Remove mention of
482         m4_AUTOCONF_VERSION, and leave m4_PACKAGE_VERSION undocumented
483         once again.
484         (Notices): Move AC_PREREQ...
485         (Versioning): ...to this new section, alongside the new AC_VERSION
486         alias for the undocumented m4_PACKAGE_VERSION.
487         * lib/m4sugar/m4sugar.m4 (m4_AUTOCONF_VERSION): Revert change.
488         * lib/autoconf/general.m4 (AC_VERSION): New macro.
489         * NEWS: Update to match this rename.
490         * tests/m4sugar.at (m4@&t@_version_compare): Remove tests of
491         m4_PACKAGE_VERSION.
492         * tests/tools.at (autoconf: AC_VERSION): New test.
493         Suggested by Paolo Bonzini and Benoit Sigoure.
495 2007-09-14  Eric Blake  <ebb9@byu.net>
497         Prepare for conversion to git.
498         * doc/.cvsignore: Avoid multiple listings on one line.
499         * bin/.cvsignore: Likewise.
500         * .gitignore, bin/.gitignore, config/.gitignore, doc/.gitignore,
501         lib/.gitignore, lib/Autom4te/.gitignore, lib/autoconf/.gitignore,
502         lib/autoscan/.gitignore, lib/autotest/.gitignore,
503         lib/emacs/.gitignore, lib/m4sugar/.gitignore, man/.gitignore,
504         tests/.gitignore: New files, identical to .cvsignore counterpart.
506 2007-09-13  Eric Blake  <ebb9@byu.net>
508         Editing eye-candy.
509         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE): Restore
510         font-lock balance.
511         * lib/m4sugar/m4sh.m4 (AS_MKDIR_P): Likewise.
512         * lib/autoconf/general.m4 (_AC_DO_ECHO): Likewise.
513         * configure: Regenerate.
515         Clean up 'make dist' of previous patch.
516         * tests/Makefile.am (EXTRA_DIST): Distribute mktests.stamp.
517         (CLEANFILES): Don't clean the stamp, since we distribute the
518         generated files pre-built.
519         (MAINTAINERCLEANFILES): Clean it here instead.
520         * tests/Makefile.in: Regenerate.
522         Avoid parallel 'make check' issue.
523         * tests/Makefile.am (mktests.stamp): New witness.
524         (TESTSUITE_GENERATED_AT): Use it.
525         (CLEANFILES): Clean the witness.
526         * tests/.cvsignore (mktests.stamp): Ignore the witness.
528         Document another awk pitfall.
529         * doc/autoconf.texi (Limitations of Usual Tools) <awk>: Document
530         limitation of field variables in END.
531         Reported by Gary V. Vaughan.
533         * AUTHORS: Add missing entries.
535 2007-09-12  Eric Blake  <ebb9@byu.net>
537         Publish m4_ifndef, m4_version_compare, m4_AUTOCONF_VERSION.
538         * doc/autoconf.texi (Text processing Macros): Document
539         m4_version_compare, m4_AUTOCONF_VERSION, m4_PACKAGE_VERSION.
540         (Redefined M4 Macros): Document m4_ifndef.
541         * lib/m4sugar/m4sugar.m4 (m4_AUTOCONF_VERSION): New macro; we
542         can't obsolete m4_PACKAGE_VERSION at this time since Autoconf 1.10
543         used it while it was undocumented.
544         * NEWS: Document this change.
545         * lib/m4sugar/Makefile.am (version.m4): Update copyright dates.
546         * lib/m4sugar/Makefile.in: Regenerate.
547         * tests/m4sugar.at (m4@&t@_version_compare): New test.
548         Reported by Bruno Haible.
550         * doc/autoconf.texi (Generic Compiler Characteristics): Add
551         missing index entries.
553 2007-09-11  Eric Blake  <ebb9@byu.net>
555         Centralize all system extensions checks.
556         * lib/autoconf/specific.m4 (AC_USE_SYSTEM_EXTENSIONS): Inline code
557         from AC_AIX, AC_GNU_SOURCE, AC_MINIX.  Add Interix support.
558         (AC_AIX, AC_GNU_SOURCE, AC_MINIX): Obsolete, and point to
559         AC_USE_SYSTEM_EXTENSIONS.
560         (AC_ISC_POSIX): Obsolete, and point to AC_SEARCH_LIBS.
561         (AC_XENIX_DIR, AC_IRIX_SUN): Promote proper quoting in AU_DEFUN.
562         * doc/autoconf.texi (Posix Variants): Reword this section,
563         emphasizing that AC_USE_SYSTEM_EXTENSIONS is the preferred method,
564         rather than a series of system-specific checks.
565         (Obsolete Macros): Add AC_AIX, AC_GNU_SOURCE, AC_ISC_POSIX,
566         AC_MINIX.
567         * NEWS: Document this change.
568         * THANKS: Update.
569         Reported by Martin Koeppe.
571 2007-09-08  Eric Blake  <ebb9@byu.net>
573         Clean up obsolete macros references.
574         * doc/autoconf.texi: Add anchors to support better
575         cross-referencing.
576         (Particular Structures): Move obsolete macros descriptions...
577         (External Software): Likewise.
578         (Package Options): Likewise.
579         (Obsolete Macros): ...to here.  Add cross-references to
580         documentation on replacements.
581         * NEWS: Mention that these macros have been obsolete for a while
582         now: AC_STRUCT_ST_BLKSIZE AC_STRUCT_ST_RDEV AC_WITH AC_ENABLE.
584         Improve M4 path searching during configure.
585         * lib/autoconf/programs.m4 (AC_PATH_PROGS_FEATURE_CHECK): New
586         macro.
587         (_AC_PATH_PROG_FEATURE_CHECK): Rename...
588         (_AC_PATH_PROGS_FEATURE_CHECK): ...to this, add defaulted action
589         parameter, and kill side effects.
590         (_AC_PROG_GREP, AC_PROG_SED): Adjust callers.
591         (_AC_FEATURE_CHECK_LENGTH): Kill extra whitespace.
592         * m4/m4.m4 (AC_PROG_GNU_M4): Don't stop searching until working m4
593         is found.
594         (AC_PATH_PROGS_FEATURE_CHECK): Add backwards compatibility hack to
595         allow bootstrapping with autoconf 2.61.
596         * configure.ac (M4): AC_PROG_GNU_M4 now exits on failure.
597         * configure: Regenerate.
598         * doc/autoconf.texi (Generic Programs): Document new macro.
599         * tests/mktests.sh (au_exclude_script): Exclude auto-testing new
600         macro.
601         * tests/semantics.at (AC_PATH_PROGS_FEATURE_CHECK): New test.
602         * NEWS: Document the change.
603         * THANKS: Update.
604         Reported by Hans Aberg.
606         * doc/autoconf.texi (Generic Programs): Fix typo.
608 2007-09-06  Eric Blake  <ebb9@byu.net>
610         * doc/autoconf.texi (Generic Programs): Use $PATH_SEPARATOR, not
611         :, and make it clear that optional @var{path} defaults to $PATH.
612         (Erlang Compiler and Interpreter): Likewise.
614         Texinfo cleanup.
615         * doc/autoconf.texi: Avoid lines > 80 columns when possible.
616         Reword some paragraphs to avoid overfull, underfull hbox
617         warnings.  Add index entries to avoid overfull vbox warnings.
619 2007-09-05  Eric Blake  <ebb9@byu.net>
621         * NEWS: Adjust wording for AC_CONFIG_LINKS.
622         Reported by Ralf Wildenhues.
624 2007-09-03  Eric Blake  <ebb9@byu.net>
626         * NEWS: Document fixes that have been applied since 2.61a.
628         Housekeeping.
629         * THANKS: Update, and convert to UTF-8 encoding.
630         * AUTHORS: Likewise.
632 2007-08-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
634         * lib/autoconf/general.m4 (AC_SITE_LOAD): Guard against file
635         names beginning with `-' again.
637 2007-08-22  Stepan Kasal  <kasal@ucw.cz>
638             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
640         * doc/autoconf.texi (Defining Directories): Mention
641         AM_CPPFLAGS, as the way to modify CPPFLAGS when using Automake.
643 2007-08-21  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
645         * lib/autoconf/general.m4 (AC_SITE_LOAD): Do not overwrite "$@"
646         here, this macro is expanded by AC_INIT.  Fixes 2.60 regression.
647         * tests/base.at (configure arguments): New test.
648         * THANKS: Update.
649         Report by Olaf Lenz.
651         * lib/autoconf/general.m4 (_AC_ENABLE_IF): Expand macro
652         arguments in comment.
653         Report by Vincent Torri <vtorri at univ minus evry dot fr>.
655 2007-08-20  Benoit Sigoure  <tsuna@lrde.epita.fr>
657         * doc/autoconf.texi (File System Conventions): Index the proper
658         way of detecting absolute file names.
660 2007-08-20  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
662         * build-aux/config.guess, build-aux/config.sub,
663         build-aux/elisp-comp, build-aux/install-sh, build-aux/mdate-sh,
664         build-aux/missing, build-aux/texinfo.tex, doc/fdl.texi,
665         doc/make-stds.texi, doc/standards.texi: Sync from gnulib.
666         * doc/autoconf.texi (GNU Free Documentation License): Adjust for
667         sectioning change in fdl.texi.
669         * bin/autoconf.as: Update --version output to match current GCS.
670         * bin/autoheader.in: Likewise.
671         * bin/autom4te.in: Likewise.
672         * bin/autoreconf.in: Likewise.
673         * bin/autoscan.in: Likewise.
674         * bin/autoupdate.in: Likewise.
675         * bin/ifnames.in: Likewise.
677 2007-08-18  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
679         * lib/autoconf/status.m4 (_AC_OUTPUT_LINK): Do not try to link a
680         file to itself if source and build trees coincide.
681         * tests/torture.at (AC_CONFIG_LINKS and identical files): New
682         test.
683         Report by Sebastian Freundt <hroptatyr@gna.org>.
685 2007-07-20  Paul Eggert  <eggert@cs.ucla.edu>
687         Reword the copyright notices to match what's suggested in GPLv3.
688         In ChangeLog files, use more-permissive notice rather than GPL, as
689         per usual GNU standards these days.
691 2007-07-13  Paul Eggert  <eggert@cs.ucla.edu>
693         * doc/autoconf.texi (autoreconf Invocation): Document ACLOCAL_AMFLAGS
694         limitation reported by Leo Moisio in
695         <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=432941>.
697 2007-07-03  Paul Eggert  <eggert@cs.ucla.edu>
699         * COPYING: Update to GPLv3.  All uses changed.
701 2007-06-26  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
702         and Paul Eggert  <eggert@cs.ucla.edu>
704         * doc/autoconf.texi (Limitations of Usual Tools): sed -e ''
705         fails on AIX 5.3.
707 2007-06-17  Noah Misch  <noah@cs.caltech.edu>
709         * lib/autotest/general.m4 (AT_INIT): Handle absolute `srcdir'.
710         * tests/autotest.at (srcdir propagation): Test absolute `srcdir' and
711         `srcdir' as subdirectory of `builddir'.
713 2007-06-13  Noah Misch  <noah@cs.caltech.edu>
715         * lib/autotest/general.m4 (AT_INIT): Compute $srcdir correctly.
716         * tests/autotest.at (srcdir propagation): New test.
717         * THANKS: Update.
718         Reported by Mike Frysinger.
720 2007-06-13  Paul Eggert  <eggert@cs.ucla.edu>
722         * lib/m4sugar/m4sh.m4 (_AS_PATH_SEPARATOR_PREPARE): Set FPATH too.
723         Problem reported by Fred Kreek in
724         <http://lists.gnu.org/archive/html/bug-autoconf/2007-06/msg00009.html>.
725         * doc/autoconf.texi (Special Shell Variables): Warn about FPATH.
726         (Macro Names, Defining Directories): Don't mention PATH as a name
727         for a fully qualified file name, as this usage violates the GNU
728         coding standards and we shouldn't recommend it.
730         * lib/autotest/general.m4 (AT_INIT): Don't set PATH to the empty
731         string and then assume shell builtins like "test" will work.
733 2007-06-12  Noah Misch  <noah@cs.caltech.edu>
735         * lib/autoconf/general.m4 (AC_SUBST): Raise a fatal error if VARIABLE is
736         not a valid shell variable name.
737         * tests/mktests.sh (ac_exclude_list): Add AC_ARG_VAR.
738         * tests/torture.at (AC_SUBST: variable name validation): New test.
739         Reported by Andreas Schwab.
741 2007-06-04  Noah Misch  <noah@cs.caltech.edu>
743         * doc/autoconf.texi (AC_F77_MAIN): Give a specific usage example that
744         works with both C and C++.
746 2007-06-03  Noah Misch  <noah@cs.caltech.edu>,
747             Bruno Haible  <bruno@clisp.org>
749         * lib/autoconf/c.m4 (AC_OPENMP): Use a simple loop instead of compiler
750         brand tests.
752 2007-05-31  Paul Eggert  <eggert@cs.ucla.edu>
754         * doc/autoconf.texi (Particular Types): Give example of use for
755         AC_TYPE_INT8_T etc.
757 2007-05-29  Stepan Kasal  <kasal@ucw.cz>
759         * lib/autoconf/types.m4 (_AC_TYPE_UNSIGNED_INT): Fix a typo.
761 2007-05-28  Paul Eggert  <eggert@cs.ucla.edu>
763         * doc/autoconf.texi (Particular Types): AC_TYPE_INT8_T does not
764         define HAVE_INT8_T, and likewise for similar macros.
765         Problem reported by Patrick Welche in
766         <http://lists.gnu.org/archive/html/autoconf/2007-05/msg00062.html>.
768 2007-05-25  Noah Misch  <noah@cs.caltech.edu>
770         * bin/Makefile.am ($(top_builddir)/bin/autom4te): New dependency.
772 2007-05-21  Paul Eggert  <eggert@cs.ucla.edu>
774         * lib/autoconf/c.m4 (AC_OPENMP): Don't echo --enable-openmp
775         choice, since that's what we do with --enable-largefile etc.
776         Redo indenting and assignments to simplify things a bit, and make
777         the parens work with Emacs.
779         * doc/autoconf.texi (Generic Compiler Characteristics): Fix typo
780         in my previous change: AC_C_OPENMP -> AC_OPENMP.  Reported by Bruno
781         Haible.
783 2007-05-21  Noah Misch  <noah@cs.caltech.edu>
785         * lib/autoconf/c.m4 (AC_OPENMP): Simplify use of AC_ARG_ENABLE.
786         * tests/local.at (AT_CHECK_ENV): Exempt OPENMP_CFLAGS.
788 2007-05-21  Bruno Haible  <bruno@clisp.org>
790         * NEWS: Rename AC_C_OPENMP to AC_OPENMP.
791         * lib/autoconf/c.m4 (AC_OPENMP): Renamed from AC_C_OPENMP.
792         * doc/autoconf.texi (Generic Compiler Characteristics): Move
793         renamed AC_OPENMP documentation here, from "C compiler".
794         Mention C++ and Fortran.
796 2007-05-21  Paul Eggert  <eggert@cs.ucla.edu>
798         * doc/autoconf.texi (C Compiler): Tweak OpenMP documentation a bit.
800 2007-05-21  Bruno Haible  <bruno@clisp.org>
802         * NEWS: Mention AC_C_OPENMP.
803         * lib/autoconf/c.m4 (AC_C_OPENMP): New macro.
804         * doc/autoconf.texi (C Compiler): Document AC_C_OPENMP.
805         Based in part on Steven G. Johnson's investigations for the AX_OPENMP
806         macro in the Autoconf macro archive.
808 2007-05-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
810         * bin/autom4te.in: Fix typos.
812 2007-05-16  Noah Misch  <noah@cs.caltech.edu>
814         * bin/autoconf.as: Handle `-' just like other input files.
815         * bin/autom4te.in (parse_args): Pass `-' through.
816         (handle_output): Skip the forbidden token search if we read from stdin.
817         (up_to_date): Always treat stdin as out of date.
818         * tests/tools.at (autoconf: input from stdin): New test.
819         (autoconf: forbidden tokens, basic): Check a second `autoconf' run.
821 2007-05-16  Stepan Kasal  <kasal@ucw.cz>
823         * tests/foreign.at tests/semantics.at, tests/tools.at: Remove
824         parameters for AT_CLEANUP.
825         * tests/local.at (AT_CHECK_AU_MACRO): Likewise.
827 2007-05-14  Paul Eggert  <eggert@cs.ucla.edu>
829         * NEWS: Document that AC_C_RESTRICT checks 'restrict' last.
830         * doc/autoconf.texi (C Compiler): Likewise.
832 2007-05-14  Noah Misch  <noah@cs.caltech.edu>
834         * lib/autoconf/c.m4 (AC_C_RESTRICT): Check `restrict' last.
836 2007-05-09  Stepan Kasal  <kasal@ucw.cz>
838         * doc/autoconf.texi: Direntry for "autoconf Invocation"
839         renamed to "autoconf-invocation"
841         * doc/autoconf.texi (Caching Results): The CACHE-ID variable
842         in the examples should not use the internal "ac_" prefix.
844 2007-05-05  Noah Misch  <noah@cs.caltech.edu>
846         * lib/autotest/general.m4 (_AT_NORMALIZE_TEST_GROUP_NUMBER): Use `eval'.
847         * doc/autoconf.texi ($@, case): Document Zsh limitations.
849 2007-05-03  Stepan Kasal  <kasal@ucw.cz>
851         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Put a.out first.
852         Reorganize the comments before and in the macro.
854 2007-05-02  Stepan Kasal  <kasal@ucw.cz>
856         * lib/autoconf/lang.m4, lib/autoconf/c.m4,
857         lib/autoconf/fortran.m4, lib/autoconf/erlang.m4: Cleanup of
858         section titles and other comments; no code change.
860 2007-05-01  Kevin Ryde  <user42@zip.com.au>
862         * doc/autoconf.texi (Particular Programs): Typo
863         @acindex{AC_PROG_MKDIR_P} shouldn't have "AC" in that call.
865 2007-04-30  Paul Eggert  <eggert@cs.ucla.edu>
867         * lib/m4sugar/m4sh.m4 (_AS_SHELL_FN_SPY): Don't imply that
868         'configure' will fail if the shell lacks proper support for shell
869         functions.  Suggested by RMS.
871 2007-04-29  Paul Eggert  <eggert@cs.ucla.edu>
873         * doc/autoconf.texi (Limitations of Builtins): Correct the warning
874         about Solaris /bin/printf '%010000x' 123.  Problem reported by
875         Bruno Haible.
877 2007-04-28  Paul Eggert  <eggert@cs.ucla.edu>
879         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Don't look
880         for a.* when searching for executables, as this prevents users
881         from having files like a.c.  Problem reported by Ralf Wildenhues in:
882         http://lists.gnu.org/archive/html/autoconf-patches/2007-04/msg00029.html
883         This fixes a problem introduced on 2000-12-19.
885 2007-04-26  Paul Eggert  <eggert@cs.ucla.edu>
887         * doc/autoconf.texi (Limitations of Builtins): Warn about Solaris
888         /bin/printf '%010000x' 123.  Problem reported by Arto C. Nirkko
889         via Bruno Haible.
891 2007-04-12  Paul Eggert  <eggert@cs.ucla.edu>
893         * NEWS: Document recent changes to AC_CHECK_ALIGNOF, AC_CHECK_SIZEOF,
894         AC_CHECK_TYPE, AC_CHECK_TYPES.
895         * doc/autoconf.texi (Generic types): C types must be type-names
896         (the C terminology), not type-ids (the C++ term).  C++ types
897         must not be anonymous.
898         * lib/autoconf/types.m4 (_AC_CHECK_TYPE_NEW): Remove special case
899         for C++; this drops support for anonymous struct and union types,
900         which were problematic anyway.
901         * tests/semantics.at (AC_CHECK_HEADERS_NEW): Adjust test to work even
902         for C++.
904 2007-04-12  Jim Meyering  <jim@meyering.net>
906         * doc/autoconf.texi (Libraries): Typo fix: insert missing "in".
908 2007-04-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
910         * lib/autoconf/status.m4 (_AC_OUTPUT_LINK): Fix AC_CONFIG_LINKS
911         to prefer a link source from the build tree, if it exists.
912         Report by Pallav Gupta <pallavgupta@gmail.com>.
914 2007-04-11  Paul Eggert  <eggert@cs.ucla.edu>
916         * doc/autoconf.texi (Generic Types): Document the restrictions
917         on types imposed by AC_CHECK_TYPE, AC_CHECK_TYPES.
918         (Generic Compiler Characteristics): AC_CHECK_SIZEOF now works
919         with objects too.  Document the restrictions on its use.
920         Document the restrictions on AC_CHECK_ALIGNOF's type argument.
921         * lib/autoconf/types.m4 (_AC_CHECK_TYPE_NEW):
922         For C, just try sizeof (TYPE) and sizeof ((TYPE)); if the former
923         works but the latter doesn't, then it's a valid type.
924         This lets people use function types and so forth.
925         For C++ there doesn't seem to be a simple solution, so leave it alone.
926         (AC_CHECK_SIZEOF): Allow argument to be a variable.
927         (AC_CHECK_SIZEOF, AC_CHECK_ALIGNOF): Don't bother to invoke
928         AC_CHECK_TYPE; that wasn't documented or necessary.
930 2007-04-11  Stepan Kasal  <kasal@ucw.cz>
932         * lib/autoconf/general.m4 (_AC_LINK_IFELSE): Skip AS_TEST_X
933         when cross-compiling.
935 2007-04-11  Stepan Kasal  <kasal@ucw.cz>
937         * doc/autoconf.texi (External Software): Fix a typo in the
938         previous change.
940 2007-04-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
942         * doc/autoconf.texi (External Software, Package Options):
943         Fix ambiguous wording.  Report by Reuben Thomas <rrt@sc3d.org>.
945 2007-04-06  Paul Eggert  <eggert@cs.ucla.edu>
947         * doc/autoconf.texi (Particular Types): AC_C_LONG_DOUBLE is now
948         obsolescent.  Suggested by Bruno Haible.
949         * NEWS: Document this.
951 2007-03-29  Paul Eggert  <eggert@cs.ucla.edu>
953         * doc/autoconf.texi (Here-Documents, Limitations of Builtins):
954         (Limitations of Usual Tools): Don't say "older" if Solaris 10 by
955         default still has the problem.  Problem reported by Bruce Korb.
957 2007-03-28  Stepan Kasal  <kasal@ucw.cz>
958         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
960         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Fix a
961         comment in the generated config.status.
963 2007-03-27  Stepan Kasal  <kasal@ucw.cz>
965         * lib/autoconf/status.m4 (AC_CONFIG_SUBDIRS): Update comment.
967 2007-03-26  Paul Eggert  <eggert@cs.ucla.edu>
969         * doc/autoconf.texi (Shellology): Rework treatment of the 'test'
970         command and case statements to make it a bit clearer and describe
971         more pitfalls.
973 2007-03-23  Paul Eggert  <eggert@cs.ucla.edu>
975         * doc/autoconf.texi (C Compiler): Mention that AC_PROG_CC_C99 also
976         checks for unsigned long long int.
978 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
980         * doc/autoconf.texi (Limitations of Usual Tools): Warn about other
981         nonstandard grep R.E. escape sequences.
983 2007-03-17  Jim Meyering  <jim@meyering.net>
985         * doc/autoconf.texi: Adjust grammar around use of "heuristics".
986         (Limitations of Usual Tools): Also list \< and \>, and mention that
987         HP-UX's grep, like the one from Solaris, does not support that syntax.
989 2007-03-09  Stepan Kasal  <kasal@ucw.cz>
991         * doc/autoconf.texi (Specifying Names): `--host' does not
992         change the build type.
994 2007-03-05  Paul Eggert  <eggert@cs.ucla.edu>
996         * doc/autoconf.texi (C Compiler): Warn that AC_C_BIGENDIAN
997         suggests AC_CONFIG_HEADERS.
998         * lib/autoconf/c.m4 (AC_C_BIGENDIAN): Warn if not using
999         AC_CONFIG_HEADERS.  Problem reported by
1000         Peter O'Gorman.
1002 2007-02-28  Paul Eggert  <eggert@cs.ucla.edu>
1004         * lib/autoconf/c.m4 (AC_C_BIGENDIAN): Fix typo "__LITLE_ENDIAN__".
1005         Problem reported by Paolo Bonzini in:
1006         http://lists.gnu.org/archive/html/autoconf-patches/2007-02/msg00024.html
1007         * tests/semantics.at (AC_C_BIGENDIAN): Don't reject hosts that have
1008         universal binaries.  Problem reported by Elias Pipping.
1010 2007-02-27  Paul Eggert  <eggert@cs.ucla.edu>
1012         * NEWS: AC_C_BIGENDIAN now supports universal binaries a la Mac OS X.
1013         * doc/autoconf.texi (C Compiler): Document this.  There is a new
1014         extra argument ACTION-IF-UNIVERSAL.
1015         * lib/autoconf/c.m4 (AC_C_BIGENDIAN): Implement this.
1016         Add support for Solaris-style _LITTLE_ENDIAN and _BIG_ENDIAN.
1017         Reindent for sanity's sake.
1019 2007-02-24  Eric Blake  <ebb9@byu.net>
1021         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Update
1022         copyright.
1023         * lib/autoconf/general.m4 (_AC_INIT_COPYRIGHT): Likewise.
1024         * lib/autotest/general.m4 (AT_INIT): Likewise.
1025         (_AT_DECIDE_TRACEABLE): Fix syntax highlighting.
1027 2007-02-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1029         * lib/autotest/general.m4 (AT_INIT): With --clean, return exit
1030         status of rm so we know when it failed.
1031         If cleaning of test dir failed before running the test, warn.
1032         Output the line separator in verbose mode before the warning
1033         to make clear the warning belongs to the following test.
1035 2007-02-08  Paul Eggert  <eggert@cs.ucla.edu>
1037         * doc/autoconf.texi (Parentheses): Mention problem with (( in
1038         shells.
1040 2007-02-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1041         and Paul Eggert  <eggert@cs.ucla.edu>
1043         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE): Fix quoting
1044         errors introduced in last change.
1046 2007-02-07  Paul Eggert  <eggert@cs.ucla.edu>
1048         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE): Prefer \r to
1049         an actual carriage return.  Use "ac_cr" to contain the actual
1050         carriage return.
1051         * doc/autoconf.texi (Limitations of Usual Tools): Document problem
1052         with traditional Awk and begin.
1053         * tests/torture.at (Limitations of Builtins): Document the problem
1054         with Bash 2.03 printf.
1055         (Substitute and define special characters):
1056         Remove trailing white space.  Work around a bug in Solaris 8 /bin/bash.
1058 2007-02-06  Ralf Menzel  <menzel@ls6.cs.uni-dortmund.de>  (tiny change)
1060         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE): Redirect
1061         input from /dev/null in awk test, so even Solaris /usr/bin/awk
1062         will not wait for input with a script containing only a BEGIN
1063         rule.
1065 2007-02-03  Paul Eggert  <eggert@cs.ucla.edu>
1067         * doc/autoconf.texi (Introduction, Why GNU M4): Clarify M4 version
1068         requirements.
1069         * README: Likewise.
1071 2007-02-02  Eric Blake  <ebb9@byu.net>
1073         * NEWS: Update copyright.
1075         * m4/m4.m4 (AC_PROG_GNU_M4): Reject M4 1.4 through 1.4.4 as
1076         broken.
1077         * configure.ac: Update error message.
1078         * NEWS: Note that M4 1.4.5 or later is now a hard dependency.
1079         Reported by Gary Vaughan and Jim Meyering, and problem analyzed
1080         by Stepan Kasal:
1081         http://lists.gnu.org/archive/html/bug-autoconf/2006-11/msg00025.html
1083 2007-01-31  Eric Blake  <ebb9@byu.net>
1085         * THANKS (people): Update.
1087 2007-01-28  Paul Eggert  <eggert@cs.ucla.edu>
1089         * doc/autoconf.texi (Shellology): pdksh 5.2.14 is still the
1090         latest version.
1091         (Shell Substitutions): Note problems with @{var:=value} etc.
1092         Add a new section for problems with @{#var} etc.  Problem noted
1093         by Ralf Wildenhues.  See:
1094         http://lists.gnu.org/archive/html/libtool-patches/2005-01/msg00157.html
1096 2007-01-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1098         * lib/autoconf/programs.m4 (AC_PROG_MKDIR_P): Also
1099         AC_SUBST([MKDIR_P]), so that Automake < 1.10 will pick up its
1100         trace, if a package uses AC_PROG_MKDIR_P explicitly.  The actual
1101         substitution will still be done by the special code.
1102         Report by Jim Meyering.
1104         * doc/autoconf.texi (File System Conventions): Mention that
1105         $PATH_SEPARATOR is for the build system only.
1106         Report by Keith Marshall.
1108 2007-01-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1110         * doc/autoconf.texi (Setting Output Variables): Mention that
1111         all non-NUL characters are ok in substituted values.
1112         * lib/autoconf/status.m4 (_AC_SED_CMD_LIMIT): Fix comment typo.
1113         (_AC_OUTPUT_FILES_PREPARE): Test and use backslash escaping of
1114         carriage return for $AWK, needed for BSD awk.
1115         * tests/torture.at (Substitute and define special characters):
1116         Test all 8 bit non-NUL characters.
1117         Report against Automake by Patrick Welche.
1119 2007-01-15  Stepan Kasal  <kasal@ucw.cz>
1121         * doc/autoconf.texi: Direntry for "autoconf Invocation" renamed.
1123 2007-01-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1125         * lib/autoconf/programs.m4 (AC_PROG_SED): When closing a pipe
1126         early on the reader side, drop stderr of the input to avoid
1127         `broken pipe' error output; this may happen even with shell
1128         builtin `echo' of some bash versions.  Reports by Ian Macdonald
1129         <iamacdo@telkomsa.net> and Sam Sexton <Sam.Sexton@reuters.com>.
1131 2007-01-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1133         * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS): Use newlines to
1134         separate items of `ac_user_opts', to avoid long lines.
1135         (_AC_INIT_PARSE_ENABLE2, _AC_ENABLE_IF_ACTION): Adjust.
1137 2007-01-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1139         * doc/autoconf.texi: Fix some typos.
1141 2007-01-05  Paul Eggert  <eggert@cs.ucla.edu>
1143         Fix some wording problems noted by Paolo Bonzini in:
1144         http://lists.gnu.org/archive/html/autoconf-patches/2007-01/msg00077.html
1145         * doc/autoconf.texi (Signed Overflow Examples): Give more
1146         discussion about the allow_superuser_privileges example,
1147         and change it a bit to make things clearer.
1148         (Optimization and Wraparound): Clarify whether the compiler
1149         will generate an infinite loop for the example derived from
1150         Autoconf's mktime test.
1151         (Signed Overflow Advice): Say that -ftrapv is meant for debugging.
1152         Also, clarify unsigned multiplication overflow.
1154 2007-01-04  Eric Blake  <ebb9@byu.net>
1156         * bin/Makefile.am (RELEASE_YEAR): New macro.
1157         (edit): Use it to supply correct copyright year to scripts.
1158         * bin/autoconf.as (version): Use it.
1159         * bin/autoheader.in ($version): Likewise.
1160         * bin/autom4te.in ($version): Likewise.
1161         * bin/autoreconf.in ($version): Likewise.
1162         * bin/autoscan.in ($version): Likewise.
1163         * bin/autoupdate.in ($version): Likewise.
1164         * bin/ifnames.in ($version): Likewise.
1166 2007-01-02  Paul Eggert  <eggert@cs.ucla.edu>
1168         * doc/autoconf.texi (Integer Overflow): Revised based on today's
1169         feedback.  The most important changes document what happens when
1170         you convert an out-of-range value to a signed integer type, and
1171         say that (sum < a) != (b < 0) reliably detects overflow when sum =
1172         a + b.
1174         * doc/autoconf.texi (Integer Overflow): Greatly expand and
1175         rewrite, taking notions from the recent discussion on the gcc and
1176         autoconf mailing lists; please see
1177         http://lists.gnu.org/archive/html/autoconf-patches/2006-12/msg00091.html
1178         and follow the many links.
1179         (Integer Overflow Basics, Signed Overflow Examples):
1180         (Optimization and Wraparound, Signed Overflow Advice):
1181         (Signed Integer Division): New sections.
1183 2006-12-28  Steven G. Johnson  <stevenj@alum.mit.edu>
1185         * lib/autoconf/general.m4 (AC_DEFINE_TRACE): Don't include
1186         preprocessor macro arguments in traced name.
1187         * doc/autoconf.texi (Defining symbols): Document longstanding
1188         support for AC_DEFINE-ing macros with arguments, and document
1189         behavior when the same variable has multiple AC_DEFINEs.
1190         * lib/autoconf/fortran.m4 (_AC_FC_WRAPPERS): Revert to the
1191         old implementation which AC_DEFINEs the FC_FUNC and FC_FUNC_
1192         macros directly, giving much shorter and simpler code.
1194 2006-12-28  Malcolm Purvis <malcolmp@xemacs.org>  (trivial change)
1196         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Insert a
1197         space before "$ac_configure_args" to prevent a 'config.status
1198         --recheck' failure if ac_configure_args doesn't contain a leading
1199         space.  This works around a problem with the XEmacs configure.ac,
1200         which uses the (undocumented) ac_configure_args variable
1201         inconsistently with Autoconf.
1203 2006-12-22  Paul Eggert  <eggert@cs.ucla.edu>
1205         * lib/autoconf/functions.m4 (AC_FUNC_MKTIME):
1206         Include <limits.h>, and use its INT_MAX to rewrite the
1207         j loop so that it does not overflow 'int'.  Problem reported by
1208         Ralf Wildenhues in
1209         <http://lists.gnu.org/archive/html/bug-gnulib/2006-12/msg00084.html>.
1210         Play it safe by shifting left by 1 rather than multiplying by 2,
1211         as GCC is less likely to optimize this away when the value
1212         is signed (when it assumes overflow leads to undefined behavior).
1213         Also, don't assume time_t uses two's complement.
1215 2006-12-20  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1217         * tests/torture.at (Substitute a 2000-byte string): Avoid using
1218         a 10kB long (multi-line) string literal, OpenServer 5.0.7 ksh
1219         dumps core on it.  Report by Tim Rice.
1221 2006-12-18  Steven G. Johnson  <stevenj@alum.mit.edu>
1223         * lib/autoconf/general.m4 (AC_ARG_ENABLE): Print help about
1224         --disable-option-checking to --help output even when
1225         AC_PRESERVE_HELP_ORDER is not used.
1226         (_AC_INIT_PARSE_ENABLE2): Print warnings using actual --enable or
1227         --with argument, rather than argument with [-.] replaced by
1228         underscores.
1229         * NEWS: Fix typo in previous change; the news was in the
1230         wrong section.
1232 2006-12-18  Paul Eggert  <eggert@cs.ucla.edu>
1234         * NEWS: Warnings are now generated by default for unknown
1235         --enable-* and --with-* options.
1236         * doc/autoconf.texi (Option Checking): Renamed from
1237         (Configure Option Checking).  Tighten up the wording a bit.
1238         (External Software, Package Options): Cross-reference to Option
1239         Checking, and use this to shorten our section.
1240         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ARGS): Prefer test -n
1241         "$x" to test "x$foo" != x.
1242         * lib/autoconf/status.m4 (AC_OUTPUT): Likewise.
1243         Don't warn if $enable_option_checking is "no".
1244         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ARGS): Initialize
1245         ac_unrecognized_opts to the empty string.
1246         Don't echo the unrecognized opts, as this might mishandle
1247         backslashes or leading -.
1248         (AC_PRESERVE_HELP_ORDER): Put the --disable-option-checking
1249         usage next to the other --disable-FEATURE options in the
1250         help string.
1252 2006-12-18  Steven G. Johnson  <stevenj@alum.mit.edu>
1254         * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS, _AC_INIT_PARSE_ARGS):
1255         (_AC_INIT_PARSE_ENABLE2, _AC_INIT_HELP, _AC_ENABLE_IF):
1256         Print warning for unrecognized --with and --enable options
1257         (AC_DISABLE_OPTION_CHECKING): New macro to disable warnings.
1258         * lib/autoconf/status.m4 (AC_CONFIG_SUBDIRS, _AC_OUTPUT_SUBDIRS):
1259         Disable option checking when subdirs are configured.
1260         (AC_OUTPUT): If warnings are enabled, print warning about
1261         unrecognized --with and --enable options at the end of
1262         the configure output (as well as at the beginning).
1263         * doc/autoconf.texi (Option Checking): New node.
1264         Document new option warning functionality.
1266 2006-12-16  Eric Blake  <ebb9@byu.net>
1268         * configure.ac (AC_INIT): Bump version, since 2.61a is released.
1269         * NEWS: Start news for current version.
1271 2006-12-15  Paul Eggert  <eggert@cs.ucla.edu>
1273         * lib/autoconf/functions.m4 (AC_FUNC_GETMNTENT):
1274         Define HAVE_GETMNTENT to 1, not to the empty string.
1275         Problem originally reported by Jochen Friedrich in
1276         <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=403243>.
1278         This change prompted by a problem report by Andrey Simonenko in
1279         <http://lists.gnu.org/archive/html/bug-autoconf/2006-12/msg00026.html>.
1280         * doc/autoconf.texi (Defining Symbols): AC_DEFINE works for
1281         object-like macros only, in the traditional portable character
1282         set.
1283         * lib/autoconf/general.m4 (AC_DEFINE_TRACE_LITERAL):
1284         Warn about attempts to define things that are not identifiers.
1285         * lib/autoconf/fortran.m4 (_AC_FC_WRAPPERS): Rewrite to avoid
1286         awful hack that AC_DEFINEd macro names containing parentheses.
1288 2006-12-12  Paul Eggert  <eggert@cs.ucla.edu>
1290         * doc/autoconf.texi: Undo some of the 2006-12-10 change.  It was
1291         too drastic, even if Texinfo in theory requires it for info mode.
1293         (config.status Invocation): Renamed back from Recreating a
1294         Configuration).
1295         (Obsolete config.status Use): Renamed back from Obsolete Recreation.
1296         (Autoconf 2.13): Renamed back from 20th-century Autoconf 2.
1298 2006-12-11  Paul Eggert  <eggert@cs.ucla.edu>
1300         * NEWS: Version 2.61a.
1302 2006-12-11  Paul Eggert  <eggert@cs.ucla.edu>
1303         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1305         * NEWS: Document changes with echo and printf, and the lack
1306         of limits on the total size of multi-line values of substituted
1307         variables, and the AC_FUNC_FSEEKO fix.
1309 2006-12-10  Paul Eggert  <eggert@cs.ucla.edu>
1311         * doc/autoconf.texi (Writing Autoconf Input): Renamed from
1312         Writing configure.ac.
1313         (Autoconf Input Layout): Renamed from configure.ac Layout.
1314         (Recreating a Configuration): Renamed from config.status Invocation.
1315         (Obsolete Recreation): Renamed from Obsolete config.status Use.
1316         (acconfig Header): Renamed from acconfig.h.
1317         (20th-century Autoconf 2): Renamed from Autoconf 2.13.
1318         (Writing Testsuites): Renamed from Writing testsuite.at.
1319         (Autom4te Cache): Renamed from autom4te.cache.
1321         * BUGS: Remove mention of VPATH problem, since it's now documented
1322         not to be a bug in the Autoconf build procedure itself, but rather
1323         a problem with the proprietary `make' programs.
1325         * doc/autoconf.texi (Build Directories): Add a cross reference
1326         to VPATH and Make.
1328         * build-aux/config.guess, build-aux/config.sub, build-aux/texinfo.tex:
1329         * doc/standards.texi: Sync from gnulib.
1331         * man/autoconf.1, man/autoheader.1, man/autom4te.1, man/autoreconf.1:
1332         * man/autoscan.1, man/autoupdate.1, man/config.guess.1:
1333         * man/config.sub.1, man/ifnames.1: Remove from CVS, since they're
1334         generated automatically.
1336 2006-12-06  Paul Eggert  <eggert@cs.ucla.edu>
1338         * lib/autoconf/c.m4 (_AC_PROG_CC_C89): Also try -xc99=all, for Sun
1339         C 5.8 on Solaris 10.  Using -xc99=all rather than -xc99 bypasses
1340         the buggy -xc99 option of Forte Developer 7 C on Solaris 9.
1342 2006-12-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1344         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE): Drop the
1345         `CEOF$ac_eof' special marker, the awk script cannot contain a
1346         line matching `^CEOF', so this is not needed any more.
1347         * tests/torture.at (Substitute a newline): Expose the `%!_!# '
1348         special marker in the test.
1350 2006-12-06  Stepan Kasal  <kasal@ucw.cz>
1352         * tests/tools.at (autom4te preselections): Use `find -newer';
1353         remove one of the sleeps.
1355         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ENABLE): Make it
1356         more readable, using ...
1357         (_AC_INIT_PARSE_ENABLE2): ... this new helper macro.
1359         * doc/autoconf.texi (autoheader Invocation): Do not double-
1360         quote the parameter of `AH_BOTTOM' in the example.
1362 2006-12-05  Stepan Kasal  <kasal@ucw.cz>
1364         * doc/autoconf.texi (Configuration Headers): Remove the
1365         example with multiple input files.
1366         (autoheader Invocation): Encourage `AH_BOTTOM', discouraging
1367         multiple input files.
1369 2006-12-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1371         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE): When
1372         creating the awk substitution script, handle one input line at a
1373         time, so that the maximum length of a substituted (multi-line)
1374         value is not limited by the size of the sed pattern space.
1375         The trade-off is a slightly repetitive sed script.
1376         * doc/autoconf.texi (Limitations of Usual Tools): Branch labels
1377         can only have up to 7 characters, due to Solaris 10 /bin/sed.
1378         * tests/torture.at (Substitute a 2000-byte string): Increase the
1379         test with several long lines, they should not be caught by sed
1380         limits any more.
1382         * tests/tools.at (autom4te preselections): New test, to flag
1383         entries missing from autom4te.cfg.
1384         Report by David Byron <dbyron@hheld.com>.
1386         * tests/torture.at (Substitute a 2000-byte string): Actually use
1387         AC_PROG_AWK, so the last change works as intended.
1388         (Substitute and define special characters): Likewise.
1389         (Substitute a newline): Likewise.
1391         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE): Use `$AWK'
1392         instead of `awk' consistently.
1393         (_AC_OUTPUT_CONFIG_STATUS): Initialize $AWK.
1394         * tests/torture.at (Torturing config.status): Test both the
1395         result of AC_PROG_AWK and plain awk.
1396         (Substitute a 2000-byte string): Likewise.
1397         (Substitute and define special characters): Likewise.
1398         (Substitute a newline): Likewise.
1400 2006-12-04  Paul Eggert  <eggert@cs.ucla.edu>
1402         * lib/autoconf/functions.m4 (AC_FUNC_FSEEKO): Check that fseeko
1403         can be assigned to a function pointer.  Problem reported by
1404         Peter Palfrader in <http://bugs.debian.org/401377>.  Based on
1405         part of a patch by Ralf Wildenhues in that same bug report.
1407 2006-12-01  Paul Eggert  <eggert@cs.ucla.edu>
1409         * tests/mktests.sh (ac_exclude_list): Exclude AC_FUNC_SETVBUF_REVERSED.
1410         * tests/semantics.at (AC_FUNC_SETVBUF_REVERSED): New test.
1412 2006-12-01  Eric Blake  <ebb9@byu.net>
1414         * lib/autoconf/c.m4 (AC_LANG_INT_SAVE): Avoid newline, to aid in
1415         cross-compiling from cygwin to mingw.
1416         Reported by Bob Rossi.  This resurrects the 2000-11-30 patch to
1417         aclang.m4, which was mistakenly removed in the 2001-09-17 patch
1418         to lib/autoconf/c.m4.
1420 2006-12-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1422         * lib/m4sugar/m4sh.m4 (_AS_ECHO_PREPARE): Use a longer test
1423         string for more reliable failure.  Wrap the entire test that
1424         causes the broken Solaris printf to dump core, in a subshell,
1425         so the segmentation fault message is reliably suppressed.
1426         Fix shell expansion errors by using /usr/ucb/echo always;
1427         avoid an error on systems without it by another subshell.
1428         Avoid m4 expansion of `$1'.  Set the zeroth argument of the
1429         subshell-$as_echo to `as_echo', for better error message.
1431 2006-11-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1433         * lib/autoconf/general.m4 (_AC_CACHE_DUMP): If `BASH_ARGV' or
1434         `BASH_SOURCE' contain a newline, set them to empty, as they may
1435         not be unset.
1437 2006-11-27  Paul Eggert  <eggert@cs.ucla.edu>
1439         Turn AC_FUNC_SETVBUF_REVERSED into a noop.  It's been obsolete for
1440         years and is too hard to maintain now.  The last straw was
1441         reported by Jerker Baeck in
1442         <http://lists.gnu.org/archive/html/autoconf/2006-11/msg00102.html>.
1443         * NEWS: AC_FUNC_SETVBUF_REVERSED is now obsolete.
1444         * doc/autoconf.texi (Particular Functions): Move
1445         AC_FUNC_SETVBUF_REVERSED from here...
1446         (Obsolete Macros): ... to here.  Say that it does nothing now.
1447         * lib/autoconf/functions.m4 (AC_FUNC_SETVBUF_REVERSED):
1448         Turn into (almost) a no-op.
1450         * lib/autoconf/c.m4 (AC_PROG_GCC_TRADITIONAL, AC_C_CONST):
1451         (AC_C_VOLATILE):
1452         Do not recommend via AN_FUNCTION, AN_IDENTIFIER, or AN_HEADER.
1453         These macros are obsolescent and new applications shouldn't need them.
1454         * lib/autoconf/functions.m4 (AC_FUNC_CLOSEDIR_VOID, AC_REPLACE_FNMATCH):
1455         (AC_FUNC_GETLOADAVG, AC_FUNC_GETPGRP, AC_FUNC_MEMCMP):
1456         (AC_FUNC_SELECT_ARGTYPES, AC_FUNC_SETPGRP, AC_FUNC_STAT, AC_FUNC_LSTAT):
1457         (AC_FUNC_STRFTIME, AC_FUNC_SETVBUF_REVERSED, AC_FUNC_UTIME_NULL):
1458         (AC_FUNC_VPRINTF): Likewise.
1459         * lib/autoconf/headers.m4 (AC_HEADER_DIRENT, AC_HEADER_STAT):
1460         (AC_HEADER_STDC, AC_HEADER_SYS_WAIT, AC_HEADER_TIME): Likewise.
1461         * lib/autoconf/types.m4 (AC_STRUCT_TM): Likewise.
1463         * doc/autoconf.texi (Setting Output Variables): Mention that
1464         @VAR1@VAR2 has unspecified behavior.  Problem reported by
1465         Ralf Wildenhues.
1466         * NEWS: Mention this.
1468         * Makefile.am: Put only a single '#' into the copyright notice,
1469         so that it's also present in the output file.  Standardize wording
1470         in makefile copyright notices to match GNU coding standards.
1471         * bin/Makefile.am: Likewise.
1472         * doc/Makefile.am: Likewise.
1473         * lib/Makefile.am: Likewise.
1474         * lib/freeze.mk: Likewise.
1475         * lib/autoconf/Makefile.am: Likewise.
1476         * lib/autoscan/Makefile.am: Likewise.
1477         * lib/autotest/Makefile.am: Likewise.
1478         * lib/m4sugar/Makefile.am: Likewise.
1479         * man/Makefile.am: Likewise.
1480         * tests/Makefile.am: Likewise.
1481         * lib/emacs/Makefile.am: Remove copyright notice; it's just a
1482         one-line file.
1484 2006-11-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1486         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE): Fix error
1487         in the sed script that mangles the awk script: delete up to the
1488         first exclamation mark only.
1489         * tests/torture.at (Substitute and define special characters):
1490         Test '!' too.
1492 2006-11-26  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1494         Rewrite config files generation: avoid quadratic growth in
1495         the number of substituted variables by using awk instead of sed
1496         for the bulk of the substitutions.
1497         * NEWS: Mention this.
1498         * doc/autoconf.texi (Setting Output Variables): `|#_!!_#|' is also
1499         forbidden in the output (and thus input) file.
1500         * lib/autoconf/status.m4 (_AC_AWK_LITERAL_LIMIT): New macro.
1501         (_AC_OUTPUT_FILES_PREPARE): Instead of several sed scripts,
1502         generate just one large awk script for substitutions,
1503         eliminating much of the earlier complexity, while adding some
1504         new complexity.  Only expand the substitution templates at
1505         configure time, for smaller configure script size.  If
1506         _AC_SUBST_FILES are used, test 'awk' for working getline support
1507         at config.status time.  If absent, interpolate through the
1508         shell.  The awk script was written with much help
1509         from Paolo Bonzini and Paul Eggert.
1510         (_AC_SED_CMD_NUM, _AC_SED_DELIM_NUM, _AC_SED_FRAG): Removed.
1511         (_AC_SED_FRAG_NUM): Likewise.
1512         (_AC_SUBST_CMDS): Renamed from...
1513         (_AC_SED_CMDS): ...this.
1514         (_AC_OUTPUT_FILE): Use _AC_SUBST_CMDS.
1515         * tests/torture.at (Substitute a 2000-byte string): Also
1516         substitute a line with 1000 words, and a variable with several
1517         long lines.
1518         (Substitute and define special characters): Test awk special
1519         characters, and put substitution input strings `@foo@' in the
1520         output, to test that no recursion happens; test several other
1521         combinations from Paolo Bonzini.
1523 2006-11-25  Paul Eggert  <eggert@cs.ucla.edu>
1525         * lib/autotest/general.m4 (AT_INIT): Undo recent changes
1526         that replaced echo with AS_ECHO where this wasn't necessary.
1527         Problem reportd by Ralf Wildenhues.
1528         * lib/m4sugar/m4sh.m4 (_AS_ECHO_PREPARE): Port to Solaris 7,
1529         where "/usr/bin/printf '%s\n' S" dumps core if S is long.
1530         This is Sun bug 4206210.  Problem reportd by Ralf Wildenhues.
1532 2006-11-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1534         * lib/freeze.mk (GREP): Removed, no need to initialize this.
1536 2006-11-21  Paul Eggert  <eggert@cs.ucla.edu>
1538         * doc/autoconf.texi (Limitations of Usual Tools): Don't claim
1539         that traditional Awk lacks 3-arg "split".  It has it.
1540         Mention that FS must be a single character, and a few other
1541         99-byte limits of traditional Awk.
1542         Mention that if (i in a) doesn't work with traditional Awk.
1544 2006-11-18  Paul Eggert  <eggert@cs.ucla.edu>
1546         * tests/autotest.at (BSx641-newline in command):
1547         (BS-BS-newline in command, BSx640-newline in command):
1548         (Newline-CODE-BS-newline in command):
1549         (Single-quote-BS-newline in command):
1550         (Single-quote-newline-BS-newline in command):
1551         Use printf '%s\n' instead of echo, for portability to hosts
1552         where echo interprets backslashes.  This will break on hosts
1553         that lack printf, but for now let's assume all such hosts
1554         are dead (if not, we should get reports of test failures).
1556 2006-11-17  Paul Eggert  <eggert@cs.ucla.edu>
1558         'echo' has some portability problems, when given a first argument
1559         with a leading '-', or when given any argument containing '\'.
1560         Avoid using 'echo' in these cases.
1561         * bin/Makefile.am $(bin_SCRIPTS): Rewrite to avoid 'echo' entirely.
1562         * lib/autoconf/c.m4 (AC_PROG_CC, AC_PROG_CXX, AC_PROG_OBJC): Likewise.
1563         * lib/autoconf/fortran.m4 (_AC_PROG_FC): Likewise.
1564         * lib/autotest/general.m4 (AT_INIT): Likewise.
1565         * bin/autoconf.as: Use AS_ECHO rather than plain echo, when the
1566         argument might be unportable.
1567         * lib/autoconf/c.m4 (AC_PROG_CC_C_O): Likewise.
1568         * lib/autoconf/erlang.m4 (AC_LANG(Erlang)): Likewise.
1569         * lib/autoconf/fortran.m4 (_AC_PROG_FC_V_OUTPUT):
1570         (_AC_FC_LIBRARY_LDFLAGS): Likewise.
1571         * lib/autoconf/functions.m4 (AC_FUNC_GETLOADAVG): Likewise.
1572         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ENABLE, _AC_INIT_PREPARE):
1573         (_AC_ARG_VAR_VALIDATE, AC_ARG_PROGRAM, _AC_MSG_LOG_CONFTEST):
1574         (AC_RUN_LOG, _AC_RUN_IFELSE, _AC_LIBOBJS_NORMALIZE): Likewise.
1575         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Likewise.
1576         * lib/autoconf/libs.m4 (_AC_PATH_X_DIRECT): Likewise.
1577         * lib/autoconf/programs.m4 (_AC_FEATURE_CHECK_LENGTH):
1578         (AC_PROG_MAKE_SET): Likewise.
1579         * lib/autoconf/status.m4 (_AC_SRCDIRS, _AC_OUTPUT_HEADER):
1580         (_AC_OUTPUT_SUBDIRS, _AC_OUTPUT_CONFIG_STATUS): Likewise.
1581         * lib/autotest/general.m4 (_AT_CREATE_DEBUGGING_SCRIPT, AT_INIT):
1582         (AT_CLEANUP, _AT_DECIDE_TRACEABLE, _AT_CHECK): Likewise.
1583         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE, _AS_ECHO_UNQUOTED):
1584         (_AS_BASENAME_SED, _AS_DIRNAME_SED, AS_MKDIR_P, AS_TMPDIR, AS_UNAME):
1585         (AS_TR_SH, AS_TR_CPP, AS_VAR_GET): Likewise.
1586         * bin/autoconf.as: Redo verbose flag implementation, as the old
1587         scheme wouldn't work with AS_ECHO.
1588         * lib/autotest/general.m4 (AT_INIT): Likewise.
1589         * lib/autoconf/general.m4 (AC_MSG_RESULT, AC_MSG_RESULT_UNQUOTED):
1590         Don't use ECHO_T, since ECHO_N is now reliable.
1591         * lib/autotest/general.m4 (AT_INIT): Likewise.
1592         * lib/autoconf/general.m4 (AC_ARG_PROGRAM): Use sed "$script"
1593         rather than using a here-document to put the script into a file.
1594         (_AC_DO_ECHO): Hoist the eval out of the echo, so that we can
1595         use AS_ECHO.
1596         * lib/m4sugar/m4sh.m4 (AS_VAR_GET): Likewise.
1597         * lib/autoconf/programs.m4 (_AC_FEATURE_CHECK_LENGTH): Use
1598         AS_ECHO_N rather than ECHO_N and ECHO_C.  This doesn't fix any
1599         bug, but we might as well stop using ECHO_N and ECHO_C internally.
1600         * lib/autotest/general.m4 (AT_SETUP): Likewise.
1601         * lib/m4sugar/m4sh.m4 (_AS_ECHO_N): Likewise.
1602         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS):
1603         (_AC_OUTPUT_MAIN_LOOP): Rework echo so that it has just one
1604         operand, as AS_ECHO requires.  Avoid double file name expansion.
1605         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Invoke _AS_ECHO_PREPARE.
1606         Don't set as_nl, since _AS_ECHO_PREPARE does that now.
1607         (_AS_PREPARE): Comment that _AS_ECHO_N_PREPARE is just for user code.
1608         (AS_ECHO, AS_ECHO_N, _AS_ECHO_PREPARE): New macros.
1609         * tests/c.at (AC_PROG_CPP without warnings, AC_PROG_CPP via CC):
1610         Double-quote strings that would otherwise contain M4 comments.
1611         * tests/m4sh.at (AS_ECHO and AS_ECHO_N): New test.
1613         * configure.ac (AC_INIT): Bump to 2.61a.
1614         * NEWS: Likewise.
1616 2006-11-17  Paul Eggert  <eggert@cs.ucla.edu>
1618         Version 2.61.
1620         * configure.ac (AC_INIT): Bump to 2.61.
1621         * NEWS: Likewise.
1623         * tests/autotest.at (Macro with backslash in a test title):
1624         Comment out for now, as this tests neither fails nor passes
1625         reliably.  Problem reported by Ralf Wildenhues.
1627 2006-11-16  Paul Eggert  <eggert@cs.ucla.edu>
1629         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ENABLE): Fix some typos
1630         in previous change, which caused test failures.
1632 2006-11-16  Stepan Kasal  <kasal@ucw.cz>
1634         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ARGS): Factor out
1635         code for --enable, --disable, --with, and --without to...
1636         (_AC_INIT_PARSE_ENABLE): ... a new macro.
1637         * doc/autoconf.texi (Package Options):
1638         * NEWS: Document that AC_ARG_ENABLE allows dots, too.
1640 2006-11-16  Paul Eggert  <eggert@cs.ucla.edu>
1642         Import these changes from config via gnulib:
1644         2006-11-15  Ben Elliston  <bje@gnu.org>
1646         From Josselin Mouette <joss@debian.org>:
1647         * build-aux/config.guess (SX-8:SUPER-UX:*:*): New.
1649         2006-11-08  Ben Elliston  <bje@gnu.org>
1651         * build-aux/config.guess (authenticamd:Interix*:[3456]*): Another AMD64.
1653         2006-11-07  Steve Woodford  <scw@NetBSD.org>
1654                     Ben Elliston  <bje@gnu.org>
1656         * build-aux/config.guess (*:NetBSD:*:*): Handle sh5el arch.
1657         * build-aux/config.sub (sh5el): New basic_machine.
1660         Import this change from coreutils:
1662         2006-02-13  Jim Meyering  <jim@meyering.net>
1664         * GNUmakefile (all): Emit diagnostics to stderr, not stdout.
1667         Import this change from gnustandards via gnulib:
1669         2006-11-15  Karl Berry  <karl@gnu.org>
1671         * standards.texi: core -> memory, throughout.
1672         (CPU Portability): show correct example of calling write
1673         on a char value; thanks to Paul Eggert for the code.
1674         Both of these suggestions from Eugene Y. Vasserman.
1677         Import these changes from texinfo via gnulib:
1679         2006-11-08  Karl Berry  <karl@gnu.org>
1681         * build-aux/texinfo.tex (\dopdfimage): look for png, jpg/jpeg/JPG, and
1682           as well as pdf images, since they are supported in pdftex with
1683           no further ado.
1685         2006-11-05  Karl Berry  <karl@gnu.org>
1687         * doc/texinfo.tex (Image Syntax): don't mention GIF any more.
1689 2006-11-13  Paul Eggert  <eggert@cs.ucla.edu>
1691         * NEWS: Document the AC_ARG_WITH change.
1693 2006-11-13  Bruno Haible  <bruno@clisp.org>
1695         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ARGS): For --with, --without
1696         options, transliterate also dots to underscores.
1697         (_AC_ENABLE_IF): Transliterate also dots to underscores.
1698         * doc/autoconf.texi (External Software): Document that AC_ARG_WITH's
1699         first argument may also contain dots.
1701 2006-11-09  Paul Eggert  <eggert@cs.ucla.edu>
1703         * tests/mktests.sh (ac_exclude_list): Exclude AC_PROG_CXX_C_O, for
1704         benefit of platforms like Solaris+GCC where it is common to have a
1705         non-working g++ installation.
1707 2006-11-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1708         and Joel E. Denny  <jdenny@ces.clemson.edu>
1709         and Paul Eggert  <eggert@cs.ucla.edu>
1711         * tests/autotest.at (AT_CHECK_AT_TITLE): Fix shell quoting bugs
1712         and non-portable sed scripts, and use $CONFIG_SHELL when invoking
1713         ./micro-suite.
1715 2006-11-08  Paul Eggert  <eggert@cs.ucla.edu>
1717         * lib/autoconf/types.m4 (AC_TYPE_LONG_LONG_INT): Set
1718         ac_cv_type_long_long_int to 'yes' instead of 'cross-compiling'.
1719         Imported from a similar patch to gnulib by Bruno Haible.
1721 2006-11-08  Paul Eggert  <eggert@cs.ucla.edu>
1723         * NEWS: New macros AC_C_FLEXIBLE_ARRAY_MEMBER, AC_C_VARARRAYS.
1724         * doc/autoconf.texi (C Compiler): Document them.
1725         * lib/autoconf/c.m4 (AC_C_FLEXIBLE_ARRAY_MEMBER, AC_C_VARARRAYS):
1726         New macros, taken from gnulib.
1728 2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
1730         * lib/autoconf/types.m4 (AC_TYPE_LONG_LONG_INT): Detect bug in
1731         Tandem NonStop Kernel (OSS) cc -O circa 2004, reported by
1732         Matthew Woehlke.
1734 2006-10-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1736         * tests/torture.at (Configuring subdirectories): Do not skip
1737         Automake 1.10 nor future Automake 11.1 (sic).
1739 2006-10-26  Joel E. Denny  <jdenny@ces.clemson.edu>
1740         and Stepan Kasal  <kasal@ucw.cz>
1742         Handle special characters in test case titles correctly.
1743         * lib/autotest/general.m4 (AT_INIT): M4-quote and AS_ESCAPE AT_help_all
1744         properly.
1745         (AT_SETUP): M4-quote and AS_ESCAPE the title properly everywhere.
1746         * tests/autotest.at (AT_CHECK_AT_TITLE): Add EXPANDED-TITLE-TO-TEST
1747         argument.  Extend to check titles printed by ./micro-suite and
1748         ./micro-suite -l and the title in micro-suite.log.
1749         (Backquote in a test title,
1750         Single-quote in a test title,
1751         Double-quote in a test title): Don't expect failure anymore.
1752         (Backslash in a test title): Put a non-whitespace character after the
1753         backslash so that Bourne shells might actually see it as an escape
1754         sequence.
1755         (Brackets in a test title,
1756         Pound in a test title,
1757         Comma in a test title,
1758         Quoted Macro in a test title,
1759         Macro in a test title,
1760         Macro with single-quote in a test title): New tests.
1761         (Macro with backquote in a test title,
1762         Macro with double-quote in a test title,
1763         Macro with backslash in a test title): New tests expected to fail.
1764         * tests/torture.at (#define header templates): M4-quote this title in
1765         AT_SETUP call so that no M4 code is commented inadvertently somewhere.
1766         The visible effect was a stray [] in the testsuite output.
1768 2006-10-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1770         * doc/autoconf.texi (Limitations of Builtins): Do not invoke
1771         `trap ... 0' inside a function, for AIX sh.
1773 2006-10-26  Paul Eggert  <eggert@cs.ucla.edu>
1775         * tests/base.at (AC_COMPUTE_INT): Test **0** rather than 1 / 0,
1776         since powerpc-apple-darwin8-gcc-4.0.1 (Apple Computer, Inc. build
1777         5363) simply issues a warning when dividing by zero at compile
1778         time.  Problem reported by Elias Pipping.
1780 2006-10-26  Eric Blake  <ebb9@byu.net>
1782         * THANKS: Update.
1783         * doc/autoconf.texi (Evaluation Macros): Improve the example to
1784         show effect on macros that expand with commas.
1785         Reported by Joel E. Denny.
1787         * tests/m4sugar.at (m4_warn, m4_require: circular dependencies):
1788         Also work with M4 1.4.8.
1790 2006-10-25  Paul Eggert  <eggert@cs.ucla.edu>
1792         * doc/autoconf.texi (Slashes): Document Tru64 4.0 bug reported by
1793         Jim Meyering.
1795 2006-10-25  Stepan Kasal  <kasal@ucw.cz>
1797         * tests/tools.at (autom4te --force): New test, verifies that
1798         `--force' always rewrites the output file.
1800 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
1802         * doc/autoconf.texi (Limitations of Usual Tools): Document that rm
1803         needs operands on NetBSD 2.0.2.  Problem reported by Bruno Haible.
1805 2006-10-24  Stepan Kasal  <kasal@ucw.cz>
1807         * tools/trace.at (autoconf --trace: user macros): Test `$%'.
1809 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
1811         * lib/autoconf/specific.m4 (_AC_SYS_LARGEFILE_MACRO_VALUE):
1812         If FUNCTION-BODY is nonempty, use AC_LINK_IFELSE rather than
1813         AC_COMPILE_IFELSE, to work around problem with OSF/1 4.0F fseeko
1814         reported by Nelson H. F. Beebe for Coreutils 6.4.
1816         * tests/tools.at (autoconf --trace: user macros): Remove test
1817         for tracing multiline macros, since m4 1.4.7a uses a different
1818         way to number lines.  Problem reported by Ralf Wildenhues.
1820 2006-10-24  Stepan Kasal  <kasal@ucw.cz>
1822         * bin/autom4te.in (handle_m4): Do not redirect stdin to
1823         /dev/null since the heuristics for interactive behaviour was
1824         fixed in CVS m4.
1826         * bin/autom4te.in: With --force, always refresh the output
1827         file.  Problem reported by Greg Schafer <gschafer@zip.com.au>.
1829         * bin/autoconf.as: Fix the verbose message at the end.
1831 2006-10-23  Paul Eggert  <eggert@cs.ucla.edu>
1833         * configure.ac (AC_INIT): Bump to 2.60c.
1834         * NEWS: Likewise.
1836 2006-10-22  Paul Eggert  <eggert@cs.ucla.edu>
1838         * NEWS: Version 2.60b.
1840         Import this change from Texinfo:
1841         2006-10-15  Karl Berry  <karl@gnu.org>
1842         * build-aux/texinfo.tex: automake 1.10
1844         * NEWS: Remove AC_CACHE_CHECK_INT.
1845         * doc/autoconf.texi (Caching Results): Likewise.
1846         * lib/autoconf/general.m4 (_AC_CACHE_CHECK_INT): Renamed from
1847         AC_CACHE_CHECK_INT, since it's no longer public.
1848         * lib/autoconf/types.m4: All uses of AC_CACHE_CHECK_INT changed.
1849         * tests/base.at (AC_COMPUTE_INT): Test this, not AC_CACHE_CHECK_INT.
1851 2006-10-20  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1853         * doc/autoconf.texi (Limitations of Usual Tools): Fix two typos.
1855 2006-10-19  Eric Blake  <ebb9@byu.net>
1857         * lib/m4sugar/m4sugar.m4 (m4_mkstemp): New macro.
1858         (m4_maketemp): Avoid warnings with M4 1.9a.
1859         * lib/emacs/autoconf-mode.el (autoconf-font-lock-keywords): Color
1860         m4_mkstemp.
1861         * doc/autoconf.texi (Redefined M4 Macros): Document m4_mkstemp.
1862         * NEWS: Likewise.
1864 2006-10-16  Eric Blake  <ebb9@byu.net>
1866         * doc/autoconf.texi (Setting Output Variables): Fix typo.
1868         * bin/autoconf.as (version): Reword to match GNU Coding
1869         Standards.
1870         * bin/autoheader.in (version): Likewise.
1871         * bin/autom4te.in (version): Likewise.
1872         * bin/autoreconf.in (version): Likewise.
1873         * bin/autoscan.in (version): Likewise.
1874         * bin/autoupdate.in (version): Likewise.
1875         * bin/ifnames.in (version): Likewise.
1877 2006-10-14  Stepan Kasal  <kasal@ucw.cz>
1879         * lib/m4sugar/m4sh.m4 (AS_LITERAL_IF): Expand $1 before
1880         looking for special shell characters.
1881         * lib/autoconf/functions.m4 (AC_CHECK_FUNC): Do not expand the
1882         macro defined by AS_VAR_PUSHDEF before passing it as a
1883         parameter.
1884         * lib/autoconf/general.m4 (AC_CHECK_FILE, AC_CHECK_DECL):
1885         * lib/autoconf/libs.m4 (AC_SEARCH_LIBS, AC_CHECK_LIB):
1886         * lib/autoconf/types.m4 (_AC_CHECK_TYPE_NEW, AC_CHECK_MEMBER):
1887         * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_MONGREL):
1888         (_AC_CHECK_HEADER_NEW, _AC_CHECK_HEADER_OLD, _AC_CHECK_HEADER_DIRENT):
1889         Likewise.
1890         * lib/autotest/general.m4 (AT_INIT): Quote parameters of
1891         AS_VAR_* properly.
1892         * tests/m4sh.at (AS_LITERAL_IF): New test.
1894 2006-10-14  Paul Eggert  <eggert@cs.ucla.edu>
1896         (Imported from Automake.)
1897         * build-aux/install-sh (posix_mkdir): Reject FreeBSD 6.1 mkdir -p -m,
1898         which incorrectly sets the mode of an existing destination
1899         directory.  In some cases the unpatched install-sh could do the
1900         equivalent of "chmod 777 /" or "chmod 0 /" on a buggy FreeBSD
1901         system.  We hope this is rare in practice, but it's clearly worth
1902         fixing.  Problem reported by Alex Unleashed in
1903         <http://lists.gnu.org/archive/html/bug-autoconf/2006-10/msg00012.html>.
1904         Also, don't bother to check for -m bugs unless we're using -m;
1905         suggested by Stepan Kasal.
1907 2006-10-14  Paul Eggert  <eggert@cs.ucla.edu>
1909         Import this change from Automake:
1911         2006-08-23  Alexandre Duret-Lutz  <adl@gnu.org>
1912         * lib/Autom4te/ChannelDefs.pm (usage): Mention that -Wportability
1913         is enabled by default with gnu and gnits strictness.
1914         Report from Bruno Haible.
1916         2006-03-10  Alexandre Duret-Lutz  <adl@gnu.org>
1917         * lib/Autom4te/ChannelDefs.pm: Make -Wportability the default in
1918         gnu and gnits modes.
1920         Import this change from Config:
1922         2006-09-20  Ben Elliston  <bje@gnu.org>
1923         * build-aux/config.sub (score, score-*): New.
1925         Import this change from Gnulib:
1927         2006-09-16  Karl Berry  <karl@gnu.org>
1928         * doc/fdl.texi (ADDENDUM): switch to @heading from @appendixsubsec,
1929         to avoid sectioning errors.
1931         Import these changes from Texinfo:
1933         2006-10-04  Karl Berry  <karl@gnu.org>
1934         * build-aux/texinfo.tex (\singlequotechar): rename to \codequoteright.
1935         (\quoteexpand): rename to \rquoteexpand.
1936         (\codequoteleft): new def, to look for @set codequotebacktick.
1937         (\lquoteexpand, \quoteexpand): new defs.
1938         (\lquoteChar, \rquoteChar, \dashChar, \underChar: new \chardef's.
1939         (\code): must use new \...Char values, since now ` is active.
1941         2006-08-26  Karl Berry  <karl@gnu.org>
1942         * build-aux/texinfo.tex (\textdegree): New command.
1944         2006-08-12  Karl Berry  <karl@gnu.org>
1945         * build-aux/texinfo.tex (error \box0): smaller font.
1947 2006-10-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1949         * doc/autoconf.texi (Autoheader Macros): Fix syntax error.
1951 2006-10-13  Stepan Kasal  <kasal@ucw.cz>
1953         * doc/autoconf.texi (Autoheader Macros): Warn that the text
1954         added to the template can get mangled.
1956 2006-10-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1958         * lib/autoconf/functions.m4 (AC_FUNC_OBSTACK): In the test,
1959         include the default headers, and redefine obstack_chunk_alloc
1960         and obstack_chunk_free.  Fixes false failure with glibc.
1962 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
1964         * lib/m4sugar/m4sh.m4 (_AS_TEST_PREPARE): Set as_executable_p,
1965         for backward compatibility with Libtool 1.5.22.  Problem reported
1966         by Ralf Wildenhues.
1968 2006-10-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1970         * lib/autoconf/c.m4 (AC_PROG_GCC_TRADITIONAL): Require
1971         AC_PROG_CC.
1972         Report by IOhannes m zmoelnig <zmoelnig@iem.at>.
1974 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
1976         * NEWS: AC_USE_SYSTEM_EXTENSIONS now defines _TANDEM_SOURCE for
1977         the NonStop platform.
1978         * doc/autoconf.texi (Posix Variants): Likewise.
1979         * lib/autoconf/specific.m4 (AC_USE_SYSTEM_EXTENSIONS): Likewise.
1981         * lib/m4sugar/m4sh.m4 (AS_TEST_X): New macro.
1982         (AS_EXECUTABLE_P): Use as_test_x rather than as_executable_p.
1983         (_AS_TEST_PREPARE): Set as_test_x rather than as_executable_p.
1984         Use a better substitute, by inspecting the output of "ls"
1985         rather than just using ":".
1986         * lib/autoconf/general.m4 (_AC_LINK_IFELSE): Use AS_TEST_X
1987         rather than AS_EXECUTABLE_P, since we needn't worry about
1988         non-regular files here.
1990         * NEWS: Autoconf-generated shell scripts no longer export BIN_SH,
1991         due to configuration hassles with this.  See Tonya Underwood's report
1992         <http://lists.gnu.org/archive/html/bug-autoconf/2006-10/msg00003.html>.
1993         * doc/autoconf.texi (Special Shell Variables): Likewise.
1995 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
1996             Stepan Kasal  <kasal@ucw.cz>
1998         * lib/m4sugar/m4sh.m4 (AS_BOURNE_COMPATIBLE): Don't set BIN_SH.
1999         (_AS_DETECT_BETTER_SHELL): Don't look in /usr/bin/posix.
2001 2006-10-11  Stepan Kasal  <kasal@ucw.cz>
2003         * lib/m4sugar/m4sh.m4 (AS_BOURNE_COMPATIBLE): Move the
2004           initialization which is not inherited through the environment
2005         (_AS_BOURNE_COMPATIBLE): ... to this new macro.
2006         (_AS_RUN): Call _AS_BOURNE_COMPATIBLE, not AS_BOURNE_COMPATIBLE.
2008 2006-10-09  Paul Eggert  <eggert@cs.ucla.edu>
2010         * doc/autoconf.texi (Limitations of Usual Tools): Describe
2011         problems with mkdir -p -m.
2013 2006-10-06  Paul Eggert  <eggert@cs.ucla.edu>
2015         * lib/autoconf/c.m4 (_AC_PROG_PREPROC_WORKS_IFELSE): Remove
2016         comment about ac_cpp_err; it was incorrect, and anyway
2017         ac_cpp_err is being removed below.
2018         * lib/autoconf/general.m4 (_AC_PREPROC_IFELSE): Don't
2019         set ac_cpp_err to 'yesyes' if preproc_warn_flag and werror_flag
2020         are both 'yes'.  In fact, don't bother setting ac_cpp_err at all;
2021         nobody uses it.
2022         (_AC_COMPILE_IFELSE, _AC_LINK_IFELSE): Don't log our funky tests
2023         with werror_flag and conftest.err and so forth.  This is more
2024         compatible with how _AC_PROG_PREPROC_WORKS_IFELSE behaves,
2025         and anyway the user shouldn't normally want to see this gorp logged.
2026         Problem reported by Ralf Wildenhues.
2027         * lib/autoconf/lang.m4 (AC_LANG_WERROR): werror_flag's default is
2028         empty, not 'no', since the rest of the code uses 'test -z'.
2030 2006-10-04  Paul Eggert  <eggert@cs.ucla.edu>
2032         * lib/autoconf/general.m4 (_AC_COMPILE_IFELSE, _AC_LINK_IFELSE):
2033         Use a single call to AC_DO_TOKENS rather than multiple, for
2034         efficiency.
2035         (_AC_LINK_IFELSE): Test that resulting file is executable.
2036         Problem reported by mwoehlke in
2037         <http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00048.html>.
2039         * lib/m4sugar/m4sh.m4 (_AS_TEST_PREPARE): Use "test -x /" rather
2040         than creating a file to use with test -x; this is much faster.
2042 2006-10-02  Bruno Haible  <bruno@clisp.org>
2044         * lib/autom4te.in (Automake-preselections): Add
2045         AM_GNU_GETTEXT_INTL_SUBDIR, for automake 1.10.
2047 2006-09-27  Stepan Kasal  <kasal@ucw.cz>
2049         * doc/autoconf.texi (Writing testsuite.at): Fix a typo: for
2050         standard error, `experr' should be used, not `expout'.
2052 2006-09-26  Paul Eggert  <eggert@cs.ucla.edu>
2054         * lib/autoconf/functions.m4 (AC_FUNC_FSEEKO): Don't compile the
2055         fseeko testing program twice; just use the earlier result.
2056         * lib/autoconf/specific.m4 (_AC_SYS_LARGEFILE_MACRO_VALUE):
2057         Set cache var to 'unknown' (not 'no') if leaving the macro unset
2058         still doesn't let the program compile.
2059         (AC_SYS_LARGEFILE): Test for _LARGE_FILES only if earlier tests
2060         failed.
2062         * lib/autoconf/functions.m4: Fix problems reported by Ralf Wildenhues.
2063         (AC_FUNC_ERROR_AT_LINE): Don't bother to check for error.h.  Just
2064         include it, without including anything else.
2065         (AC_FUNC_FSEEKO): Avoid gcc -Wall warnings about constant
2066         expressions.
2067         (AC_FUNC_STRNLEN): Require AC_USE_SYSTEM_EXTENSIONS.
2069 2006-09-26  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2071         * lib/autoconf/functions.m4 (AC_FUNC_ERROR_AT_LINE): Check for
2072         `error.h', and include it, for a `error_at_line' prototype.
2073         Use a nonempty format string in the link test.
2074         * lib/autoconf/functions.m4 (AC_FUNC_WAIT3): Include <sys/wait.h>,
2075         for a declaration of wait3.
2077 2006-09-26  Paul Eggert  <eggert@cs.ucla.edu>
2079         * NEWS: AC_CHECK_DECL now also works with aggregate objects.
2080         * doc/autoconf.texi (Generic Declarations): Clarify that AC_CHECK_DECL
2081         can apply to constants too, and that it checks for macro defns.
2082         * lib/autoconf/general.m4 (AC_CHECK_DECL): Assume C89 or better,
2083         and simply cast the identifier to void.  This handles structure
2084         values.  Problem reported by Ralf Wildenhues.
2085         * tests/semantics.at (AC_CHECK_DECLS): Also check enums.
2087 2006-09-26  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2089         * tests/semantics.at (AC_CHECK_DECLS): Also check macros,
2090         structure, and function symbols.
2092 2006-09-26  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2094         * tests/semantics.at (AC_CHECK_MEMBERS): Also test with a struct
2095         member.
2097 2006-09-25  Paul Eggert  <eggert@cs.ucla.edu>
2099         * NEWS: Recommend M4 1.4.7 instead of 1.4.6.
2100         * README: Likewise.
2101         * doc/autoconf.texi (Introduction, Why GNU M4): Likewise.
2103 2006-09-25  Paul Eggert  <eggert@cs.ucla.edu>
2104         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2106         * lib/autoconf/functions.m4 (AC_FUNC_OBSTACK): Avoid `gcc -Wall'
2107         warnings (uninitialized value).
2108         (AC_FUNC_UTIME_NULL): Likewise, test for and include <utime.h> if
2109         present.
2110         * lib/autoconf/types.m4 (AC_TYPE_LONG_LONG_INT): Likewise, add
2111         parentheses.
2112         (AC_STRUCT_TM): Likewise, avoid unused variables.
2114 2006-09-20  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2116         * lib/autoconf/c.m4 (_AC_ARG_VAR_LDFLAGS): Update comment.
2117         (_AC_ARG_VAR_LIBS): New macro: let LIBS be precious.
2118         (AC_PROG_CC, AC_PROG_CXX, AC_PROG_OBJC): Call _AC_ARG_VAR_LIBS.
2119         * lib/autoconf/fortran.m4 (AC_PROG_F77, AC_PROG_FC): Likewise.
2120         Report by Olly Betts.
2122 2006-09-19  Eric Blake  <ebb9@byu.net>
2124         * m4/m4.m4: Change copyright.
2125         * configure: Regenerate.
2126         * Makefile.in: Likewise.
2127         * bin/Makefile.in: Likewise.
2128         * doc/Makefile.in: Likewise.
2129         * lib/Makefile.in: Likewise.
2130         * lib/Autom4te/Makefile.in: Likewise.
2131         * lib/autoconf/Makefile.in: Likewise.
2132         * lib/autoscan/Makefile.in: Likewise.
2133         * lib/autotest/Makefile.in: Likewise.
2134         * lib/emacs/Makefile.in: Likewise.
2135         * lib/m4sugar/Makefile.in: Likewise.
2136         * man/Makefile.in: Likewise.
2137         * tests/Makefile.in: Likewise.
2139         * m4/m4.m4 (AC_PROG_GNU_M4): Check for m4 --debugfile support.
2140         * bin/Makefile.am (edit): Substitute M4_DEBUGFILE.
2141         * bin/autom4te.in (handle_m4): Favor --debugfile over misnamed
2142         --error-output, to avoid warnings with M4 2.0.
2144 2006-09-19  Stepan Kasal  <kasal@ucw.cz>
2146         * lib/autoconf/libs.m4 (AH_CHECK_LIB): Fix quoting, to be
2147           consistent with _AH_CHECK_FUNCS and _AH_CHECK_HEADERS.
2148         * lib/autoconf/headers.m4 (AH_CHECK_HEADERS_DIRENT): Likewise.
2150 2006-09-15  Stepan Kasal  <kasal@ucw.cz>
2152         * lib/autoconf/functions.m4 (AC_FUNC_GETMNTENT): Eliminate the
2153         expansion of AC_CHECK_FUNCS.
2155 2006-09-14  Stepan Kasal  <kasal@ucw.cz>
2157         * lib/autoconf/general.m4 (AC_CONFIG_MACRO_DIR): Remove a
2158         mistaken comment: the path has to be relative; do not use
2159         the path at runtime.
2161 2006-09-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2163         * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): Quote the
2164         argument to `--prefix' for sub-configure scripts.
2165         Pass `--silent' to sub-configure scripts.
2166         * tests/torture.at (Configuring subdirectories): Add tests
2167         for both changes.
2168         * doc/autoconf.texi (Setting Output Variables): Fix example to
2169         not show `--silent' being passed to a `configure' re-run.
2171 2006-09-12  Paul Eggert  <eggert@cs.ucla.edu>
2173         * doc/autoconf.texi (Input): Clarify role of AC_CONFIG_MACRO_DIR.
2174         * lib/autoconf/general.m4 (AC_CONFIG_MACRO_DIR): Do not check
2175         for the existence of the directory at configure-time.  That's
2176         too late, anyway.  Problem reported by Stefan Seefeld.
2178         * lib/m4sugar/m4sh.m4 (_AS_TEST_PREPARE): Avoid bug in UnixWare
2179         7.1.4 /usr/bin/posix/sh described by Tim Rice in
2180         <http://lists.gnu.org/archive/html/bug-autoconf/2006-09/msg00017.html>.
2182 2006-09-11  Stepan Kasal  <kasal@ucw.cz>
2184         * tests/local.at (AT_CHECK_M4): Fix this so that the testsuite
2185         works with GNU M4 1.4.3 again; make the normalized form
2186         match the current m4 message; fix the description.
2187         * test/tools.at (autom4te cache): Adapt to the change.
2189 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
2191         * lib/autoconf/functions.m4 (AC_FUNC_MKTIME):  Add year_2050_test
2192         to catch glibc bug 2821
2193         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
2195         Merge from gnulib as follows: Use AC_CHECK_HEADERS_ONCE instead of
2196         AC_CHECK_HEADERS, and likewise for AC_CHECK_FUNCS_ONCE and
2197         AC_CHECK_FUNCS.  Don't check for stdlib.h, since we now
2198         assume C89.
2200 2006-09-08  Stepan Kasal  <kasal@ucw.cz>
2202         * lib/autom4te.in (Autoconf-without-aclocal-m4): Move the
2203         preselections ...
2204         (Autoconf): ... here.
2205         (Autoscan-preselections): Delete.
2207 2006-09-07  Stepan Kasal  <kasal@ucw.cz>
2209         * lib/autom4te.in (Automake-preselections): Preselect
2210         AM_ENABLE_MULTILIB.
2212 2006-09-05  Paul Eggert  <eggert@cs.ucla.edu>
2214         * doc/autoconf.texi (Preset Output Variables): srcdir and
2215         top_srcdir are not necessarily relative.  Problem reported
2216         by Dries Kimpe.
2218 2006-09-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2220         * lib/autoconf/fortran.m4 (_AC_PROG_FC): Prefer xlf90/xlf95 over
2221         f90/f95 because the latter drivers of AIX Fortran 9.1 do not
2222         accept files with extension `.f'.  For consistency, also prefer
2223         xlf over f77.
2224         * doc/autoconf.texi (Fortran Compiler): Remove mention of bug
2225         from last patch.
2227 2006-09-05  Romain Lenglet  <rlenglet@users.forge.objectweb.org>
2229         * lib/autoconf/erlang.m4 (AC_ERLANG_CHECK_LIB): Added substitution
2230         of ERLANG_LIB_VER_* variables.
2231         * doc/autoconf.texi (Erlang Libraries): Document ERLANG_LIB_VER_*
2232         variables.
2234 2006-09-03  Paul Eggert  <eggert@cs.ucla.edu>
2235         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2237         * doc/autoconf.texi (Limitations of Builtins): Document 'unset'
2238         bugs of Bash 2.01 and 2.05a.
2239         (Fortran Compiler): Document that AC_PROG_CC should be called
2240         before AC_PROG_FC, due to a bug in Autoconf.
2242 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
2244         * NEWS: New macro AC_CACHE_CHECK_INT.  It replaces the
2245         old AC_COMPUTE_INT, which now behaves like _AC_COMPUTE_INT
2246         except the first two arguments are reversed.
2247         * doc/autoconf.texi (Caching Results): New macro AC_CACHE_CHECK_INT.
2248         (Generic Compiler Characteristics): AC_COMPUTE_INT no longer
2249         caches nor outputs a diagnostic.  Suggested by Bruno Haible.
2250         * lib/autoconf/general.m4 (AC_CACHE_CHECK_INT): New macro,
2251         equivalent to the old AC_COMPUTE_INT.
2252         (AC_COMPUTE_INT): No longer caches or reports.  New signature.
2253         All uses changed to AC_CACHE_CHECK_INT.
2254         * tests/base.at (AC_CACHE_CHECK_INT): New test.
2255         * tests/mktests.sh (ac_exclude_list): Add AC_CACHE_CHECK_INT.
2257 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
2259         * NEWS: AC_FUNC_FNMATCH, AC_FUNC_FNMATCH_GNU, AC_FUNC_GETLOADVG,
2260         and AC_REPLACE_FNMATCH are now obsolescent in Autoconf.  New
2261         programs should use their Gnulib counterparts.
2262         * doc/autoconf.texi (Particular Functions): Likewise.
2263         (Macro Names, testsuite Invocation): Replace uses of these
2264         obsolete macros with uses of non-obsolete macros.
2266 2006-08-29  Eric Blake  <ebb9@byu.net>
2268         * configure.ac (AC_INIT): Bump to 2.60b.
2269         * NEWS: Update.
2271 2006-08-28  Eric Blake  <ebb9@byu.net>
2273         * lib/autoconf/headers.m4 (AC_HEADER_STAT): Fix logic that was
2274         mistakenly swapped on 2006-08-15.
2276 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
2278         * NEWS: Version 2.60a.
2280 2006-08-25  Stepan Kasal  <kasal@ucw.cz>
2282         * lib/autoconf/general.m4 (_AC_LINK_IFELSE): Remove the IPA/IPO
2283         file created by the PGI compiler.
2285 2006-08-25  Noah Misch  <noah@cs.caltech.edu>
2287         * lib/Autom4te/General.pm (END): Use `File::Path::rmtree' to
2288         simplify the code.
2290 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
2292         Fix Lex library problem reported to us by Julio Garvia.
2293         * doc/autoconf.texi (Particular Programs): YYTEXT_POINTER is
2294         for the default, which the user can override.
2295         * lib/autoconf/programs.m4 (AC_PROG_LEX): Let _AC_PROG_LEX_YYTEXT_DECL
2296         deal with LEXLIB.
2297         (_AC_PROG_LEX_YYTEXT_DECL): Handle caching correctly; the old code
2298         didn't work if some values were cached but not others.  Test for
2299         broken lex libraries like native ia64-hp-hpux11.22; see
2300         <http://sources.redhat.com/ml/binutils/2003-12/msg00337.html>, and
2301         work around the problem by preferring an empty LEXLIB to -lfl or
2302         -ll.  Let the user set LEXLIB='' to indicate no library needed.
2304         * NEWS: Recommend M4 1.4.6 instead of 1.4.5.
2305         * README: Likewise.
2306         * doc/autoconf.texi (Introduction, Why GNU M4): Likewise.
2308 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
2310         Rework to use more-modern build style.
2311         Many files are renamed; all uses of their names were changed.
2312         * .x-sc_trailing_blank: Renamed from .x-sc_trailing_space.
2313         * .x-sc_useless_cpp_parens: New file.
2314         * build-aux/config.guess: Renamed from config/config.guess.  Update.
2315         * build-aux/config.sub: Renamed from config/config.sub.  Update.
2316         * build-aux/elisp-comp: Renamed from config/elisp-comp.
2317         * build-aux/install-sh: Renamed from config/install-sh.  Update.
2318         * build-aux/mdate-sh: Renamed from config/mdate-sh.
2319         * build-aux/missing: Renamed from config/missing.
2320         * build-aux/texinfo.tex: Renamed from config/texinfo.tex.  Update.
2321         * build-aux/vc-list-files: Renamed from config/vc-list-files.
2322         * config/Makefile.am: Removed.
2323         * config/mkinstalldirs: Removed.
2324         * config/move-if-change: Removed.
2325         * m4/m4.m4: Renamed from config/m4.m4.  Add (C) to copyright notice.
2326         * Makefile.am (SUBDIRS): Remove config.
2327         (ACLOCAL_AMFLAGS): Include from m4, not config.
2328         (EXTRA_DIST): Add config/announce-gen, config/prev-version.txt.
2329         (WGET, WGETFLAGS): New macros, since Makefile.maint no longer does this.
2330         (autom4te-update): Rewrite with a loop.  Get from gnulib, not automake.
2331         Fail if there's an error.
2332         * Makefile.cfg (move_if_change): Remove.
2333         (wget_files): Remove.
2334         (cvs_executable_files): New macro.
2335         (cvs_files): Use it.  Remove mkinstalldirs.  Add fdl.texi.
2336         (executable-update): Use $(cvs_executable_files).
2337         (local-checks-to-skip): Remove.
2338         * Makefile.maint: Merge from coreutils, plus add our own changes
2339         (gzip_rsyncable): New macro.
2340         (GZIP_ENV): Use it.
2341         (CVS_LIST): Use build-aux/vc-list-files.
2342         (VERSION_REGEXP): New macro.
2343         (local-checks-available): Add patch-check, $(syntax-check-rules),
2344         check-AUTHORS.
2345         (syntax-check-rules): Compute dynamically.
2346         (sc_cast_of_x_alloc_return_value): Work even if no source files.
2347         (sc_cast_of_alloca_return_value): Likewise.
2348         (sc_prohibit_atoi_atof): Simplify regexp.
2349         (sc_no_if_have_config_h, sc_require_config_h):
2350         (sc_prohibit_assert_without_use,
2351         (sc_obsolete_symbols): Check for O_NDELAY.
2352         (sc_texi_notab): Remove.
2353         (sc-changelog): Don't make an exception for '----' lines.
2354         (.re-list): Remove, so we don't have a junk file behind.
2355         (sc_system_h_headers): Remove the need for .re-list.
2356         (sc_the_the):  New rule.
2357         (sc_tight_scope): Simplify.
2358         (sc_trailing_blank): Renamed from sc_trailing_space.
2359         (longopt_re): New macro.
2360         (sc_two_space_separator_in_usage): New rule.
2361         (sc_unmarked_diagnostics): Look at all files under CVS.
2362         (sc_useless_cpp_parens, patch-check, check-AUTHORS): New rules.
2363         (news-date-check, changelog-check): Version is OK.
2364         (po-check): Look for lib files even if not in CVS.
2365         (copyright-check): Use $() not ``.
2366         (maintainer-distcheck): Do not depend on changelog-check.
2367         (my-distcheck): Depend on $(release_archive_dir)/$(prev-tgz).
2368         Also check for -Wpointer-arith.
2369         (WGET, WGETFLAGS, tgz-md5, tgz-sha1, bz2-md5, bz2-sha1):
2370         (xdelta-md5, xdelta-sha1, tgz-size, bz2-size, xd-size, rel-check):
2371         Remove.
2372         (announcement): Add --gpg-key-id arg.
2373         (cvs-sv): Remove.
2374         (move_if_change): Just use mv.
2375         (local_updates: Remove wget-update, po-update.
2376         (po_repo, do-po-update, po-update, wget_files, get-targets): Remove.
2377         (config.guess-url_prefix, config.sub-url_prefix): Remove.
2378         (ansi2knr.c-url_prefix, texinfo.tex-url_prefix):
2379         (standards.texi-url_prefix, make-stds.texi-url_prefix, target, url):
2380         ($(get-targets)): Remove.
2381         (cvs_files): Remove missing, mkinstalldirs, ansi2knr.c.
2382         (gnulib_repo): Renamed from automake_repo.  Get from gnulib now.
2383         (cvs-update): Get from gnulib.
2384         (emut_upload_commands): gnupload is in build-aux now.
2385         (alpha beta major): Add changelog-check.  Check version.
2386         * configure.ac (AC_CONFIG_AUX_DIR): Renamed from config to build-aux.
2387         (AC_CONFIG_FILES): Remove.
2388         * bin/autoconf.as: Add spaces to avoid distcheck warning.
2389         * config/announce-gen: Sync from coreutils.
2390         * doc/make-stds.texi: Sync from gnulib.
2391         * doc/standards.texi: Likewise.
2392         * man/Makefile.am: Adjust for config -> build-aux renaming.
2393         * tests/Makefile.am: Prefer $(FOO) to @FOO@.
2394         * tests/local.at: Adjust from config -> build-aux renaming.
2395         * tests/tools.at: Likewise.
2396         * tests/torture.at: Likewise.
2398         * NEWS: The C99 check now tests for vararg macros and 64-bit
2399         preprocessor ints.
2400         * doc/autoconf.texi (C Compiler): Document // comments, va_copy.
2401         * lib/autoconf/c.m4 (_AC_PROG_CC_C99): Test varargs macros and
2402         64-bit preprocessor ints.  Check for static initialization of
2403         long long.  Remove unnecessary casts.
2405 2006-08-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2407         * doc/autoconf.texi (Particular Programs): Mention that
2408         @INSTALL@ and @MKDIR_P@ may vary for different output files.
2409         Reported by Alexandre Duret-Lutz.
2411 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
2413         * lib/autoconf/fortran.m4 (_AC_FC_LIBRARY_LDFLAGS): Also ignore
2414         -lgcc?* and -lSystem, for Darwin/MacOS X.  Problem reported by
2415         Bill Northcott in
2416         <http://lists.gnu.org/archive/html/autoconf/2006-08/msg00083.html>.
2418 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
2420         * lib/autoconf/c.m4 (AC_C_CONST): Don't used shadowed vars, to
2421         pacify insanely picky compilers.  Problem reported by Eric Blake.
2423         * doc/autoconf.texi (Posix Variants): INTERACTIVE Unix is no
2424         longer supported by Sun.
2426 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
2428         * NEWS: Autoconf now uses constructs like "#ifdef HAVE_STDLIB_H"
2429         rather than "#if HAVE_STDLIB_H", so that it now works with "gcc
2430         -Wundef -Werror".  Problem reported by David Fang in
2431         <http://lists.gnu.org/archive/html/autoconf/2006-08/msg00045.html>.
2432         * doc/autoconf.texi (Header Templates, Default Includes):
2433         (Particular Functions, Generic Functions, Header Portability):
2434         (Particular Headers, Generic Headers, Generic Declarations, Guidelines):
2435         (Obsolete Macros, AC_FOO_IFELSE vs AC_TRY_FOO):
2436         (Present But Cannot Be Compiled, Preprocessor Symbol Index):
2437         Prefer #ifdef to #if.
2438         * lib/autoconf/c.m4 (AC_C_BIGENDIAN): Prefer #ifdef to #if.
2439         * lib/autoconf/functions.m4 (AC_FUNC_ALLOCA, _AC_FUNC_MALLOC_IF):
2440         (AC_FUNC_MKTIME, AC_FUNC_MMAP, _AC_FUNC_REALLOC_IF):
2441         (AC_FUNC_SELECT_ARGTYPES, AC_FUNC_SETVBUF_REVERSED, _AC_FUNC_VFORK):
2442         Likewise.
2443         * lib/autoconf/headers.m4 (_AC_INCLUDES_DEFAULT_REQUIREMENTS):
2444         (AC_HEADER_RESOLV, AC_HEADER_STAT): Likewise.
2445         * lib/autoconf/specific.m4 (AC_DECL_SYS_SYGLIST):
2446         (AC_SYS_RESTARTABLE_SYSCALLS): Likewise.
2447         * lib/autoconf/headers.m4 (AC_HEADER_STAT): Don't assume that
2448         S_ISDIR etc. are valid for use in #if; POSIX doesn't guarantee
2449         this.
2451 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
2453         * doc/autoconf.texi (Limitations of Usual Tools): Document sed
2454         problems with arg script text that doesn't end in newline, and
2455         with '-e a...'.  Problems reported by Ralf Wildenhues.
2457 2006-08-12  Alexandre Julliard  <julliard@winehq.org>  (tiny change)
2459         * lib/autoconf/libs.m4 (AC_PATH_X_DIRECT): Replace another
2460         check for libXt by a check for libX11.
2462 2006-08-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2464         * doc/autoconf.texi (config.status Invocation): Adjust according
2465         to last change.
2467 2006-08-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2469         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): `config.status
2470         --help' should mention that `--version' outputs configuration
2471         settings.  Report by Bruno Haible.
2473 2006-08-06  Paul Eggert  <eggert@cs.ucla.edu>
2475         Fix test suite failures reported by Pierre in
2476         <http://lists.gnu.org/archive/html/bug-autoconf/2006-08/msg00005.html>.
2477         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Don't claim
2478         the compiler created a file "b.out" when it didn't create anything
2479         at all.
2480         * lib/autoconf/specific.m4 (AC_SYS_INTERPRETER):
2481         Discard stderr too, when invoking the test script.
2483 2006-08-05  Alexandre Julliard  <julliard@winehq.org>  (tiny change)
2485         * lib/autoconf/libs.m4 (AC_PATH_XTRA): Fixed a typo
2486         in the restoring of the werror flag.
2488 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
2490         * doc/autoconf.texi (Volatile Objects): Be even a little
2491         less skeptical about "volatile", after discussion with
2492         Bruno Haible on bug-gnulib.
2493         (Limitations of Usual Tools): Warn about sed stripping
2494         leading white space from text.  From Bruno Haible.
2496 2006-07-20  Paul Eggert  <eggert@cs.ucla.edu>
2498         * lib/autoconf/libs.m4 (AC_PATH_XTRA): Don't use -R if the
2499         compiler complains about it, even if things works after the
2500         complaint.  Problem reported by Peter O'Gorman.
2502         * doc/autoconf.texi (Preset Output Variables): Document CFLAGS,
2503         CPPFLAGS, and LDFLAGS better.  Problem reported by Bruno Haible.
2504         Similarly for CXXFLAGS, OBJCFLAGS, ERLCFLAGS.
2506 2006-07-17  Paul Eggert  <eggert@cs.ucla.edu>
2508         * lib/autoconf/libs.m4 (AC_PATH_XTRA): Do the check for space
2509         after -R regardless of host.  Patrick Welche reports that this
2510         fixes things on NetBSD 3.99.
2512         * NEWS: Recommend M4 1.4.5.
2513         * README: Likewise.
2514         * doc/autoconf.texi (Introduction, Why GNU M4): Likewise.
2515         * tests/tools.at (autom4te cache): Update wording of diagnostic
2516         to match M4 1.4.5.
2518 2006-07-07  Paul Eggert  <eggert@cs.ucla.edu>
2520         * doc/autoconf.texi (C Compiler): Add a ref to Volatile Objects
2521         under AC_C_VOLATILE.
2522         (Volatile Objects): Be a little less skeptical about what
2523         "volatile" means.  Derived from thoughts by Ben Pfaff in
2524         <http://lists.gnu.org/archive/html/bug-gnulib/2006-07/msg00092.html>.
2526 2006-07-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2528         * doc/autoconf.texi: Fix some typos.
2530 2006-07-07  Paul Eggert  <eggert@cs.ucla.edu>
2532         * tests/torture.at (Configuring subdirectories): Set CONFIG_SITE
2533         more globally, since the 2006-06-30 patch didn't suffice.  Problem
2534         reported by Keith Marshall.  Also, don't bother with builddir2,
2535         since it shouldn't be needed any more.
2537 2006-07-07  Paolo Bonzini  <bonzini@gnu.org>
2539         * doc/autoconf.texi (Generic compiler characteristics):
2540         Document AC_COMPUTE_INT.  Fix wrong statements on Default
2541         Includes for AC_CHECK_SIZEOF and AC_CHECK_ALIGNOF.
2543         * lib/autoconf/general.m4 (AC_COMPUTE_INT): New.
2544         (_AC_COMPUTE_INT): Add obsoletion warnings.
2545         * lib/autoconf/types.m4 (AC_CHECK_SIZEOF, AC_CHECK_ALIGNOF): Use
2546         AC_COMPUTE_INT.
2548         * NEWS: Document change.
2550 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
2552         * doc/autoconf.texi (Volatile Objects): New section.
2554         * NEWS: Document previous change.
2556 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
2558         * lib/autoconf/types.m4 (AC_TYPE_LONG_LONG_INT):
2559         Require that long long int be at least 64 bits wide.  C99 requires
2560         this and enough programs depend on it so we should check for it.
2561         Bruno Haible reports in
2562         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00286.html>
2563         that long long int is 32 bits wide with some nonstandard compilers.
2564         (AC_TYPE_UNSIGNED_LONG_LONG_INT): Likewise.
2566 2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
2568         * tests/torture.at (Configuring subdirectories): Set CONFIG_SITE
2569         to a nonexistent file, so that we don't have to worry about
2570         a local site configuration that doesn't use /usr/local.
2571         Problem reported by Keith Marshall in
2572         <http://lists.gnu.org/archive/html/bug-autoconf/2006-06/msg00133.html>.
2574 2006-06-28  Paul Eggert  <eggert@cs.ucla.edu>
2576         * doc/autoconf.texi: Be more consistent about using @acronym with
2577         "HP" and "HP-UX".  Remove mention of OSF; the old version wasn't
2578         quite right (it talked about "OSF/Tru64", even though the
2579         operating systems were called OSF/1, Digital UNIX, and Tru64 UNIX,
2580         and it even mentioned "OSF 4"!) and at this point there's little
2581         reason to talk about OSF any more, since it died in 1994.
2582         (Specific Compiler Characteristics): Simplify example of
2583         negative-size array.
2584         (File Descriptors): Reorder to make the text flow better.
2585         Remove joke about "appreciate the various levels"; I didn't get it.
2586         Add remark about HP-UX sh -x bug with stderr noted by Bob Proulx in
2587         <http://lists.gnu.org/archive/html/bug-coreutils/2006-06/msg00225.html>.
2588         (File Descriptors, Limitations of Usual Tools):
2589         Tone down the advice against renaming or removing open files.
2590         (Limitations of Usual Tools): Add a new section, on 'rm'.
2592 2006-06-26  Stepan Kasal  <kasal@ucw.cz>
2594         * lib/autoconf/libs.m4 (_AC_PATH_X_DIRECT): Use -lX11, not
2595         -lXt in LIBS, idea from Karsten Hopp; this was due since
2596         this change:
2598         2005-09-18  Paul Eggert  <eggert@cs.ucla.edu>
2599         * lib/autoconf/libs.m4 (_AC_PATH_X_DIRECT): Look for X11/Xlib.h
2600         and XrmInitialize rather than X11/Intrinsic.h and XtMalloc
2601         (which belong to Xt, not X itself).  See Debian bug 327655.
2603 2006-06-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2605         * configure.ac (AC_INIT): Bump to 2.60a.
2606         * NEWS: Update.
2608 2006-06-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2610         Version 2.60.
2612         * configure.ac, NEWS: Update.
2614 2006-06-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2616         * config/texinfo.tex: Sync from upstream.
2618         * bin/autom4te.in (handle_traces): Transform the `@S|@'
2619         quadrigraph correctly in traces.
2621         * NEWS, lib/Autom4te/C4che.pm, lib/autoconf/functions.m4:
2622         Fix typos.
2624         * lib/autoconf/status.m4 (_AC_OUTPUT_FILE): Expand tests for
2625         datarootdir-related errors only if AC_DATAROOTDIR_CHECKED is
2626         not defined.
2627         * doc/autoconf.texi (Changed Directory Variables): New node,
2628         to document the whole `datarootdir' business a bit better.
2629         * NEWS: Update.
2630         * tests/torture.at (datarootdir workaround): Extend test.
2631         Prompted by report by Alexandre Julliard.
2633 2006-06-22  Paul Eggert  <eggert@cs.ucla.edu>
2635         * lib/autoconf/c.m4 (_AC_PROG_CC_C89): Check for C89 incompatibility
2636         when using default mode of IBM C 6 for AIX.  Problem and two-line
2637         fix reported by Larry Jones.
2639 2006-06-22  Alexandre Julliard <julliard@winehq.org>
2641         * lib/autoconf/status.m4 (_AC_OUTPUT_FILE): Avoid warning
2642         about literal '${datarootdir}' if a definition is found in the
2643         output file.
2645 2006-06-20  Paul Eggert  <eggert@cs.ucla.edu>
2647         * NEWS: Use "M4" rather than "m4" when appropriate.
2648         Problem reported by Eric Blake.
2649         * doc/autoconf.texi: Likewise.
2650         Use @acronym around BSD, GCC, and GNU when appropriate.
2651         (Why GNU M4): Renamed from "Why GNU m4".
2652         (Redefined M4 Macros): Mention that Posix
2653         m4wrap takes only 1 argument, but GNU M4 1.4.x takes more.
2654         (Buffer Overruns): Mention size_t and ptrdiff_t as alternatives
2655         to int.
2657 2006-06-20  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2659         * bin/autom4te.in (handle_output): Do not forbid the empty
2660         pattern.
2661         * tests/tools.at (autoconf: the empty token): New test.
2663 2006-06-20  Stepan Kasal  <kasal@ucw.cz>
2665         * lib/m4sugar/m4sugar.m4 (m4_init): Merge the two m4_wrap
2666         calls, so that we do not care whether they are LIFO or FIFO;
2667         in the m4_wrap, do not check which diversion is the topmost
2668         one, just check that the stack is balanced at the end.
2669         * lib/m4sugar/m4sh.m4 (AS_INIT): We are going to change the
2670         base diversion forever--pop the previous diversion before
2671         opening the new one; consequently, remove the m4_wrap call.
2672         * lib/autotest/general.m4 (AT_INIT): Likewise.
2673         * tests/m4sugar.at: Do not use
2674         m4_wrap([m4_diversion_pop([..])]), for educational purposes.
2676 2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
2677         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2679         * NEWS: Document that m4wrap/m4_wrap might not be LIFO.
2680         * doc/autoconf.texi (Redefined M4 Macros): Likewise.
2681         Rework example of m4wrap token-pasting trouble so that it doesn't
2682         care whether it's LIFO or FIFO.
2683         Fix some "contrary to"s that are awkward in English.
2685 2006-06-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2687         * lib/autoconf/types.m4 (_AC_TYPE_INT): Set `$ac_cv_c_int$1_t'
2688         to `yes' instead of `int$1_t' if the type is found, for more
2689         consistent configure output (where $1 is the number of bits).
2690         (_AC_TYPE_UINT): Likewise for `uint$1_t'.
2691         Suggested by Bruno Haible.
2693         * lib/autoconf/types.m4 (_AC_TYPE_UNSIGNED_INT): Solaris 2.5.1
2694         needs _UINT8_T and _UINT64_T defines as well, to avoid clashes
2695         with system headers.  Report by Bruno Haible.
2697 2006-06-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2699         * config/config.guess, config/config.sub: Sync from upstream.
2701         * bin/Makefile.am (autoconf.in): Use `--melt' for autom4te,
2702         in order to avoid picking up an older installed frozen m4sh.m4f.
2703         Besides an outdated shell startup, this could have been created
2704         by an earlier M4 version with incompatible frozen file format.
2706 2006-06-16  Paul Eggert  <eggert@cs.ucla.edu>
2708         * README: Recommend m4 1.4.4 instead of 1.4.3..
2709         * doc/autoconf.texi: Likewise.
2710         (Special Chars in Names): Say that $(.FOO) is portable, as
2711         suggested by Stepan Kasal.
2712         (Installation Directory Variables, Build Directories):
2713         (Automatic Remaking, Subdirectories, Fortran Compiler):
2714         (Making testsuite Scripts, Defining Directories):
2715         Quote variable usages better.
2716         (Making testsuite Scripts): Add clean-local rule to makefile
2717         snippet, by Eric Blake.
2718         (Installation Directory Variables): Fix table item font.
2719         Reword slightly to clarify.  Generalize advice about
2720         not using special characters to include all file-related
2721         vars, not just VPATH.
2722         (Special Chars in Variables): Warn about special characters in
2723         $(srcdir) too.
2724         (Assignments): Clarify default-value example as suggested by
2725         Ralf Wildenhues in
2726         <http://lists.gnu.org/archive/html/autoconf-patches/2006-06/msg00072.html>.
2727         (Special Shell Variables): Note leading ./ or ../, as suggested
2728         by Eric Blake.
2729         (Limitations of Builtins): Under cd, warn about CDPATH.
2730         (The Make Macro MAKEFLAGS): Untabify.  Problem reported by
2731         Ralf Wildenhues.
2733 2006-06-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2735         * doc/autoconf.texi (Configuration Actions): Remove duplicate
2736         `@var', for texi2html.
2737         (Systemology): Some more word wrapping, for DVI output.
2738         (autom4te Invocation): The short option for `--melt' is `-M',
2739         not `-m'.
2741 2006-06-15  Paul Eggert  <eggert@cs.ucla.edu>
2743         * doc/autoconf.texi: More formatting and English tweaks,
2744         many suggested by Ralf Wildenhues.
2745         Reword to avoid "@code{...}'s" and the like, since it's ugly
2746         with Emacs info mode.  discontents -> woes.
2747         Put a few "will"s back.  time stamp -> timestamp.
2748         side-effect -> side effect.
2750 2006-06-14  Paul Eggert  <eggert@cs.ucla.edu>
2752         * doc/autoconf.texi (Initializing configure, Shell Substitutions):
2753         Warn about $@ not persisting.  Problem reported by Julien Danjou in
2754         <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=372179>.
2755         (Special Chars in Names): Renamed from Leading _ in Macro Names.
2756         Mention other special chars, too.
2758 2006-06-14  Eric Blake  <ebb9@byu.net>
2760         * doc/autoconf.texi (The Make Macro MAKEFLAGS): New node.
2762 2006-06-13  Paul Eggert  <eggert@cs.ucla.edu>
2764         * doc/autoconf.texi: Some systematic minor improvements, as
2765         follows.  Use "makefile" when talking about makefiles
2766         generally (which might be named "makefile" or "Makefile" or even
2767         "foo.mk"), "Makefile" when talking about a specific makefile
2768         called "Makefile".  This unclutters the text from weird quotes
2769         (e.g., "`Makefile's" in info mode).  Similarly, use "@var{foo}
2770         values" rather than "@var{foo}s" and similar constructs containing
2771         "}s".  Use "Make rules" rather than "Makefile rules".  Minor
2772         English-language improvements.  Change the prefix "sub-" to "sub"
2773         and "re-" to "re".
2774         Put blank lines around examples more consistently.
2775         Avoid "rather" and "very" as intensifiers.
2776         Avoid "will" as an auxiliary.
2777         (Limitations of Make): Split this node into....
2778         (Portable Make, $< in Ordinary Make Rules, Failure in Make Rules):
2779         (Leading _ in Macro Names, Backslash-Newline-Newline):
2780         (Backslash-Newline Comments, Long Lines in Makefiles):
2781         (Macros and Submakes, The Make Macro SHELL, Comments in Make Rules):
2782         (obj/ and Make, make -k Status, VPATH and Make):
2783         (VPATH and Double-colon, $< in Explicit Rules):
2784         (Automatic Rule Rewriting, OSF/Tru64 Directory Magic):
2785         (Make Target Lookup, Single Suffix Rules, Timestamps and Make):
2786         New nodes, resulting from splitup of Limitations of Make.
2787         All cross-references changed.  Raise the top node from
2788         a section to a chapter, and all subnodes accordingly.
2789         Redo the introductory wording to match the new organization.
2790         (Installation Directory Variables): Use an example that is
2791         closer to what Autoconf actually does.  Mention that VPATH's
2792         value should not contain metacharacters or white space.
2793         (Fortran Compiler): Fix a VPATH bug in an example.
2794         (Leading _ in Macro Names): Mention that this problem is no longer
2795         of practical concern.
2796         (VPATH and Make): Reword the advice to make it clearer
2797         that Autoconf and Automake support VPATH in non-GNU make, but
2798         many packages have bugs in this area.
2799         ($< in Explicit Rules): Refer to Build Directories rather
2800         than using a (non-VPATH-safe) example.
2801         (Automatic Rule Rewriting): Mention the sort of disaster that
2802         can ensue with Solaris-style rule rewriting with VPATH.
2804 2006-06-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2806         * doc/install.texi (Compilers and Options): Weaken the
2807         suggestion to use GNU make for VPATH builds.
2809         * lib/autom4te.in (Automake-preselections): Add AM_PROG_CXX_C_O,
2810         AM_PROG_F77_C_O, AM_PROG_FC_C_O, AC_FC_SRCEXT, AC_FC_FREEFORM.
2812         * lib/autoconf/programs.m4 (AC_PROG_MAKE_SET): Fix M4 quotation
2813         in regular expression.
2815 2006-06-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2817         * doc/autoconf.texi (Installation Directory Variables):
2818         Drop extra @samp from `@table @samp' item.
2819         (Limitations of Usual Tools): Comment fix.
2820         Do not nest @samp just to point to other table items.
2821         (Writing testsuite.at) <AT_CHECK>: The second argument to
2822         `@dvar' is already @samp'ed.
2823         (Making testsuite Scripts) <AC_CONFIG_TESTDIR>: Likewise,
2824         do not use @var in the second argument.
2826 2006-06-07  Paul Eggert  <eggert@cs.ucla.edu>
2828         * lib/m4sugar/m4sh.m4 (_AS_DETECT_BETTER_SHELL): Look for
2829         $as_shell.exe too.  Problem reported by Andreas Buening in
2830         <http://lists.gnu.org/archive/html/autoconf/2006-06/msg00038.html>.
2832 2006-06-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2834         * lib/autoconf/functions.m4 (AC_FUNC_ALLOCA): Work around
2835         `unused variable' compiler warning, for `-Wall -Werror'.
2836         Reported by Jaap Haitsma in
2837         <http://lists.gnu.org/archive/html/bug-autoconf/2006-06/msg00012.html>.
2839 2006-06-06  Paul Eggert  <eggert@cs.ucla.edu>
2841         * lib/autoconf/c.m4 (AC_PROG_CC_C_O): Remove core file, in
2842         case the compiler dumps core.  Problem reported for
2843         OpenServer 5.0.7 by Tim Rice in
2844         <http://lists.gnu.org/archive/html/bug-autoconf/2006-06/msg00019.html>.
2845         * lib/autoconf/general.m4 (_AC_COMPILE_IFELSE, _AC_LINK_IFELSE):
2846         Likewise.
2848 2006-06-06  Tim Rice <tim@multitalents.net>.
2850         * lib/freeze.mk: Quiet check-forbidden-patterns so the string
2851         "ERROR" only shows up in "make check" output if there is an
2852         error.
2854 2006-06-06  Eric Blake  <ebb9@byu.net>
2856         * tests/tools.at (automatically allowed tokens): Fix typo.
2858 2006-06-05  Paul Eggert  <eggert@cs.ucla.edu>
2860         * NEWS: Don't blame non-GNU VPATH compatibility issues on Automake.
2862         * doc/autoconf.texi (Integer Overflow): Mention that INT_MIN % -1
2863         typically overflows on x86 CPUs, even though the C standard
2864         requires otherwise.
2866 2006-06-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2868         * configure.ac (AC_INIT): Bump to 2.59e.
2869         * NEWS: Update.
2871 2006-06-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2873         Version 2.59d.
2875         * config/texinfo.tex: Sync from upstream.
2877         * bin/autoreconf.in: Trace `LT_CONFIG_LTDL_DIR'; if it has been
2878         seen, invoke libtoolize with `--ltdl' argument.
2879         * lib/autom4te.in (Autoreconf-preselections): Adjust.
2880         * NEWS: Update.
2881         Suggested by Eric Blake.
2883 2006-06-05  Paul Eggert  <eggert@cs.ucla.edu>
2885         * NEWS: Whoops!  AC_FUNC_STRNLEN isn't obsolescent.  Problem
2886         reported by Ralf Wildenhues.
2887         * doc/autoconf.texi (AC_FUNC_STRNLEN): Likewise.
2889 2006-06-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2891         * THANKS: Update.
2893 2006-06-05  Paul Eggert  <eggert@cs.ucla.edu>
2895         * doc/autoconf.texi: Modernize some of the references to Solaris.
2897 2006-06-05  Stepan Kasal  <kasal@ucw.cz>
2899         * lib/m4sugar/m4sugar.m4 (m4_require): Modify the error
2900         message issued by AC_REQUIRE.
2901         * tests/m4sugar.at: Check m4_require's error message.
2902         * tests/base.at: Check AC_REQUIRE's error message.
2903         * tests/local.at (AT_CHECK_M4): New macro, almost identical
2904         to...
2905         (AT_CHECK_AUTOM4TE): ... which is now a thin wrapper around
2906         AT_CHECK_M4.
2907         (AT_CHECK_AUTOCONF): Use AT_CHECK_M4; no longer support
2908         `expout' as the last parameter.
2909         * tests/tools.at: Adapt to the above change.
2911 2006-06-04  Stepan Kasal  <kasal@ucw.cz>
2913         * doc/autoconf.texi (Limitations of Usual Tools): Correct
2914         information about race-free implementations of mkdir.
2916 2006-06-04  Eric Blake  <ebb9@byu.net>
2918         * bin/autoreconf.in (help): Document M4 environment variable.
2919         * bin/autoconf.as (Usage): Likewise.
2920         * bin/autom4te.in (help): Likewise.
2921         * doc/autoconf.texi (autom4te Invocation): Likewise.
2923 2006-06-04  Paul Eggert  <eggert@cs.ucla.edu>
2925         * NEWS: GNU make now recommended for VPATH builds.
2926         Mention that some macros are now documented to be obsolescent.
2927         * doc/autoconf.texi:
2928         Prefer "current" to "modern" to describe
2929         currently-used (albeit perhaps old-fashioned) hosts.
2930         Mention which ancient features no longer need to be worried about.
2931         setgid -> set-group-ID
2932         setuid -> set-user-ID (these are the Posix terms)
2933         Fix some misuses of "only".
2934         (AC_C_BACKSLASH_A, AC_C_CONST, AC_C_PROTOTYPES):
2935         (AC_C_STRINGIZE, AC_C_VOLATILE, AC_FUNC_CLOSEDIR_VOID):
2936         (AC_FUNC_GETPGRP, AC_FUNC_LSTAT, AC_FUNC_MEMCMP):
2937         (AC_FUNC_SELECT_ARGTYPES, AC_FUNC_SETPGRP):
2938         (AC_FUNC_SETVBUF_REVERSED, AC_FUNC_STAT, AC_FUNC_STRFTIME):
2939         (AC_FUNC_STRNLEN, AC_FUNC_UTIME_NULL, AC_FUNC_VPRINTF):
2940         (AC_HEADER_DIRENT, AC_HEADER_STAT, AC_HEADER_STDC):
2941         (AC_HEADER_SYS_WAIT, AC_HEADER_TIME, AC_ISC_POSIX):
2942         (AC_PROG_GCC_TRADITIONAL, AC_STRUCT_TM):
2943         Mention that these macros are obsolescent.
2944         (Installation Directory Variables): shall -> should
2945         (File Descriptors): Mention that 0, 1, 2 might get reopened.
2946         Mention that it's now safe to use 3 and 4.
2947         (Limitations of Usual Tools): cp -r is now specified by Posix.
2948         Omit longwinded and obsolescent discussion of cp -f.
2949         Modernize discussion of expr, ls.
2950         (Limitations of Make): Modernize discussion of VPATH builds.
2951         Mention $? as a workaround in some cases.
2952         * doc/install.texi (Basic Installation):
2953         Mention "./configure; make; make install" first.  Be more
2954         specific about why this file is generic.  Remove unnecessary
2955         parens.  Remove misleading "only".  Remove obsolete advice
2956         about csh.  Don't say "configure" takes awhile; say it
2957         might take a while.  Suggest CFLAGS=-g rather than CFLAGS=-O2,
2958         and CC=c99 rather than CC=c89, as these are blessed by current
2959         Posix.  Recommend GNU make if doing a VPATH build.
2961 2006-06-03  Paul Eggert  <eggert@cs.ucla.edu>
2963         * doc/autoconf.texi: Use a consistent style "$ @kbd{...}" for
2964         examples involving shell prompts.
2966 2006-06-02  Stepan Kasal  <kasal@ucw.cz>
2967         and Paul Eggert  <eggert@cs.ucla.edu>
2969         * doc/autoconf.texi (Here-Documents): Add details about the
2970         pre-ksh93g bug.  Reword slightly to make it clearer.  Consistently
2971         use "here-documents" instead of "here documents".
2973 2006-06-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2975         * config/texinfo.tex, doc/standards.texi: Sync from upstream.
2977 2006-06-01  Paul Eggert  <eggert@cs.ucla.edu>
2979         * doc/autoconf.texi (File System Conventions): Warn about ":"
2980         anywhere in directory names.
2982 2006-05-31  Paul Eggert  <eggert@cs.ucla.edu>
2984         * lib/autoconf/general.m4 (_AC_DO_ECHO): Be even more conservative
2985         about quoting the case statement, just in case.
2986         * doc/autoconf.texi (Here-Documents): Mention that the ksh bug
2987         was fixed in ksh93g; reported by Ralf Wildenhues.
2989 2006-05-31  Stepan Kasal  <kasal@ucw.cz>
2991         * doc/autoconf.texi (System Services): Do not document
2992         overriding EXEEXT via ac_cv_exeext=ext.
2993         (Particular Programs) <AC_PROG_MKDIR_P>:
2994         Document that ${MKDIR_P} understands --.
2995         * lib/autoconf/programs.m4 (AC_PROG_MKDIR_P): Improve the
2996         comment.
2998 2006-05-31  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3000         * lib/m4sugar/m4sh.m4 (_AS_DIRNAME_PREPARE): Guard against test
3001         argument with leading hyphen.  Problem reported by Paul Eggert.
3003 2006-05-30  Paul Eggert  <eggert@cs.ucla.edu>
3005         * lib/autoconf/general.m4 (_AC_DO_ECHO): Be more conservative
3006         about quoting ac_try: quote all of it, if any of it seems suspicious.
3007         This means we don't have to worry about ${ or sed any more.
3008         Also, double-quote the case statement, to work around misuses via
3009         underquoting as reported by Ralf Wildenhues in
3010         <http://lists.gnu.org/archive/html/autoconf-patches/2006-05/msg00169.html>.
3011         (_AC_EVAL_STDERR): Revert, since evidently some packages rely on this
3012         undocumented and dangerous macro.
3013         Problem reported by Ralf Wildenhues in
3014         <http://lists.gnu.org/archive/html/autoconf-patches/2006-05/msg00168.html>.
3016 2006-05-31  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3018         * lib/m4sugar/m4sh.m4 (_AS_DIRNAME_PREPARE): Check whether
3019         `dirname -- /' returns `/', for SunOS dirname scripts that escaped.
3020         Report by Sam Sirlin <sam@kalessin.jpl.nasa.gov>.
3022 2006-05-30  Paul Eggert  <eggert@cs.ucla.edu>
3024         * lib/autoconf/general.m4: Revert AC_TRY_EVAL and AC_TRY_COMMAND,
3025         since evidently some packages rely on the old, broken behavior.
3026         Problem reported by Ralf Wildenhues in
3027         <http://lists.gnu.org/archive/html/autoconf-patches/2006-05/msg00160.html>.
3028         (AC_TRY_EVAL, AC_TRY_COMMAND, _AC_EVAL): Go back to the
3029         pre-2006-05-26 definitions, but leave in the comments that
3030         these macros are dangerous and should not be used.
3031         (_AC_DO_ECHO): Renamed from _AC_EVAL_ECHO.  All callers changed.
3032         (_AC_DO): Renamed from _AC_EVAL.  All callers changed.
3033         (_AC_DO_STDERR): Renamed from _AC_EVAL_STDERR.  All callers changed.
3034         (_AC_DO_VAR): Renamed from AC_TRY_EVAL.
3035         (_AC_DO_TOKENS): Renamed from AC_TRY_COMMAND.
3037 2006-05-29  Paul Eggert  <eggert@cs.ucla.edu>
3039         * lib/autoconf/status.m4 (AC_OUTPUT_MAKE_DEFS): Rewrite to avoid
3040         the use of 'tr', since this is our only use of 'tr'.
3042 2006-05-29  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3043         and Paul Eggert  <eggert@cs.ucla.edu>
3045         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE):
3046         Don't assume 'grep' works on long lines, since AIX grep doesn't.
3048 2005-05-28  Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3050         * lib/autoconf/status.m4 (_AC_OUTPUT_FILE): Do not use `grep' on
3051         the output file in the `${datarootdir}' test.
3053 2005-05-28  Stepan Kasal  <kasal@ucw.cz>
3054         and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3056         * lib/autoconf/status.m4 (_AC_OUTPUT_FILE): If we have not seen
3057         mention of `datarootdir' in the input file(s), but literal
3058         `${datarootdir}' in the output file, and we haven't warned yet,
3059         then warn as well: the user may have (erroneously) used
3060         `AC_SUBST([mydatadir], [$datadir/my])' instead of the correct
3061         `AC_SUBST([mydatadir], ['${datadir}/my'])'.
3062         * tests/torture.at (datarootdir workaround): Extend this test.
3063         * NEWS: Update.
3065 2006-05-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3066         and Paul Eggert  <eggert@cs.ucla.edu>
3068         * doc/autoconf.texi (autoheader Invocation): The first argument to
3069         `AC_DEFINE_UNQUOTED' need not be a literal.  Mention the
3070         alternatives and clear up the language a bit.
3072 2006-05-27  Paul Eggert  <eggert@cs.ucla.edu>
3074         * NEWS: Reword notice for AC_TRY_COMMAND, AC_TRY_EVAL,
3075         ac_config_guess, ac_config_sub, ac_configure.
3076         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS):
3077         Fix typo that prevented an unnecessary space from being removed.
3078         Problems reported by Ralf Wildenhues in:
3079         http://lists.gnu.org/archive/html/autoconf-patches/2006-05/msg00143.html
3081 2006-05-26  Paul Eggert  <eggert@cs.ucla.edu>
3083         * doc/autoconf.texi (Particular Programs, Limitations of Usual Tools):
3084         Use better wording to talk about AC_PROG_MKDIR_P's thread-safety.
3085         Don't use the term "thread-safe" to talk about mkdir race
3086         conditions, since the problem is more a process than a thread
3087         issue.  Problem reported by Stepan Kasal in:
3088         http://lists.gnu.org/archive/html/autoconf-patches/2006-05/msg00088.html
3089         * lib/autoconf/programs.m4 (AC_PROG_MKDIR_P): Use code that mimics
3090         the test for 'install' more closely.  Look at MKDIR_P first.
3091         Look in the PATH, and at /opt/sfw/bin.
3092         Look for a 'gmkdir' program as well (Solaris 10 /opt/sfw/bin/gmkdir).
3093         Don't bother to try mkdir -p, since we already check mkdir --version;
3094         just look at the version number.  (There's no easy way to check
3095         for race-free implementations.)
3096         * tests/tools.at (autoconf: subdirectories): Adjust to above
3097         changes, since MKDIR_P now might end in "/mkdir -p".
3099         * doc/autoconf.texi (autoheader Invocation): Mention that the
3100         first arg of AC_DEFINE_UNQUOTED must be a literal.
3101         Problem reported by Ben Pfaff in
3102         <http://lists.gnu.org/archive/html/bug-autoconf/2006-05/msg00090.html>.
3104         * NEWS: Mention that AC_TRY_COMMAND and AC_TRY_EVAL may be removed.
3105         * doc/autoconf.texi (Special Chars in Variables): New section.
3106         (Preset Output Variables): Warn about special chars in CPPFLAGS.
3107         (Installation Directory Variables): Quote $(datadir) better.
3108         (Limitations of Builtins): Describe some of eval's trickiness.
3110         * lib/autoconf/c.m4 (AC_PROG_CC_C_O): Simplify quoting.
3111         * lib/autoconf/fortram.m4 (_AC_PROG_FC_V_OUTPUT): Likewise.
3112         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Put leading space
3113         in front of every arg, not just trailing args.  Quote apostrophes.
3114         (_AC_EVAL_ECHO): New macro.
3115         (_AC_EVAL, AC_EVAL_STDERR): Use it.  Quote arg of eval.
3116         (AC_TRY_EVAL, AC_TRY_COMMAND): Mention that these macros might get
3117         removed.
3118         (_AC_LINK_IFELSE): Use proper rule for shell continuation lines,
3119         exposed by quoting of eval argument.  Put the command on line line
3120         so it logs better.
3121         * lib/autoconf/libs.m4 (_AC_PATH_X_XMKMF): Use eval more safely.
3122         (_AC_PATH_X, AC_PATH_X): Quote more safely.
3123         * lib/autoconf/programs.m4 (AC_PROG_MAKE_SET): Use eval more safely.
3124         * lib/autoconf/specific.m4 (AC_SYS_LONG_FILE_NAMES): Don't use eval.
3125         * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): Minor style change.
3126         Handle special chars in prefix, ac_srcdir, ac_aux_dir.
3127         Use eval more safely.
3128         (_AC_OUTPUT_CONFIG_STATUS): Adjust to above changes.
3129         * lib/m4sugar/m4sh.m4 (AS_VAR_GET): Note that this API needs
3130         to be replaced.
3131         * tests/base.at (AC_TRY_COMMAND): Use proper rule for shell continuation
3132         lines, exposed by quoting of eval argument.
3134 2006-05-26  Stepan Kasal  <kasal@ucw.cz>
3135         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3137         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Drop the
3138         initialization of `ac_cv_exeext', do not override it if it was
3139         already set, unless it was set to `no', for compatibility with
3140         Autoconf-2.13, and comment this.
3141         Do not export `ac_cv_exeext', Libtool hasn't needed this for years.
3142         (_AC_COMPILER_EXEEXT_DEFAULT): Likewise, do not export it.
3143         (_AC_COMPILER_EXEEXT_WORKS, _AC_COMPILER_EXEEXT_CROSS): Typos.
3144         * doc/autoconf.texi (Compilers and Preprocessors) <EXEEXT>:
3145         Document that this test may be overridden by setting
3146         `ac_cv_exeext'.
3148 2006-05-26  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3150         Revert these two patches:
3152         2006-04-06  Eric Blake  <ebb9@byu.net>
3153         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_O): Inside cache
3154         check, s/ac_exeext/ac_cv_exeext/.  Fixes regression introduced
3155         2006-04-01.
3157         2006-04-01  Stepan Kasal  <kasal@ucw.cz>
3158         Clean up _AC_COMPILER_EXEEXT* macros.
3159         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Don't try to
3160           detect exeext, it will be done by _AC_COMPILER_EXEEXT_O; just set
3161           ac_file to the name of the default output file and call
3162           _AC_COMPILER_EXEEXT_WORKS.  Move the definition of ac_files and the
3163           initial `rm' of the candidate files...
3164         (_AC_COMPILER_EXEEXT): ... here and simplify them.  Moreover, use
3165           the same list in subsequent `rm' calls, and for the temporary
3166           redefinition of ac_clean_files; call _AC_COMPILER_OBJEXT at the end,
3167           and don't call the other _AC_COMPILER_EXEEXT_* macros directly, use...
3168         (_AC_COMPILER_EXEEXT_TESTS): ... this new macro.
3169         (_AC_COMPILER_EXEEXT_O): Don't export ac_cv_exeext, it's not needed (or
3170           no longer needed) by libtool.  Make it a cache check.
3171         (_AC_COMPILER_EXEEXT_CROSS): Remove the comment, it was obviously
3172           copied here by mistake.
3173         (AC_NO_EXECUTABLES): Redefine _AC_COMPILER_EXEEXT_TESTS, not
3174           _AC_COMPILER_EXEEXT.
3175         * lib/autoconf/c.m4 (AC_PROG_CC, AC_PROG_CXX, AC_PROG_OBJC): Do not call
3176           _AC_COMPILER_OBJEXT directly.
3177         * lib/autoconf/fortran.m4 (_AC_PROG_FC): Likewise.
3179 2006-05-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3181         * doc/autoconf.texi (Limitations of Usual Tools) < sed (`t')>:
3182         Fix description of how the buggy `sed' works.
3184 2006-05-25  Noah Misch  <noah@cs.caltech.edu>
3186         Sync from Automake:
3188         * lib/Autom4te/XFile.pm (lock): Allow EOPNOTSUPP, besides
3189         ENOLCK.  Only mention `make -j' when applicable.  Only raise
3190         fatal errors when `make -j' is involved.  Improve error message.
3192 2006-05-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3194         * doc/autoconf.texi (Here-Documents): We now know more about
3195         the variable expansion in here documents bug.
3196         Thanks to Tim Rice and Stepan Kasal.
3198         * doc/autoconf.texi (Making testsuite Scripts): Add an example
3199         how to use TESTSUITEFLAGS.  Suggested by Eric Blake.
3201 2006-05-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3203         * tests/autotest.at (Multiline command from M4 expansion):
3204         No failure to be expected if the shell quotes newlines in
3205         commands in the `set -x' output.  Report by Tim Rice.
3206         * THANKS: Update.
3208 2006-05-23  Paul Eggert  <eggert@cs.ucla.edu>
3210         * lib/autoconf/status.m4 (_AC_OUTPUT_HEADER): Don't use shell
3211         expansion in the here-documents used by config.status, as that
3212         runs afoul of the Korn shell version M-12/28/93d bug described in
3213         the Autoconf manual, and this in turn causes a Coreutils 5.95 build to
3214         fail as described by Tim Rice and diagnosed by Ralf Wildenhues in
3215         <http://lists.gnu.org/archive/html/bug-autoconf/2006-05/msg00082.html>.
3217 2006-05-23  Jim Meyering  <jim@meyering.net>
3219         * lib/autoconf/functions.m4 (AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK):
3220         Fix typo introduced with 2006-04-02 change.  It reversed the sense
3221         of the test.
3223 2006-05-23  Paul Eggert  <eggert@cs.ucla.edu>
3225         * lib/autoconf/status.m4 (_AC_OUTPUT_HEADER): Simplify ac_dA and
3226         ac_dB slightly, to save bytes in the script.
3227         Max out at 50 lines, rather than 96; this is more likely
3228         (though not guaranteed) to avoid obscure 'sed' failures.
3230 2006-05-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3232         * lib/autotest/general.m4 (AT_INIT): UnixWare `tr' may interpret
3233         `tr -d -' as bad option argument.  Work around this by deleting
3234         an unrelated character.
3235         Report by Tim Rice <tim@multitalents.net>.
3237 2006-05-22  Paul Eggert  <eggert@cs.ucla.edu>,
3238             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>,
3239             Stepan Kasal  <kasal@ucw.cz>
3241         * doc/autoconf.texi (Particular Programs): Do not promise that
3242         we always prefer the GNU version of the program, and that we
3243         search according to PATH; both rules can have exceptions.
3244         Update description of AC_PROG_GREP, AC_PROG_EGREP, AC_PROG_FGREP,
3245         AC_PROG_SED.  Move descriptions of limitations
3246         to the Limitations of Usual Tools section.
3247         (Limitations of Usual Tools) <sed>: Mention script length
3248         limitations with Solaris /usr/ucb/sed.
3249         <grep>: Fix wording for empty alternative.  Mention that -c and
3250         -l should not be combined, and that -E and -F should not be
3251         combined.
3253 2006-05-21  Paul Eggert  <eggert@cs.ucla.edu>
3254         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3256         * lib/autoconf/programs.m4 (AC_PROG_SED): Catch script length
3257         limits in Solaris 8 /usr/ucb/sed by testing a long script.
3259 2006-05-22  Stepan Kasal  <kasal@ucw.cz>
3261         * doc/autoconf.texi (Defining Symbols): Literal parameter of
3262         AC_DEFINE is now passed to m4_pattern_allow.
3263         * NEWS: Mention that; likewise for AC_SUBST.
3264         * lib/autoconf/general.m4 (AC_DEFINE_TRACE_LITERAL): Pass
3265         the parameter to m4_pattern_allow.
3266         * tests/tools.at: Add a check for that.
3268 2006-05-22  Stepan Kasal  <kasal@ucw.cz>
3270         * lib/autoconf/status.m4: Fix typos.
3272 2006-05-21  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3274         * lib/autoconf/programs.m4 (_AC_FEATURE_CHECK_LENGTH): Remove
3275         only the files that this macro generates.
3277 2006-05-21  Paul Eggert  <eggert@cs.ucla.edu>
3279         * doc/autoconf.texi (Limitations of Usual Tools) <sed>: For
3280         the HP-UX sed limitation of 99 commands, labels do not count.
3281         * lib/autoconf/status.m4 (_AC_SED_CMD_LIMIT): Mention that
3282         in the comment.
3283         (_AC_OUTPUT_HEADER): Revert the change from 2006-05-19.
3285 2006-05-21  Paul Eggert  <eggert@cs.ucla.edu>
3287         * lib/autoconf/functions.m4 (AC_FUNC_GETMNTENT):
3288         Import the following fix from coreutils:
3290         2006-01-13  Jim Meyering  <jim@meyering.net>
3292         Invoke AC_CHECK_FUNCS(getmntent) unconditionally so that tests of
3293         $ac_cv_func_getmntent (e.g., in gl_LIST_MOUNTED_FILE_SYSTEMS) need
3294         not double-quote uses of that variable, to accommodate the rare
3295         case in which getmntent is available in none of the libraries
3296         checked.  This happens at least on FreeBSD 5.0.
3298 2006-05-20  Paul Eggert  <eggert@cs.ucla.edu>
3300         * lib/autoconf/general.m4 (AC_CONFIG_AUX_DIRS): Bring back
3301         ac_config_guess, ac_config_sub, and ac_configure, since evidently
3302         some other programs unwisely rely on these undocumented vars.
3303         But put in warning comments about them.
3304         Problem reported by Ralf Wildenhues in
3305         <http://lists.gnu.org/archive/html/autoconf-patches/2006-05/msg00068.html>.
3306         * NEWS: Document that these variables are intended to go away.
3308 2006-05-20  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3310         * lib/autoconf/c.m4 (AC_PROG_CXX_C_O): Require AC_PROG_CXX,
3311         and set the language to C++ (analogous to the equivalent Fortran
3312         tests).
3314         * lib/autoconf/c.m4 (AC_PROG_CXX_C_O): New macro.
3315         * doc/autoconf.texi (C++ Compiler): Document it.
3316         * lib/autoconf/fortran.m4 (_AC_PROG_FC_C_O): Adjust comment.
3317         * NEWS: Update.
3319 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
3321         * lib/autoconf/status.m4 (_AC_OUTPUT_HEADER): Fix off-by-one bug
3322         that caused config.status to generate 100-command sed scripts; the
3323         portable limit is 99.
3325 2006-05-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3327         * lib/autoconf/programs.m4 (AC_PROG_MKDIR_P): Name temporary
3328         variable `ac_d' instead of `d' to avoid infringing namespace.
3329         Report by Ralf Menzel.
3331 2006-05-18  Paul Eggert  <eggert@cs.ucla.edu>
3333         * lib/autoconf/status.m4 (_AC_OUTPUT_FILE): Don't prepend
3334         $ac_top_build_prefix to $MKDIR_P if it's just 'mkdir -p'.
3335         * tests/tools.at (autoconf: subdirectories): New test, taken from
3336         the corresponding problem report by Ralf Wildenhues in:
3337         http://lists.gnu.org/archive/html/autoconf-patches/2006-05/msg00053.html
3339         * lib/autoconf/functions.m4 (AC_REPLACE_FNMATCH, AC_FUNC_FNMATCH_GNU):
3340         Quote some uses of shell variables if they might suffer unexpected
3341         globbing.  This doesn't fix all instances of quoting problems that
3342         I found, just the easy ones that look safe.
3343         * lib/autoconf/general.m4 (_AC_INIT_SRCDIR, _AC_INIT_HELP):
3344         (AC_CONFIG_AUX_DIR, AC_CONFIG_AUX_DIR_DEFAULT, AC_CONFIG_AUX_DIRS):
3345         (AC_CANONICAL_BUILD, AC_CANONICAL_HOST, AC_CANONICAL_TARGET):
3346         (AC_CACHE_LOAD, AC_CACHE_SAVE): Likewise.
3347         * lib/autoconf/libs.m4 (_AC_PATH_X_XMKMF, _AC_PATH_X_DIRECT): Likewise.
3348         * lib/autoconf/specific.m4 (AC_SYS_LONG_FILE_NAMES): Likewise.
3349         * lib/autoconf/status.m4 (_AC_OUTPUT_LINK, _AC_OUTPUT_SUBDIRS):
3350         Likewise.
3351         * lib/autotest/general.m4 (_AC_INIT_PARSE_ARGS): Likewise.
3352         * lib/m4sugar/m4sh.m4 (_AS_DETECT_BETTER_SHELL): Likewise.
3354 2006-05-18  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3356         * bin/autoreconf.in ($help): Reword according to the manual.
3357         Suggested by Olly Betts.
3359 2006-05-17  Olly Betts  <olly@survex.com>  (tiny change)
3360         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3362         * bin/autoreconf.in: Pass the directory argument to
3363         `require_configure_ac'.  Fix comment.
3364         * tests/torture.at (Configuring subdirectories): Expose this.
3365         Reported by Olly Betts.
3367 2006-05-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3369         * lib/Automake/Configure_ac.pm, lib/Automake/Channels.pm,
3370         lib/Automake/FileUtils.pm, lib/Automake/Struct.pm: Sync from
3371         Automake as follows:
3373         * lib/Autom4te/Configure_ac.pm (find_configure_ac): Use
3374         `$configure_in' instead of `configure.in', to preserve
3375         directory component.
3377 2006-05-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3379         * config/config.guess, config/config.sub, config/texinfo.tex,
3380         doc/make-stds.texi, doc/standards.texi: Sync from upstream.
3382 2006-05-14  Paul Eggert  <eggert@cs.ucla.edu>
3384         * lib/autoconf/headers.m4 (AC_HEADER_STDBOOL): Fix overly-picky
3385         test for C99 conformance; (bool) 0.5 is an integer constant
3386         expression, but (bool) -0.5 is not.  Problem reported by Fedor
3387         Sergeev in <http://forum.sun.com/jive/thread.jspa?threadID=96202>.
3389 2006-05-13  Paul Eggert  <eggert@cs.ucla.edu>
3391         * doc/autoconf.texi (Particular Programs): AC_PROG_MKDIR_P now
3392         sets MKDIR_P, not mkdir_p, to avoid collisions with Automake.
3393         Warn about obsolete install-sh files.  Remove stray sentence
3394         fragment and fix cross reference.
3395         * lib/autoconf/programs.m4 (AC_PROG_INSTALL): Don't insist on
3396         install -d; this undoes the 2006-05-10 change.
3397         (MKDIR_P): Mark with AN_MAKEVAR.
3398         (AC_PROG_MKDIR_P): Fall back on $ac_install_sh, not $INSTALL, so
3399         that we don't require $INSTALL to be thread-safe.  Move comments
3400         out of generated code.  Require AC_CONFIG_AUX_DIR_DEFAULT instead
3401         of AC_PROG_INSTALL.  Output a message saying that we're checking
3402         mkdir -p.  Set MKDIR_P rather than mkdir_p.  Do special magic for
3403         MKDIR_P instead of AC_SUBST.
3404         * lib/autoconf/status.m4 (_AC_OUTPUT_FILE, _AC_OUTPUT_CONFIG_STATUS):
3405         Special magic for MKDIR_P, too.
3406         * lib/m4sugar/m4sh.m4 (AS_MKDIR_P): Remove comment that defeated
3407         a dnl.
3408         * tests/local.at (AT_CHECK_ENV): mkdir_p -> MKDIR_P.
3410 2006-05-11  Paul Eggert  <eggert@cs.ucla.edu>
3412         Sync from Automake, as follows:
3414         2006-05-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3415         * config/install-sh: Initialize IFS, so field splitting isn't
3416         turned off later.
3417         * config/mkinstalldirs: Likewise.
3418         * config/missing: Remove superfluous quotes.  Replace all uses of
3419         `[' by `test', for consistency, and for..
3420         * config/missing (sed_minuso, sed_output): New variables.
3421         (autom4te, help2man, makeinfo): Use them.  Unifies detection of
3422         `-o FILE', `--output FILE', `--output=FILE', stricter regex.
3423         Fixes `missing' to detect `--output' for help2man.  Fixes
3424         PR automake/483.  Report by Dennis J. Linse.
3425         (autom4te): Document in `missing --help'.
3427 2006-05-10  Paul Eggert  <eggert@cs.ucla.edu>
3429         * NEWS: New macro AC_PROG_MKDIR_P.  AS_MKDIR_P is now more robust.
3430         * config/install-sh: Don't use 'path' to talk about file names,
3431         as per GNU coding standards.  Close a race condition reported by Ralf
3432         Wildenhues and Stepan Kasal.  There is still a race condition
3433         on hosts that predate Posix 1003.1-1992, but we can't help this.
3434         Don't mishandle weird characters like space on pre-Posix hosts.
3435         Invoke mkdir at most once per dir arg on pre-Posix hosts.
3436         * doc/autoconf.texi (Programming in M4sh): Cross-reference to
3437         AC_PROG_MKDIR_P from AS_MKDIR_P.
3438         (Limitations of Usual Tools): Cross-reference to AC_PROG_MKDIR_P
3439         from mkdir.  Mention that Autoconf 2.60 install-sh is safe but
3440         earlier editions are not (including Automake 1.8.3).
3441         Do not suggest mkinstalldirs for thread-safety.
3442         * lib/autoconf/programs.m4 (AC_PROG_INSTALL): Insist on an 'install'
3443         that understands -d, so that AC_PROG_MKDIR_P can fall back on $INSTALL.
3444         * lib/m4sugar/m4sh.m4 (AS_MKDIR_P): Make it more robust in the
3445         presence of special characters and race conditions.
3446         * tests/local.at (AT_CHECK_ENV): Add mkdir_p to the list of variables
3447         in Autoconf's name space.
3449 2006-05-10  Bruno Haible  <bruno@clisp.org>
3450         and Paul Eggert  <eggert@cs.ucla.edu>
3452         * lib/autoconf/programs.m4 (AC_PROG_MKDIR_P): New macro, taken
3453         from Automake with minor changes.
3454         * doc/autoconf.texi (Particular Programs): Document AC_PROG_MKDIR_P.
3456 2006-05-10  Paul Eggert  <eggert@cs.ucla.edu>
3458         * config/install-sh: Update to Automake CVS version, as follows:
3459         2006-04-25  Stepan Kasal  <kasal@ucw.cz>
3460         * lib/install-sh: Simplify the expr implementation of dirname.
3461         2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
3462         * lib/install-sh: Handle --, and diagnose unknown options.
3464 2006-05-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3466         * tests/Makefile.am (AUTOTEST): Use `$(MY_AUTOM4TE)' instead of
3467         `./autom4te' to create `./testsuite', since the `all' target
3468         will ensure its presence, but `installcheck' should not create
3469         the uninstalled wrappers.
3471         * tests/torture.at (Unusual Automake input files): Skip if we
3472         detect automake < 1.8.
3474 2006-05-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3476         * lib/autoconf/c.m4 (AC_PROG_CC_STDC): If ac_cv_prog_cc_stdc
3477         is set to `no', then that overrides and sets ac_cv_prog_cc_c89
3478         and ac_cv_prog_cc_c99 to `no', for backward compatibility.
3479         * NEWS: Update.
3481 2006-05-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3483         * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): Take care not to
3484         munge (multiple) white space and other oddities.
3485         * tests/torture.at (AT_CHECK_AC_ARG_VAR): Make sure to M4-escape
3486         single quotes in variable assignment.
3487         (AC_ARG_VAR, configure invocation): Adjust tests to expose this
3488         and similar failures by adding multiple spaces, tabs, and other
3489         special characters.
3490         Report and different test suggested by Francesco Romani
3491         <fromani@gmail.com> and Andrew Church <achurch@achurch.org>.
3493         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): When we escape
3494         single quotes, we only need to search for single quotes; this
3495         both simplifies the search pattern, and makes us less
3496         susceptible to `echo' variations for arguments not containing
3497         single quotes.
3498         (_AC_ARG_VAR_VALIDATE): Likewise.
3500 2006-05-04  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3502         * doc/autoconf.texi (Special Shell Variables) <IFS>: Document
3503         `$*' and IFS concatenation issue with traditional shells and
3504         bash-2.04.  Report by Seanster@Seanster.com.
3506 2006-05-03  Bruno Haible  <bruno@clisp.org>
3508         * doc/autoconf.texi (Limitations of Usual Tools): Identify more
3509         precisely which Mac OS X versions have the od problem.
3511 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
3513         * doc/autoconf.texi: Use @option systematically.
3515 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
3516         and Bruno Haible  <bruno@clisp.org>
3518         * doc/autoconf.texi (Limitations of Usual Tools): Add a paragraph
3519         about 'od'.
3520         (Integer Overflow): Mention the special case of integer division
3521         overflow.
3523 2006-05-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3525         * lib/autoconf/general.m4 (_AC_CANONICAL_SPLIT): Cater for
3526         traditional shells like the Solaris one that do not use the
3527         first IFS character for assembling `$*'.
3528         Prompted by a related report from autoconf_bug@nro.ca.
3530 2006-05-01  Paul Eggert  <eggert@cs.ucla.edu>
3531         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3533         * doc/autoconf.texi (Limitations of Builtins, Limitations of Make):
3534         Mention more problems with the -e option.
3536 2006-04-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3538         * NEWS: Typo.
3539         * doc/autoconf.texi (Systemology): Mention the Heirloom Project.
3541         * doc/autoconf.texi (Introduction, Pointers): Use `@/' liberally
3542         in URLs to improve DVI formatted output (requires texinfo 4.6).
3543         (System Services, Systemology, Shellology): Likewise.
3544         (Limitations of Usual Tools): Rewrite Mac OS X example for nicer
3545         output.
3547         * doc/autoconf.texi (Fortran Compiler): Do not use `@ovar' in
3548         continuous text.
3549         (Runtime): Fix macro argument names to match description:
3550         `action-if-found' -> `action-if-true' and similarly.
3551         (Obsolete Macros): Likewise.
3552         * lib/autoconf/general.m4 (_AC_COMPILE_IFELSE): Likewise.
3553         (AC_COMPILE_IFELSE, AC_TRY_COMPILE, _AC_LINK_IFELSE)
3554         (AC_LINK_IFELSE, AC_TRY_LINK, AC_COMPILE_CHECK): Likewise.
3556 2006-04-29  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3558         * doc/autoconf.texi (Limitations of Make): Clean up markup.
3560         * ChangeLog: Typo.
3561         * doc/autoconf.texi (Portable Shell): Allow wrapped URLs, for
3562         DVI output.
3564 2006-04-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3566         * doc/autoconf.texi (Limitations of Builtins): Document FreeBSD
3567         /bin/sh set unsorted output.
3568         * lib/autoconf/general.m4 (_AC_CACHE_DUMP): Adjust.
3569         * tests/local.at: Likewise.
3571 2006-04-26  Paul Eggert  <eggert@cs.ucla.edu>
3573         * doc/autoconf.texi (Portable C and C++, Varieties of Unportability):
3574         (Integer Overflow, Null Pointers, Buffer Overruns):
3575         (Floating Point Portability, Exiting Portably): New sections.
3576         (Writing Test Programs): Fix some langauge.  Recommend exiting
3577         with status 1, not merely nonzero.  Clarify exit declaration.
3578         (Run Time): Move C exit status stuff to new Exiting Portably section.
3579         (Systemology): Mention Posix and levenez.  Update v7 reference.
3580         (Portable Shell): Mention the Posix shell.
3582 2006-04-25  Stepan Kasal  <kasal@ucw.cz>
3584         * bin/autoconf.as (me): Replace by as_me.
3586 2006-04-25  Paul Eggert  <eggert@cs.ucla.edu>
3588         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Don't use AS_ERROR,
3589         since as_me isn't set yet.
3591 2006-04-23  Paul Eggert  <eggert@cs.ucla.edu>
3593         Prepare for deprecation of AS_BASENAME and AS_DIRNAME, and fix
3594         a few minor bugs in this area.
3596         * doc/autoconf.texi (Programming in M4sh): Comment out the
3597         documentation of AS_BASENAME, for now.
3598         (Shell Substitutions): Do not use AS_DIRNAME in an example.
3599         (Limitations of Builtins) <basename>: Do not refer to
3600         AS_BASENAME.
3601         * bin/autoconf.as (me): Don't use AS_BASENAME.
3602         (dir): Remove the unused variable.
3603         * lib/m4sugar/m4sh.m4 (_AS_DETECT_REQUIRED): Renamed from
3604         AS_DETECT_REQUIRED.  All uses changed.
3605         (_AS_DETECT_SUGGESTED): Renamed from AS_DETECT_SUGGESTED.
3606         All uses changed.
3607         (_AS_DETECT_BETTER_SHELL): Put ;; at the end of a case.
3608         (AS_BASENAME): Use "basename --" to protect against leading "-".
3609         (_AS_BASENAME_EXPR): Renamed from AS_BASENAME_EXPR.  All uses changed.
3610         (_AS_BASENAME_SED): Renamed from AS_BASENAME_SED.  All uses changed.
3611         (_AS_BASENAME_PREPARE): Reject implementations that cannot handle "--".
3612         (_AS_DIRNAME_PREPARE): Likewise.
3613         (_AS_DIRNAME_EXPR): Renamed from AS_DIRNAME_EXPR.  All uses changed.
3614         (_AS_DIRNAME_SED): Renamed from AS_DIRNAME_SED.  All uses changed.
3615         (AS_DIRNAME): Use "dirname --".
3617 2006-04-23  Paul Eggert  <eggert@cs.ucla.edu>
3619         * doc/autoconf.texi (Runtime): Renamed from "Run Time".  All uses
3620         of "run time" and "run-time" changed to "runtime", for consistency.
3621         * lib/autoconf/fortran.m4: Likewise (in comment).
3622         * lib/autoconf/functions.m4: Likewise.
3623         * lib/autoconf/general.m4: Likewise.
3624         * lib/autoconf/headers.m4: Likewise.
3626         * doc/autoconf.texi (Run Time): Document the exit status situation
3627         with more accuracy and detail.
3629 2006-04-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3631         * doc/autoconf.texi (Introduction): The GNU Autoconf Macro
3632         Archive is not officially `GNU' any more.  Update URL.
3633         (Defining Directories): Likewise
3634         * lib/autoconf/c.m4 (AC_C_RESTRICT): Update URL.
3636 2006-04-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3638         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Remove the leading
3639         newline from the `trap' code to finish `config.log'; the NetBSD
3640         /bin/sh resets the exit status after an empty command, as
3641         documented in doc/autoconf.texi.
3642         Reported by Dalibor Topic <robilad@kaffe.org>.
3644 2006-04-19  Paul Eggert  <eggert@cs.ucla.edu>
3646         * doc/autoconf.texi (C Compiler): Clarify AC_C_TYPEOF.
3647         Suggested by Bruno Haible.
3649 2006-04-18  Paul Eggert  <eggert@cs.ucla.edu>
3651         * configure.ac (ac_cv_sh_n_works): Don't try to test for it, since
3652         some shells (e.g., Solaris 8 /bin/sh) implement it verrrry slowly.
3653         Instead, just list the shells that we know work.
3654         * tests/local.at (AT_CHECK_SHELL_SYNTAX): Remove 2nd arg.  All uses
3655         changed.  Be more cautious about the _cv_ variable.
3656         * tests/tools.at (Syntax of the shell scripts): Check the
3657         _cv_ variable once, at first, to avoid an internal autoconf error
3658         when sh -n does not work.
3660 2006-04-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3662         * lib/Autom4te/FileUtils.pm: Sync from Automake.
3664 2006-04-16  Paul Eggert  <eggert@cs.ucla.edu>
3666         * lib/autoconf/general.m4 (_AC_INIT_CONFIG_LOG): Don't
3667         use ">&-" since we're only 99.999% sure that this is portable,
3668         and since the MinGW bug is fixed in a different way.
3669         * lib/autotest/general.m4 (AT_INIT): Likewise.
3671 2006-04-16  Stepan Kasal  <kasal@ucw.cz>
3673         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Handle --recheck
3674         before opening config.log, to avoid hitting a bug on MinGW.
3676 2006-04-14  Paul Eggert  <eggert@cs.ucla.edu>
3678         * lib/autoconf/general.m4 (_AC_INIT_CONFIG_LOG): Close
3679         AS_MESSAGE_LOG_FD before reopening it onto the log file.
3680         This works around a MinGW bug reported by Eric Paire.
3681         Make sure that all writes to the log file append to it,
3682         rather than possibly losing data.
3683         * lib/autotest/general.m4 (AT_INIT): Likewise.
3685 2006-04-14  Stepan Kasal  <kasal@ucw.cz>
3687         * lib/Autom4te/FileUtils.pm (find_file): Fix a typo in the
3688         description.
3690 2006-04-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3692         * NEWS: Update.
3694         * configure.ac (AC_INIT): Bump to 2.59d.
3696 2006-04-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3698         Version 2.59c.
3700         * Makefile.maint (news-date-check): Do not require a leading `*'
3701         before the release date in NEWS.
3703 2006-04-12  Stepan Kasal  <kasal@ucw.cz>
3704         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3706         * lib/autoconf/status.m4 (_AC_OUTPUT_FILE): If the templates for
3707         the instantiated file do not contain the string 'datarootdir'
3708         but contain @datadir@, @docdir@, @infodir@, @localedir@, or
3709         @mandir@, replace the reference '${datarootdir}' by the value.
3710         * tests/torture.at (datarootdir workaround): New test.
3711         * NEWS: Advertise this temporary fixup.
3712         Based on a patch by Bruno Haible, reported and analyzed by
3713         Paul Eggert and Noah Misch.
3715 2006-04-12  Eric Blake  <ebb9@byu.net>
3717         * tests/autotest.at (Debugging a failed test): Fix comment.
3719 2006-04-12  Stepan Kasal  <kasal@ucw.cz>
3721         * lib/m4sugar/m4sh.m4 (_AS_LN_S_PREPARE): Simplify the summary of
3722         all the changes since 2006-04-07.
3724 2006-04-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3726         * lib/m4sugar/m4sh.m4 (_AS_LN_S_PREPARE): If `ln -s file1 file2'
3727         succeeded, but `ln -s file dir' failed, take care to remove the
3728         leftover target before the next test, to prevent its spurious
3729         failure; also make sure `ln file dir' works before selecting it.
3730         Thanks to Keith Marshall for pointing this out.
3731         * THANKS: Update.
3733         * lib/autotest/general.m4 (AT_INIT): Store quoted variable
3734         assignments in `at_debug_args', so that we put them correctly
3735         in the `run' script.
3736         * tests/autotest.at (Debugging a failed test): Unmark XFAIL.
3737         Reported by Eric Blake.
3739 2006-04-11  Eric Blake  <ebb9@byu.net>
3741         * tests/autotest.at (AT_CHECK_AT): Add new argument, to allow
3742         top-level tests after micro-suite has been run.   Used in...
3743         (Debugging a successful test, Debugging script and environment),
3744         (Debugging a failed test): ...these new tests.  The first of these
3745         is fixed by...
3746         * lib/autotest/general.m4 (_AT_CREATE_DEBUGGING_SCRIPT): New
3747         macro, split out from...
3748         (AT_INIT): ...here, so that using -d also generates a run script.
3749         Document that -d inhibits top-level logging.
3750         * doc/autoconf.texi (testsuite Invocation): Document that -d only
3751         inhibits top-level logging; debug scripts are created.
3753         * lib/autotest/general.m4 (_AT_CHECK): Avoid syntax error on empty
3754         check.
3755         * tests/autotest.at (Empty test, Empty check): New test to check it.
3757         * lib/autoconf/c.m4 (AC_C_CONST, AC_C_VOLATILE): Avoid warnings
3758         from gcc.
3760 2006-04-10  Stepan Kasal  <kasal@ucw.cz>
3762         * tests/mktests.sh: Use "trap '' 0", not "trap 0".  Do not touch
3763         the files if a problem appears.  Make the empty *.at files
3764         read-only, too.  Proposed by Ralf Wildenhues.
3766 2006-04-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3768         * config/Makefile.am: Add comment to force updated Makefile.in.
3770         * lib/freeze.mk: Fix typo in comment.  Unlike the last, white
3771         space only patch to this file, this patch causes the Makefile.in
3772         files that include freeze.mk to be updated, and thus have a
3773         newer time stamp again, which in turn makes a pristine CVS
3774         checkout have correct time stamps.
3776         * Makefile.maint (cvs-sv): New macro, to be used..
3777         (config.guess-url_prefix, config.sub-url_prefix)
3778         (texinfo.tex-url_prefix, standards.texi-url_prefix): ..here;
3779         point to CVS text checkout of Gnulib files.
3780         (copyright-check): Bump current year.
3781         (announcement): Do not hard-wire `./announce-gen'.
3782         (cvs-update): Propagate failures of `cvs' and `move-if-change'
3783         correctly.
3784         * Makefile.cfg (executable-update): Use `chmod a+x' instead of
3785         `chmod +x'.
3786         (wget_files): Update config.guess, config.sub, texinfo.tex by
3787         `wget-update', now that their URLs work again.
3789 2006-04-10  Paul Eggert  <eggert@cs.ucla.edu>
3791         * doc/autoconf.texi (Particular Types): Don't use AC_CHECK_TYPE.
3792         Problem noted by Paul D. Smith.
3794 2006-04-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3796         * doc/autoconf.texi: Remove unused words from word list.
3797         * .x-sc_prohibit_atoi_atof, .x-sc_space_tab, .x-sc_sun_os_names,
3798         .x-sc_trailing_space: New files.
3800         * doc/standards.texi: Sync from gnulib.
3802         * NEWS, doc/autoconf.texi (AC_LIBOBJ vs LIBOBJS): Mark
3803         `LIBOBJDIR' as experimental.
3805         * lib/m4sugar/m4sh.m4 (_AS_LN_S_PREPARE): MSYS `ln -s' fails
3806         with a target directory; it's internally implemented as `cp'
3807         anyway, but since Autoconf advertises the possibility to use
3808         a target directory when LN_S is `ln -s', we need to find out.
3809         Reported by Rolf Ebert <rolf.ebert.gcc@gmx.de> against MSYS,
3810         analyzed by Keith Marshall <keith.marshall@total.com>.
3812         * THANKS: Update.
3814 2006-04-10  Paul Eggert  <eggert@cs.ucla.edu>
3816         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Just output
3817         confdefs.h as-is.  In general, if it has backslash-newline or the
3818         like, then it doesn't work either to sort or to remove empty
3819         lines.
3821 2006-04-09  Stepan Kasal  <kasal@ucw.cz>
3823         * tests/Makefile.am (AUTOCONF_FILES): Fix typo in the comment.
3825 2006-04-09  Alexandre Duret-Lutz  <adl@gnu.org>
3827         * lib/autom4te.in (Automake-preselections): Preselect
3828         _AM_SUBST_NOTMAKE.
3830 2006-04-08  Paul Eggert  <eggert@cs.ucla.edu>
3832         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Use '\'' for an
3833         apostrophe within a single-quoted string, as this is the usual
3834         tradition and is easier to read than '"'"'.  Don't rely on the
3835         shell treating "$/" like '$/'.  Use a more-consistent indenting
3836         style for the trap.
3838 2006-04-09  Eric Blake  <ebb9@byu.net>
3840         * tests/autotest.at (Backquote command substitution),
3841         (Multiline backquote command substitution): Remove mistaken
3842         AT_NO_CMDSUBST from the 2006-03-14 patch, which was meant to be
3843         applied...
3844         (Parenthetical command substitution, Multiline parenthetical
3845         command substitution): here.
3847 2006-04-08  Paul Eggert  <eggert@cs.ucla.edu>
3849         Import macros from gnulib (often changing their name).
3851         * NEWS: AC_C_TYPE_LONG_DOUBLE is now obsolete.
3852         New macros AC_CHECK_DECLS_ONCE, AC_CHECK_FUNCS_ONCE,
3853         AC_CHECK_HEADERS_ONCE, AC_FUNC_STRTOLD, AC_HEADER_ASSERT,
3854         AC_STRUCT_DIRENT_D_INO, AC_STRUCT_DIRENT_D_TYPE,
3855         AC_TYPE_LONG_DOUBLE, AC_TYPE_LONG_DOUBLE_WIDER, AC_TYPE_INT8_T,
3856         AC_TYPE_INT16_T, AC_TYPE_INT32_T, AC_TYPE_INT64_T,
3857         AC_TYPE_INTMAX_T, AC_TYPE_INTPTR_T, AC_TYPE_LONG_LONG_INT,
3858         AC_TYPE_UINT8_T, AC_TYPE_UINT16_T, AC_TYPE_UINT32_T,
3859         AC_TYPE_UINT64_T, AC_TYPE_UINTMAX_T, AC_TYPE_UINTPTR_T,
3860         AC_TYPE_UNSIGNED_LONG_LONG_INT, AC_USE_SYSTEM_EXTENSIONS.
3861         The manual mentions Gnulib more prominently.
3862         * doc/autoconf.texi (Gnulib): New node.
3863         (Pointers): Add Gnulib URL.
3864         (Particular Functions): Alphabetize.  Add AC_FUNC_STRTOLD.
3865         (Generic Functions): Add AC_CHECK_FUNCS_ONCE.  Refer to new
3866         Gnulib section.
3867         (Particular Headers): Add AC_HEADER_ASSERT.  For stdbool.h,
3868         suggest a #define rather than a typedef for _Bool, and mention
3869         Gnulib rather than trying to substitute stdbool code.
3870         (Generic Headers): Add AC_CHECK_HEADERS_ONCE.
3871         (Generic Declarations): Add AC_CHECK_DECLS_ONCE.
3872         (Particular Structures): Add AC_STRUCT_DIRENT_D_INO,
3873         AC_STRUCT_DIRENT_D_TYPE.
3874         (Particular Types): Mention stdint.h and inttypes.h as standard
3875         headers too.
3876         Add AC_TYPE_INT8_T, AC_TYPE_INT16_T, AC_TYPE_INT32_T, AC_TYPE_INT64_T,
3877         AC_TYPE_INTMAX_T, AC_TYPE_INTPTR_T, AC_TYPE_LONG_DOUBLE,
3878         AC_TYPE_LONG_DOUBLE_WIDER, AC_TYPE_LONG_LONG_INT, AC_TYPE_UINT8_T,
3879         AC_TYPE_UINT16_T, AC_TYPE_UINT32_T, AC_TYPE_UINT64_T,
3880         AC_TYPE_UINTMAX_T, AC_TYPE_UINTPTR_T, AC_TYPE_UNSIGNED_LONG_LONG_INT.
3881         (C Compiler): Move AC_C_LONG_DOUBLE to ...
3882         (Obsolete Macros): here.  Under AC_LONG_DOUBLE, mention
3883         AC_TYPE_LONG_DOUBLE or AC_TYPE_LONG_DOUBLE_WIDER instead.
3884         (Posix Variants): Add AC_USE_SYSTEM_EXTENSIONS.
3885         (Coding Style).  Don't mention m4_expand_once.
3886         * lib/autoconf/c.m4 (AC_C_LONG_DOUBLE): Implement via
3887         AC_TYPE_LONG_DOUBLE_WIDER.  Now obsolete.
3888         * lib/autoconf/functions.m4 (_AH_CHECK_FUNCS): New macro.
3889         (AC_CHECK_FUNCS): Use it.
3890         (AC_CHECK_FUNCS_ONCE, AC_FUNC_STRTOLD): New macros.
3891         (AC_FUNC_WAIT3): "the Open Group standards" -> "POSIX".
3892         * lib/autoconf/general.m4 (AC_CHECK_DECLS_ONCE): New macro.
3893         * lib/autoconf/headers.m4 (AC_CHECK_HEADERS_ONCE): New macro.
3894         (AC_HEADER_ASSERT): New macro.
3895         (AC_HEADER_STDBOOL): Don't assume "#error" works.
3896         Catch a bug in IBM AIX xlc compiler version 6.0.0.0.
3897         Catch a bug in an HP-UX C compiler.
3898         * lib/autoconf/specific.m4 (AC_USE_SYSTEM_EXTENSIONS): New macro.
3899         * lib/autoconf/types.m4 (AC_TYPE_INTMAX_T. AC_TYPE_UINTMAX_T):
3900         (AC_TYPE_INTPTR_T, AC_TYPE_UINTPTR_T. AC_TYPE_LONG_DOUBLE):
3901         (AC_TYPE_LONG_DOUBLE_WIDER, AC_C_LONG_DOUBLE, AC_TYPE_LONG_LONG_INT):
3902         (AC_TYPE_UNSIGNED_LONG_LONG_INT, _AC_TYPE_INT, _AC_TYPE_UNSIGNED_INT):
3903         (_AC_STRUCT_DIRENT, AC_STRUCT_DIRENT_D_INO, AC_STRUCT_DIRENT_D_TYPE):
3904         New macros.
3906         * tests/mktests.sh (ac_exclude_list, au_exclude_list): Do not
3907         use /^foo|bar$/, it does not mean /^(foo|bar)$/.
3909 2006-04-08  Stepan Kasal  <kasal@ucw.cz>
3911         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Fix the wording
3912         of the warning introduced by the 2001-08-28 change.
3914 2006-04-08  Stepan Kasal  <kasal@ucw.cz>,
3915             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3917         * lib/autoconf/general.m4 (AC_CACHE_SAVE): All `ac_cv_env_foo'
3918         variables shall be overriden by the cache.
3919         * tests/torture.at (AC_ARG_VAR): Test also with a first value
3920         that contains braces.
3922 2006-04-07  Stepan Kasal  <kasal@ucw.cz>
3924         Revert the patch from 2006-04-01 and only improve
3925         _AS_DETECT_BETTER_SHELL:
3927         * lib/m4sugar/m4sh.m4 (_AS_PATH_WALK): Do not optimize; do not
3928         skip nonexistent directories.
3929         (_AS_DETECT_BETTER_SHELL): The optimization is moved here--try
3930         only shell candidates which exist.
3931         (AS_UNAME): No need to give three parameters to _AS_PATH_WALK.
3932         * lib/autotest/general.m4 (AT_INIT): No need to give three
3933         parameters to _AS_PATH_WALK.
3935 2006-04-07  Stepan Kasal  <kasal@ucw.cz>,
3936             Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3938         * bin/autoupdate.in (handle_autoconf_patches): Change the way we
3939         distinguish m4sugar macros.
3940         * tests/tools.at (autoupdating with aclocal and m4_include):
3941         New test.  Bug reported by Gary V. Vaughan <gary@gnu.org>,
3942         test case by Noah Misch <noah@cs.caltech.edu>.
3944 2006-04-07  Stepan Kasal  <kasal@ucw.cz>
3946         Revert my change from 2006-03-17, in other words:
3947         * lib/m4sugar/m4sh.m4 (AS_BOURNE_COMPATIBLE): Insert BIN_SH=xpg4
3948           and DUALCASE=1.
3949         (AS_SHELL_SANITIZE): Remove DUALCASE=1.
3950         * doc/autoconf.texi (Special Shell Variables) <BIN_SH>: Say that
3951           it is set.
3953 2006-04-07  Eric Blake  <ebb9@byu.net>
3955         * doc/autoconf.texi (Programming in M4sh): Document that
3956         AS_MKDIR_P exits the script on failure.
3957         * lib/autotest/general.m4: Remove redundant AS_ERROR.
3959 2006-04-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3961         * config/elisp-comp, config/install-sh, config/mdate-sh,
3962         config/missing, config/mkinstalldirs: Sync from Automake.
3964         * lib/Autom4te/FileUtils.pm, lib/Autom4te/Struct.pm: Sync
3965         from Automake.
3967         * doc/make-stds.texi: Sync from gnulib.
3969 2006-04-06  Eric Blake  <ebb9@byu.net>
3971         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_O): Inside cache
3972         check, s/ac_exeext/ac_cv_exeext/.  Fixes regression introduced
3973         2006-04-01.
3975 2006-04-06  Stepan Kasal  <kasal@ucw.cz>,
3976             Eric Blake  <ebb9@byu.net>,
3977             Paul Eggert  <eggert@cs.ucla.edu>,
3978             Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3980         * lib/autoconf/general.m4 (_AC_CACHE_DUMP): Fix the detection of
3981         whether `set' quotes correctly: redirect stderr of the tested
3982         `set', and use a subshell, for Ultrix; use `sed' instead of
3983         `grep' for zsh `set' which may write binary output; match only
3984         at the beginning of a line, to avoid false positives.
3985         In order to avoid false positives by unrelated variables with
3986         multiline content, put the dump algorithm in a subshell and
3987         unset all variables containing newlines (except some which are
3988         special to the shell).  Warn about cache variables that are
3989         unset.
3991 2006-04-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3993         * config/config.guess, config/config.sub, config/texinfo.tex:
3994         Sync from upstream.
3996         * tests/mktests.sh: Reword comments.
3998         * tests/mktests.sh: Only skip internal macros starting with
3999         `_AC_' or `__AC_'.  Noted by Stepan Kasal.
4000         Update exclusion lists for the test suite to this end:
4001         (AC_ARG_VAR): Do test this now.
4002         (AC_SEARCH_LIBS, AC_REPLACE_FUNCS): Need an argument.
4003         (AC_LINKER_OPTION): Remove (renamed to _AC_LINKER_OPTION).
4004         (AC_LIST_MEMBER_OF): Likewise (renamed to _AC_LIST_MEMBER_IF).
4005         (AC_LINK_FILES): Obsoleted since (and thus AU_DEFUN'ed).
4007         * doc/autoconf.texi (Shell Substitutions): Mention the MSYS
4008         shell issue with double-quoted command substitutions of native
4009         commands.
4010         Reported to MSYS by Mark Cave-Ayland, to Autoconf by Keith
4011         Marshall.
4013         * Makefile.maint (sc_cast_of_argument_to_free): Do not fail when
4014         no file matches the glob, discard the warning, set `nullglob'.
4015         (syntax-check): Likewise.
4016         (sc_cast_of_x_alloc_return_value): Likewise.
4017         (sc_cast_of_alloca_return_value, sc_error_exit_success)
4018         (sc_prohibit_jm_in_m4, .re-list, sc_unmarked_diagnostics)
4019         (m4-check): Likewise.
4020         (sc_system_h_headers): Do not print rule on execution.
4021         (sc_tight_scope): Do not fail for non-existing `src' directory.
4022         (sc_changelog): Skip the Copyright footer.
4023         * lib/autoconf/lang.m4: Remove trailing space.
4025         * lib/autoconf/status.m4: More replacements to
4026         <tab><space> where this makes sense.
4028 2006-04-06  Stepan Kasal  <kasal@ucw.cz>
4030         * tests/Makefile.am (maintainer-check-posix):
4031           s/POSIXLY_CORRECTLY/POSIXLY_CORRECT/
4033         * lib/autoconf/status.m4 (_AC_CONFIG_FOOS): Append TAGS to
4034           ac_config_<foo>s again, sometimes normalized, sometimes not.
4035         (AC_CONFIG_FILES, AC_CONFIG_HEADERS, AC_CONFIG_LINKS):
4036         (AC_CONFIG_COMMANDS): Do not do so here.
4037         (_AC_CONFIG_REGISTER_DEST): Double quote the tags in macros _AC_LIST_TAGS
4038           and_AC_LIST_TAG_COMMANDS; fixes another regression introduced by the
4039           2005-07-25 rewrite.  Noticed by Noah Misch.
4041         * lib/autoconf/general.m4 (AC_PRESERVE_HELP_ORDER): Do not define
4042           _AC_PRESERVE_HELP_ORDER, ...
4043         (AC_ARG_ENABLE, AC_ARG_WITH): ... use AC_PROVIDE_IFELSE insetad.
4045         * lib/autoconf/general.m4 (AC_ARG_VAR): Do not use m4_divert_once
4046           inside m4_expand_once; it is redundant.
4048         * lib/autoconf/general.m4 (_AC_INIT_HELP): Remove the broken support
4049           for --help from Cygnus `configure.'
4051 2006-04-06  Paul Eggert  <eggert@cs.ucla.edu>
4053         * doc/autoconf.texi (C Compiler): Warn about #error.  Follows up
4054         on a patch proposed by Ralf Wildenhues.
4056 2006-04-05  Paul Eggert  <eggert@cs.ucla.edu>
4058         * lib/autoconf/status.m4: Replace <space>''<tab> with
4059         <tab><space> where this makes sense.
4061 2006-04-05  Howard Chu  <hyc@highlandsun.com>  (trivial change)
4062             Noah Misch  <noah@cs.caltech.edu>
4064         * lib/autoconf/general.m4 (AC_PRESERVE_HELP_ORDER): New macro.
4065         (AC_ARG_ENABLE, AC_ARG_WITH): Adjust.
4066         * doc/autoconf.texi (Help Formatting): New node.
4067         * NEWS: Announce AC_PRESERVE_HELP_ORDER.
4069 2006-04-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4071         * TODO, config/Makefile.am, lib/freeze.mk, lib/autoconf/c.m4,
4072         lib/autoconf/specific.m4, lib/autoconf/status.m4,
4073         lib/autoconf/types.m4, lib/autotest/general.m4,
4074         tests/mktests.sh, tests/torture.at: White space cleanup:
4075         remove some SPACE before TAB, or add quoting ('' or @&t@).
4077         * NEWS, TODO, bin/autoreconf.in: `filesystem' -> `file system'.
4079         * doc/autoconf.texi (Shell Substitutions): Document `^' vs. `|'.
4081 2006-04-05  Eric Blake  <ebb9@byu.net>
4083         * lib/autotest/general.m4 (AT_INIT): Prep AT_*_all, so that an
4084         empty test suite works.
4085         * tests/autotest.at (Empty test suite): Remove xfail.
4087 2006-04-05  Noah Misch  <noah@cs.caltech.edu>
4089         * lib/autoconf/status.m4 (_AC_CONFIG_FOOS): Do not append normalized
4090         TAGS to ac_config_<foo>s.
4091         (AC_CONFIG_FILES, AC_CONFIG_HEADERS, AC_CONFIG_LINKS): Do so here.
4092         (AC_CONFIG_COMMANDS): Append NAME to ac_config_commands without
4093         normalizing it, consistent it with previous releases.
4094         * tests/torture.at (Macro calls in AC_CONFIG_COMMANDS tags): New test.
4096 2006-04-05  Paul Eggert  <eggert@cs.ucla.edu>
4098         * lib/m4sugar/m4sh.m4 (AS_BASENAME_EXPR, AS_DIRNAME_EXPR):
4099         Use simplified args that Eric Blake originally suggested.
4101 2006-04-04  Paul Eggert  <eggert@cs.ucla.edu>
4103         * tests/mktests.sh: Don't use 'cat'; just read the files directly.
4104         Prefer 'sort -u' to 'sort | uniq'.  Filter data before sorting it.
4105         Use 'comm' rather than N instances of grep; this also fixes a bug
4106         whereby substrings were incorrectly matched, causing us to not
4107         generate tests for AC_F77_NAME_MANGLING and AC_FUNC_LSTAT.
4108         (exclude_list): Exclude empty macros.
4109         (ac_exclude_list): Exclude AC_INCLUDES_DEFAULT.
4111         Use awk rather than grep -E or egrep, to avoid
4112         portability problems with regular expressions containing newlines.
4113         (exclude_list, ac_exclude_list, au_exclude_list, ac_exclude_script):
4114         Switch from grep to awk syntax.
4115         (ac_exclude_script): Renamed from ac_exclude_egrep.
4116         (au_exclude_script): Renamed from au_exclude_egrep.
4118 2006-04-04  Noah Misch  <noah@cs.caltech.edu>
4120         * lib/autoconf/general.m4 (_AC_INIT_HELP): Only `configure.in' evidences
4121         a subdirectory subject to Cygnus `configure'.
4122         * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): Likewise.
4124         * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_MONGREL): Omit the bug
4125         report request when we have no AC_PACKAGE_BUGREPORT.
4127 2006-04-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4129         * THANKS: Update.
4131         * tests/mktests.sh: Update copyright year in the header of the
4132         generated files.
4134         * lib/autoconf/c.m4 (AC_C_INLINE): Do not skip cleanup code.
4135         (AC_C_RESTRICT): Likewise.  Furthermore, add a function with a
4136         typedef'ed restricted pointer, to catch a compiler bug on
4137         HP-UX 11.x, and fix warnings so it passes with -Werror.
4138         (_AC_PROG_CC_C99): Likewise.
4139         Reported by Albert Chin <china@thewrittenword.com>.
4140         * tests/mktests.sh: Do not skip AC_C_INLINE, AC_C_RESTRICT.
4142 2006-04-03  Noah Misch  <noah@cs.caltech.edu>
4144         * bin/autoscan.in (subdirs): New global.
4145         (scan_file): Prune directories with configure{,.{ac,in,gnu}}.
4146         (output): Emit AC_CONFIG_SUBDIRS as needed.
4147         * tests/autoscan.at (autoscan): Remove XFAIL.
4149 2006-04-03  Noah Misch  <noah@cs.caltech.edu>
4151         * lib/autoconf/general.m4 (AC_CACHE_SAVE): Use AC_MSG_NOTICE.
4153 2006-04-03  Eric Blake  <ebb9@byu.net>
4155         * THANKS: Add myself.
4157 2006-04-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4159         * lib/autotest/general.m4 (AT_INIT): Add `at_testdir' to pointer
4160         to log, point to testsuite output tree.
4162 2006-04-02  Paul Eggert  <eggert@cs.ucla.edu>
4164         * NEWS: AC_PROG_CC and AC_PROG_CXX no longer declare 'exit'.
4165         * doc/autoconf.texi (Function Portability): Mention that C++
4166         has trouble with 'exit'.
4167         (Guidelines): Test programs shouldn't use 'exit'.
4168         * lib/autoconf/c.m4 (_AC_PROG_CXX_EXIT_DECLARATION):
4169         Remove; all uses removed.
4170         (AC_LANG_INT_SAVE(C), AC_C_BIGENDIAN):
4171         Return from 'main' instead of calling 'exit'.
4172         * lib/autoconf/functions.m4 (_AC_LIBOBJ_ALLOCA, AC_FUNC_CLOSEDIR_VOID):
4173         (_AC_FUNC_FNMATCH_IF, AC_FUNC_GETGROUPS):
4174         (AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK, _AC_FUNC_MALLOC_IF):
4175         (AC_FUNC_MEMCMP, AC_FUNC_MKTIME, AC_FUNC_MMAP, _AC_FUNC_REALLOC_IF):
4176         (AC_FUNC_SETPGRP, _AC_FUNC_STAT, AC_FUNC_STRTOD, AC_FUNC_STRERROR_R):
4177         (AC_FUNC_STRNLEN, AC_FUNC_SETVBUF_REVERSED, AC_FUNC_UTIME_NULL):
4178         (_AC_FUNC_FORK, _AC_FUNC_VFORK, AC_FUNC_WAIT3): Likewise.
4179         * lib/autoconf/headers.m4 (AC_HEADER_STDC): Likewise.
4180         * lib/autoconf/specific.m4 (AC_SYS_RESTARTABLE_SYSCALLS): Likewise.
4181         * lib/autoconf/types.m4 (AC_TYPE_GETGROUPS): Likewise.
4182         * tests/compile.at: Likewise.
4184 2006-04-02  Pavel Roskin  <proski@gnu.org>
4186         * doc/autoconf.texi (AC_PATH_X): Update per 2005-08-26 change.
4188 2006-04-01  Stepan Kasal  <kasal@ucw.cz>
4190         Clean up _AC_COMPILER_EXEEXT* macros.
4192         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Don't try to
4193           detect exeext, it will be done by _AC_COMPILER_EXEEXT_O; just set
4194           ac_file to the name of the default output file and call
4195           _AC_COMPILER_EXEEXT_WORKS.  Move the definition of ac_files and the
4196           initial `rm' of the candidate files...
4197         (_AC_COMPILER_EXEEXT): ... here and simplify them.  Moreover, use
4198           the same list in subsequent `rm' calls, and for the temporary
4199           redefinition of ac_clean_files; call _AC_COMPILER_OBJEXT at the end,
4200           and don't call the other _AC_COMPILER_EXEEXT_* macros directly, use...
4201         (_AC_COMPILER_EXEEXT_TESTS): ... this new macro.
4202         (_AC_COMPILER_EXEEXT_O): Don't export ac_cv_exeext, it's not needed (or
4203           no longer needed) by libtool.  Make it a cache check.
4204         (_AC_COMPILER_EXEEXT_CROSS): Remove the comment, it was obviously
4205           copied here by mistake.
4206         (AC_NO_EXECUTABLES): Redefine _AC_COMPILER_EXEEXT_TESTS, not
4207           _AC_COMPILER_EXEEXT.
4208         * lib/autoconf/c.m4 (AC_PROG_CC, AC_PROG_CXX, AC_PROG_OBJC): Do not call
4209           _AC_COMPILER_OBJEXT directly.
4210         * lib/autoconf/fortran.m4 (_AC_PROG_FC): Likewise.
4212 2006-04-01  Stepan Kasal  <kasal@ucw.cz>
4214         * lib/m4sugar/m4sh.m4 (_AS_DIRNAME_PREPARE): New macro.
4215         (AS_DIRNAME): Use it.
4216         (_AS_PREPARE): Add _AS_DIRNAME_PREPARE.
4218         * tests/*.at: Remove the generated ones.
4220 2006-04-01  Stepan Kasal  <kasal@ucw.cz>
4222         * lib/autotest/general.m4 (AT_INIT): Don't optimize the first PATH walk.
4224 2006-04-01  Eric Blake  <ebb9@byu.net>
4226         * lib/m4sugar/m4sh.m4 (_AS_PATH_WALK): Optimize nonexistent
4227         directories, unless optional third argument supplied.
4228         (AS_UNAME): Don't optimize PATH walk.
4230         * lib/Autom4te/Struct.pm, lib/autoconf/c.m4: s/non-existent/nonexistent/
4232 2006-04-01  Eric Blake  <ebb9@byu.net>
4233         and Stepan Kasal  <kasal@ucw.cz>
4235         * lib/m4sugar/m4sh.m4: Sort sections as implied by the comments,
4236         and fix some typos.
4238 2006-04-01  Noah Misch  <noah@cs.caltech.edu>
4240         * lib/autoconf/general.m4 (_AC_INIT_VERSION): Emit script name and
4241         Autoconf version number despite a zero- or one-argument AC_INIT.
4243         * bin/autoreconf.in (parse_args): Multiple -v send --verbose to
4244         subordinate tools.
4245         * lib/Autom4te/General.pm (getopt): Make -v and -d incremental.
4246         * doc/autoconf.texi (autoreconf Invocation): Document it.
4248         * doc/autoconf.texi: Use `Cygwin', `MinGW', and `license' consistently.
4249         Append LocalWords so ispell-buffer passes cleanly.  Spelling fixes.
4251 2006-04-01  Eric Blake  <ebb9@byu.net>
4253         * lib/m4sugar/m4sh.m4 (AS_MKDIR_P): Allow use in shell lists.
4254         * lib/autotest/general.m4: Be tolerant of existing directory when
4255           rm failed to remove it.
4257 2006-04-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4259         * bin/autoupdate.in: Redefine m4_location so that warnings print
4260         the correct lines of the input file by subtracting..
4261         (_au__first_line): ..this new definition.
4263         * lib/autoconf/general.m4 (AC_COMPILE_CHECK): Prefer
4264         AC_MSG_CHECKING over obsolete AC_CHECKING in autoupdated code.
4265         Remove stray newline in output.
4266         (AC_FOREACH): AU_DEFUN this as literal for autoupdate, and also
4267         AC_DEFUN this for autoconf, including the obsoletion diagnose.
4268         Fixes autoupdating of code where the replacement output contains
4269         m4sugar macros.
4270         * lib/autoconf/lang.m4 (AC_LANG_SAVE): Likewise.
4271         * tests/mktests.sh (ac_exclude_list): Add AC_FOREACH.
4272          (au_exclude_list): Add AC_LANG_SAVE.
4273         * tests/tools.at: Several new tests for all of this.
4274         * doc/autoconf.texi (Obsoleting Macros): Give a hint about the
4275         hairy details.
4276         The AC_LANG_SAVE issue was reported against Libtool by
4277         Dalibor Topic <robilad@kaffe.org>, and against Autoconf 2.57 by
4278         Kristian Kvilekval <kris@cs.ucsb.edu>.
4280 2006-04-01  Stepan Kasal  <kasal@ucw.cz>
4282         * bin/autoupdate.in: Handle m4 builtins and m4sugar macros together--
4283           switch all of them on and of when necessary.  Fixes the bug when
4284           m4sugar macros (e.g., m4_define) were expanded after the first
4285           automatic update (e.g., after AC_PREREQ or AC_INIT).
4287 2006-03-31  Paul Eggert  <eggert@cs.ucla.edu>
4289         * doc/autoconf.texi (Programming in M4sh): Sharpen the descriptions
4290         of AS_BASENAME and AS_DIRNAME.  Reported by Stepan Kasal.
4292         * lib/m4sugar/m4sh.m4 (AS_BASENAME_EXPR): Handle ///, ////, etc.
4293         correctly.  Problem reported by Eric Blake.
4294         (_AS_EXPR_PREPARE): Detect Tru64 expr bug.  Problem reported by
4295         Ralf Wildenhues.
4297 2006-03-30  Paul Eggert  <eggert@cs.ucla.edu>
4299         * doc/autoconf.texi (Programming in M4sh, Limitations of Usual Tools):
4300         Tighten up the basename/dirname wording.
4302 2006-03-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4304         * Makefile.maint (sc_texi_notab): New check: do not use TABs
4305         in texinfo files outside of verbatim environments.
4306         (syntax-check-rules): Update.
4307         * doc/autoconf.texi (Configuration Headers): Conform to it.
4309 2006-03-30  Chris Pickett <cpicke@cs.mcgill.ca>  (tiny change)
4311         * doc/autoconf.texi (autoreconf Invocation): Mention that -I for
4312           aclocal cannot be given on the command line.
4314 2006-03-29  Paul Eggert  <eggert@cs.ucla.edu>
4316         * doc/autoconf.texi (Programming in M4sh): Mention AS_BASENAME.
4317         Give an example for AS_DIRNAME instead of referring to Posix..
4318         (File System Conventions): Put discussion of // versus / here, and
4319         modernize it a bit.
4320         (Limitations of Usual Tools): Add basename.  Remove verbiage
4321         after dirname, since it got moved to the above sections.
4322         All this was inspired by a patch proposed earlier by Eric Blake.
4324 2006-03-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4326         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Quote
4327         `$0' to protect against spaces.
4328         * lib/autotest/general.m4 (AT_INIT): Likewise.
4329         * lib/m4sugar/m4sh.m4 (_AS_LINENO_PREPARE): Likewise, for
4330         `$0', $as_me.
4332 2006-03-26  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4334         * bin/autoscan.in: The value of find_configure_ac should be
4335         checked for existence, so we don't barf over a nonexisting
4336         configure.ac.  Reported by Laurence Darby <ldarby@tuffmail.com>.
4338 2006-03-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4340         * bin/autoupdate.in: Fix some typos.
4342 2006-03-21  Stepan Kasal  <kasal@ucw.cz>
4344         * doc/autoconf.texi (Installation Directory Variables): Fix typo.
4346         * lib/autoscan/autoscan.list: Refreshed.
4348 2006-03-20  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4350         * tests/local.at (AT_CHECK_ENV): Ignore AC_SUBSTed Objective C
4351         and Erlang related variables.
4353         * lib/autoconf/c.m4 (AC_LANG(Objective C), AC_LANG_OBJC)
4354         (_AC_LANG_ABBREV(Objective C), _AC_LANG_PREFIX(Objective C))
4355         (AC_LANG_SOURCE(Objective C), AC_LANG_PROGRAM(Objective C))
4356         (AC_LANG_CALL(Objective C), AC_LANG_FUNC_LINK_TRY(Objective C))
4357         (AC_LANG_BOOL_COMPILE_TRY(Objective C))
4358         (AC_LANG_INT_SAVE(Objective C), AC_LANG_PREPROC(Objective C))
4359         (AC_PROG_OBJCPP, AC_LANG_COMPILER(Objective C), AC_PROG_OBJC)
4360         (_AC_PROG_OBJC_G): New macros.
4361         (_AC_ARG_VAR_CPPFLAGS): Adjusted.
4362         * doc/autoconf.texi (Objective C Compiler): New node.
4363         (Preset Output Variables): Document OBJCFLAGS.
4364         (Language Choice): Document `Objective C' language.
4365         (Fortran Compiler): Fix typo.
4366         * NEWS: Updated.
4367         Inspired by a patch from David M. Lloyd <dmlloyd@tds.net>.
4369 2006-03-20  Stepan Kasal  <kasal@ucw.cz>
4371         * doc/autoconf.texi (Default Includes): Fix typo
4372           s/AC_HEADERS_STDC/AC_HEADER_STDC/
4373         (Limitations of Usual Tools): s/unwriteable/unwritable/
4374         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT, _AC_COMPILER_EXEEXT):
4375           Fix typos in the comments.
4377 2006-03-17  Stepan Kasal  <kasal@ucw.cz>
4379         * lib/autoconf/programs.m4 (AC_PATH_TOOL, AC_CHECK_TOOL, AC_CHECK_TOOLS):
4380           Factor out the warning to...
4381         (_AC_TOOL_WARN): ... this new macro; use `cross_compiling'.
4382         * tests/local.at (AT_CHECK_MACRO_CROSS): Avoid this warning.
4383         * tests/semantics.at (AC_C_BIGENDIAN): Likewise.
4385         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE): Do not special
4386           case `ac_delim' when writing the sed script.
4388         * lib/m4sugar/m4sh.m4 (AS_BOURNE_COMPATIBLE): Removed BIN_SH=xpg4,
4389           moved DUALCASE=1 ...
4390         (AS_SHELL_SANITIZE): ... here.
4391         * doc/autoconf.texi (Special Shell Variables) <BIN_SH>: Do not say
4392           that it is set.
4394         * lib/autoconf/programs.m4 (AC_CHECK_PROG): Quote the parameter of
4395           AC_SUBST.
4396         (_AC_PATH_PROG): Store the result to VARIABLE.
4397         (AC_PATH_PROG): No need to set VARIABLE again.
4399         * tests/local.at (AT_CHECK_MACRO_CROSS): New macro, creates two tests:
4400           the first one is usual AT_CHECK_MACRO test, the second one checks
4401           that the same works when cross-compiling.
4402         * tests/semantics.at (AC_CHECK_ALIGNOF, AC_CHECK_ALIGNOF struct):
4403         (AC_CHECK_SIZEOF, AC_CHECK_SIZEOF struct): Use it.
4405 2006-03-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4407         * lib/m4sugar/m4sh.m4 (_AS_DETECT_BETTER_SHELL): Prepend
4408         the directory `/usr/bin/posix' in the shell search, to prefer
4409         the Posix shell not only in subsequent spawns as with `$BIN_SH'
4410         on Tru64.
4412         * doc/autoconf.texi (contents): To fix texi2html output, hide
4413         `@setcontentsaftertitlepage' for HTML.
4414         (Writing Autoconf Macros): Likewise, insert space after `@c'.
4415         (Leviticus, Numbers, Deuteronomy): Likewise, change `@,c' to
4416         `@,{c}'.
4418 2006-03-16  Stepan Kasal  <kasal@ucw.cz>
4420         * lib/m4sugar/m4sh.m4 (_AS_PREPARE): Move the IFS setup and CDPATH
4421           sanitizing...
4422         (AS_SHELL_SANITIZE): ...here; mention _AS_PATH_WALK needs IFS set.
4423         * lib/autoconf/general.m4 (_AC_CANONICAL_SPLIT): Add an explanation
4424           why IFS is restored so late; thank you, Ralf, for reminding us.
4426 2006-03-15  Stepan Kasal  <kasal@ucw.cz>
4428         * doc/autoconf.texi (Pretty Help Strings): No need to use cached
4429           variables in the examples.
4431 2006-03-14  Romain Lenglet  <rlenglet@users.forge.objectweb.org>
4433         * doc/autoconf.texi (several sections): Cleaned up documentation for
4434         macros in erlang.m4.
4436 2006-03-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4438         * tests/autotest.at (AT_NO_CMDSUBST): New macro to determine
4439         failure condition for `$(cmd)' style command substitutions.
4440         (Parenthetical command substition, Multiline parenthetical
4441         command substition): Use it.
4443         * doc/autoconf.texi (Special Shell Variables): Missing word.
4444         Reported by Keith Marshall <keith.marshall@total.com>.
4446         * lib/m4sugar/m4sh.m4 (_AS_PATH_WALK): Do not forget to reset
4447         IFS even in case of empty `$PATH'.
4449 2006-03-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4451         * lib/autotest/general.m4 (AT_INIT) <at_optarg>: Optimize
4452         `expr' away if there is nothing to do.
4453         < --keywords >: Simplify and robustify argument handling.
4454         Revert erroneous comment from 2005-08-23.  Extend to allow
4455         keyword negation with `!'.
4456         Update help message.  Remove broken code to prevent running
4457         tests multiple times.
4458         * doc/autoconf.texi (testsuite Invocation) < --keywords >:
4459         Update and fix the documentation accordingly.
4460         * tests/autotest.at (Keywords): Renamed to..
4461         (Keywords and ranges): .. this.  Extended to make sure negated
4462         keywords, keywords taken from AT_SETUP arguments, and numeric
4463         test ranges work, and that matching is case-insensitive.
4465 2006-03-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4467         * lib/autoconf/types.m4 (_AC_CHECK_TYPE_NEW): Use a typedef to
4468         allow to pass unnamed structs even in C++.
4469         (AC_CHECK_SIZEOF):  Likewise.
4470         Also fix quoting error in `AC_MSG_FAILURE' arguments.
4471         * tests/semantics.at (AC_CHECK_ALIGNOF struct, AC_CHECK_SIZEOF
4472         struct): New tests for unnamed structs, each both native and
4473         cross-compiling.
4475         * lib/autoconf/c.m4 (AC_C_TYPEOF): Use typedef to avoid defining
4476         a structure inside a cast, for C++ conformance.
4477         * lib/autoconf/types.m4 (AC_CHECK_ALIGNOF): Likewise.
4478         Also fix quoting error in `AC_MSG_FAILURE' arguments.
4480         * lib/autoconf/c.m4 (AC_PROG_CC_STDC): If we cannot enable C99
4481         nor C89 mode, set `$ac_cv_prog_cc_stdc' to `no' instead of
4482         trying to execute the command `no'.
4484         * lib/autoconf/lang.m4 (AC_LANG_CONFTEST): AC_DEFUN this, not
4485         m4_define, so that the requirements of `AC_INCLUDES_DEFAULT' are
4486         expanded outside.
4488         * doc/autoconf.texi (autoconf Invocation): Fix typos in trace
4489         example.  Do not emphasize `$%', it is hardly new and special.
4490         Reported by Edouard Bechetoille <ebecheto@ens-lyon.fr>.
4492         * doc/autoconf.texi (Limitations of Usual Tools): Document
4493         OpenBSD and traditional `grep' failure to handle multiple
4494         patterns separated by newlines.
4496 2006-03-10  Romain Lenglet  <rlenglet@users.forge.objectweb.org>
4498         * doc/autoconf.texi (several sections): Add documentation for macros
4499         in erlang.m4.
4501 2006-03-10  Eric Blake  <ebb9@byu.net>
4503         * doc/autoconf.texi (Obsolete Macros): Fix wording of
4504         AC_TRY_LINK_FUNC.
4506 2006-03-10  Paul Eggert  <eggert@cs.ucla.edu>
4508         * doc/autoconf.texi: Use @acronym more consistently for acronyms
4509         like BSD, GPL, LGPL.  Fix minor English typos.
4510         (AC_STDC_HEADERS, AC_PROG_GCC_TRADITIONAL):
4511         Mention that these macros are becoming obsolete.
4512         (AC_STDC_HEADERS, AC_PROG_CC, AC_C_CONST, AC_C_VOLATILE):
4513         Use more modern terminology for which standard is what.
4514         (AC_PROG_CC): Mention gcc first, and remove obsolete references to egcs
4515         and to ansi2knr.
4516         (AC_PROG_CXX): Likewise.
4517         (AC_C_PROTOTYPES, Test Functions, AC_LIBOBJ vs LIBOBJS):
4518         Remove obsolete discussion about how to port to K&R.
4519         (Guidelines for Test Programs): Suggest AC_HEADER_STDBOOL rather than
4520         the obsolescent AC_HEADER_STDC.
4521         (AC_FOO_IFELSE vs AC_TRY_FOO): Don't use #error; test programs
4522         can't rely on it.
4524 2006-03-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4526         * tests/c.at (AC_PROG_CPP without warnings, AC_PROG_CPP via CC):
4527         Remove stdin redirection from /dev/null to allow pipe to work.
4529 2006-03-08  Paul Eggert  <eggert@cs.ucla.edu>
4531         * tests/c.at (AC_PROG_CPP without warnings, AC_PROG_CPP via CC):
4532         Require that /lib/cpp include stdio.h correctly.  Solaris 10's
4533         doesn't.  Problem reported by D'Arcy A MacIsaac and diagnosed by
4534         Ralf Wildenhues.
4536 2006-03-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4538         * lib/autoconf/status.m4 (_AC_SED_CMD_LIMIT): The limit for
4539         HP-UX sed is 99 commands, not 100.
4540         (_AC_OUTPUT_FILES_PREPARE): Do not count the `}' of an
4541         _AC_SUBST_FILES fragment.  Separate `{' and `r' commands by
4542         newline for portability.
4543         * tests/torture.at (Torturing config.status): Also test 100
4544         AC_SUBST_FILE invocations.  Fix test to actually verify the
4545         AC_CONFIG_FILES output.
4546         * doc/autoconf.texi (Limitations of Usual Tools): Document HP-UX
4547         command, label, and read-file `r' limits.  Unify HP-UX spelling.
4549         * tests/Makefile.am (edit, $(wrappers)): Do not use `$<' in
4550         non-suffix rule.
4551         ($(TESTSUITE_GENERATED_AT)): Use `$(srcdir)` for the benefit of
4552         non-GNU make.
4553         (autoconfdir, $(AUTOCONF_FILES)): Likewise.
4554         * tests/mktests.sh: Small shell portability fixes.
4556 2006-03-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4558         * doc/autoconf.texi (Caching Results): Fix the examples to use a
4559         recommended quoting style and discard unwanted output.
4561 2006-03-05  Paul Eggert  <eggert@cs.ucla.edu>
4563         * lib/autotest/general.m4 (_AT_NORMALIZE_TEST_GROUP_NUMBER): New macro.
4564         (AT_INIT): Use it, to remove arbitrary limit of 999,999 test
4565         cases, and to work around Tru64 expr bug.
4567 2006-03-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4569         * doc/autoconf.texi (Limitations of Usual Tools): Mention Tru64
4570         expr bug that turns the result of a regex match into a number if
4571         possible.
4573 2006-03-04  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4575         * lib/autoconf/types.m4 (AC_CHECK_ALIGNOF): Work around
4576         HPUX compiler bug, similarly to AC_CHECK_SIZEOF, as documented
4577         in section `Specific Compiler Characteristics'.
4579 2006-03-04  Eric Blake  <ebb9@byu.net>
4581         * lib/autoconf/functions.m4 (AC_FUNC_STRERROR_R): Avoid unused
4582         variable warning.
4584 2006-03-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4586         * lib/autoconf/status.m4 (_AC_OUTPUT_HEADER): Force correct
4587         order of variable initialization, so even the Solaris 2.6 shell
4588         can create a config header correctly.  Fixes lots of test suite
4589         failures.
4591 2006-02-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4593         * doc/autoconf.texi (Text processing Macros): New node to
4594         document the m4sugar macros m4_re_escape, m4_tolower,
4595         m4_toupper, m4_split, m4_normalize, m4_append, m4_append_uniq.
4597 2006-02-22  Paul Eggert  <eggert@cs.ucla.edu>
4599         * lib/autoconf/libs.m4 (_AC_PATH_X_DIRECT): Fix typo:
4600         XrmInitialize (0) -> XrmInitialize ().
4601         Reported by Toshio Kuratomi.
4603 2006-02-21  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4605         * lib/m4sugar/m4sh.m4 (AS_IF): Extend to allow more than one
4606         test, as in `if tests; then cmd1; elif ...; else ...; fi'.
4607         * doc/autoconf.texi (Programming in M4sh): Adjusted.
4608         * tests/m4sh.at (AS_IF and AS_CASE): Test this.  Also make sure
4609         both macros are defun'ed so that required macros are evaluated
4610         outside.
4612         * doc/autoconf.texi (Prerequisite Macros): State more precisely
4613         where a required macro will be expanded.
4614         (Coding Style): Another reason not to use `m4_define'.
4616 2006-02-21  Eric Blake  <ebb9@byu.net>
4618         * lib/autoconf/general.m4 (_AC_LIBOBJ): Minor optimization.
4620 2006-02-20  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4622         * doc/autoconf.texi (Looping constructs): New node, to
4623         document m4_for, m4_foreach, m4_foreach_w, and mention
4624         obsolete AC_FOREACH.
4625         (Obsolete Macros): Document AC_FOREACH.
4626         * lib/m4sugar/m4sugar.m4 (_m4_for): Fix declaration comment.
4627         (m4_for): Fix to never loop (almost) endlessly, work correctly
4628         with arithmetic expressions in arguments, a step of zero or
4629         non-integer multiple of the interval, and avoid integer
4630         overflow.
4631         * tests/m4sugar.at: New test for m4_for, m4_foreach, and
4632         m4_foreach_w.
4634 2006-02-20  Romain Lenglet  <rlenglet@users.forge.objectweb.org>
4636         Add basic support for Erlang, both for configuring Erlang/OTP
4637         tools, and Erlang as a conf test language.
4638         * lib/autoconf/erlang.m4: New file.
4639         * lib/autoconf/autoconf.m4: Add erlang.m4.
4640         * lib/autoconf/Makefile.am (dist_autoconflib_DATA): Likewise.
4641         * lib/freeze.mk (autoconf_m4f_dependencies): Likewise.
4642         * NEWS: Add short description of new macros.
4643         * THANKS: Add Romain Lenglet.
4645 2006-02-20  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4647         * doc/autoconf.texi (Shellology) <pdksh>: Document that pdksh as
4648         native /bin/sh may not set KSH_VERSION (seen on OpenBSD).
4650 2006-02-15  Eric Blake  <ebb9@byu.net>
4652         * lib/autoconf/general.m4 (AC_CHECK_DECL): Avoid unused variable
4653         warning.
4655 2006-02-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4657         * lib/m4sugar/m4sh.m4 (AS_CASE): New macro.
4658         (_AS_CASE): Private helper macro.
4659         * tests/m4sh.at: Basic tests for AS_IF and AS_CASE.
4660         * doc/autoconf.texi (Programming in M4sh): Document AS_CASE.
4661         Fix syntax of AS_IF description
4662         (Prerequisite Macros): Mention AS_IF and AS_CASE as workarounds
4663         for the AC_REQUIRE mess.
4664         * NEWS: Mention AS_CASE, AS_BOURNE_COMPATIBLE, and
4665         AS_SHELL_SANITIZE.
4667 2006-02-14  Paul Eggert  <eggert@cs.ucla.edu>
4669         * doc/autoconf.texi: Minor style cleanup.
4670         Be consistent about spaces after commas.
4671         Insert [] where empty args look a bit funny.
4672         Fix some "i.e." and "e.g." usages.
4673         Try to avoid "X/Y" usages.
4674         Don't be pedantic about "ISO C99"; just say C99.
4675         Prefer GNU style for spaces in front of parens.
4676         (Function Portability): Comment about C89 versus C99
4677         signed integer division.
4678         (Particular Headers): Use current gnulib style for dirent
4679         includes.
4681 2006-02-14  Stepan Kasal  <kasal@ucw.cz>
4682         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4684         * bin/autoupdate.in (handle_autoconf_macros): Fix updating of
4685         macros without parameters.
4686         * lib/autoconf/autoupdate.m4 (AU_ALIAS): Likewise.
4687         * doc/autoconf.texi (Obsoleting Macros): Document AU_ALIAS.
4688         * tests/tools.at (autoupdating AU_ALIAS): New test for AU_ALIAS
4689         `$#' bug.
4690         (autoupdate): Updated to match AU_ALIAS fix.
4692 2006-02-13 Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4693         and Paul Eggert  <eggert@cs.ucla.edu>
4695         * doc/autoconf.texi (Programming in M4sh): Document
4696         AS_BOURNE_COMPATIBLE and AS_SHELL_SANITIZE.
4698 2006-02-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4700         * lib/m4sugar/m4sh.m4 (_AS_BOURNE_COMPATIBLE): Renamed to..
4701         (AS_BOURNE_COMPATIBLE): ..this.
4702         (_AS_RUN, AS_SHELL_SANITIZE): Adjusted all callers.
4704 2006-02-12  Paul Eggert  <eggert@cs.ucla.edu>
4706         * doc/install.texi (Defining Variables): Tighten up the
4707         CONFIG_SHELL wording.
4709 2006-02-12 Paul Eggert  <eggert@cs.ucla.edu>
4710         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4712         * lib/m4sugar/m4sh.m4 (_AS_BOURNE_COMPATIBLE): Look at the output
4713         of (set -o) rather than testing whether (set -o posix) succeeds,
4714         to work around a bug in the AIX 5.3 shell.  Problem originally
4715         reportd by Howard Chu for libtool.
4717 2006-02-10  J.T. Conklin  <jtc@acorntoolworks.com>
4719         * doc/autoconf.texi (Running the Compiler, Running the Linker):
4720         Changes the macro arguments in summaries to match the
4721         descriptions.
4723 2006-02-04  Stepan Kasal  <kasal@ucw.cz>
4725         * doc/install.texi (Defining Variables): Classify the `CONFIG_SHELL'
4726         hint as ``a workaround for a bug.''
4728 2006-01-31  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4730         * bin/autoreconf.in: New option `--no-recursive'.
4731         Improve wording for subpackages a bit.
4732         * doc/autoconf.texi (autoreconf Invocation): Updated.
4733         * NEWS: Updated.
4735         * doc/install.texi (Defining Variables): Put `CONFIG_SHELL'
4736         in environment of `configure', not the command line.
4737         Reported by Howard Chu <hyc@highlandsun.com>.
4739 2006-01-25  Paul Eggert  <eggert@cs.ucla.edu>
4741         * doc/autoconf.texi (Limitations of Builtins): Document the
4742         problem with "trap -".
4744 2006-01-23  Steven G. Johnson  <stevenj@fftw.org>
4746         * lib/autoconf/fortran.m4 (_AC_FC_LIBRARY_LDFLAGS, _AC_FC_DUMMY_MAIN):
4747         (_AC_FC_MAIN, __AC_FC_NAME_MANGLING): Use _AC_LANG in check
4748         messages to differentiate Fortran and Fortran 77 tests.
4749         (AC_FC_SRCEXT, AC_FC_FREEFORM): Use AC_LANG_PUSH/POP instead of
4750         AC_LANG_ASSERT, to allow use in mixed-language projects.
4752 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
4754         * lib/autoconf/c.m4 (AC_LANG_FUNC_LINK_TRY(C)): Prefer "defined
4755         FOO" to "defined (FOO)".
4756         * lib/autoconf/functions.m4 (_AC_LIBOBJ_ALLOCA): Likewise.
4757         * lib/autoconf/headers.m4 (AC_HEADER_STAT): Likewise.
4758         * lib/autoconf/specific.m4 (AC_XENIX_DIR): Likewise.
4759         * tests/tools.at (ifnames): Likewise.
4761 2006-01-21  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4763         * lib/m4sugar/m4sh.m4 (AS_TMPDIR): Do not pass `-q' to mktemp.
4764         * lib/Autom4te/General.pm (mktmpdir): Likewise.
4765         (END): Improve error message a bit.
4766         Reported by Bruce Korb <bkorb@gnu.org>.
4768 2006-01-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4770         * lib/autoconf/fortran.m4 (_AC_FC_LIBRARY_LDFLAGS): Ignore
4771         `-LIST:' and `-LNO:', for PathScale 2.3 compilers.
4773 2006-01-11  Stepan Kasal  <kasal@ucw.cz>
4775         * doc/autoconf.texi (Header Portability): On Solaris 8, sys/ptem.h
4776         requires sys/stream.h.  Reported by Oliver Kiddle.
4778 2006-01-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4779             Stepan Kasal  <kasal@ucw.cz>
4781         * lib/autotest/general.m4 (AT_INIT): When ensuring writability
4782         before the removals of test dirs, use `find' to avoid modification
4783         of symlinked directories.
4785 2006-01-11  Steven G. Johnson  <stevenj@alum.mit.edu>
4787         * lib/autoconf/fortran.m4 (AC_F77_DUMMY_MAIN, AC_FC_DUMMY_MAIN):
4788         Don't ignore the macro arguments.
4790 2006-01-11  David Thompson  <dthompsn@vizsolutions.com>
4792         * lib/autoconf/c.m4 (_AC_PROG_CXX_EXIT_DECLARATION): Add `exit'
4793         declaration that works for MSVC.
4795 2006-01-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4797         * lib/autoconf/lang.m4 (_AC_COMPILER_OBJEXT_REJECT):
4798         Add `*.map' and `.inf' for Green Hills compiler.
4799         Reported by Stefan Seefeld <stefan@codesourcery.com>.
4801         * lib/m4sugar/m4sugar.m4 (m4_text_wrap): Handle quadrigraphs
4802         correctly: pad with spaces after FIRST_PREFIX if necessary,
4803         and compute string lenghts with `m4_qlen' instead of `m4_len'.
4804         * lib/m4sugar/m4sh.m4 (AS_HELP_STRING): Comments updated.
4805         * tests/m4sh.at (AS_HELP_STRING): Test extended.
4806         * NEWS: Updated.
4807         Reported by numerous people, numerous times.
4809 2006-01-05  Paul Eggert  <eggert@cs.ucla.edu>
4811         * bin/autoconf.as, bin/autoheader.in, bin/autom4te.in
4812         * bin/autoreconf.in, bin/autoscan.in, bin/autoupdate.in, bin/ifnames.in:
4813         * lib/autoconf/general.m4, lib/autoconf/status.m4:
4814         * lib/autotest/general.m4, tests/local.at:
4815         Update copyright year to 2006.
4817         * Makefile.maint (sc_root_tests): Use the recommended style s/a/b/ for
4818         sed substitutions.
4819         * doc/autoconf.texi (Installation Directory Variables): Use s|a|b|
4820         for file names, again.  Reported by Noah Misch.
4821         (Coding Style): Explain that s|a|b| is preferred for file names.
4822         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE): Prefer s/a/b/.
4823         (AC_OUTPUT_MAKE_DEFS): Likewise.
4824         * lib/autotest/general.m4 (AT_INIT): Likewise.
4825         * lib/m4sugar/m4sh.m4 (_AS_LINENO_PREPARE): Likewise.
4826         * tests/local.at (AT_CHECK_AUTOM4TE): Likewise.
4828         Fix Posix-conformance bugs re use of { command in sed scripts,
4829         and improve the sed-related documentation a bit.
4830         * doc/autoconf.texi (Installation Directory Variables): Use
4831         our own style advice re 's,a,b,' versus 's|a|b|'.  Use "Sed"
4832         rather than "sed" when talking about Sed in general.
4833         (Particular Programs): Likewise.
4834         (Coding Style): y is like s with respect to / and ,.
4835         (Limitations of Usual Tools): Document the weird restrictions
4836         that Posix has about { }.  Use better quoting.
4837         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE, _AC_OUTPUT_HEADER):
4838         Rewrite to conform to Posix rules about { } in sed scripts.
4839         * lib/m4sugar/m4sh.m4 (AS_DIRNAME_SED, AS_BASENAME_SED): Likewise.
4840         * tests/foreign.at (Libtool): Likewise.
4841         * tests/semantics.at (AC_CHECK_PROG & AC_CHECK_PROGS):
4842         Use our own style advice re 's,a,b,' versus 's|a|b|'.
4844 2006-01-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4846         * lib/autoconf/status.m4: Fix typo.
4848         * lib/autoconf/fortran.m4 (_AC_FC_LIBRARY_LDFLAGS): Ignore
4849         singly- or doubly-quoted arguments to `-cmdline', `-ignore',
4850         `-def', for the benefit of Portland `pgf90 -Mipa'.
4851         Reported by Christopher Hulbert <cchgroupmail@gmail.com>.
4853 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
4855         * doc/autoconf.texi: Update copyright (and other) dates to 2006.
4856         * doc/autoconf.texi (Shellology): Mac OS X 10.2 changed the default
4857         shell from zsh to bash.
4859 2005-12-31  Stepan Kasal  <kasal@ucw.cz>
4861         * lib/autoconf/programs.m4 (_AC_PROG_GREP): Use $PATH_SEPARATOR;
4862           ":" caused problems on OS/2-EMX.  Suggested by Andrew Belov.
4864 2005-12-29  Paul Eggert  <eggert@cs.ucla.edu>
4866         * doc/autoconf.texi (Shell Substitutions): Warn about unbalanced
4867         parentheses in $(...).  Problem reported by Eric Blake.
4869 2005-12-12  Paul Eggert  <eggert@cs.ucla.edu>
4871         * doc/autoconf.texi (Limitations of Usual Tools):
4872         Mention which characters can be escaped with \ in portable regular
4873         expressions used in grep, sed, expr.  Mention the leading ^ problem
4874         with expr.  Clean up some confusing wording.  Mention which
4875         grep options are portable.
4877 2005-12-09  Stepan Kasal  <kasal@ucw.cz>
4879         * tests/local.at (AT_CHECK_AUTOM4TE): Fix typo in the comment.
4881 2005-12-02  Paul Eggert  <eggert@cs.ucla.edu>
4883         * doc/autoconf.texi (Limitations of Builtins): Fix typos in previous
4884         patch, noted by Ralf Wildenhues.
4886 2005-12-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4888         * lib/m4sugar/m4sh.m4 (_AS_BOURNE_COMPATIBLE): Try `set -o
4889         posix' unconditionally, for pdksh in `native sh' emulation.
4891 2005-12-01  Paul Eggert  <eggert@cs.ucla.edu>
4893         * doc/autoconf.texi (Shellology): Document eval $? problem
4894         with ash.
4895         (Limitations of Builtins): Likewise.
4897 2005-11-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4899         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Pass
4900         CONFIG_SHELL in the environment of the configure rerun.
4901         * doc/autoconf.texi (Here-Documents, config.status Invocation):
4902         Suggest passing CONFIG_SHELL absolute, and in the environment
4903         rather than as option.
4905 2005-11-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4907         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE):
4908         Fix quoting of output line (triggered for many AC_SUBST_FILEs).
4909         Fix macro quoting.  Fix output for n * 98 substituted variables.
4911 2005-11-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4913         * lib/autoconf/status.m4 (_AC_OUTPUT_MAIN_LOOP): Initialize
4914         `tmp' to avoid file removal race.
4916 2005-11-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4918         * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS): Initialize
4919         ac_clean_files and LIBOBJS.
4921 2005-11-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4923         * lib/autoconf/programs.m4 (AC_CHECK_PROG, AC_PATH_PROG):
4924         Factor functionality to..
4925         (_AC_CHECK_PROG, _AC_PATH_PROG): these new macros, but only
4926         `AC_SUBST($1)' in the public version.
4927         (AC_CHECK_TOOL, AC_PATH_TOOL, AC_PATH_TARGET_TOOL)
4928         (AC_CHECK_TARGET_TOOL): Use internal versions for ac_ct_* and
4929         ac_pt_* variables.
4931 2005-11-01  Stepan Kasal  <kasal@ucw.cz>
4933         * lib/autoconf/c.m4 (AC_PROG_CC_C_O): Remove the comment about 8+3
4934         filesystems.
4936 2005-11-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4938         * NEWS: Move AH_HEADER mention to right place.
4940 2005-10-27  Stepan Kasal  <kasal@ucw.cz>
4942         * lib/autoconf/c.m4 (AC_PROG_CC_C_O): "conftst2" -> "conftest2"
4943         * lib/autoconf/fortran.m4 (_AC_PROG_FC_C_O): Likewise.
4945 2005-10-25  Stepan Kasal  <kasal@ucw.cz>
4947         * lib/autoconf/c.m4 (AC_PROG_CC_C_O): rm -f conftst2.*, not only
4948         conftst2.$ac_objext.
4949         * lib/autoconf/fortran.m4 (_AC_PROG_FC_C_O): Likewise.
4951 2005-10-24  Stepan Kasal  <kasal@ucw.cz>
4953         * lib/autoconf/c.m4 (AC_PROG_CC_C_O): Use conftst2.o instead of
4954         conftest.o, to see whether the compiler really obeys; rm the object
4955         file before and after the test and register it with ac_clean_files.
4956         * lib/autoconf/fortran.m4 (_AC_PROG_FC_C_O): Likewise.
4958 2005-10-21  Stepan Kasal  <kasal@ucw.cz>
4960         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE): When determining,
4961         the delimiter CEOF$ac_eof: fix quoting of CEOF[0-9]* and modify the
4962         code so that the most common case requires less forks.
4964 2005-10-20  Stepan Kasal  <kasal@ucw.cz>
4966         * doc/autoconf.texi (Shell Substitutions}: Document that ${10} is
4967         not portable; thanks to Paul Eggert and Alexandre.
4969         * NEWS: Fix an old typo.
4971 2005-10-20  Jim Meyering  <jim@meyering.net>
4973         * doc/autoconf.texi: Typo: s/feature/features/ in ``the features of
4974         the latter'', in two places.
4976 2005-10-19  Paul Eggert  <eggert@cs.ucla.edu>
4978         * doc/autoconf.texi (Generating Sources): AC_LANG_PROGRAMS ->
4979         AC_LANG_PROGRAM, fixing a typo.  Don't give details about
4980         the inner workings of AC_LANG_FUNC_LINK_TRY.
4981         * lib/autoconf/c.m4 (AC_LANG_CALL(C)): Reformat to match
4982         AC_LANG_FUNC_LINK_TRY.  This involves returning the value returned
4983         by the function rather than ignoring it.
4984         (AC_LANG_FUNC_LINK_TRY(C)): Call the function rather than simply
4985         comparing its address.  Intel's interprocedural optimization was
4986         outsmarting the old heuristic.  Problem reported by
4987         Mikulas Patocka.
4989 2005-10-19  Stepan Kasal  <kasal@ucw.cz>
4991         * lib/autoconf/general.m4 (AC_SUBST): Remove an obsolete comment.
4993 2005-10-05  Paul Eggert  <eggert@cs.ucla.edu>
4995         * lib/m4sugar/m4sugar.m4 (_m4_map): New macro.
4996         (m4_map, m4_map_sep): Use it.  Handle the empty list correctly.
4998 2005-10-04  Stepan Kasal  <kasal@ucw.cz>
5000         * lib/autotest/general.m4 (AT_INIT): Really make the subtree writable
5001         before removing it (chmod -R u+rwx); there are three instances of this.
5003 2005-10-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5004             Stepan Kasal  <kasal@ucw.cz>
5006         * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): Balance parentheses.
5007         * lib/autotest/general.m4 (AT_INIT): If the test dir already exists,
5008         make its content writable before removing it.  Remove an errorneous
5009         comment from the end, where the logs of the failed tests are copied
5010         to the main log file.
5012 2005-09-27  Stepan Kasal  <kasal@ucw.cz>
5014         * tests/semantics.at (AC_C_BIGENDIAN): Pass --force to autoheader,
5015           in case the computer is too quick.  Double quote the configure.ac
5016           snippets.
5018         * tests/local.at (AT_CHECK_AUTOCONF): Always pass --force to prevent
5019           problems if the testsuite were running too fast.
5021 2005-09-18  Paul Eggert  <eggert@cs.ucla.edu>
5023         * lib/autoconf/libs.m4 (_AC_PATH_X_DIRECT): Look for X11/Xlib.h
5024         and XrmInitialize rather than X11/Intrinsic.h and XtMalloc
5025         (which belong to Xt, not X itself).  See Debian bug 327655.
5026         * NEWS: Mention this.
5028 2005-09-07  Stepan Kasal  <kasal@ucw.cz>
5030         * lib/autoconf/c.m4 (AC_LANG_SOURCE(C)): Remove an incorrect comment.
5032 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
5034         * config/move-if-change: Don't output "$2 is unchanged";
5035         suggested by Ben Elliston.  Handle weird characters correctly.
5037 2005-09-06  Stepan Kasal  <kasal@ucw.cz>
5039         * lib/autoconf/libs.m4 (AC_SEARCH_LIBS): Merge the two AC_LINK_IFELSE
5040           calls, so that the final expansion of this macro is shorter.
5041           Create the conftest.$ac_ext outside the `for' loop, to speed the run.
5042           Do not use `break' in the argument to AC_LINK_IFELSE, it would skip
5043           the cleanup there.  Use AS_VAR_* macros, to be more general.
5044         * tests/semantics.at (AC_SEARCH_LIBS): Check for the cleanup.
5046         * lib/autoconf/general.m4: Use AS_IF where appropriate.
5048         * lib/m4sugar/m4sh.m4 (AS_IF): Use m4_default.
5050 2005-09-01  Stepan Kasal  <kasal@ucw.cz>
5052         * doc/autoconf.texi (Configuration Headers): Add an index entry
5053           for AH_HEADER.
5055 2005-08-26  Pavel Roskin  <proski@gnu.org>
5057         * lib/autoconf/libs.m4 (_AC_PATH_X_XMKMF): Use shell variable
5058         XMKMF to locate xmkmf.  Make XMKMF precious.  Export CC when
5059         running xmkmf.
5061 2005-08-26  Paul Eggert  <eggert@cs.ucla.edu>
5063         * lib/m4sugar/m4sh.m4 (_AS_VERSION_COMPARE_PREPARE):
5064         The previous patch didn't work, so try a better one.
5066 2005-08-26  Stepan Kasal  <kasal@ucw.cz>
5068         * doc/autoconf.texi (Programming in M4sh) <AS_TR_CPP>: Fix m4 quoting
5069         in the example.  Reported by Bruno Haible.
5070         <AS_TR_SH>: Likewise.  Also modify the example to be more convincing:
5071         "if $undefined_var;" succeeds with my shell.
5073         * lib/autoconf/general.m4 (AC_CANONICAL_BUILD, AC_CANONICAL_HOST,
5074         AC_CANONICAL_TARGET): Define by AC_DEFUN, no need to use AC_DEFUN_ONCE;
5075         but change the m4_divert_text to m4_divert_once.
5077 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
5079         * lib/m4sugar/m4sh.m4 (_AS_VERSION_COMPARE_PREPARE):
5080         Work around bug in Solaris /usr/xpg4/bin/awk.
5081         The bug is present in at least Solaris 8 through 10.
5083 2005-08-24  Stepan Kasal  <kasal@ucw.cz>
5085         * lib/autoconf/general.m4 (_AC_CANONICAL_SPLIT): Simplify; rejecting
5086         some evil values and relying on the fact that $* concatenates the
5087         parameters by the first character from IFS.
5089 2005-08-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>,
5090             Stepan Kasal  <kasal@ucw.cz>
5092         * lib/autoconf/status.m4 (_AC_CONFIG_REGISTER_DEST): When the
5093         first header appears, define AH_HEADER.
5094         * doc/autoconf.texi (Configuration Headers): Document AH_HEADER.
5095         Update limitations about when to call AC_CONFIG_HEADERS.
5096         (Configuration Commands): Document that AC_CONFIG_COMMANDS_PRE
5097         parameter can call AC_SUBST, AC_DEFINE, or AC_CONFIG_FOOS; explain
5098         that AC_CONFIG_COMMANDS_PRE and AC_CONFIG_COMMANDS_POST are not
5099         ``Configuration Actions''; fix their index entries.
5101         * lib/autotest/general.m4 (AT_INIT): Process multiple keywords
5102         options correctly.  Process N-M as M-N if M is smaller than N.
5103         Process ranges correctly so that N-N will run only N.
5104         Sort and uniquify the tests that will be run.  If there is more
5105         than one test, reinsert the banners for the tests.
5106         * tests/autotest.at (Keywords): Unmark XFAIL.
5108 2005-08-23  Stepan Kasal  <kasal@ucw.cz>
5110         * lib/autoconf/general.m4 (_AC_DEFINE_Q): Strip the parameter list
5111           before passing the macro name to AH_TEMPLATE.
5113         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): config.status
5114           now opens log after option processing; in particular, --version
5115           and --help do not touch config.log.
5117         * Makefile.maint: Revert the change from 2005-08-12.
5119 2005-08-22  Stepan Kasal  <kasal@ucw.cz>
5121         * lib/autoconf/general.m4 (AC_ARG_ENABLE, AC_ARG_WITH): Factor out
5122           common code to...
5123         (_AC_ENABLE_IF, _AC_ENABLE_IF_ACTION): ... these new macros.
5125 2005-08-21  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5127         * doc/autoconf.texi (Using Autotest, testsuite Scripts)
5128         (Autotest Logs, Writing testsuite.at, testsuite Invocation):
5129         Language cleanup.
5131         * doc/autoconf.texi (Defining Symbols, Changed Results):
5132         Prepend to LIBS, not append, in examples.
5134 2005-08-16  Stepan Kasal  <kasal@ucw.cz>
5136         When building in place, set srcdir="."; suggested by Tim Van Holder.
5138         * lib/autoconf/general.m4 (_AC_INIT_SRCDIR): Do this; to recognize
5139           build in place, we need ac_pwd, and thus have to AC_REQUIRE ...
5140         (_AC_INIT_DIRCHECK): ... this macro and AC_DEFUN both of them.
5141         * lib/autoconf/status.m4 (_AC_SRCDIRS): Fix a comment: srcdir="."
5142           does not mean "no --srcdir option".
5144 2005-08-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5146         * tests/autoscan.at (autoscan): New file.
5147         * tests/suite.at: Use it.
5148         * tests/Makefile.am (TESTSUITE_HAND_AT): Add it.
5149         Reported against Libtool by Gideon Go <gideon.go@gmail.com>.
5151         * tests/autotest.at (Keywords): Test keywords combinations.
5153 2005-08-12  Stepan Kasal  <kasal@ucw.cz>
5155         * Makefile.maint (GZIP_ENV): When checking the help text of gzip,
5156           add "2>&1"; gzip 1.2.4 prints help on stderr.
5158 2005-07-27  Stepan Kasal  <kasal@ucw.cz>
5160         * lib/autotest/general.m4 (_AT_DECIDE_TRACEABLE): The symbol at_reason
5161         was pushdef'ed twice while popped only once.  Push it only once.
5162         (_AT_CHECK): Cosmetic changes to the "case $at_status" command.
5164 2005-07-26  Stepan Kasal  <kasal@ucw.cz>
5166         * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): The message is now
5167         prefixed by mere "===", not "configure: === ".
5169 2005-07-25  Paul Eggert  <eggert@cs.ucla.edu>
5171         * Makefile.maint: Update from Bison.
5173         * lib/m4sugar/m4sugar.m4 (m4_strip): Comment fix---change tab to
5174         "<tab>" in comment, so that the point is understandable.
5176 2005-07-25  Stepan Kasal  <kasal@ucw.cz>
5178         Rewrite substantial part of lib/autoconf/status.m4.
5179         The main change is that CONFIG_FILES, CONFIG_HEADERS, CONFIG_LINKS,
5180         and CONFIG_COMMANDS are not processed in four separate loops.
5181         Instead, there is one main loop.  This alows that the common code
5182         is expanded only once, thus config.status (and configure) is smaller.
5184         The registration mechnism in AC_CONFIG_FILES and cousins also changed;
5185         the AC_LIST_FILES and cousins macros are no longer used.
5187         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES, _AC_OUTPUT_HEADERS,
5188         _AC_OUTPUT_LINKS, _AC_OUTPUT_COMMANDS): Renamed to ...
5189         (_AC_OUTPUT_FILE, _AC_OUTPUT_HEADER, _AC_OUTPUT_LINK,
5190         _AC_OUTPUT_COMMAND): ..., respectively.  These macros no longer
5191         contain the initialization, nor the for loop, nor the associated
5192         commands; all these go to ...
5193         (_AC_OUTPUT_MAIN_LOOP): ... this new macro, called from
5194         _AC_OUTPUT_CONFIG_STATUS.
5195         (_AC_CONFIG_SPLIT, _AC_CONFIG_SPLIT_SOURCE_DEST, _AC_CONFIG_SPLIT_FILE_IN):
5196         Nuked; the code was merged into _AC_OUTPUT_MAIN_LOOP.
5197         (_AC_OUTPUT_FILE): The creation of the sed script ...
5198         (AC_OUTPUT): ... and the setup of ac_vpsub goes to ...
5199         (_AC_OUTPUT_FILES_PREPARE): ... a new macro, also called from
5200         _AC_OUTPUT_MAIN_LOOP.
5201         (_AC_CONFIG_FILES, _AC_CONFIG_HEADERS, _AC_CONFIG_LINKS,
5202         _AC_CONFIG_COMMANDS): Use ...
5203         (_AC_CONFIG_FOOS): ... this new macro, which uses these ...
5204         (_AC_CONFIG_REGISTER, _AC_CONFIG_REGISTER_DEST): ... new macros.
5205         (_AC_CONFIG_FILE, _AC_CONFIG_HEADER, _AC_CONFIG_LINK,
5206         _AC_CONFIG_COMMAND, _AC_CONFIG_DEPENDENCIES): No longer needed.
5207         (_AC_CONFIG_DEPENDENCY): Update, it uses these ...
5208         (_AC_CONFIG_DEPENDENCY_DEFAULT, _AC_FILE_DEPENDENCY_TRACE_COLON):
5209         ... new macros.
5210         (_AC_CONFIG_UNIQUE): Update.
5211         (AC_LIST_FILES, AC_LIST_HEADERS, AC_LIST_LINKS, AC_LIST_COMMANDS):
5212         Replaced by this ...
5213         (_AC_LIST_TAGS): ... new common macro.
5214         (AC_LIST_FILE_COMMANDS, AC_LIST_HEADER_COMMANDS, AC_LIST_LINK_COMMANDS,
5215         AC_LIST_COMMAND_COMMANDS): Replaced by this ...
5216         (_AC_LIST_TAG_COMMANDS): ... new common macro.
5217         (_AC_CONFIG_COMMANDS_INIT): Moved top to the `registration' section;
5218         this didn't belong to the `config commands' section.
5219         (_AC_OUTPUT_COMMANDS_INIT): Don't initialize, m4_ifdef is our friend.
5220         (AC_CONFIG_COMMANDS_PRE, AC_OUTPUT_COMMANDS_PRE,
5221         AC_CONFIG_COMMANDS_POST): Moved to a new section, these didn't belong
5222         to the `config commands' section either.
5223         (AC_CONFIG_SUBDIRS): Don't touch diversion DEFAULTS.
5224         (_AC_LIST_SUBDIRS): Don't initialize, m4_ifdef is our friend.
5226         ... and many changes to the comments nearby.
5228         * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS): At the end of the day,
5229         set ac_subdirs_all='_AC_LIST_SUBDIRS'.
5230         * tests/torture.at (AC_CONFIG_FILES, HEADERS, LINKS and COMMANDS):
5231         AC_CONFIG_COMMANDS(command:input,...) is no longer allowed.
5232         (#define header templates): The comment at the top of the generated
5233         header now includes the name(s) of the source file(s).
5235         Several unrelated small changes:
5237         * lib/autoconf/general.m4 (AC_CACHE_VAL): Be didactic, quote the first
5238         parameter to AC_DIAGNOSE.
5239         * lib/autoconf/status.m4 (AC_CONFIG_SUBDIRS): Likewise.
5240         (_AC_LINK_FILES_CNT): Don't AU_DEFUN this; it causes confusing messages
5241         with autoupdate; use m4_define_default inside AU_DEFUNed AC_LINK_FILES.
5242         (AC_OUTPUT): In the compatibility code, use m4_ifvaln, to be consistent
5243         with AU::AC_OUTPUT.
5244         (AU::AC_OUTPUT): Don't double-quote $2 and $3, the compatibility code
5245         in AC_OUTPUT doesn't double-quote it either.
5246         * tests/tools.at (autoupdate): AU::AC_OUTPUT no longer double-quotes the
5247         parameters.
5249 2005-07-10  Stepan Kasal  <kasal@ucw.cz>
5251         * lib/autoconf/fortran.m4 (_AC_PROG_FC_V_OUTPUT): Document which
5252         versions of Portland Group compiler produce single- and double-quoted
5253         -cmdline argument.  Reported by Steven G. Johnson <stevenj@fftw.org>
5254         and Ole Holm Nielsen <Ole.H.Nielsen@fysik.dtu.dk>.
5256 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
5258         * tests/local.at (AT_CONFIG_CMP): Ignore lines like "LIBS=''" too.
5259         This is a corrected version of yesterday's patch.
5261 2005-07-07  Stepan Kasal  <kasal@ucw.cz>
5263         * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): Report the full
5264         path, too; insert a "===" to emphasize the line.
5266         * lib/autoconf/general.m4 (AC_CANONICAL_BUILD): Rename
5267           ac_cv_build_alias to ac_build_alias.
5268         (AC_CANONICAL_HOST, AC_CANONICAL_TARGET): Simplify.
5270         On 2005-02-24, an unintentional AC_SUBST([CC]) was introduced; this
5271         change eliminates it.  Problem reported by Alexandre Duret-Lutz.
5272         * lib/autoconf/general.m4 (_AC_ARG_VAR_PRECIOUS): Move the AC_SUBST ...
5273         (AC_ARG_VAR): ... here.
5274         (_AC_INIT_PREPARE): Call AC_SUBST for build_alias, host_alias and
5275           target_alias.
5277         Keep a list of all precious variables and process them with one simple
5278         for loop, instead of expanding all commands, or, OTOH, complicated
5279         processing of output of "set".
5280         * lib/autoconf/general.m4 (_AC_ARG_VAR_PRECIOUS): Acumulate the
5281         variable names in new macro...
5282         (_AC_PRECIOUS_VARS): ... which will be assigned to ac_precious_vars.
5283         (_AC_ARG_VAR_STORE): New macro which writes to diversion PARSE_ARGS
5284           a loop to assign all ac_env_* and ac_cv_env_* variables.
5285         (_AC_ARG_VAR_VALIDATE): Use shell variable ac_precious_vars, divert
5286           to INIT_PREPARE.
5287         (_AC_INIT_DEFAULTS): At the end, if _AC_PRECIOUS_VARS is set, assign
5288           its value to shell variable ac_precious_vars and call
5289           _AC_ARG_VAR_STORE and _AC_ARG_VAR_VALIDATE.
5290         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Don't call
5291           _AC_ARG_VAR_VALIDATE.
5293         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Move AC_LANG_PUSH(C)
5294           and the AC_SUBSTs ...
5295         (AC_INIT): ... here.
5297         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Changed the title of
5298           the ac_subst_files section in config.log.
5300         * tests/local.at (AT_CONFIG_CMP): Revert Paul's previous change.
5302 2005-07-06  Paul Eggert  <eggert@cs.ucla.edu>
5304         * NEWS: New macro AC_C_TYPEOF.
5305         * doc/autoconf.texi (C Compiler): Document AC_C_TYPEOF.
5306         * lib/autoconf/c.m4 (AC_C_TYPEOF): New macro.
5307         * tests/c.at (C keywords): Test AC_C_TYPEOF.
5309         Fix problems reported by Nicolas Joly.
5310         * tests/base.at (Input/Output): Ignore 'loading site script' chatter.
5311         * tests/local.at (AT_CONFIG_CMP): Ignore lines like "LIBS=''" too.
5312         They are generated by the Tru64 v5.1B shell.
5314 2005-07-05  Stepan Kasal  <kasal@ucw.cz>
5316         Fix my changes from 2005-07-01; reported by Noah Misch.
5317         * lib/autoconf/status.m4 (_AC_CONFIG_DEPENDENCIES): Fix the
5318         description, the macro now accepts only a single tag.
5319         (_AC_CONFIG_UNIQUE): Likewise; s/AC_File/[$1]/
5321         Fix cases when the varsions of Autoconf and Autotest don't match.
5322         Reported by Noah Misch.
5323         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): Set also
5324         at_top_builddir, for compatibility with older autotest.
5325         * lib/autotest/general.m4 (AT_INIT): If at_top_build_prefix
5326         is not set, use at_top_builddir, for compatibility with older
5327         versions of autoconf.
5329 2005-07-04  Paul Eggert  <eggert@cs.ucla.edu>
5331         * bin/autom4te.in ($m4): Catch usages like --nesting-limit=2048.
5332         Problem reported by Patrick Welche.
5334 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
5336         * lib/autoconf/general.m4 (AC_ARG_PROGRAM): Use &, not |, in
5337         sed substitution command, so that we allow | in program prefixes
5338         and program suffixes.  (& is a problem anyway; we're not fixing
5339         that here.)
5340         * lib/autoconf/status.m4 (AC_CONFIG_FILES): Likewise, for
5341         configure_input, top_builddir, srcdir, etc.
5342         * lib/autotest/general.m4 (AT_INIT): Likewise, for
5343         PATH_SEPARATOR in AUTOTEST_PATH.
5345 2005-07-02  Alexandre Duret-Lutz  <adl@gnu.org>
5347         * lib/autoconf/general.m4 (AC_SITE_LOAD): Rewrite the
5348         for loop over config.site files using `set', to allow
5349         directory names containing IFS characters.
5351 2005-07-01  Paul Eggert  <eggert@cs.ucla.edu>
5353         * lib/autoconf/general.m4 (_AC_INIT_DIRCHECK): Remove the tests for
5354         directories with weird names.  Apparently some people like living
5355         on the edge.  However, improve the test that "pwd" actually does
5356         report a name for the working directory.
5357         * NEWS: Remove the claim that we test for funny chars in dir names.
5359 2005-07-01  Stepan Kasal  <kasal@ucw.cz>
5361         * lib/autoconf/general.m4 (AC_FOREACH): Make obsolete; it's
5362         replaced ...
5363         * lib/m4sugar/m4sugar.m4 (m4_foreach_w): ... by this new macro.
5364         * lib/autoconf/status.m4 (_AC_CONFIG_DEPENDENCIES, _AC_CONFIG_UNIQUE):
5365         Now accept a single tag, not whitespace separated list.
5366         (AC_CONFIG_SUBDIRS): Call _AC_CONFIG_UNIQUE in a m4_foreach_w loop.
5368 2005-06-30  Stepan Kasal  <kasal@ucw.cz>
5370         * doc/autoconf.texi (Configuration Headers): Change the explanation
5371         about #include <config.h>.
5372         (Generic Functions): Mention the Gnulib project.
5373         (Limitations of Usual Tools) <sed>: Another minor rephrasing.
5375         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Use a here
5376         document to output the default config_* lists to config.status.
5377         Don't recognize option --file, if the functionality is not there.
5378         Likewise for --header; moreover, recognize --he and --h as shortcuts
5379         for --help in that case.
5381         * lib/autoconf/status.m4: Fix the order of the "sections", so that it
5382         matches the order of execution.  No code changed.
5384 2005-06-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5386         * lib/autoconf/fortran.m4 (_AC_PROG_FC_V_OUTPUT): Fix also for
5387         single-quoted -cmdline argument in Portland Group compiler.
5388         Reported against LAM by Ole Holm Nielsen <Ole.H.Nielsen@fysik.dtu.dk>.
5390 2005-06-30  Alexandre Duret-Lutz  <adl@gnu.org>
5392         * lib/autom4te.in (Automake-preselections): Preselect AC_SUBST_TRACE.
5394 2005-06-29  Stepan Kasal  <kasal@ucw.cz>
5396         * doc/autoconf.texi (File Descriptors): ksh doesn't pass open file
5397         descriptors to child processes; reported by Norman Gray.
5399 2005-06-29  Stepan Kasal  <kasal@ucw.cz>
5401         * lib/autoconf/general.m4 (AC_ARG_VAR): Move next to _AC_ARG_PRECIOUS.
5403         * lib/autoconf/general.m4 (AC_SUBST_TRACE): New macro, to be traced
5404         instead of AC_SUBST; proposed by Alexandre Duret-Lutz.
5405         (AC_SUBST): Call it.
5406         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES): Call AC_SUBST_TRACE for
5407         the directory specific variables; but don't call it for configure_input.
5409 2005-06-28  Derek Price  <derek@ximbiot.com>
5411         * doc/autoconf.texi (Limitations of Usual Tools) <sed>: Reword recent
5412         addition.
5414 2005-06-23  Paul Eggert  <eggert@cs.ucla.edu>
5416         * NEWS: Don't worry about spaces in bindir etc.  Only srcdir and working
5417         directory have inherent problems with special characters like spaces,
5418         due to limitations in Make syntax.  Problem reported by Alexandre
5419         Duret-Lutz.
5420         * lib/autoconf/general.m4 (_AC_INIT_DIRCHECK): Implement the above.
5421         Also, fix Tru64 porting problem with shell patterns,
5422         reported by Ralf Wildenhues.
5424 2005-06-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5426         * doc/autoconf.texi (Subdirectories): Fix markup typos.
5428 2005-06-23  Paul Eggert  <eggert@cs.ucla.edu>
5430         * tests/local.at (AT_CHECK_ENV): Simplify regexp slightly.
5432         Fix some more shell quoting problems.  Prompted by a bug report
5433         from Justace Clutter.
5434         * lib/autoconf/general.m4 (_AC_INIT_DIRCHECK): Put name of invalid
5435         variable into diagnostic.  Make the diagnostic an error, not a warning,
5436         because we really don't support spaces and suchlike in dir names.
5437         (_AC_INIT_SRCDIR): Allow special characters in $ac_unique_file.
5438         Don't worry about backslashes in srcdir; it can't happen now.
5439         (_AC_INIT_PARSE_ARGS): Allow weird characters in ac_optarg.
5440         Simplify ac_optarg handling.
5441         (_AC_ARG_VAR_VALIDATE): Remove unnecessary and inconsistent quotes.
5443 2005-06-22  Stepan Kasal  <kasal@ucw.cz>
5445         Fix AT_CONFIG_CMP for Solaris hosts; idea from Ralf Menzel.
5446         * configure.ac: Call AC_PROG_EGREP and AC_PROG_SED.
5447         * tests/atlocal.in: Propagate $EGREP and $SED.
5448         * tests/local.at (AT_CHECK_ENV): Use $EGREP, not $GREP -E.
5449         (AT_CONFIG_CMP): Use sed instead of grep plumbing.
5451         * doc/autoconf.texi (Limitations of Usual Tools) <grep>: Mention
5452         that '\|' is not allowed in BREs; recommend using newline separated
5453         list of patterns instead of multiple -e options.
5455         * lib/autoconf/fortran.m4 (_AC_PROG_FC_V_OUTPUT): Remove an old comment.
5457         * lib/autoconf/general.m4 (_AC_CANONICAL_SPLIT): Use AC_SUBST/2.
5459 2005-06-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5461         * lib/autoconf/general.m4 (_AC_CANONICAL_SPLIT): Fix typo.
5463 2005-06-21  Stepan Kasal  <kasal@ucw.cz>
5465         * doc/autoconf.texi (Limitations of Usual Tools) <sed>: Document that
5466         b, t, r, w commands require single space, while : cannot have any.
5467         (Special Shell Variables): Fix sed code this in the example.
5468         * lib/autoconf/status.m4 (_AC_OUTPUT_HEADERS): Likewise; and fix a typo.
5469         * lib/autotest/general.m4 (AT_ARG_OPTION): Fix typo in the description.
5471         * lib/m4sugar/m4sugar.m4 (m4_split): If the parameter is empty,
5472         expand to the empty list.  Don't use two pairs of m4_changequote,
5473         it's not necessary.
5475 2005-06-20  Derek Price  <derek@ximbiot.com>
5477         * lib/m4/programs.m4 (AC_PROG_YACC): Declare YACC & YFLAGS precious.
5479 2005-06-17  Paul Eggert  <eggert@cs.ucla.edu>
5481         * lib/m4sugar/m4sh.m4 (as_awk_strverscmp): Port to Solaris /bin/awk.
5482         * doc/autoconf.texi:
5483         Don't mention Solaris versions so much, if a
5484         problem is common to all extant versions of Solaris.  Say "SunOS
5485         4" instead of "SunOS" for SunOS 4.
5486         (awk): Mention more of the limitations of traditional Awk.
5487         (cat): Don't talk about cat -v.
5489 2005-06-16  Paul Eggert  <eggert@cs.ucla.edu>
5491         * lib/m4sugar/m4sh.m4 (_AS_VERSION_COMPARE_PREPARE): New macro.
5492         (AS_VERSION_COMPARE): New macro.  The API is taken from CVS,
5493         but the implementation is entirely different and is designed
5494         to be compatible with glibc strverscmp.
5495         * tests/m4sh.at (AS_VERSION_COMPARE): New test.
5497         * doc/autoconf.texi (Limitations of Usual Tools): Mention expr bug
5498         on Mac OS X 10.4 reported by Peter O'Gorman in:
5499         http://lists.gnu.org/archive/html/autoconf-patches/2005-06/msg00041.html
5500         * lib/autoconf/general.m4 (_AC_CANONICAL_SPLIT):
5501         Use shell builtins rather than 'expr', to work around expr bug.
5503 2005-06-10  Paul Eggert  <eggert@cs.ucla.edu>
5505         * doc/autoconf.texi: "filesystem" -> "file system".
5506         "behaviour" -> "behavior".
5507         Warn about \(...\)* in Solaris sed (written by Ralf Menzel).
5508         * lib/autoconf/general.m4: Omit blank after ":" sed command,
5509         as per POSIX.
5510         * lib/m4sugar/m4sh.m4: Likewise.
5511         * lib/autoconf/status.m4 (_AC_OUTPUT_HEADERS): Work around problem
5512         with Solaris sed.  Fix by Ralf Menzel and Stepan Kasal.
5514         * man/Makefile.am (MOSTLYCLEANFILES): Add $(srcdir)/*.t.
5515         (.x.1): Ignore the time stamp in the .TH line when deciding whether
5516         to update the man page.  That way, we don't have to check in new
5517         man pages every month.
5519         * lib/m4sugar/m4sh.m4 (AS_VAR_TEST_SET): Work even if $1 contains
5520         quotes and backslashes.  Patch from Derek Price.
5522 2005-06-10  Derek Price  <derek@ximbiot.com>
5524         * doc/autoconf.texi (Programming in M4sh): Document AS_TR_CPP &
5525         AS_TR_SH.
5527 2005-06-08  Paul Eggert  <eggert@cs.ucla.edu>
5529         * lib/autotest/general.m4 (AT_INIT): Don't accept Solaris 9's diff
5530         -u, since it outputs chatter if the input files are the same.
5531         Problem reported by Ralf Menzel.
5533 2005-06-08  Derek Price  <derek@ximbiot.com>
5535         * lib/m4sugar/m4sugar.m4: Undefine include & sinclude rather than
5536         renaming them since they are about to be redefined anyhow.
5538 2005-06-08  Derek Price  <derek@ximbiot.com>
5540         * doc/autoconf.texi (Redefined M4 Macros): Add index entries for most
5541         redefined M4 macros to this node.  Document m4_include & m4_sinclude.
5542         Move m4_undefine to alphabetical order.
5544 2005-06-07  Paul Eggert  <eggert@cs.ucla.edu>
5546         * README: Recommend GNU M4 1.4.3 or later.
5547         * doc/autoconf.texi (Introduction): Likewise.
5548         Reword to avoid some formatting glitches.
5549         Use "#!/bin/sh", not "#! /bin/sh"; the space isn't needed these days.
5550         Clarify explanation of HP compiler bug.
5551         Redo example output tp match current CVS snapshot.
5552         Use @example.org in email addresses when the examples
5553         might get inadvertently cut-and-pasted into user code.
5554         Remove example of autom4te usage that doesn't seem to work now.
5555         Use modern AC_INIT (except when the example is meant to be
5556         shown with Autoconf 2.13).
5557         Update ksh info for Solaris 9 and later.
5558         KB -> kB.
5559         Modernize description of Automake versions a bit.
5560         Don't claim a future version of Autoconf is near.
5561         * doc/install.texi: Reword to avoid some formatting glitches.
5563 2005-06-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5565         * doc/autoconf.texi: Add [] to examples, so that the manual
5566         follows its own advice about quoting better.
5567         Reword to avoid some formatting glitches.
5568         * doc/installt.exi: Reword to avoid some formatting glitches.
5570         * doc/autoconf.texi (Limitations of Builtins) <case>: Mention
5571         Tru64 ksh pattern matching bug.  Reported against Libtool by
5572         Albert Chin <libtool@mlists.thewrittenword.com> and
5573         Nicolas Joly <njoly@pasteur.fr>.
5575 2005-06-06  Stepan Kasal  <kasal@ucw.cz>
5577         m4_cdr of one-member list was [[]] (one-member list containing an
5578         empty string) instead of [] (an empty list.  Callers were skewed to
5579         match this misbehaviour.  As a consequence of this:
5580          - m4_foreach([x], [], [foo]) expanded to `foo', while
5581          - the expansion of m4_foreach([x], [[]], [foo]) was empty.
5582         This bug has been fixed:
5584         * lib/m4sugar/m4sugar.m4 (m4_cdr): If only one argument is given,
5585           expand to an empty string; print error msg if called without
5586           an argument list.
5587         (m4_foreach, m4_map, m4_map_sep): Don't expect the previous
5588           misbehaviour; handle [] and [[]] correctly.
5590 2005-06-06  Stepan Kasal  <kasal@ucw.cz>
5592         * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS): Nuke ac_max_here_lines.
5593         * lib/autoconf/status.m4 (_AC_OUTPUT_HEADERS): Simplify the sed
5594           scripts created and the loop applying them, use _AC_SED_CMD_LIMIT.
5596 2005-06-06  Ralf Menzel <menzel@ls6.cs.uni-dortmund.de>  (trivial change)
5598         * doc/autoconf.texi (Limitations of Usual Tools): Solaris' awk cannot
5599           swallow records with more than 99 fields.
5600         * lib/autotest/general.m4 (AT_INIT): Use the awk builtin `split' to
5601           parse the long line.
5603 2005-06-04  Stepan Kasal  <kasal@ucw.cz>
5605         * doc/autoconf.texi (Limitations of Usual Tools): AIX awk cannot
5606           swallow literals longer than 399.  Reported by Ralf Wildenhues.
5607         * lib/autotest/general.m4 (AT_INIT): Pass $at_groups though stdin,
5608           to workaround this limitation.
5610 2005-06-03  Steven G. Johnson  <stevenj@alum.mit.edu>
5612         * lib/autoconf/fortran.m4 (_AC_PROG_FC): Find g95 in addition
5613         to gfortran, and make these the first two compiler names
5614         checked (following the general autoconf preference for gcc).
5616 2005-06-03  Stepan Kasal  <kasal@ucw.cz>
5618         * tests/Makefile.am (check_SCRIPTS): Set to $(wrappers).
5619         (DISTCLEANFILES): Remove $(check_SCRIPTS).
5620         (testsuite): Make sure autotest.m4f is up-to-date before using it.
5622 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
5624         * lib/autotest/general.m4 (AT_INIT): Don't create a regular
5625         expression of unbounded size when processing the --list
5626         option.  This runs afoul of a limit of 399 bytes per regular
5627         expression on AIX.  Problem reported by Ralf Wildenhues.
5629 2005-06-01  Paul Eggert  <eggert@cs.ucla.edu>
5631         * NEWS: Note yesterday's changes to AC_SUBST and AC_SUBST_FILE.
5632         * doc/autoconf.texi (Particular Headers): Reword example
5633         for multiline stdbool replacement.
5634         (Setting Output Variables): Reword text a bit.  Don't
5635         give all the details about |#_!!_#|.
5636         Reword description of line replacement.
5638 2005-05-31  Dan Manthey  <dan_manthey@partech.com>
5640         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES): Output variables may
5641         now contain newlines, and substituted files must be referenced on
5642         a line alone; the sed scripts to substitute them are now very
5643         different.
5644         (_AC_SED_CMD_LIMIT): Added; single place to store limit on how many
5645         commands can be put in a sed script portably.
5646         * doc/autoconf.texi (Setting Output Variables): Document above
5647         changes.  (Particular Header Checks) <AC_HEADER_STDBOOL>: Give exaple
5648         use of multiline substitution.
5649         * tests/torture.at: No longer expect substitution of newline to fail.
5651 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
5653         * lib/m4sugar/m4sh.m4 (_AS_SHELL_FN_WORK): Fix diagnostics.
5654         From Ralf Menzel (trivial change).
5656 2005-05-25  Paul Eggert  <eggert@cs.ucla.edu>
5658         * tests/local.at: Don't attempt to check for negated character
5659         classes in shell scripts.  The test was too brittle.
5661 2005-05-25  Stepan Kasal  <kasal@ucw.cz>
5663         * bin/autoconf.as: Don't use "shift 2"; it's not portable enough.
5664         * doc/autoconf.texi (Limitations of Builtins): Document this
5665           limitation.
5667 2005-05-24  Stepan Kasal  <kasal@ucw.cz>
5669         * lib/m4sugar/m4sh.m4 (_AS_ECHO_LOG): New macro to factor out
5670           common code; used in many places in the tree.
5671         (AS_ESCAPE): Make the pattern a bit simpler; use \& insetad of \1.
5672         (_AS_ECHO_UNQUOTED): Move the macro lower; no code change.
5674         * lib/m4sugar/m4sugar.m4 (m4_ifset): Use m4_ifval.
5676         * lib/autoconf/general.m4 (_AC_INIT_SRCDIR): Merge the two error
5677           messages when ac_unique_file is not found.
5678         (AC_CONFIG_MACRO_DIR): Simplify the `if' at the end.
5679         (AC_MSG_CHECKING, AC_MSG_RESULT): Put braces around the two echo
5680           commands, for consistency with AC_MSG_ERROR and such.
5682         * bin/autoconf.as: Make more use of "shift 2" in option processing.
5684         * bin/Makefile.am: Merge the two rules for creating scripts.
5686 2005-05-23  Stepan Kasal  <kasal@ucw.cz>
5688         * lib/autoconf/general.m4 (AC_MSG_RESULT_UNQUOTED): Make
5689         obsolete; it was never documented.
5690         (AC_CACHE_CHECK): Use AC_MSG_RESULT instead.
5692 2005-05-20  Stepan Kasal  <kasal@ucw.cz>
5694         * NEWS: @top_builddir@ is now a dirname, ac_top_builddir will follow.
5695         * lib/autoconf/status.m4 (_AC_SRCDIRS): Rename ...
5696         (ac_top_builddir): ... this ...
5697         (ac_top_build_prefix): ... to this; the old name is also kept, for
5698           backward compatibility.
5699         (ac_top_builddir_sub): New variable, without the trailing slash,
5700           always nonempty.
5701         (_AC_OUTPUT_FILES): s/@top_builddir@/$ac_top_builddir_sub/
5702         * doc/autoconf.texi (Configuration Actions): Rename
5703           ac_top_builddir to ac_top_build_prefix.
5704         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): Rename
5705           at_top_builddir to at_top_build_prefix.
5706         * lib/autotest/general.m4 (AT_INIT): Likewise.
5708 2005-05-20  Stepan Kasal  <kasal@ucw.cz>
5710         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Simplify the init
5711           of confdefs.h .
5713 2005-05-17  Stepan Kasal  <kasal@ucw.cz>
5715         * lib/m4sugar/m4sugar.m4 (m4_text_wrap): Don't m4_quote the second
5716           argument to m4_foreach.  I guess it was necessary in the past,
5717           but I think it's a no-op now.
5719 2005-05-17  Stepan Kasal  <kasal@ucw.cz>
5721         * lib/autoconf/general.m4 (_AC_INIT_HELP): Merge two consecutive
5722           ``cat <<_ACEOF'' commands to one.
5723         (_AC_CANONICAL_SPLIT): Use expr, not ``echo|sed.''
5724         * lib/autoconf/status.m4: On various places, use expr instead of
5725           ``echo|sed.''
5726         (_AC_CONFIG_SPLIT, _AC_CONFIG_SPLIT_SOURCE_DEST):
5727         (_AC_CONFIG_SPLIT_FILE_IN): New macros, to factor out common code.
5728         * lib/autotest/general.m4 (AT_INIT): Use expr to get the numbers from
5729           a range.
5730         * tests/local.at (AT_CHECK_SHELL_SYNTAX): Use awk to search for
5731           the wrong patterns between ``case'' and ``esac.''  The previous
5732           code had false positives.
5734 2005-05-14  Alexandre Duret-Lutz  <adl@gnu.org>
5736         * lib/autoconf/functions.m4 (_AC_LIBOBJ_ALLOCA): Prepend ${LIBOBJDIR},
5737         as on 2005-05-02.
5738         * doc/autoconf.texi (Particular Functions) <AC_FUNC_ALLOCA>:
5739         Mention LIBOBJDIR.
5741 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
5743         * AUTHORS, BUGS, COPYING, ChangeLog, ChangeLog.0, ChangeLog.1,
5744         ChangeLog.2, GNUmakefile, Makefile.am, Makefile.cfg,
5745         Makefile.maint, NEWS, README, README-alpha, TODO, configure.ac,
5746         bin/Makefile.am, bin/autoconf.as, bin/autoheader.in,
5747         bin/autom4te.in, bin/autoreconf.in, bin/autoscan.in,
5748         bin/autoupdate.in, bin/ifnames.in, config/Makefile.am,
5749         config/config.guess, config/config.sub, config/elisp-comp,
5750         config/m4.m4, config/mdate-sh, config/missing, config/texinfo.tex,
5751         doc/Makefile.am, doc/fdl.texi, lib/Makefile.am, lib/autom4te.in,
5752         lib/freeze.mk, lib/Autom4te/C4che.pm, lib/Autom4te/ChannelDefs.pm,
5753         lib/Autom4te/Channels.pm, lib/Autom4te/Configure_ac.pm,
5754         lib/Autom4te/FileUtils.pm, lib/Autom4te/General.pm,
5755         lib/Autom4te/Request.pm, lib/Autom4te/Struct.pm,
5756         lib/Autom4te/XFile.pm, lib/autoconf/Makefile.am,
5757         lib/autoconf/autoconf.m4, lib/autoconf/autoheader.m4,
5758         lib/autoconf/autoscan.m4, lib/autoconf/autotest.m4,
5759         lib/autoconf/autoupdate.m4, lib/autoconf/c.m4,
5760         lib/autoconf/fortran.m4, lib/autoconf/functions.m4,
5761         lib/autoconf/general.m4, lib/autoconf/headers.m4,
5762         lib/autoconf/lang.m4, lib/autoconf/libs.m4,
5763         lib/autoconf/oldnames.m4, lib/autoconf/programs.m4,
5764         lib/autoconf/specific.m4, lib/autoconf/status.m4,
5765         lib/autoconf/types.m4, lib/autoscan/Makefile.am,
5766         lib/autoscan/autoscan.list, lib/autoscan/autoscan.pre,
5767         lib/autotest/Makefile.am, lib/autotest/autotest.m4,
5768         lib/autotest/general.m4, lib/emacs/Makefile.am,
5769         lib/emacs/autoconf-mode.el, lib/emacs/autotest-mode.el,
5770         lib/m4sugar/Makefile.am, lib/m4sugar/m4sh.m4,
5771         lib/m4sugar/m4sugar.m4, man/Makefile.am, tests/Makefile.am,
5772         tests/atlocal.in, tests/autotest.at, tests/base.at, tests/c.at,
5773         tests/compile.at, tests/foreign.at, tests/fortran.at,
5774         tests/local.at, tests/m4sh.at, tests/m4sugar.at, tests/mktests.sh,
5775         tests/semantics.at, tests/suite.at, tests/tools.at,
5776         tests/torture.at, tests/wrapper.as:
5777         Update FSF postal mail address.
5779 2005-05-13  Stepan Kasal  <kasal@ucw.cz>
5781         * lib/autoconf/general.m4 (AC_CONFIG_LIBOBJ_DIR): Remove the broken
5782           check.
5783         * lib/m4sugar/m4sugar.m4 (m4_bmatch): Halt with error if we don't get
5784           enough arguments, similarly as in m4_bpatsubsts.
5786 2005-05-12  Stepan Kasal  <kasal@ucw.cz>
5788         * lib/autoconf/status.m4 (_AC_SRCDIRS): Simplify the computation
5789           of absolute paths.
5791 2005-05-11  Stepan Kasal  <kasal@ucw.cz>
5793         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ARGS): Make the check
5794           for absolute directory names in one loop.
5795         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Handle
5796           abbreviations of --version and --debug.
5798 2005-05-10  Paul Eggert  <eggert@cs.ucla.edu>
5800         * doc/autoconf.texi (Autoconf Language): Be more precise about
5801         quoting rules.  Problems noted by Stepan Kasal.
5802         Also, throughout this document, be more careful about white space.
5803         "blank", "white space", and "space" all have different meanings
5804         and we should be careful to say what we mean.
5806 2005-05-05  Paul Eggert  <eggert@cs.ucla.edu>
5808         Fix C++ related problems reported by Werner Lemberg.
5809         * doc/autoconf.texi (C++ Compiler): Mention .cpp extension.
5810         * lib/autoconf/c.m4 (AC_LANG(C++)): Set ac_ext to .cpp, not .cc.
5811         * lib/autoconf/types.m4 (AC_TYPE_SIGNAL): Simplify test, to
5812         avoid problems with C++ and throw.
5813         * tests/compile.at: .cpp, not .cc.
5815         * tests/semantics.at: Prepend LIBOBJDIR, as per 2005-05-02 change.
5817 2005-05-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5819         * doc/autoconf.texi (Generic Functions): Typos.
5821 2005-05-02  Gary V. Vaughan  <gary@gnu.org>
5823         * lib/autoconf/general.m4 (_AC_LIBOBJS_NORMALIZE): Prepend each
5824         object named in LIBOBJS and LTLIBOBJS with the ${LIBOBJDIR}, as
5825         set by latest automake.
5827 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
5829         * doc/autoconf.texi (Limitations of Usual Tools): "expr '' \| ''"
5830         outputs 0 on GNU/Linux these days.
5832 2005-04-29  Paul Eggert  <eggert@cs.ucla.edu>
5834         * doc/autoconf.texi (Autoconf Language): Add more description
5835         about quoting heuristics.
5836         (Limitations of Builtins): Describe "set -" problems.
5838 2005-04-29  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5840         * lib/autotest/general.m4 (AT_KEYWORDS): Separate by space,
5841         not newline.
5843         * doc/autoconf.texi (External Software): Replace AC_DEFINE_UNQUOTED
5844         by AC_DEFINE; it was a mistake.
5845         From bug reported against libtool by Dalibor Topic <robilad@kaffe.org>.
5847 2005-04-25  Stepan Kasal  <kasal@ucw.cz>
5849         * lib/autoconf/status.m4 (_AC_OUTPUT_HEADERS): A tiny optimization.
5851 2005-04-22  Stepan Kasal  <kasal@ucw.cz>
5853         * doc/autoconf.texi (External Software): Quadrigraphs are not
5854           processed correctly in AS_HELP_STRING; avoid this in the examples.
5855         * lib/m4sugar/m4sh.m4 (AS_HELP_STRING): Add a FIXME about quadrigraphs.
5856         * lib/m4sugar/m4sugar.m4 (m4_text_wrap): Likewise; and rephrase the
5857           comment and reduce m4_default([foo], []) to [foo].
5858         (m4_strip): Update the explanation.
5860 2005-04-19  Paul Eggert  <eggert@cs.ucla.edu>
5862         * lib/autoconf/general.m4 (_AC_INIT_PREPARE, _AC_RUN_IFELSE):
5863         Remove core.conftest.* too; it's generated by Tru64 5.1.
5864         Problem reported by Jennis Pruett.
5865         * lib/autoconf/functions.m4
5866         (AC_FUNC_SETVBUF_REVERSED, AC_FUNC_UTIME_NULL):
5867         Don't bother to remove core files; AC_RUN_IFELSE should do that
5868         for you.
5870 2005-04-19  Stepan Kasal  <kasal@ucw.cz>
5872         * lib/m4sugar/m4sugar.m4 (m4_bpatsubsts): Add the b- to comment, too.
5874 2005-04-19  Alexandre Duret-Lutz  <adl@gnu.org>
5876         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ARGS): Handle --docdir.
5877         Report from Horst Wente.
5879 2005-04-15  Stepan Kasal  <kasal@ucw.cz>
5881         * lib/autoconf/general.m4 (_AC_ARG_VAR_VALIDATE): Fixed a typo in
5882           the comment.
5884 2005-04-14  Gregorio Guidi  <greg_g@gentoo.org>
5886         * doc/autoconf.texi (External Software, Package Options): Add
5887           examples showing how to implement --with-* and --enable-* options.
5889 2005-04-13  Paul Eggert  <eggert@cs.ucla.edu>
5891         * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): Look for configure.ac
5892         as well as configure.in.  Problem reported by Gregorio Guidi.
5894 2005-04-10  Paul Eggert  <eggert@cs.ucla.edu>
5896         * doc/autoconf.texi (Particular Functions): Use gnulib's current
5897         pattern for alloca snippet.
5899 2005-04-04  Stepan Kasal  <kasal@ucw.cz>
5901         * lib/autotest/general.m4 (_AT_DECIDE_TRACEABLE): Fix a typo.
5903 2005-04-01  Stepan Kasal  <kasal@ucw.cz>
5905         * doc/autoconf.texi (Generic Programs): Fix a typo.
5907 2005-04-01  Paul Eggert  <eggert@cs.ucla.edu>
5909         * lib/autotest/general.m4 (AT_INIT): Don't assume that "date +%s"
5910         fails if %s isn't supported.  Problem reported by Ralf Wildenhues.
5912 2005-03-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5914         * lib/autoconf/fortran.m4 (_AC_FC_LIBRARY_LDFLAGS):
5915         Merge `-z option' as well for the benefit of Solaris link flags.  Pass
5916         whole-archive (-zallextract, -zdefaultextract) options in the hope of
5917         unique libraries, for the Sun Fortran 95 8.0 compiler.  Bug reported
5918         against Libtool by Yury Puhalsky <pooh@cryptopro.ru>.
5920 2005-03-22  Paul Eggert  <eggert@cs.ucla.edu>
5922         * NEWS: The configure command now warns you if you attempt to use
5923         a directory whose name contains a special character like space,
5924         newline, or "\".
5925         * doc/autoconf.texi (Installation Directory Variables): Allow
5926         "," in file names.  Do not use \@; it's not a portable regexp.
5927         * bin/Makefile.am (edit): Likewise.
5928         * lib/Makefile.am (edit): Likewise.
5929         * tests/Makefile.am (edit): Likewise.
5930         * tests/semantics.at: Likewise.
5931         * tests/torture.at: Likewise.
5932         * lib/autoconf/general.m4 (AC_ARG_PROGRAM): Likewise.
5933         * lib/autoconf/status.m4 (_AC_SRCDIRS): Likewise.
5934         * doc/autoconf.texi (File System Conventions): Warn about
5935         unportable file names.
5936         * lib/autoconf/general.m4 (_AC_INIT_DIRCHECK): New macro.
5937         (AC_INIT): Use it.
5938         (_AC_INIT_SRCDIR): Use ac_pwd rather than invoking pwd.
5939         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Propagate
5940         ac_pwd, and quote srcdir.
5941         * lib/autotest/general.m4 (AT_INIT): Quote file name args.
5943         * doc/autoconf.texi: Fix some systematic formatting problems.
5944         ".)"  needs a following @: if not at the end of a sentence, and
5945         similarly for "!)".  "etc." should be preceded by a comma.
5946         "n-th" -> "@var{n}th".  pdksh is still buggy, so update its date.
5948 2005-03-22  Bruno Haible  <bruno@clisp.org>
5950         * doc/autoconf.texi (Input): Mention that AC_CONFIG_AUX_DIR's
5951         argument is often called 'build-aux'.
5953 2005-03-07  Stepan Kasal  <kasal@ucw.cz>
5955         * doc/autoconf.texi (Quotation Rule Of Thumb): Mention that the
5956           macro AC_TRY_LINK is obsolete.
5957         (Installation Directory Variables): Change `AC_OUTPUT_FILES' to
5958           `AC_CONFIG_FILES'.
5960 2005-02-24  Stepan Kasal  <kasal@ucw.cz>
5962         * lib/autoconf/c.m4 (AC_PROG_CC): Be more careful to skip
5963           `/usr/ucb/cc'; use `cl.exe' to distinguish the MS compiler
5964           from a Common Lisp's `cl'.
5965         (AC_PROG_CXX): Behave according to the documentation: don't
5966           search for $ac_tool_prefix$CCC and $CCC, just set CXX=$CCC;
5967           make the variable CCC precious; use `cl.exe', not `cl'.
5969 2005-02-23  Paul Eggert  <eggert@cs.ucla.edu>
5970             Alexandre Duret-Lutz  <adl@gnu.org>
5972         * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS): Redirect stdin from
5973         /dev/null, as "configure" shouldn't read stdin, and this insulates
5974         us from problems (e.g., when testing for "cl").  Also, do this
5975         redirection before invoking "hostname" or "uname", and keep the
5976         original input stream available via...
5977         (AS_ORIGINAL_STDIN_FD): ... this new macro.
5978         (_AC_PREPROC_IFELSE, _AC_COMPILE_IFELSE, _AC_LINK_IFELSE): Don't
5979         bother with "</dev/null" since it's now done at the top of
5980         'configure'.
5981         * lib/autoconf/c.m4 (AC_PROG_CC, AC_PROG_CXX): Likewise.
5982         * lib/autoconf/fortran.m4 (_AC_PROG_FC): Likewise.
5983         * lib/autoconf/programs.m4 (_AC_PATH_PROG_FLAVOR_GNU): Likewise.
5984         * doc/autoconf.texi (File Descriptor Macros): New section.
5985         (Printing Messages): Mention it.
5986         * tests/base.at (Input/Output): New test.
5988 2005-02-23  Paul Eggert  <eggert@cs.ucla.edu>
5990         * lib/m4sugar/m4sh.m4 (_AS_ECHO_N_PREPARE): Don't set ECHO_C to
5991         newline if neither \c nor -n work, as that would output two
5992         newlines.  Prefer -n to \c.  Reported by Stepan Kasal.
5994 2005-02-12  Stepan Kasal  <kasal@ucw.cz>
5996         * lib/m4sugar/m4sh.m4 (AS_IF): Define by m4_defun, not m4_define.
5997         This causes that any required macros inside will get before the if.
5998         * doc/autoconf.texi (autom4te.cache): A typo.
6000 2005-02-12  Paul Eggert  <eggert@cs.ucla.edu>
6002         Undo previous change, except keep the change to
6003         lib/autoconf/programs.m4 that replaced grep with shell
6004         pattern-matching.  This is because net-snmp configure reads stdin.
6005         Reported by Noah Misch.
6007 2005-02-11  Paul Eggert  <eggert@cs.ucla.edu>
6009         * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS): Redirect stdin
6010         from /dev/null, as "configure" shouldn't read stdin, and this
6011         insulates us from problems (e.g., when testing for "cl").
6012         Suggested by Alexandre Duret-Lutz.  Also, do this redirection
6013         before invoking "hostname" or "uname".
6014         (_AC_PREPROC_IFELSE, _AC_COMPILE_IFELSE,
6015         _AC_LINK_IFELSE): Undo previous change, as it's no longer needed.
6016         * lib/autoconf/c.m4 (AC_PROG_CC, AC_PROG_CXX): Don't bother with
6017         "</dev/null" since it's now done at the top of 'configure'.
6018         * lib/autoconf/fortran.m4 (_AC_PROG_FC): Likewise.
6019         * lib/autoconf/programs.m4 (_AC_PATH_PROG_FLAVOR_GNU): Likewise.
6020         Also, replace grep with shell pattern-matching, to save a process.
6022 2005-02-10  Paul Eggert  <eggert@cs.ucla.edu>
6024         * lib/autoconf/general.m4 (_AC_PREPROC_IFELSE, _AC_COMPILE_IFELSE,
6025         _AC_LINK_IFELSE): Redirect stdin to /dev/null, in an attempt to
6026         avoid thinking that Allegro Common Lisp's "cl" command is a C++
6027         compiler.
6029 2005-02-09  Paul Eggert  <eggert@cs.ucla.edu>
6031         * doc/autoconf.texi (Limitations of Usual Tools): Document that
6032         grep -q isn't portable.  Improve grep -s explanation.
6033         Problem reported by Dan Manthey.
6035 2005-02-08  Paul Eggert  <eggert@cs.ucla.edu>
6037         * doc/autoconf.texi (Special Shell Variables): Clarify
6038         PATH_SEPARATOR wording; fix typo in IFS.  Reported by Gary V. Vaughan.
6040 2005-02-07  Paul Eggert  <eggert@cs.ucla.edu>
6042         * doc/autoconf.texi: Use @acronym for DJGPP.
6043         Fix some @code's that should have been @env's, and vice versa.
6044         Sort environment variable names.
6045         Mention that shells no longer inherit IFS.
6046         Don't recommend PATH_SEPARATOR=';' so strongly.
6047         Mention that $RANDOM might expand to the empty string.
6048         "symlink" and "soft link" -> "symbolic link".
6049         Improve mktemp description (reported by Bruno Haible).
6051 2005-02-05  Paul Eggert  <eggert@cs.ucla.edu>
6053         * tests/foreign.at (Libtool): Don't overquote AT_SETUP arg.
6054         * tests/m4sh.at (AS_DIRNAME, AS_BASENAME, AS_MKDIR_P, AS_HELP_STRING):
6055         Likewise.
6056         * tests/semantics.at (AC_C_BIGENDIAN, AC_PATH_PROG & AC_PATH_PROGS):
6057         Likewise.
6059 2005-02-04  Paul Eggert  <eggert@cs.ucla.edu>
6061         * NEWS: Mention AT_COPYRIGHT.
6063         * tests/local.at (AT_CMP): Use diff directly on input files rather
6064         than copying them.
6066         * lib/autoconf/programs.m4 (AC_PROG_SED): Don't look in
6067         /usr/xpg4/bin since that sed dumps core (at least on Solaris 8).
6069 2005-02-04  Noah Misch  <noah@cs.caltech.edu>
6070         and Paul Eggert  <eggert@cs.ucla.edu>
6072         * tests/autotest.at (Empty test suite): New test.
6073         * tests/torture.at (Substitute and define special characters)
6074         (Substitute a 2000-byte string, Define to a 2000-byte string)
6075         (Substitute a newline, Define a newline): New tests.
6077 2005-02-04  Noah Misch  <noah@cs.caltech.edu>
6079         * lib/m4sugar/m4sugar.m4 (m4_re_string, m4_re_word): Revert 2002-03-04.
6080         * tests/local.at (AT_CHECK_M4SUGAR): Add `m4sugar' to keywords.
6081         (AT_CHECK_ENV): Ignore LTLIBOBJS, FC variables, EGREP, FGREP, and SED.
6082         * tests/m4sugar.at (AT_CHECK_M4SUGAR_TEXT, AT_CHECK_M4RE): New macros.
6083         (Standard regular expressions): New test.
6084         (m4_warn, m4_require: circular dependencies, m4_text_wrap): Strip
6085         excess test name quoting.
6086         * tests/semantics.at (AC_CHECK_HEADERS_OLD, AC_CHECK_HEADERS_NEW): Pass
6087         CPPFLAGS to `configure' instead of setting it in `configure'.
6089         * lib/m4sugar/m4sh.m4 (AS_UNAME): Try only /usr/bin/hostinfo, not
6090         any `hostinfo' in $PATH, since hostinfo.exe is a popular file name
6091         on some platforms.
6093         * lib/autoconf/fortran.m4 (AC_LANG(Fortran), AC_FC_SRCEXT):
6094         s/FC_SRCEXT/ac_fc_srcext/; s/FCFLAGS_SRCEXT/ac_fcflags_srcext/.
6096         * tests/local.at (AT_CMP): New macro.
6097         (AT_DATA_AUTOCONF): Do not call AC_PROG_GREP.
6098         (AC_SAVE_STATE): Move environment grep...
6099         (AT_CHECK_ENV): to here.  Filter out `'$''.  Use AT_CMP.
6100         (AT_CONFIG_CMP): New macro.
6101         (AT_CHECK_MACRO): Run `configure' twice with cache and compare results.
6102         * tests/c.at (Extensions): Do not exit early.
6103         * tests/atlocal.in: Inherit $GREP.
6105         * lib/autoconf/c.m4 (_AC_C_STD_TRY): New macro.
6106         (_AC_PROG_CC_C89, _AC_PROG_CC_C99): Use it.
6108         * lib/autoconf/general.m4 (_AC_INIT_COPYRIGHT): Update for 2005.
6109         (AC_COPYRIGHT): Factor header comment portion out and move into...
6110         * lib/m4sugar/m4sh.m4 (AS_COPYRIGHT): This.
6111         * lib/autotest/general.at (AT_COPYRIGHT): New macro.
6112         (AT_INIT): Add Autotest copyright notice.  Display copyright notices in
6113         --version output.
6114         * tests/local.at: Add Autoconf test suite copyright notice.
6115         * doc/autoconf.texi (Writing testsuite.at): Document AT_COPYRIGHT.
6117 2005-02-04  Bruno Haible  <bruno@clisp.org>
6118         and Paul Eggert  <eggert@cs.ucla.edu>
6120         * doc/autoconf.texi (Limitations of Usual Tools): New mkstemp entry.
6122 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
6124         * lib/m4sugar/m4sugar.m4 (m4_re_escape): Escape ?, ^, \, $ too;
6125         this fixes a bug tickled by the AT_CAPTURE_FILE change noted below.
6127         Try not to generated lines of unlimited length, as POSIX places a
6128         2047-byte limit on line length of portable text files.
6129         * lib/autoconf/general.m4 (AC_SUBST, AC_SUBST_FILE):
6130         Use newline as a separator, not space.
6131         * lib/autotest/general.m4 (AT_TESTED, AT_KEYWORDS): Likewise.
6132         (AT_CAPTURE_FILE): Use space-backslash-newline as a separator, not
6133         space.
6135 2005-02-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6137         * lib/m4sugar/m4sh.m4 (_AS_SHELL_FN_WORK): Move func_* to
6138         as_func_*.  Add test to check whether positional parameters
6139         are restored after function return.
6141 2005-02-02  Paul Eggert  <eggert@cs.ucla.edu>
6143         * doc/autoconf.texi (Special Shell Variables): Mention _,
6144         BIN_SH, DUALCASE.  Say that variables other than "status" are safe
6145         if they contain a lower-case letter.  The DUALCASE problem was
6146         reported by Ralf Wildenhues.
6148         * bin/autoconf.as: Don't exit with status 0 after write failure
6149         with --help or --version.
6150         * lib/autoconf/general.m4 (_AC_INIT_HELP, _AC_INIT_VERSION): Likewise.
6151         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Likewise.
6153 2005-02-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6155         * doc/autoconf.texi (Limitations of Usual Tools):
6156         Unicos 9 sed limitations.
6157         * lib/autoconf/fortran.m4 (_AC_PROG_FC): Try cf77 before fort77
6158         to get the option-enhanced interface on older Crays.  Try ftn for
6159         Fortran 95 (newer Crays).
6161 2005-02-01  Paul Eggert  <eggert@cs.ucla.edu>
6163         * man/Makefile.am (.x.1): Go back to the simple solution, but take
6164         care to echo the commands, so the user knows what's going on.
6165         Modified from a suggestion by Stepan Kasal.
6167         * doc/autoconf.texi (autoreconf Invocation): Mention autopoint,
6168         with a cross reference.  Derived from a suggestion by Bruce Korb.
6170 2005-01-31  Paul Eggert  <eggert@cs.ucla.edu>
6172         * doc/autoconf.texi (config.status Invocation): Warn about
6173         discrepancy between CONFIG_SHELL and shell used to invoke 'configure'.
6174         * doc/install.texi (Defining Variables): Likewise.
6175         Based on a proposed patch by Ralf Wildenhues.
6177         * man/Makefile.am (.x.1): Make sure the required generated files
6178         are up to date.  Problem and original solution proposed by Stepan Kasal.
6179         $(dist_man_MANS:.1=-bin-prereq), $(dist_man_MANS:.1=-tests-prereq),
6180         implicit-man-prerequisites): New rules, used by the above.
6182         * doc/make-stds.texi, doc/standards.texi: Sync from gnulib.
6183         * config/config.guess, config/config.sub, config/install-sh: Likewise.
6184         * config/missing, config/texinfo.tex: Likewise.
6186 2005-01-29  Stepan Kasal  <kasal@ucw.cz>
6188         Simplify the implementation of m4_require (a.k.a. AC_REQUIRE).
6189         Update the long comment explaining it.
6191         m4_require no longer writes an ``is required by'' line to the
6192         execution stack.  It contains only one bit of non-redundant
6193         information: that the macro was required, not called.  And even
6194         this bit is useless in most situations: have you ever met a macro
6195         which both calls and requires the same macro?
6197         * lib/m4sugar/m4sugar.m4 (_m4_defun_pro): Don't push a diversion...
6198         (_m4_defun_pro_outer): ... only via this macro, for the outermost
6199           macro.
6200         (_m4_defun_epi, _m4_defun_epi_outer): Complementarily.
6201         (m4_expansion_stack_pop): Remove the misplaced comment.
6202         (m4_require): Don't put the ``is required by'' line to the
6203           execution stack; slightly improve the out-of-a-defun error message.
6204         (_m4_divert_grow): New macro, counter for the temporary diversions.
6205         (_m4_require_call): Use it.
6206         * tests/m4sugar.at (m4_require): Expect output without the
6207           ``is required by'' messages.
6209 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
6211         * doc/autoconf.texi (Limitations of Usual Tools): Recommend X
6212         rather than x for expr.
6214         * lib/autoconf/lang.m4 (_AC_COMPILER_OBJEXT): Avoid subshells when
6215         this is safe.
6216         * lib/autoconf/programs.m4 (AC_PROG_EGREP, AC_PROG_FGREP): Likewise.
6217         * lib/autoconf/specific.m4 (AC_SYS_LONG_FILE_NAMES): Likewise.
6218         * lib/autotest/general.m4 (AT_INIT): Likewise.
6219         * lib/m4sugar/m4sh.m4 (_AS_LINENO_WORKS): Likewise.
6220         * tests/mktests.sh: Likewise.
6222 2005-01-27  Akim Demaille  <akim@epita.fr>
6224         Have autoheader honor --force.
6226         * doc/make-stds.texi, doc/standards.texi: Update from masters.
6227         * lib/Autom4te/Channels.pm, lib/Autom4te/Configure_ac.pm
6228         * lib/Autom4te/FileUtils.pm, lib/Autom4te/XFile.pm: Update
6229         from masters, so that FileUtils.pm's update_file provide --force
6230         support.
6231         * bin/autoheader.in: Pass $force to update_file so that
6232         config.h.in is always recreated when --force.
6234 2005-01-24  Stepan Kasal  <kasal@ucw.cz>
6236         * doc/autoconf.texi (Introduction): Update Peter Simons' address.
6238 2005-01-21  Paul Eggert  <eggert@cs.ucla.edu>
6240         * doc/autoconf.texi (Limitations of Builtins): Clarify that
6241         "if test ! -d foo; ..." is portable.  Suggested by Stepan Kasal.
6243 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
6245         * doc/autoconf.texi (Shell Substitutions): Fix typo in case statement.
6246         Warn about newline stripping in `` and $().  Update Solaris
6247         version to 9.
6248         (Limitations of Builtins): Use expr "X...", not expr "x...", as
6249         X insulates us from future changes to Posix.
6250         (Limitations of Usual Tools): For AS_DIRNAME, warn about newline
6251         stripping.
6253 2005-01-19  Stepan Kasal  <kasal@ucw.cz>
6255         * doc/autoconf.texi (Defining Symbols): Delete the false comment that
6256           you cannot use AC_DEFINE to define macros containing `[' or `]'.
6258 2005-01-13  Paul Eggert  <eggert@cs.ucla.edu>
6260         * doc/autoconf.texi (Limitations of Usual Tools): Document bug
6261         in Solaris 8 join.  Problem reported by Tomohiro Suzuki on
6262         bug-tar mailing list.
6264 2005-01-05  Stepan Kasal  <kasal@ucw.cz>
6266         * lib/m4sugar/m4sugar.m4 (m4_copy): Fix the explanation.
6268 2005-01-05  Paul Eggert  <eggert@cs.ucla.edu>
6270         * lib/autoconf/c.m4 (AC_LANG_INT_SAVE(C)): Declare longval and
6271         ulongval to be static, to avoid unwanted GCC warning.  Problem
6272         reported by Michael Jennings via Daniel Reed; see
6273         <https://bugzilla.redhat.com/beta/show_bug.cgi?id=143852>.
6275 2005-01-05  Alexandre Duret-Lutz  <adl@gnu.org>
6277         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ARGS): Define datarootdir,
6278         docdir, htmldir, dvidir, pdfdir, psdir, and localdir.  Update
6279         datadir, infodir, and mandir.  Adjust argument parsing code.
6280         (_AC_INIT_HELP): Update help text.
6281         * doc/autoconf.texi (Installation Directory Variables): Document
6282         new variables.
6284 2005-01-04  Noah Misch  <noah@cs.caltech.edu>
6286         * lib/autoconf/programs.m4 (AC_PROG_MAKE_SET): If the Make program does
6287         not seem to work, assume it does set $(MAKE).
6288         * doc/autoconf.texi (AC_PROG_MAKE_SET): Update.
6290 2005-01-03  Stepan Kasal  <kasal@ucw.cz>
6292         * lib/m4sugar/m4sh.m4 (AS_REQUIRE): Add a comment about nesting.
6294 2005-01-03  Stepan Kasal  <kasal@ucw.cz>
6296         A cleanup of the diversion support in m4sugar.
6298         * lib/m4sugar/m4sugar.m4 (_m4_divert): A typo in description.
6299         (_m4_divert_n_stack): New macro; the expansion is
6300           <newline>m4_divert_stack, if m4_divert_stack is defined, and void
6301           otherwise.
6302         (m4_divert, m4_divert_push, m4_divert_pop, m4_init): Use it.
6303         (m4_divert_push, m4_divert_pop, _m4_defun_epi): Don't expand the word
6304           stored in _m4_divert_diversion or _m4_divert_dump.
6305         (m4_divert_pop): When the parameter is given, compare the symbolic
6306           name with the last diversion pushed on the stack.  Previously, the
6307           current diversion was compared with the numeric value of the
6308           diversion given as the parameter.
6309         (m4_require): If the macro hasn't been expanded yet, call ...
6310         (_m4_require_call): this new macro.
6312 2005-01-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6314         * lib/autoconf/general.m4 (_AC_INIT_PREPARE, _AC_ARG_VAR_VALIDATE):
6315         Workarounds for documented `case' limitations.
6317 2005-01-03  Paul Eggert  <eggert@cs.ucla.edu>
6319         * doc/autoconf.texi (Limitations of Usual Tools): Warn about
6320         sed 'command1;command2'.  Problem reported by Ralf Wildenhues.
6322 2005-01-02  Paul Eggert  <eggert@cs.ucla.edu>
6324         * bin/autoconf.as, bin/autoheader.in, bin/autom4te.in,
6325         bin/autoreconf.in, bin/autoscan.in, bin/autoupdate.in,
6326         bin/ifnames.in, tests/mktests.sh: Update copyright date to 2005.
6328         Patch from Roger Leigh (with some minor changes) as follows:
6329         * NEWS: New macros AC_PROG_CC_C89, AC_PROG_CC_C99.
6330         Resurrect AC_PROG_CC_STDC.
6331         * doc/autoconf.texi (C Compiler): Add AC_PROG_CC_STDC,
6332         AC_PROG_CC_C89, AC_PROG_CC_C99.
6333         (Obsolete Macros): Remove AC_PROG_CC_STDC; it's no longer obsolete.
6334         * lib/autoconf/c.m4 (_AC_PROG_CC_C89, _AC_PROG_CC_C99, AC_PROG_CC_C89,
6335         AC_PROG_CC_C99): New macros.
6336         (AC_PROG_CC_STDC): Use them.
6337         (_AC_PROG_CC_STDC): Remove.
6338         (AC_C_PROTOTYPES): Use ac_cv_prog_cc_c89, not ac_cv_prog_cc_stdc.
6339         * THANKS: Add Roger Leigh.
6341 2004-12-30  Noah Misch  <noah@cs.caltech.edu>
6343         * bin/autoreconf.in (autoreconf_current_directory):  AM_INIT_AUTOMAKE
6344         signals that the package uses Automake; a `Makefile.am' is typical but
6345         not essential.  Reported by Magnus Therning.
6346         * tests/torture.at (autoreconf.): New banner.
6347         (autoreconf and non-AC configure): Rename to `Non-Autoconf
6348         AC_CONFIG_SUBDIRS'.
6349         (autoreconf an empty directory): Rename to `Empty directory'.
6350         (Unusual Automake input files): New test.
6352 2004-12-30  Noah Misch  <noah@cs.caltech.edu>
6354         * lib/autotest/general.m4 (AT_CAPTURE_FILE): New macro.
6355         (AT_SETUP): Clear AT_capture_files.
6356         (_AT_CHECK): On failure, log each of AT_capture_files.  Fix comment.
6357         (AT_KEYWORDS): Fix comment typo.
6358         * tests/autotest.at (AT_CHECK_AT): Use AT_CAPTURE_FILE.
6359         * tests/local.at (AT_CHECK_CONFIGURE): Use AT_CAPTURE_FILE.
6360         * doc/autoconf.texi (Writing testsuite.at): Document AT_CAPTURE_FILE.
6362 2004-12-29  Albert Chin-A-Young  <china@thewrittenword.com>
6364         * lib/autoconf/programs.m4 (_AC_FEATURE_CHECK_LENGTH):
6365         If the variable to set is already set, set ac_cv_path_$1
6366         to the preset value so caller can assume ac_cv_path_$1
6367         is available.  (trivial change)
6369 2004-12-27  Noah Misch  <noah@cs.caltech.edu>
6371         * BUGS (Minor Problems): Warn about makefile limitations.
6372         * Makefile.am: Find and update `INSTALL' in $(srcdir).
6373         * man/Makefile.am: Find and update manual pages in $(srcdir).
6375 2004-12-24  Eric Blake  <ebb9@byu.net>
6377         * lib/m4sugar/m4sh.m4 (_AS_DETECT_BETTER_SHELL): Test candidate
6378         shells in subshell, to avoid noise from ash.  (trivial change)
6380 2004-12-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6382         * doc/autoconf.texi (Limitations of Builtins) <case>: Mention
6383         problems with SunOS ksh and backslash escaping, Bourne shells and
6384         closing brackets (both within character classes).  Bug reported
6385         against Libtool by Alexander Kurz <alexander.kurz@qsc.de>.
6386         <read>: New entry.  Mention non-availability of -r.
6388 2004-12-21  Akim Demaille  <akim@epita.fr>
6390         * lib/autotest/general.m4 (AT_LINE): Don't add srcdir here, to
6391         avoid cluttering displayed messages.  Rather, prepend srcdir where
6392         AT_LINE is used for log files.
6394 2004-12-21  Stepan Kasal  <kasal@ucw.cz>
6396         * lib/autoconf/status.m4: Quote ``$tmp'' in many places.
6397         * lib/m4sugar/m4sh.m4 (AS_TMPDIR): Fix the comment, as traps are
6398           no longer part of the macro, quote the occurrence of ``$tmp''.
6399         * doc/autoconf.texi (Forbidden Patterns): Typo.
6401 2004-12-21  Akim Demaille  <akim@epita.fr>
6403         * lib/autotest/general.m4 (AT_INIT): Make sure the "ok" etc. are
6404         separated from the test title by forcing a white space.
6406 2004-12-21  Akim Demaille  <akim@epita.fr>
6408         Enable Emacs navigation within testsuite.log files.
6410         * lib/autotest/general.m4 (AT_CLEANUP): Add an hint for Emacs to
6411         use the compilation mode.
6412         (AT_LINE): Point to the srcdir.
6414 2004-12-19  Noah Misch  <noah@cs.caltech.edu>
6416         * tests/Makefile.am (installcheck-local): Use $(bindir).
6417         (check-local, installcheck-local): Pass TESTSUITEFLAGS.
6418         * doc/autoconf.texi (Making testsuite Scripts): Recommend the same
6419         Makefile.am scheme Autoconf now uses.
6421 2004-12-18  Noah Misch  <noah@cs.caltech.edu>
6423         * lib/m4sugar/m4sugar.m4 (m4_qlen, m4_qdelta): New macros.
6424         * lib/autotest/general.m4 (AT_SETUP): Use m4_qdelta.
6426 2004-12-18  Noah Misch  <noah@cs.caltech.edu>
6428         * lib/autotest/general.m4 (_AT_DECIDE_TRACEABLE): New macro.
6429         (_AT_CHECK): Use it.
6430         * lib/m4sugar/m4sh.m4 (AS_ESCAPE_FOR_EXPAND): Remove.
6431         (AS_ESCAPE): Fix comment.
6432         * tests/autotest.at: Adjust section banner comments.
6433         (AT_CHECK_AT): Accept STATUS and STDERR.
6434         (AT_CHECK_AT_TEST): Likewise.
6435         (Invalid brace-enclosed parameter expansion)
6436         (Multiline command from M4 expansion)
6437         (Double-M4-quoted command): New tests.
6439 2004-12-17  Paul Eggert  <eggert@cs.ucla.edu>
6441         * doc/autoconf.texi: Update GNU FDL version from 1.1 to 1.2.
6443 2004-12-17  Akim Demaille  <akim@epita.fr>
6445         * lib/autoconf/general.m4 (AC_SUBST, AC_SUBST_FILES): Pass $1 to
6446         m4_pattern_allow.
6447         Suggested by Alexandre Duret-Lutz.
6448         * doc/autoconf.texi (Setting Output Variables): Catch up.
6450 2004-12-17  Stepan Kasal  <kasal@ucw.cz>
6452         * lib/m4sugar/m4sh.m4 (_AS_TEST_PREPARE): Fix comment.
6454 2004-12-17  Stepan Kasal  <kasal@ucw.cz>
6456         * lib/autoconf/general.m4 (_AC_LIBOBJ): We can use AC_SUBST/2,
6457           remove the comment which said we cannot.
6459 2004-12-17  Stepan Kasal  <kasal@ucw.cz>
6461         Add a specialized check for resolv.h.  Thanks to Gerrit P. Haase,
6462         Reini Urban and Paul Eggert for reporting the dependencies.
6464         * lib/autoconf/headers.m4 (AC_HEADER_RESOLV): New macro.
6465         * doc/autoconf.texi (AC_HEADER_RESOLV): Document it.
6466         (AC_HEADER_STAT): @cvindex{STAT_MACROS_BROKEN}, not @acindex.
6468 2004-12-17  Stepan Kasal  <kasal@ucw.cz>
6470         * bin/autoscan.in: Open autoscan.log only after ``parse_args'';
6471           so that eg. ``autoscan --help'' doesn't truncate it.
6473 2004-12-15  Nicolas Joly  <njoly@pasteur.fr>
6475         * lib/autoconf/programs.m4 (_AC_FEATURE_CHECK_LENGTH): Remove
6476         generated conftest files.
6478 2004-12-13  Noah Misch  <noah@cs.caltech.edu>
6480         * lib/autotest/general.m4 (_AT_CHECK) [--trace]: Do not enable shell
6481         tracing on commands with possibly-escaped newlines.
6482         * doc/autoconf.texi (Writing testsuite.at): Delete documentation of the
6483         discontinued behavior and its implications.
6484         * tests/autotest.at (BS-newline in command, ^BS-newline in command)
6485         (BSx641-newline in command, BS-BS-newline in command)
6486         (BSx640-newline in command, Newline-CODE-BS-newline in command)
6487         (Single-quote-BS-newline in command)
6488         (Single-quote-newline-BS-newline in command): New tests.
6490 2004-12-13  Stepan Kasal  <kasal@ucw.cz>
6492         * lib/m4sugar/m4sh.m4 (AS_EXECUTABLE_P): Use test -f && test -x
6493           on platforms where it works.
6494         (_AS_TEST_PREPARE): Test for ``test -x''.
6495         (_AS_BROKEN_TEST_PREPARE): Nuke.
6497 2004-12-13  Stepan Kasal  <kasal@ucw.cz>
6499         * lib/m4sugar/m4sh.m4 (AS_TMPDIR): Move the trap commands ...
6500         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): ... here;
6501           give only 4-letter prefix to AS_TMPDIR, comment fixed.
6502         * lib/autoconf/programs.m4 (_AC_PATH_PROG_FEATURE_CHECK): Don't
6503           create the temporary directory.
6504         (_AC_FEATURE_CHECK_LENGTH): Work in current directory.
6506 2004-12-12  Kelley Cook  <kcook@gcc.gnu.org>
6508         * bin/autoheader.in: Exit if no AC_CONFIG_HEADERS was found.
6509         (trivial change)
6511 2004-12-12  Alexandre Duret-Lutz  <adl@gnu.org>
6513         * doc/autoconf.texi (Limitations of Usual Tools) <expr (:)>: Typo.
6515 2004-12-11  Noah Misch  <noah@cs.caltech.edu>
6517         * lib/autotest/general.m4 (_AT_CHECK) [--trace]: Rework a shell pattern
6518         to avoid using a negated character class.  Reported by Nicolas Joly.
6519         * tests/local.at (AT_CHECK_SHELL_SYNTAX): Check for similar constructs.
6521 2004-12-10  Paul Eggert  <eggert@cs.ucla.edu>
6523         * man/Makefile.am (autoconf.1, autoheader.1, autom4te.1, autoreconf.1,
6524         autoscan.1, autoupdate.1, ifnames.1, config.guess.1, config.sub.1):
6525         Don't depend on .x file explicitly, since "make" does that for us.
6526         Suggested by Stepan Kasal.
6528         * bin/Makefile.am (MOSTLYCLEANFILES): Renamed from CLEANFILES.
6529         Add *.tmp.
6530         (autoconf, autoheader, autom4te, autoreconf, autoscan, autoupdate,
6531         ifnames): Factor common code.  And they said it couldn't be done!
6533 2004-12-09  Paul Eggert  <eggert@cs.ucla.edu>
6535         * bin/.cvsignore: Add autoconf.in.
6536         * tests/.cvsignore: Add wrapper.in.
6537         * lib/autotest/general.m4: Escape '$' in case pattern.
6539 2004-12-09  Noah Misch  <noah@cs.caltech.edu>
6541         * man/Makefile.am (autoconf.1): Regenerate when `autoconf.as' changes.
6543         * lib/autotest/general.m4 [--trace] (AT_INIT): Do not `set -v'.
6545         * tests/autotest.at: New file.
6546         * tests/suite.at: Include it.
6547         * tests/Makefile.am: Distribute it.
6549         * lib/autotest/general.m4 [--trace] (_AT_CHECK): Do not enable
6550           shell tracing on a command that could contain multiple lines.
6551         * doc/autoconf.text: Document that fact and its implications.
6552         * lib/m4sugar/m4sh.m4 (AS_ESCAPE_FOR_EXPAND): New macro.
6553         * tests/autotest.at (Multiline backquote command substitution,
6554           Multiline parameter expansion, Literal multiline command,
6555           Multiline parenthetical command substitution): Remove XFAIL.
6557 2004-12-09  Paul Eggert  <eggert@cs.ucla.edu>
6559         * doc/autoconf.texi (Libraries): Clarify problems with AC_CHECK_LIB
6560         and suggest AC_SEARCH_LIBS.  Suggested by Noah Misch and Stepan Kasal.
6562 2004-12-08  Noah Misch  <noah@cs.caltech.edu>
6564         * configure.ac (test suite): Cease to generate wrapper scripts.
6565         * configure: Regenerate.
6566         * lib/freeze.mk (MY_AUTOM4TE): Wrap the uninstalled autom4te directly.
6567         (m4f_dependencies): Adjust accordingly.
6568         * tests/Makefile.am (Wrappers): Generate wrapper scripts.
6569         (wrapper.in): Generate it in the build directory.
6570         (MAINTAINERCLEANFILES): Delete wrapper.in.
6571         (CLEANFILES): Add wrapper.in.
6572         * tests/wrapper.as: Move AS_INIT to very top, preserving copyright in
6573         the output.  Replace each $as_me with a @wrap_program@.
6574         * tests/wrapper.in: Delete it; we always build it.
6576         * bin/Makefile.am (autoconf.in): Generate it in the build directory.
6577         (EXTRA_DIST): Remove autoconf.in.
6578         (CLEANFILES): Add autoconf.in.
6579         (autoconf): Find autoconf.in in the build directory.
6580         * bin/autoconf.in: Delete it; we always build it.
6582 2004-12-08  Noah Misch  <noah@cs.caltech.edu>
6584         * lib/autotest/general.m4 (AT_INIT): Replace a `tr' with a `sed'.  Join
6585         PATH members so as to not prepend an empty element.  Move a comment.
6586         * Makefile.am (SUBDIRS): Build in `tests' last.
6587         * tests/Makefile.am (installcheck-local): Add check-local dependencies.
6589 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
6591         * lib/mdate-sh: Don't use "set - x`$ls_command /`", as zsh mishandles
6592         the spaces inside $ls_command.  Problem reported by Loulou Pouchet in
6593         <http://lists.gnu.org/archive/html/autoconf/2004-12/msg00074.html>.
6594         Don't use "set - x"; plain "set x" is enough, and simplifies debugging.
6596 2004-12-07  Stepan Kasal  <kasal@ucw.cz>
6598         * lib/autoconf/functions.m4 (AC_FUNC_GETMNTENT): Fix typo in previous
6599         patch: extra "-l"s.
6601 2004-12-06  Paul Eggert  <eggert@cs.ucla.edu>
6603         * lib/autoconf/functions.m4 (AC_FUNC_GETMNTENT): Check libc before
6604         looking elsewhere for getmntent.  Problem reported by Mark D. Baushke.
6605         * doc/autoconf.texi (Particular Functions): Mention new behavior.
6607 2004-12-03  Stepan Kasal  <kasal@ucw.cz>
6609         * lib/autoconf/general.m4 (AC_DEFINE, AC_DEFINE_UNQUOTED): Factor
6610           out the common code to ...
6611         (_AC_DEFINE_Q): ... a new macro; simplify the condition about the
6612           value of the #define--default to 1, iff the macro was called
6613           with exactly one parameter.
6615 2004-12-02  Paul Eggert  <eggert@cs.ucla.edu>
6617         * lib/autoconf/functions.m4 (AC_FUNC_MEMCMP): Use
6618         "char c = '\200';" rather than "char c = 0x80;" as the
6619         latter doesn't conform to the strict C standard due to
6620         overflow on signed char hosts.
6622         * lib/autoconf/c.m4 (_AC_PROG_CC_STDC): Prefer -qlanglvl=extc89
6623         to -qlanglvl=ansi.  We don't want to disable extensions.
6625 2004-11-29  Paul Eggert  <eggert@cs.ucla.edu>
6627         * doc/autoconf.texi (Particular Programs): @code{$PATH} -> @env{PATH}.
6628         (Using Autotest, testsuite Scripts, Writing testsuite.at):
6629         Reword slightly to avoid some English-language problems noted
6630         by Ralf Wildenhues in:
6631         http://lists.gnu.org/archive/html/autoconf-patches/2004-11/msg00027.html
6633 2004-11-29  Stepan Kasal  <kasal@ucw.cz>
6635         * NEWS: Add ^L above each release.
6637 2004-11-28  Paul Eggert  <eggert@cs.ucla.edu>
6639         Fix documentation problems reported by Russ Boylan in
6640         <http://lists.gnu.org/archive/html/bug-autoconf/2004-11/msg00056.html>,
6641         along with some nearby cruft.
6642         * doc/autoconf.texi (Libtool): Libtool can be used without
6643         Automake (not without Autoconf).
6644         (Introduction): Mention lists.gnu.org.
6645         * BUGS: Don't mention bugs.gnu.org.
6646         Remove mention of ancient libtool compatibility problem.
6647         * NEWS: Mention that bugs.gnu.org is kaput.
6648         * README: Likewise.  Mention where mailing list archives can be found.
6650 2004-11-28  Stepan Kasal  <kasal@ucw.cz>
6652         * lib/m4sugar/m4sh.m4 (AS_HELP_STRING): A typo in the comment.
6654 2004-11-26  Paul Eggert  <eggert@cs.ucla.edu>
6656         * doc/autoconf.texi (Pretty Help Strings): Go back to
6657         single-quoting assignments to cache variables.
6659 2004-11-23  Stepan Kasal  <kasal@ucw.cz>
6661         * doc/autoconf.texi (Pretty Help Strings): Fix quoting issues
6662         with the examples; fix the bug in MY_ARG_WITH example reported
6663         by Alexandre Duret-Lutz.
6664         * lib/autoconf/general.m4 (AC_ARG_ENABLE, AC_ARG_ENABLE): Enable
6665         expansion of $1 in the comment emitted to configure.
6667 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
6669         * doc/autoconf.texi (Pretty Help Strings): Fix typo
6670         in my editing of the previous patch.  Problem reported
6671         by Alexandre Duret-Lutz.
6673 2004-11-22  Stepan Kasal  <kasal@ucw.cz>
6675         * doc/autoconf.texi (Autoconf Language): Explain that
6676         ``descriptions'' may not be double quotes.
6677         (Quotation Rule Of Thumb): Likewise.
6678         (Pretty Help Strings): Likewise; remove the wrong comment;
6679         simplify the examples and improve their quoting.
6681 2004-11-13  Stepan Kasal  <kasal@ucw.cz>
6683         * lib/autoconf/programs.m4 (_AC_FEATURE_CHECK_LENGTH): Don't check
6684         the $1_found variable, don't test whether the file is executable;
6685         Both things are checked ...
6686         (_AC_PATH_PROG_FEATURE_CHECK): ... here; AS_EXECUTABLE_P replaces
6687         the former ``test -f''.
6688         * lib/m4sugar/m4sh.m4 (_AS_TEST_PREPARE): Fix a typo.
6690 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
6692         * doc/autoconf.texi (Limitations of Usual Tools): Avoid cp -r;
6693         use cp -R instead.
6695 2004-11-10  Derek R. Price  <derek@ximbiot.com>
6697         * doc/autoconf.texi (Limitations of Usual Tools): Note `cp -r'
6698         limitations.  Reorder paragraphs for clarity.
6700 2004-10-11  Paul Eggert  <eggert@cs.ucla.edu>
6702         * doc/autoconf.texi: Standardize spelling of "Posix" (as opposed
6703         to "POSIX" or "@acronym{POSIX}"), and similarly for "DOS
6704         variants", "Unix", and some related minor wording fixups.
6706         (Shellology, Special Shell Variables): Document that the Zsh
6707         problem with NULLCMD was fixed in zsh 3.1.6-dev-18.  Thanks
6708         to Alexandre Duret-Lutz for this info.
6710 2004-10-10  Alexandre Duret-Lutz  <adl@gnu.org>
6712         * doc/autoconf.texi (One-Shot Macros): New node.
6714 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
6716         * doc/autoconf.texi (Function Portability): Fix misdescription
6717         of putenv.  Problem reported by Michael Wardle.
6719 2004-09-22  Paul Eggert  <eggert@cs.ucla.edu>
6721         * doc/autoconf.texi (auindex): New macro.
6722         (AU_DEFUN): Use it to fix the bug when the index contained AC_AU_DEFUN.
6723         Problem reported by Stepan Kasal.
6725 2004-09-05  Paul Eggert  <eggert@cs.ucla.edu>
6727         Fix problems reported by Andreas Buening in:
6728         http://lists.gnu.org/archive/html/autoconf-patches/2004-04/msg00004.html
6729         * lib/autoconf/programs.m4 (AC_PROG_MAKE_SET): Set SHELL=/bin/sh
6730         in test makefile.
6731         * lib/autotest/general.m4 (AT_INIT): Don't assume /dev/null is
6732         readable; it's not true in OS/2-emx.
6734 2004-09-04  Paul Eggert  <eggert@cs.ucla.edu>
6736         * lib/autoconf/libs.m4 (_AC_PATH_X_XMKMF): If xmkmf returns
6737         "/usr/include", clear ac_x_includes instead of leaving it as "no"
6738         (trivial change).  Problem and patch reported by Andrew Church in:
6739         http://lists.gnu.org/archive/html/bug-autoconf/2004-04/msg00016.html
6741 2004-09-03  Paul Eggert  <eggert@cs.ucla.edu>
6743         * doc/autoconf.texi: Give AC_DEFINE and AC_DEFINE_UNQUOTED
6744         three args in examples.  Problem reported by Frederik Fouvry in:
6745         http://lists.gnu.org/archive/html/bug-autoconf/2004-09/msg00017.html
6746         Also, fix some minor spacing and punctuation bugs.
6748 2004-09-02  Akim Demaille  <akim@epita.fr>
6750         * doc/autoconf.texi (Limitations of Builtins): Swap "cd" and
6751         "case" to restore ordering.
6752         Reported by Stepan Kasal.
6754 2004-08-26  Akim Demaille  <akim@epita.fr>
6756         * doc/autoconf.texi: Minor typos and stylos.
6758 2004-08-20  Paul Eggert  <eggert@cs.ucla.edu>
6760         * configure.ac (AC_INIT): Bump to 2.59c.
6762 2004-08-20  Paul Eggert  <eggert@cs.ucla.edu>
6764         Version 2.59b.
6766         * README: Add advice about m4 1.4.2.
6768         * Makefile.cfg (wget_files): Remove config.guess, config.sub,
6769         texinfo.tex for now (done by hand now).
6770         * Makefile.maint (wget_files, cvs_files):
6771         Remove ansi2knr.c; nobody uses it.
6772         (ansi2knr.c-url_prefix): Remove.
6773         (cvs-update): Fix test for failure.  I don't know why it ever
6774         worked...
6776         * doc/autoconf.texi: Update URLs, some of which went stale.
6777         Use @uref rather than @href.
6779         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ARGS): Have configure
6780         handle "--" as per POSIX.  Suggested by Paul Pogonyshev.
6782         * config/config.guess, config/config.sub, config/elisp-comp,
6783         config/install-sh, config/mkinstalldirs, config/texinfo.tex,
6784         doc/fdl.texi, doc/standards.texi: Sync with master copy.
6786         * NEWS, TODO, configure.ac, bin/autoscan.in,
6787         bin/autoupdate.in, bin/ifnames.in, doc/autoconf.texi,
6788         doc/install.texi, lib/Autom4te/Configure_ac.pm,
6789         lib/Autom4te/FileUtils.pm, lib/autoconf/general.m4,
6790         lib/autoconf/programs.m4, lib/autoconf/status.m4,
6791         lib/autotest/general.m4, lib/m4sugar/m4sh.m4,
6792         lib/m4sugar/m4sugar.m4, tests/local.at, tests/m4sh.at,
6793         tests/tools.at, tests/torture.at:
6794         Use "file name" rather than "filename" or "path",
6795         to be consistent with the terminology of the GNU coding standards.
6797 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
6799         * lib/autoconf/c.m4 (AC_LANG_BOOL_COMPILE_TRY(C),
6800         AC_C_LONG_DOUBLE): Undo 2004-06-04 change, as it didn't work with
6801         HP-UX 11.23 cc/aCC or Tru64 4.0 cc.  Problem reported by Noah Misch in
6802         <http://lists.gnu.org/archive/html/autoconf/2004-07/msg00004.html>.
6804         More fixes to support spaces in the name of the build directory.
6805         This isn't a complete fix but it's an improvement.
6807         * bin/autoconf.as (autom4te_options): New var.
6808         Use it instead of appending to AUTOM4TE, so that we can allow
6809         spaces in the build directory's absolute name.
6810         * bin/autoheader.in ($autoconf): Allow spaces in file names.
6811         * lib/autotest/general.m4 (AT_INIT, AT_CLEANUP, _AT_CHECK,
6812         AT_CHECK_NOESCAPE): Likewise.
6813         * tests/wrapper.as (testdir, AUTOM4TE_CFG, autom4te_perllibdir,
6814         main program): Likewise.
6816 2004-08-18  Paul Eggert  <eggert@cs.ucla.edu>
6818         * lib/autoconf/general.m4 (_AC_INIT_HELP): Quote $ac_popdir uses.
6819         From Ralf Corsepius in:
6820         http://lists.gnu.org/archive/html/autoconf-patches/2004-08/msg00014.html
6822 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
6824         * doc/autoconf.texi (Function Portability): Document isinf and
6825         and isnan.  From a suggestion by Kevin Ryde.
6827         * lib/Autom4te/General.pm (END): Return correct exit status even
6828         if unlink succeeds and sets $?.  Needed with Solaris 8's perl 5.00503.
6830 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
6832         * tests/torture.at (Deep Package): Use configure.in, not configure.ac,
6833         for compatibility with Automake 1.4.  Reported by J C Fitzgerald in
6834         <http://lists.gnu.org/archive/html/bug-autoconf/2003-08/msg00051.html>.
6836 2004-08-04  Alexandre Duret-Lutz  <adl@gnu.org>
6838         * lib/autoconf/general.m4 (AC_REQUIRE_AUX_FILE): New empty macro.
6839         (AC_CANONICAL_BUILD): Call it to require config.sub and config.guess.
6840         * lib/autoconf/programs.m4 (AC_PROG_INSTALL): Likewise for install-sh.
6841         * doc/autoconf.texi (Input): Document AC_REQUIRE_AUX_FILE.
6842         * lib/autom4te.in (Automake-preselections): Preselect
6843         AC_REQUIRE_AUX_FILE.  Automake 1.10 will trace it.
6845 2004-08-02  Alexandre Duret-Lutz  <adl@gnu.org>
6847         * lib/autom4te.in (Automake-preselections): Preselect
6848         AC_CANONICAL_BUILD and AC_CANONICAL_TARGET.  Automake 1.9.1 will
6849         trace them.
6851 2004-07-29  Paul Eggert  <eggert@cs.ucla.edu>
6853         * lib/m4sugar/m4sh.m4 (_AS_BOURNE_COMPATIBLE): Set BIN_SH, for
6854         Tru64.
6855         * doc/autoconf.texi (Shellology): Mention BIN_SH.
6856         Document problem with "`""`" in pdksh POSIX mode.
6858 2004-07-27  Paul Eggert  <eggert@cs.ucla.edu>
6860         * lib/m4sugar/m4sh.m4 (_AS_BOURNE_COMPATIBLE): Use "set -o posix"
6861         with pdksh, too.  Problem reported by Patrick Welche via
6862         Gary V. Vaughan.
6863         * doc/autoconf.texi (Shellology): Note that set -o posix is
6864         useful for pkdsh, too.
6866 2004-06-24  Paul Eggert  <eggert@cs.ucla.edu>
6868         * lib/m4sugar/m4sh.m4 (_AS_DETECT_BETTER_SHELL): Require
6869         _AS_UNSET_PREPARE, so that we can use $as_unset directly.
6870         Don't fail if ENV or BASH_ENV is readonly.
6871         (AS_SHELL_SANITIZE): Don't fail if ENV, MAIL, MAILPATH, LC_ALL,
6872         etc. are read only.  Problem reported by Ludovic Courtes.
6874 2004-06-23  Noah Misch  <noah@cs.caltech.edu>
6876         * lib/m4sugar/m4sh.m4 (_AS_BOURNE_COMPATIBLE): If the shell is
6877         zsh, disable GLOB_SUBST to avoid backslash handling problems.
6878         (trivial change)
6880 2004-06-04  Paul Eggert  <eggert@cs.ucla.edu>
6882         * doc/autoconf.texi (File System Conventions): Warn about
6883         names like "aux".  Problem reported by Eric Blake.
6885         * lib/autoconf/c.m4 (AC_LANG_BOOL_COMPILE_TRY (C)): Use division
6886         by zero instead of array size, so that we can use any arithmetic
6887         constant expression (instead of requiring an integer constant
6888         expression).  This allows us to test expressions like DBL_MAX <
6889         LDBL_MAX, which didn't conform to the C standard using the old
6890         method.
6891         (AC_C_LONG_DOUBLE): Put back in the tests for LDBL_MAX and LDBL_EPSILON,
6892         now that we can do floating-point tests at compile time.
6894 2004-06-02  Paul Eggert  <eggert@cs.ucla.edu>
6896         * lib/autoconf/c.m4 (AC_C_LONG_DOUBLE): Don't check LDBL_MAX
6897         and LDBL_EPSILON, as the resulting expression isn't an
6898         integer constant expression and violates the C standard.
6899         Problem reported by Nelson H. F. Beebe.  Also, check
6900         for "L" suffix, and check that long double doesn't have
6901         worse range or precision than double, that mixed-mode
6902         arithmetic doesn't generate a diagnostic, that double
6903         constants fit in long double.
6905 2004-06-03  Kevin Ryde  <user42@zip.com.au>
6907         * doc/autoconf.texi (Function Portability): Add notes on free(NULL),
6908         malloc(0) and realloc(NULL,size).
6910         * doc/autoconf.texi (Shell Substitutions): Spelling error reported by
6911         Bob Proulx.
6913 2004-05-31  Paul Eggert  <eggert@cs.ucla.edu>
6915         * lib/autoconf/headers.m4 (HAVE_STDBOOL_H): Detect _Bool bug
6916         in HP aC++/ANSI C B3910B A.05.55 [Dec 04 2003].  Problem reported
6917         by Jim Meyering.
6919 2004-05-26  Paul Eggert  <eggert@cs.ucla.edu>
6921         * doc/autoconf.texi (Limitations of Builtins): Mention that ! COMMAND
6922         can be rewritten using if-then-else.  Suggested by Bruno Haible.
6924 2004-05-25  Paul Eggert  <eggert@cs.ucla.edu>
6926         * doc/autoconf.texi (testsuite Scripts): Fix typo.
6927         Problem reported by Stepan Kasal.
6929 2004-05-24  Paul Eggert  <eggert@cs.ucla.edu>
6931         * tests/Makefile.am (autoconfdir): Fix to match comment (trivial
6932         change).  Patch reported by Ralf Wildenhues in
6933         <http://mail.gnu.org/archive/html/bug-autoconf/2004-05/msg00092.html>.
6935         * lib/autoconf/functions.m4 (AC_FUNC_MBRTOWC): Don't assume that a
6936         function F exists if the compiler and linker let you compile an
6937         expression like (F != 0).  Recent versions of GCC optimize away
6938         the reference to F in that case, since every function address must
6939         be nonzero, so the link succeeds even if F does not exist.
6940         Problem reported by Manu in
6941         <http://mail.gnu.org/archive/html/bug-gnu-utils/2004-05/msg00060.html>.
6943         * doc/autoconf.texi (Systemology): Standardize on the spelling of
6944         "Unix".  Many uses changed.
6945         (Limitations of Builtins): Explain better why the ! command isn't
6946         portable.
6948 2004-05-22  Alexandre Duret-Lutz  <adl@gnu.org>
6950         * lib/autom4te.in (Automake-preselections): Preselect
6951         LT_SUPPORTED_TAG in lieu of AC_LIBTOOL_TAGS.
6953 2004-05-19  Kevin Ryde  <user42@zip.com.au>
6955         * doc/autoconf.texi (Function Portability): Add strerror_r, cross
6956         referencing AC_FUNC_STRERROR_R.
6958         * doc/autoconf.texi (Particular Functions): In AC_FUNC_CLOSEDIR_VOID,
6959         note pessimistic assumption when cross compiling.
6961 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
6963         * doc/autoconf.texi (Limitations of Make): Note that BSD make
6964         (until 2004) invoked subcommands with sh -e, contra POSIX.
6965         Reported by Kevin Ryde.
6967 2004-05-10  Eric Sunshine  <sunshine@sunshineco.com>
6969         * programs.m4 (_AC_PROG_GREP): Fixed bug where PATH argument handed to
6970         _AC_PATH_PROG_FEATURE_CHECK contained leading whitespace (i.e.
6971         "        $PATH:/usr/xpg4/bin"). This resulted in bogus tests, such as
6972         `test -f "        /usr/bin/grep"', which _always_ failed.
6973         (AC_PROG_SED): Ditto bogus PATH fix.
6974         * autoconf.texi (AC_PROG_GREP): Properly document that this macro
6975         requires that grep correctly supports _multiple_ `-e' options, rather
6976         than stating only that grep should accept `-e'.
6978 2004-05-03  Paul Eggert  <eggert@cs.ucla.edu>
6980         Port to C99, which requires that 'exit' be declared.
6982         * lib/autoconf/c.m4 (AC_C_BIGENDIAN): Use AC_INCLUDES_DEFAULT
6983         to ensure that stdlib.h is included.
6984         * lib/autoconf/functions.m4 (_AC_LIBOBJ_ALLOCA, AC_FUNC_SETPGRP,
6985         AC_FUNC_STRTOD, AC_FUNC_SETVBUF_REVERSED, AC_FUNC_FORK, _AC_FUNC_FORK,
6986         _AC_FUNC_VFORK, AC_FUNC_WAIT3): Likewise.
6987         * lib/autoconf/specific.m4 (AC_SYS_RESTARTABLE_SYSCALLS): Likewise.
6988         * lib/autoconf/types.m4 (AC_TYPE_GETGROUPS): Likewise.
6989         * lib/autoconf/headers.m4 (AC_HEADER_STDC): Include <stdlib.h>
6990         when using 'exit' in a test; C99 requires that 'exit' be declared.
6992 2004-05-02  Paul Eggert  <eggert@cs.ucla.edu>
6994         * doc/autoconf.texi (Particular Programs): AC_PROG_GREP
6995         now prefers 'grep' implementations that accept -e.
6996         (Limitations of Usual Tools): Describe problems of traditional
6997         egrep and fgrep with long input lines, and of traditional grep
6998         with -e.
6999         * lib/autoconf/programs.m4 (AC_PROG_GREP): Check for -e, too.
7000         (_AC_PROG_GREP): Assume 3rd arg is properly quoted for the shell.
7001         All callers changed.  Append /usr/xpg4/bin to the PATH, for
7002         Solaris.
7003         (_AC_FEATURE_CHECK_LENGTH): Discard stderr, so we don't bother
7004         the user with complaints about multiple -e options.
7005         * tests/local.at (AC_STATE_SAVE): Use $GREP, not grep.
7006         Define it with AC_PROG_GREP.
7007         * configure.ac (AC_PROG_GREP): Add.
7008         * lib/freeze.mk (GREP): New macro.
7010 2004-05-02  Eric Sunshine  <sunshine@sunshineco.com>
7012         * lib/m4sugar/m4sh.m4 (_AS_DETECT_BETTER_SHELL): Consult $SHELL as
7013         a possible candidate only after all others fail, rather than
7014         consulting it first.  This improves backward compatibility by
7015         better reflecting the way shell selection occurred in previous
7016         versions of Autoconf, and should help to avoid triggering latent
7017         problems in other packages, such as the one in Automake where zsh
7018         is not handled robustly:
7019         http://mail.gnu.org/archive/html/automake/2004-04/msg00095.html
7020         Although it is not Autoconf's responsibility to work around
7021         problems in Automake, it nevertheless makes sense to avoid
7022         introducing unnecessary incompatibilites.
7024 2004-04-22  Albert Chin-A-Young  <china@thewrittenword.com>,
7025             Gary V. Vaughan  <gary@gnu.org>
7027         * lib/autoconf/programs.m4 (_AC_FEATURE_CHECK_LENGTH): Don't guess
7028         how deeply nested we are when a suitable tool is found, set the
7029         ac_path_TOOL_found flag.
7030         (_AC_PATH_PROG_FEATURE_CHECK): Encapsulate knowledge of how deeply
7031         nested we are in this macro.  Break out of all 3 nested loops if
7032         ac_path_TOOL_found is set.
7034 2004-04-21  Gary V. Vaughan  <gary@gnu.org>
7036         * lib/autoconf/programs.m4 (_AC_FEATURE_CHECK_LENGTH): Break out
7037         of the _AS_PATH_WALK loop too if GNU flavor is found.
7039 2004-04-21  Alexandre Duret-Lutz  <adl@gnu.org>
7041         * doc/autoconf.texi (Limitations of Make): Update documentation
7042         for `$<'.  New entry `Long lines', based on a report from Simon
7043         Josefsson.  Augment the documentation for SHELL = @SHELL@ with a
7044         paragraph about DJGPP, based on a mail from Richard Dawe.
7046 2004-04-20  Paul Eggert  <eggert@twinsun.com>
7048         * tests/c.at (C keywords): Don't assume that GCC supports
7049         "restrict" and "inline", as sufficiently-old GCC versions do not
7050         (also, GCC configured to be in pedantic C89 mode does not).
7051         Problem reported by Sumit Pandya in:
7052         http://mail.gnu.org/archive/html/autoconf/2004-04/msg00092.html
7054         * lib/autoconf/c.m4 (_AC_PROG_CC_G, _AC_PROG_CXX_G): Don't
7055         consider -g to work if it generates warnings when plain compiles
7056         don't.  Problem reported by Braden McDaniel in:
7057         http://mail.gnu.org/archive/html/autoconf-patches/2003-07/msg00014.html
7059         * doc/autoconf.texi (Slashes): New section, to document a problem
7060         reported by Jim Meyering in:
7061         http://mail.gnu.org/archive/html/bug-coreutils/2004-02/msg00060.html
7063         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Remove potential
7064         linker output files before linking, to work around IRIX 6 linker bug.
7065         Problem reported by Rainer Orth in:
7066         http://mail.gnu.org/archive/html/autoconf-patches/2004-02/msg00007.html
7068 2004-04-20  Gary V. Vaughan  <gary@gnu.org>
7070         * lib/autoconf/programs.m4 (_AC_FEATURE_CHECK_LENGTH): Make the
7071         best tool so far counter rely on the tool path variable name to
7072         avoid checks for one tool being affected by the results of running
7073         the length check on a previous tool.
7075         * lib/autoconf/programs.m4 (_AC_PROG_GREP): Take an additional
7076         match expression argument, as different greps have different
7077         regular expression flavours.
7078         (AC_PROG_FGREP): Pass 'FGREP'. fgrep treats all match chars as
7079         literals.
7080         (AC_PROG_EGREP): Pass 'EGREP$'.
7081         (AC_PROG_GREP): Pass 'GREP$'.
7083 2004-04-20  Albert Chin-A-Young  <china@thewrittenword.com>
7085         * lib/autoconf/programs.m4 (AC_PROG_GREP): Cache variable
7086         is `ac_cv_path_GREP', not `oc_cv_path_GREP'.
7088 2004-03-29  Paul Eggert  <eggert@twinsun.com>
7090         * doc/autoconf.texi (Particular Headers, Particular Types, Generic
7091         Types, Specific Compiler Characteristics, System Services,
7092         Obsolete Macros): Use 'long int', 'short int', 'unsigned int'
7093         etc. consistently instead of 'long', 'short', 'unsigned' etc.
7094         * lib/autoconf/c.m4 (AC_LANG_INT_SAVE(C), AC_C_BIGENDIAN): Likewise.
7095         * lib/autoconf/functions.m4 (AC_FUNC_MMAP, AC_FUNC_SELECT_ARGTYPES):
7096         Likewise.
7097         * lib/autoconf/headers.m4 (AC_HEADER_SYS_WAIT): Likewise.
7098         * lib/autoconf/types.m4 (AC_TYPE_GETGROUPS, AC_TYPE_SIZE_T,
7099         AC_TYPE_OFF_T): Likewise.
7100         * tests/semantics.at (AC_CHECK_TYPES: backward compatibility):
7101         Likewise.
7103         * tests/foreign.at (Libtool): Create an empty aclocal.m4, to
7104         pacify libtool 1.5.2.  Fix quoting problems in sed command.
7106 2004-03-28  Paul Eggert  <eggert@twinsun.com>
7108         * doc/autoconf.texi (Particular Structures): AC_STRUCT_TIMEZONE
7109         now defines HAVE_DECL_TZNAME if it is declared, when
7110         HAVE_STRUCT_TM_TM_ZONE is not defined.
7111         * lib/autoconf/types.m4 (AC_STRUCT_TIMEZONE): Implement this.
7112         Do not assume atoi.  Rely on HAVE_DECL_TZNAME when testing
7113         for HAVE_TZNAME.
7115 2004-03-28  Steven G. Johnson  <stevenj@fftw.org>
7117         * lib/autoconf/fortran.m4 (_AC_PROG_FC_V_OUTPUT): Corrected
7118         superfluous backslashing of quotes (") in sed expressions;
7119         thanks to Paul Eggert.
7121 2004-03-26  Steven G. Johnson  <stevenj@alum.mit.edu>
7123         * lib/autoconf/fortran.m4 (_AC_PROG_FC): new name of Intel
7124         Fortran compiler is ifort, also added pghpf; thanks to Nelson
7125         H. F. Beebe for the bug report.
7127 2004-03-26  Steven G. Johnson  <stevenj@fftw.org>
7129         * lib/autoconf/fortran.m4 (_AC_PROG_FC_V_OUTPUT): fix for
7130         quoted -cmdline argument in Portland Group compiler (bug
7131         reported by Jeffrey J. Barteet).
7133 2004-03-25  Kevin Ryde  <user42@zip.com.au>
7135         * doc/autoconf.texi (Specifying Names): Move cross_compiling ovindex to
7136         (Run Time): ... here, where it's now mentioned.
7138 2004-03-19  Alexandre Duret-Lutz  <adl@gnu.org>
7140         * doc/autoconf.texi (autom4te Invocation): Language Autoconf
7141         inherits from language Autoconf-without-aclocal-m4.
7142         (Customizing autom4te): Adjust example; the cache must now be
7143         disabled for language Autoconf-without-aclocal-m4.
7145 2004-03-16  Paolo Bonzini  <bonzini@gnu.org>
7146             Nathanael Nerode  <neroden@twcny.rr.com>
7148         * lib/autoconf/programs.m4 (AC_PATH_TOOL, AC_CHECK_TOOL,
7149         AC_CHECK_TOOLS): Warn if a cross-tool is found without
7150         a prefix.
7151         (AC_PATH_TARGET_TOOL, AC_CHECK_TARGET_TOOL,
7152         AC_CHECK_TARGET_TOOLS): New macros.
7153         * doc/autoconf.texi (Generic Programs): Document
7154         (AC_PATH_TARGET_TOOL, AC_CHECK_TARGET_TOOL,
7155         AC_CHECK_TARGET_TOOLS, and warn for future changes
7156         in the behavior of AC_PATH_TOOL, AC_CHECK_TOOL and
7157         AC_CHECK_TOOLS.
7158         (Specifying Names): Document the reason for these future
7159         behavioral changes.
7160         * tests/mktests.sh: Do not generate tests for the
7161         new macros.
7162         * NEWS: Document these changes.
7164         * doc/autoconf.texi: Avoid macros with unbraced arguments,
7165         they make TeX hang up.
7167 2004-03-15  Paul Eggert  <eggert@bogus.example.com>
7169         * NEWS: New macro AC_CHECK_ALIGNOF.
7170         * doc/autoconf.texi (Generic Compiler Characteristics): Document it.
7171         * lib/autoconf/types.m4 (AC_CHECK_SIZEOF): Use long int rather than
7172         int; avoid "a `$1'" since this isn't grammatical if $1 begins with a
7173         vowel.
7174         (AC_CHECK_ALIGNOF): New macro.
7175         * tests/mktests.sh (ac_exclude_list): Exclude AC_CHECK_ALIGNOF.
7176         * tests/semantics.at (AC_CHECK_ALIGNOF): Add tests similar to
7177         those for sizeof.
7179 2004-03-03  Paul Eggert  <eggert@twinsun.com>
7181         * bin/Makefile.am (edit): Don't use $< in a context where
7182         POSIX doesn't require support for it.  Use $@.in instead.
7183         Problem reported by Anthony N. Frasso in
7184         <http://mail.gnu.org/archive/html/autoconf/2004-03/msg00008.html>.
7185         * bin/autoscan.in, bin/autoupdate.in: Add @configure_input@ comment.
7187 2004-02-23  Gary V. Vaughan  <gary@gnu.org>
7189         * bin/autoreconf.in (autoreconf_current_directory): Recognize LT_INIT
7190         from the next generation of Libtool.
7191         * lib/autom4te.in (Autoreconf-preselections): Ditto.
7193 2004-02-20  Alexandre Duret-Lutz  <adl@gnu.org>
7195         * doc/autoconf.texi (Limitations of Usual Tools) <mkdir>: `mkdir -p'
7196         is not always thread-safe.  Report from Nathanael Nerode.
7198 2004-02-18  Paul Eggert  <eggert@twinsun.com>
7200         Fix a dependencies problem, stemming from a Autoconf 2.59 build
7201         problem on QNX reported by Stephen Rasku in
7202         <http://mail.gnu.org/archive/html/bug-autoconf/2004-02/msg00066.html>.
7204         * bin/Makefile.am ($(srcdir)/autoconf.in): Depend on
7205         $(m4sh_m4f_dependencies); this removes a FIXME.
7206         * tests/Makefile.am ($(srcdir)/wrapper.in): Likewise.
7207         (MAINTAINERCLEANFILES): Split into pieces,
7208         one per related section.  Add $(srcdir)/wrapper.in.
7210 2004-02-09  Paul Eggert  <eggert@twinsun.com>
7212         * doc/autoconf.texi (Setting Output Variables): Emphasize that
7213         AC_SUBST provides no portable way to escape literal newlines.
7215         * lib/autoconf/fortran.m4 (_AC_FC_LIBRARY_LDFLAGS): Ignore all
7216         flags of the form -lcrt*.o, not just -lcrt[01].o and -lcrtbegin.o.
7217         Darwin uses -lcrt2.o and there's little point to cataloging all
7218         the system variants.  Partial fix reported by Andreas Waechter in:
7219         http://mail.gnu.org/archive/html/autoconf-patches/2004-02/msg00006.html
7220         for bug reported by Nelson H. F. Beebe in:
7221         http://mail.gnu.org/archive/html/bug-autoconf/2003-12/msg00090.html
7223 2004-02-04  Paolo Bonzini  <bonzini@gnu.org>
7225         * doc/autoconf.texi (AU_DEFUN): Fix English,
7226         suggested by Paul Eggert.
7227         * lib/autoconf/autoupdate.m4: Correct reference to
7228         acobsolete.m4, suggested by Alexandre Duret-Lutz.
7230 2004-02-02  Paolo Bonzini  <bonzini@gnu.org>
7232         * bin/autoupdate.in: Define __file__ so that warnings
7233         refer to the correct file.
7234         * doc/autoconf.texi (AU_DEFUN): Describe more correctly
7235         the behavior of the third argument.
7236         * lib/autoconf/autoupdate.m4 (AU_DEFUN): Describe more
7237         correctly the behavior of the third argument.  Document
7238         what the three macros that AU_DEFUN defines do.  Fix
7239         warning message when the third argument includes $0
7240         (reported by Alexandre Duret-Lutz).
7242 2004-01-30  Paolo Bonzini  <bonzini@gnu.org>
7243             Eric Sunshine  <sunshine@sunshineco.com>
7244             Paul Eggert  <eggert@twinsun.com>
7246         * lib/m4sugar/m4sh.m4 (M4SH-SANITIZE): New diversion.
7247         (AS_INIT): Output shell initialization there. Removed optional
7248         parameter. Expand _AS_SHELL_FN_SPY.
7249         (AS_INIT_WITH_SHELL_FN): Removed.
7250         (_AS_SHELL_FN_SPY): New macro.
7251         (AS_DETECT_REQUIRED, AS_DETECT_SUGGESTED): New
7252         macros.
7253         (AS_SHELL_SANITIZE): Remove loop to find better shell
7254         and documentation for the parameter.
7255         (_AS_DETECT_BETTER_SHELL): Move it here.
7256         (_AS_SHELL_FN_WORK): Remove shell invocation, reformat.
7257         (_AS_RUN): Move it here, support testing with eval.
7258         (AS_REQUIRE_SHELL_FN): Require shell functions when
7259         it is used.
7260         (_AS_LINENO_WORKS): Put around braces, we do not
7261         trigger the bash bug anymore.
7262         * lib/autotest/general.m4: Document M4SH-SANITIZE, do not
7263         use AS_INIT_WITH_SHELL_FN.
7264         * bin/autoconf.in, tests/wrapper.in: Regenerated.
7266 2004-01-30  Paolo Bonzini  <bonzini@gnu.org>
7268         * bin/autoupdate.in: Trace AU_DEFINE instead of AU_DEFUN.
7269         * doc/autoconf.texi: Don't say that the third parameter
7270         is broken.
7271         * lib/autoconf/autoupdate.m4 (AU_DEFINE): New dummy macro.
7272         (AU_DEFUN): Honor the third parameter, create autoupdate
7273         macros with AU_DEFINE.
7274         * lib/autoconf/headers.m4 (AC_USG, AC_MEMORY_H,
7275         AC_DIR_HEADER): Use AU_DEFUN's third parameter.
7276         * lib/autoconf/lang.m4 (AC_LANG_SAVE): Likewise.
7277         * lib/autoconf/programs.m4 (AC_RSH): Likewise.
7278         * lib/autoconf/specific.m4 (AC_HAVE_POUNDBANG,
7279         AC_ARG_ARRAY, AC_CYGWIN, AC_EMXOS2, AC_MINGW32,
7280         AC_XENIX_DIR): Likewise.
7281         * lib/autoconf/types.m4 (AC_INT_16_BITS, AC_LONG_64_BITS,
7282         AC_STRUCT_ST_BLKSIZE, AC_STRUCT_ST_RDEV): Likewise.
7283         * lib/autoconf/status.m4: Remove FIXME.
7284         * tests/local.at (AT_CHECK_AU_MACRO): Ignore stderr, check
7285         that the macro is not present anymore in the updated
7286         configure.ac.
7287         * tests/tools.at (autoupdate AC_LINK_FILES): Ignore stderr
7288         of autoupdate.
7290 2004-01-28  Paul Eggert  <eggert@twinsun.com>
7292         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): Add 2004 to
7293         copyright years.
7294         * lib/autoconf/general.m4 (_AC_INIT_COPYRIGHT): Add 1992 thorugh
7295         2003 (except 1997) to the list of copyright years.  This undoes
7296         the 2003-05-22 change, which removed the older years from the list.
7297         * lib/autoconf/status.m4 (AC_OUTPUT): Update copyright date to 2004.
7299 2004-01-27  Gary V. Vaughan  <gary@gnu.org>
7300             Albert Chin-A-Young  <china@thewrittenword.com>
7302         * lib/autoconf/programs.m4 (AC_PROG_GREP): New macro to test for a
7303         grep or ggrep program in PATH that accepts as long lines as
7304         possible.
7305         * lib/autoconf/programs.m4 (_AC_PROG_GREP): Factor out the core of
7306         AC_PROG_GREP.
7307         (AC_PROG_EGREP, AC_PROG_FGREP): Use it to find best available
7308         egrep and fgrep respectively if $GREP -E/-F don't work.
7309         (_AC_PATH_PROG_FEATURE_CHECK): Factor out the common core of
7310         _AC_PROG_GREP, and AC_PROG_SED.
7311         (_AC_FEATURE_CHECK_LENGTH): New helper macro for finding the
7312         longest input length accepted by a command.
7313         (AC_PROG_SED): Use it.
7314         * doc/autoconf.texi (Particular Programs): Document the changes.
7315         * NEWS: Updated.
7317 2004-01-27  Paul Eggert  <eggert@twinsun.com>
7319         * bin/autoconf.as ($version): Update copyright from 2003 to 2004.
7320         * bin/autoheader.in, bin/autom4te.in, bin/autoreconf.in,
7321         bin/autoscan.in, bin/autoupdate.in, bin/ifnames.in: Likewise.
7322         * lib/autoconf/general.m4 (_AC_INIT_COPYRIGHT): Likewise.
7324         * Makefile.in, aclocal.m4, configure, bin/Makefile.in,
7325         bin/autoconf.in, config/Makefile.in, config/config.guess,
7326         config/config.sub, config/install-sh, config/mdate-sh,
7327         config/mkinstalldirs, config/texinfo.tex, doc/Makefile.in,
7328         lib/Makefile.in, lib/Autom4te/Makefile.in,
7329         lib/autoconf/Makefile.in, lib/autoscan/Makefile.in,
7330         lib/autotest/Makefile.in, lib/emacs/Makefile.in,
7331         lib/m4sugar/Makefile.in, man/Makefile.in, man/autoconf.1,
7332         man/autoheader.1, man/autom4te.1, man/autoreconf.1,
7333         man/autoscan.1, man/autoupdate.1, man/config.guess.1,
7334         man/config.sub.1, man/ifnames.1, tests/Makefile.in,
7335         tests/acc.at, tests/acfortran.at, tests/acfunctions.at,
7336         tests/acgeneral.at, tests/acheaders.at, tests/aclang.at,
7337         tests/aclibs.at, tests/acspecific.at, tests/acstatus.at,
7338         tests/actypes.at: Regenerate and/or sync with original
7339         sources.
7341 2004-01-26  Paul Eggert  <eggert@twinsun.com>
7343         * doc/autoconf.texi (Default Includes): Include <stdint.h> even if
7344         HAVE_INTTYPES_H is defined.  This is needed on Tru64 5.1b with
7345         Compac C V6.5-207 (dtk), which defines uintmax_t in <stdint.h> but
7346         not <inttypes.h>.  Problem reported by Tim Mooney in
7347         <http://mail.gnu.org/archive/html/bug-coreutils/2004-01/msg00147.html>.
7348         * lib/autoconf/headers.m4 (_AC_INCLUDES_DEFAULT_REQUIREMENTS):
7349         Likewise.
7351         * lib/autoconf/programs.m4 (AC_PROG_SED): Use diff, not sed;
7352         otherwise "make check" fails because it forbids cmp (I guess
7353         because cmp treats files as binary on DOS-like systems).
7355         * tests/mktests.sh: Update copyright date to 2004, since some tests
7356         have changed in 2004.
7358 2004-01-23  Gary V. Vaughan  <gary@gnu.org>
7360         * lib/autoconf/programs.m4 (AC_PROG_SED):  New macro to test for a
7361         non-truncating sed or gsed program in PATH.
7362         * tests/acprograms.at: Add it.
7363         * doc/autoconf.texi (Particular Programs): Document it.
7364         * NEWS: Updated.
7366 2004-01-15  Paul Eggert  <eggert@twinsun.com>
7368         * lib/autoconf/c.m4 (_AC_PROG_CC_STDC): Try -std, not -std1, since
7369         -std1 disables some useful extensions on Tru64.  Problem reported
7370         by N. Lichtmaier in
7371         <http://mail.gnu.org/archive/html/autoconf/2004-01/msg00100.html>.
7373 2004-01-14  Paul Eggert  <eggert@twinsun.com>
7375         * doc/autoconf.texi (Programming in M4sh): Document that
7376         AS_MKDIR_P succeeds if the destination is a symbolic link
7377         to an existing directory.
7378         (Limitations of Usual Tools): Note that mkdir -p might not
7379         succeed on symlinks to directories.
7381 2004-01-13  Paul Hilfinger  <hilfinger@CS.Berkeley.EDU>
7383         * lib/autoconf/autoupdate.m4 (AU_DEFUN): Grammar fix in comment.
7384         * bin/autoheader.in: Grammar fix in message.
7385         * lib/m4sugar/m4sh.m4 (AS_MKDIR_P):
7386         Test for dir before calling mkdir -p.  (trivial changes)
7388 2004-01-13  Eric Blake  <ebb9@byu.net>
7390         * doc/autoconf.texi (Obsolete Macros): In AC_TRY_COMPILE and
7391         AC_TRY_LINK, s/AC_LANG_SOURCE/AC_LANG_PROGRAM/.  (trivial change)
7393 2004-01-10  Jim Meyering  <jim@meyering.net>
7395         * doc/autoconf.texi (Running the Preprocessor): Correct grammar.
7397 2004-01-09  Paul Eggert  <eggert@twinsun.com>
7399         * lib/autoconf/general.m4: Fix bug: AC_CHECK_SIZEOF evokes a warning
7400         with `autoconf -Wall,error'.  Bug reported by Eric Blake in:
7401         http://mail.gnu.org/archive/html/autoconf-patches/2004-01/msg00000.html
7402         (_AC_COMPUTE_INT_COMPILE): Invoke _AC_COMPILE_IFELSE, not
7403         AC_COMPILE_IFELSE, since we now assume our caller invokes
7404         AC_LANG_COMPILER_REQUIRE, for symmetry with _AC_COMPUTE_INT_RUN.
7405         (_AC_COMPUTE_INT_RUN): Likewise, for _AC_RUN_IFELSE instead
7406         of AC_RUN_IFELSE; this avoids the warning mentioned above.
7407         (_AC_COMPUTE_INT): Invoke AC_LANG_COMPILER_REQUIRE.
7409 2004-01-07  Paul Eggert  <eggert@twinsun.com>
7411         * lib/autoconf/general.m4 (_AC_LIBOBJS_NORMALIZE): Avoid \$ inside
7412         `"'...'"`, as it's confusing (and I suspect it may not work on
7413         some platforms).  The code was incorrect anyway, as it assumed
7414         that \$ evaluated to itself in that context.  Reported by
7415         Alexandre Duret-Lutz.
7417 2004-01-07  Alexandre Duret-Lutz  <adl@gnu.org>
7419         * lib/autom4te.in (Automake-preselections): Preselect AC_LIBTOOL_TAGS
7420         and _LT_AC_TAGCONFIG.
7422 2004-01-06  Paul Eggert  <eggert@twinsun.com>
7424         * doc/autoconf.texi (One Macro Call): Fix an incorrect
7425         example, and add more examples.  Reported by Eric Sunshine.
7427 2004-01-05  Paul Eggert  <eggert@twinsun.com>
7429         * doc/autoconf.texi (Limitations of Usual Tools):
7430         Remove warning against "rm -fr" introduced yesterday; it
7431         was a false alarm.
7433         * bin/Makefile.am (autoconf, autoheader, autom4te, autoreconf,
7434         autoscan, autoupdate, ifnames): Don't use chmod -w.
7435         * lib/Makefile.am (autom4te.cfg): Likewise.
7436         * doc/autoconf.texi (Limitations of Usual Tools): Warn against
7437         "chmod -w".
7439 2004-01-04  Paul Eggert  <eggert@twinsun.com>
7440             Paolo Bonzini  <bonzini@gnu.org>
7442         * lib/m4sugar/m4sh.m4 (_AS_LINENO_PREPARE): Speed up sed scripts
7443         by doing lineno substitution only on lines containing "$LINENO".
7445 2004-01-04  Paul Eggert  <eggert@twinsun.com>
7447         * lib/autoconf/general.m4 (AC_ARG_PROGRAM):
7448         Use "rm -f" to remove conftest.sed, not plain "rm".
7449         Bug reported by David Relson in
7450         <http://mail.gnu.org/archive/html/autoconf/2004-01/msg00011.html>.
7452         * Makefile.am (autom4te-update):
7453         Replace "rm -rf" and "rm -fr" with "rm -f -r", as POSIX requires.
7454         * Makefile.maint (my-distcheck, do-po-update): Likewise.
7455         * doc/autoconf.texi (Guidelines): Likewise.
7456         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Likewise.
7457         * lib/autoconf/libs.m4 (_AC_PATH_X_XMKMF): Likewise.
7458         * lib/autoconf/specific.m4 (AC_SYS_LONG_FILE_NAMES): Likewise.
7459         * lib/autotest/general.m4 (AT_INIT): Likewise.
7460         * lib/m4sugar/m4sh.m4 (AS_TMPDIR): Likewise.
7461         * tests/Makefile.am (clean-local): Likewise.
7462         * tests/tortue.at (AC_CONFIG_FILES, HEADERS, LINKS and COMMANDS,
7463         srcdir): Likewise.
7464         * doc/autoconf.texi (Limitations of Usual Tools):
7465         Warn against "rm -fr".
7467 2004-01-03  Paul Eggert  <eggert@twinsun.com>
7469         * doc/autoconf.texi (Limitations of Usual Tools): Mention that cc
7470         -c -o might not work.  From a suggestion by Kevin Ryde.
7471         (C Compiler, Generating Sources, Limitations
7472         of Usual Tools, Limitations of Make, Making testsuite Scripts):
7473         Don't put '-o' after non-options, as POSIX doesn't allow this.
7474         Mention that cc's name might be gcc or c89 or whatever.
7476 2004-01-04  Kevin Ryde  <user42@zip.com.au>
7478         * doc/autoconf.texi: Add various further index entries.
7480 2003-12-29  Paul Eggert  <eggert@twinsun.com>
7482         * bin/autoreconf.in (autoreconf_current_directory):
7483         Fix typo: mkdir without umask arg.
7485 2003-12-27  Alexandre Duret-Lutz  <adl@gnu.org>
7487         * doc/autoconf.texi (Limitations of Make) <Automatic rule rewriting>:
7488         Documents OSF1/Tru64 make behavior.  Replace `VPATH = ../src' by
7489         `VPATH = ../pkg/src' in examples to make the OSF1/Tru64 make
7490         explanation clearer.
7492 2003-12-24  Andreas Schwab  <schwab@suse.de>
7494         * doc/autoconf.texi (Default Includes): Fix misspelling of
7495         AC_INCLUDES_DEFAULT.
7497 2003-12-03  Paolo Bonzini  <bonzini@gnu.org>
7499         * configure.ac: Test if sh -n works.
7500         * configure: Regenerate.
7501         * tests/atlocal.in: Store the result here.
7502         * tests/local.at (AT_CHECK_SHELL_SYNTAX): Extracted from
7503         tools.at, looking in atlocal's ac_cv_sh_n_works instead
7504         of explicitly testing.
7505         (AT_CHECK_PERL_SYNTAX): Moved from tools.at.
7506         (AT_CHECK_AUTOCONF): Test for the configure script syntax.
7507         * tests/tools.at (Syntax of the shell scripts): Simplify
7508         using AT_CHECK_SHELL_SYNTAX.
7509         (Syntax of the Perl scripts): Remove definition of
7510         AT_CHECK_PERL_SYNTAX.
7512 2003-12-03  Paolo Bonzini  <bonzini@gnu.org>
7514         * lib/m4sugar/m4sh.m4 (_AS_SHELL_FN_WORK): Redirect
7515         stderr to /dev/null.
7516         * bin/autoconf.in: Regenerate.
7517         * bin/wrapper.in: Regenerate.
7519 2003-11-26  Paolo Bonzini  <bonzini@gnu.org>
7521         * lib/m4sugar/m4sh.m4 (_AS_BOURNE_COMPATIBLE):
7522         Extracted from AS_SHELL_SANITIZE.
7523         (_AS_SHELL_FN_WORK, AS_INIT_WITH_SHELL_FN): New
7524         macros.
7525         (AS_SHELL_SANITIZE): Move reinvocation code from
7526         _AS_LINENO_WORKS, use it to find out if shell
7527         functions work.
7528         (_AS_LINENO_WORKS): Don't find another shell if $LINENO
7529         does not work.
7530         (AS_INIT): Pass parameter down to AS_SHELL_SANITIZE.
7531         (AS_REQUIRE_SHELL_FN): Test that AS_INIT_WITH_SHELL_FN
7532         was called.
7533         * lib/autotest/general.m4: Use AS_INIT_WITH_SHELL_FN.
7534         * bin/autoconf.in: Regenerate.
7535         * tests/wrapper.in: Regenerate.
7536         * tests/tools.at: Test the syntax of tests/autoconf
7537         and tests/testsuite.
7539 2003-11-24  Akim Demaille  <akim@epita.fr>
7541         * config/announce-gen (&print_locations, &print_signatures)
7542         (&sizes): New.
7543         Use them.
7544         No longer rely on Gnus to inline the list of signatures: compute
7545         them on the fly.
7547 2003-11-24  Akim Demaille  <akim@epita.fr>
7549         * doc/autoconf.texi (Particular Programs): AC_PROG_LEX can
7550         override some files.
7551         (Input): AC_CONFIG_AUX_DIR(aux) is a bad idea on DOS.
7552         From Debian Autoconf 2.58.
7554 2003-11-24  Akim Demaille  <akim@epita.fr>
7556         * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): Quote $ac_popdir
7557         uses.
7558         From Debian Autoconf 2.58.
7560 2003-11-24  Paolo Bonzini  <bonzini@gnu.org>
7562         * TODO: Remove already done things.  Update the part about finding
7563         tools for the target.
7565 2003-11-24  Paolo Bonzini  <bonzini@gnu.org>
7567         * lib/autoconf/headers.m4 (AC_USG, AC_MEMORY_H, AC_DIR_HEADER):
7568         Make wording more consistent.
7569         * lib/autoconf/specific.m4 (AC_CYGWIN, AC_EMXOS2, AC_MINGW32):
7570         Explain the transition better.
7571         * lib/autoconf/types.m4 (AC_INT_16_BITS, AC_LONG_64_BITS): Explain
7572         the transition better.
7574 2003-11-24  Paolo Bonzini  <bonzini@gnu.org>
7576         * doc/autoconf.texi (Obsoleting Macros): Don't document the third
7577         parameter of AU_DEFUN.
7578         * lib/autoconf/autoupdate.m4 (AU_DEFINE): Remove.
7579         (AU_DEFUN): Remove the third parameter, it was not used.
7580         Use AC_DEFUN directly, not AU_DEFINE.
7581         * lib/autoconf/status.m4 (AC_LINK_FILES): Move the message into
7582         the expanded body, consistently with other macros such as AC_USG.
7584 2003-11-17  Paul Eggert  <eggert@twinsun.com>
7586         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Put at least 14 bytes
7587         into the initial confdefs.h, to work around a bug in NextStep 3.3
7588         patch 3 reported by Eric Sunshine.
7590 2003-11-15  Kevin Ryde  <user42@zip.com.au>
7592         * doc/autoconf.texi (Using System Type): Revise, showing $host rather
7593         than $target since the latter is not usual, add guidelines on when to
7594         use or not use the system type.
7596 2003-11-12  Derek Price  <derek@ximbiot.com>
7598         * doc/autoconf.texi (Limitations of Usual Tools): Fix what looks like a
7599         typo misrepaired by an auto-spellcheck.
7601 2003-11-12  Akim Demaille  <akim@epita.fr>
7603         * bin/autoreconf.in (&parse_args): Don't call automake with
7604         --force-missing unless it actually supports it.
7605         From Debian #219336.
7607 2003-11-12  Akim Demaille  <akim@epita.fr>
7609         * configure.ac: Bump to 2.59a.
7610         Require 2.59.
7612 2003-11-06  Akim Demaille  <akim@epita.fr>
7614         Version 2.59.
7616 2003-11-05  Alexandre Duret-Lutz  <adl@gnu.org>
7618         * lib/autoconf/status.m4 (_AC_SRCPATHS): Fix use of AS_SET_CATFILE
7619         so that ac_abs_builddir, ac_abs_top_builddir, ac_abs_srcdir,
7620         and ac_abs_top_srcdir are absolute paths.
7621         * lib/m4sugar/m4sh.m4 (AS_SET_CATFILE): Remove misleading comment.
7623 2003-11-05  Akim Demaille  <akim@epita.fr>
7625         * configure.ac: Bump to 2.58a.
7627 2003-11-05  Kevin Ryde  <user42@zip.com.au>
7629         * doc/autoconf.texi (Using Autotest): Avoid @strong{Note: ...}, since
7630         it provokes a warning from makeinfo about looking like a cross
7631         reference in info output.
7633         * doc/autoconf.texi (Function Portability): Add notes on signal
7634         handler return type, as per AC_TYPE_SIGNAL.
7636 2003-11-04  Akim Demaille  <akim@epita.fr>
7638         Version 2.58.
7639         * doc/standards.texi: Update from master.
7641         * tests/mktests.sh (ac_exclude_list): Add AC_FC_FREEFORM.
7643 2003-11-04  Akim Demaille  <akim@epita.fr>
7645         AC_CONFIG_FILE([d1/foo:d2/foo]) triggers error messages when
7646         computing the absolute path to d1 in the source hierarchy: it may
7647         not exist at all.  So don't cd into it.
7648         From Alexandre Duret-Lutz.
7649         http://mail.gnu.org/archive/html/bug-autoconf/2003-10/msg00205.html
7651         * lib/m4sugar/m4sh.m4 (AS_SET_CATFILE): New.
7652         From Paul Eggert, but named after Perl's IO::Spec->catfile.
7653         * doc/autoconf.texi (Programming in M4sh): Document.
7654         * lib/autoconf/status.m4 (_AC_SRCPATHS): Use it.
7656 2003-11-03  Pavel Roskin  <proski@gnu.org>
7658         * doc/autoconf.texi (Generic Structure Checks): Describe
7659         action-if-found and action-if-not-found in AC_CHECK_MEMBERS.
7661 2003-10-31  Akim Demaille  <akim@epita.fr>
7663         * tests/fortran.at (GNU Fortran 77): Don't run FC macros.
7664         (GNU Fortran): New.
7665         * doc/autoconf.texi (Language Choice): Document.
7666         * lib/autoconf/fortran.m4 (AC_FC_SRCEXT, AC_FC_FREEFORM): Assert
7667         the current language is Fortran.
7669 2003-10-31  Akim Demaille  <akim@epita.fr>
7671         * bin/autom4te.in (&freeze): Use a less likely warning separator
7672         than `\n\n', so that `\n\n\n' is valid in warnings.
7673         Reported by Steve Huston.
7675 2003-10-28  Akim Demaille  <akim@epita.fr>
7677         * Makefile.cfg (local_updates, executable-update): Tweak to be
7678         robust to parallel makes.
7679         Suggested by Alexandre Duret-Lutz.
7681 2003-10-27  Akim Demaille  <akim@epita.fr>
7683         * Makefile.cfg (executable-update): New.
7684         (local_updates): Call it.
7686 2003-10-27  Akim Demaille  <akim@epita.fr>
7688         * lib/autoconf/general.m4 (_AC_RUN_IFELSE, _AC_INIT_PREPARE):
7689         Don't remove core.* as it may remove valid user files.
7690         * lib/autoconf/functions.m4 (AC_FUNC_SETVBUF_REVERSED)
7691         (AC_FUNC_UTIME_NULL): Likewise.
7693 2003-10-23  Akim Demaille  <akim@epita.fr>
7695         Version 2.57g.
7696         * config/config.guess, config/config.sub: Upgrade from masters.
7698 2003-10-23  Akim Demaille  <akim@epita.fr>
7700         * lib/autoconf/fortran.m4 (AC_FC_SRCEXT): Functions using
7701         AC_COMPILE_IFELSE that use break skip the clean up.  So do it by
7702         hand...
7704 2003-10-23  Akim Demaille  <akim@epita.fr>
7706         * lib/autoconf/general.m4 (_AC_LINK_IFELSE, _AC_COMPILE_IFELSE):
7707         Don't forget to remove conftest.err.
7709 2003-10-23  Akim Demaille  <akim@epita.fr>
7711         * lib/autoconf/general.m4 (_AC_LIBOBJ): Don't insert twice the
7712         same object file in $LIBOBJS.
7713         Reported by Alexandre Duret-Lutz & Derek Robert Price.
7714         * doc/autoconf.texi (Generic Functions): Adjust.
7716 2003-10-20  Paul Eggert  <eggert@twinsun.com>
7718         * lib/m4sugar/m4sh.m4 (_AS_TR_SH_PREPARE, _AS_TR_CPP_PREPARE):
7719         Use 'eval', so that the resulting configure scripts work even if
7720         the current directory has a weird file name like 'y%s+%pp%;s%@%_%g'.
7722 2003-10-20  Daniel Jacobowitz  <drow@mvista.com>
7724         * lib/autoconf/lang.m4 (AC_LANG_WERROR): New macro.
7725         * lib/autoconf/general.m4 (_AC_COMPILE_IFELSE, _AC_PREPROC_IFELSE)
7726         (_AC_LINK_IFELSE): Check the werror flag.
7727         * doc/autoconf.texi (Generic Compiler Characteristics): Document
7728         AC_LANG_WERROR.
7729         * NEWS: Mention it.
7731 2003-10-20  Daniel Jacobowitz  <drow@mvista.com>
7733         * lib/autoconf/lang.m4 (AC_NO_EXECUTABLES): Override
7734         _AC_COMPILER_EXEEXT to attempt a link.  If linking fails,
7735         override AC_LINK_IFELSE.
7737 2003-10-15  Paul Eggert  <eggert@twinsun.com>
7739         * lib/m4sugar/m4sh.m4 (_AS_UNSET_PREPARE): Work around a bug in
7740         pdksh 5.2.14.  Bug reported by Ralf Corsepius.
7741         * doc/autoconf.texi (Shellology): Mention the Korn shell and pdksh.
7742         Mention /usr/dt/bin/dtksh on Solaris.
7743         (Shell Substitutions): Warn about $((...)).
7744         (Parentheses): New section.
7746 2003-10-15  Kevin Ryde  <user42@zip.com.au>
7748         * doc/autoconf.texi (Function Portability): Add @prindex for exit.
7749         Add putenv and unsetenv.  Add sysconf _SC_PAGE_SIZE.
7751 2003-10-13  Nathanael Nerode  <neroden@gcc.gnu.org>
7753         * lib/autoconf/functions.m4 (AC_FUNC_FORK): Trivial fix for vfork
7754         cross test.
7756 2003-10-11  Steven G. Johnson  <stevenj@alum.mit.edu>
7758         * lib/autoconf/fortran.m4 (_AC_PROG_FC): Use the new official
7759         name for the GNU Fortran 95+ compiler, 'gfortran', not 'g95'.
7761 2003-10-10  Andreas Schwab  <schwab@suse.de>
7763         * bin/autoheader.in: Avoid empty first line in --version and
7764         --help output.
7765         * bin/ifnames.in: Likewise.
7767 2003-10-09  Paul Eggert  <eggert@twinsun.com>
7769         * lib/Autom4te/XFile.pm: Don't assume -j is solo.
7770         Issue a more-informative diagnostic.
7771         Problems reported by Eric Sunshine.
7773 2003-10-08  Steven G. Johnson  <stevenj@alum.mit.edu>
7775         * lib/autoconf/fortran.m4 (_AC_PROG_FC_V_OUTPUT): Omit quoted
7776         -mGLOB_options_string stuff for Intel ifc, which can cause
7777         _AC_FC_LIBRARY_LDFLAGS to fail.  Use (faster) case for
7778         pattern-matching instead of grep.
7780 2003-10-08  Steven G. Johnson  <stevenj@alum.mit.edu>
7782         * doc/autoconf.texi: Document new FC Fortran macros.
7784 2003-10-08  Gary V. Vaughan  <gary@gnu.org>
7786         * lib/autoconf/general.m4 (AC_CONFIG_MACRO_DIR): Stub out a macro
7787         that future autopoint/aclocal/automake/autoreconf will be able
7788         to trace to find where to install local m4 macros.
7789         * doc/autoconf.texi (Input): Document it.
7790         * NEWS: Updated.
7792 2003-10-06  Gary V. Vaughan  <gary@gnu.org>
7794         * lib/autoconf/fortran.m4 (_AC_FC_LIBRARY_LDFLAGS): Add
7795         -lcrtbegin.o to list of ignored flags and fix underquoting of
7796         -lcrt[01].o.
7798 2003-10-04  Steven G. Johnson  <stevenj@ab-initio.mit.edu>
7800         * lib/autoconf/fortran.m4 (_AC_PROG_FC_G): Use language-specific
7801         cache variable instead of $G77 to decide whether to include -O2,
7802         since $G77 is specific to Fortran 77.
7804 2003-10-03  Steven G. Johnson  <stevenj@alum.mit.edu>
7806         * lib/autoconf/fortran.m4 (AC_FC_FREEFORM): Support Absoft "-f
7807         free" flag.  Re-order flags tested into rough order of popularity.
7809 2003-10-03  Steven G. Johnson  <stevenj@alum.mit.edu>
7811         * lib/autoconf/fortran.m4 (AC_PROG_FC): Reverse the order of the
7812         arguments so that it can be used with syntax identical to
7813         AC_PROG_F77, and so that we can more easily decide to
7814         remove/deprecate the DIALECT optional argument in the future if it
7815         proves troublesome.
7816         (AC_FC_FREEFORM): Exit 77 upon failure to fix test suite for
7817         non-freeform-supporting compilers.  Document freeform flags.
7819 2003-10-03  Akim Demaille  <akim@epita.fr>
7821         * configure.ac: Look for emacs, not macs.
7822         Reported by Eric Sunshine.
7824 2003-10-03  Akim Demaille  <akim@epita.fr>
7826         * lib/autom4te.in (Autoreconf-preselections): Trace AC_CONFIG_AUX_DIR.
7827         * bin/autoreconf.in (autoreconf_current_directory): Create the
7828         AUX_DIR if needed, for sake of automake --add-missing etc.
7829         Suggested by Alexandre Duret-Lutz.
7831 2003-10-03  Akim Demaille  <akim@epita.fr>
7833         * configure.ac: Quotation and formatting changes.
7834         (EMACS): Don't set it if it is not recent enough to support
7835         autoconf-mode.el.
7836         From Eric Sunshine.
7838 2003-10-02  Akim Demaille  <akim@epita.fr>
7840         * bin/ifnames.in (&scan_file): Skip C++ comments.
7841         From Jeremy Yallop.
7843 2003-10-01  Pavel Roskin  <proski@gnu.org>
7845         * doc/autoconf.texi (Particular Structure Checks):
7846         Fix misspelling of HAVE_STRUCT_STAT_ST_BLOCKS.
7848 2003-10-01  Akim Demaille  <akim@epita.fr>
7850         Version 2.57f.
7852 2003-09-30  Paul Eggert  <eggert@twinsun.com>
7854         * lib/Autom4te/XFile.pm: Use Errno.
7855         (lock): Ignore ENOLCK errors.  Problem reported Andreas Schwab in
7856         <http://mail.gnu.org/archive/html/bug-autoconf/2003-09/msg00141.html>.
7858 2003-09-30  Akim Demaille  <akim@epita.fr>
7860         * config/announce-gen (&print_news_deltas): Extracted from...
7861         (&print_changelog_deltas): here.
7862         (&news_file): Rename as...
7863         (@news_file): this.
7865 2003-09-30  Nicolas Joly  <njoly@pasteur.fr>
7867         * lib/autoconf/fortran.m4 (_AC_PROG_FC): Remove files which might
7868         have been created when invoking the compiler.
7869         * tests/fortran.at (GNU Fortran 77): Quote $G77.
7871 2003-09-29  Akim Demaille  <akim@epita.fr>
7873         Version 2.57e.
7875         * config/mkinstalldirs: Upgrade.
7877 2003-09-28  Paul Eggert  <eggert@twinsun.com>
7879         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Set DUALCASE=1, for MKS sh.
7880         Problem reported by Lars J. Aas in
7881         <http://mail.gnu.org/archive/html/autoconf/2003-07/msg00042.html>.
7882         (_AS_MKDIR_P_PREPARE): Change "rm -fr ./-p" to the more-conservative
7883         "test -d ./-p && rmdir ./-p".  Suggested by Andreas Schwab in:
7884         http://mail.gnu.org/archive/html/autoconf-patches/2003-09/msg00039.html
7886 2003-09-26  Akim Demaille  <akim@epita.fr>
7888         * lib/autoconf/status.m4 (_AC_OUTPUT_COMMANDS): Make sure the
7889         directory for AC_CONFIG_COMMANDS' first argument exists.
7890         This makes valid the invocation of _AC_SRCPATH that follows.
7891         Reported by Eric Sunshine.
7892         * doc/autoconf.texi (Configuration Commands): Adjust.
7894 2003-09-26  Akim Demaille  <akim@epita.fr>
7896         * bin/autoscan.in (Autom4te::FileUtils): Use it for find_file.
7897         Reported by Ralf Corsepius.
7899 2003-09-26  Akim Demaille  <akim@epita.fr>
7901         * lib/autoconf/general.m4 (AC_HELP_STRING): Don't overquote the
7902         arguments.
7903         Actually, use AU_ALIAS.
7904         From Bruno Haible.
7906 2003-09-26  Paul Eggert  <eggert@twinsun.com>
7908         * lib/m4sugar/m4sh.m4 (_AS_MKDIR_P_PREPARE): If mkdir -p . fails,
7909         rm -fr ./-p to remove junk left behind on NextStep and OpenStep.
7910         Problem reported by Eric Sunshine in:
7911         http://mail.gnu.org/archive/html/autoconf-patches/2002-12/msg00014.html
7913 2003-09-26  Akim Demaille  <akim@epita.fr>
7915         The test suite are sometimes assigning timings incorrectly.
7916         Reported by Henk Krus.
7917         Diagnosed by Nicolas Joly.
7919         * lib/autotest/general.m4 (AT_CLEANUP): Rename AT_help as
7920         AT_help_all.
7921         Instead of making AT_help a sequence of assignments to grow
7922         $at_help_all, just make AT_help_all be the growing contents of
7923         $at_help_all, and make a single assignment in...
7924         (AT_INIT): here.
7925         (at_times_skip): Flip the meaning and rename as...
7926         (at_times_p): this.
7927         (AT_INIT): When summarizing the test that ran, remove
7928         $at_times_file after use, and check it is present before trying to
7929         use it.
7931 2003-09-25  Akim Demaille  <akim@epita.fr>
7933         Version 2.57d.
7935         * bin/Makefile.am (edit): Handle '@configure_input@'.
7936         (autoconf, autoheader, autom4te, autoreconf, autoscan, autoupdate)
7937         (ifnames): chmod -w.
7938         * tests/wrapper.as (AUTOCONF, AUTOM4TE, ): Point to tests/
7939         executables, not bin/ executables!  Otherwise all the magic needed
7940         to find non installed files is turned off.  This caused a failure
7941         of test 40 and 41 that ran aclocal 1.8 which in turn ran autom4te
7942         as found in its environment (sent by tests/autoreconf): pointing
7943         to bin/autom4te that could not find its files.
7944         * tests/mktests.sh: Force the replacement of generated files, for
7945         the sake of "mv" program that are interactive when overwriting a
7946         -w file.
7947         * config/install-sh: Upgrade from CVS Automake.
7949 2003-09-23  Paul Eggert  <eggert@twinsun.com>
7951         * doc/autoconf.texi (Limitations of Builtins): Document test -h
7952         versus test -L issues.
7954 2003-09-23  Daniel Jacobowitz  <drow@mvista.com> and
7955             Paul Eggert  <eggert@twinsun.com>
7957         Trivial change to support GCC's configuration procedure.
7958         * lib/autoconf/c.m4 (AC_PROG_CPP_WERROR): New macro.
7959         * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_MONGREL): Don't warn
7960         about inconsistency if the preprocessor is set to give errors for
7961         any warning.
7962         * doc/autoconf.texi (C Compiler Characteristics): Document this.
7964 2003-09-13  Alexandre Duret-Lutz  <adl@gnu.org>
7966         * Makefile.am (autom4te-update, autom4te_files): Fetch Struct.pm
7967         and XFile.pm from Automake.
7968         * lib/Autom4te/XFile.pm: Update from Automake.
7970 2003-09-12  Akim Demaille  <akim@epita.fr>
7972         Version 2.57c.
7974 2003-09-12  Akim Demaille  <akim@epita.fr>
7976         * config/config.guess, config/config.sub, config/missing,
7977         * lib/Autom4te/Channels.pm, lib/Autom4te/Configure_ac.pm: Update
7978         from masters.
7980 2003-09-12  Akim Demaille  <akim@epita.fr>
7982         * doc/autoconf.texi (Header Portability): Promote linux/types.h,
7983         not asm/types.h.
7985 2003-09-11  Akim Demaille  <akim@epita.fr>
7987         * doc/autoconf.texi (Header Portability): linux/random.h.
7988         From Peter Hendrickson.
7990 2003-09-10  Akim Demaille  <akim@epita.fr>
7992         * tests/mktests.sh (au_exclude_egrep): Make it harder to be
7993         willing to edit the output files.
7995 2003-09-10  Akim Demaille  <akim@epita.fr>
7997         * tests/fortran.at (GNU Fortran 77): Also exercise AC_FC_SRCEXT
7998         and AC_FC_FREEFORM.
7999         * tests/mktests.sh: Skip AC_FC_SRCEXT.
8000         * lib/autoconf/fortran.m4 (AC_FC_SRCEXT, AC_FC_FREEFORM): Likewise.
8002 2003-09-09  Akim Demaille  <akim@epita.fr>
8004         * lib/Autom4te/FileUtils.pm (&update_file): s/cannot not/cannot/g.
8005         Reported by Gary Vaughan.
8006         * bin/autom4te.in (handle_m4): Likewise.
8008 2003-09-09  Akim Demaille  <akim@epita.fr>
8010         * lib/Autom4te/FileUtils.pm (&update_file): Be sure not to leave
8011         trailing files.
8013 2003-09-07  Paul Eggert  <eggert@twinsun.com>
8015         * lib/autoconf/specific.m4 (AC_SYS_RESTARTABLE_SYSCALLS):
8016         Improve the accuracy of the wording about obsolescence.
8017         From a suggestion by Ian Lance Taylor in
8018         <http://mail.gnu.org/archive/html/autoconf/2003-09/msg00044.html>.
8020 2003-09-05  Paul Eggert  <eggert@twinsun.com>
8022         * lib/autoconf/fortran.m4 (AC_FC_FREEFORM): Try -ffree-form too,
8023         for the benefit of g77 3.2.  Fix suggested by Steven G. Johnson.
8025 2003-09-04  Akim Demaille  <akim@epita.fr>
8027         * tests/mktests.sh (ac_exclude_list): Fix the filtering of
8028         AC_FUNC_WAIT3.
8030 2003-09-04  Akim Demaille  <akim@epita.fr>
8032         * bin/autom4te.in: Use &fatal where more appropriate than &error.
8033         (freeze): When exiting, use $exit_code.
8034         * lib/autoconf/fortran.m4: Comment changes.
8036 2003-09-04  Akim Demaille  <akim@epita.fr>
8038         * tests/mktests.sh (ac_exclude_list): Add AC_FC_FUNC.
8040 2003-09-02  Steven G. Johnson  <stevenj@alum.mit.edu>
8042         Add support for newer Fortran dialects.  The F77 interface is
8043         unchanged, and continues to support Fortran 77.  New FC macros
8044         correspond to all the old F77 macros, with output variables FC,
8045         FCFLAGS, and FCLIBS.  AC_PROG_FC defaults to picking the newest
8046         available dialect, but older dialects can be specified.  There are
8047         new macros AC_FC_SRCEXT to set the source extension, and
8048         AC_FC_FREEFORM to accept free-form source files.
8050         * lib/autoconf/c.m4 (_AC_LANG_PREFIX(C), _AC_LANG_PREFIX(C++)):
8051         New macros.
8052         (AC_LANG_PROGRAM(C)): Invoke _AC_LANG_PROGRAM_C_FC_HOOKS if defined.
8053         * lib/autoconf/fortran.m4 (AC_LANG(Fortran), _AC_FORTRAN_ASSERT,
8054         _AC_LANG_ABBREV(Fortran), _AC_LANG_PREFIX(Fortran 77),
8055         _AC_LANG_PREFIX(Fortran), _AC_FC, AC_LANG_SOURCE(Fortran),
8056         AC_LANG_PROGRAM(Fortran), AC_LANG_CALL(Fortran),
8057         AC_LANG_PREPROC(Fortran), AC_LANG_COMPILER(Fortran),
8058         _AC_FC_DIALECT_YEAR, _AC_F95_FC, _AC_F90_FC, _AC_F77_FC,
8059         _AC_PROG_FC, AC_PROG_FC, _AC_PROG_FC_G, _AC_PROG_FC_C_O,
8060         AC_PROG_FC_C_O, _AC_PROG_FC_V_OUTPUT, _AC_PROG_FC_V,
8061         _AC_FC_LIBRARY_LDFLAGS, AC_FC_LIBRARY_LDFLAGS, _AC_FC_DUMMY_MAIN,
8062         AC_FC_DUMMY_MAIN, _AC_FC_MAIN, AC_FC_MAIN, __AC_FC_NAME_MANGLING,
8063         _AC_FC_WRAPPERS, AC_FC_WRAPPERS, _AC_FC_FUNC, AC_FC_FUNC,
8064         AC_FC_SRCEXT, AC_FC_FREEFORM):
8065         New macros.
8066         (AC_PROG_F77, AC_PROG_F77_C_O, AC_F77_LIBRARY_LDFLAGS,
8067         AC_F77_DUMMY_MAIN, AC_F77_MAIN, _AC_F77_NAME_MANGLING,
8068         AC_F77_NAME_MANGLING, AC_F77_WRAPPERS, AC_F77_FUNC):
8069         Rewrite in terms of the above.
8070         (_AC_PROG_F77_G, _AC_PROG_F77_V_OUTPUT, _AC_PROG_F77_V): Remove.
8071         * lib/autoconf/lang.m4 (_AC_LANG_PREFIX): New macro.
8072         * tests/acfortran.at: Test AC_FC_FREEFORM, AC_FC_FUNC,
8073         AC_FC_MAIN, AC_FC_SRCEXT, AC_FC_WRAPPERS, AC_PROG_FC_C_O.
8075 2003-09-02  Paul Eggert  <eggert@twinsun.com>
8077         * doc/autoconf.texi (Limitations of Usual Tools, Limitations of Make):
8078         Document problems with timestamp resolution that 'make', 'cp -p', and
8079         'touch -r' have.
8081 2003-08-27  Akim Demaille  <akim@epita.fr>
8083         * tests/m4sugar.at (cross_warning): Make sure to enable the
8084         output, so that we can track spurious m4sugar output.
8085         * tests/local.at: Require 2.57.
8086         (AT_CHECK_M4SUGAR, AT_CHECK_M4SH): Don't m4_default the arguments that
8087         are defaulted by AT_CHECK anyway.
8088         Use AT_CHECK_AUTOM4TE.
8089         * lib/m4sugar/m4sugar.m4: There should be no output at all: add a
8090         missing dnl.
8092 2003-08-27  Akim Demaille  <akim@epita.fr>
8094         * bin/autoheader.in: Issue the "Using auxiliary..." message only
8095         when -Wobsolete is set.
8096         Set it on by default.
8097         Suggested by Klee Dienes.
8099 2003-08-27  Akim Demaille  <akim@epita.fr>
8101         * doc/autoconf.texi (AC_FUNC_FSEEKO, AC_SYS_LARGEFILE): More
8102         documentation.
8103         From Guido Draheim.
8105 2003-08-26  Akim Demaille  <akim@epita.fr>
8107         * doc/autoconf.texi (Output): Make clear that one can run code
8108         after AC_OUTPUT.
8110 2003-08-25  Akim Demaille  <akim@epita.fr>
8112         * config/announce-gen, GNUmakefile, Makefile.maint: Update from
8113         CVS Bison.
8115 2003-08-25  Alexandre Duret-Lutz  <adl@gnu.org>
8117         * bin/autoreconf.in (parse_args): Do not pass --no-force to
8118         Automake versions prior to 1.8.
8120 2003-08-25  Akim Demaille  <akim@epita.fr>
8122         * doc/autoconf.texi (Header Portability): netinet/if_ether.h.
8123         From Ville Karaila.
8125 2003-08-24  Akim Demaille  <akim@epita.fr>
8127         * configure.ac: Bump to 2.57c.
8129 2003-08-22  Akim Demaille  <akim@epita.fr>
8131         Version 2.57b.
8133         * Makefile.cfg (local-checks-to-skip): New.
8134         * Makefile.maint (local-check): Rename as...
8135         (local-checks-available): this.
8136         (local-check): New.
8138         * Makefile.am (EXTRA_DIST): Add Makefile.cfg.
8139         * configure.ac: Require Automake 1.7.6.
8141 2003-08-22  Akim Demaille  <akim@epita.fr>
8143         Output stack traces in warnings.
8145         * lib/m4sugar/m4sugar.m4 (_m4_warn): New.
8146         Replace the former...
8147         (m4_warn): Pass the call stack to _m4_warn.
8148         * bin/autom4te.in: Adjust to output the call stack.
8149         * tests/m4sugar.at (m4@&t@_warn): Adjust.
8151 2003-08-22  Akim Demaille  <akim@epita.fr>
8153         * lib/Autom4te/Request.pm, lib/Autom4te/C4che.pm: New.
8154         * bin/autom4te.in: Adjust.
8156 2003-08-21  Akim Demaille  <akim@epita.fr>
8158         * lib/Autom4te/General.pm (&file_name_is_absolute): Remove.
8159         (&verbose): Remove.
8160         (&getopt): Adjust the note and verb channels, depending upon
8161         --verbose.
8162         * bin/autoheader.in, bin/autom4te.in, bin/autoscan.in,
8163         * bin/autoupdate.in: Adjust.
8164         Use &verb, not &verbose.
8166 2003-08-21  Akim Demaille  <akim@epita.fr>
8168         * bin/autoheader.in (&parse_args): Use &parse_warnings and
8169         &parse_WARNINGS.
8170         ($help): Use Autom4te::ChannelDefs::usage.
8171         * bin/autoscan.in: Use Autom4te::ChannelDefs.
8172         * lib/Autom4te/General.pm: Don't export error: you don't own it.
8174 2003-08-21  Akim Demaille  <akim@epita.fr>
8176         First stab at preserving warnings between calls to autom4te,
8177         including when the cache is used.
8179         There are still several issues: (i) there are too many runs of m4
8180         (one for include, one for warnings, and some more), (ii) warnings
8181         spreading on several lines are not handled gracefully, (iii) the
8182         code meant to have the call stack display for errors does not work
8183         (its handling should move from m4 to autom4te).
8185         * bin/autom4te.in Autom4te::Channels, Autom4te::ChannelDefs):
8186         Use them.
8187         (@preselect): Add m4_warn.
8188         ($exit_status): Remove, use $exit_code.
8189         ($help): Use Autom4te::ChannelDefs::usage.
8190         (&handle_m4): No longer define the m4_warnings.
8191         At each run, extract and report the warnings.
8192         Always cache the result, including if the exit status is on
8193         failure, since if nothing changes, we should result in the same
8194         failure, hence we can use the cache.
8195         * lib/m4sugar/m4sugar.m4 (m4_warning_ifelse, _m4_warning_ifelse)
8196         (_m4_warning_error_ifelse, __m4_warning_error_ifelse, _m4_warn):
8197         Remove.
8198         (m4_warn): Redefine as a do-nothing: it is its invocation that
8199         matters, as warnings are now reported via traces.
8200         * lib/autoconf/general.m4 (AC_DIAGNOSE): Don't make it a copy of
8201         the contents of m4_warn: make it _call_ m4_warn, so that tracing
8202         the latter reveals calls to the former.
8204         Adjust the tests.
8206         * tests/m4sugar.at (m4@&t@_warn): Use existing warning categories.
8208 2003-08-21  Akim Demaille  <akim@epita.fr>
8210         * bin/autoreconf.pm (Autom4te::Channels, Autom4te::ChannelDefs):
8211         Use them.
8213 2003-08-21  Akim Demaille  <akim@epita.fr>
8215         * lib/Autom4te/FileUtils.pm (&find_file): Walk the @include in
8216         forward order.
8217         * lib/Autom4te/ChannelDefs.pm: Doc typos.
8218         (&parse_warnings): Accept a list of warning requests.
8219         (&usage): Return a string, not a side effect.
8220         (cross): New warning category.
8222 2003-08-21  Akim Demaille  <akim@epita.fr>
8224         * lib/Autom4te/Configure_ac.pm (&find_configure_ac)
8225         (&require_configure_ac): Accept an optional directory argument.
8226         ($configure_ac): Remove.
8227         * lib/Autom4te/General.pm (&find_configure_ac, &canonfile)
8228         (&catfile): Remove.
8229         * bin/autoheader.in, bin/autoreconf.in, bin/autoupdate.in,
8230         * bin/autoscan.in: Adjust.
8232 2003-08-20  Akim Demaille  <akim@epita.fr>
8234         * bin/autoheader.in: Remove duplicate 'use Autom4te::FileUtils'.
8235         Reported by Alexandre Duret-Lutz.
8237 2003-08-20  Akim Demaille  <akim@epita.fr>
8239         * bin/autoupdate.in, bin/autoheader.in, bin/autoreconf.in,
8240         * bin/autom4te: Adjust.
8241         In particular, be Autoconf tools are really silent when properly
8242         working, bind the verbosity of the 'note' channel to $verbose.
8243         * lib/Autom4te/General.pm (&find_file, &mtime, &update_file)
8244         (&xsystem, &contents): Remove, since they are exported by...
8245         * lib/Autom4te/FileUtils.pm: this.
8246         More perldoc.
8247         * lib/Autom4te/General.pm (&up_to_date_p): Move to...
8248         * lib/Autom4te/FileUtils.pm: here.
8250 2003-08-20  Akim Demaille  <akim@epita.fr>
8252         * lib/Autom4te/Channels.pm, lib/Autom4te/ChannelDefs.pm
8253         * lib/Autom4te/Configure_ac.pm, lib/Autom4te/FileUtils.pm: New,
8254         from CVS Automake.
8256 2003-08-20  Akim Demaille  <akim@epita.fr>
8258         * Makefile.am (automake_cvsweb, automake_cvsargs, autom4te_files)
8259         (autom4te-update): New.
8260         * Makefile.cfg (update): Bind autom4te-update.
8262 2003-08-19  Derek Price  <derek@ximbiot.com>
8264         * lib/autotest/general.m4: Comment various HELP_* diversions.
8265         (PARSE_ARGS_BEGIN): New section for option parsing related
8266         initialization.
8267         (AT_ARG_OPTION,AT_ARG_OPTION_ARG,_AT_ARG_OPTION): New macros to define
8268         package specific options and associated help.
8270 2003-08-19  Akim Demaille  <akim@epita.fr>
8272         * config/announce-gen, Makefile.cfg: New.
8273         * Makefile.am: Adjust.
8274         * GNUmakefile, Makefile.maint: Update from CVS Coreutils.
8276 2003-08-19  Alexandre Duret-Lutz  <adl@gnu.org>
8278         * lib/autom4te.in (Automake-preselections): Preselect
8279         AC_CONFIG_LIBOBJ_DIR, AC_CONFIG_LINKS, m4_include,
8280         and m4_sinclude.
8282 2003-08-19  Alexandre Duret-Lutz  <adl@gnu.org>
8284         * lib/autom4te.in (Autoconf): Move all args except aclocal.m4? into ...
8285         (Autoconf-without-aclocal-m4): ... this new language.
8286         * doc/autoconf.texi (autom4te Invocation): Mention
8287         Autoconf-without-aclocal-m4.
8289 2003-08-18  Derek Price  <derek@ximbiot.com>
8291         * doc/autoconf.texi (Writing testsuite.at): Document RUN-IF-FAIL &
8292         RUN-IF-PASS optional arguments.
8294 2003-08-18  Derek Price  <derek@ximbiot.com>
8296         * doc/autoconf.texi (Programming in M4sh): Add doc for AS_IF.
8298 2003-08-16  Derek Price  <derek@ximbiot.com>
8300         * doc/autoconf.texi (Writing testsuite.at): Document defaults for
8301         STDOUT & STDERR arguments.
8303 2003-08-14  Derek Price  <derek@ximbiot.com>
8305         * lib/autotestgeneral.m4 (AT_INIT): Reformat test summary line to print
8306         DESCRIPTION rather than FILE and LINE.  Shorten result to fit in new,
8307         shorter column three.  Add DESCRIPTION to log file content.
8309 2003-08-13  Derek Price  <derek@ximbiot.com>
8311         * lib/autotest/general.m4 (AT_INIT): Correct typo in final status
8312         output.
8314 2003-08-12  Derek Price  <derek@ximbiot.com>
8316         * lib/autotest/general.m4 (AT_CHECK): Use new _AT_CHECK API.
8317         (AT_CHECK_NOESCAPE): Move core functionality to...
8318         (_AT_CHECK): ...this new macro.
8320 2003-08-07  Derek Price  <derek@ximbiot.com>
8322         * lib/autotest/general.m4 (AT_CHECK): Move core functionality...
8323         (AT_CHECK_NOESCAPE): ...to this new macro.
8325 2003-07-31  Paul Eggert  <eggert@twinsun.com>
8327         * lib/m4sugar/m4sh.m4 (_AS_UNSET_PREPARE): Work around a bug
8328         in Bash 2.01.  Problem reported by Brian Gough in
8329         <http://mail.gnu.org/archive/html/bug-autoconf/2003-07/msg00106.html>.
8331 2003-07-25  John W. Eaton  <jwe@bevo.che.wisc.edu>
8333         * lib/autoconf/fortran.m4 (AC_F77_LIBRARY_LDFLAGS): Also ignore
8334         -lcrt1.o, for OS X.  (trivial change)
8336 2003-07-07  Paul Eggert  <eggert@twinsun.com>
8338         * lib/autoconf/c.m4 (AC_C_INLINE): Wrap the '#define inline ...'
8339         inside '#ifndef __cplusplus'.  Problem reported by
8340         Bob Friesenhahn.
8342 2003-07-06  Bill Clarke  <llib@computer.org>
8344         * lib/autoconf/functions.m4 (AC_FUNC_MMAP): Cast pointer to
8345         'long', not 'int', for benefit of Sun's recent C++ compilers
8346         (trivial change).  See:
8347         http://mail.gnu.org/archive/html/autoconf-patches/2003-07/msg00007.html
8348         (This really should be 'intptr_t', not 'long', but that would
8349         take more work.)
8351 2003-06-25  Akim Demaille  <akim@epita.fr>
8353         * lib/Makefile.am (autom4te.cfg): Make it read only.
8354         Depend on Makefile since it contains substitutions.
8355         From Paolo Bonzini.
8356         * lib/autom4te.in (args): Add local.at? for Autotest args.
8357         This change was made on autom4te.cfg which is generated.
8358         Reported by Raja R. Harinath.
8360 2003-06-25  Akim Demaille  <akim@epita.fr>
8362         * doc/autoconf.texi (Header Portability): sys/mount.h.
8363         From Gareth McCaughan.
8365 2003-06-23  Akim Demaille  <akim@epita.fr>
8367         * lib/autotest/general.m4 (AT_INIT): Report a single config.log,
8368         not all of them.  This fixes 1. the fact that when testing
8369         Autoconf there are many many config.log, 2. the incorrect use of
8370         top_srcdir to find config.log.
8371         Don't mix the detailed output of failed test with the summary of
8372         failures.  Rather, append detailed log afterwards.
8374 2003-06-23  Akim Demaille  <akim@epita.fr>
8376         * tests/local.at (AT_CHECK_CONFIGURE): Adjust to the verbose being
8377         always run: output config.log on $at_group_log.
8379 2003-06-23  Akim Demaille  <akim@epita.fr>
8381         * tests/torture.at (#define header templates): Don't use quotes in
8382         C++ comments as it puzzles Emacs' sh font-lock-mode.
8384 2003-06-23  Akim Demaille  <akim@epita.fr>
8386         * tests/mktests.sh (au_exclude_egrep): Fix output copyright notice.
8387         * lib/autom4te.cfg (args): Add local.at? for Autotest args.
8388         * tests/atspecific.m4: Rename as...
8389         * tests/local.at: This.
8390         * tests/suite.at: Move the globals into...
8391         * tests/local.at: here.
8392         * tests/Makefile.am: Adjust.
8393         * doc/autoconf.texi (testsuite Scripts): Adjust.
8395 2003-06-21  Kevin Ryde  <user42@zip.com.au>
8397         * lib/autoconf/c.m4 (_AC_PROG_CC_STDC): Extend test program to get an
8398         error from OSF 4.0 Compaq cc in its default almost-ANSI mode, thereby
8399         ensuring we add -std1 for full-ANSI.
8401         * doc/autoconf.texi (hdrindex): New macro.
8402         Add index entries for portability of various standard header files.
8404 2003-06-20  Akim Demaille  <akim@epita.fr>
8406         * configure.ac: Bump to 2.57b.
8408 2003-06-20  Akim Demaille  <akim@epita.fr>
8410         Version 2.57a.
8412 2003-06-20  Akim Demaille  <akim@epita.fr>
8414         * bin/autom4te.in: Don't rely on $HOME being defined.
8415         Reported by Marc Espie as PR/233.
8417 2003-06-20  Akim Demaille  <akim@epita.fr>
8419         * lib/autotest/general.m4: Use at_times_file only if used.
8420         From Nicolas Joly.
8422 2003-06-20  Akim Demaille  <akim@epita.fr>
8424         * config/config.guess, config/config.sub, config/elisp-comp,
8425         * config/install-sh, config/mkinstalldirs, doc/standards.texi:
8426         Update from masters.
8428 2003-06-11  Paolo Bonzini  <bonzini@gnu.org>
8430         * doc/autoconf.texi (Writing testsuite.at): Document AT_XFAIL_IF
8431         * lib/autotest/general.m4 (AT_XFAIL_IF): New macro.
8432         (TEST_SCRIPT): New diversion.
8433         (AT_SETUP): Divert output to TEST_SCRIPT and move some code...
8434         (AT_CLEANUP): ...to here.  Undivert TEST_SCRIPT.
8435         (AT_INIT): Support for expected failures.
8437 2003-06-02  Akim Demaille  <akim@epita.fr>
8439         * bin/autom4te.in, bin/autoscan.in, bin/autoheader.in: White space
8440         changes.
8441         * lib/Autom4te/General.pm (&backname): Remove, no longer used by
8442         Autoconf nor Automake.
8443         (&contents): New, from Automake.
8444         PODify.
8446 2003-05-28  Paul Eggert  <eggert@twinsun.com>
8448         * NEWS, doc/autoconf.texi (Particular Functions),
8449         lib/autoconf/functions.m4 (AC_FUNC_MKTIME): Check that mktime
8450         is the inverse of localtime.
8452 2003-05-25  Alexandre Duret-Lutz  <adl@gnu.org>
8454         * lib/Autom4te/General.pm (END): Print diagnostics to STDERR.
8455         (handle_exec_errors): New function.  Work around $! being
8456         altered by WEXITSTATUS.
8457         (xqx, xsystem): Use handle_exec_errors.
8459 2003-05-23  Alexandre Duret-Lutz  <adl@gnu.org>
8461         * lib/Autom4te/General.pm (END): Rewrite exit code processing.
8462         Do not call `_exit()', simply modify `$?'.
8463         (xsystem): Reset $! before running system, and check it afterward.
8464         * tests/tools.at (autoupdating AC_PREREQ): Expect exit status
8465         63 for version mismatches.
8467 2003-05-23  Akim Demaille  <akim@epita.fr>
8469         * lib/autoconf/status.m4: Prefer "TAB-SP" to "SP-TAB", because of
8470         Emacs' dangerous whitespace.el behavior (smashing "useless" spaces in
8471         the middle of a line).
8472         * lib/m4sugar/m4sugar.m4: Likewise.
8473         Remove useless spaces in comments.
8475 2003-05-23  Akim Demaille  <akim@epita.fr>
8477         * lib/m4sugar/m4sugar.m4 (m4_version_prereq): Failure causes an
8478         exit 63, so that we (or Automake's "missing") can tell the
8479         difference with a plain failure.
8480         * doc/autoconf.texi (Notices): Adjust.
8482 2003-05-23  Akim Demaille  <akim@epita.fr>
8484         * Makefile.am, bin/Makefile.am, config/Makefile.am,
8485         * doc/Makefile.am, lib/autoconf/Makefile.am, tests/Makefile.am:
8486         White spaces cleanup.
8488 2003-05-22  Jim Meyering  <jim@meyering.net>
8489             Paul Eggert  <eggert@twinsun.com>
8491         * lib/autoconf/c.m4 (_AC_PROG_CXX_EXIT_DECLARATION):
8492         Remove `#include <stdlib.h>' from the list; we should never
8493         make confdefs.h include <stdlib.h> or <cstdlib>, because the
8494         resulting namespace pollution would cause other tests to fail.
8495         Configure scripts run with some older versions of g++ and HP's
8496         aCC would fail due to such an #include.  Problems reported by
8497         Matthew Mueller in <http://bugs.debian.org/120704> and by
8498         Keith Bostic in
8499         <http://mail.gnu.org/archive/html/autoconf/2003-05/msg00063.html>.
8500         In the test, use the test declaration before including <stdlib.h>,
8501         as that's closer to how it'll be used.
8503 2003-05-23  Akim Demaille  <akim@epita.fr>
8505         * doc/autoconf.texi (Header Portability): ucred.h.
8506         From Ian Redfern.
8508 2003-05-22  Paolo Bonzini  <bonzini@gnu.org>
8510         Overhaul Autotest's logging: generate separate log files
8511         in testsuite.dir/NNN/testsuite.log, and append them to
8512         testsuite.log instead of re-running the test verbosely.
8514         * lib/autotest/general.m4 (AT_INIT): Use a single redirected
8515         file descriptor, write 0 to at_status_file instead of setting
8516         at_status=0, initialize some new variables (at_status_file,
8517         at_group_log, at_suite_log, at_tee_pipe).  Remove the cruft
8518         to rerun the tests, instead append the at_group_log to the
8519         at_suite_log when a test fails.
8520         (AT_SETUP): pipe the test case's output into at_tee_pipe,
8521         with the AS_MESSAGE_LOG_FD redirected to stdout.
8522         (AT_CLEANUP): save the output status in $at_status_file
8523         and restore it, redirect the AS_MESSAGE_LOG_FD back to
8524         its original place.
8525         (AT_CHECK): since tests are run with a redirected stdout,
8526         and used to be re-run in verbose mode, turn some $at_verbose
8527         into echo, and don't redirect the output of testing stdout
8528         and stderr.
8530         * lib/autotest/autoconf.texi (testsuite Scripts): Update
8531         the name of the debugging directory and information about
8532         its contents.
8534 2003-05-22  Paolo Bonzini  <bonzini@gnu.org>
8536         * lib/m4sugar/m4sh.m4 (AS_REQUIRE): Actually use the 2nd
8537         parameter.
8539 2003-05-22  Akim Demaille  <akim@epita.fr>
8541         * lib/autoconf/autotest.m4, lib/autoconf/autoupdate.m4
8542         * lib/autoconf/fortran.m4 lib/autoconf/general.m4
8543         * lib/autoconf/headers.m4 lib/autoconf/oldnames.m4
8544         * lib/autoconf/status.m4: Fix and adjust copyright notices.
8546 2003-05-22  Akim Demaille  <akim@epita.fr>
8548         * aclocal.m4, bin/autoconf.as, lib/autoconf/autoconf.m4,
8549         * lib/autoconf/autoheader.m4, lib/autoconf/autoupdate.m4,
8550         * lib/autoconf/c.m4, lib/autoconf/fortran.m4,
8551         * lib/autoconf/general.m4, lib/autoconf/headers.m4,
8552         * lib/autoconf/lang.m4, lib/autoconf/libs.m4,
8553         * lib/autoconf/programs.m4, lib/autoconf/specific.m4,
8554         * lib/autoconf/status.m4, lib/autoconf/types.m4,
8555         * lib/autotest/general.m4, lib/m4sugar/m4sugar.m4,
8556         * tests/atspecific.m4, tests/base.at, tests/compile.at,
8557         * tests/foreign.at, tests/m4sh.at, tests/semantics.at,
8558         * tests/tools.at, tests/torture.at:
8559         Whitespace clean up.
8560         Suggested by Jim Meyering.
8562 2003-05-22  Akim Demaille  <akim@epita.fr>
8564         * lib/autoconf/functions.m4 (AC_FUNC_GETLOADAVG): Restore smashed
8565         ' \t' as '\t ' so that Emacs' whitespace.el keep it.
8566         Reported by Jim Meyering.
8568 2003-05-22  Akim Demaille  <akim@epita.fr>
8570         * doc/autoconf.texi: Replace AC_HELP_STRING AS_HELP_STRING.
8571         Add AC_HELP_STRING  to the obsolete macros section.
8572         Typos.
8573         Use '@.' for sentences that ended in a capital letter.
8574         From Art Haas.
8576 2003-05-22  Akim Demaille  <akim@epita.fr>
8578         * config/config.guess, config/config.sub, config/elisp-comp,
8579         * config/install-sh, config/mdate-sh, config/mkinstalldirs,
8580         * config/texinfo.tex, doc/standards.texi: Update from masters.
8582 2003-05-21  Paolo Bonzini  <bonzini@gnu.org>
8584         * lib/m4sugar/m4sh.m4 (AS_VAR_SET): Escape the RHS before passing
8585         it to eval.
8587 2003-05-21  Akim Demaille  <akim@epita.fr>
8589         * bin/autoupdate.in ($m4): Fix quotation.
8590         Reported by Martin Mokrejs.
8592 2003-05-19  Paul Eggert  <eggert@twinsun.com>
8594         * ChangeLog, ChangeLog.2, THANKS, lib/m4sugar/m4sugar.m4:
8595         Remove non-ASCII characters.
8597 2003-05-18  Paolo Bonzini  <bonzini@gnu.org>
8599         * tests/semantics.at (AC_SEARCH_LIBS): New test.
8600         * tests/semantics.at (AC_CHECK_HEADERS_OLD,
8601         AC_CHECK_HEADERS_NEW): New tests.
8603 2003-05-17  Akim Demaille  <akim@epita.fr>
8605         * lib/autoconf/functions.m4: Use the default includes so that
8606         memcmp be declared before being tested.
8607         Reported by Sander Niemeijer.
8608         (AC_FUNC_ERROR_AT_LINE, AC_FUNC_GETGROUPS, AC_FUNC_STRNLEN): Likewise.
8609         * doc/autoconf.texi (Default Includes): Document
8610         AC_INCLUDES_DEFAULT.
8612 2003-05-17  Akim Demaille  <akim@epita.fr>
8614         * lib/autoconf/specific.m4: Include signal.h and unistd.h.
8615         * doc/autoconf.texi (Obsolete Macros): Adjust.
8616         Reported by Werner LEMBERG and Debian Bug 190886.
8618 2003-05-16  Akim Demaille  <akim@epita.fr>
8620         * lib/m4sugar/m4sh.m4 (_AS_UNSET_PREPARE): s/FOO/as_foo/ to avoid
8621         user name space clashes.
8622         Reported by Bruno Haible.
8624 2003-05-16  Akim Demaille  <akim@epita.fr>
8626         * bin/autoheader.in, bin/autom4te.in, bin/autoreconf.in,
8627         * bin/autoscan.in, bin/autoupdate.in, bin/ifnames.in (BEGIN): Make
8628         them uniform, and more robust to Perl special characters.
8629         Reported by Martin Mokrejs.
8631 2003-05-14  Akim Demaille  <akim@epita.fr>
8633         * tests/foreign.at (Libtool): Skip all Libtools pre 1.4.
8635 2003-05-14  Akim Demaille  <akim@epita.fr>
8637         * doc/autoconf.texi (Header Portability): X11/extensions/scrnsaver.h,
8638         linux/irda.h.
8640 2003-05-12  Akim Demaille  <akim@epita.fr>
8642         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Improve the
8643         message.
8644         From Matthias Andree.
8646 2003-05-07  Alexandre Duret-Lutz  <adl@gnu.org>
8648         * lib/Autom4te/XFile.pm (lock, truncate): Do not pass @_ to flock
8649         and truncate.
8651 2003-05-06  Akim Demaille  <akim@epita.fr>
8653         Don't try to be smart with aclocal 1.8+ because (i) aclocal no
8654         longer updates aclocal.m4 if useless, (ii) if a file m4_included
8655         by aclocal.m4 is changed it might require the importing of another
8656         m4 extension file, i.e., aclocal must be run.
8658         * bin/autoreconf.in (&run_aclocal, $aclocal_supports_force): New.
8659         (&parse_args): Use --force with aclocal if required and supported.
8660         (&autoreconf_current_directory): Use &run_aclocal.
8662 2003-05-06  Akim Demaille  <akim@epita.fr>
8664         Lock autom4te's cache.
8666         * lib/Autom4te/XFile.pm ($me, &name, &lock, &truncate, &seek): New.
8667         * bin/autom4te.in (&Request::save, &Request::load): Use an IO::File
8668         argument instead of a file name, so that the request file remains
8669         open during the whole autom4te run.
8670         ($icache_file): New.
8671         (&freeze): Lock the $icache_file.
8673 2003-04-29  Derek Price  <derek@ximbiot.com>
8675         * lib/autotest/general.m4 (AT_KEYWORDS): Don't use a comma as the
8676         seperator with m4_append_uniq().  It doesn't work.
8677         (AT_CLEANUP): Add `;' to end of at_help_all.
8678         (AT_INIT): Allow --keywords to be specified more than once.  When
8679         grepping $at_help_all for keywords, use the field and keyword
8680         seperators to ensure a complete keyword match.  Alter at_prev handling
8681         to support the new --keywords behavior.
8683 2003-04-27  Karl Berry  <karl@freefriends.org>
8685         * doc/autoconf.texi: Make the dir entries in the autoconf manual
8686         align better with others.  I also made some of the individual
8687         entries on one line, for brevity and to make it easier for me to
8688         sort my dir-example file in the Texinfo distribution :).
8690 2003-04-12  Jim Meyering  <jim@meyering.net>
8692         * NEWS: Mention the new macro.
8693         * lib/autoconf/c.m4 (AC_C_RESTRICT): New macro.
8694         * doc/autoconf.texi (C Compiler): Describe AC_C_RESTRICT.
8695         * tests/c.at: Test AC_C_RESTRICT.
8696         * tests/mktests.sh (ac_exclude_list): Add exclusion for AC_C_RESTRICT.
8698 2003-04-08  Akim Demaille  <akim@epita.fr>
8700         * bin/ifnames.in: Skip C++ comments.
8701         From Jeremy Yallop.
8703 2003-04-08  Akim Demaille  <akim@epita.fr>
8705         * GNUmakefile (SHELL): Don't assume sh is in /bin/.
8706         From Ilya Zakharevich.
8708 2003-04-08  Akim Demaille  <akim@epita.fr>
8710         * doc/autoconf.texi (Particular Headers): Some about sys/socket.h,
8711         net/if.h, stdlib.h.
8713 2003-04-01  Derek Price  <derek@ximbiot.com>
8715         * lib/autoconf/programs.m4 (AC_PROG_INSTALL): Correct syntax error
8716         from Akim's checkin of 2003-03-29.
8718 2003-04-01  Derek Price  <derek@ximbiot.com>
8720         * tests/torture.at (Configuring subdirectories): Add missing
8721         close-quote for Akim's change from 2003-03-28.
8723 2003-04-01  Akim Demaille  <akim@epita.fr>
8725         * doc/autoconf.texi (ac, at, ms): Rename these indexes as...
8726         (AC, AT, MS): these.
8727         (shortindexflag, @acindex, @ahindex, @asindex, @atindex, @msindex):
8728         New.
8729         Use them.
8730         * doc/Makefile.am (CLEANFILES): Adjust.
8731         (TEXI2DVI): Make it --batch.
8733 2003-03-31  Derek Price  <derek@ximbiot.com>
8735         * lib/autotest/general.m4: Revert the checkin from 2003-03-27
8736         which removed the main loop.
8737         Thanks to Akim Demaille.
8739 2003-03-29  Akim Demaille  <akim@epita.fr>
8741         * lib/autoconf/programs.m4 (AC_PROG_INSTALL): Skip OS/2's install,
8742         that starts a GUI.
8743         From Ilya Zakharevich.
8745 2003-03-29  Akim Demaille  <akim@epita.fr>
8747         * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_MONGREL): The
8748         documentation to read is Autoconf's.
8749         Suggested by Paul Eggert.
8751 2003-03-28  Akim Demaille  <akim@epita.fr>
8753         * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_MONGREL): Suggest
8754         reading the section "Present But Cannot Be Compiled" when the
8755         header causes problems.
8757 2003-03-28  Akim Demaille  <akim@epita.fr>
8759         * tests/torture.at (Configuring subdirectories): Require aclocal
8760         1.4, otherwise the test fails, as it does support configure.ac.
8761         This fixes the "test 40 failed" bug reports.
8763 2003-03-28  Akim Demaille  <akim@epita.fr>
8765         * doc/autoconf.texi (C Compiler): `#line' portability.
8766         From Paul Eggert and Nelson H. F. Beebe.
8768 2003-03-27  Derek Price  <derek@ximbiot.com>
8770         * lib/autotest/general.m4: Eliminate main loop and reorganize test
8771         layout in order to allow scripting around test groups.
8773 2003-03-27  Derek Price  <derek@ximbiot.com>
8775         * lib/autotest/general.m4 (PARSE_ARGS,PARSE_ARGS_END,HELP,HELP_MODES,
8776         HELP_TUNING,HELP_OTHER,HELP_END,PREPARE_TESTS,TESTS_END): Define and
8777         use new diversions in preparation for accepting new arguments and
8778         allowing scripting around tests.
8779         (OPTIONS,TAIL): Remove these diversions to make way for the ones above.
8781 2003-03-26  Derek Price  <derek@ximbiot.com>
8783         * lib/autoconf/general.m4 (AC_ARG_VAR): Use AS_HELP_STRING instead of
8784         obsolete AC_HELP_STRING.
8785         (AC_HELP_STRING): AU_DEFUN to...
8786         * lib/m4sugar/m4sh.m4 (AS_HELP_STRING): ...here.
8787         * tests/m4sh.at (AS_HELP_STRING): New test.
8789         * tests/acgeneral.at: Regenerated.
8791 2003-03-26  Derek Price  <derek@ximbiot.com>
8793         * lib/autotest/general.m4: s/DEFAULT/DEFAULTS/ since it makes more
8794         sense.  Verbosify the diversion definitions comment.
8796 2003-03-26  Derek Price  <derek@ximbiot.com>
8798         * lib/autotest/general.m4 (AT_INIT): Remove redundant call to
8799         AS_PREPARE.
8801 2003-03-21  Eric Siegerman  <eric_97@pobox.com>
8803         * doc/autoconf.texi (Present But Cannot Be Compiled):
8804         Grammar fixes and minor rewording. (trivial change)
8806 2003-03-06  Paul Eggert  <eggert@twinsun.com>
8808         Work around a problem noted by Nelson H. F. Beebe with coreutils
8809         4.5.9: Sun c89 (Sun WorkShop 6 update 2 C 5.3 Patch 111679-08
8810         2002/05/09) rejects '#line 32768 "configure"' because the line
8811         number overflows.
8812         * lib/autoconf/c.m4 (AC_LANG_SOURCE(C)): Do not generate
8813         #line directives.
8814         * lib/autoconf/lang.m4 (AC_LANG_SOURCE): Fix comment to match this.
8815         * doc/autoconf.texi (Generating Sources): Document this.
8817 2003-03-01  Richard Dawe  <rich@phekda.freeserve.co.uk>
8819         * tests/atspecific.m4 (AT_CHECK_AUTOM4TE): Normalize
8820         file name for the m4 program, when it has an "exe" file extension.
8821         DJGPP's error messages include the error code in brackets -
8822         remove the error code during normalization.
8824 2003-02-28  Akim Demaille  <akim@epita.fr>
8826         * doc/autoconf.texi (Present But Cannot Be Compiled): New.
8828 2003-02-28  Alexandre Duret-Lutz  <adl@gnu.org>
8830         * doc/autoconf.texi (Limitations of Make): Remove the section
8831         about `$<' in inference rules, it was a bogus interpretation of
8832         an old Automake change.  Discuss NetBSD, FreeBSD, OpenBSD, and
8833         Tru64 make in the "target lookup" section.
8834         (Automake): Automake 1.5+ no longer requires special tools to be
8835         present on the developer's host.
8837 2003-02-26  Richard Dawe  <rich@phekda.freeserve.co.uk>
8839         * bin/autoheader.in (BEGIN): For DJGPP SHELL may not be set
8840         to a shell that can handle redirection or quoting correctly.
8841         Override SHELL with the shell detected by configure.
8842         Use of $^O suggested by Tim van Holder.
8843         * bin/autom4te.in (BEGIN): Likewise.
8844         * bin/autoreconf.in (BEGIN): Likewise.
8845         * bin/autoscan.in (BEGIN): Likewise.
8846         * bin/autoupdate.in (BEGIN): Likewise.
8847         * bin/ifnames.in (BEGIN): Likewise.
8849         * bin/ifnames.in: Add final newline to help and version messages.
8851         * lib/autoconf/programs.m4 (AC_PROG_MAKE_SET): Translate colons,
8852         to cope with DOS-style absolute paths, when constructing
8853         ${ac_make}.
8855         * lib/autoconf/status.m4 (_AC_OUTPUT_HEADERS, _AC_OUTPUT_FILES):
8856         When constructing paths with IFS=:, quote the path. If we're
8857         constructing a DOS-style absolute path, we don't want to split it
8858         on the colon.
8860         * tests/atspecific.m4 (AT_CHECK_CONFIGURE): Fix typo
8861         in description.
8863 2003-02-25  Pavel Roskin  <proski@gnu.org>
8865         * bin/autoheader.in: Add missing newline when printing
8866         suggestion how change AC_DEFINE call.
8868 2003-02-24  Paul Eggert  <eggert@twinsun.com>
8870         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Fix typo in
8871         2002-09-01 patch by replacing "test -n" with "test -z".
8872         This fixes a bug found by Jeff Painter and reported by Tom Epperly in
8873         <http://mail.gnu.org/archive/html/autoconf/2003-02/msg00139.html>.
8875         * doc/autoconf.texi (Shell Substitutions): test -n -> test -z,
8876         to fix a mismatch between example and discussion.
8878 2003-02-24  Kevin Ryde  <user42@zip.com.au>
8880         * doc/autoconf.texi (Limitations of Builtins): Add notes on printf
8881         format starting with "-".
8883 2003-02-20  Alexandre Duret-Lutz  <adl@gnu.org>
8885         * doc/autoconf.texi (Limitations of Make): `foo=bar make -e'
8886         is not portable inside Makefile.
8888 2003-02-20  Akim Demaille  <akim@epita.fr>
8890         * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_MONGREL): When
8891         compiler says yeah, but preproc says nope, compiler is right.
8892         Conversely, prompt the reader to send a bug report to the
8893         maintainers of the package, not of Autoconf.
8895 2003-02-20  Klee Dienes  <kdienes@apple.com>
8897         * bin/autoreconf.in (autoreconf_current_directory): Properly
8898         handle an empty aclocal.m4.
8900 2003-02-20  Akim Demaille  <akim@epita.fr>
8902         * lib/autoconf/general.m4 (AC_PREFIX_PROGRAM): Quote
8903         $ac_prefix_program.
8904         From Larry Jones.
8906 2002-12-23  Paul Eggert  <eggert@twinsun.com>
8908         * lib/autoconf/c.m4 (AC_LANG_FUNC_LINK_TRY(C)): Define $1 to an
8909         innocuous variant befor including <limits.h> or <assert.h>.  This
8910         works around a bug reported by Albert Chin: HP-UX 11i
8911         (and earlier versions) have a <limits.h> that declares
8912         gettimeofday and many other functions.
8914 2002-12-03  Paul Eggert  <eggert@twinsun.com>
8916         Version 2.57.
8918         * NEWS, configure.ac: Update version.
8920         * doc/fdl.texi: Upgrade to FDL version 1.2.
8922         * lib/autoconf/c.m4 (AC_LANG_FUNC_LINK_TRY(C)): Use the function f
8923         nontrivially in main's body, so that f's external declaration is
8924         not optimized away in AIX.  This should fix the bug reported by
8925         Martin Frydl in
8926         <http://mail.gnu.org/pipermail/autoconf/2002-November/014508.html>.
8928         * lib/autoconf/c.m4 (AC_LANG_FUNC_LINK_TRY(C),
8929         _AC_PROG_PREPROC_WORKS_IFELSE): Use <limits.h> if __STDC__ is
8930         defined, to support freestanding compilers.  This should fix the
8931         bug reported by Momchil Velkov in
8932         <http://mail.gnu.org/pipermail/autoconf/2002-November/014490.html>.
8934         * doc/autoconf.texi (Obsolete Macros): Fix typos (insert empty
8935         arg, AC_DEFINE -> AC_DEFINE_UNQUOTED) in documentation for
8936         obsolete AC_CHECK_TYPE.  The missing empty arg was reported
8937         by Simon Josefsson in
8938         <http://mail.gnu.org/pipermail/autoconf-patches/2002-December/008830.html>.
8940         * Makefile.maint (www-gnu): New macro.
8941         (standards.texi-url_prefix, make-stds.texi-url_prefix): Use it, as
8942         the location has moved.
8944 2002-12-02  Martin Frydl  <martin@systinet.com>
8946         * bin/autom4te.in (at_flatten): rewritten to avoid M4 problem when
8947         \(.*\) match is too long and there is something more to be checked.
8948         <http://mail.gnu.org/pipermail/autoconf/2002-November/014524.html>
8950 2002-11-15  Akim Demaille  <akim@epita.fr>
8952         Version 2.56.
8954         * config/install-sh: chmod +x.
8955         From Paul Eggert.
8956         * config/move-if-change: Indenting changes.
8957         * Makefile.am (AUTOMAKE_OPTIONS): Move to...
8958         * configure.ac (AM_INIT_AUTOMAKE): here.
8959         Require 1.7.1.
8961 2002-11-14  Akim Demaille  <akim@epita.fr>
8963         Version 2.55.
8965         * config/config.guess, config/config.sub, config/install-sh:
8966         Update from masters.
8968 2002-11-14  Akim Demaille  <akim@epita.fr>
8970         * Makefile.maint: Sync with Bison, i.e.:
8971         (po-check): Scan .l and .y files instead of the
8972         .c and the .h files that they generate.  This fixes the bug
8973         reported by Tim Van Holder in:
8974         <http://mail.gnu.org/pipermail/bison-patches/2002-November/001352.html>
8975         Look for N_ as well as for _.  Try to avoid matching #define for
8976         N_ and _.
8977         From Paul Eggert.
8979 2002-11-14  Akim Demaille  <akim@epita.fr>
8981         * doc/autoconf.texi (C Compiler): Compiling several files at once.
8982         From Paul Eggert and Albert Chin-A-Young.
8984 2002-11-14  Akim Demaille  <akim@epita.fr>
8986         * doc/autoconf.texi (C Compiler): Solitary backslashes.
8987         From Paul Eggert and Albert Chin-A-Young.
8989 2002-11-14  Kevin Ryde  <user42@zip.com.au>
8991         * lib/autoconf/c.m4 (AC_LANG_FUNC_LINK_TRY(C)): Initialize f=$1 rather
8992         than assigning in main, to avoid HP cc +O3 optimizing it away.
8994 2002-11-12  Peter Eisentraut  <peter_e@gmx.net>
8996         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Add -q
8997         option.  Process --recheck after parsing all options.  Pass -q
8998         option to configure on --recheck.
8999         (AC_OUTPUT): Pass -q from configure to config.status.
9000         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Strip -q from
9001         arguments to record.
9002         * doc/autoconf.texi (config.status Invocation): Document
9003         config.status -q option.
9005 2002-11-07  Alexandre Duret-Lutz  <adl@gnu.org>
9007         * bin/autoscan.in (scan_file): Scan Makefile.am too. Ignore
9008         Makefile.in if Makefile.am exists.
9009         (output): Strip `.am' from Makefiles.  Don't
9010         output AC_CONFIG_FILES if no Makefiles were found.
9012 2002-11-07  Akim Demaille  <akim@epita.fr>
9014         * Makefile.am (cvs_files): Add elisp-comp, mdate-sh.
9015         (local_updates): New.
9016         * Makefile.maint: Update, from CVS Bison.
9017         (local_updates): New.
9019 2002-11-06  Akim Demaille  <akim@epita.fr>
9021         * lib/autoconf/c.m4 (AC_LANG_FUNC_LINK_TRY): Wrap the `f'
9022         declaration in extern "C" too.
9023         Reported by Roberto Bagnara.
9025 2002-11-06  Akim Demaille  <akim@epita.fr>
9027         * tests/torture.at (Configuring subdirectories): Don't use grep
9028         -w.
9029         * doc/autoconf.texi (Limitations of Usual Tools): Grep -w.
9030         Reported by Ezra Peisach.
9032 2002-11-05  Akim Demaille  <akim@epita.fr>
9034         * lib/autoconf/autoheader.m4 (_AH_TEMPLATE_OLD, _AH_VERBATIM_OLD):
9035         Remove.
9036         We _have_ to stop using the old compatibility scheme that tried to
9037         avoid useless backslashes because Libtool 1.4.3 contains a
9038         AC_DEFINE([error_t], [int],
9039         [Define to a type to use for \`error_t' if it is not
9040         otherwise available.])
9041         We _have_ to quote the single quote and backslashes with \.  The
9042         old compatibility scheme saw that ` was backslashed, and therefore
9043         did not quote the single quote.  Hence before this patch, Autoconf
9044         was not compatible with Libtool.
9046 2002-11-04  Paul Eggert  <eggert@twinsun.com>
9048         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Set the following variables,
9049         too: LC_ADDRESS, LC_IDENTIFICATION, LC_MEASUREMENT, LC_MONETARY,
9050         LC_NAME, LC_PAPER, LC_TELEPHONE.
9051         * doc/autoconf.texi (Special Shell Variables): Mention those vars.
9053 2002-11-04  Akim Demaille  <akim@epita.fr>
9055         Version 2.54c.
9057         * Makefile.maint (update, cvs-update, po-update, do-po-update):
9058         New.
9059         * config/texinfo.tex: Update.
9061 2002-11-03  Akim Demaille  <akim@epita.fr>
9063         * bin/autoreconf.in (&autoreconf_current_directory): New, extracted
9064         from...
9065         (&autoreconf): here.
9066         ($help, $make, &parse_args, &autoreconf_current_directory):
9067         Support -m/--make.
9068         * doc/autoconf.texi (autoreconf Invocation): Adjust.
9070 2002-10-31  Bruno Haible  <bruno@clisp.org>
9072         * lib/autoconf/functions.m4 (_AC_FUNC_MALLOC_IF): Change message.
9073         Change name of cache variable to ac_cv_func_malloc_0_nonnull.
9074         (AC_FUNC_MALLOC): Change description of HAVE_MALLOC macro.
9075         (_AC_FUNC_REALLOC_IF): Change message. Change name of cache variable
9076         to ac_cv_func_realloc_0_nonnull.
9077         (AC_FUNC_REALLOC): Change description of HAVE_REALLOC macro.
9079 2002-10-31  Akim Demaille  <akim@epita.fr>
9081         The test suite was no longer checking for trailing envvars and files.
9083         * tests/atspecific.m4 (AC_STATE_SAVE): Don't use quadrigraphs here.
9084         (AT_CHECK_ENV): Make sure the `state-ls.before file exists.
9086 2002-10-31  Akim Demaille  <akim@epita.fr>
9088         * lib/autoconf/programs.m4 (AC_PROG_MAKE_SET): Use and display
9089         `$(MAKE)' instead of '${MAKE}' to emphasize that we refer to the
9090         Make variable, not a shell variable.
9091         Suggested by Bruno Haible.
9093 2002-10-31  Akim Demaille  <akim@epita.fr>
9095         * bin/autom4te.in (load_configuration): Reject #args out of any
9096         language.
9098 2002-10-31  Akim Demaille  <akim@epita.fr>
9100         * lib/autoconf/general.m4 (_AC_MSG_LOG_CONFTEST): New.
9101         (_AC_PREPROC_IFELSE, _AC_COMPILE_IFELSE, _AC_LINK_IFELSE)
9102         (_AC_RUN_IFELSE): Use it.
9103         * lib/autoconf/lang.m4 (_AC_COMPILER_OBJEXT):
9104         (_AC_COMPILER_EXEEXT_DEFAULT): Likewise.
9105         * lib/autoconf/c.m4 (AC_LANG_SOURCE): Don't include confdefs.h,
9106         inline it.
9108 2002-10-30  Akim Demaille  <akim@epita.fr>
9110         * bin/autom4te.in (&parse_args, $help): Support --no-cache.
9111         * doc/autoconf.texi (autom4te Invocation): Adjust.
9112         Suggested by Tim van Holder.
9114 2002-10-29  Paul Eggert  <eggert@twinsun.com>
9116         * doc/autoconf.texi (Particular Functions): AC_FUNC_MALLOC and
9117         AC_FUNC_REALLOC check for compatibility with glibc, not POSIX.
9118         Problem reported by Bruno Haible.
9120 2002-10-29  Akim Demaille  <akim@epita.fr>
9122         * doc/autoconf.texi (Header Templates): Put also in words what the
9123         pictures says to assist free style readers.
9124         (Customizing autom4te): s/--cache=/--cache /.
9126 2002-10-29  Akim Demaille  <akim@epita.fr>
9128         * lib/autoconf/functions.m4 (_AC_FUNC_VFORK): Include stdlib.h and
9129         sys/wait.h.
9130         sparc_address_test returns void.
9131         Use it with an argument, as prototyped.
9132         From Bruno Haible.
9134 2002-10-29  Akim Demaille  <akim@epita.fr>
9136         * doc/autoconf.texi (Subdirectories): Cygnus dirs have
9137         configure.in, not configure.ac.
9138         Reported by Bruno Haible.
9140 2002-10-29  Akim Demaille  <akim@epita.fr>
9142         * tests/torture.at (Deep Package): New test.
9143         (Configuring subdirectories): Don't use a testSubDir as Autotest
9144         now does it itself.
9146 2002-10-29  Akim Demaille  <akim@epita.fr>
9148         * bin/autoreconf.in (&parse_args, $help): Support --warnings.
9149         * doc/autoconf.texi (Invoking autom4te): Rename as...
9150         (autom4te Invocation): this, for consistency with the other nodes.
9152 2002-10-29  Akim Demaille  <akim@epita.fr>
9154         * lib/autom4te.in (Autoconf): s/automate/autom4te/.
9155         Reported by Ralf Corsepius.
9157 2002-10-29  Akim Demaille  <akim@epita.fr>
9159         * lib/m4sugar/m4sh.m4 (_AS_QUOTE): The warning about quoted
9160         characters is a back as an `obsolete' warning now.
9161         Reported by Ralf Corsepius.
9163 2002-10-28  Akim Demaille  <akim@epita.fr>
9165         * configure.ac: Bump to 2.54c.
9167 2002-10-28  Akim Demaille  <akim@epita.fr>
9169         Version 2.54b.
9171         * tests/foreign.at (Libtool): Adjust to broken libtoolize.
9173 2002-10-28  Akim Demaille  <akim@epita.fr>
9175         * tests/atspecific.m4 (AT_CHECK_AUTOM4TE): Be robust to different
9176         m4 executable names, and different GNU M4 version.
9177         Reported by Ezra Peisach and Paul Jarc.
9179 2002-10-27  Akim Demaille  <akim@epita.fr>
9181         * lib/autoconf/functions.m4 (_AC_FUNC_VFORK): Really use
9182         AC_RUN_IFELSE.
9184 2002-10-27  Akim Demaille  <akim@epita.fr>
9186         * doc/autoconf.texi: More AC_MSG_FAILURE promotion.
9187         * lib/autoconf/fortran.m4 (_AC_F77_NAME_MANGLING):
9188         Die when a simple Fortran program cannot be compiled.
9189         * lib/autoconf/lang.m4 (AC_LANG_CALL, AC_LANG_FUNC_LINK_TRY):
9190         Issue a warning if no function is given.
9192 2002-10-27  Akim Demaille  <akim@epita.fr>
9194         * doc/autoconf.texi (Run Time): Document AC_RUN_IFELSE.
9195         Move the documentation of AC_TRY_RUN to...
9196         (Obsolete Macros): here.
9197         Adjust all the old samples still using AC_TRY_RUN to AC_RUN_IFELSE.
9198         (autoconf Invocation): Remove the duplicates with `invoking
9199         autom4te'.
9200         * lib/autoconf/headers.m4 (AC_HEADER_STDC): Don't use AC_TRY_RUN.
9201         * lib/autoconf/c.m4 (AC_C_BIGENDIAN): Likewise.
9203 2002-10-27  Akim Demaille  <akim@epita.fr>
9205         * doc/autoconf.texi (Generating Sources): Document AC_LANG_CALL
9206         and AC_LANG_FUNC_LINK_TRY.
9207         (Examining Libraries): Rename as...
9208         (Running the Linker): this.
9209         Document AC_LINK_IFELSE.
9210         Move the documentation of AC_TRY_LINK and AC_TRY_LINK_FUNC to...
9211         (Obsolete Macros): here.
9212         * lib/autoconf/fortran.m4 (_AC_F77_NAME_MANGLING): Don't use
9213         AC_TRY_LINK_FUNC nor AC_TRY_LINK.
9214         * lib/autoconf/libs.m4 (AC_CHECK_LIB, AC_PATH_XTRA): Likewise.
9215         * lib/autoconf/headers.m4 (AC_USG): Likewise.
9217 2002-10-27  Akim Demaille  <akim@epita.fr>
9219         * lib/autoconf/headers.m4 (AC_HEADER_STDC): Don't use AC_TRY_CPP.
9221         More `check config.log' messages.
9223         * lib/autoconf/general.m4 (AC_MSG_FAILURE): New.
9224         * doc/autoconf.texi (Printing Messages): Document it.
9225         * lib/autoconf/types.m4 (AC_CHECK_SIZEOF): Use it when
9226         appropriate.
9227         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT)
9228         (_AC_COMPILER_EXEEXT_WORKS, _AC_COMPILER_EXEEXT_O)
9229         (_AC_COMPILER_OBJEXT): Likewise.
9230         * lib/autoconf/general.m4 (AC_RUN_IFELSE): Likewise.
9231         * lib/autoconf/fortran.m4 (_AC_LANG_PROGRAM_C_F77_HOOKS):
9232         Likewise.
9233         * lib/autoconf/c.m4 (AC_PROG_CPP, AC_PROG_CC, AC_PROG_CXXCPP):
9234         Likewise.
9236         Deprecate macros with unusual interfaces.
9238         * lib/autoconf/general.m4 (AC_TRY_CPP, AC_TRY_LINK)
9239         (AC_TRY_COMPILE, AC_TRY_RUN): AU_DEFUN'ed.
9241         Document the new ones, and proper style.
9243         * doc/autoconf.texi (Generating Sources): New.
9244         Document AC_LANG_CONFTEST, AC_LANG_SOURCE, AC_LANG_PROGRAM.
9245         (Examining Declarations): Rename as...
9246         (Running the Preprocessor): this.
9247         Document AC_PREPROC_IFELSE.
9248         (Examining Syntax): Rename as...
9249         (Running the Compiler): this.
9250         (AC_FOO_IFELSE vs AC_TRY_FOO): New section.
9251         (Obsolete Macros): Move the definition of AC_TRY_CPP and
9252         AC_TRY_COMPILE here.
9254 2002-10-27  Akim Demaille  <akim@epita.fr>
9256         Move sections around.
9258         * doc/autoconf.texi (Customizing autom4te): Remove a lost
9259         sentence.
9260         Reported by Burno Haible.
9261         (Language Choice): Now the first section of...
9262         (Writing Tests): this section.
9263         Make the introduction less C-centric.
9264         (Guidelines, Test Functions): Move to...
9265         (Writing Test Programs): this new section.
9266         (Test Programs): Merge into...
9267         (Run Time): this.
9269 2002-10-27  Akim Demaille  <akim@epita.fr>
9271         * lib/freeze.mk ($(AUTOM4TE_CFG)): Add a missing dependency on
9272         autom4te.in that resulted in the need for two `make' runs.
9274 2002-10-27  Akim Demaille  <akim@epita.fr>
9276         * configure.ac: Bump to 2.54b.
9278 2002-10-25  Akim Demaille  <akim@epita.fr>
9280         Version 2.54a.
9282         * Makefile.maint: Update from the Coreutils.
9283         (AMTAR): Remove, obsolete.
9284         (automake_repo): Update to redhat.com.
9285         (cvs_file): New.
9286         Adjust to the fact that ansi2knr is now hosted by Automake.
9287         * Makefile.am (cvs_files): Add install-sh and mkinstalldirs.
9288         * config/config.guess, config/mkinstalldirs, config/texinfo.tex:
9289         Update from masters.
9290         * lib/autoscan/Makefile.am (EXTRA_DIST, nodist_autoscanlib_DATA):
9291         autoscan.pre is not to be installed, and autoscan.list is not to
9292         be shipped.
9293         (CLEANFILES): Add autoscan.list.
9294         (autoscan.list): Disable the cache.
9295         * bin/Makefile.am: Include freeze.mk.
9297 2002-10-25  Akim Demaille  <akim@epita.fr>
9299         * bin/autom4te.in (&load_configuration): Take the file as
9300         argument.
9301         (&parse_args): Handle -C, --cache.
9302         ($help): Adjust.
9303         (MAIN): Load ~/.autom4te.cfg and ./.autom4te.cfg.
9304         * lib/autom4te.in (Autoconf): Pass --cache=autom4te.cache.
9305         * doc/autoconf.texi (Invoking autom4te): Document --cache.
9306         Now a subsection of...
9307         (Using autom4te): This new section.
9308         (Customizing autom4te): New.
9309         (autom4te.cache): Adjust.
9311 2002-10-25  Akim Demaille  <akim@epita.fr>
9313         * doc/autoconf.texi (Generic Headers): More information on how to
9314         use AC_CHECK_HEADERS.
9316 2002-10-25  Akim Demaille  <akim@epita.fr>
9318         * bin/autoconf.as, bin/autoconf.in, bin/autoupdate.in ($help):
9319         Space changes.
9321 2002-10-25  Akim Demaille  <akim@epita.fr>
9323         * bin/autoscan.in (output): Output AC_PREREQ.
9324         (%needed_macros): Add AC_PREREQ so that configure.ac without one
9325         be reported.
9327 2002-10-23  Akim Demaille  <akim@epita.fr>
9329         * doc/autoconf.texi (Particular Headers): In AC_HEADER_STDBOOL,
9330         document _Bool.
9332 2002-10-23  Akim Demaille  <akim@epita.fr>
9334         * bin/autom4te.in (handle_traces): Handle @&t@ in traces.
9335         Reported by Peter Eisentraut.
9337 2002-10-23  Akim Demaille  <akim@epita.fr>
9339         * lib/autoconf/headers.m4 (AC_HEADER_STDBOOL): Also look for the
9340         type _Bool.
9341         Fix a typo.
9342         * doc/autoconf.texi (Particular Headers): Adjust according to Paul
9343         Eggert's recommandations.
9345 2002-10-22  Akim Demaille  <akim@epita.fr>
9347         * lib/autoconf/headers.m4 (AC_HEADER_STDBOOL): New, based on CVS
9348         Bison, by Paul Eggert.
9349         * doc/autoconf.texi (Particular Headers): Document it.
9351 2002-10-22  Aaron M. Ucko  <amu@alum.mit.edu>
9353         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Avoid duplicates in
9354         `$ac_configure_args'.
9356 2002-10-22  Akim Demaille  <akim@epita.fr>
9358         * doc/autoconf.texi: Use AC_CONFIG_HEADERS in examples.
9359         (AC_ST_BLKSIZE, AC_ST_RDEV): Directly point to AC_CHECK_MEMBERS.
9360         From Art Haas.
9362 2002-10-22  Akim Demaille  <akim@epita.fr>
9364         Restore the 2002-10-11  Akim Demaille  <akim@epita.fr> patch:
9366         * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_MONGREL)
9367         (AC_CHECK_HEADER, _AC_CHECK_HEADER_NEW,_AC_CHECK_HEADER_OLD): Restore.
9368         (_AC_CHECK_HEADER_NEW): Rename as...
9369         (AC_CHECK_HEADER): this.
9371 2002-10-22  Akim Demaille  <akim@epita.fr>
9373         * doc/autoconf.texi (Limitations of Usual Tools): Remove incorrect
9374         words about HP-UX cmp: it was actually a user-written cmp.
9376 2002-10-22  Akim Demaille  <akim@epita.fr>
9378         * tests/foreign.at (Libtool): Don't check autoconf's stderr: there
9379         are a few warnings.
9380         * lib/autoconf/autoheader.m4 (AH_VERBATIM, _AH_VERBATIM_OLD):
9381         Quote for Perl '' strings, not "".
9382         * bin/autoheader.in: Invoke autoconf to get '' strings, not ""
9383         strings.
9385 2002-10-22  Akim Demaille  <akim@epita.fr>
9387         * lib/m4sugar/m4sh.m4 (_AS_QUOTE): The warning about quoted
9388         characters is a syntax warning now.
9389         (_AS_QUOTE): Accept $2 as list of characters to quote.
9390         * lib/autoconf/autoheader.m4 (AH_VERBATIM, _AH_VERBATIM_OLD):
9391         Quote for Perl, not sh.
9392         * bin/autoheader.in: When $debug, report the file which is
9393         `do'ne.
9394         * tests/tools.at (autom4te, autoheader): Exercise @bar, not merely
9395         `@', to tickle Perl's lists.
9396         Reported by Carlos Velasco.
9398 2002-10-18  Akim Demaille  <akim@epita.fr>
9400         * bin/autom4te.in (handle_m4): Pass --fatal-warning to m4, so that
9401         missing included files _are_ errors.
9402         Thanks to Alexandre Duret-Lutz.
9403         * tests/tools.at (autom4te cache): Adjust.
9404         * tests/atspecific.m4 (AT_CHECK_AUTOM4TE): New.
9405         (AT_CHECK_M4SUGAR): Use it.
9406         * tests/m4sugar.at (m4_warn, m4_require: circular dependencies):
9407         Adjust.
9408         * tests/tools.at (autom4te): Now it does exit 1.
9410 2002-10-17  Akim Demaille  <akim@epita.fr>
9412         * lib/autoconf/general.m4 (AC_CACHE_SAVE): Don't use cmp.
9413         Fixes the `AC_ARG_VAR' test failures.
9414         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES): Don't use cmp.
9415         * lib/freeze.mk (check-forbidden-patterns): New.
9416         * lib/autoconf/Makefile.am, lib/autotest/Makefile.am
9417         * lib/m4sugar/Makefile.am (check-local): Use it to catch `cmp'.
9418         * doc/autoconf.texi (Limitations of Usual Tools): HP-UX' cmp and
9419         /dev/null.
9420         Reported months ago by H. Merijn Brand.
9422 2002-10-17  Akim Demaille  <akim@epita.fr>
9424         * tests/tools.at (autoheader): Put randoms `@' to stress Perl.
9426 2002-10-16  Paul Eggert  <eggert@twinsun.com>
9428         * Makefile.maint (wget_files): Remove ansi2knr.c.
9429         (ansi2knr.c-url_prefix): Remove.
9431 2002-10-16  Akim Demaille  <akim@epita.fr>
9433         Because of caching, some files that no longer exist and are no
9434         longer required can still cause errors.
9435         Reported by Alexandre Duret-Lutz.
9437         * bin/autom4te.in (&parse_args): Do not prepend `--reload-state'
9438         to frozen files in @ARGV, as @ARGV must remain being a list of
9439         files.  Rather, at M4 call sites, use this...
9440         (&files_to_options): New function.
9441         (&freeze): Use &error.
9442         (&up_to_date): If a file that was included according to the cache
9443         is no longer there, then the output is out dated.
9444         (&main): Don't even check whether a file is up to date is anyway
9445         --force is given.
9446         * tests/tools.at (autom4te cache): New.
9448 2002-10-16  Akim Demaille  <akim@epita.fr>
9450         * bin/autoconf.as: Kill dead options.
9451         * bin/autoupdate.in (&parse_args): Kill old options.
9452         * bin/autoreconf.in (&parse_args): Remove dead options.
9453         Factor some code.
9454         (&autoreconf): Report the directories we enter *and leave*, so
9455         that error messages can be easily located, and use GNU Make
9456         format, so that Emacs' compile mode understands us.
9457         * lib/Autom4te/General.pm (&update_file): Use `verbose' to report
9458         if some file was changed instead of `print'.
9459         * bin/autoheader.in: Suggest AC_DEFINE with 3 args when needed.
9460         (&parse_args): Remove the dead options.
9461         * tests/atspecific.m4 (AT_CHECK_AUTOHEADER): Adjust to the new
9462         autoheader's quiet mode.
9463         (AT_CHECK_AUTOUPDATE): Likewise.
9464         * tests/tools.at (autoupdate): Adjust.
9465         * tests/semantics.at (AC_C_BIGENDIAN): Likewise.
9467 2002-10-11  Akim Demaille  <akim@epita.fr>
9469         No longer use CPP to check for the existing of headers: use CC to
9470         check for compilability.
9472         * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_MONGREL)
9473         (AC_CHECK_HEADER, _AC_CHECK_HEADER_OLD): Remove.
9474         (_AC_CHECK_HEADER_NEW): Rename as...
9475         (AC_CHECK_HEADER): this.
9477         * lib/autotest/general.m4 (AT_INIT): Include the failed test
9478         numbers in the Subject suggestion.
9480 2002-10-11  Akim Demaille  <akim@epita.fr>
9482         * lib/autoconf/specific.m4 (AC_DECL_SYS_SIGLIST): Obsolete.
9483         Suggest using AC_CHECK_DECLS instead.
9485 2002-10-11  Akim Demaille  <akim@epita.fr>
9487         * tests/torture.at (AC_ARG_VAR): Have configure report the value
9488         of `precious'.
9490 2002-10-11  Akim Demaille  <akim@epita.fr>
9492         * lib/m4sugar/m4sh.m4 (_AS_PATH_SEPARATOR_PREPARE): Use $$ in the
9493         file name to enable parallel executions.
9494         From Sam Varshavchik.
9496 2002-10-08  Akim Demaille  <akim@epita.fr>
9498         * bin/autoreconf.in (&autoreconf): Run autopoint before the first
9499         aclocal invocation, as Gettext macros might not be visible to
9500         aclocal.
9501         Instead of blindly running autopoint, scan configure.ac (not the
9502         traces) for AM_GNU_GETTEXT_VERSION uses, as autopoint does.
9503         Reported by Paul D. Smith.
9505 2002-10-08  Paul Eggert  <eggert@twinsun.com>
9507         Work around problems found when POSIXLY_CORRECT=1 is set.
9508         None of this seems to have anything to do with POSIX, really,
9509         but it's how Perl getopt works.
9510         * bin/autom4te.in (parse_args): Configure GetOpt with
9511         "permute", too.
9512         * doc/autoconf.texi (Invoking autom4te):
9513         --warning -> --warnings.
9514         * lib/autom4te.in: --warning -> --warnings.
9516 2002-09-28  Akim Demaille  <akim@epita.fr>
9518         * doc/autoconf.texi (autom4te.cache): New section.
9520 2002-09-28  Akim Demaille  <akim@epita.fr>
9522         * lib/autom4te.in (Autoscan-preselections, Autoreconf-preselections)
9523         (Automake-preselections): Update.
9524         * bin/autoreconf.in, bin/autoheader.in: Comment changes.
9526 2002-09-28  Akim Demaille  <akim@epita.fr>
9528         * lib/autoscan/autoscan.pre: Move all the remaining rules to...
9529         * lib/autoconf/c.m4, lib/autoconf/functions.m4,
9530         * lib/autoconf/headers.m4, lib/autoconf/libs.m4,
9531         * lib/autoconf/specific.m4, lib/autoconf/types.m4: here.
9533 2002-09-28  Akim Demaille  <akim@epita.fr>
9535         * tests/torture.at (Configuring subdirectories): Be robust to
9536         users who use config.site to require for a cache: in this case,
9537         the two last configure runs, using two different sets of
9538         arguments, trigger a legitimate error.
9540 2002-09-28  Akim Demaille  <akim@epita.fr>
9542         * tests/m4sh.at (Functions Support, Functions and return Support):
9543         New.
9545 2002-09-28  Akim Demaille  <akim@epita.fr>
9547         * bin/Makefile.am (ETAGS_SH, ETAGS_PERL): Update: ifnames and
9548         autoheader are Perl programs.
9549         (autoconf, autoheader, autoreconf, autoupdate, ifnames, autoscan)
9550         (autom4te): Specify that the sources are in the $srcdir.
9551         * doc/autoconf.texi (Installation Directory Variables): Adjust.
9553 2002-09-28  Akim Demaille  <akim@epita.fr>
9555         * lib/autoscan/autoscan.pre (st_blksize, st_blocks, st_rdev)
9556         (tm_zone): Move their rules to...
9557         * lib/autoconf/types.m4: here, using AN_ macros.
9558         * lib/autoscan/autoscan.pre (AWK, BISON, INSTALL, LEX, LN, MAKE)
9559         (RANLIB, YACC, awk, bison, byacc, flex, gawk, install, lex, ln)
9560         (make, mawk, nawk, ranlib, yacc): Similarly, move to...
9561         * lib/autoconf/programs.m4: here.
9562         * lib/freeze.mk (ETAGS_FOR_M4, ETAGS_FOR_M4SUGAR)
9563         (ETAGS_FOR_AUTOCONF): New.
9564         Use it.
9566 2002-09-28  Akim Demaille  <akim@epita.fr>
9568         * lib/autoconf/autoscan.m4: New file.
9569         * lib/autoconf/autoconf.m4: Include it.
9570         * lib/autoconf/functions.m4: Use AN_FUNCTION for all the functions
9571         that were listed in the original autoscan.list.
9572         * lib/autoconf/headers.m4: Similarly with headers.
9573         * lib/freeze.mk (autoconf_m4f_dependencies): Add autoscan.m4.
9574         (.m4.m4f): Don't pass --prepend-include, since that's done by
9575         tests/autom4te itself.
9576         * lib/autoscan/Makefile.am: Include freeze.mk.
9577         (autoscan.list): New target --this file is no longer a source.
9578         (autoscan.pre): New file.
9580 2002-09-28  Akim Demaille  <akim@epita.fr>
9582         * bin/autoscan.in (@kinds): Make them singular.
9583         Adjust all uses.
9584         (&init_tables): When --debug, report the list of rules to ease
9585         tracking changes in autoscan.list.
9586         * lib/autoscan/autoscan.list (function): Strip comments, sort.
9588 2002-09-28  Akim Demaille  <akim@epita.fr>
9590         * lib/autoscan/functions, lib/autoscan/headers,
9591         * lib/autoscan/identifiers, lib/autoscan/makevars,
9592         * lib/autoscan/programs: Merge into...
9593         * lib/autoscan/autoscan.list: this.
9594         * bin/autoscan.in (&init_tables): Adjust.
9596 2002-09-28  Akim Demaille  <akim@epita.fr>
9598         * lib/autoscan/functions, lib/autoscan/headers,
9599         * lib/autoscan/identifiers, lib/autoscan/makevars,
9600         * lib/autoscan/programs: Make the `kind' explicit, i.e., each
9601         `functions' line is now prefixed with `function:'.
9602         * bin/autoscan.in (&init_tables): Adjust.
9604 2002-09-28  Akim Demaille  <akim@epita.fr>
9606         From now on, autoscan files must always map a macro name to a
9607         word: there is no `default' macro for autoscan.
9609         * bin/autoscan.in (&init_tables): Reject entries with no macro at
9610         all.
9611         * lib/autoscan/functions, lib/autoscan/headers: Make the macro
9612         explicit.
9614 2002-09-28  Akim Demaille  <akim@epita.fr>
9616         * bin/autoscan.in (%c_keywords): Remove.
9617         (&used): Keep only track of the words we might be interested in.
9618         (&output_kind): It is no longer needed to look for non active
9619         checks.
9621 2002-09-27  Akim Demaille  <akim@epita.fr>
9623         * lib/autoconf/functions.m4 (AC_FUNC_MBRTOWC): New, stolen from
9624         jm_FUNC_MBRTOWC, by Paul Eggert, from the Coreutils 4.5.1.
9625         * lib/autoscan/functions: Adjust.
9626         * doc/autoconf.texi (Particular Functions): Adjust.
9628 2002-09-27  Akim Demaille  <akim@epita.fr>
9630         * doc/autoconf.texi (Limitations of Usual Tools): Some about mv
9631         from /tmp.
9632         Thanks to Bill Moseley and Paul Eggert.
9633         * lib/m4sugar/m4sh.m4 (AS_TMPDIR): $2 is the directory into which
9634         the tmpdir must be created.
9635         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Have the tmp
9636         dir be in the build tree, instead of $TMPDIR.
9638 2002-09-27  Akim Demaille  <akim@epita.fr>
9640         * bin/autoscan.in: Improve the comments.
9641         (&parse_args): Drop obsolete undocumented options.
9642         (&output_kind): Output warnings.
9643         * lib/autoscan/functions: (dcgettext): Now trigger AM_GNU_GETTEXT.
9644         (getwd): Trigger a warning.
9646 2002-09-26  Akim Demaille  <akim@epita.fr>
9648         * bin/autoreconf.in: Clarify that -s is meaningless without -i.
9649         Reported by Ralf Corsepius.
9650         * doc/autoconf.texi (autoreconf Invocation): Likewise.
9652 2002-09-26  Akim Demaille  <akim@epita.fr>
9654         Single suffix rules and seperated dependencies are not portable.
9656         * doc/autoconf.texi (Installation Directory Variables): Update.
9657         (Limitations of Make): Some about `Single Suffix Rules and
9658         Separated Dependencies'.
9659         * bin/Makefile.am (autoconf, autoheader, autoreconf, autoupdate)
9660         (ifnames, autoscan, autom4te): Un-factor into several rules.
9662 2002-09-25  Paul Eggert  <eggert@twinsun.com>
9664         * BUGS (Interoperability bugs): New section.  Mention libtool
9665         1.4.2, configure.ac, and AC_CONFIG_AUX_DIR interoperability bug.
9667 2002-09-24  Paul Eggert  <eggert@twinsun.com>
9669         Fix a portability bug reported by Alexandre Duret-Lutz: Solaris 8
9670         make handles suffix-rules differently from GNU make.
9672         * bin/Makefile.am (SUFFIXES, .in): Remove.
9673         (autoconf autoheader autoreconf autoupdate ifnames autoscan autom4te):
9674         Move the body of the old .in rule here.
9676 2002-09-16  Akim Demaille  <akim@epita.fr>
9678         i960 compilers create `b.out' files by default.
9679         Reported by Ralf Corsepius.
9681         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT): Remove b.out files.
9682         (_AC_COMPILER_EXEEXT_DEFAULT): Adjust to b.out.
9684 2002-09-13  Paul Eggert  <eggert@twinsun.com>
9686         * doc/autoconf.texi (Particular Headers): Remove obsolete
9687         reference to `struct timezone' in the description of
9688         AC_HEADER_TIME.
9690 2002-09-13  Akim Demaille  <akim@epita.fr>
9692         Version 2.54.
9694         * config/config.sub, config/config.guess: Update.
9695         * Makefile.maint: Update from bits of the Coreutils 4.5.1.
9696         * Makefile.am: Adjust.
9698 2002-09-13  Akim Demaille  <akim@epita.fr>
9700         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Suggest
9701         reading config.log when the compiler is rejected.
9702         Suggested by Guido Draheim.
9704 2002-09-13  Akim Demaille  <akim@epita.fr>
9706         * bin/autoreconf.in: Don't use Cwd::chdir, since in its internals
9707         (chdir_init) might hang when stat'ing mounted directories.
9708         Reported by Vance Shipley.
9710 2002-09-12  Akim Demaille  <akim@epita.fr>
9712         * bin/autoscan.in (&parse_args): Pass a reference to the lists, not
9713         the lists.
9715 2002-09-12  Akim Demaille  <akim@epita.fr>
9717         * doc/autoconf.texi (Defining Symbols): Present two different
9718         prototypes for AC_DEFINE and AC_DEFINE_UNQUOTED to emphasize the
9719         difference between 1 argument calls, and 2-3 argument calls.
9721 2002-09-12  Peter Eisentraut  <peter_e@gmx.net>
9723         * doc/autoconf.texi: Review grammar and punctuation.
9725 2002-09-11  Paul Eggert  <eggert@twinsun.com>
9727         * doc/autoconf.texi: Fix minor formatting, spelling, and
9728         grammatical typos.
9729         (Defining Symbols): Explain that AC_DEFINE(var) defaults to 1, but
9730         AC_DEFINE(var,,description) does not; and the AC_DEFINE(var) case
9731         is obsolescent.
9733 2002-09-11  Akim Demaille  <akim@epita.fr>
9735         * doc/autoconf.texi (Questions): Rename as...
9736         (FAQ): this.
9737         (Defining Directories): New.
9739 2002-09-09  Akim Demaille  <akim@epita.fr>
9741         * doc/autoconf.texi (Making testsuite Scripts): Update.
9742         Suggested by Nishio Futoshi.
9744 2002-09-09  Koji Arai  <JCA02266@nifty.ne.jp>
9746         * doc/autoconf.texi (Making testsuite Scripts): Use `@@' where a
9747         plain `@' is wanted.
9749 2002-09-09  Akim Demaille  <akim@epita.fr>
9751         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Keep the
9752         `duplicates', since the algorithm was too naive and could keep
9753         `--prefix=1 --prefix=2 --prefix=1' as `--prefix=1 --prefix=2', and
9754         keep `--prefix foo --prefix bar' as `--prefix foo bar'.
9755         Reported by Ralf Corsepius.
9756         * tests/torture.at (Configuring subdirectories): Exercise these
9757         cases.
9759 2002-09-09  Akim Demaille  <akim@epita.fr>
9761         * lib/autoconf/functions.m4 (AC_FUNC_GETLOADAVG): Use $srcdir when
9762         looking for a replacement file.
9763         * lib/autoconf/general.m4 (AC_CHECK_DECLS): Check that the
9764         directory is relative.
9765         * doc/autoconf.texi (Generic Functions): Clarify the replacement
9766         directory definition.
9767         Reported by Andreas Schwab and Jim Meyering.
9769 2002-09-06  Akim Demaille  <akim@epita.fr>
9771         * doc/autoconf.texi (Setting Output Variables): Clarify what
9772         precious variables are.
9773         Suggested by Pontus Skoeld.
9775 2002-09-05  Akim Demaille  <akim@epita.fr>
9777         * bin/Makefile.am (autoconf, autoheader, autoreconf, autoupdate)
9778         (ifnames, autoscan, autom4te): Since we don't only depend on
9779         configure.ac variables (such as VERSION etc.), but also on prefix
9780         and so forth, depend on Makefile, not configure.ac.
9781         Reported by Alexandre Duret-Lutz.
9782         * doc/autoconf.texi (Installation Directory Variables): Adjust.
9784 2002-09-05  Kevin Ryde  <user42@zip.com.au>
9786         * doc/autoconf.texi (Limitations of Make): HP-UX trailing backslashes
9787         doesn't seem to be confined to ia64, just say "some versions".
9789 2002-09-04  Akim Demaille  <akim@epita.fr>
9791         * Makefile.am, doc/Makefile.am: Remove pdf targets, handled by
9792         Automake 1.6c.
9793         * Makefile.am (maintainer-clean-local): Remove.
9794         (MAINTAINERCLEANFILES): Remove COPYING.
9796 2002-09-03  Paul Eggert  <eggert@twinsun.com>
9798         * doc/autoconf.texi (Configuration Commands): Remove obsolete
9799         example for AC_CONFIG_COMMANDS_PRE.  Problem reported by Marcus
9800         Brinkmann.
9802 2002-09-03  Akim Demaille  <akim@epita.fr>
9804         * configure.ac: Bump to 2.53d.
9805         * Makefile.am (AUTOMAKE_OPTIONS): Require 1.6c, i.e., CVS Automake
9806         as of today, on Automake's team suggestion.
9808 2002-09-03  Akim Demaille  <akim@epita.fr>
9810         Version 2.53c.
9812 2002-09-02  Akim Demaille  <akim@epita.fr>
9814         * bin/autom4te.in (parse_args): Don't honor AUTOM4TE_PATH and
9815         SITE_MACRO_DIR.
9816         * configure.ac: Disable SITE_MACRO_DIR.
9818 2002-09-02  Jim Meyering  <meyering@lucent.com>
9820         * doc/autoconf.texi (AC_SYS_POSIX_TERMIOS): Reflect renaming: s/am/ac/,
9821         i.e., change am_cv_sys_posix_termios to ac_cv_sys_posix_termios.
9822         Also, tweak grammar: s/make sure to/be sure to/.
9824 2002-09-02  Paul Eggert  <eggert@twinsun.com>
9826         * doc/autoconf.texi (Limitations of Builtins): Explain why logical
9827         directory names are generally preferable to physical names.
9829 2002-09-02  Akim Demaille  <akim@epita.fr>
9831         * lib/Autom4te/General.pm (&update_file): s/die/error/.
9832         Reported by Raja R. Harinath.
9833         * bin/autoheader.in, bin/autoreconf.in, bin/autoscan.in,
9834         * bin/autoupdate.in: Use error instead of die.
9836 2002-09-01  Paul Eggert  <eggert@twinsun.com>
9838         * tests/mktests.sh (ac_exclude_egrep, au_exclude_egrep): Use
9839         ordinary shell concatenation rather than echo+tr+sed command that
9840         runs afoul of a long-line-related sed bug in Solaris 8.
9842         * bin/autoheader.in (parse_args): --warning -> --warnings.
9844         * bin/autoconf.as: Work even if "ls" outputs "FOO not found" to
9845         stdout, as traditional "ls" does.
9846         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT,
9847         _AC_COMPILER_EXEEXT_O): Likewise.
9848         * doc/autoconf.texi (Limitations of Usual Tools): Add "ls".
9850         * bin/autoconf.as: Add --prepend-include option.  This patch was
9851         applied to bin/autoconf.in in the 2002-07-17 patch by Mark D. Roth,
9852         but bin/autoconf.in is generated automatically from bin/autoconf.as.
9854         * bin/autoconf.in, configure: Regenerate.
9856         * doc/autoconf.texi (Special Shell Variables): Mention
9857         ENV, MAIL, MAILPATH, PS1, PS2, PS4.  Index PWD.
9859         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Unset ENV, MAIL,
9860         MAILPATH and set PS1, PS2, PS4 to default values, to work
9861         around bug in pre-3.0 UWIN ksh reported by Bruce Lilly.
9862         For LC_ALL etc, first try to set to "C" as POSIX requires and as
9863         the Autoconf documentation specifies; fall back to "unset" only if
9864         this fails.  Use a shell for-loop for this rather than an m4 loop,
9865         to shorten the output script.
9867 2002-08-30  Paul Eggert  <eggert@twinsun.com>
9869         * doc/autoconf.texi (Special Shell Variables): Mention POSIX
9870         1003.1-2001's requirements for CDPATH.  Give a simpler workaround
9871         for the CDPATH problem.  Document PWD.
9872         (Limitations of Builtins): Document the problem that "cd $foo" and
9873         "ls $foo" may refer to different directories in shells conforming
9874         to POSIX 1003.1-2001.  Use PS1 rather than CDPATH for "unset"
9875         example, since the old example is now out of date.
9877         * lib/autoconf/general.m4 (_AC_INIT_SRCDIR): Reject FOO if "cd
9878         FOO" and "ls FOO" talk about different directories; this catches
9879         problems when POSIX 1003.1-2001 "cd" fails due to symlink
9880         spaghetti.
9882         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Use AS_UNSET instead
9883         of rolling our own unset.
9884         (_AS_PREPARE): $as_unset CDPATH instead of AS_UNSETting it, since
9885         in practice we needn't worry about CDPATH if unset doesn't work.
9887         * Makefile.in, aclocal.m4, bin/Makefile.in,
9888         config/Makefile.in, doc/Makefile.in, lib/Makefile.in,
9889         lib/Autom4te/Makefile.in, lib/autoconf/Makefile.in,
9890         lib/autoscan/Makefile.in, lib/autotest/Makefile.in,
9891         lib/emacs/Makefile.in, lib/m4sugar/Makefile.in, man/Makefile.in,
9892         tests/Makefile.in: Regenerate with Automake 1.6.3.
9894         * config/config.guess, config/config.sub, config/mkinstalldirs:
9895         Update.
9897         * configure: Regenerate with self.
9899 2002-08-30  Kevin Ryde  <user42@zip.com.au>
9901         * doc/autoconf.texi (Limitations of Usual Tools): Notes on "cc"
9902         default output.
9904 2002-08-29  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
9906         * bin/autom4te.in (Request::load): Correctly test for "do" read
9907         failure.
9909 2002-08-29  Akim Demaille  <akim@epita.fr>
9911         * lib/Autom4te/General.pm (&xqx): New.
9912         (&xsystem): Use WIFEXITED and WEXITSTATUS instead of decoding $? by
9913         hand, which is not portable.
9914         (&error): New.
9915         * bin/autom4te.in: Use them.
9916         Use &error instead of die.
9917         * tests/m4sugar.at (m4_warn, m4_require: circular dependencies):
9918         Adjust.
9920 2002-08-17  Paul Eggert  <eggert@twinsun.com>
9922         * lib/autoconf/fortran.m4 (AC_PROG_F77): Remove fc from the
9923         default list of compilers to try, since it was long ago superseded
9924         by the ksh fc builtin.  Suggested by Steven G. Johnson.
9926 2002-07-31  Alexandre Duret-Lutz  <duret_g@epita.fr>
9928         * doc/autoconf.texi (Invoking autom4te): End the option table,
9929         fixing a bug introduced by the previous patch.
9930         (Limitations of Make): Add a 'target lookup' subentry in the
9931         'VPATH' entry.  Rewrite all `make' occurences as `@command{make}'.
9933 2002-07-29  Mark D. Roth  <roth@feep.net>
9935         * bin/autom4te.in: Remove --include-envvar and --site-macro-subdir
9936         options and use $AUTOM4TE_PATH.
9937         * doc/autoconf.texi: Remove documentation of autom4te
9938         --include-envvar and --site-macro-subdir options and document
9939         use of $AUTOM4TE_PATH.
9940         * lib/autom4te.in: Remove --include-envvar and --site-macro-subdir
9941         arguments from each language section.
9943 2002-07-29  Paul Eggert  <eggert@twinsun.com>
9945         * doc/install.texi: Include copyright symbol in copyright notice.
9947         * Makefile.am (MAKEINFO): Remove; it's a user-specified macro.
9948         Replace with:
9949         (AM_MAKEINFOFLAGS): New macro.
9950         * doc/Makefile.am (MAKEINFO, AM_MAKEINFOFLAGS): Likewise.
9951         * Makefile.am (INSTALL): Use the new macros.
9952         Use -o rather than --output, since "missing" does not grok --output.
9954 2002-07-25  Alexandre Duret-Lutz  <duret_g@epita.fr>
9956         * doc/autoconf.texi (Limitations of Make): Escaped newlines in
9957         comments do not always work. Never trust the exit status of
9958         `make -k'.
9960 2002-07-24  Kevin Ryde  <user42@zip.com.au>
9962         * doc/autoconf.texi (Limitations of Make, Making testsuite Scripts):
9963         Untabify, since tabs are not enjoyed by texi2dvi and makeinfo.
9965 2002-07-23  Paul Eggert  <eggert@twinsun.com>
9967         * lib/m4sugar/m4sh.m4 (_AS_PATH_SEPARATOR_PREPARE):
9968         Use PATH="/nonexistent;.", not PATH=".;.", as FreeBSD ksh2002
9969         apparently treats PATH="nonexistent" as if it contained ".".
9970         Bug reported by Stefan `Sec' Zehl.
9972 2002-07-22  Alexandre Duret-Lutz  <duret_g@epita.fr>
9974         * doc/autoconf.texi (Limitations of Make): Mention the special
9975         handling of the obj/ directory by BSD make.
9977 2002-07-20  Kevin Ryde  <user42@zip.com.au>
9979         * doc/autoconf.texi (Limitations of Make): Add HP-UX IA-64 trailing
9980         backslashes.
9982 2002-07-19  Akim Demaille  <akim@epita.fr>
9984         * doc/autoconf.texi (Function Portability): `exit'.
9985         (Programming in M4sh): Ethymology of M4sh.
9987 2002-07-19  Akim Demaille  <akim@epita.fr>
9989         * doc/autoconf.texi (AC_LIBOBJ vs LIBOBJS): More about $U.
9991 2002-07-18  Akim Demaille  <akim@epita.fr>
9993         Version 2.53b.
9995 2002-07-18  Akim Demaille  <akim@epita.fr>
9997         * config/config.guess, config/config.sub: Update.
9999 2002-07-18  Akim Demaille  <akim@epita.fr>
10001         Handle LIBOBJS and LTLIBOBJS once for all, including Libtool's and
10002         Automake's parts.
10004         * lib/autoconf/general.m4 (_AC_LIBOBJS_NORMALIZE): New.
10005         * lib/autoconf/status.m4 (AC_OUTPUT_COMMANDS_PRE): Call it.
10006         * tests/semantics.at (AC_REPLACE_FUNCS): Adjust.
10008 2002-07-18  Akim Demaille  <akim@epita.fr>,
10009             Alexandre Duret-Lutz  <duret_g@epita.fr>
10011         * lib/autoconf/status.m4 (_AC_OUTPUT_HEADERS): Install
10012         _AC_AM_CONFIG_HEADER_HOOK for Automake 1.7.
10014 2002-07-17  Russ Allbery  <rra@stanford.edu>
10016         * doc/autoconf.texi (Initializing configure): Clarify the
10017         description of the tarname default.
10019 2002-07-17  Andreas Buening  <andreas.buening@nexgo.de>
10021         * lib/autoconf/functions.m4 (AC_FUNC_FORK): Don't set
10022         ac_cv_func_fork_works before running _AC_FUNC_FORK, do it if the
10023         latter was not run.
10025 2002-07-17  Akim Demaille  <akim@epita.fr>
10027         * lib/Autom4te/General.pm (find_file): Browse the directories in
10028         the order they are given.
10030 2002-07-17  Akim Demaille  <akim@epita.fr>
10032         * tests/wrapsh.as, tests/wrappl.as: Merge into...
10033         * tests/wrapper.as: this.
10034         * tests/Makefile.am, configure.ac: Adjust.
10036 2002-07-17  Mark D. Roth  <roth@feep.net>
10038         * configure.ac: Add --enable-site-macro-dir option.
10039         * bin/Makefile.am: Expand @SITE_MACRO_DIR@.
10040         * bin/autom4te.in: Add --prepend-include, --include-envvar, and
10041         --site-macro-subdir options.
10042         * bin/autoconf.in: Add --prepend-include option.
10043         * bin/autoheader.in: Add --prepend-include option.
10044         * bin/autoreconf.in: Add --prepend-include option.
10045         * bin/autoscan.in: Add --prepend-include option.
10046         * bin/autoupdate.in: Add --prepend-include option.
10047         * doc/autoconf.texi: Document use of $AC_MACRO_PATH and site
10048         macro directory, remove note that include path directories are
10049         used in reverse order, and document --prepend-include option.
10050         * lib/autom4te.in: Use --prepend-include instead of --include.
10051         * tests/wrapsh.in: Use --prepend-include instead of --include.
10053 2002-07-17  Akim Demaille  <akim@epita.fr>
10055         * lib/autoconf/general.m4 (_AC_INIT_PACKAGE): `_' is allowed in
10056         tarnames.
10057         * doc/autoconf.texi (Initializing configure): Adjust.
10059 2002-07-17  Akim Demaille  <akim@epita.fr>
10061         * lib/autoconf/functions.m4 (AC_FUNC_REALLOC, _AC_FUNC_REALLOC)
10062         (_AC_FUNC_MALLOC): New.
10063         (AC_FUNC_MALLOC): Use the latter.
10064         Define HAVE_MALLOC to 0 if broken.
10065         * doc/autoconf.texi (Particular Functions): Adjust.
10067 2002-07-16  Akim Demaille  <akim@epita.fr>
10069         * lib/autoconf/c.m4 (AC_C_BACKSLASH_A): New.
10070         * doc/autoconf.texi (C Compiler): Adjust.
10072 2002-07-09  Akim Demaille  <akim@epita.fr>
10074         * doc/autoconf.texi: Properly set the ``header'' part.
10076 2002-07-09  Akim Demaille  <akim@epita.fr>
10078         * doc/autoconf.texi (Systemology): Some about Darwin.
10080 2002-07-09  Alexandre Duret-Lutz  <duret_g@epita.fr>
10082         * lib/autoconf/specific.m4 (AC_CYGWIN, AC_EMXOS2, AC_MINGW32):
10083         Don't use AC_REQUIRE in AU_DEFUN.
10085 2002-07-09  Art Haas  <ahaas@neosoft.com>
10087         * doc/autoconf.texi: Use @enddots{} or @dots{} where appropriate.
10089 2002-07-02  Alexandre Duret-Lutz  <duret_g@epita.fr>
10091         * bin/autoheader.in, bin/autom4te.in, bin/autoreconf.in,
10092         bin/autoupdate.in, bin/ifnames.in, lib/Autom4te/General.pm,
10093         lib/Autom4te/Struct.pm, lib/Autom4te/XFile.pm: Add local variables
10094         so that Emacs setups GNU style for perl-mode and cperl-mode.
10096 2002-06-27  Paul Eggert  <eggert@twinsun.com>
10098         * config/install-sh: Quote $src.  Prefer || to test's -o option,
10099         as per "Limitations of Builtins".
10100         * tests/atspecific.m4 (AT_CHECK_ENV): Likewise, for && vs test -a.
10101         * tests/semantics.at (AC_C_BIGENDIAN): Likewise.
10103         * tests/mktests.sh: Use grep instead of fgrep, as per
10104         "Limitations of Builtins".
10106 2002-06-15  Paul Eggert  <eggert@twinsun.com>
10108         * tests/wrapsh.as (AUTOCONF, AUTOHEADER, AUTOM4TE, AUTOM4TE_CFG,
10109         autom4te_perllibdir): Set to top build dir or src dir as appropriate,
10110         so that we consistently test the just-built programs.
10111         * tests/wrappl.as: Likewise.
10113 2002-06-12  Paul Eggert  <eggert@twinsun.com>
10115         * bin/autoconf.as (AUTOM4TE): Default to a fully qualified path
10116         name, so that symlinks to 'autoconf' work properly.  Bug reported
10117         by Bruno Haible.
10118         * bin/autoheader.in (AUTOM4TE): Likewise.
10119         * bin/autoreconf.in (autoconf, autoheader): Likewise.
10120         * bin/autoscan.in (autom4te): Likewise.
10121         * bin/autoupdate.in (autom4te): Likewise.
10123         * lib/autoconf/functions.m4 (_AC_LIBOBJ_FNMATCH): Also check for
10124         btowc, to fix a portability bug with diffutils-2.8.2/lib/fnmatch.c
10125         on Solaris 2.5.1.
10127 2002-06-11  Andreas Schwab  <schwab@suse.de>
10129         * doc/autoconf.texi: Add more dir entries.
10131 2002-06-10  Alexandre Duret-Lutz  <duret_g@epita.fr>
10133         * bin/autom4te.in ($cache): Don't define using `$me', the name
10134         of the cache should not depend on the name under which autom4te
10135         was installed.
10137 2002-06-07  Akim Demaille  <akim@epita.fr>
10139         * tests/tools.at (autoconf: forbidden tokens, basic)
10140         (autoconf: forbidden tokens, exceptions): Adjust to the change of
10141         words in autom4te.in.
10143 2002-06-07  Peter Eisentraut  <peter_e@gmx.net>
10145         * lib/autoconf/c.m4 (AC_LANG_PROGRAM(C)): Use
10146         _AC_LANG_PROGRAM_C_F77_HOOKS.
10148 2002-06-07  Akim Demaille  <akim@epita.fr>
10150         * lib/autoconf/functions.m4 (AC_REPLACE_FUNC_FNMATCH): Typo,
10151         rename as...
10152         (AC_REPLACE_FNMATCH): this.
10153         * tests/mktests.sh (exclude_list): Exclude AC_REPLACE_FNMATCH,
10154         AC_FUNC_FNMATCH_GNU.
10156 2002-06-07  Akim Demaille  <akim@epita.fr>
10158         * doc/autoconf.texi (Systemology): Point to Tru64 docs, and the
10159         Rosetta Stone for Unix.
10161 2002-06-07  Akim Demaille  <akim@epita.fr>
10163         * bin/autom4te.in (warn_forbidden): When rejecting a token,
10164         suggest m4_pattern_allow.
10165         Suggested by Adam J. Richter.
10167 2002-06-07  Akim Demaille  <akim@epita.fr>
10169         * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS): Initialize
10170         ac_config_libobj_dir.
10171         (AC_CONFIG_LIBOBJ_DIR): New.
10172         * lib/autoconf/functions.m4 (_AC_FUNC_FNMATCH): Split into...
10173         (_AC_FUNC_FNMATCH_IF, _AC_LIBOBJ_FNMATCH): these.
10174         Use ac_config_libobj_dir to find the replacement files.
10175         (AC_FUNC_FNMATCH, AC_FUNC_FNMATCH_GNU): Split into...
10176         (AC_FUNC_FNMATCH, AC_FUNC_FNMATCH_GNU, AC_REPLACE_FNMATCH)
10177         (AC_REPLACE_FNMATCH_GNU): these.
10178         (AC_FUNC_GETLOADAVG): Use ac_config_libobj_dir.
10179         * doc/autoconf.texi (Particular Functions, Generic Functions): Adjust.
10180         * tests/mktests.sh (ac_exclude_list): Don't check
10181         AC_FUNC_GETLOADAVG as it requires getloadavg.c which is not shipped.
10183 2002-06-06  Paul Eggert  <eggert@twinsun.com>
10185         * lib/autoconf/status.m4 (_AC_OUTPUT_LINKS): Fall back on cp
10186         if ln doesn't work.
10187         * NEWS: Likewise.
10188         * doc/autoconf.texi (Configuration Links): Likewise.
10189         (Limitations of Usual Tools): Prefer $(LN_S) to ln -s || ln.
10191 2002-06-05  Paul Eggert  <eggert@twinsun.com>
10193         * config/config.guess, config/config.sub, config/texinfo.tex:
10194         Update from masters.
10196 2002-05-29  Paul Eggert  <eggert@twinsun.com>
10198         * bin/autom4te.in ($m4): Do not assume that egrep and fgrep exist.
10199         * lib/autoconf/c.m4 (AC_C_BIGENDIAN): Likewise.
10200         * lib/autoconf/general.m4 (_AC_RUN_LOG_STDERR, AC_EGREP_CPP):
10201         Likewise.
10202         * lib/autoconf/Makefile.am (check-local): Likewise.
10203         * lib/autoconf/status.m4 (AC_CONFIG_HEADER): Likewise.
10204         * lib/autoconf/types.m4 (commentary only): Likewise.
10205         * lib/autotest/general.m4 (AT_INIT, AT_CHECK): Likewise.
10206         * lib/autotest/Makefile.am (check-local): Likewise.
10207         * lib/m4sugar/Makefile.am (check-local): Likewise.
10208         * tests/atspecific.m4 (AT_CONFIGURE_AC, AT_CHECK_DEFINES): Likewise.
10209         * tests/mktests.sh (egrep): New var; use it instead of plain egrep.
10211         * lib/autoconf/programs.m4 (AC_PROG_EGREP, AC_PROG_FGREP): New macros.
10212         * doc/autoconf.texi (Particular Programs): Document them.
10213         (Limitations of Usual Tools): Warn that egrep and fgrep may not exist.
10214         * NEWS: Likewise.
10216 2002-05-27  Paul Eggert  <eggert@twinsun.com>
10218         * lib/autoconf/types.m4 (AC_TYPE_MBSTATE_T): New macro.
10219         * NEWS, doc/autoconf.texi (Particular Types): Document it.
10220         * lib/autoconf/functions.m4 (_AC_FUNC_FNMATCH): Require it
10221         instead of AC_MBSTATE_T, which never existed.
10223 2002-05-23  Akim Demaille  <akim@epita.fr>
10225         * doc/autoconf.texi (Hosts and Cross-Compilation): Specify the
10226         version of Autoconf that is discussed.
10228 2002-05-22  Paul Eggert  <eggert@twinsun.com>
10230         * lib/autoconf/fortran.m4 (AC_PROG_F77): Remove cf77 and cft77
10231         from the default list of compilers to try.  Suggested by
10232         Kate Hedstrom.
10233         * NEWS: Document the above.
10234         * doc/autoconf.texi (Fortran 77 Compiler): Don't suggest cf77.
10236 2002-05-17  Paul Eggert  <eggert@twinsun.com>
10238         * lib/autoconf/types.m4 (AC_CHECK_MEMBER): Work correctly even if
10239         the member is itself an aggregate.  Bug reported by Sergey Poznyakoff.
10240         This improves on an earlier suggestion by H. Peter Anvin.
10242 2002-05-16  Paul Eggert  <eggert@twinsun.com>
10244         AC_FUNC_FNMATCH now tests only for POSIX compatibility.
10245         AC_FUNC_FNMATCH_GNU also tests for GNU extensions.
10246         Both macros now accept an optional source-dir arg.
10247         New macro AC_GNU_SOURCE to define _GNU_SOURCE.
10249         * NEWS: Document this.
10250         * doc/autoconf.texi (Particular Functions, UNIX Variants): Likewise.
10252         * lib/autoconf/functions.m4 (_AC_FUNC_FNMATCH): New macro.
10253         (AC_FUNC_FNMATCH): Use it.  Test only for POSIX conformance,
10254         not for GNU extensions; this undoes part of the 2000-11-03 change,
10255         reverting to 2.13-compatible behavior.
10256         Add new optional argument DIR.
10257         (AC_FUNC_FNMATCH_GNU): New macro.
10259         * lib/autoconf/specific.m4 (AC_GNU_SOURCE): New macro.
10261 2002-05-08  Paul Eggert  <eggert@twinsun.com>
10263         * lib/autoconf/headers.m4 (AC_HEADER_TIOCGWINSZ):
10264         Don't require AC_SYS_POSIX_TERMIOS.  The test is unnecessary,
10265         and it causes a 'test' syntax error if it fails.
10266         Bug reported by Stephen Gildea.
10268         * lib/autoconf/functions.m4 (AC_FUNC_SETVBUF_REVERSED):
10269         If prototypes are supported, use them to check this at compile-time,
10270         instead of trying to check it at run-time.  If we must do a run-time
10271         check, assume that setvbuf is standard when cross-compiling, as
10272         nonstandard setvbuf occurs only on ancient and unlikely hosts.
10273         Bug reported by Paul D. Smith.
10275         * lib/autoconf/functions.m4 (AC_FUNC_GETLOADAVG): Add optional
10276         argument specifying location of getloadavg.c.  This removes a
10277         FIXME.  This idea was taken from Jim Meyering's implementation in
10278         textutils.
10279         * doc/autoconf.texi (Particular Functions): Document this.
10280         Also, mention HAVE_NLIST_H rather than NLIST_STRUCT, since
10281         that's what the code does; this fixes a bug reported by
10282         Paul D. Smith.
10284 2002-05-03  Akim Demaille  <akim@epita.fr>
10286         * bin/autoreconf.in (autoreconf): Rewrite to use Gettext's
10287         autopoint instead of gettextize.
10288         ($uses_alocal): Rename as...
10289         ($uses_aclocal): this.
10290         * doc/autoconf.texi (autoreconf Invocation): Adjust.
10291         Suggested by Bruno Haible.
10293 2002-05-03  Akim Demaille  <akim@epita.fr>
10295         * lib/m4sugar/m4sugar.m4 (m4_map_sep): New.
10297 2002-04-29  Paul Eggert  <eggert@twinsun.com>
10299         * bin/autoreconf.in (autoreconf): Don't age aclocal.m4's input
10300         files to be 1 second older; just set them to be the same time.
10301         Also, sleep 1 second after the first aclocal, to work around
10302         problems with sub-second time stamps on the input files.
10304 2002-04-29  Thien-Thi Nguyen  <ttn@gnu.org>
10306         * doc/autoconf.texi: Mention "set -e -x" lossage
10307         under node "Limitations of Builtins".
10309 2002-04-29  Akim Demaille  <akim@epita.fr>
10311         * doc/install.texi: Better wording for setting variables when
10312         running configure.
10313         From Christian Cornelssen.
10315 2002-04-29  Akim Demaille  <akim@epita.fr>
10317         * tests/m4sh.at (LINENO): If testsuite itself is rewritten because
10318         of lack of $LINENO support, then the test will compare the $LINENO
10319         in testsuite vs. the lineno in the test file.  This is wrong, of
10320         course.
10321         Be sure to protect it.
10322         Reported by Patrick Welche.
10324 2002-04-25  Akim Demaille  <akim@epita.fr>
10326         * doc/autoconf.texi (Obsolete Macros): Typo.
10327         Reported by Vladimir Volovich.
10329 2002-04-25  Akim Demaille  <akim@epita.fr>
10331         * bin/autoreconf.in (autoreconf): Don't let aclocal.m4 be older
10332         than some of the input files, hence, on the second run of aclocal,
10333         if some of its input are younger, make them older.
10334         Suggested by Paul Eggert.
10336 2002-04-25  Akim Demaille  <akim@epita.fr>
10338         * doc/autoconf.texi (Limitations of Usual Tools): sed and `!'.
10339         Thanks to Paul Eggert.
10341 2002-04-25  Akim Demaille  <akim@epita.fr>
10343         * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS): Let ac_subst_files
10344         and ac_subst_vars be sh variables containing the list of
10345         AC_SUBST_FILES'ed and AC_SUBST'ed identifiers.  Output them in the
10346         DEFAULT diversion.
10347         (_AC_INIT_PREPARE): Use them to log them.
10348         (_AC_SUBST, _AC_SUBST_SED_PROGRAM): Remove.
10349         (AC_SUBST, AC_SUBST_FILE): Instead of buliding the
10350         _AC_SUBST_SED_PROGRAM, store the list of output files/variables in
10351         _AC_SUBST_FILES and _AC_SUBST_VARS.
10352         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES): Adjust.
10354 2002-04-24  Akim Demaille  <akim@epita.fr>
10356         * bin/autoreconf.in (autoreconf): Run automake after autoconf and
10357         autoheader, so that automake does not complain about a missing
10358         config.h.in that was to be created.
10360 2002-04-23  Akim Demaille  <akim@epita.fr>
10362         * bin/autoheader.in (parse_args): --warning takes an argument.
10363         Fixes PR/220.
10365 2002-04-22  Peter Eisentraut  <peter_e@gmx.net>
10367         * lib/autoconf/general.m4 (_AC_RUN_IFELSE): Remove gmon.out
10368         and bb.out when cleaning up.
10370 2002-04-22  Akim Demaille  <akim@epita.fr>
10372         Version 2.53a.
10374 2002-04-22  Akim Demaille  <akim@epita.fr>
10376         * tests/m4sh.at (LINENO): Fix the Zsh skip pattern.
10378 2002-04-22  Akim Demaille  <akim@epita.fr>
10380         * doc/autoconf.texi (Pretty Help Strings): Remove a spurious
10381         comma.
10382         Reported by Gregory Giannoni.
10384 2002-04-22  Akim Demaille  <akim@epita.fr>
10386         * tests/m4sh.at (LINENO): Skip the test if LINENO cannot be unset.
10387         Fixes false failures on Darwin.
10389 2002-04-21  Paul Eggert  <eggert@twinsun.com>
10391         * TODO, bin/autoupdate.in, doc/autoconf.texi,
10392         lib/autoconf/general.m4, lib/autoconf/libs.m4,
10393         lib/autoconf/status.m4, lib/m4sugar/m4sugar.m4, tests/m4sh.at,
10394         tests/tools.at: Minor spelling and grammar fixes.
10396 2002-04-20  Paul Eggert  <eggert@twinsun.com>
10398         * doc/autoconf.texi (Shell Substitutions): Fix typos in yesterday's
10399         ZSH_VERSION fixes.  Bug reported by Raja R Harinath.
10400         * lib/autotest/general.m4 (AT_INIT): Likewise.
10401         * tests/atgeneral.m4 (AT_INIT): Likewise.
10403 2002-04-19  Paul Eggert  <eggert@twinsun.com>
10405         * NEWS, TODO, bin/autom4te.in, bin/autoreconf.in, bin/autoupdate.in,
10406         doc/autoconf.texi, lib/freeze.mk, lib/Autom4te/Struct.pm,
10407         lib/autoconf/autoheader.m4, lib/autoconf/c.m4,
10408         lib/autoconf/functions.m4, lib/autoconf/general.m4,
10409         lib/autoconf/lang.m4, lib/autoconf/libs.m4, lib/autoscan/identifiers,
10410         lib/autotest/general.m4, lib/m4sugar/m4sh.m4, tests/atgeneral.m4,
10411         tests/atspecific.m4, tests/semantics.at, tests/torture.at:
10412         Minor spelling and grammar fixes.
10414         * doc/autoconf.texi: Follow the outline suggested in the GNU
10415         Sample Texts sections of the Texinfo 4.2 manual.  Most
10416         importantly, this makes sure that the copyright notices appear in
10417         all output formats.  You probably need Texinfo 4.2 to generate
10418         the manual now.
10420         Fix some bugs when using "$@" when there might be zero positional
10421         arguments in cases where this matters.
10423         * bin/autoconf.as: Rewrite so that the problem does not come up.
10424         * lib/autoconf/programs.m4 (AC_CHECK_PROG): Likewise.
10425         * lib/autoconf/status.m4 (AC_OUTPUT): Likewise.
10426         * lib/autotest/general.m4 (AT_INIT): Likewise.
10428         * bin/autoheader.in: Use 'case' statement to work around problem.
10429         * bin/auto4mte.in: Likewise.
10430         * bin/autoreconf.in: Likewise.
10431         * bin/autoscan.in: Likewise.
10432         * bin/autoupdate.in: Likewise.
10433         * bin/ifnames.in: Likewise.
10435         * doc/autoconf.texi (Shell Substitutions): Document the problem.
10437         * lib/autotest/general.m4 (AT_INIT):
10438         Use Zsh alias to work around problem.
10439         * tests/atgeneral.m4 (AT_INIT): Likewise.
10441         * tests/c.at: We can't have zero arguments, so remove workaround
10442         that is not portable to Zsh.
10444 2002-04-19  Alexandre Duret-Lutz  <duret_g@epita.fr>
10446         * bin/autoupdate.in (handle_autoconf_macros): Honor AU_DEFUNs
10447         from aclocal.m4 too.
10449 2002-04-12  Akim Demaille  <akim@epita.fr>
10451         * tests/wrappl.as: New, M4sh precursor of wrappl.in.
10453 2002-04-10  Akim Demaille  <akim@epita.fr>
10455         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Install the Zsh
10456         workaround for ${1+"$@"}.
10457         * doc/autoconf.texi (Shell Substitutions): Explain it.
10458         From Oliver Kiddle and Peter Stephenson.
10460         Have M4sh perform minimal shell sanitizing.
10462         * lib/m4sugar/m4sh.at (AS_SHELL_SANITIZE): Split the `_AS_PREPARE_*'
10463         part into...
10464         (_AS_PREPARE): this new macro.
10465         (AS_PREPARE): New.
10466         (AS_INIT): Invoke AS_SHELL_SANITIZE.
10467         * tests/m4sh.at (AT_DATA_LINENO): Use _AS_PREPARE.
10469         Adjust Autoconf and Autotest.
10471         * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS): Don't invoke
10472         AS_SHELL_SANITIZE, AS_INIT did it, but invoke AS_PREPARE.
10473         * lib/autotest/general.m4 (AT_INIT): Likewise.
10474         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS):
10475         Invoke _AS_PREPARE (not AS_PREPARE) in addition to
10476         AS_SHELL_SANITIZE.
10478         Use this M4sh to generate Autoconf's shell scripts.
10480         * tests/wrapsh.as: New, precursor of wrapsh.in.
10481         * tests/Makefile.am: Include lib/freeze.mk to get the dependencies
10482         on Autotest and M4sh.
10483         ($(TESTSUITE)): Use $(autotest_m4f_dependencies).
10484         (wrapsh.in): New target.
10485         * bin/autoconf.as: New, precursor of autoconf.in.
10486         (autoconf.in): New target.
10488 2002-04-09  Alexandre Duret-Lutz  <duret_g@epita.fr>
10490         * doc/autoconf.texi (Limitations of Make): Mention the issue
10491         with indented comments in rules.
10493 2002-04-09  Andreas Schwab  <schwab@suse.de>
10495         * lib/autoconf/status.m4 (_AC_SRCPATHS): Handle empty
10496         ac_top_builddir when setting ac_abs_top_builddir.
10498 2002-04-06  Kevin Ryde  <user42@zip.com.au>
10500         * doc/autoconf.texi (Systemology): Add link to Unix V7 online docs.
10501         (Portable Shell): Cross reference to Systemology.
10503 2002-04-05  Akim Demaille  <akim@epita.fr>
10505         * bin/autoreconf.in (autoreconf): Be sure to accumulate the
10506         directories when descending in a SUBDIRS.
10507         Reported by Ezra Peisach.
10509 2002-04-04  Andreas Schwab  <schwab@suse.de>
10511         * lib/m4sugar/m4sh.m4 (_AS_PATH_WALK): Only simplify if path
10512         contains no literal separators.
10514 2002-04-03  Akim Demaille  <akim@epita.fr>
10516         * lib/autoconf/status.m4 (_AC_CONFIG_FILE, _AC_CONFIG_HEADER)
10517         (_AC_CONFIG_COMMAND, _AC_CONFIG_LINK): New.
10518         Use dnl, not the KILL diversion.
10519         Extracted from...
10520         (AC_CONFIG_FILES, AC_CONFIG_HEADERS, AC_CONFIG_COMMANDS)
10521         (AC_CONFIG_LINKS): here.
10522         Adjust.
10523         Don't use the KILL diversion, as it kills spurious output, which
10524         results in failures being hidden.
10525         Use m4_defn where appropriate.
10526         (AC_CONFIG_IF_MEMBER): Kill the real bug: a spurious parenthesis
10527         after the second argument.
10528         Use m4_defn.
10529         * lib/autom4te.in (Autoconf, Autotest, M4sh): Don't pass --warning
10530         syntax, as it is provided by M4sugar.
10531         * tests/torture.at (Multiple AC_CONFIG_FILES): New.
10533 2002-04-03  Andreas Schwab  <schwab@suse.de>
10535         * lib/m4sugar/m4sugar.m4 (m4_bmatch): Make sure m4_bregexp is not
10536         expanded if $# <= 2.
10538         * bin/autoreconf.in (autoreconf): Run automake after rerunning
10539         aclocal.
10541 2002-04-03  Akim Demaille  <akim@epita.fr>
10543         * lib/autoconf/lang.m4 (_AC_COMPILER_OBJEXT_REJECT)
10544         (_AC_COMPILER_EXEEXT_REJECT): New.
10545         Also recognize *.bb and *.bbg as compilation byproducts.
10546         (_AC_COMPILER_EXEEXT_DEFAULT, _AC_COMPILER_EXEEXT_O)
10547         (_AC_COMPILER_OBJEXT): Use them.
10548         Fixes Debian #138666.
10550 2002-04-02  Peter Eisentraut  <peter_e@gmx.net>
10552         Integrate AC_PROG_CC_STDC into AC_PROG_CC.
10554         * lib/autoconf/c.m4 (AC_PROG_CC_STDC): Rename to _AC_PROG_CC_STDC.
10555         AU_DEFUN old name.  Use _AC_COMPILE_IFELSE.
10556         (AC_PROG_CC): Call _AC_PROG_CC_STDC.
10557         (AC_C_INLINE): Do not require AC_PROG_CC_STDC.
10558         (AC_C_CONST): Same.
10559         (AC_C_INLINE): Same.
10560         (AC_C_PROTOTYPES): Same.  Require AC_PROG_CC instead.
10561         * doc/autoconf.texi, NEWS: Document.
10562         * tests/mktests.sh (au_exclude_list): Add AC_PROG_CC_STDC and
10563         AC_C_CROSS.
10565 2002-04-02  Akim Demaille  <akim@epita.fr>
10567         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Invoke
10568         _AS_MKDIR_P_PREPARE.
10570 2002-03-28  Kevin Ryde  <user42@zip.com.au>
10572         * lib/autoconf/c.m4 (AC_C_INLINE): Test with a typedef return value,
10573         to avoid versions of HP C which don't allow that.
10575 2002-03-27  Paul Eggert  <eggert@twinsun.com>
10577         * lib/m4sugar/m4sh.m4 (_AS_BASENAME_PREPARE): New macro.
10578         (AS_SHELL_SANITIZE): Invoke it.
10579         (AS_BASENAME): AS_REQUIRE it, and use $as_basename.
10581 2002-03-26  Akim Demaille  <akim@epita.fr>
10583         * doc/autoconf.texi (Portable Shell): Add pointers to FAQs.
10585 2002-03-26  Akim Demaille  <akim@epita.fr>
10587         * doc/autoconf.texi (Introduction): The GNATS base moved.
10589 2002-03-25  Paul Eggert  <eggert@twinsun.com>
10591         * tests/m4sh.at: Don't rely on "PATH=test:$PATH test-1" working
10592         as POSIX requires, as it doesn't work with Zsh.
10593         * doc/autoconf.texi (Assignments): Document the problem.
10595 2002-03-25  Alexandre Duret-Lutz  <duret_g@epita.fr>
10597         * doc/autoconf.texi (Limitations of Make): Mention more issue
10598         about VPATH, overriding of macros in sub-makes, and handling of
10599         SHELL.
10601 2002-03-21  Paul Eggert  <eggert@twinsun.com>
10603         * doc/autoconf.texi (Here-Documents): Mention Solaris 8 dtksh
10604         problem with here-document buffer boundaries.
10606         * lib/m4sugar/m4sh.m4 (_AS_LINENO_PREPARE): Unset ENV and BASH_ENV
10607         when reinvoking the shell, to work around problems with installers
10608         who put strange things like "cd" commands in their environments.
10610 2002-03-19  Akim Demaille  <akim@epita.fr>
10612         * tests/semantics.at (AC_C_BIGENDIAN): s/unknow/unknown/.
10613         From Aaron Ucko.
10615 2002-03-19  Akim Demaille  <akim@epita.fr>
10617         * bin/autoscan.in (scan_file): Specify the location in `&used'
10618         invocations.
10619         From Nicolas Joly.
10621 2002-03-19  Akim Demaille  <akim@epita.fr>
10623         * doc/autoconf.texi: Adjust @code/@command, @xref/@ref usage.
10624         From Nishio Futoshi.
10626 2002-03-19  Akim Demaille  <akim@epita.fr>
10628         * lib/m4sugar/m4sugar.m4 (m4_define_default, m4_fst, m4_map): New.
10630 2002-03-18  Paul Eggert  <eggert@twinsun.com>
10632         * doc/autoconf.texi (Programming in M4sh): Add AS_MKDIR_P.
10633         (Limitations of Usual Tools): Add mkdir section.
10635         * lib/m4sugar/m4sh.m4 (_AS_MKDIR_P_PREPARE): New macro.
10636         (AS_MKDIR_P): Require it.  Use mkdir -p if available, falling
10637         back on AS_DIRNAME to compute prefixes otherwise; this is
10638         roughly what mkinstalldirs does.  That way, we need not have
10639         our own filename disassembler.  The old disassembler did not
10640         work with Solaris 8 dtksh, which is ksh Version M-12/28/93d.
10642         * lib/autotest/general.m4 (AT_INIT, AT_CLEANUP):
10643         Create at_test_all by a series of assignments,
10644         not by a single assignment of a long string.  The latter causes ksh
10645         version 11/16/88g to silently misbehave on OpenServer 5.0.6a,
10646         presumably because of a buffer overrun.
10648 2002-03-14  Paul Eggert  <eggert@twinsun.com>
10650         * lib/autotest/general.m4 (at_times_skip):
10651         Renamed from at_times.  Now a boolean.
10652         ksh93 Version M-12/28/93d doesn't like 'x=times; $x'; it
10653         says 'times: not found'.
10655 2002-03-14  Akim Demaille  <akim@epita.fr>
10657         * bin/autoreconf.in (&study_gettextize): New.
10658         (&autoreconf): Handle newest gettextize.
10659         Rerun aclocal if needed.
10660         Suggested by Andreas Schwab.
10662 2002-03-13  Akim Demaille  <akim@epita.fr>
10664         * doc/autoconf.texi (Special Shell Variables): More about IFS.
10666 2002-03-13  Akim Demaille  <akim@epita.fr>
10668         * doc/autoconf.texi (Header Portability): New.
10669         Add information about stdint.h and inttypes.h from Paul Eggert.
10671 2002-03-13  Akim Demaille  <akim@epita.fr>
10673         * doc/autoconf.texi (Limitations of Usual Tools): Some about `cp
10674         -p'.
10675         From Bob Proulx.
10677 2002-03-12  Akim Demaille  <akim@epita.fr>
10679         * lib/m4sugar/m4sh.m4 (AS_BASENAME_EXPR): AS_REQUIRE, not
10680         m4_require.
10682 2002-03-11  Andreas Schwab  <schwab@suse.de>
10684         * configure.ac: Explicitly check for EMACS since AM_PATH_LISPDIR
10685         does not do it if --with-lispdir is given.
10687 2002-03-08  Akim Demaille  <akim@epita.fr>
10689         Version 2.53.
10691 2002-03-08  Akim Demaille  <akim@epita.fr>
10693         * doc/autoconf.texi (Subdirectories): Clarify that the
10694         subdirectory should exist.
10696 2002-03-08  Akim Demaille  <akim@epita.fr>
10698         * Makefile.am (AUTOMAKE_OPTIONS): 1.6.
10700 2002-03-08  Akim Demaille  <akim@epita.fr>
10702         * bin/autom4te.in (&handle_m4): Do not foreach with `$_' as it
10703         aliases the actual variables, and modifications of the former
10704         affect the latter.
10706 2002-03-08  Akim Demaille  <akim@epita.fr>
10708         * bin/autom4te.in (&handle_m4): Protect us from corrupted file
10709         because of C-c: have m4 output in tmp files, then mv them.
10711 2002-03-08  Akim Demaille  <akim@epita.fr>
10713         * bin/autoconf.in, bin/autoheader.in, bin/autom4te.in,
10714         * bin/autoreconf.in, bin/autoscan.in, bin/autoupdate.in,
10715         * bin/ifnames.in: Copyright update.
10717 2002-03-08  Akim Demaille  <akim@epita.fr>
10719         * doc/autoconf.texi (Invoking autom4te): New.
10721 2002-03-05  Akim Demaille  <akim@epita.fr>
10723         * doc/autoconf.texi (Specifying Names): Clarification suggested by
10724         Kevin Ryde.
10726 2002-03-05  Akim Demaille  <akim@epita.fr>
10728         Version 2.52i.
10730 2002-03-04  Akim Demaille  <akim@epita.fr>
10732         * doc/autoconf.texi (AC_LIBOBJ vs. LIBOBJS): New.
10733         * lib/autoconf/general.m4 (AC_INIT): More informative error
10734         message for LIBOBJ.
10736 2002-03-04  Akim Demaille  <akim@epita.fr>
10738         * lib/freeze.mk ($(build_libdir)/m4sugar/version.m4): New, for
10739         parallel builds.
10741 2002-03-04  Akim Demaille  <akim@epita.fr>
10743         * doc/autoconf.texi (Transforming Names): Equality between target
10744         and host is irrelevant.
10745         (Specifying Names, Canonicalizing): Remove all references to the
10746         backward compatibility hooks.  Rather, collect them all into...
10747         (Hosts and Cross-Compilation): this new section.
10748         * doc/install.texi (System Type): Ditto.
10749         * lib/autoconf/general.m4 (AC_CANONICAL_HOST): Explicitly state
10750         that `--host' implies cross-compilation.
10752 2002-03-04  Akim Demaille  <akim@epita.fr>
10754         * doc/autoconf.texi (Evaluation Macros): New.
10755         * lib/m4sugar/m4sugar.m4 (m4_lquote): Remove, it is totally
10756         useless.
10757         (_m4_foreach): Define the variant with immediate evaluation so
10758         that it contains exactly the items, not an expression which
10759         evaluation is the current item.
10760         (m4_re_string, m4_re_word): Don't over quote them.
10762 2002-03-04  Akim Demaille  <akim@epita.fr>
10764         Instead of having stacking `shift's evaluated at the end, let
10765         `foreach' loops immediately evaluate them.
10767         * lib/m4sugar/m4sugar.m4 (m4_quote, m4_dquote): Use $@ rather than
10768         $*.  This is the n-th time I change my mind, but hopefully this is
10769         the last...
10770         (m4_lquote): New.
10771         (m4_text_wrap): Use m4_foreach, which is finally correct _and_
10772         efficient.
10773         (m4_foreach_quoted, m4_car_quoted, _m4_foreach_quoted): Remove, as
10774         it was only a hack for m4_text_wrap.
10775         (m4_car2): Remove, replaced by...
10776         (m4_cdr): New.
10777         (_m4_foreach): Adjust.
10778         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Adjust, and use
10779         m4_bpatsubst for clarification.
10781 2002-03-04  Akim Demaille  <akim@epita.fr>
10783         * doc/autoconf.texi (Changequote is Evil): New.
10785 2002-03-03  Kevin Ryde  <user42@zip.com.au>
10787         * doc/autoconf.texi (Portable Shell): Mention 32-byte #! length limit
10788         on old systems like SunOS.
10790 2002-03-01  Peter Eisentraut  <peter_e@gmx.net>
10792         * lib/autoconf/c.m4, lib/autoconf/fortran.m4,
10793         lib/autoconf/functions.m4, lib/autoconf/general.m4,
10794         lib/autoconf/headers.m4, lib/autoconf/lang.m4,
10795         lib/autoconf/programs.m4, lib/autoconf/status.m4: Improve spelling
10796         of messages.
10798 2002-02-28  Akim Demaille  <akim@epita.fr>
10800         * lib/autotest/general.m4 (AT_INIT): Suggest a title to the
10801         message to be sent.
10803 2002-02-28  Kevin Ryde  <user42@zip.com.au>
10805         * doc/autoconf.texi (Function Portability): Add va_copy and va_list.
10807 2002-02-25  Akim Demaille  <akim@epita.fr>
10809         * lib/autoconf/functions.m4 (AC_FUNC_SETPGRP): Fix the test.
10810         From Akinori Musha.
10812 2002-02-13  Alexandre Duret-Lutz  <duret_g@epita.fr>
10814         * lib/Autom4te/XFile.pm (getline, getlines): New functions,
10815         translate \r\n to \n.
10817 2002-02-07  Akim Demaille  <akim@epita.fr>
10819         Version 2.52h.
10821 2002-02-07  Akim Demaille  <akim@epita.fr>
10823         Fix Autoconf PR/209.
10824         Also reported by Frank Denis.
10826         * lib/m4sugar/m4sh.m4 (_AS_PATH_WALK): Don't over quote.
10828 2002-02-07  Akim Demaille  <akim@epita.fr>
10830         Fix Autoconf PR/207:
10831         AC_PREFIX_PROGRAM fails with dashed program names
10833         * lib/autoconf/general.m4 (AC_PREFIX_PROGRAM): Just use a fresh
10834         variable when looking for the prefix program.
10835         Now it also works for shell variables.
10837 2002-02-07  Akim Demaille  <akim@epita.fr>
10839         * doc/autoconf.texi (Limitations of Builtins): More about
10840         case/esac.
10842 2002-02-06  Akim Demaille  <akim@epita.fr>
10844         * lib/autoconf/status.m4 (_AC_OUTPUT_COMMANDS): Don't output empty
10845         case/esac, some shells don't support it.
10846         Reported by Zack Weinberg.
10847         * tests/torture.at (AC_CONFIG_COMMANDS with empty commands): New.
10849 2002-02-06  Akim Demaille  <akim@epita.fr>
10851         * lib/autotest/general.m4 (AT_INIT): When handling --keywords, be
10852         sure not to introduce newlines in at_groups.
10853         * lib/autotest/Makefile.am (autotest.m4f): Typo.
10855 2002-02-06  Akim Demaille  <akim@epita.fr>
10857         * tests/torture.at (Configuring subdirectories): Skip if aclocal
10858         is not available.
10860 2002-02-05  Paul Eggert  <eggert@twinsun.com>
10862         * doc/autoconf.texi (Specific Compiler Characteristics):
10863         Describe HP-UX cc bug workaround more accurately.
10864         * lib/autoconf/types.m4 (AC_CHECK_SIZEOF): Cast to long,
10865         not unsigned long.
10866         * tests/semantics.at (AC_CHECK_SIZEOF): Check non-GCC
10867         cross-compilers, too.  This undoes some of the most recent change
10868         to this file.
10870 2002-02-05  Akim Demaille  <akim@epita.fr>
10872         * tests/Makefile.am (check_SCRIPTS): Use it, instead of WRAPPERS,
10873         to make sure they are up to date when `check' is run.
10875 2002-02-05  Akim Demaille  <akim@epita.fr>
10877         * doc/autoconf.texi (Making testsuite Scripts): Document
10878         package.m4.
10880 2002-02-05  Akim Demaille  <akim@epita.fr>
10882         * lib/freeze.mk: New.
10884 2002-02-05  Akim Demaille  <akim@epita.fr>
10886         Implement `autom4te --freeze'.
10888         * bin/autom4te.in (&freeze): New.
10889         * lib/autoconf/autoconf.m4, lib/autotest/general.m4,
10890         * lib/m4sugar/m4sh.m4: Don't include files given by autom4te.
10892 2002-02-05  Akim Demaille  <akim@epita.fr>
10894         * bin/autom4te.in (&parse_args): Implement `frozen files are
10895         optional are the sum of the previous files on the command line'.
10896         Also, pass `--reload-state=' on them, so...
10897         (handle_m4): don't.
10898         * lib/autom4te.in (Autotest, Autoconf): Rely on M4sh.
10899         (M4sh): Rely on M4sugar.
10900         (Autotest, M4sh, M4sugar): Use frozen files.
10902 2002-01-31  Akim Demaille  <akim@epita.fr>
10904         * lib/autoconf/general.m4 (_AC_INIT_PACKAGE): Accept $4.
10905         * doc/autoconf.texi (Initializing configure): Adjust.
10907 2002-01-30  Akim Demaille  <akim@epita.fr>
10909         * lib/autoconf/general.m4 (_AC_INIT_PACKAGE): Map non
10910         alphanumeric to `-' instead of `_'.
10912 2002-01-30  Akim Demaille  <akim@epita.fr>
10914         * tests/semantics.at (AC_CHECK_SIZEOF): Split into two tests: one
10915         for plain code, the other for cross-compilation code.  The latter
10916         is now run with GCC only.
10917         * doc/autoconf.texi (Compilers and Preprocessors): New.
10919 2002-01-30  Akim Demaille  <akim@epita.fr>
10921         * lib/autoconf/general.m4 (_AC_INIT_PACKAGE): Support pre-defined
10922         values.
10923         * doc/autoconf.texi (Initializing configure): Explain how to
10924         change AC_INIT default values.
10926 2002-01-29  Akim Demaille  <akim@epita.fr>
10928         * tests/torture.at (Configuring subdirectories): Use configure.in,
10929         so that aclocal 1.4 works.
10930         Reported by Alexandre Duret-Lutz and Larry Schmitt.
10932 2002-01-28  Akim Demaille  <akim@epita.fr>
10934         * doc/autoconf.texi (Writing testsuite.at): AT_CLEANUP no longer
10935         needs an argument.
10937 2002-01-28  Akim Demaille  <akim@epita.fr>
10939         * lib/autotest/general.m4 (AT_INIT): Don't be ridiculous: adjust
10940         AUTOTEST_PATH *after* it was set.
10941         Don't put `.' in the PATH: the user should be precise and `./' if
10942         needed.  In addition, given that the test suite does some `cd', if
10943         `.' is in the path, the `tested programs' sections will report
10944         programs found in the test suite's directory, while during the
10945         tests (performed in their own directory), these programs are no
10946         longer visible.  In other words, the results is confusing and
10947         useless.
10948         * tests/m4sh.at: Adjust: don't rely on `.' being in the PATH.
10950 2002-01-24  Akim Demaille  <akim@epita.fr>
10952         Version 2.52g.
10954 2002-01-24  Akim Demaille  <akim@epita.fr>
10956         * bin/autoheader.in, bin/autoconf.in, bin/autoscan.in,
10957         * doc/autoconf.texi: Finally add Akim as an author.
10959 2002-01-24  Akim Demaille  <akim@epita.fr>
10961         * lib/m4sugar/m4sh.m4 (_AS_LINENO_PREPARE): Use PATH_SEPARATOR.
10962         (_AS_PATH_SEPARATOR_PREPARE): Don't expect $SHELL to be
10963         Bourne. Use /bin/sh.
10964         From Andreas Buening.
10966 2002-01-24  Akim Demaille  <akim@epita.fr>
10968         * config/config.guess, config/config.sub, config/texinfo.tex:
10969         Update from masters.
10971 2002-01-24  Akim Demaille  <akim@epita.fr>
10973         * Makefile.am (AUTOMAKE_OPTIONS): 1.5b.
10974         * config/auxdir.m4, config/cond.m4, config/depend.m4,
10975         * config/init.m4, config/install-sh.m4, config/lispdir.m4,
10976         * config/missing.m4, config/sanity.m4, config/select.m4,
10977         * config/strip.m4: Remove, to ease sync'ing with any version of
10978         Automake.
10980 2002-01-24  Akim Demaille  <akim@epita.fr>
10982         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ARGS)
10983         (_AC_INIT_PREPARE): Support -n as --no-create, as documented.
10984         Reported by Geir Ove Myhr.
10986 2002-01-21  Akim Demaille  <akim@epita.fr>
10988         * lib/autoconf/functions.m4 (AC_FUNC_MMAP): #Undef malloc.
10990 2002-01-21  Akim Demaille  <akim@epita.fr>
10992         * lib/Autom4te/General.pm (getopt): Use a more GNUish error
10993         message on invalid options.
10994         * bin/autom4te.in (parse_args): Don't use
10995         Autoconf::General::getopt with non valid options.
10997 2002-01-17  Jim Meyering  <meyering@lucent.com>
10999         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Initialize
11000         $ac_cv_exeext so we don't use an old, invalid, cached value.
11002 2002-01-11  Akim Demaille  <akim@epita.fr>
11004         * lib/autoconf/functions.m4 (AC_FUNC_STRNLEN): New, from Jim
11005         Meyering.
11006         * doc/autoconf.texi (Function Portability): Document the strnlen
11007         limitation.
11008         (Particular Functions): Document AC_FUNC_STRNLEN.
11009         * lib/autoscan/functions: Adjust.
11011 2002-01-06  Akim Demaille  <akim@epita.fr>
11013         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): Don't create
11014         package.m4, since is really depends upon configure.ac, not
11015         configure.
11016         * doc/autoconf.texi (testsuite Scripts): Adjust.
11017         * tests/Makefile.am (package.m4): New.
11018         EXTRA_DIST it since its a source.
11020 2002-01-06  Akim Demaille  <akim@epita.fr>
11022         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ARGS): Move the AC_SUBST
11023         of PACKAGE_NAME, PACKAGE_TARNAME, PACKAGE_VERSION, PACKAGE_STRING,
11024         and PACKAGE_BUGREPORT from here...
11025         (_AC_INIT_DEFAULTS): to here, since it is unrelated to the
11026         arguments.
11027         (_AC_INIT_PREPARE): AC_DEFINE these symbols.
11028         * lib/autotest/general.m4: Use AT_PACKAGE_*, not PACKAGE_*.
11029         (AT_INIT): No longer catch `^PACKAGE_(BUGREPORT|STRING)$'.
11030         * tests/tools.at (autoheader): Adjust.
11031         * tests/atspecific.m4 (AT_CHECK_DEFINES): Adjust.
11033 2002-01-06  Akim Demaille  <akim@epita.fr>
11035         * bin/autoscan.in (scan_file): Use `&used'.
11037 2002-01-03  Akim Demaille  <akim@epita.fr>
11039         * doc/autoconf.texi (Output): Improved wording regarding use of
11040         AC_OUTPUT.
11041         From Olly Betts.
11043 2001-12-18  Kevin Ryde  <user42@zip.com.au>
11045         * doc/autoconf.texi (Function Portability): Add notes on sscanf
11046         sometimes needing writable input.
11048 2001-12-17  Jim Meyering  <meyering@lucent.com>
11050         * doc/autoconf.texi (New Macros): Tweak wording.
11052 2001-12-14  Akim Demaille  <akim@epita.fr>
11054         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): We cleaning up the
11055         trailing files, don't apply `-rf' to files which might not be
11056         created by configure (core, core.*, and *.core), but just `rm -f'.
11057         Suggested by Jonathan Kamens.
11059 2001-12-14  Aaron M. Ucko  <amu@alum.mit.edu>
11061         * lib/autoconf/general.m4: Avoid duplicates in `$ac_configure_args'.
11063 2001-12-14  Akim Demaille  <akim@epita.fr>
11065         * Makefile.am (MAINTAINERCLEANFILES): Remove configure.
11067 2001-12-13  Peter Eisentraut  <peter_e@gmx.net>
11069         * lib/autoconf/status.m4 (_AC_SRCPATHS): Rename buildpath to
11070         abs_builddir, top_buildpath to abs_top_builddir, srcpath to
11071         abs_srcdir, top_srcpath to abs_top_srcdir.
11072         (_AC_OUTPUT_FILES): Adjust.
11073         * NEWS, doc/autoconf.texi, lib/autoconf/autotest.m4,
11074         * tests/atspecific.m4, tests/autoreconf.in, tests/tools.at,
11075         * tests/wrappl.in, tests/wrapsh.in: Adjust.
11077 2001-12-12  Steven G. Johnson  <stevenj@alum.mit.edu>
11079         * lib/autoconf/fortran.m4 (_AC_PROG_F77_V_OUTPUT): Fix failed
11080         C/Fortran linking on HP/UX, by extracting the Fortran library
11081         search path from the LPATH line in the $F77 -v output.
11083 2001-12-12  Kevin Ryde  <user42@zip.com.au>
11085         * doc/autoconf.texi (File Descriptors): Use a clearer layout for the
11086         forbidden file descriptors table.
11088 2001-11-26  Akim Demaille  <akim@epita.fr>
11090         * bin/autoscan.in (%c_keywords): Build it at top level.
11091         Map to 1 in order to simplify its uses.
11093 2001-11-26  Akim Demaille  <akim@epita.fr>
11095         * bin/autoscan.in (&scan_c_file, &scan_sh_file, &scan_makefile):
11096         Remove $filepath, useless.
11097         (&scan_makefile): Don't remove the $(FOO), ${FOO} and @FOO@
11098         variables, they are really part of the tokens.
11099         Split the input line on spaces and then look for tokens.
11100         Now autoscan ceases to ask for AC_PROG_LEX for the package Bison
11101         because of `lex$U.$(OBJEXT)'.
11102         (&scan_files): Use "@list" instead of join.
11103         * doc/Makefile.am (CLEANFILES): Add *.fns.
11105 2001-11-26  Akim Demaille  <akim@epita.fr>
11107         * tests/autoreconf.in, tests/autom4te.in, tests/autoupdate.in:
11108         Remove, replaced by...
11109         * tests/wrappl.in: Be common for all the Perl executables.
11110         In particular autoscan and autoheader want -I.
11111         * configure.ac: Adjust.
11112         * lib/autoscan/headers: errno.h is portable.
11114 2001-11-26  Akim Demaille  <akim@epita.fr>
11116         * bin/autoscan.in (used): New.
11117         Use it.
11119 2001-11-26  Akim Demaille  <akim@epita.fr>
11121         * bin/autoscan.in (&scan_c_file): Better parsing of CPP
11122         directives.
11123         (&scan_sh_file): Remove a duplicate pattern.
11124         (&check_configure_ac): Use long options.
11125         * lib/autoscan/headers (alloca.h): Check with AC_FUNC_ALLOCA.
11127 2001-11-26  Akim Demaille  <akim@epita.fr>
11129         * bin/autoscan.in (scan_c_file): Fix the handling of C comments.
11130         Before, having a line containing the opening of a multi line
11131         comment made the whole line be ignored.
11133 2001-11-26  Akim Demaille  <akim@epita.fr>
11135         * doc/autoconf.texi (Using an Autotest Test Suite): New.
11136         (testsuite Scripts): Be one of its subsection.
11137         (Autotest Logs): New.
11139 2001-11-26  Akim Demaille  <akim@epita.fr>
11141         Test groups are now run two directories deeper.
11143         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): Replace srcdir,
11144         top_srcdir and top_builddir with at_srcdir, at_top_srcdir and
11145         at_top_builddir.
11146         * lib/autotest/general.m4 (AT_INIT): Compute srcdir,
11147         top_srcdir, builddir and top_builddir.
11148         Use `at_*dir' relatively to the directory containing the
11149         suite, use `*dir' when relatively to the current group dir.
11151 2001-11-25  Joseph S. Myers  <jsm28@cam.ac.uk>
11153         * doc/autoconf.texi, TODO, lib/autoconf/fortran.m4,
11154         lib/autoconf/functions.m4, lib/autoconf/headers.m4,
11155         tests/atgeneral.m4, tests/tools.at, tests/atspecific.m4: Fix
11156         spelling errors.
11158 2001-11-22  Alexandre Duret-Lutz  <duret_g@epita.fr>
11160         * doc/autoconf.texi (Using System Type): Add an example of `case
11161         $host' usage so people quit using `case $target' everywhere.
11163 2001-11-22  Akim Demaille  <akim@epita.fr>
11165         * doc/autoconf.texi (Installation Directory Variables): Englishoes
11166         spotted by Jim Meyering.
11168 2001-11-16  Paul Eggert  <eggert@twinsun.com>
11170         This patch implements a `long double' suggestion by Oliver Kiddle.
11172         * lib/autoconf/c.m4 (AC_LANG_BOOL_COMPILE_TRY(C)): Make the array
11173         static, to catch errors if the value isn't known at compile-time
11174         and the compiler supports dynamic arrays.  Change its name from
11175         `_array_' to `test_array' to avoid potential name clashes.
11176         (AC_C_LONG_DOUBLE): Make it a compile-time test, not a run-time
11177         test.  Do not define HAVE_LONG_DOUBLE if `long double' is no
11178         better than double.  Catch a bug in GCC 2.95.2 x86.
11179         * doc/autoconf.texi (C Compiler): Document the above.
11180         * NEWS: Likewise.
11182 2001-11-13  Akim Demaille  <akim@epita.fr>
11184         * tests/m4sh.at (LINENO): Protect from autom4te's substitution by
11185         hand.
11186         * tests/tools.at: Don't protect dnl, AT_DATA_M4SH does.
11188 2001-11-13  Akim Demaille  <akim@epita.fr>
11190         * lib/autotest/general.m4 (AT_INIT): After having run the test
11191         group, go back to the initial directory, not to at_suite_dir.
11193 2001-11-13  Akim Demaille  <akim@epita.fr>
11195         * tests/atspecific.m4 (AT_DATA_M4SUGAR, AT_DATA_M4SH)
11196         (AT_DATA_AUTOCONF):  Also protect @&t@ from autom4te.
11197         (AT_CHECK_AUTOCONF, AT_CHECK_AUTOHEADER): Pass no --include
11198         option.
11199         (AT_CHECK_CONFIGURE): Use absolute paths.
11200         (_AT_CHECK_AC_MACRO): Create aclocal.m4 with AC_STATE_SAVE in it.
11201         The problem is still the old one: there is no means in M4 (that I
11202         know about) to create a defining macro, because there is no means
11203         to create `$1' etc., therefore, the defining macro ``swallows''
11204         all the arguments meant to the defined macro.
11206 2001-11-13  Akim Demaille  <akim@epita.fr>
11208         * tests/atspecific.m4 (AT_DATA_AUTOCONF): New.
11209         (AT_CONFIGURE_AC): Output the definition of AC_STATE_SAVE in
11210         configure.ac.
11211         * tests/aclocal.m4: Remove, as it is no longer used.
11213 2001-11-13  Akim Demaille  <akim@epita.fr>
11215         * lib/autotest/general.m4: Change `tests?' into `groups?' in
11216         variable names when referring to a single test group, or to
11217         `suite' when referring to the whole test suite.
11218         `at_last_test' is removed: m4 compute at_format itself.
11219         (at_stdout, at_stder1, at_stderr): New variables.
11220         (AT_CHECK): Use them.
11222 2001-11-13  Akim Demaille  <akim@epita.fr>
11224         * lib/autotest/general.m4 (AT_INIT): Be sure to put `.', relative,
11225         in PATH.
11226         Create `testsuite.dir/003/run' instead of `testsuite.003'.
11227         Do it as soon as a test fails, don't wait till the end of the test
11228         suite.
11229         Don't remove $as_me.[0-9]*, since these files no longer exist.
11231 2001-11-13  Akim Demaille  <akim@epita.fr>
11233         * tests/tools.at: Use absolute paths, since we are no longer run
11234         in place.
11236 2001-11-13  Akim Demaille  <akim@epita.fr>
11238         Now that tests are running in their own private dir, there is no
11239         need to list the files to remove at the end of tests groups.
11241         * lib/autotest/general.m4 (_AT_CLEANUP_FILE, AT_CLEANUP_FILES):
11242         (AT_data_files, at_data_files): Remove.
11243         (AT_CLEANUP, AT_DATA): Simplify.
11244         (AT_INIT): Adjust.
11245         Remove the group dir if !debug && !failed.
11246         * tests/atspecific.m4: Adjust.
11248 2001-11-13  Akim Demaille  <akim@epita.fr>
11250         Start a new layout for Autotest: `testsuite' creates
11251         `testsuite.dir' in which the at-check-line etc. files are to be
11252         found, and `testsuite.dir/003' where the test group 3 is run.
11254         * lib/autotest/general.m4 (AT_INIT): at_tests_dir,
11255         at_check_line_file, at_format, at_test_normalized, at_group_dir
11256         are new variables.
11257         Create the directories.
11258         Use absolute paths for at- files.
11259         (AT_CHECK): Adjust.
11261 2001-11-11  Michael Matz  <matz@kde.org>
11263         * m4sugar.m4 (_m4_foreach): Make it linear instead quadratic.
11264         (m4_car2): New.
11265         (m4_car): Properly quote arguments.
11267 2001-11-13  Akim Demaille  <akim@epita.fr>
11269         * tests/aclocal.m4 (AC_STATE_SAVE): s/LIBOBJS/LIB@&t@OBJS/ to cope
11270         with stricter rules on LIBOBJS.
11272 2001-11-12  Paul Eggert  <eggert@twinsun.com>
11274         * lib/autoconf/c.m4 (AC_C_PROTOTYPES): Define __PROTOTYPES too.
11275         * doc/autoconf.texi (C Compiler): AC_C_PROTOTYPES now defines
11276         __PROTOTYPES too.
11278 2001-11-12  Akim Demaille  <akim@epita.fr>
11280         * lib/autoconf/functions.m4 (AC_FUNC_GETMNTENT): Use AC_CHECK_FUNCS.
11282 2001-11-12  Akim Demaille  <akim@epita.fr>
11284         * lib/autoconf/c.m4, lib/autoconf/fortran.m4,
11285         * lib/autoconf/functions.m4, lib/autoconf/general.m4,
11286         * lib/autoconf/headers.m4, lib/autoconf/libs.m4,
11287         * lib/autoconf/programs.m4, lib/autoconf/specific.m4,
11288         * lib/autoconf/types.m4: When invoking AC_DEFINE and friends,
11289         specify to what the macro should be defined (typically to 1).
11291 2001-11-12  Akim Demaille  <akim@epita.fr>
11293         * lib/autoconf/functions.m4 (AC_FUNC_STRTOD): AC_SUBST POW_LIB.
11294         From Jim Meyering.
11296 2001-11-12  Akim Demaille  <akim@epita.fr>
11298         * lib/autoconf/programs.m4 (_AC_PROG_LEX_YYTEXT_DECL): Use
11299         AC_TRY_EVAL to run $LEX, not AC_TRY_COMMAND.  This validates the
11300         definition used by Automake where LEX is +/- "${missing} lex" and
11301         `missing' itself contains variables.
11303 2001-11-12  Akim Demaille  <akim@epita.fr>
11305         * lib/autotest/general.m4 (AT_INIT): Push KILL at the end.
11306         Now that M4sh pushes BODY, the comments were output at the end of
11307         the test suites.
11309 2001-11-08  Akim Demaille  <akim@epita.fr>
11311         * bin/autoreconf.in (&autoreconf): Run aclocal before tracing, so
11312         that we can trace macros from aclocal.m4.
11313         Trace AC_PROG_LIBTOOL, not AM_PROG_LIBTOOL, since the latter is
11314         obsoleted, and redirect to the former anyway.
11315         Reported by Ralf Corsepius.
11317 2001-11-08  Akim Demaille  <akim@epita.fr>
11319         * bin/autoreconf.in (&autoreconf): AC_CONFIG_SUBIDRS are to be
11320         processed only if present.
11321         * tests/torture.at (Configuring subdirectories): Use autoreconf
11322         instead of successive calls to autoconf.
11323         Add a nonexistent subdirectory to exercise the patch above.
11324         Reported by Ralf Corsepius.
11326 2001-11-08  Kevin Ryde  <user42@zip.com.au>
11328         * doc/autoconf.texi (Limitations of Usual Tools): Note HP-UX cc
11329         doesn't accept .S files.
11331 2001-11-07  Akim Demaille  <akim@epita.fr>
11333         * lib/m4sugar/m4sugar.m4 (m4_pattern_forbid): Accepts $2.
11334         * lib/autoconf/general.m4 (AC_INTI): Forbid LIBOBJS.
11335         (_AC_LIBOBJ): s/LIBOBJS/LIB@&t@OBJS/.
11336         * bin/autom4te.in (warn_forbidden): New.
11337         (handle_output): Use it.
11338         Read m4_pattern_forbid with messages.
11340 2001-11-05  Akim Demaille  <akim@epita.fr>
11342         * bin/autom4te.in (--normalize): Remove.
11343         * lib/autom4te.in: Adjust.
11345 2001-11-05  Akim Demaille  <akim@epita.fr>
11347         * tests/Makefile.am (testsuite): Rename this target as...
11348         ($(TESTSUITE)): this.
11349         From Nicolas Joly.
11351 2001-11-05  Alexandre Duret-Lutz  <duret_g@epita.fr>
11353         * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): When removing
11354         the --prefix option, also remove it's argument.
11356 2001-11-05  Akim Demaille  <akim@epita.fr>
11358         * doc/autoconf.texi (testsuite Invocation): Update.
11359         (Writing testsuite.at): Update.
11361 2001-11-03  Akim Demaille  <akim@epita.fr>
11363         * doc/autoconf.texi: s/@code/@command/ where appropriate.
11365 2001-11-03  Akim Demaille  <akim@epita.fr>
11367         * lib/Autom4te/General.pm: (&catfile, &canonfile)
11368         (&file_name_is_absolute): New, wrappers around routines from
11369         File::Spec.
11370         Use and export them.
11371         (&find_configure_ac): Optionally take a directory where to look at.
11372         * bin/autoreconf.in (&parse_args): Trim the configure.ac part of
11373         the arguments.
11374         Default @ARGV to `.', not find_configure_ac.
11375         (&autoreconf): Argument is a directory.
11376         Trace AC_CONFIG_SUBDIRS and schedule the subdirs for autoreconf'ing.
11377         * doc/autoconf.texi (autoreconf Invocation): Update.
11379 2001-11-03  Akim Demaille  <akim@epita.fr>
11381         * lib/Autom4te/General.pm (@export_vars, @export_subs)
11382         (@export_forward_subs): New.
11383         Add basename, dirname, and fileparse.
11384         (@EXPORT): Adjust.
11385         * bin/autoreconf.in (&autoreconf): Fix call to fileparse.
11386         Don't look for aclocal flags if we already know aclocal is not
11387         used.
11388         Move aclocal.m4t only if it exists.
11389         Reported by Ezra Peisach.
11391 2001-11-03  Akim Demaille  <akim@epita.fr>
11393         * bin/autoreconf.in (&parse_args): Work only on the configure.ac
11394         passed on command line, defaulting to ./configure.ac if present.
11395         (&maybe_autoreconf, File::Find): Remove, unused.
11396         (&autoreconf): If autoconf is not used, don't try to trace.
11398 2001-11-02  Akim Demaille  <akim@epita.fr>
11400         * configure.ac: Bump to 2.52g.
11402 2001-11-02  Akim Demaille  <akim@epita.fr>
11404         Version 2.52f.
11406 2001-11-02  Akim Demaille  <akim@epita.fr>
11408         * config/config.guess, config/config.sub, doc/standards.texi:
11409         * config/lispdir.m4: Update from masters.
11410         * configure.ac: Bump to 2.52f.
11412 2001-11-02  Akim Demaille  <akim@epita.fr>
11414         * bin/autoreconf.in (&autoreconf): Set `$aclocal_flags' to ''.
11415         Don't run aclocal when aclocal.m4 is not from aclocal.
11416         From Ezra Peisach.
11417         Don't run libtoolize and gettextize if --install is not given.
11419 2001-11-01  Paul Eggert  <eggert@twinsun.com>
11421         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): _AS_CR_PREPARE needs to
11422         be invoked before _AS_LINENO_PREPARE.
11423         (_AS_LINENO_PREPARE): Use as_cr_digits and as_cr_alnum rather
11424         than character ranges.
11426         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Fix NLS before
11427         invoking AS_BASENAME.  Set the locale variables to 'C' if
11428         possible, as POSIX requires this to get the traditional
11429         behavior.
11430         * doc/autoconf.texi (Special Shell Variables): Describe the above.
11432 2001-10-31  Paul Eggert  <eggert@twinsun.com>
11434         * lib/m4sugar/m4sh.m4 (_AS_LINENO_WORKS): Do not surround body
11435         with {}, as that triggers a bug in Bash 2.05.
11437         (_AS_LINENO_PREPARE): Use Sed rather than
11438         Awk.  Fix the sed prepass to work even if there are multiple
11439         instances of $LINENO on the same line.  Do not substitute for
11440         other variables like $LINENOT.  Do not check file dates; such a
11441         check is unreliable on sufficiently fast machines, and removing
11442         the check makes the code simpler and more reliable.  Check for
11443         output and chmod failures.
11445         * doc/autoconf.texi (Special Shell Variables): Document
11446         the above.
11448 2001-10-31  Akim Demaille  <akim@epita.fr>
11450         * tests/Makefile.am (atconfig): Remove this target, Automake
11451         handles it now.
11453 2001-10-31  Akim Demaille  <akim@epita.fr>
11455         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): Do not
11456         AC_CONFIG_FILES(atlocal) as it means a file atlocal.in *must* be
11457         provided, while it is optional.
11458         * configure.ac: Adjust.
11460 2001-10-26  Paul Eggert  <eggert@twinsun.com>
11462         * NEWS, README, configure.ac, lib/Autom4te/General.pm,
11463           lib/Autom4te/Struct.pm:
11464         Require Perl 5.005_03 instead of just 5.005, as some tests fail
11465         with 5.005_02.
11467         * doc/autoconf.texi (Special Shell Variables): Document some
11468         more LINENO gotchas, particularly with respect to the Awk+Sed hack.
11470         * lib/m4sugar/m4sh.m4 (_AS_LINENO_WORKS): New macro.
11471         (_AS_LINENO_PREPARE): Use it instead of shell eval, since
11472         eval $LINENO is not portable in practice.
11474 2001-10-24  Akim Demaille  <akim@epita.fr>
11476         * lib/Autom4te/General.pm (backname): New.
11478 2001-10-24  Akim Demaille  <akim@epita.fr>
11480         * m4/: Remove, merged into...
11481         * config/: here.
11483 2001-10-23  Tim Van Holder  <tim.van.holder@pandora.be>
11485         * doc/autoconf.texi (Shellology): Mention the problems with bash
11486         2.05's use of ANSI quoting in its `set' builtin.
11488 2001-10-22  Paul Eggert  <eggert@twinsun.com>
11490         * lib/autoconf/functions.m4 (AC_FUNC_STRERROR_R):
11491         Rename ac_cv_func_strerror_r_works to ac_cv_func_strerror_r_char_p,
11492         and rename HAVE_WORKING_STRERROR_R to STRERROR_R_CHAR_P, since
11493         POSIX decided to standardize on the int flavor of strerror_r.
11494         Always do char* test, as there's no reason not to.
11495         Assign to a char* var, to catch strerror_r that returns int*.
11497         * doc/autoconf.texi (Particular Functions):
11498         Document the above changes.  Also, document the fact that
11499         AC_FUNC_STRERROR_R defines HAVE_DECL_STRERROR_R.
11501         * NEWS: Mention HAVE_WORKING_STRERROR_R -> STRERROR_R_CHAR_P.
11503 2001-10-20  Akim Demaille  <akim@epita.fr>
11505         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): The name of
11506         the executable was missing from the log.
11508 2001-10-20  Akim Demaille  <akim@epita.fr>
11510         * lib/Autom4te/General.pm (&update_file): If destination is
11511         unchanged, remove the source.
11512         (&up_to_date_p): Don't be verbose, be debug.
11513         * bin/autoreconf.in: No longer support --m4dir.
11514         (&autoreconf): Display the full path of the configure.ac we are
11515         studying.
11516         Trace it only once.
11517         Be sure to honor --force with gettextize.
11518         Always run aclocal.
11519         * doc/autoconf.texi: Adjust.
11521 2001-10-20  Akim Demaille  <akim@epita.fr>
11523         * bin/autoheader.in ($localdir, $m4, $SIMPLE_BACKUP_SUFFIX):
11524         Remove, dead.
11525         * bin/autoreconf.in (&autoreconf): Do not run gettextize when
11526         `intl' is already present, as it refuses unless --force.
11527         (&parse_args): Use -I, --include instead of the old Autoconf
11528         options.
11529         ($localdir, $autoconf_dir): Remove.
11530         (@include): New.
11531         (&maybe_autoreconf): New, to preserve $_ for File::Find.
11533 2001-10-19  Jens Petersen  <petersen@redhat.com>
11535         * lib/autoconf/programs.m4 (AC_PROG_AWK): Prefer gawk to mawk.
11536         * doc/autoconf.texi (Particular Programs): Likewise.
11538 2001-10-19  Akim Demaille  <akim@epita.fr>
11540         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES): Name the generated
11541         file in @configure_input@.
11542         Don't mention `automatically' in addition to `generated'.
11543         * tests/torture.at (#define header templates): Adjust.
11545 2001-10-19  Akim Demaille  <akim@epita.fr>
11547         * lib/emacs/autoconf-mode.el, lib/emacs/autotest-mode.el: In a
11548         comment, explain how to install automatic mode selection.
11549         From Russ Allbery.
11551 2001-10-19  Ezra Peisach  <epeisach@zif.mit.edu>
11553         * bin/autoreconf.in (autoreconf): Display the path to the
11554         configure.ac being studied.
11556 2001-10-18  Paul Eggert  <eggert@twinsun.com>
11558         * lib/autoconf/types.m4 (AC_CHECK_SIZEOF): Cast sizeof to unsigned
11559         long, to work around a bug in the HP C compiler version HP92453-01
11560         B.11.11.23709.GP.
11562         * lib/m4sugar/m4sh.m4 (AS_DIRNAME): Use 'dirname' if that works.
11563         (AS_BASENAME_EXPR): New macro.
11564         (AS_BASENAME_SED): Do not assume GNU sed semantics.
11565         (AS_BASENAME): Use 'basename' if that works; then try 'expr';
11566         and fall back on 'sed' only if the other two fail.  This makes
11567         AS_BASENAME act more like AS_DIRNAME.
11568         (as_me): Shell-quote the argument of AS_BASENAME, in case $0
11569         contains white space.
11570         * lib/autoconf/general.m4 (_AC_INIT_SRCDIR):
11571         Use AS_DIRNAME, since I think it's now DOS-friendly.
11572         * tests/m4sh.at (DIRNAME_TEST): New arg $3.
11573         Allow "dirname //FOO" to return either / or //, as POSIX allows
11574         either behavior.
11576 2001-10-10  Akim Demaille  <akim@epita.fr>
11578         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Recognize
11579         `a_out.exe' for OpenVMS 7.1, DEC C 5.5 compiler, via GNV.
11580         From Eric Sharkey.
11582 2001-10-10  Akim Demaille  <akim@epita.fr>
11584         * lib/m4sugar/m4sh.m4 (_AS_ECHO_N_PREPARE): m4_defun, not
11585         m4_define, since...
11586         (_AS_ECHO_N): AS_REQUIREs it.
11588 2001-10-10  Akim Demaille  <akim@epita.fr>
11590         * lib/autoconf/general.m4 (_AC_INCLUDES_DEFAULT_REQUIREMENTS)
11591         (AC_INCLUDES_DEFAULT): Move to...
11592         * lib/autoconf/headers.m4: here.
11593         * lib/autoconf/types.m4: Comment changes.
11594         * doc/autoconf.texi: Specify where the default includes are used
11595         in the macro prototypes.
11597 2001-10-09  Akim Demaille  <akim@epita.fr>
11599         * lib/autoconf/autoconf.m4 (m4_patsubst, m4_regexp): New
11600         transition code.
11602 2001-10-08  Akim Demaille  <akim@epita.fr>
11604         * bin/autoreconf.in (&autoreconf): Remove debugging code.
11605         (&parse_args): Pass verbosity/debugging options to subtools when
11606         --debug, not when --verbose.
11607         * lib/autom4te.in (Autoreconf-preselections): New.
11608         (Autoconf): Use it.
11610 2001-10-08  Akim Demaille  <akim@epita.fr>
11612         * bin/autoreconf.in (autoreconf): Run libtoolize when appropriate.
11614 2001-10-08  Akim Demaille  <akim@epita.fr>
11616         * doc/autoconf.texi (autoreconf Invocation): Adjust.
11617         * bin/autoreconf.in (autoreconf): Run gettextize when appropriate.
11619 2001-10-08  Akim Demaille  <akim@epita.fr>
11621         * tests/tools.at (AT_CHECK_PERL_SYNTAX): Check autoreconf.
11622         (Syntax of the shell scripts): Don't.
11623         * bin/autoheader.in, bin/autom4te.in, bin/autoreconf.in: Don't
11624         bother with $force since...
11625         * lib/Autom4te/General.pm: does.
11627 2001-10-08  Akim Demaille  <akim@epita.fr>
11629         * bin/autoreconf.in: Rewrite in Perl.
11630         * configure.ac: Adjust.
11631         * lib/Autom4te/General.pm (&up_to_date_p): New.
11632         * bin/autom4te.in (&up_to_date_p): Use it.
11633         Rename as...
11634         (&up_to_date): this.
11636 2001-10-08  Akim Demaille  <akim@epita.fr>
11638         * lib/m4sugar/m4sugar.m4 (m4_case, m4_bmatch, m4_normalize)
11639         (m4_list_cmp): Use $0 to reinvoke yourself.
11640         (m4_patsubsts): New.
11641         (m4_strip, m4_version_unletter): Use it.
11642         * tests/atspecific.m4 (AT_DATA_M4SUGAR, AT_DATA_M4SH): Likewise.
11644 2001-10-08  Akim Demaille  <akim@epita.fr>
11646         * lib/autoconf/autoconf.m4, lib/autoconf/general.m4,
11647         * lib/autoconf/libs.m4, lib/autoconf/status.m4,
11648         * lib/autoconf/types.m4, lib/autotest/general.m4,
11649         * lib/m4sugar/m4sh.m4, lib/m4sugar/m4sugar.m4, tests/atspecific.m4,
11650         * tests/torture.at: Rename m4_regexp, m4_patsubst, and m4_match to
11651         m4_bregexp, m4_bpatsubst, and m4_bmatch.
11652         * doc/autoconf.texi (Redefined M4 Macros): Adjust.
11654 2001-10-08  Akim Demaille  <akim@epita.fr>
11656         * lib/m4sugar/m4sh.m4: Use AS_REQUIRE.
11658 2001-10-08  Akim Demaille  <akim@epita.fr>
11660         * lib/m4sugar/m4sh.m4 (AS_DIRNAME_EXPR): Use AS_REQUIRE.
11661         * tests/tools.at (AT_DATA_FORBIDDEN): Rename/move/duplicate to...
11662         * tests/atspecific.m4 (AT_DATA_M4SUGAR, AT_DATA_M4SH): here.
11663         * tests/tools.at, tests/m4sh.at: Use it.
11664         * tests/m4sh.at: Don't rely on Autoconf macros.
11665         (DIRNAME_TEST): Also exercise the expr variant.
11666         * tests/m4sugar.at, tests/atspecific.m4 (AT_CHECK_M4SUGAR): The
11667         preferred M4sugar extension is now `.4s'.
11668         * tests/README: Remove.
11670 2001-10-08  Akim Demaille  <akim@epita.fr>
11672         * lib/m4sugar/m4sugar.m4 (m4_provide_ifelse): Rename as...
11673         (m4_provide_if): this.
11674         * lib/m4sugar/m4sh.m4 (AS_REQUIRE): New.
11675         * lib/autoconf/general.m4 (AS_DEFUN, AC_DEFUN_ONCE, AC_BEFORE)
11676         (AC_REQUIRE, AC_PROVIDE, AC_PROVIDE_IFELSE): Be exact copy of the
11677         M4sugar peer, i.e., drop the `AC_PROVIDE_$1' broken marker.
11679 2001-10-08  Akim Demaille  <akim@epita.fr>
11681         Use `add-log-current-defun-function' for ChangeLog creation.
11682         Suggested by Tom Tromey.
11684         * lib/emacs/autotest-mode.el (autotest-mode-map): New.
11685         (autotest-mode): Adjust.
11686         * lib/emacs/autoconf-mode.el (autoconf-mode-map): Modernize, map
11687         'comment-region onto `C-c ;'.
11688         Comments are `#', not `dnl'.
11689         (autoconf-current-defun): New.
11690         (autoconf-font-lock-keywords): Recognize `m4_defun'.
11692 2001-10-08  Akim Demaille  <akim@epita.fr>
11694         * lib/autoconf/general.m4 (_m4_divert(BODY)): Move to...
11695         * lib/m4sugar/m4sh.m4: here.
11696         (AS_INIT): Push the BODY diversion, set the #! /bin/sh line.
11697         * lib/autoconf/general.m4 (AC_PLAIN_SCRIPT) : Remove.
11698         (AT_INIT): Replace AC_PLAIN_SCRIPT with AS_INIT invocation,
11699         include handle the m4_pattern_*, no longer push the
11700         BODY diversion nor set the /bin/sh line, AS_INIT does it.
11701         * lib/autotest/general.m4 (AT_INIT): Likewise.
11702         * tests/base.at: Adjust the tests to use AS_INIT.
11703         * tests/tools.at (AT_DATA_FORBIDDEN): New.
11704         (autoconf: forbidden tokens): Adjust to work on M4sh instead of
11705         Autoconf.
11707 2001-10-07  Paul Eggert  <eggert@twinsun.com>
11709         * doc/autoconf.texi (config.status Invocation):
11710         CONFIG_SHELL defaults to a shell that supports LINENO if available.
11712         * lib/m4sugar/m4sh.m4 (_AS_LINENO_PREPARE): If the current
11713         shell does not support LINENO, and if CONFIG_SHELL is unset or
11714         empty, and if we can find a shell that does support LINENO,
11715         then set CONFIG_SHELL to that shell and then re-execute
11716         ourselves with CONFIG_SHELL.
11718 2001-10-05  Paul Eggert  <eggert@twinsun.com>
11720         * tests/Makefile.am (clean-local): Don't invoke $(TESTSUITE) if it
11721         doesn't exist.  Remove *.tmp, as a .tmp file is created during the
11722         build of $(TESTSUITE).
11724 2001-10-05  Akim Demaille  <akim@epita.fr>
11726         * lib/m4sugar/m4sh.m4 (_AS_LINENO_PREPARE): Look in the path
11727         iff we are a bareword.
11728         Reported by Raja R Harinath.
11730 2001-10-05  Akim Demaille  <akim@epita.fr>
11732         * tests/m4sh.at (LINENO): New.
11733         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Be sure to set
11734         PATH_SEPARATOR before using it.
11735         Fix the absolute path case/esac pattern.
11736         Provide $0 as fallback for as_myself.
11737         Reported by Raja R Harinath.
11739 2001-10-05  Akim Demaille  <akim@epita.fr>
11741         * Makefile.am, config/Makefile.am, lib/emacs/Makefile.am,
11742         * m4/Makefile.am, man/Makefile.am: Add/adjust MAINTAINERCLEANFILES.
11744 2001-10-05  Akim Demaille  <akim@epita.fr>
11746         * lib/m4sugar/m4sh.m4 (_AS_LINENO_PREPARE): New, extracted from...
11747         (AS_SHELL_SANITIZE): here.  Use it.
11748         (_AS_LINENO_PREPARE): Preserve the exit status of $0.lineno.
11749         From Paul Eggert.
11751 2001-10-04  Akim Demaille  <akim@epita.fr>
11753         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Use a portable
11754         combination of Awk and sed to replace $LINENO.
11756 2001-10-02  Paul Eggert  <eggert@twinsun.com>
11758         * doc/autoconf.texi (Limitations of Builtins): You can't use
11759         "source"; it's not portable.  Remove confusing and
11760         somewhat-incorrect example involving "." and "/".
11762         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): "source" -> ".", for
11763         compatibility with POSIX shells.
11765 2001-10-02  Akim Demaille  <akim@epita.fr>
11767         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Just source 40.lineno
11768         instead of exec'ing to preserve $0 and $@.
11770 2001-10-01  Akim Demaille  <akim@epita.fr>
11772         * tests/testsuite (AT_INIT) <at_pass_list>: New.
11773         Don't run twice the same test.
11775 2001-10-01  Akim Demaille  <akim@epita.fr>
11777         * lib/autotest/general.m4 (AT_INIT) <--help>: Catch up with reality.
11778         No longer output the list of tests.
11779         <--list>: New option.
11780         <--full-help>: Remove.
11781         Complete the short/long options duality.
11782         Various small adjustments.
11784 2001-10-01  Akim Demaille  <akim@epita.fr>
11786         * doc/autoconf.texi: Use @kbd for user input.
11787         Always use `$' as shell prompt.
11789 2001-09-30  Paul Eggert  <eggert@twinsun.com>
11791         * lib/autoconf/status.m4 (AC_OUTPUT_MAKE_DEFS):
11792         Don't use nested parenthesization.  This patch was originally
11793         suggested to bug-autoconf by Philippe De Muyter on 2000-05-28,
11794         but somehow it didn't get incorporated then.
11795         * doc/autoconf.texi (Limitations of Usual Tools):
11796         Clarify remark about sed and nested parenthesization.
11798         * lib/autoconf/types.m4 (AC_CHECK_SIZEOF):
11799         Report an error if the size cannot be determined even though
11800         the type exists.
11801         * lib/autoconf/general.m4 (_AC_COMPUTE_INT_COMPILE):
11802         Check for `expr' arithmetic overflow, and for compilation failure,
11803         and invoke a new argument $4 if either is discovered.
11804         This makes _AC_COMPUTE_INT_COMPILE more like _AC_COMPUTE_INT_RUN.
11805         (_AC_COMPUTE_INT): Pass IF-FAILS arg to _AC_COMPUTE_INT_COMPILE.
11807 2001-09-28  Akim Demaille  <akim@epita.fr>
11809         * lib/emacs/autoconf-mode.el, lib/emacs/autotest-mode.el: New.
11810         * m4/lispdir.m4: New.
11811         * aclocal.m4, configure.ac: Adjust.
11813 2001-09-28  Akim Demaille  <akim@epita.fr>
11815         * lib/autotest/general.m4 (AT_VICTIMS): Rename as...
11816         (AT_TESTED): this.
11817         (AT_INIT): More the wrapped section to where it will be expanded.
11818         Output `AT_tested' only when existing.
11819         Catch unexpanded PACKAGE_STRING and PACKAGE_BUGREPORT.
11821 2001-09-27  Akim Demaille  <akim@epita.fr>
11823         Fix the passing of $? to ACTION-IF-FAILED in AC_TRY_RUN, that
11824         generates too many bug reports.
11826         * lib/autoconf/general.m4 (_AC_RUN_IFELSE): Pass the right exit
11827         status when executing the ACTION-IF-FALSE.
11828         * tests/base.at (AC_TRY_*): Rename as...
11829         (AC_TRY_COMMAND): this.
11830         (AC_RUN_IFELSE): New.
11831         * tests/compile.at (Extensions, C keywords)
11832         (AC_PROG_CPP requires AC_PROG_CC, GNU Fortran 77)
11833         (Broken/missing compilers, AC_PROG_CPP with warnings)
11834         (AC_PROG_CPP without warnings, AC_PROG_CPP via CC): Move to...
11835         * tests/c.at (Extensions, C keywords)
11836         (Broken/missing compilers, AC_PROG_CPP with warnings)
11837         (AC_PROG_CPP without warnings, AC_PROG_CPP via CC)
11838         (AC_PROG_CPP requires AC_PROG_CC): here and...
11839         * tests/fortran.at (GNU Fortran 77): there.
11840         * doc/autoconf.texi (autoconf Invocation): Fix the example:
11841         AC_TRY_RUN is about compilation, not shell commands.
11842         (Test Programs): AC_TRY_RUN works as used to be advertised.
11844 2001-09-27  Akim Demaille  <akim@epita.fr>
11846         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Fix bugs spotted by
11847         Raja R Harinath:
11848         Be sure to detect when $LINENO always returns the same value.
11849         Look for the original script, basename($0) is certainly not
11850         enough.
11851         Pass the CLI arguments to `$as_me.lineno'.
11853 2001-09-25  Akim Demaille  <akim@epita.fr>
11855         * lib/autotest/general.m4 (AT_INIT): Dump the whole config.log.
11856         Be sure the close and reopen the LOG fd before and after using tee
11857         to extend the log.
11858         <at_tests_pattern>: Adjust to the new format of at_help_all.
11860 2001-09-23  Akim Demaille  <akim@epita.fr>
11862         * bin/autom4te.in (parse_args): There can be several invocations
11863         of --language now.
11865 2001-09-23  Akim Demaille  <akim@epita.fr>
11867         * doc/autoconf.texi (Top): Wrap in @ifnottex.
11869 2001-09-23  Akim Demaille  <akim@epita.fr>
11871         * lib/autoconf/status.m4 (_AC_SRCPATHS): Compute and provide
11872         ac_buildpath, ac_top_buildpath, ac_srcpath, and ac_top_srcpath.
11873         (_AC_OUTPUT_FILES): Also substitute srcpath, top_srcpath,
11874         builddir, buildpath, top_builddir, and top_buildpath.
11875         (_AC_OUTPUT_SUBDIRS): Compute the dir variables *before* changing
11876         the current directory.
11877         * lib/autoconf/general.m4 (_AC_INIT_HELP): Compute the dir
11878         variables *before* changing the current directory.
11879         Skip nonexistent dirs.
11880         * doc/autoconf.texi (Preset Output Variables): Document these
11881         variables.
11883         * lib/autotest/general.m4: Do not reset AT_victims.
11884         Don't compute at_srcdir nor at_top_srcdir.
11886         * tests/tools.at: Hence use top_srcdir.
11888         * tests/Makefile.am, tests/autoconf, tests/autoheader,
11889         * tests/autom4te, tests/autoreconf, tests/autoupdate, tests/ifnames:
11890         Remove.
11891         * tests/autoreconf.in, tests/wrappl.in, tests/autom4te.in,
11892         * tests/wrapsh.in, tests/autoupdate.in: New.
11893         * tests/Makefile.am (DISTCLEANFILES, EXTRA_DIST): Adjust.
11894         * configure.ac: Build the position independent wrappers.
11896         * man/Makefile.am: Now that test wrappers are position
11897         independent, use them and drop dark envvar magic.
11899 2001-09-23  Akim Demaille  <akim@epita.fr>
11901         * doc/autoconf.texi (Common Shell Constructs): Rename as...
11902         (Programming in M4sh): this.
11903         Promote to @section.
11905 2001-09-23  Akim Demaille  <akim@epita.fr>
11907         * lib/autotest/general.m4 (AT_INIT): Dump config.log last.
11908         Pass $at_debug_args to the rerun test suite.
11909         * lib/m4sugar/Makefile.am (DISTCLEANFILES): New.
11910         * bin/Makefile.am (ETAGS_SH): Don't use characters ranges.
11911         From Paul Eggert.
11913 2001-09-23  Akim Demaille  <akim@epita.fr>
11915         * bin/autom4te.in (@my_warning): Remove, handled by `autom4te.cfg'.
11917 2001-09-23  Akim Demaille  <akim@epita.fr>
11919         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Fix shell
11920         over-escaping.
11922 2001-09-23  Akim Demaille  <akim@epita.fr>
11924         * lib/Autom4te/General.pm (&debug): New.
11925         * bin/autom4te.in ($language): Move to...
11926         (parse_args): here.
11927         Handle --language in languages.
11928         * lib/autom4te.in (Automake-selections, Autoheader-selections)
11929         (Autoscan-selections): New.
11930         (Autoconf): Adjust.
11932 2001-09-23  Tim Van Holder  <tim.van.holder@pandora.be>
11934         * m4/auxdir.m4, m4/cond.m4, m4/depend.m4, m4/init.m4,
11935         * m4/install-sh.m4, m4/missing.m4, m4/sanity.m4, m4/strip.m4: Updated
11936         to match current versions from CVS Automake.
11938 2001-09-23  Alexandre Duret-Lutz  <duret_g@epita.fr>
11940         * doc/autoconf.texi (Special Shell Variables): Add pdksh output
11941         for $LINENO.
11943 2001-09-22  Akim Demaille  <akim@epita.fr>
11945         * lib/autoconf/autotest.m4: Create `package.m4'.
11946         * tests/Makefile.am (package.m4): Remove.
11948 2001-09-22  Akim Demaille  <akim@epita.fr>
11950         Rely on `$LINENO' when possible instead of `__oline__'.
11952         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Provide some form of
11953         `$LINENO' support replacement when not supported.
11954         (_AS_CR_PREPARE, _AS_TR_CPP_PREPARE, _AS_TR_SH_PREPARE): Invoke
11955         them explicitly to be sure they are not output before this section
11956         (via m4_require).  Cosmetic only.
11957         * lib/autoconf/c.m4, lib/autoconf/general.m4,
11958         * lib/autoconf/programs.m4: Replace all the occurrences of
11959         `__oline__' with `$LINENO'.
11960         * doc/autoconf.texi (Special Shell Variables): Document LINENO.
11962 2001-09-21  Tim Van Holder  <tim.van.holder@pandora.be>
11964         * lib/autoconf/functions.m4 (_AC_FUNC_FORK): Replaceded an 8-bit
11965         character (u: -> ue) in a code comment.
11966         (AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK): Only run 'ln -s' if we know
11967         it works.
11969 2001-09-21  Akim Demaille  <akim@epita.fr>
11971         * Makefile.maint (AUTOM4TE): Neutralize autom4te.
11972         Suggested by Jim Meyering.
11974 2001-09-20  Tim Van Holder  <tim.van.holder@pandora.be>
11976         * lib/autoconf/programs.m4: Use extensions listed in
11977         $ac_executable_extensions when looking for programs.
11979 2001-09-20  Tim Van Holder  <tim.van.holder@pandora.be>
11981         * lib/autoconf/general.m4: Fix a small Englisho.
11982         * lib/autoconf/status.m4: Fix a small typo.  Handle DOS paths when
11983         setting up ac_dir_suffix and ac_top_builddir.
11984         * lib/m4sugar/m4sh.m4: Default CDPATH to $PATH_SEPARATOR, not ':'.
11986 2001-09-20  Tim Van Holder  <tim.van.holder@pandora.be>
11988         * doc/autoconf.texi (File System Conventions): Clarify the use of
11989         PATH_SEPARATOR.
11990         (Special Shell Variables[PATH_SEPARATOR]): Ditto.
11991         (Special Shell Variables[CDPATH]): Mention that $PATH_SEPRATOR should
11992         be used instead of ':'.
11993         * lib/autotest/general.m4: Replace occurrences of ':' in
11994         AUTOTEST_PATH with $PATH_SEPARATOR at test suite startup.
11996 2001-09-20  Tim Van Holder  <tim.van.holder@pandora.be>
11998         * tests/atgeneral.m4: Add basic support for test ranges (e.g. 7-34) as
11999         arguments.  Fixed a typo.
12001 2001-09-20  Tim Van Holder  <tim.van.holder@pandora.be>
12003         * man/Makefile.am (.x.1): Use @PATH_SEPARATOR@, not ':' to set up
12004         $PATH.  Also set AUTOM4TE_CFG, so we can process autom4te properly.
12006 2001-09-20  Tim Van Holder  <tim.van.holder@pandora.be>
12008         * bin/autoscan.in: Add 'exec-perl-if-not-run-by-perl'.
12009         * bin/autoupdate.in: Ditto.
12010         * bin/autoheader.in: Reworded a few comments.
12011         * bin/autoconf.in: Reworded help text for a few options.
12012         * bin/autoheader.in, bin/autom4te.in, bin/autoreconf.in,
12013         * bin/autoscan.in, bin/autoupdate.in: Ditto.
12015 2001-09-20  Tim Van Holder  <tim.van.holder@pandora.be>
12017         * lib/Autom4te/XFile.pm (open): Simplified the error message (we
12018         already have $file).  Set output files to binary mode (helps avoid
12019         CR issues on DOSish systems).
12021 2001-09-19  Akim Demaille  <akim@epita.fr>
12023         * lib/autotest/general.m4: Englishoes.
12024         From Tim Van Holder and Alexey Mahotkin.
12026 2001-09-18  Paul Eggert  <eggert@twinsun.com>
12028         * doc/autoconf.texi (Common Shell Constructs): New node,
12029         documenting AS_DIRNAME.
12030         (Limitations of Usual Tools): Refer to it when discussing dirname.
12031         Also, update discussion of POSIX standard to reflect latest draft.
12033         * lib/autoconf/c.m4:
12034         (AC_LANG_INT_SAVE(C)): Also support negative values, down to LONG_MIN.
12036         * lib/autoconf/general.m4 (_AC_COMPUTE_INT_COMPILE):
12037         Do not pass a first argument with leading '-'
12038         to expr, by parenthesizing initial integers that might be negative.
12040         * doc/autoconf.texi (Particular Functions): AC_FUNC_GETPGRP
12041         now merely checks whether it is an error to pass an argument
12042         to getpgrp.
12044         * lib/autoconf/functions.m4 (_AC_FUNC_GETPGRP_TEST): Remove.
12045         (AC_FUNC_GETPGRP): Don't bother with a runtime test.  Just check
12046         whether it is a (compile-time) error to pass an argument to
12047         getpgrp.  This simpler test supports the revised documentation,
12048         and is all that AC_FUNC_GETPGRP's users really need.
12050 2001-09-18  Akim Demaille  <akim@epita.fr>
12052         * doc/autoconf.texi (Limitations of Make) <$<>: New.
12054 2001-09-18  Akim Demaille  <akim@epita.fr>
12056         * doc/autoconf.texi (Limitations of Usual Tools) <find>: More about
12057         `{}'.
12058         * lib/autotest/general.m4 (AT_INIT): Adjust.
12060 2001-09-18  Paul Wagland  <paul@wagland.net>
12062         * tests/m4sh.at: Ensure that AS_DIRNAME handles '/', '//' and '///'
12063         correctly.
12064         Add test for AS_BASENAME.
12065         * lib/m4sugar/m4sh.m4: Fix AS_BASENAME so that it passes the previous
12066         added test. It now correctly handles /1/2/3/, returning '3' not ''.
12067         Added AS_BASENAME_SED to make the interface the same as AS_DIRNAME.
12068         * tests/base.at: Fixed the expected responses. The old ones were
12069         one line out...
12070         * lib/autoconf/general.m4: Fixed AC_PREFIX_PROGRAM, it now behaves as
12071         the documentation claims it should (and how it behaved in 2.13).
12073 2001-09-18  Akim Demaille  <akim@epita.fr>
12075         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): No INIT-CMDS in
12076         the AC_CONFIG_COMMANDS invocation.
12077         This also solves the name clash problems.
12078         Don't set the package's ID.
12079         * lib/m4sugar/Makefile.am (version.m4): Revamp.
12080         No longer to be shipped.
12081         (version.in): Remove.
12082         * lib/m4sugar/m4sugar.m4, lib/autoconf/general.m4,
12083         * lib/autoconf/status.m4: Adjust.
12084         Use `m4_PACKAGE_STRING'.
12085         * lib/autotest/general.m4 (AT_INIT): N-th signature change: now
12086         the only optional argument is the name of the test suite.
12087         Expect `package.m4' to define the package signature.
12088         * lib/autom4te.in (Autotest): Add `package.m4?'.
12089         * tests/Makefile.am (package.m4): New.
12090         * tests/suite.at: ifnames is a victim.
12092 2001-09-18  Akim Demaille  <akim@epita.fr>
12094         * lib/autom4te.in (Autoconf): Preselect AM_CONDITIONAL,
12095         AC_LIBSOURCE, AC_CONFIG_FILES.
12096         * lib/autotest/general.m4 (AT_INIT): Don't abort when a tested
12097         program version string doesn't match the package's.
12098         * lib/autoconf/general.m4 (AC_CACHE_VAL): Reestablish the space
12099         after `(cached)'.
12101 2001-09-17  Paul Eggert  <eggert@twinsun.com>
12103         * lib/autoconf/c.m4: (AC_LANG_INT_SAVE(C)):
12104         Allow expression to return any value that can fit into unsigned long
12105         (not int, as before).  Check for output errors.
12107 2001-09-17  Bruno Haible  <haible@ilog.fr>
12109         * lib/autoconf/c.m4: (AC_LANG_INT_SAVE(C)):
12110         Always include <stdio.h> and <stdlib.h>. Evaluate
12111         the expression in an extra function before these includes. Call
12112         fprintf "%d" only after ensuring the argument is of type 'int'.
12113         Reported by Wayne Chapeskie <waynec@spinnaker.com>.
12115 2001-09-17  Paul Eggert  <eggert@twinsun.com>
12117         Fix bug reported by Paul Townsend on AIX 4.3.3.0 with CFLAGS=-O4
12118         or CFLAGS=-O5.  In that case, the linker has a relaxed view of
12119         fatal errors, and AC_CHECK_LIB causes it to include libraries even
12120         when they don't exist.
12122         * lib/autoconf/headers.m4 (AC_HEADER_DIRENT): Use AC_SEARCH_LIBS,
12123         not AC_CHECK_LIB, so that we don't use -ldir or -lx if we don't
12124         need it.
12126         * lib/autoconf/specific.m4 (AC_ISC_POSIX): Replace the old, crufty
12127         version with the version used by fileutils 4.1, except use
12128         AC_SEARCH_LIBS, not AC_CHECK_LIB, so that we don't use -lcposix if
12129         we don't need it.
12131         * doc/autoconf.texi (AC_ISC_POSIX): Describe new behavior.
12133 2001-09-13  Akim Demaille  <akim@epita.fr>
12135         * tests/base.at, tests/m4sh.at: Be sure to issue the bangshe line
12136         _first_.
12137         Reported by Gerrit P. Haase.
12139 2001-09-13  Akim Demaille  <akim@epita.fr>
12141         * lib/autotest/general.m4 (AT_INIT): Reset `AT_victims' so that
12142         m4_defn'ing is valid.
12144 2001-09-13  Akim Demaille  <akim@epita.fr>
12146         * lib/m4sugar/m4sugar.m4 (m4_append_uniq): New.
12147         * lib/autotest/general.m4 (AT_VICTIMS, AT_KEYWORDS, _AT_CLEANUP_FILE):
12148         Use it.
12150 2001-09-13  Akim Demaille  <akim@epita.fr>
12152         * lib/m4sugar/m4sugar.m4 (_AS_QUOTE_IFELSE, _AS_BOX_INDIR): Use
12153         m4_match.
12154         (m4_re_escape): New.
12155         * lib/autoconf/status.m4 (AC_CONFIG_IF_MEMBER): Use it.
12156         * lib/autoconf/general.m4 (AC_CACHE_SAVE): Use m4_match.
12157         * lib/autoconf/status.m4 (AC_CONFIG_IF_MEMBER, AC_CONFIG_LINKS):
12158         Likewise.
12159         * lib/autoconf/types.m4 (_AC_CHECK_TYPE_REPLACEMENT_TYPE_P)
12160         (_AC_CHECK_TYPE_MAYBE_TYPE_P, AC_CHECK_MEMBER): Likewise.
12161         * lib/autotest/general.m4 (AT_INIT): Rename AT_TESTS_ALL as
12162         AT_tests_all for consistency.
12163         Set at_victims.
12164         (AT_VICTIMS): Similar to AT_KEYWORDS.
12165         (_AT_CLEANUP_FILE_IF): Use m4_match and m4_re_escape.
12167 2001-09-13  Akim Demaille  <akim@epita.fr>
12169         * lib/autotest/general.m4 (AT_INIT): Fix stupid bugs.
12171 2001-09-13  Akim Demaille  <akim@epita.fr>
12173         * lib/autotest/general.m4 (AT_INIT): Create and remove
12174         `$as_me.[0-9]+' instead of `debug-[0-9]+.sh', so that multiple
12175         test suites can cohabit.
12177 2001-09-13  Akim Demaille  <akim@epita.fr>
12179         * tests/mktests.sh: Don't output banners for empty test files.
12181 2001-09-13  Akim Demaille  <akim@epita.fr>
12183         Test suites can be run independently of configure.
12185         * lib/m4sugar/m4sh.m4 (_AS_ECHO, _AS_ECHO_N_PREPARE): New.
12186         * lib/autoconf/programs.m4 (_AC_PROG_ECHO): Remove.
12187         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Adjust: AC_SUBST
12188         ECHO_N etc.
12189         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): Don't ask for at_n
12190         and at_c.
12191         * lib/autotest/general.m4: Use ECHO_*.
12193 2001-09-13  Akim Demaille  <akim@epita.fr>
12195         * bin/ifnames.in: Rewrite in Perl.
12196         * configure.ac: Don't look for AWK.
12197         * tests/tools.at (AWK portability): Remove.
12198         (Syntax of the shell scripts): Don't check ifnames.
12199         (AT_CHECK_PERL_SYNTAX): New.
12200         (Syntax of the Perl scripts): Check ifnames.
12201         * tests/ifnames: New.
12203 2001-09-13  Akim Demaille  <akim@epita.fr>
12205         * lib/autotest/general.m4 (AT_INIT): Let --keywords also match
12206         test group titles.
12207         * tests/atspecific.m4 (AT_CHECK_AU_MACRO): AT_KEYWORDS(autoupdate).
12208         Remove all the other keywords.
12210 2001-09-10  Akim Demaille  <akim@epita.fr>
12212         * lib/autotest/general.m4 (AT_INIT): Remove the diversion HELP and
12213         SETUP: no longer used.
12214         Support -k, --keywords.
12215         <at_help>: Be `no', `short', or `long'.
12216         <at_help_all>: New variable.
12217         (AT_KEYWORDS): New.
12218         (AT_CLEANUP_FILE_IFELSE, AT_CLEANUP_FILE): Rename as...
12219         (_AT_CLEANUP_FILE_IF, _AT_CLEANUP_FILE): these.
12220         (_AT_CLEANUP_FILE_IF): Simplify the regexp.
12221         (AT_SETUP): Reset AT_line, AT_keywords, AT_description.
12222         No longer fill the HELP diversion.
12223         (AT_CLEANUP): Use them.
12224         * lib/m4sugar/m4sugar.m4 (m4_append): Support a separator.
12225         (m4_list_append): Remove.
12227         Spread a few keywords in the Autoconf test suite.
12229 2001-09-10  Akim Demaille  <akim@epita.fr>
12231         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): Don't pass
12232         PATH_SEPARATOR, let M4sh compute it.
12233         * lib/m4sugar/m4sh.m4 (_AS_PATH_SEPARATOR_PREPARE): New.
12234         * lib/autoconf/programs.m4 (AC_SHELL_PATH_WALK): Use PATH_SEPARATOR.
12235         Move to...
12236         * lib/m4sugar/m4sh.m4 (_AS_PATH_WALK): Here.
12237         Simplify when the path is not a literal.
12238         (AS_UNAME): Use it to report PATH.
12239         * lib/autoconf/general.m4 (_AC_INIT_PREPARE_FS_SEPARATORS): Remove.
12240         (_AC_INIT_DEFAULTS): AC_SUBST PATH_SEPARATOR.
12241         * lib/autoconf/programs.m4 (AC_PROG_INSTALL): Use _AS_PATH_WALK.
12242         * lib/autotest/general.m4 (AT_INIT): Use _AS_PATH_WALK to
12243         normalize the path, and to look for victims.
12244         * tests/semantics.at (AC_PATH_PROG & AC_PATH_PROGS)
12245         (AC_CHECK_PROG & AC_CHECK_PROGS): Use PATH_SEPARATOR.
12247 2001-09-07  Akim Demaille  <akim@epita.fr>
12249         * bin/autom4te.in (&handle_m4): `< /dev/null' so that GNU M4 1.5
12250         doesn't neutralize SIGINT, making autoconf etc. non interruptible.
12251         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): Move the package
12252         related variables into `at_package_*'.
12253         * lib/autotest/general.m4 (AT_VICTIMS): New.
12254         (AT_INIT): Adjust for stand-alone/embedded test suites.
12255         (AS_MESSAGE_LOG_FD): Define and use it.
12256         * tests/suite.at (AT_VICTIMS): Use it.
12257         * tests/tools.at (autoupdating AC_PREREQ): Don't depend upon
12258         at_version.
12260 2001-09-07  Akim Demaille  <akim@epita.fr>
12262         Move toward possibly stand-alone test suites.
12264         * lib/autotest/general.m4: Stop displaying srcdir everywhere as,
12265         in addition, it introduces useless differences in logs.
12266         (AT_INIT): Let atconfig and atlocal be both optional.
12267         Adjust PATH computation.
12268         * lib/m4sugar/m4sh.m4 (AS_UNAME): More readable display of PATH.
12270 2001-09-07  Akim Demaille  <akim@epita.fr>
12272         * lib/autoconf/Makefile.am (autoconf.m4f): Depends upon
12273         m4sugar/version.m4.
12275 2001-09-05  Akim Demaille  <akim@epita.fr>
12277         * lib/autoconf/c.m4 (AC_LANG_BOOL_COMPILE_TRY(C)): Use `_array_'
12278         to avoid GCC warnings.
12279         From Uwe Seimet.
12281 2001-09-05  Akim Demaille  <akim@epita.fr>
12283         * bin/autom4te.in: --language is -l, not -s.
12285 2001-09-05  Akim Demaille  <akim@epita.fr>
12287         Be ready to handle filenames as stupid as `dnl.at', for if even
12288         the maintainer is dumb enough to do that...
12290         * lib/autotest/general.m4 (AT_SETUP, AT_LINE): Demonstrates your
12291         excellence in M4 quotation: consider `__file__' is active.
12293         And BTW, when invoking m4, pass the --include in the right order:
12294         the wrong one.
12296         * bin/autom4te.in, bin/autoupdate.in: Use reverse when kingtal to
12297         4m.
12299 2001-09-05  Akim Demaille  <akim@epita.fr>
12301         * lib/Autom4te/XFile.pm: New lib file.
12302         * bin/autoupdate.in, bin/autoscan.pl, bin/autom4te.in,
12303         * bin/autoheader.in: Use it.
12305 2001-09-05  Akim Demaille  <akim@epita.fr>
12307         * bin/autoupdate.in (&handle_m4_macros) <unm4.m4>: Undefine iff
12308         defined.
12310 2001-09-05  Akim Demaille  <akim@epita.fr>
12312         * lib/Autom4te/General.pm (&getopt): Work around the `-' Getopt bug.
12313         * bin/autoheader.in, bin/autoupdate.in (&parse_args): Adjust.
12315         * bin/autoscan.in: Use `getopt' and `find_files' etc.
12316         Add -I, --include support.
12317         * doc/autoconf.texi (autoscan Invocation): Adjust.
12319 2001-09-05  Akim Demaille  <akim@epita.fr>
12321         CVS GNU M4 doesn't like `undefine(undefined)'.
12323         * bin/autoupdate.in (&handle_m4_macros, &handle_autoconf_macros):
12324         New, extracted from main.
12325         Use IO::File wherever possible.
12326         (input.m4): Be constant, use -I instead of hard coding $tmp.
12327         Therefore be a quoted heredoc.
12328         Don't invoke `_au_disable', since ac was not loaded, but just
12329         `unm4.m4'.
12331 2001-08-31  Akim Demaille  <akim@epita.fr>
12333         Version 2.52d.
12335 2001-08-31  Akim Demaille  <akim@epita.fr>
12337         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Fix the
12338         previous patch.
12339         * tests/atspecific.m4 (AT_CHECK_AUTOHEADER): Can create `config.hin~'.
12341 2001-08-31  Akim Demaille  <akim@epita.fr>
12343         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): DU 5.0 has
12344         serious problems handling heredocs in heredocs.
12345         Reported by Nicolas Joly.
12347 2001-08-31  Akim Demaille  <akim@epita.fr>
12349         * doc/autoconf.texi: Don't promote non `m4_*' M4 macros.
12350         (Making testsuite Scripts): Update.
12352 2001-08-31  Akim Demaille  <akim@epita.fr>
12354         * lib/Makefile.am (CLEANFILES): Add autom4te.cfg.
12356 2001-08-31  Akim Demaille  <akim@epita.fr>
12358         * doc/autoconf.texi (Quadrigraphs): Document `@&t@'.
12359         (testsuite Scripts): There is no such thing as `atconfig.in'.
12360         And actually one diagram is missing: test suite runtime.
12362 2001-08-31  Akim Demaille  <akim@epita.fr>
12364         * lib/Autom4te/General.pm (&find_file): Browse the includes in the
12365         inverse order.
12367 2001-08-31  Akim Demaille  <akim@epita.fr>
12369         * bin/autoupdate.in (@include): `installcheck' revealed the path
12370         to m4sugar was lacking!
12372 2001-08-31  Akim Demaille  <akim@epita.fr>
12374         * man/Makefile.am (.x.1): We really have to pass
12375         autom4te_perllibdir.
12377 2001-08-31  Akim Demaille  <akim@epita.fr>
12379         * lib/autotest/general.m4 (AT_INIT): Don't pass all the args to
12380         debug scripts, in particular passing explicitly listed tests to
12381         run is stupid.
12383 2001-08-31  Akim Demaille  <akim@epita.fr>
12385         * bin/autom4te.in (&parse_args): Strip `.' from `@include'.
12386         * bin/autoupdate.in: Use --include, -I, and --force, -f, too.
12387         Use directly autom4te, not autoconf.
12388         * tests/autoupdate: $top_srcdir/lib is needed too for melt files.
12390 2001-08-31  Akim Demaille  <akim@epita.fr>
12392         * tests/semantics.at (AC_C_BIGENDIAN): Missing eol.
12393         * bin/autoheader.in (%symbol): Strip arguments of macros.
12395 2001-08-31  Akim Demaille  <akim@epita.fr>
12397         * doc/autoconf.texi: Catch up -I, --include changes.
12399 2001-08-31  Akim Demaille  <akim@epita.fr>
12401         * bin/autom4te.in (&parse_args): Die on unknown languages.
12402         * bin/autoheader.in: Run directly autom4te --mode=autoconf, no
12403         need for autoconf.
12404         Promote --include over --macrodir and other obsolete options.
12406 2001-08-31  Akim Demaille  <akim@epita.fr>
12408         * lib/Autom4te/General.pm ($version, $help, &getopt): New.
12409         * bin/autoupdate.in, bin/autoheader.in, bin/autom4te.in: Use them.
12410         * bin/autom4te.in ($autoconf): Pass --force.
12411         `print $out' doesn't print `$_' but `$out'.
12412         * tests/tools.at (Syntax of the Perl scripts): Pass the lib dir.
12413         (autoheader): Pass --force since the test suite goes too fast for
12414         the time stamps.
12415         Adjust to the new autoheader messages.
12417 2001-08-31  Akim Demaille  <akim@epita.fr>
12419         * bin/autoheader.in: Handle the acconfig.h etc. junk files.
12420         Check the completeness of the #template.
12421         * lib/Autom4te/General.pm (&update_file): s/remove/unlink/.
12422         * tests/semantics.at (AC_C_BIGENDIAN): Adjust AT_CHECK_AUTOHEADER
12423         invocation.
12425 2001-08-31  Akim Demaille  <akim@epita.fr>
12427         * lib/Autom4te/General.pm (&find_file, &update_file): New.
12428         * bin/autoupdate.in, bin/autoheader.in: Adjust.
12429         Drop AC_MACRODIR dead for real.
12430         * tests/atspecific.m4 (AT_CHECK_AUTOHEADER): Now autoheader says
12431         `autoheader: `config.hin' is created'.
12432         * tests/tools.at (Syntax of the Perl scripts): Check autoheader.
12434 2001-08-31  Akim Demaille  <akim@epita.fr>
12436         * bin/autoheader.in: Rewrite in Perl.
12437         * tests/autoheader: Adjust.
12439 2001-08-31  Akim Demaille  <akim@epita.fr>
12441         * bin/autoconf.in (--include, -I): New option.
12442         Map --localdir, --autoconf-dir onto it.
12443         Forward autom4te's options instead of interpreting them.
12444         * bin/autoconf.in, bin/autoheader.in (AC_MACRODIR, autoconf_dir):
12445         There is no such envvar since the inception of autom4te.cfg.
12446         * bin/autom4te.in (&parse_args): Uniquify `@include'.
12447         * bin/autoupdate.in: Adjust, and perform more control.
12448         * tests/atspecific.m4 (AT_CHECK_AUTOCONF): Adjust.
12449         * tests/autoconf: Dittowise.
12451 2001-08-31  Akim Demaille  <akim@epita.fr>
12453         * bin/autoconf.in: Don't bother with `acsite.m4' and `aclocal.m4'.
12454         * bin/autom4te.in (&find_file): Support `FILE?' standing for
12455         optionally `FILE'.
12456         Use -e, not -f, since /dev/null for instance is OK.
12457         (&parse_args): Adjust.
12458         * lib/autom4te.in (Autoconf): Add `acsite.m4?' and `aclocal.m4?'.
12460 2001-08-31  Akim Demaille  <akim@epita.fr>
12462         * configure.ac: Also find tested executables in bin.
12463         * bin/autoconf.in, bin/autoheader.in, bin/autoreconf.in,
12464         * bin/autoscan.in, autoupdate.in: Use exclusively the name of the
12465         installed peer executables, only PATH is allowed to resolve it.
12466         Pass `autoconf_dir' via options, not via invisible envvars.
12467         * lib/Autom4te/General.pm (&find_peer): Remove.
12468         * lib/autotest/general.m4 (AT_INIT): `AUTOTEST_PATH=a:b' gives
12469         `abuild:asrc:bbuild:bsrc', not `abuild:bbuild:asrc:bsrc'.
12470         * man/Makefile.am: Let help2man rely on PATH instead of trying to
12471         find the executables for it.
12472         * tests/Makefile.am: Major cleanup.  Too lazy to document...
12473         * tests/atlocal.in: Remove all the obscure envvar manipulations.
12474         We only need PERL.
12475         * tests/atspecific.m4, tests/tools.at: Passing --localdir is
12476         indeed related to running the test suite, while passing
12477         --autoconf-dir and others is related to running non installed
12478         Autoconf executables.  So don't do that, leave it to...
12479         * tests/autoconf, tests/autoheader, tests/autom4te, tests/autoupdate,
12480         * tests/autoscan: New.
12481         * tests/atspecific.m4 (AT_CHECK_M4SUGAR, AT_CHECK_M4SH): Don't
12482         refer to library files: rely on --language.
12484 2001-08-29  Akim Demaille  <akim@epita.fr>
12486         * bin/autom4te.in, lib/autom4te.in, bin/autoconf.in:
12487         s/--set/--language/.
12489 2001-08-29  Akim Demaille  <akim@epita.fr>
12491         * doc/autoconf.texi: Strip the @nodes.
12492         Suggested by Paul Eggert.
12493         (Initializing configure): Typo.
12495 2001-08-29  Akim Demaille  <akim@epita.fr>
12497         * bin/autom4te.in (&handle_output): s/@__@/@&t@/.
12498         Suggested by Paul Eggert.
12500 2001-08-29  Akim Demaille  <akim@epita.fr>
12502         * Makefile.maint (do-po-update): Wget refuses to overwrite files:
12503         download in a tmp dir.
12505 2001-08-29  Akim Demaille  <akim@epita.fr>
12507         * lib/autotest/general.m4: s/AT-devnull/devnull/ since there are
12508         case insensitive OSes out there :(
12509         From Tim Van Holder.
12511 2001-08-29  Akim Demaille  <akim@epita.fr>
12513         * lib/autom4te.in: New.
12514         * lib/Makefile.am (edit, autom4te.cfg): New.
12515         * bin/autom4te.in (BEGIN): Simplify.
12516         Rely on `AC_MACRODIR' in addition of `autom4te_perllibdir'.
12517         (&load_configuration): New.  Use it.
12518         (&parse_args): Support --mode, --set, and --melt.
12519         * bin/autoconf.in: Simplify and adjust.
12520         * tests/Makefile.am (AUTOMAKE): Use --set.
12521         * tests/atlocal.in: Adjust.
12522         * BUGS: distcheck and check are weak.
12524 2001-08-29  Akim Demaille  <akim@epita.fr>
12526         * lib/autotest/general.m4: Use
12527                 foo=`(command) 2>/dev/null`
12528         not
12529                 foo=`command` 2>/dev/null
12530         (at-devnull): Rename as...
12531         (AT-devnull): this.
12532         (--clean): Remove AT-* files too.
12533         * doc/autoconf.texi (Limitations of Usual Tools): Document `date'.
12534         Reported by Nicolas Joly.
12536 2001-08-28  Akim Demaille  <akim@epita.fr>
12538         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Don't use single
12539         quotes inside single quotes.
12540         Reported by Nicolas Joly.
12542 2001-08-28  Kevin Ryde  <user42@zip.com.au>
12544         * doc/autoconf.texi (Function Portability): Mention C right shifts.
12546 2001-08-27  Tim Van Holder  <tim.van.holder@pandora.be>
12548         * lib/autotest/general.m4: Reword some messages.
12549         (AT_INIT): Check for the `times' builtin before using it.
12550         Support test ranges as arguments to the testsuite.
12551         Have -e imply -d as the help text suggested.
12553 2001-08-27  Akim Demaille  <akim@epita.fr>
12555         * Makefile.maint: Formatting changes.
12556         (do-po-update, po-update, cvs-update, update): New targets.
12557         (AMTAR): Remove.
12559 2001-08-27  Akim Demaille  <akim@epita.fr>
12561         * lib/autotest/general.m4 (AT_INIT) <at_cmd_line>: Remove.
12562         <at_cmd_line>: New.
12563         Pass it to debug-*.sh scripts.
12564         <AUTOTEST_PATH>: May contain absolute dir names.
12566 2001-08-27  Akim Demaille  <akim@epita.fr>
12568         * lib/autotest/general.m4 (AT_INIT): Log the command line.
12569         Support `VAR=VAL' as arguments.
12570         Compute PATH _after_ the options processing, so that AUTOTEST_PATH
12571         may be set via the command line.
12573 2001-08-27  Akim Demaille  <akim@epita.fr>
12575         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): $2 defaults to $1.
12576         * lib/autotest/autotest.m4 (AT_INIT): Expand AUTOTEST_PATH into
12577         first the build dirs, then the src dirs.
12578         * configure.ac (AC_CONFIG_TESTDIR): Adjust.
12580 2001-08-27  Akim Demaille  <akim@epita.fr>
12582         * lib/autotest/general.m4 (AT_INIT): Output the definition of
12583         at_data_files earlier.
12584         (--clean, -c): New option.
12585         * tests/Makefile.am: Use this option.
12587 2001-08-27  Akim Demaille  <akim@epita.fr>
12589         * lib/autoconf/status.m4 (_AC_SRCPATHS): Rename `ac_dots' as
12590         `ac_top_builddir' to mimic Automake's vocabulary, which much more
12591         readable.
12592         Adjust callers.
12593         * doc/autoconf.texi (Configuration Actions): Document the vars
12594         available in commands.
12595         Emphasize the risks of collisions in init-cmds.
12597 2001-08-27  Akim Demaille  <akim@epita.fr>
12599         * doc/autoconf.texi (Input) <AC_INIT>: Move to..
12600         (Initializing configure): this new node.
12602 2001-08-27  Akim Demaille  <akim@epita.fr>
12604         * Makefile.am (EXTRA_DIST): INSTALL.txt is a dead hack.
12606 2001-08-27  Akim Demaille  <akim@epita.fr>
12608         * m4/atconfig.m4 (AT_CONFIG): Remove, replaced by...
12609         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): this.
12610         New file.
12611         * m4/Makefile.am (EXTRA_DIST): Oops, adjust...
12613 2001-08-27  Akim Demaille  <akim@epita.fr>
12615         * lib/autoconf/general.m4 (AU_DEFINE, AU_DEFUN, AU_ALIAS): Move
12616         to...
12617         * lib/autoconf/autoheader.m4: this new file.
12618         * lib/autoconf/general.m4 (AH_OUTPUT, AH_VERBATIM)
12619         (_AH_VERBATIM_OLD, AH_TEMPLATE, _AH_TEMPLATE_OLD, AH_TOP, AH_BOTTOM):
12620         Move to...
12621         * lib/autoconf/autoupdate.m4: this new file.
12623 2001-08-27  Akim Demaille  <akim@epita.fr>
12625         * lib/autoconf/status.m4 (_AC_SRCPATHS): New.
12626         (_AC_OUTPUT_LINKS, _AC_OUTPUT_FILES, _AC_OUTPUT_SUBDIRS): Use it.
12627         Standardize the var names (ac_sub_srcdir -> ac_srcdir, ac_subdir
12628         -> ac_dir).
12629         (_AC_OUTPUT_HEADERS): AS_DIRNAME always return a dir name.
12630         * lib/autoconf/general.m4 (_AC_INIT_HELP): Ditto.
12632 2001-08-27  Akim Demaille  <akim@epita.fr>
12634         * lib/autoconf/autoconf.m4 (AC_CONFIG_COMMANDS)
12635         (AC_CONFIG_COMMANDS_POST, AC_CONFIG_COMMANDS_PRE, AC_CONFIG_FILES)
12636         (AC_CONFIG_HEADER, AC_CONFIG_HEADERS, AC_CONFIG_IF_MEMBER)
12637         (AC_CONFIG_LINKS, AC_CONFIG_SUBDIRS, AC_FILE_DEPENDENCY_TRACE)
12638         (AC_LINK_FILES, AC_LIST_COMMANDS, AC_LIST_COMMANDS_COMMANDS)
12639         (AC_LIST_FILES, AC_LIST_FILES_COMMANDS, AC_LIST_HEADERS)
12640         (AC_LIST_HEADERS_COMMANDS, AC_LIST_LINKS, AC_LIST_LINKS_COMMANDS)
12641         (AC_OUTPUT, AC_OUTPUT_COMMANDS, AC_OUTPUT_COMMANDS_POST)
12642         (AC_OUTPUT_COMMANDS_PRE, AC_OUTPUT_MAKE_DEFS)
12643         (_AC_CONFIG_COMMANDS_INIT, _AC_CONFIG_DEPENDENCIES)
12644         (_AC_CONFIG_DEPENDENCY, _AC_CONFIG_UNIQUE, _AC_LINK_FILES_CNT)
12645         (_AC_LIST_SUBDIRS, _AC_OUTPUT_COMMANDS, _AC_OUTPUT_COMMANDS_CNT)
12646         (_AC_OUTPUT_COMMANDS_INIT, _AC_OUTPUT_CONFIG_STATUS)
12647         (_AC_OUTPUT_FILES, _AC_OUTPUT_HEADERS, _AC_OUTPUT_LINKS)
12648         (_AC_OUTPUT_SUBDIRS): Move to...
12649         * lib/autoconf/status.m4: this new file.
12650         * lib/autoconf/general.m4, lib/autoconf/Makefile.am: Adjust.
12651         * tests/Makefile.am, tests/suite.at: Adjust.
12653 2001-08-27  Akim Demaille  <akim@epita.fr>
12655         Automake 1.5.
12657         * Makefile.am (AUTOMAKE_OPTIONS): Add 1.5 and dist-bzip2.
12658         (AMTAR): Help automake define it.
12659         (INSTALL, install-data-hook): The INSTALL.txt trick is no longer
12660         needed, 1.5 can have a macro and a target with the same name.
12661         * m4/auxdir.m4, m4/cond.m4, m4/depend.m4, m4/install-sh.m4,
12662         * m4/strip.m4: New.
12663         * m4/init.m4, m4/sanity.m4: Update.
12664         * doc/Makefile.am (CLEANFILES): 1.5 knows the texi2dvi files.
12665         * lib/autoconf/Makefile.am, lib/autotest/Makefile.am,
12666         * lib/m4sugar/Makefile.am, lib/autoscan/Makefile.am,
12667         * lib/Autom4te/Makefile.am, man/Makefile.am: Use dist/nodist.
12669 2001-08-27  Akim Demaille  <akim@epita.fr>
12671         Provide a mean to ``AC_PREREQ'' for M4sugar, M4sh and Autotest.
12673         * lib/autoconf/version.in: Remove.
12674         * lib/m4sugar/version.in: New.
12675         * lib/m4sugar/m4sugar.m4 (m4_acversion, m4_version_prereq): New.
12676         Adjust callers.
12677         * bin/autoupdate.in: Distinguish M4sugar vs. Autoconf macros by
12678         the name of the directory they're in, instead of the filename,
12679         since version.m4 is now in m4sugar, but m4_acversion must not be
12680         classified as an Autoconf macro.
12681         ($input_m4): Don't qualify the path to m4sugar.
12682         Rather, pass autoconf_dir to m4.
12683         * tests/Makefile.am (testsuite): Remove -I top_srcdir, unneeded.
12684         * tests/suite.at: Require 2.52c.
12686 2001-08-27  Akim Demaille  <akim@epita.fr>
12688         testsuite.log should include config.log.
12690         * lib/autotest/autotest.m4: New.
12691         * lib/autotest/general.m4, tests/atspecific.m4: Adjust.
12692         * tests/suite.at : Adjust.
12693         (AT_INIT): Log config.log.
12694         * lib/m4sugar/m4sugar.m4 (m4_text_box): New.
12695         * lib/m4sugar/m4sh.m4 (_AS_BOX_LITERAL): Adjust.
12696         * lib/autoconf/general.m4 (_AC_INIT_CONFIG_LOG): Use them.
12697         (_AC_INIT_PREPARE): Fix the incredibly messy and buggy completion
12698         of config.log on traps.
12699         (_AC_OUTPUT_CONFIG_STATUS): Use AS_BOX.
12700         Use consistently `_ACEOF' for configure's here docs, and `_CSEOF'
12701         for config.status'.
12702         Open the log as soon as possible.
12703         Use the same log introduction as configure's.
12705 2001-08-22  Paul Eggert  <eggert@twinsun.com>
12707         * doc/autoconf.texi (Indices): New node.
12708         Move indices out of the top level menu and into this submenu.
12710 2001-08-22  Akim Demaille  <akim@epita.fr>
12712         * lib/autoconf/programs.m4 (_AC_PROG_LEX_YYTEXT_DECL): Use
12713         AC_TRY_COMMAND.
12714         (AC_DECL_YYTEXT): Fix the previous patch: it points to AC_PROG_LEX.
12716 2001-08-22  Akim Demaille  <akim@epita.fr>
12718         * lib/autoconf/general.m4 (AC_SHELL_PATH_WALK, AC_CHECK_PROG)
12719         (AC_CHECK_PROGS, AC_PATH_PROG, AC_PATH_PROGS, AC_CHECK_TOOL_PREFIX)
12720         (AC_PATH_TOOL, AC_CHECK_TOOL, AC_CHECK_TOOLS): Move to...
12721         * lib/autoconf/programs.m4: here.
12722         * lib/autoconf/specific.m4 (_AC_PROG_ECHO, AC_PROG_MAKE_SET)
12723         (AC_PROG_RANLIB, AC_PROG_YACC, AC_PROG_LEX, _AC_DECL_YYTEXT)
12724         (AC_PROG_INSTALL, AC_PROG_LN_S, AC_RSH): Move to...
12725         * lib/autoconf/programs.m4: here.
12726         (_AC_DECL_YYTEXT): Rename as...
12727         (_AC_PROG_LEX_YYTEXT_DECL): this.
12728         * lib/autoconf/autoconf.m4, lib/autoconf/Makefile.am
12729         * tests/Makefile.am, tests/suite.am: Adjust.
12731 2001-08-22  Akim Demaille  <akim@epita.fr>
12733         * lib/autoconf/general.m4 (AC_LIST_MEMBER_OF, AC_LINKER_OPTION):
12734         Move to...
12735         * lib/autoconf/fortran.m4 (_AC_LIST_MEMBER_IF, _AC_LINKER_OPTION):
12736         here.
12737         * lib/autoconf/general.m4 (AC_TRY_LINK_FUNC): Move to...
12738         * lib/autoconf/functions.m4: here.
12739         * lib/autoconf/general.m4 (AC_SEARCH_LIBS, AC_CHECK_LIB)
12740         (AH_CHECK_LIB): Move to...
12741         * lib/autoconf/libs: this new file.
12742         * lib/autoconf/specific.m4 (_AC_PATH_X_XMKMF, _AC_PATH_X_DIRECT)
12743         (_AC_PATH_X, AC_PATH_X, AC_PATH_XTRA): Move to...
12744         * lib/autoconf/libs.m4: here.
12745         * lib/autoconf/autoconf.m4, lib/autoconf/Makefile.am: Adjust.
12747 2001-08-22  Akim Demaille  <akim@epita.fr>
12749         * lib/m4sugar/m4sh.m4 (AS_MKDIR_P): Fail if fails.
12750         * lib/autoconf/general.m4 (_AC_OUTPUT_SUBDIRS): Adjust.
12751         (AC_SITE_LOAD): Better logging of config.site.
12753 2001-08-20  Akim Demaille  <akim@epita.fr>
12755         * configure.ac (AT_CONFIG): Fix the path.
12756         * m4/atconfig.m4 (AT_CONFIG): Don't use EOF but ATEOF so that 2.52
12757         can be used.
12759 2001-08-20  Alexandre Duret-Lutz  <duret_g@epita.fr>
12761         * lib/autoconf/c.m4 (AC_C_BIGENDIAN): Prepare the cross-compile
12762         program with AC_LANG_PROGRAM before feeding it to
12763         AC_COMPILE_IFELSE.  Cleanup grep usage.
12765 2001-08-20  Akim Demaille  <akim@epita.fr>
12767         * ChangeLog, ChangeLog.0, ChangeLog.1, ChangeLog.2, AUTHORS, BUGS,
12768         * NEWS, README, README-alpha, TODO, tests/README: This package is
12769         `Autoconf', not `autoconf' (the executable).
12771 2001-08-20  Akim Demaille  <akim@epita.fr>
12773         Info readers seem to need `Index' in the index node title :(
12775         * doc/autoconf.texi: Reverse the 2001-08-15 change which
12776         simplified index node names.
12778 2001-08-20  Akim Demaille  <akim@epita.fr>
12780         * lib/autoconf/general.m4 (_AC_INIT_PACKAGE): Warn if the
12781         arguments are not literals.
12782         * doc/autoconf.texi (Input) <AC_INIT>: Arguments must be literals.
12783         Specify the output variables, and macros defined.
12785 2001-08-20  Akim Demaille  <akim@epita.fr>
12787         * doc/autoconf.texi (Examining Declarations) <AC_TRY_CPP>:
12788         (Examining Syntax) <AC_TRY_COMPILE>
12789         (Examining Libraries) <AC_TRY_LINK>
12790         (Test Programs) <AC_TRY_RUN>: These macros double quote some of
12791         their arguments.
12792         Reported by Werner Lemberg.
12794 2001-08-20  Akim Demaille  <akim@epita.fr>
12796         * lib/autotest/general.m4 (AT_INIT): Compute top_builddir,
12797         top_srcdir and srcdir from at_topbuild_2_topsrc and at_testdir.
12798         Load atlocal late enough to dump it in the log.
12799         * m4/atconfig.m4 (AT_CONFIG): Pass them to atconfig.
12801 2001-08-20  Akim Demaille  <akim@epita.fr>
12803         * tests/torture.at (Configuring subdirectories): New test.
12804         * lib/autoconf/general.m4 (_AC_INIT_SRCDIR): Say what you are
12805         looking for.
12806         * m4/atconfig.m4: Be sure the let $[0] be expandable.
12807         (top_srcdir): Fix its computation.
12809 2001-08-20  Akim Demaille  <akim@epita.fr>
12811         * lib/autoconf/general.m4 (_AC_OUTPUT_COMMANDS): Say what you do.
12812         * m4/atconfig.m4 (AT_CONFIG): $1 is now the directory where the
12813         test suite lives.
12814         Create `atconfig' automagically.
12815         Configure atlocal.in if present.
12816         * tests/atconfig.in: Remove.
12817         * tests/atlocal.in: New.
12818         * tests/Makefile.am: Adjust.
12820 2001-08-20  Akim Demaille  <akim@epita.fr>
12822         Huh!?!?!  There are still some user EOF tags used, which prevents
12823         their use in AC_CONFIG_COMMANDS for instance...
12825         * lib/autoconf/general.m4, lib/autoconf/specific.m4,
12826         * lib/autotest/general.m4: Rename the EOF tags as `_ACEOF',
12827         `_CSEOF', or `_ATEOF', as appropriate.
12828         * lib/m4sugar/Makefile.am, lib/autoconf/Makefile.am,
12829         * lib/autotest/Makefile.am (check-local): Enforce this constraint.
12831 2001-08-20  Akim Demaille  <akim@epita.fr>
12833         * tests/base.at, tests/m4sh.at, tests/m4sugar.at,
12834         * tests/semantics.at, tests/tools.at, tests/torture.at:
12835         s/^AT_DATA\(([^][]+),/AT_DATA([$1],/.
12837 2001-08-20  Akim Demaille  <akim@epita.fr>
12839         Autotest invokes M4sh's initialization.
12841         * lib/autotest/general.m4: Adjust the diversion names.
12842         (AT_INIT): Run AS_INIT.
12843         Use the BINSH diversion to invoke /bin/sh.
12844         * tests/base.at, tests/m4sh.at, tests/m4sugar.at, tests/tools.at:
12845         * tests/torture.at: Respect M4sugar and M4sh macro name spaces.
12847 2001-08-20  Akim Demaille  <akim@epita.fr>
12849         Let M4sh have its own diversions.
12851         * lib/autoconf/general.m4 (_m4_divert(BINSH), _m4_divert(REVISION))
12852         (_m4_divert(NOTICE)): Rename as...
12853         * lib/m4sugar/m4msh.m4 (_m4_divert(BINSH), _m4_divert(HEADER-REVISION))
12854         (_m4_divert(HEADER-COMMENT)): these.
12855         (_m4_divert(HEADER-COPYRIGHT), _m4_divert(HEADER-COPYRIGHT)): New.
12856         (_m4_divert(NOTICE)): New, for Libtool.
12857         * lib/autoconf/general.m4 (_m4_divert(PREPARE)): Remove, replaced
12858         long ago with `_m4_divert(GROW)'.
12859         (AC_COPYRIGHT, AC_REVISION, _AC_INIT_NOTICE): Adjust.
12861 2001-08-20  Akim Demaille  <akim@epita.fr>
12863         * tests/base.at, tests/compile.at, tests/foreign.at,
12864         * tests/m4sh.at, tests/m4sugar.at, tests/mktests.sh,
12865         * tests/semantics.at, tests/suite.at, tests/tools.at,
12866         * tests/torture.at: Ask Autotest mode, not Autoconf mode.
12868 2001-08-20  Akim Demaille  <akim@epita.fr>
12870         * bin/autom4te.in (handle_output): Handle @__@.
12872 2001-08-20  Akim Demaille  <akim@epita.fr>
12874         * lib/autoconf/autoconf.m4, lib/autoconf/oldnames.m4,
12875         * lib/autotest/general.m4: Adjust the license.
12877 2001-08-17  Paul Eggert  <eggert@twinsun.com>
12879         * doc/autoconf.texi (Function Portability): Mention snprintf,
12880         following up on a suggestion by Kevin Ryde.
12882 2001-08-17  Akim Demaille  <akim@epita.fr>
12884         * doc/install.texi, doc/autoconf.texi: Use `autoconf', not
12885         `autoconf_manual', as texinfo.tex 2001-06-21.10 chokes on it.
12887 2001-08-17  Akim Demaille  <akim@epita.fr>
12889         * lib/autotest/general.m4 (AT_INIT): Refer to `$as_me.log', not
12890         `$0.log' as for projects where testsuite is in src, we'd have
12891         testsuite.log created in src.
12893 2001-08-17  Akim Demaille  <akim@epita.fr>
12895         * bin/autom4te.in (&parse_args): Recognize --normalize.
12897 2001-08-17  Akim Demaille  <akim@epita.fr>
12899         Start implementing the AC_CHECK_HEADER transition scheme.
12901         * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_NEW)
12902         (_AC_CHECK_HEADER_OLD, _AC_CHECK_HEADER_MONGREL): New.
12903         (AC_CHECK_HEADER): Use them.
12905 2001-08-17  Akim Demaille  <akim@epita.fr>
12907         * doc/autoconf.texi: Work around Texinfo buglets.
12908         (Transformation Rules): One example is enough, users are expected
12909         to have their brains on. And BTW, use DESTDIR.
12910         (dvar): New macro.  Use it.
12912 2001-08-17  Akim Demaille  <akim@epita.fr>
12914         * doc/autoconf.texi (Writing testsuite.at) <AT_CHECK>: Complete.
12915         * lib/autotest/general.m4 (AT_INIT): Use the relative dir when
12916         looking for ChangeLogs.
12918 2001-08-17  Akim Demaille  <akim@epita.fr>
12920         * bin/autom4te.in: --normalize is a new option.
12921         * bin/autoconf.in: Use it.
12923 2001-08-17  Akim Demaille  <akim@epita.fr>
12925         * bin/Makefile.am, lib/Autom4te/Makefile.am, lib/autoconf/Makefile.am
12926         * lib/autotest/Makefile.am, lib/m4sugar/Makefile.am: Add TAGS support.
12928 2001-08-16  Paul Eggert  <eggert@twinsun.com>
12930         * doc/autoconf.texi, doc/install.texi: Put copyright notice at
12931         start, not at end.
12933 2001-08-15  Akim Demaille  <akim@epita.fr>
12935         * doc/Makefile.am (fu): New index, can't use fn because of defmac.
12936         Use it.
12938 2001-08-15  Akim Demaille  <akim@epita.fr>
12940         * doc/autoconf.texi (pr): New index.
12941         (prindex, findex): Use, merge, and output them.
12942         (Environment Variable Index, Output Variable Index)
12943         (Preprocessor Symbol Index, Autoconf Macro Index, M4 Macro Index)
12944         (Autotest Macro Index): Rename as...
12945         (Environment Variables, Output Variables,Preprocessor Symbols)
12946         (Autoconf Macros, M4 Macros, Autotest Macros): these.
12947         * doc/install.texi: Use @command.
12948         (Environment Variables): Rename as...
12949         (Defining Variables): this.
12951 2001-08-15  Akim Demaille  <akim@epita.fr>
12953         * doc/autoconf.texi (Function Portability): sprintf's return
12954         value.
12955         From Kevin Ryde.
12957 2001-08-15  Akim Demaille  <akim@epita.fr>
12959         * Makefile.maint (CVS): New.
12960         (local-check): Run changelog-check. last.
12961         (alpha): Don't depend upon local-check, since...
12962         (cvs-dist): depends upon it.
12964 2001-08-15  Tim Van Holder  <tim.van.holder@pandora.be>
12966         * tests/Makefile.am: Use a clean-local rule to remove
12967         autom4te.cache (it's a directory, not a file.
12968         * Makefile.am: Ditto (but maintainer-clean-local).
12970 2001-08-15  Akim Demaille  <akim@epita.fr>
12972         * bin/autom4te.in (@m4_warning): New.
12973         (&handle_m4): Use it.
12974         * tests/m4sugar.at (m4_warn): Pass `-f' to autom4te to ensure the
12975         warnings are issued at each run.
12976         * tests/atspecific.m4 (AT_CHECK_M4SUGAR, AT_CHECK_M4SH): M4sugar
12977         is in the src tree.
12979 2001-08-15  Akim Demaille  <akim@epita.fr>
12981         * tests/atspecific.m4 (AT_CHECK_AUTOUPDATE): Perl is now required:
12982         don't waste time running `autoupdate --version' works.
12983         * tests/tools.at (autoupdating AC_PREREQ): Likewise.
12985 2001-08-13  Akim Demaille  <akim@epita.fr>
12987         * doc/autoconf.texi (ma): Rename this index as...
12988         (ac): this.
12990 2001-08-13  Akim Demaille  <akim@epita.fr>
12992         * Makefile.am: Remove dead code and dead comments.
12993         (pdf, html): New targets.
12994         * doc/autoconf.texi (Using Autotest): New chapter.
12995         * doc/Makefile.am (pdf): New targets.
12996         (CLEANFILES): Adjust.
12998 2001-08-13  Akim Demaille  <akim@epita.fr>
13000         * lib/autotest/general.m4 (AT_INIT): Log the start/stop dates and
13001         duration of the test suite.
13003 2001-08-12  Alexandre Duret-Lutz  <duret_g@epita.fr>
13005         * tests/semantics.at (AC_C_BIGENDIAN): Explicitelly save and load
13006         endianness for comparison instead of relying on AT_CHECK_ENV.
13008 2001-08-11  Paul Eggert  <eggert@twinsun.com>
13010         * doc/autoconf.texi, doc/install.texi: Add a copyright notice
13011         to the INSTALL file.
13013 2001-08-11  Paul Eggert  <eggert@twinsun.com>
13015         * NEWS: The autoconf manual now is distributed under the terms
13016         of the GNU Free Documentation License.
13018         * doc/autoconf.texi: Switch from old style copyright notice to FDL.
13019         Add an appendix "Copying This Manual" for the FDL.
13021         * doc/fdl.texi: New file, from
13022         <http://www.gnu.org/licenses/fdl.texi>.
13024         * doc/Makefile.am (autoconf_TEXINFOS): Add fdl.texi.
13026 2001-08-10  Paul Eggert  <eggert@twinsun.com>
13028         * AUTHORS, BUGS, ChangeLog, ChangeLog.0, ChangeLog.1,
13029         ChangeLog.2, GNUmakefile, Makefile.maint, NEWS, README,
13030         README-alpha, TODO, configure.ac, lib/autoconf/Makefile.am,
13031         m4/atconfig.m4, m4/init.m4, m4/m4.m4, m4/missing.m4,
13032         m4/sanity.m4, tests/README, tests/aclocal.m4,
13033         tests/atspecific.m4, tests/base.at, tests/compile.at,
13034         tests/foreign.at, tests/m4sh.at, tests/m4sugar.at,
13035         tests/semantics.at, tests/suite.at, tests/tools.at,
13036         tests/torture.at: Add copyright notice.
13038         * tests/mktests.sh: Update year in copyright notice.
13040 2001-08-12  Alexandre Duret-Lutz  <duret_g@epita.fr>
13042         * tests/semantics.at (AC_C_BIGENDIAN): New test.
13044 2001-08-11  Alexandre Duret-Lutz  <duret_g@epita.fr>
13046         * lib/autoconf/c.m4 (AC_C_BIGENDIAN): Handle ACTION-IF-TRUE,
13047         ACTION-IF-FALSE, and ACTION-IF-UNKNOWN.
13048         * doc/autoconf.texi (C Compiler Characteristics): Update
13049         documentation for AC_C_BIGENDIAN.
13051 2001-08-11  Alexandre Duret-Lutz  <duret_g@epita.fr>
13053         * lib/autoconf/c.m4 (AC_C_BIGENDIAN): Guess endianness by grep'ing
13054         magic values from an object file when cross-compiling.
13055         Based on code by Guido Draheim <Guido.Draheim@gmx.de>.
13057 2001-08-10  Akim Demaille  <akim@epita.fr>
13059         * bin/autom4te.in (&handle_output): Don't use `grep' with side
13060         effects.
13061         Suggested by Russ Allbery.
13063 2001-08-10  Ralf Corsepius  <corsepiu@faw.uni-ulm.de>
13065         * lib/autoconf/general.m4 (_AC_OUTPUT_SUBDIRS): Propagate the
13066         current $prefix to the sub-configures.
13068 2001-08-09  Tim Van Holder  <tim.van.holder@pandora.be>
13070         * lib/autoconf/lang.m4: Ignore *.xSYM when looking for an executable
13071         extension (needed on BeOS).  Reported by Guido van Rossum.
13073 2001-08-09  Akim Demaille  <akim@epita.fr>
13075         * bin/autom4te.in ($icache): Load it only if older than autom4te.
13077 2001-08-07  Akim Demaille  <akim@epita.fr>
13079         * lib/autotest/general.m4 (AT_INIT): All the `at-*' are to be
13080         removed.
13081         (at-setup-line): Huh?  Be a variable `at_setup_line', not a file.
13082         No need to remove the files before and after the each test, before
13083         each test and at the end of the suite is enough.
13084         Display only the children `times', not the shell's.
13085         If the test failed or was skipped, at-times is not available.
13087 2001-08-07  Akim Demaille  <akim@epita.fr>
13089         Always produce testsuite.log, including when there are no
13090         failures.  This helps getting information on skipped tests, and
13091         duration of the tests.  Err, implement the latter btw.
13093         * lib/autotest/general.m4 (AT_INIT): Set up fd 6 for the log.
13094         Dump information on the first run of each test.
13095         (AT_CLEANUP): Create `at-times' containing the duration of the
13096         test group.
13098 2001-08-07  Akim Demaille  <akim@epita.fr>
13100         The use of `dumpstat' revealed that `len' was used although it
13101         should not.  m4_text_wrap was using it, but in the Autoconf world
13102         where it is legal.  Hence (i) test M4sh in its own world, not
13103         Autoconf's, and (ii), ahem, fix the bug :)
13105         * lib/autotest/general.m4: Be sure the set good quotes, as tracing
13106         does not like `' instead of [].
13107         (AT_INIT): Forbid `^_?AT_'.
13108         And don't output such tokens.
13109         * tests/Makefile.am (CLEANFILES): Add `script', `script.s4g',
13110         `script.as', and `autom4te.cache'.
13111         Remove `empty' and `macro' which are no longer used.
13112         * tests/atspecific.m4 (AT_CHECK_M4SUGAR, AT_CHECK_M4SH): New.
13113         * tests/m4sugar.at: Use it.
13114         * lib/m4sugar/m4sugar.m4: Use `m4_len' not `len'.
13116 2001-08-07  Akim Demaille  <akim@epita.fr>
13118         * bin/autoconf.in, bin/autoheader.in: --force, -f is a new option.
13120 2001-08-07  Alexandre Duret-Lutz  <duret_g@epita.fr>
13122         * bin/autom4te.in (handle_output): Typo in quadrigraph substitution.
13124 2001-08-04  Akim Demaille  <akim@epita.fr>
13126         * lib/autoconf/functions.m4 (AC_FUNC_ALLOCA, AC_FUNC_ERROR_AT_LINE)
13127         (AC_FUNC_FSEEKO, AC_FUNC_OBSTACK): Use AC_LANG_IFELSE, not
13128         AC_TRY_LINK.
13129         * lib/autoconf/headers.m4 (AC_HEADER_MAJOR): Likewise.
13130         * lib/autoconf/fortran.m4 (_AC_LANG_PROGRAM_C_F77_HOOKS)
13131         (AC_F77_MAIN): Likewise.
13133 2001-08-04  Akim Demaille  <akim@epita.fr>
13135         Don't rely on M4sugar outputting the patterns in files, since we
13136         might process the output _without_ running m4, hence without these
13137         files.
13139         * lib/m4sugar/m4sugar.m4 (m4_init): No need for `m4_tmpdir'.
13140         * bin/autom4te.in (@Request::includes): Remove, unused.
13141         (@Request::source): Rename as...
13142         (@Request::input): this.
13143         (@preselect): Add `m4_pattern_forbid' and `m4_pattern_allow'.
13144         (&handle_output): Fetch the patterns from the traces.
13145         `$forbidden' and `$allowed' are constant: use m//o.
13146         (&handle_m4): M4sugar no longer wants `m4_tmpdir'.
13147         (m4_pattern_forbid, m4_pattern_allow): Adjust for tracing only.
13149 2001-08-04  Akim Demaille  <akim@epita.fr>
13151         `autoconf && autoheader' is sped up.  Now, speed up `autoheader &&
13152         autoconf', i.e., in addition to caching traces, cache the output.
13154         * bin/autom4te.in (Request::cache): Rename as...
13155         (Request::id): this.
13156         ($cache, $icache, $tcache, $ocache): New.
13157         (&handle_m4): Save M4 output in the cache instead of $tmp.
13158         (&handle_output): Adjust.
13159         (&up_to_date_p): Check that the output cache is up to date too.
13160         (top level): Run `&handle_m4' iff force or the cache is invalid.
13161         Run `&handle_output' if the output cache is more recent.
13163 2001-08-04  Akim Demaille  <akim@epita.fr>
13165         * bin/autom4te.in ($force): New.
13166         (&parse_args, &print_usage): -f, --force is a new option.
13167         (&handle_output): CPP directives might have spaces after `#'.
13168         (&parse_args): The first file only can be frozen.
13170 2001-08-04  Akim Demaille  <akim@epita.fr>
13172         Don't let autom4te compute the `include' traces several times:
13173         first check that the trace cache file is up to date, and then
13174         compare its timestamp with that of the output.
13176         * bin/autom4te.in, bin/autoupdate.in, bin/autoscan.in: Normalize
13177         the preamble.  Don't require 5.005 as Autom4te::General does it,
13178         and better yet (use `use', not `require'!).
13179         * lib/Autom4te/Struct.pm: Rename the last occurrences of
13180         Class::Struct as Autom4te::Struct.
13181         * lib/Autom4te/General.pm (File::stat): Use it.
13182         (&mtime): New, export it.
13183         * bin/autom4te.in: Use it.
13184         Declare `$req' is invalid if it is outdated.
13185         Don't declare it valid before saving it if something went wrong.
13187 2001-08-04  Akim Demaille  <akim@epita.fr>
13189         Autom4te shall not encode Autoconf data, and preselecting traces
13190         must be proposed to the users.
13192         * bin/autom4te.in (@required_trace): Remove.
13193         (@preselect): New.
13194         (&parse_args, &print_usage): -p, --preselect is a new option.
13195         (&up_to_date_p): Adjust.
13196         * bin/autoconf.in: Preselect some Autoconf macros.
13198 2001-08-04  Akim Demaille  <akim@epita.fr>
13200         * tests/tools.at (autoconf --trace: user macros): Check traces on
13201         macros invoked without arguments, and macros invoked with multiple
13202         lines arguments.
13204 2001-08-03  Alexandre Duret-Lutz  <duret_g@epita.fr>
13206         * bin/autom4te.in (handle_traces): Fix rewriting of traces without
13207         arguments.
13209 2001-08-03  Akim Demaille  <akim@epita.fr>
13211         * bin/autoconf.in ($@): Work around the usual sh bug.
13212         From Nicolas Joly.
13214 2001-08-03  Akim Demaille  <akim@epita.fr>
13216         Clean up the handling of the M4 builtins tracing exception.
13218         * bin/autom4te.in (Request::request): Don't complete M4 builtins
13219         trace requests.
13220         (@m4_builtins): Rename as...
13221         (@m4_builtin): this.
13222         (%m4_builtin_alternate_name): New.
13223         (&parse_args): Complete the trace requests with alternate names.
13224         (&handle_traces): Hence no longer do it here.
13225         (&trace_requests): Remove, unused.
13227 2001-08-03  Akim Demaille  <akim@epita.fr>
13229         * doc/autoconf.texi (Redefined M4 Macros): Document m4_exit,
13230         m4_if, and m4_wrap.
13232 2001-08-03  Akim Demaille  <akim@epita.fr>
13234         * lib/m4sugar/m4sugar.m4 (m4_init): Also forbid `_m4_*' tokens.
13235         (m4_divert_pop): Dump the whole diversion stack when a diversion
13236         mismatch happens.
13237         * bin/autom4te.in (&handle_output): Remember of the first
13238         occurrence of a possibly undefined macro, not the last.
13239         Complain about the possibly undefined macros in the same order as
13240         the appear in the output.
13241         * lib/autoconf/Makefile.am (autoconf.m4f): List its dependencies.
13242         * tests/tools.at (autoconf: forbidden tokens, basic)
13243         (autoconf: forbidden tokens, exceptions): No longer sort
13244         autoconf's stderr, as it is now deterministic.
13245         Check that `dnl' is caught.
13247 2001-08-01  Akim Demaille  <akim@epita.fr>
13249         * configure.ac: Bump to 2.52c.
13251 2001-08-01  Akim Demaille  <akim@epita.fr>
13253         Version 2.52b.
13255         * lib/Autom4te/Makefile.am (perllibdir): s/Autoconf/Autom4te/.
13257 2001-08-01  Akim Demaille  <akim@epita.fr>
13259         Version 2.52a.
13261 2001-08-01  Akim Demaille  <akim@epita.fr>
13263         * lib/Autom4te/General.pm: Use `carp' and `croak', not `warn' and
13264         `die'.
13265         (&END): New.
13266         * bin/autoconf.in, bin/autom4te.in, bin/autoupdate.in: Remove your
13267         `END', as `Autom4te::General::END' will be triggered.
13268         * bin/autoupdate.in, bin/autoscan.in: Improve error messages accuracy.
13269         * bin/autoupdate.in (File::Compare, File::Copy): Use them instead of
13270         system to run `mv', `rm', and `cmp'.
13272 2001-08-01  Akim Demaille  <akim@epita.fr>
13274         * lib/Autom4te/General.pm (&unique): New.
13275         * bin/autoscan.in (&output): Use it to issue trace requests once.
13277 2001-08-01  Akim Demaille  <akim@epita.fr>
13279         * lib/Autom4te/General.pm: New.
13280         * bin/autom4te.in (Autom4te::General): Use it.
13281         ($me, $tmp, $verbose, $debug, &mktmpdir, &verbose, &xsystem)
13282         (&find_configure_ac, &find_slave): Remove.
13283         * bin/autoscan.in: Likewise.
13284         * bin/autoupdate.in: Likewise.
13286 2001-08-01  Akim Demaille  <akim@epita.fr>
13288         * autoconf.in, autom4te.in, autoscan.in, ifnames.in,
13289         * autoheader.in, autoreconf.in, autoupdate.in: Move to...
13290         * bin: here, new directory.
13291         * lib/Autoconf: Rename as...
13292         * lib/Autom4te: this, to please case insensitive junkie OSes.
13294 2001-08-01  Akim Demaille  <akim@epita.fr>
13296         * autom4te.in ($m4): Handle the --nesting-limit.
13297         * autoconf.in (M4): Remove.
13299 2001-08-01  Akim Demaille  <akim@epita.fr>
13301         * autoconf.in ($AWK): Remove, no longer used.
13302         * test/tools.at: Use AT_CHECK_AUTOCONF.
13303         (AWK portability): Remove, for autoconf no longer uses AWK.
13304         (Syntax of the Perl scripts): New.
13305         * configure.ac: autoconf no longer needs an AWK with a good
13306         regexp engine.
13307         Use a static test on AC_PACKAGE_VERSION.
13308         * autom4te.in (&up_to_date_p): Output depends on the arguments.
13309         * lib/autoconf/Makefile.am: Ship version.m4, maintainer file.
13310         * tests/atconfig.in (PERL): New.
13312 2001-08-01  Akim Demaille  <akim@epita.fr>
13314         * lib/autoconf/lang.m4 (AC_LANG(C), AC_LANG_C, _AC_LANG_ABBREV(C))
13315         (AC_LANG(C++), AC_LANG_CPLUSPLUS, _AC_LANG_ABBREV(C++))
13316         (AC_LANG_SOURCE(C), AC_LANG_PROGRAM(C), AC_LANG_CALL(C))
13317         (AC_LANG_FUNC_LINK_TRY(C), AC_LANG_BOOL_COMPILE_TRY(C))
13318         (AC_LANG_INT_SAVE(C), _AC_ARG_VAR_CPPFLAGS, _AC_ARG_VAR_LDFLAGS)
13319         (AC_LANG_PREPROC(C), _AC_PROG_PREPROC_WORKS_IFELSE, AC_PROG_CPP)
13320         (AC_LANG_COMPILER(C), ac_cv_prog_gcc, AC_PROG_CC, _AC_PROG_CC_G)
13321         (AC_PROG_GCC_TRADITIONAL, AC_PROG_CC_C_O, AC_LANG_PREPROC(C++))
13322         (AC_PROG_CXXCPP, AC_LANG_COMPILER(C++), ac_cv_prog_gxx)
13323         (AC_PROG_CXX, _AC_PROG_CXX_G, _AC_PROG_CXX_EXIT_DECLARATION)
13324         (AC_PROG_CC_STDC, AC_C_CROSS, AC_C_CHAR_UNSIGNED, AC_C_LONG_DOUBLE)
13325         (AC_C_BIGENDIAN, AC_C_INLINE, AC_C_CONST, AC_C_VOLATILE)
13326         (AC_C_STRINGIZE, AC_C_PROTOTYPES): Move to...
13327         * lib/autoconf/c.m4: here, new file.
13329         * lib/autoconf/lang.m4 (AC_LANG(Fortran 77), AC_LANG_FORTRAN77)
13330         (_AC_LANG_ABBREV(Fortran 77), AC_LANG_SOURCE(Fortran 77))
13331         (AC_LANG_PROGRAM(Fortran 77), AC_LANG_CALL(Fortran 77))
13332         (AC_LANG_PREPROC(Fortran 77), AC_LANG_COMPILER(Fortran 77))
13333         (ac_cv_prog_g77, AC_PROG_F77, _AC_PROG_F77_G, AC_PROG_F77_C_O)
13334         (_AC_PROG_F77_V_OUTPUT, _AC_PROG_F77_V, AC_F77_LIBRARY_LDFLAGS)
13335         (AC_F77_DUMMY_MAIN, _AC_LANG_PROGRAM_C_F77_HOOKS, AC_F77_MAIN)
13336         (_AC_F77_NAME_MANGLING, AC_F77_NAME_MANGLING, AC_F77_WRAPPERS)
13337         (AC_F77_FUNC): Move to...
13338         * lib/autoconf/fortran.m4: here, new file.
13340 2001-08-01  Akim Demaille  <akim@epita.fr>
13342         * acfunctions.m4: Rename as...
13343         * lib/autoconf/functions.m4: this.
13344         * acgeneral.m4: Rename as...
13345         * lib/autoconf/general.m4: this.
13346         * acheaders.m4: Rename as...
13347         * lib/autoconf/headers.m4: this.
13348         * aclang.m4: Rename as...
13349         * lib/autoconf/lang.m4: this.
13350         * acoldnames.m4: Rename as...
13351         * lib/autoconf/oldnames.m4: this.
13352         * acspecific.m4: Rename as...
13353         * lib/autoconf/specific.m4: this.
13354         * actypes.m4: Rename as...
13355         * lib/autoconf/types.m4: this.
13356         * autoconf.m4: Rename as...
13357         * lib/autoconf/autoconf.m4: this.
13359         * m4sugar.m4: Rename as...
13360         * lib/m4sugar/m4sugar.m4: this.
13361         * m4sh.m4: Rename as...
13362         * lib/m4sugar/m4sh.m4: this.
13364         * tests/atgeneral.m4: Rename as...
13365         * lib/autotest/general.m4: this.
13367         * acfunctions: Rename as...
13368         * lib/autoscan/functions: this.
13369         * acheaders: Rename as...
13370         * lib/autoscan/headers: this.
13371         * acidentifiers: Rename as...
13372         * lib/autoscan/identifiers: this.
13373         * aclibraries: Rename as...
13374         * lib/autoscan/libraries: this.
13375         * acmakevars: Rename as...
13376         * lib/autoscan/makevars: this.
13377         * acprograms: Rename as...
13378         * lib/autoscan/programs: this.
13380 2001-08-01  Akim Demaille  <akim@epita.fr>
13382         * doc/autoconf.texi: Moving/deleting open files is not portable.
13383         Portability issues for `.' (source), and more information about sed.
13385 2001-07-25  Steven G. Johnson  <stevenj@alum.mit.edu>
13387         * aclang.m4 (AC_F77_LIBRARY_LDFLAGS): Ignore -libmil (on Solaris),
13388         which has a special meaning and is not a reference to libibmil.a.
13389         Reported by Matteo Frigo.
13391 2001-07-25  Pavel Roskin  <proski@gnu.org>
13393         * autom4te.in (mktmpdir): Strip trailing newline from mktemp
13394         output.
13396 2001-07-25  Akim Demaille  <akim@epita.fr>
13398         * autoconf.in: Try to define the variables before using them.
13399         * autom4te.in ($perllibdir): Use `$autom4te_perllibdir' as envvar
13400         instead of `$perllibdir'.
13401         * tests/atconfig.in ($autom4te_perllibdir): Export it.
13403 2001-07-25  Akim Demaille  <akim@epita.fr>
13405         * autoconf.in (ac_LF_and_DOT): Remove, unused.
13407 2001-07-24  Akim Demaille  <akim@epita.fr>
13409         Let autoconf use autom4te for traces.
13411         * autoconf.in ($task, task trace): Remove, merely pass --trace to
13412         autom4te.
13413         * autoheader.in: Don't pass `-' to autoconf, rather, a tmp file.
13414         (Because I found no way for autom4te to accept `-').
13415         * autom4te.in (&Request::request): Beware of M4 builtins.
13416         (END): Don't try to remove the content of an empty dir.
13417         (&parse_args): Default is `$f:$l:$n:$%', not `$f:$l:$n:$*'.
13418         (&handle_output): Set a default value to `$forbidden'.
13419         * autoupdate.in (&verbose, &xsystem): New, from autom4te.in.
13420         ($autoconf): Pass --debug and --verbose.
13421         * tests/atspecific.m4 (AT_CHECK_AUTOCONF): Clean up autom4te's
13422         cache.
13424 2001-07-24  Akim Demaille  <akim@epita.fr>
13426         Let autoconf use autom4te to create configure.
13428         * autoconf.in ($automate): New var.
13429         (task script): Use autom4te.
13430         * autom4te.in (File::Spec): Use it.
13431         (&find_file): New.
13432         (&parse_args): --warning is -W, not -w.
13433         Find the top level files.
13434         (&handle_m4): Pass the warnings flags.
13435         Don't report verbosely m4's failures, unless requested.
13436         (&handle_output): Don't complain for forbidden tokens in comments.
13437         Be sure to report all the forbidden tokens within a single line.
13438         (&trace_format_to_m4): Preserve `$_'.
13439         (&handle_traces): Sort the output macros.
13440         (&up_to_date_p): Find the files before trying to get its time stamp.
13442 2001-07-24  Akim Demaille  <akim@epita.fr>
13444         * Makefile.am: Ship, build and install Autom4te.
13445         (SUBDIRS): Add lib.
13446         * lib/Autoconf/Struct.pm: New, from Automake 1.5.
13447         * configure.in: Require Perl.
13448         * man/autom4te.in: New.
13450 2001-07-19  Paul Eggert  <eggert@twinsun.com>
13452         * doc/autoconf.texi (Cache Checkpointing): Use AC_MSG_ERROR in
13453         example, rather than (exit 1); exit (which isn't portable).
13455 2001-07-18  Akim Demaille  <akim@epita.fr>
13457         Version 2.52.
13459 2001-07-18  Akim Demaille  <akim@epita.fr>
13461         The C-Fortran 77 hooks are available only once AC_F77_DUMMY_MAIN
13462         was run, while they are needed also when it is expanded.
13463         Reported by Nicolas Joly.
13465         * aclang.m4 (AC_F77_DUMMY_MAIN): Define _AC_LANG_PROGRAM_C_F77_HOOKS.
13466         (AC_LANG_PROGRAM(C)): Use it instead of depending upon
13467         AC_F77_DUMMY_MAIN being expanded.
13469 2001-07-18  Akim Demaille  <akim@epita.fr>
13471         * configure.in: Bump to 2.51a.
13473 2001-07-17  Akim Demaille  <akim@epita.fr>
13475         Version 2.51.
13477 2001-07-17  Akim Demaille  <akim@epita.fr>
13479         * aclang.m4 (AC_F77_DUMMY_MAIN): Let the interface be more
13480         Autoconfy: $1 = action-if-found, $2 = action-if-not-found.
13482 2001-07-17  Akim Demaille  <akim@epita.fr>
13484         The runtime test for AC_FUNC_GETPGRP fails when prototypes are
13485         used.  Well, then use the prototypes when you can, and runtime as
13486         a last resort.
13487         Reported by Artur Frysiak
13489         * acfunctions.m4 (_AC_FUNC_GETPGRP_TEST): New.
13490         (AC_FUNC_GETPGRP): Use it.
13491         First try to compile with 0-ary or 1-ary calls.
13493 2001-07-17  Akim Demaille  <akim@epita.fr>
13495         * actypes.m4 (_AC_CHECK_TYPE_REPLACEMENT_TYPE_P): `foo_t' is a
13496         replacement type.
13497         From Paul Eggert.
13499 2001-07-17  Akim Demaille  <akim@epita.fr>
13501         * Makefile.maint: Sync. with cppi 1.10.
13503 2001-07-17  Akim Demaille  <akim@epita.fr>
13505         * aclang.m4 (AC_LANG_PROGRAM(C)): Output F77_DUMMY_MAIN only when
13506         AC_F77_DUMMY_MAIN has been run.
13507         From Pavel Roskin and Steven G. Johnson.
13509 2001-07-17  Akim Demaille  <akim@epita.fr>
13511         * configure.in: Rename as...
13512         * configure.ac: this.
13514 2001-07-17  Akim Demaille  <akim@epita.fr>
13516         * Makefile.am (INSTALL.txt): Don't use $@ and $< in non suffix
13517         rules.
13518         From Marc Espie.
13519         * Makefile.maint (release-archive-dir): Rename as...
13520         (release_archive_dir): this, so that it can be specialized in
13521         Makefile.
13523 2001-07-14  Akim Demaille  <akim@epita.fr>
13525         * configure.in: Bump to 2.50d.
13527 2001-07-14  Akim Demaille  <akim@epita.fr>
13529         Version 2.50c.
13530         * Makefile.maint (alpha): Typo.
13532 2001-07-14  Akim Demaille  <akim@epita.fr>
13534         * doc/autoconf.texi (Limitations of Make): Macro names and underscore.
13536 2001-07-14  Akim Demaille  <akim@epita.fr>
13538         * config/config.guess, config/config.sub, config/texinfo.tex
13539         * doc/standards.texi, doc/make-stds.texi: Update.
13541 2001-07-14  Akim Demaille  <akim@epita.fr>
13543         * Makefile.maint (cvs-check, cvs-tag-check, cvs-diff-check): New.
13545 2001-07-14  Akim Demaille  <akim@epita.fr>
13547         * Makefile.maint (maintainer-check): Rename as...
13548         (maintainer-distcheck): this.
13549         (changelog-check, static-check): New.
13550         Use them.
13552 2001-07-14  Kevin Ryde  <user42@zip.com.au>
13554         * doc/autoconf.texi (C++ Compilers Characteristics): Last resort
13555         for CXX is g++, not gcc.
13557 2001-07-14  Akim Demaille  <akim@epita.fr>
13559         * doc/autoconf.texi (Files): New subsection.
13561 2001-07-14  Akim Demaille  <akim@epita.fr>
13563         * doc/autoconf.texi (C Compiler, Fortran 77 Compiler): Be subsections
13564         of...
13565         (Generic Compiler Characteristics): this.
13566         (C++ Compiler): New subsection.
13568 2001-07-14  Akim Demaille  <akim@epita.fr>
13570         * autoscan.in: Use IO::File.
13571         Adjust all the routines to use it.
13572         ($log): New file (autoscan.log).
13573         (output): Dump detailed logs into $log, and a shortened version to
13574         stderr.
13575         (&scan_makefile): Refine the regexp catching tokens in the code.
13576         * doc/autoconf.texi (autoscan Invocation): Document `autoscan.log'
13577         and the `configure.ac' checking feature.
13579 2001-07-12  Akim Demaille  <akim@epita.fr>
13581         For some AWK, such as on HPUX 11, `xfoo' does not match `foo|^bar'.
13582         Reported by Michael Elizabeth Chastain.
13584         * autoconf.in: Refuse such AWK.
13585         * configure.in: Likewise.
13586         * Makefile.am (acversion.m4): Do not use move-if-change this file
13587         has dependencies.
13588         * doc/autoconf.texi (Fortran 77 Compiler): Some typos.
13590 2001-07-10  Jens Petersen  <petersen@redhat.com>
13592         * autoscan.in (&scan_makefile): Improve programs regexp to parse
13593         things like "g++", "file.c" and "some-conf" as tokens.
13594         (&scan_file): Match C++ files extensions.
13595         If the filename extension is C++ then ask for c++.
13597 2001-07-05  Steven G. Johnson  <stevenj@alum.mit.edu>
13599         * aclang.m4 (AC_F77_DUMMY_MAIN): Use AC_TRY_LINK, not
13600         AC_TRY_LINK_FUNC, to check whether defining a dummy
13601         main-like routine is needed for linking with F77 libs.
13603 2001-07-05  Pavel Roskin  <proski@gnu.org>
13605         * aclocal.m4 (_AC_PROG_CXX_EXIT_DECLARATION): Remove conftest*
13606         after using break.
13607         (_AC_PROG_F77_V_OUTPUT): Remove conftest*, not conftest.* after
13608         linking.
13610 2001-07-05  Akim Demaille  <akim@epita.fr>
13612         * Makefile.am (move_if_change): New.  Use it instead of `mv'.
13613         (acversion.m4): Name it `$(srcdir)/acversion.m4' to ease broken
13614         Makes' lives.
13615         Reported by Nicolas Joly.
13617 2001-07-04  Akim Demaille  <akim@epita.fr>
13619         * acgeneral.m4 (_AC_RUN_IFELSE): Remove conftest.o when cleaning
13620         up.
13621         * acfunctions.m4 (AC_FUNC_WAIT3): Use `break' to silent some
13622         warnings from compilers.
13623         * aclang.m4 (_AC_LANG_COMPILER_GNU): Log the version information
13624         for all the compilers, not only GNU.  Hence move from here...
13625         (AC_PROG_CC, AC_PROG_CXX, AC_PROG_F77): to here.
13627 2001-07-04  Akim Demaille  <akim@epita.fr>
13629         * acfunctions.m4 (AC_FUNC_STRTOD, AC_FUNC_STRERROR_R)
13630         (AC_FUNC_STRCOLL, AC_FUNC_WAIT3): Use AC_RUN_IFELSE and
13631         AC_COMPILE_IFELSE.
13633 2001-07-04  Akim Demaille  <akim@epita.fr>
13635         * acgeneral.m4 (_AC_INCLUDES_DEFAULT_REQUIREMENTS): Actually apply
13636         the ``strings.h'' change claimed below.
13638 2001-07-04  Akim Demaille  <akim@epita.fr>
13640         * aclang.m4 (_AC_LANG_COMPILER_GNU): s/-dumpspecs/-v/.
13642 2001-07-04  Akim Demaille  <akim@epita.fr>
13644         * acgeneral.m4 (_AC_INCLUDES_DEFAULT_REQUIREMENTS): Include
13645         strings.h if usable with string.h.
13646         Suggested by Paul Eggert.
13648 2001-07-04  Akim Demaille  <akim@epita.fr>
13650         * autoscan.in (&scan_file): Skip FILE if there is FILE.in.
13651         From Jens Petersen.
13653 2001-07-03  Akim Demaille  <akim@epita.fr>
13655         * acgeneral.m4 (_AC_OUTPUT_CONFIG_STATUS): Specify CONFIG_FILES
13656         etc. in the log.
13658 2001-07-03  Akim Demaille  <akim@epita.fr>
13660         * acheaders.m4 (AC_CHECK_HEADER): When INCLUDES are set, use the
13661         compiler, not the preprocessor.
13662         * acgeneral.m4 (_AC_INCLUDES_DEFAULT_REQUIREMENTS): No longer use
13663         dedicated code to check for inttypes.h, as AC_CHECK_HEADERS does
13664         the right thing.
13665         * Makefile.am (.m4.m4f): Emphasize M4 error messages and fail
13666         earlier if there are.
13668 2001-07-03  Akim Demaille  <akim@epita.fr>
13670         * autoscan.in ($initfile): Remove.
13671         (&find_file): Rename as...
13672         (&scan_file): this.
13673         Immediately scan the current file, instead of gathering them, and
13674         later having them handled by &scan_files.
13675         (&scan_files): Merely invoke Find::File.
13676         Adjust.
13678 2001-07-02  Akim Demaille  <akim@epita.fr>
13680         * autoscan.in: Formatting changes, matching the invocation order.
13681         (File::Find): Use it instead of Perl 4's `find.pl'.
13682         (&wanted): Rename as...
13683         (&find_file): this.
13685 2001-07-01  Pavel Roskin  <proski@gnu.org>
13687         * aclang.m4 (AC_F77_DUMMY_MAIN): Remove conftest* after using
13688         break in the argument to AC_TRY_LINK_FUNC.
13689         (AC_F77_MAIN): Remove conftest* after using break in the
13690         argument to AC_TRY_LINK.
13692 2001-07-01  Steven G. Johnson  <stevenj@alum.mit.edu>
13694         Add alternate 'main' routine detection for linking C/C++ with Fortran,
13695         fixing link failures for e.g. AC_F77_WRAPPERS on NetBSD.
13697         * aclang.m4 (AC_F77_DUMMY_MAIN): New macro to detect whether a
13698         dummy alternate main is required even if the user provides her own
13699         'main'.
13700         (AC_F77_MAIN): New macro to detect whether it is possible to
13701         provide an alternate 'main' function name, using the 'main' from
13702         the Fortran libraries.
13703         (AC_LANG_PROGRAM(C)): Use F77_DUMMY_MAIN, if it is defined, so that
13704         cross-language link tests can be performed successfully.
13705         (_AC_F77_NAME_MANGLING): Require AC_F77_DUMMY_MAIN.  Also put $FLIBS
13706         after $LIBS, for consistency; this should be the general rule since
13707         the user may want to link to Fortran libraries that require $FLIBS.
13708         * doc/autoconf.texi: Document AC_F77_DUMMY_MAIN and AC_F77_MAIN.
13710 2001-06-29  Pavel Roskin  <proski@gnu.org>
13712         * atgeneral.m4 (AT_CHECK): Add a newline to the end of
13713         at-stdout and at-stderr instead of removing the newline
13714         from the echo output, which is not guaranteed to work.
13716 2001-06-28  Jens Petersen  <petersen@redhat.com>
13718         * aclang.m4 (_AC_PROG_CXX_EXIT_DECLARATION): Only add declaration to
13719         confdefs.h when non-zero.
13721 2001-06-28  Akim Demaille  <akim@epita.fr>
13723         * configure.in: Bump to 2.50c.
13725 2001-06-26  Akim Demaille  <akim@epita.fr>
13727         Version 2.50b.
13729 2001-06-26  Akim Demaille  <akim@epita.fr>
13731         Version 2.50a.
13733 2001-06-25  Pavel Roskin  <proski@gnu.org>
13735         * tests/atspecific.m4 (AT_CHECK_MACRO): Accept one more
13736         argument, AUTOCONF-FLAGS.
13737         * tests/mktests.sh (update_exclude_list): Add
13738         AC_SYS_RESTARTABLE_SYSCALLS and AC_FUNC_WAIT3.
13739         * tests/semantics.at: Test AC_SYS_RESTARTABLE_SYSCALLS and
13740         AC_FUNC_WAIT3 with "-W no-obsolete".
13742 2001-06-25  Akim Demaille  <akim@epita.fr>
13744         * tests/foreign.at (libtool): Fix the `libtoolize --version' decoding.
13746 2001-06-25  Akim Demaille  <akim@epita.fr>
13748         * autoscan.in (%macro): Now maps from word to list of macros.
13749         (&init_tables): Die when a word which is already handled by
13750         explicit macros is mapped to the default macro.
13751         (&print_unique): Remove, inlined in...
13752         (&output_kind): here.
13753         (File::Basename): Use it.
13754         (&output): Sort the CONFIG_FILES.
13755         * acheaders: Normalize.
13756         * acfunctions: Likewise.
13758 2001-06-25  Akim Demaille  <akim@epita.fr>
13760         * aclang.m4 (_AC_LANG_COMPILER_GNU): If GNU, dump the compiler
13761         characteristics in the logs.
13762         Suggested by Mo DeJong.
13764 2001-06-24  Akim Demaille  <akim@epita.fr>
13766         * acfunctions.m4 (AM_FUNC_ERROR_AT_LINE, AM_FUNC_FNMATCH)
13767         (AM_FUNC_MKTIME, AM_FUNC_OBSTACK, AM_FUNC_STRTOD): Reactivated.
13768         * doc/autoconf.texi (Autoconf 2.13): New section.
13770 2001-06-24  Akim Demaille  <akim@epita.fr>
13772         * autoconf.in (Task traces): Separate the error messages from the
13773         traces to improve robustness.
13775 2001-06-23  Akim Demaille  <akim@epita.fr>
13777         * tests/torture.at (AC_ARG_VAR): Make it a single test instead of
13778         three as failures are unlikely, and speed matters.
13780 2001-06-23  Akim Demaille  <akim@epita.fr>
13782         * doc/autoconf.texi (Redefined M4 Macros): New.
13784 2001-06-23  Akim Demaille  <akim@epita.fr>
13786         * acgeneral.m4 (_AC_INCLUDES_DEFAULT_REQUIREMENTS): Consider
13787         inttypes.h is missing if it conflicts with sys/types.h, as on IRIX
13788         5.3.
13790 2001-06-23  Paolo Bonzini  <bonzini@gnu.org>
13792         * acgeneral.m4 (_AC_OUTPUT_CONFIG_STATUS): Defer parsing of
13793         config.status targets to after the evaluation of the INIT-CMDS.
13794         Double quote config.status targets (used to be single quoted).
13796 2001-06-23  Akim Demaille  <akim@epita.fr>
13798         * tests/torture.at (CONFIG_FILES, HEADERS, LINKS and COMMANDS):
13799         Check the content of the created file.
13800         Check the ./config.status command line invocation.
13802 2001-06-23  Akim Demaille  <akim@epita.fr>
13804         * tests/foreign.at (Libtool): Reject prehistoric versions.
13806 2001-06-23  Akim Demaille  <akim@epita.fr>
13808         * aclang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Try to be robust to
13809         preexisting files matching a.*.
13811 2001-06-23  Akim Demaille  <akim@epita.fr>
13813         * acgeneral.m4 (_AC_ARG_VAR_VALIDATE): Output error messages on
13814         stderr.
13815         * doc/autoconf.texi (AC_ARG_VAR): Update.
13817 2001-06-21  Akim Demaille  <akim@epita.fr>
13819         * acgeneral.m4 (_AC_ARG_VAR_VALIDATE): Die instead of warning when
13820         precious variables have changed.
13821         * tests/torture.at (AC_ARG_VAR): Adjust.
13823 2001-06-21  Akim Demaille  <akim@epita.fr>
13825         ./configure --program-suffix=foo produces `transform=s,$$,foo,;',
13826         but some sed choke on multiple `;', and other tools (e.g.,
13827         Automake), include the separator themselves.
13829         * acgeneral.m4 (AC_ARG_VAR): Be sure not to leave extra `;'.
13831 2001-06-19  Tim Van Holder  <tim.van.holder@pandora.be>
13833         * doc/autoconf.texi (Functions Portability): Rename as...
13834         (Function Portability): this.
13835         (Function Portability): Document potential problems with unlink().
13837 2001-06-19  Paul Eggert  <eggert@twinsun.com>
13839         * NEWS, doc/autoconf.texi: Document quadrigraphs.
13841 2001-06-18  Akim Demaille  <akim@epita.fr>
13843         * acfunctions.m4 (AC_FUNC_FORK): Fix typos.
13845 2001-06-18  Ruediger Kuhlmann  <info@ruediger-kuhlmann.de>
13847         * acfunctions.m4: (AC_FUNC_VFORK) rename as...
13848         (_AC_FUNC_VFORK): this.
13849         Remove AC_DEFINEs and don't guess cross-compilation values.
13850         (_AC_FUNC_FORK): New, check whether fork() isn't just a stub.
13851         (AC_FUNC_FORK): New, use _AC_FUNC_VFORK and _AC_FUNC_FORK to
13852         define HAVE_WORKING_FORK, HAVE_WORKING_VFORK; and vfork to fork if
13853         vfork doesn't work.
13854         Guess values if cross-compiling, but warn.
13855         * acfunctions: Add AC_FUNC_FORK.
13856         * doc/autoconf.texi: Document AC_FUNC_FORK. Give example to define
13857         and vfork appropriately.
13859 2001-06-18  Akim Demaille  <akim@epita.fr>
13861         * doc/autoconf.texi (Functions Portability): New section.
13863 2001-06-18  Akim Demaille  <akim@epita.fr>
13865         * autoconf.in (M4): Pass --nesting-limit=1024, unless already set
13866         in $M4.
13867         Suggested by Andreas Schwab.
13869 2001-06-18  Akim Demaille  <akim@epita.fr>
13871         * acfunctions.m4 (AC_FUNC_CHOWN, AC_FUNC_CLOSEDIR_VOID)
13872         (AC_FUNC_GETPGRP, AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK)
13873         (AC_FUNC_MMAP, AC_FUNC_SELECT_ARGTYPES, _AC_FUNC_STAT)
13874         (AC_FUNC_UTIME_NULL): Use AC_INCLUDES_DEFAULT.
13875         Don't use AC_TRY_RUN, which double quotes, prefer AC_RUN_IFELSE,
13876         and either AC_LANG_SOURCE or AC_LANG_PROGRAM.
13877         (AC_FUNC_CLOSEDIR_VOID): Protect C++ from `int closedir ();' (or
13878         the converse).
13880 2001-06-18  Akim Demaille  <akim@epita.fr>
13882         * doc/autoconf.texi (ms): New index.
13883         (Macro Index): Rename as...
13884         (Autoconf Macro Index): this.
13885         (M4 Macro Index): New appendix.
13886         (Programming in M4): New chapter.
13887         Define M4sugar, M4sh, m4_pattern_forbid, and m4_pattern_allow.
13888         (Quoting): Rename as...
13889         (M$ Quotation): this.
13890         Be part of `Programming in M4).
13892 2001-06-18  Nicolas Joly  <njoly@pasteur.fr>
13894         * tests/torture.at (AC_ARG_VAR): Set variables and export them
13895         in separate statements for compatibility with Tru64 v5.1.
13897 2001-06-17  Akim Demaille  <akim@epita.fr>
13899         * acgeneral.m4 (_AC_ARG_VAR_VALIDATE): Be sure to cache the
13900         current values of the precious variables, not the previously
13901         cached values.
13902         Pass precious variables which are set to config.status.
13903         * doc/autoconf.texi (Setting Output Variables): Document AC_ARG_VAR.
13904         * tests/torture.at (AC_ARG_VAR): New.
13906 2001-06-15  Paul Eggert  <eggert@twinsun.com>
13908         * doc/autoconf.texi: Move AC_FUNC_WAIT3 and
13909         AC_SYS_RESTARTABLE_SYSCALLS to the obsolete section,
13910         and explain why and how to replace them.
13911         * acfunctions.m4 (AC_FUNC_WAIT3): Warn as obsolete.
13912         * acspecific.m4 (AC_SYS_RESTARTABLE_SYSCALLS): Likewise.
13914 2001-06-15  Akim Demaille  <akim@epita.fr>
13916         `build_alias', `host_alias', and `target_alias' are not AC_SUBST'd.
13917         Reported by Bruno Haible.
13919         * acgeneral.m4 (AC_ARG_VAR): Move the AC_SUBST, from here...
13920          (_AC_ARG_VAR_PRECIOUS): to here.
13922 2001-06-15  Pavel Roskin  <proski@gnu.org>
13924         * acheaders.m4 (_AC_CHECK_HEADER_DIRENT): Instead of defining
13925         an unused pointer use cast to this type and `if' statement to
13926         avoid warnings from the compiler.
13927         (AC_HEADER_TIME): Likewise.
13928         * actypes.m4 (AC_CHECK_MEMBER): s/foo/ac_aggr/. Use the member
13929         in `if' statement to avoid warnings from the compiler. Declare
13930         ac_aggr static to avoid the need to initialize it.
13932 2001-06-14  Akim Demaille  <akim@epita.fr>
13934         * doc/autoconf.texi (Portable Shell): Move to follow `Writing
13935         Macros'.
13937 2001-06-13  Akim Demaille  <akim@epita.fr>
13939         * m4/missing.m4, config/missing: Updated to Automake 1.4g's.
13940         Suggested by Alexander Mai.
13942 2001-06-13  Akim Demaille  <akim@epita.fr>
13944         * acgeneral.m4 (_AC_INCLUDES_DEFAULT_REQUIREMENTS): Guard
13945         sys/types.h and sys/stat.h, and check for them.
13947 2001-06-13  Akim Demaille  <akim@epita.fr>
13949         * acheaders.m4 (AC_CHECK_HEADER, AC_CHECK_HEADERS): Support $4 =
13950         INCLUDES.
13952 2001-06-12  Maciej W. Rozycki  <macro@ds2.pg.gda.pl>
13954         * acspecific.m4 (AC_PATH_XTRA): Check if linking against libX11
13955         succeeds and only try adding libdnet upon a failure.
13957 2001-06-12  Akim Demaille  <akim@epita.fr>
13959         * autoscan.in (&output_kind): Output the comment only if it exists.
13960         (%kind_comment): Add entry for `programs'.
13961         (&output_programs): Use &output_kind.
13962         (&output_functions, &output_identifiers, &output_headers)
13963         (&output_programs): Inline, and remove.
13965 2001-06-12  Akim Demaille  <akim@epita.fr>
13967         * autoscan.in (%kind_comment): New.
13968         (output_kind): New.
13969         (output_functions, output_identifiers, output_headers): Use it.
13971 2001-06-12  Akim Demaille  <akim@epita.fr>
13973         * autoscan.in (&print_unique): Take `$kind' and `$word' as
13974         arguments, to factor indirections into `%macro' and `%used'.
13975         (%generic_macro): Fix a typo.
13977 2001-06-12  Akim Demaille  <akim@epita.fr>
13979         * aclibraries: New.
13980         * autoscan.in (@kinds): Add `libraries'.
13981         Use `@kinds' instead of hard coded lists.
13982         (%programs, %headers, %identifiers, %makevars, %libraries, %functions):
13983         Remove, replaced by...
13984         (%used): this.
13986 2001-06-12  Akim Demaille  <akim@epita.fr>
13988         * autoscan.in (%functions_macros %headers_macros)
13989         (%identifiers_macros %programs_macros %makevars_macros): Remove,
13990         replaced by...
13991         (%macro): New.
13993 2001-06-11  Raja R Harinath  <harinath@cs.umn.edu>
13995         * aclang.m4 (AC_NO_EXECUTABLES): Override
13996         _AC_COMPILER_EXEEXT_WORKS, not _AC_LANG_COMPILER_WORKS.
13998 2001-06-11  Akim Demaille  <akim@epita.fr>
14000         * aclang.m4 (AC_NO_EXECUTABLES): Define the macros with their
14001         trailing new line.
14002         Reported by Andreas Schwab.
14004 2001-06-11  Akim Demaille  <akim@epita.fr>
14006         * Makefile.am, Makefile.maint: Typos.
14008 2001-06-09  Akim Demaille  <akim@epita.fr>
14010         * doc/autoconf.texi (Here-Documents): New section, gathering
14011         documentation about here-documents.
14012         Use `href', not `uref', and other changes.
14014 2001-06-09  Akim Demaille  <akim@epita.fr>
14016         * doc/autoconf.texi (Portable Shell Programming): Promoted as a
14017         chapter.
14019 2001-06-09  Akim Demaille  <akim@epita.fr>
14021         * doc/autoconf.texi (Limitations of Builtins): Complete the
14022         description of the here-docs penalties with Alexandre Oliva's
14023         explanations.
14025 2001-06-01  Paul Eggert  <eggert@twinsun.com>
14027         * doc/autoconf.texi: Talk about here documents and speedups.
14028         Do not use "echo" on arbitrary strings.
14029         Spell "here-documents" consistently with the standard.
14031 2001-06-09  Akim Demaille  <akim@epita.fr>
14033         * doc/autoconf.texi (Concept Index): Introduce it.
14034         Regenerate the menus.
14036 2001-06-09  Akim Demaille  <akim@epita.fr>
14038         * Makefile.maint, GNUmakefile: New, from Jim Meyering.
14039         * config/prev-version.txt: New.
14040         * config/move-if-change: New, for GNU libc.
14042 2001-06-06  Pavel Roskin  <proski@gnu.org>
14044         * tests/atgeneral.m4 (AT_INIT): Remove "/bin/sh" after $SHELL.
14046 2001-06-06  Akim Demaille  <akim@epita.fr>
14048         * acgeneral.m4 (AC_CHECK_LIB): Fix the cache var name to work
14049         properly when $1 is not a literal.
14050         Fixes PR Autoconf/187, reported by Bram Moolenaar.
14052 2001-06-06  Akim Demaille  <akim@epita.fr>
14054         Invoking AC_COPYRIGHT before AC_INIT fails.
14056         * Makefile.am (.m4.m4f): Pass --fatal-warnings to m4.
14057         * acgeneral.m4 (_m4_divert(VERSION_FSF))
14058         (_m4_divert(VERSION_USER)): New.
14059         (AC_COPYRIGHT): $2 is the diversion to use.
14060         (_AC_INIT_COPYRIGHT): Use the FSF diversion.
14061         (AC_INIT): Remove dead comments as now it's commutative.
14063 2001-06-06  Akim Demaille  <akim@epita.fr>
14065         * tests/semantics.at (AC_CHECK_LIB): Strengthen to reflect
14066         PR autoconf/187.
14068 2001-06-05  Akim Demaille  <akim@epita.fr>
14070         * acgeneral.m4 (_AC_INIT_PARSE_ARGS): `prefix' and `exec_prefix'
14071         can be empty.
14072         `*dir' variables cannot be NONE.
14073         Reported by Mark Kettenis.
14075 2001-06-05  Paul Eggert  <eggert@twinsun.com>
14077         * doc/autoconf.texi: Fix references to Solaris and SunOS versions.
14079 2001-06-04  Akim Demaille  <akim@epita.fr>
14081         * acgeneral.m4 (AC_VAR_SET, AC_VAR_GET, AC_VAR_TEST_SET)
14082         (AC_VAR_SET_IFELSE, AC_VAR_PUSHDEF and AC_VAR_POPDEF, AC_TR_CPP)
14083         (AC_TR_SH): Move as...
14084         * m4sh.m4 (AS_VAR_SET, AS_VAR_GET, AS_VAR_TEST_SET)
14085         (AS_VAR_SET_IF, AC_VAR_PUSHDEF, AS_VAR_POPDEF, AS_TR_CPP)
14086         (AS_TR_SH): these.
14087         (_AS_TR_PREPARE, _AS_CR_PREPARE, _AS_TR_CPP_PREPARE)
14088         (_AS_TR_SH_PREPARE): New.
14089         (AS_SHELL_SANITIZE): Invoke _AS_TR_PREPARE.
14090         * tests/aclocal.m4 (AC_STATE_SAVE): `as_' vars can be modified.
14092 2001-06-02  Akim Demaille  <akim@epita.fr>
14094         * Makefile.am (.m4.m4f): Pass the options first.
14095         Fixes PR autoconf/182.
14097 2001-06-02  Nathan Sidwell  <nathan@codesourcery.com>
14099         GNU getopt, when POSIXLY_CORRECT does not permute options and
14100         arguments.  So pass the options first.
14101         Fixes PR autoconf/184.
14103         * autoconf.sh (m4_prefiles, m4f_prefiles): New variables.
14104         (run_m4): Remove files.
14105         (run_m4f): Remove.
14106         Update remainder of script to use them.
14107         (for warning in): Do not use a literal comma as it will not be
14108         split by IFS.
14110 2001-06-02  Christian Marquardt  <marq@gfz-potsdam.de>
14112         * aclang.m4 (AC_PROG_F77): Add Fujitsu's "frt" to the list of
14113         Fortran compilers to check.
14114         (_AC_PROG_F77_V): Add '-###' as a possible option to print
14115         information on library and object files.
14116         (AC_PROG_CXX): Add Fujitsu's "FCC" to the list of C++ compilers
14117         to check.
14119 2001-06-02  Akim Demaille  <akim@epita.fr>
14121         * autom4te.in (Request::@request): Declare with `vars', not `my',
14122         as it prevents updates via `do FILENAME'.
14124 2001-06-02  Akim Demaille  <akim@epita.fr>
14126         * configure.in (standards_texi): Remove, dead code.
14128 2001-06-02  Akim Demaille  <akim@epita.fr>
14130         * autom4te.in: New.
14132 2001-06-02  Pavel Roskin  <proski@gnu.org>
14134         * acgeneral.m4 (_AC_INIT_PREPARE): Don't rely on $? in the traps
14135         for signals other than 0 - exit with code 1.
14136         * m4sh.m4 (AS_TMPDIR): Likewise.
14137         * autoconf.in: Likewise. Also don't rely on exit == exit $?.
14138         * autoheader.in: Likewise.
14139         * autoreconf.in: Likewise.
14140         * tests/torture.at (Signal handling): New test for the above.
14142 2001-06-01  Akim Demaille  <akim@epita.fr>
14144         * m4sugar.m4 (m4_defn, m4_undefine, m4_popdef): Clarify the error
14145         message.
14147 2001-05-31  Akim Demaille  <akim@epita.fr>
14149         * acfunctions, acheaders, acidentifiers, acmakevars, acprograms:
14150         Add copyright and comments.
14151         * acheaders: Add stdint.h.
14152         Suggested by Paul Eggert.
14154 2001-05-31  Akim Demaille  <akim@epita.fr>
14156         * atgeneral.m4 (AT_INIT): Use $SHELL.
14157         * atspecific.m4 (AT_CHECK_DEFINES): Skip HAVE_STDINT_H.
14159 2001-05-31  Akim Demaille  <akim@epita.fr>
14161         * acgeneral.m4 (_AC_INCLUDES_DEFAULT_REQUIREMENTS): Include
14162         stdint.h.
14163         From Paul Eggert and Lars Hecking.
14165 2001-05-31  Akim Demaille  <akim@epita.fr>
14167         * tests/base.at: Adjust line numbers in error messages.
14169 2001-05-31  Akim Demaille  <akim@epita.fr>
14171         * tests/base.at, tests/m4sh.at: When using AC_PLAIN_SCRIPT be sure
14172         to emit the bangshe line.
14173         Reported by David Carter.
14175 2001-05-30  Steven G. Johnson  <stevenj@alum.mit.edu>
14177         * aclang.m4 (AC_PROG_F77): Add Compaq's "fort" to the list of
14178         Fortran (95) compilers to check.
14180 2001-05-29  Alexandre Duret-Lutz  <duret_g@epita.fr>
14182         * doc/autoconf.texi (Introduction, Pointers): Update the Autoconf
14183         Macro Archive URL.
14185 2001-05-23  Pavel Roskin  <proski@gnu.org>
14187         * aclang.m4 (AC_PROG_CPP): Use `break' instead of `break 2' since
14188         _AC_PROG_PREPROC_WORKS_IFELSE expands arguments outside the loop.
14189         (AC_PROG_CXXCPP): Likewise.
14191 2001-05-22  Akim Demaille  <akim@epita.fr>
14193         * config: New directory.
14194         * configure.in: AC_CONFIG_AUX_DIR it.
14195         * tests/atspecific.m4 (AT_CONFIGURE_AC): Adjust.
14197 2001-05-22  Akim Demaille  <akim@epita.fr>
14199         * autoconf.in, autoreconf.in, autoheader.in, autoscan.in, ifnames.in,
14200         * autoupdate.in: Specify the Emacs mode.
14201         * acversion.m4.in: Rename as...
14202         * acversion.m4: this.
14203         * tests/Makefile.am (CLEANFILES): More garbage.
14205 2001-05-22  Akim Demaille  <akim@epita.fr>
14207         * autoconf.sh, autoreconf.sh, autoheader.sh, autoscan.pl, ifnames.sh:
14208         Rename as...
14209         * autoconf.in, autoreconf.in, autoheader.in, autoscan.in, ifnames.in:
14210         these.
14212 2001-05-21  Akim Demaille  <akim@epita.fr>
14214         * configure.in: Bump to 2.50a.
14217         -----
14219         Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007 Free
14220         Software Foundation, Inc.
14222         Copying and distribution of this file, with or without
14223         modification, are permitted provided the copyright notice and this
14224         notice are preserved.