use shell functions to speed up autotest and produce slimmer testsuites
[autoconf.git] / ChangeLog
blob925c10099ddc04ba5e2c812fa43ff90913874dc2
1 2007-10-04  Eric Blake  <ebb9@byu.net>
3         One more round of m4_foreach_w speedups.
4         * lib/m4sugar/m4sugar.m4 (m4_flatten): Only use regex if newline
5         is present.
6         (_m4_split): Avoid useless expansions inside definition.  Move
7         argument defaulting...
8         (m4_split): ...here.  Change alternate quote to something less
9         likely to appear in $1.  Also, special case space as regexp...
10         (m4_foreach_w): ...to avoid regexp on single-term list.
11         (m4_default, m4_defn, m4_popdef, m4_undefine, _m4_foreach): Avoid
12         useless expansions inside definition.
13         * tests/m4sugar.at (m4@&t@_split): Add tests.
15 2007-10-04  Paolo Bonzini  <bonzini@gnu.org>
17         * general.m4 (AT_INIT): Add at_check_newline function.
18         (_AT_DECIDE_TRACEABLE): Include at_traceon test, use shell function.
19         (_AT_CHECK): Don't use at_trace_this.
21 2007-10-04  Paolo Bonzini  <bonzini@gnu.org>
23         Fix previous commit.
24         * lib/autotest/general.m4 (AT_LINE): Fix regex.
26 2007-10-04  Eric Blake  <ebb9@byu.net>
28         Speed up building testsuites.
29         * lib/autotest/general.m4 (AT_LINE): Only use regex when file
30         changed since last time.  Use simpler regex.
32 2007-10-03  Eric Blake  <ebb9@byu.net>
34         Optimize checking for identifiers.
35         * lib/m4sugar/m4sh.m4 (AS_IDENTIFIER_IF, _AS_IDENTIFIER_IF): New
36         macros, more efficient than regex on m4_re_word.
37         * lib/autoconf/general.m4 (AC_SUBST, AC_DEFINE_TRACE_LITERAL):
38         Rewrite in terms of new macro.  As a side-effect, AC_DEFINE can
39         now use @&t@.
40         * configure: Regenerate.
42         Remove some XFAILs, and make AT_SETUP output line up.
43         * lib/autotest/general.m4 (AT_SETUP): Only expand description
44         once; thereafter, use its expansion, properly quoted.
45         * tests/autotest.at (AT_CHECK_AT_TITLE): Also check macro
46         expansion with arguments, and check for aligned output.
47         (AT_CHECK_AT_TITLE_CHAR): Remove XFAILs for tests that now pass.
48         Add a test for macros with parameters.
49         * NEWS: Document the semantics change.
50         * tests/base.at: Fix test titles containing commas.
51         * tests/compile.at: Likewise.
52         * tests/tools.at: Likewise.
53         * tests/torture.at: Likewise.
55         Another round of regex avoidance.
56         * lib/m4sugar/m4sugar.m4 (m4_cr_alnum, m4_cr_all)
57         (_m4_define_cr_not, m4_cr_not_letters, m4_cr_not_LETTERS)
58         (m4_cr_not_Letters, m4_cr_not_digits, m4_cr_not_alnum)
59         (m4_cr_not_symbols1, m4_cr_not_symbols2): New macros, implementing
60         character ranges useful in m4_translit.
61         (m4_toupper, m4_tolower): Optimize the constant portion of
62         definition.
63         * lib/m4sugar/m4sh.m4 (AS_LITERAL_IF): Also reject @S|@ because it
64         creates $, and reject [] thanks to AS_TR_SH rewrite.
65         (AS_TR_SH, AS_TR_CPP): Use just translit, not bpatsubst.
66         (AS_ESCAPE): Factor...
67         (_AS_ESCAPE): ...into new macro, with second argument required.
68         Avoid regex in common case.
69         (_AS_QUOTE): Use new macro.
71         Whitespace cleanup.
72         * lib/autoconf/types.m4: Avoid space-tab.
73         * lib/m4sugar/m4sh.m4: Use tab consistently.
75 2007-10-03  Paul Eggert  <eggert@cs.ucla.edu>
77         * lib/m4sugar/m4sugar.m4 (m4_shift2, m4_shift3): New macros.
78         (m4_shiftn): Remove no-longer-needed optimization.  Perhaps we
79         should remove m4_shiftn entirely?
80         (m4_case, b4_bmatch, m4_map_sep, m4_bpatsubsts, m4_join):
81         Prefer m4_shift2 and m4_shift3 to m4_shiftn.
82         * lib/autoconf/lang.m4 (_AC_LANG_DISPATCH): Likewise.
83         * lib/m4sugar/m4sh.m4 (AS_CASE, AS_IF): Likewise.
84         * tests/autotest.at (AT_CHECK_AT_TEST): Likewise.
86 2007-10-03  Eric Blake  <ebb9@byu.net>
88         Comment touchups.
89         * lib/m4sugar/m4sugar.m4: Grammar fixes in comments.
91 2007-10-02  Eric Blake  <ebb9@byu.net>
93         Optimize appending text.
94         * lib/m4sugar/m4sugar.m4 (m4_append_uniq): Use index, not regular
95         expressions.
97         Optimize recursion.
98         * lib/m4sugar/m4sugar.m4 (m4_shiftn): This macro is called in a
99         lot of hot spots; optimize it for 2 and 3 shifts.
101         Optimize AC_PREREQ and other m4sugar numerics.
102         * lib/m4sugar/m4sugar.m4 (m4_sign): Write with m4_eval.
103         (m4_cmp): Compare arbitrary expressions, without overflow.
104         (m4_version_unletter): Also recognize capital letters.
105         (m4_version_compare): Avoid regex when splitting version number
106         string.
108 2007-10-01  Eric Blake  <ebb9@byu.net>
110         Once again, reject IRIX m4.
111         * m4/m4.m4 (AC_PROG_GNU_M4): Use indir builtin to root out non-GNU
112         implementations that ignore --trace.
113         * configure: Regenerate.
114         Reported by Ralf Wildenhues.
116         Fix regression in AC_DEFINE([macro(with_arg)]).
117         * lib/autoconf/general.m4 (AC_DEFINE_TRACE): Don't chop off close
118         quotes with a careless m4_substr.
120 2007-09-30  Eric Blake  <ebb9@byu.net>
122         Allow nameless iteration.
123         * lib/m4sugar/m4sugar.m4 (m4_for, _m4_for): Access variable
124         indirectly.
125         * tests/m4sugar.at (myvar): Test this.
127 2007-09-29  Eric Blake  <ebb9@byu.net>
129         Speed optimization: avoid m4 regex when other algorithms work.
130         * lib/m4sugar/m4sh.m4 (AS_LITERAL_IF): Rewrite without regex.
131         (_AS_QUOTE_IFELSE): Likewise.
132         * lib/m4sugar/m4sugar.m4 (m4_strip): Reduce from 3 to 2 regex.
133         (m4_bpatsubsts): Split...
134         (_m4_bpatsubsts): ...so that recursion can avoid patsubst on empty
135         regex.
136         (_m4_divert()): Define, to avoid m4 warning on `m4_divert'.
137         (m4_qlen): Optimize on short strings, to avoid regex.
138         (m4_sign): Avoid regex, and fix bug with `01' and `-0'.
139         * lib/autoconf/general.m4 (AC_CACHE_VAL): Rewrite without regex.
140         (AC_DEFINE_TRACE): Likewise.
142 2007-09-28  Eric Blake  <ebb9@byu.net>
144         Oops - my earlier 'optimization' caused a regression.
145         * tests/local.at (AT_CHECK_M4): Fix typo.
147 2007-09-27  Eric Blake  <ebb9@byu.net>
148         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
150         Catch even more common AC_CACHE_VAL mistakes.
151         * lib/autoconf/general.m4 (AC_CACHE_VAL): Warn if cache variable
152         lacks '_cv_', or if AC_SUBST appears in body.
153         * tests/base.at (AC_CACHE_CHECK): Test this change.
155 2007-09-27  Stepan Kasal  <kasal@ucw.cz>
156         and Eric Blake  <ebb9@byu.net>
158         Autotest no longer caters to Ultrix redirection limitation.
159         * doc/autoconf.texi (Writing testsuite.at): Remove the
160         limitation that the first parameter of AT_CHECK cannot
161         contain redirection.
162         (File Descriptors): Mention that Ultrix limitation is no longer a
163         show-stopper in modern code.
164         * tests/local.at (AT_CHECK_M4): Fix for cases when the fourth
165         parameter is `stderr' or `experr'.  Optimize if it was `ignore'.
166         * lib/autotest/general.m4 (AT_CHECK): Update comment.
168 2007-09-27  Eric Blake  <ebb9@byu.net>
170         Squelch changeword in m4sugar.
171         * lib/m4sugar/m4sugar.m4 (changeword): Disable this experimental
172         feature of m4 1.4.x.
174         Configure whitespace touchups.
175         * lib/autoconf/general.m4 (_AC_INIT_HELP): Fix alignment of
176         installation directories, and avoid TAB, in configure --help
177         output.
178         * configure.ac: Avoid extra trailing newline.
179         * lib/m4sugar/m4sh.m4 (_AS_DETECT_BETTER_SHELL): Avoid space-tab.
180         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Avoid TAB in
181         config.status --help output.
182         * configure: Regenerate.
184         Fix underquotation in AS_HELP_STRING.
185         * lib/m4sugar/m4sh.m4 (AS_HELP_STRING): Don't underquote lhs
186         argument.
187         * lib/m4sugar/m4sugar.m4 (m4_text_wrap): Don't underquote
188         first-prefix argument.
189         * tests/m4sh.at (AS@&t@_HELP_STRING): Test this fix.
190         * NEWS: Document AS_HELP_STRING fix.
192         Autotest formatting touchups.
193         * lib/autotest/general.m4 (HELP_TUNING): Avoid TAB in terminal
194         output.
195         (PATH): Simplify computation of new PATH.
197 2007-09-26  Eric Blake  <ebb9@byu.net>
199         Fix testsuite breakage in last patch.
200         * tests/autotest.at (AT_CHECK_AT_TITLE): Properly quote the
201         font-lock fix.
202         * tests/torture.at (@%:@define header templates): Rename, so that
203         output lines up correctly.
205         More font-lock happiness.
206         * tests/autotest.at (AT_CHECK_AT_TITLE_CHAR): Clean up font
207         confusion.
209 2007-09-25  Eric Blake  <ebb9@byu.net>
211         Typo fixes.
212         * lib/autoconf/general.m4 (AC_SUBST): Fix typo in comment.
213         * lib/m4sugar/m4sh.m4 (AS_VAR_PUSHDEF): Likewise.
215         Improve documentation of M4 parameter expansion.
216         * doc/autoconf.texi (Quoting and Parameters): New section.
217         (Quotation and Nested Macros): Improve wording.
219         Improve C99 detection.
220         * lib/autoconf/c.m4 (_AC_PROG_CC_C99): Add support for HP cc, and
221         avoid deprecation warning with icc.
222         * THANKS: Update.
223         Reported by Ted Bullock.
225 2007-09-24  Jim Meyering  <jim@meyering.net>
227         Whenever possible, use the vertical bar as sed delimiter.
228         * lib/autoconf/functions.m4 (GETLOADAVG_LIBS) [AC_FUNC_GETLOADAVG]:
229         Use "|", not "!".
230         * lib/autoconf/status.m4 (_AC_SRCDIRS) [ac_top_builddir_sub]:
231         [ac_dir_suffix]: Use "|", not "," as sed delimiter.
232         * tests/mktests.sh (as_me): Likewise.
233         * lib/freeze.mk (check-forbidden-patterns): Likewise.
234         * lib/autoconf/fortran.m4 (_AC_PROG_FC_V_OUTPUT): Likewise.
235         * configure: Regenerate.
236         * doc/autoconf.texi (Shell Substitutions): Use "|", not "," in examples.
237         * lib/autotest/general.m4 (AT_INIT): Use "|", not "&" as sed delimiter
238         in the : -> $PATH_SEPARATOR transformation of $AUTOTEST_PATH.
239         This is fine, as long as $PATH_SEPARATOR doesn't contain "|".
241 2007-09-22  Jim Meyering  <jim@meyering.net>
243         Add a comment.
244         * lib/autoconf/headers.m4 (HAVE_STDBOOL_H): Document the
245         2004-05-31 change also with a comment in the code.
247 2007-09-20  Eric Blake  <ebb9@byu.net>
249         More contribution housekeeping.
250         * THANKS: Sort.
251         * AUTHORS: Sort, reflect recent assignment from Helge Deller.
253         Ignore additional files, when copying cross-repository.
254         * .gitignore: Ignore CVS directories, emacs edits.
255         * .cvsignore: Ignore .git directory, emacs edits.
257 2007-09-15  Eric Blake  <ebb9@byu.net>
259         Provide AC_VERSION, not m4_AUTOCONF_VERSION.
260         * doc/autoconf.texi (Text processing Macros): Remove mention of
261         m4_AUTOCONF_VERSION, and leave m4_PACKAGE_VERSION undocumented
262         once again.
263         (Notices): Move AC_PREREQ...
264         (Versioning): ...to this new section, alongside the new AC_VERSION
265         alias for the undocumented m4_PACKAGE_VERSION.
266         * lib/m4sugar/m4sugar.m4 (m4_AUTOCONF_VERSION): Revert change.
267         * lib/autoconf/general.m4 (AC_VERSION): New macro.
268         * NEWS: Update to match this rename.
269         * tests/m4sugar.at (m4@&t@_version_compare): Remove tests of
270         m4_PACKAGE_VERSION.
271         * tests/tools.at (autoconf: AC_VERSION): New test.
272         Suggested by Paolo Bonzini and Benoit Sigoure.
274 2007-09-14  Eric Blake  <ebb9@byu.net>
276         Prepare for conversion to git.
277         * doc/.cvsignore: Avoid multiple listings on one line.
278         * bin/.cvsignore: Likewise.
279         * .gitignore, bin/.gitignore, config/.gitignore, doc/.gitignore,
280         lib/.gitignore, lib/Autom4te/.gitignore, lib/autoconf/.gitignore,
281         lib/autoscan/.gitignore, lib/autotest/.gitignore,
282         lib/emacs/.gitignore, lib/m4sugar/.gitignore, man/.gitignore,
283         tests/.gitignore: New files, identical to .cvsignore counterpart.
285 2007-09-13  Eric Blake  <ebb9@byu.net>
287         Editing eye-candy.
288         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE): Restore
289         font-lock balance.
290         * lib/m4sugar/m4sh.m4 (AS_MKDIR_P): Likewise.
291         * lib/autoconf/general.m4 (_AC_DO_ECHO): Likewise.
292         * configure: Regenerate.
294         Clean up 'make dist' of previous patch.
295         * tests/Makefile.am (EXTRA_DIST): Distribute mktests.stamp.
296         (CLEANFILES): Don't clean the stamp, since we distribute the
297         generated files pre-built.
298         (MAINTAINERCLEANFILES): Clean it here instead.
299         * tests/Makefile.in: Regenerate.
301         Avoid parallel 'make check' issue.
302         * tests/Makefile.am (mktests.stamp): New witness.
303         (TESTSUITE_GENERATED_AT): Use it.
304         (CLEANFILES): Clean the witness.
305         * tests/.cvsignore (mktests.stamp): Ignore the witness.
307         Document another awk pitfall.
308         * doc/autoconf.texi (Limitations of Usual Tools) <awk>: Document
309         limitation of field variables in END.
310         Reported by Gary V. Vaughan.
312         * AUTHORS: Add missing entries.
314 2007-09-12  Eric Blake  <ebb9@byu.net>
316         Publish m4_ifndef, m4_version_compare, m4_AUTOCONF_VERSION.
317         * doc/autoconf.texi (Text processing Macros): Document
318         m4_version_compare, m4_AUTOCONF_VERSION, m4_PACKAGE_VERSION.
319         (Redefined M4 Macros): Document m4_ifndef.
320         * lib/m4sugar/m4sugar.m4 (m4_AUTOCONF_VERSION): New macro; we
321         can't obsolete m4_PACKAGE_VERSION at this time since Autoconf 1.10
322         used it while it was undocumented.
323         * NEWS: Document this change.
324         * lib/m4sugar/Makefile.am (version.m4): Update copyright dates.
325         * lib/m4sugar/Makefile.in: Regenerate.
326         * tests/m4sugar.at (m4@&t@_version_compare): New test.
327         Reported by Bruno Haible.
329         * doc/autoconf.texi (Generic Compiler Characteristics): Add
330         missing index entries.
332 2007-09-11  Eric Blake  <ebb9@byu.net>
334         Centralize all system extensions checks.
335         * lib/autoconf/specific.m4 (AC_USE_SYSTEM_EXTENSIONS): Inline code
336         from AC_AIX, AC_GNU_SOURCE, AC_MINIX.  Add Interix support.
337         (AC_AIX, AC_GNU_SOURCE, AC_MINIX): Obsolete, and point to
338         AC_USE_SYSTEM_EXTENSIONS.
339         (AC_ISC_POSIX): Obsolete, and point to AC_SEARCH_LIBS.
340         (AC_XENIX_DIR, AC_IRIX_SUN): Promote proper quoting in AU_DEFUN.
341         * doc/autoconf.texi (Posix Variants): Reword this section,
342         emphasizing that AC_USE_SYSTEM_EXTENSIONS is the preferred method,
343         rather than a series of system-specific checks.
344         (Obsolete Macros): Add AC_AIX, AC_GNU_SOURCE, AC_ISC_POSIX,
345         AC_MINIX.
346         * NEWS: Document this change.
347         * THANKS: Update.
348         Reported by Martin Koeppe.
350 2007-09-08  Eric Blake  <ebb9@byu.net>
352         Clean up obsolete macros references.
353         * doc/autoconf.texi: Add anchors to support better
354         cross-referencing.
355         (Particular Structures): Move obsolete macros descriptions...
356         (External Software): Likewise.
357         (Package Options): Likewise.
358         (Obsolete Macros): ...to here.  Add cross-references to
359         documentation on replacements.
360         * NEWS: Mention that these macros have been obsolete for a while
361         now: AC_STRUCT_ST_BLKSIZE AC_STRUCT_ST_RDEV AC_WITH AC_ENABLE.
363         Improve M4 path searching during configure.
364         * lib/autoconf/programs.m4 (AC_PATH_PROGS_FEATURE_CHECK): New
365         macro.
366         (_AC_PATH_PROG_FEATURE_CHECK): Rename...
367         (_AC_PATH_PROGS_FEATURE_CHECK): ...to this, add defaulted action
368         parameter, and kill side effects.
369         (_AC_PROG_GREP, AC_PROG_SED): Adjust callers.
370         (_AC_FEATURE_CHECK_LENGTH): Kill extra whitespace.
371         * m4/m4.m4 (AC_PROG_GNU_M4): Don't stop searching until working m4
372         is found.
373         (AC_PATH_PROGS_FEATURE_CHECK): Add backwards compatibility hack to
374         allow bootstrapping with autoconf 2.61.
375         * configure.ac (M4): AC_PROG_GNU_M4 now exits on failure.
376         * configure: Regenerate.
377         * doc/autoconf.texi (Generic Programs): Document new macro.
378         * tests/mktests.sh (au_exclude_script): Exclude auto-testing new
379         macro.
380         * tests/semantics.at (AC_PATH_PROGS_FEATURE_CHECK): New test.
381         * NEWS: Document the change.
382         * THANKS: Update.
383         Reported by Hans Aberg.
385         * doc/autoconf.texi (Generic Programs): Fix typo.
387 2007-09-06  Eric Blake  <ebb9@byu.net>
389         * doc/autoconf.texi (Generic Programs): Use $PATH_SEPARATOR, not
390         :, and make it clear that optional @var{path} defaults to $PATH.
391         (Erlang Compiler and Interpreter): Likewise.
393         Texinfo cleanup.
394         * doc/autoconf.texi: Avoid lines > 80 columns when possible.
395         Reword some paragraphs to avoid overfull, underfull hbox
396         warnings.  Add index entries to avoid overfull vbox warnings.
398 2007-09-05  Eric Blake  <ebb9@byu.net>
400         * NEWS: Adjust wording for AC_CONFIG_LINKS.
401         Reported by Ralf Wildenhues.
403 2007-09-03  Eric Blake  <ebb9@byu.net>
405         * NEWS: Document fixes that have been applied since 2.61a.
407         Housekeeping.
408         * THANKS: Update, and convert to UTF-8 encoding.
409         * AUTHORS: Likewise.
411 2007-08-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
413         * lib/autoconf/general.m4 (AC_SITE_LOAD): Guard against file
414         names beginning with `-' again.
416 2007-08-22  Stepan Kasal  <kasal@ucw.cz>
417             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
419         * doc/autoconf.texi (Defining Directories): Mention
420         AM_CPPFLAGS, as the way to modify CPPFLAGS when using Automake.
422 2007-08-21  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
424         * lib/autoconf/general.m4 (AC_SITE_LOAD): Do not overwrite "$@"
425         here, this macro is expanded by AC_INIT.  Fixes 2.60 regression.
426         * tests/base.at (configure arguments): New test.
427         * THANKS: Update.
428         Report by Olaf Lenz.
430         * lib/autoconf/general.m4 (_AC_ENABLE_IF): Expand macro
431         arguments in comment.
432         Report by Vincent Torri <vtorri at univ minus evry dot fr>.
434 2007-08-20  Benoit Sigoure  <tsuna@lrde.epita.fr>
436         * doc/autoconf.texi (File System Conventions): Index the proper
437         way of detecting absolute file names.
439 2007-08-20  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
441         * build-aux/config.guess, build-aux/config.sub,
442         build-aux/elisp-comp, build-aux/install-sh, build-aux/mdate-sh,
443         build-aux/missing, build-aux/texinfo.tex, doc/fdl.texi,
444         doc/make-stds.texi, doc/standards.texi: Sync from gnulib.
445         * doc/autoconf.texi (GNU Free Documentation License): Adjust for
446         sectioning change in fdl.texi.
448         * bin/autoconf.as: Update --version output to match current GCS.
449         * bin/autoheader.in: Likewise.
450         * bin/autom4te.in: Likewise.
451         * bin/autoreconf.in: Likewise.
452         * bin/autoscan.in: Likewise.
453         * bin/autoupdate.in: Likewise.
454         * bin/ifnames.in: Likewise.
456 2007-08-18  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
458         * lib/autoconf/status.m4 (_AC_OUTPUT_LINK): Do not try to link a
459         file to itself if source and build trees coincide.
460         * tests/torture.at (AC_CONFIG_LINKS and identical files): New
461         test.
462         Report by Sebastian Freundt <hroptatyr@gna.org>.
464 2007-07-20  Paul Eggert  <eggert@cs.ucla.edu>
466         Reword the copyright notices to match what's suggested in GPLv3.
467         In ChangeLog files, use more-permissive notice rather than GPL, as
468         per usual GNU standards these days.
470 2007-07-13  Paul Eggert  <eggert@cs.ucla.edu>
472         * doc/autoconf.texi (autoreconf Invocation): Document ACLOCAL_AMFLAGS
473         limitation reported by Leo Moisio in
474         <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=432941>.
476 2007-07-03  Paul Eggert  <eggert@cs.ucla.edu>
478         * COPYING: Update to GPLv3.  All uses changed.
480 2007-06-26  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
481         and Paul Eggert  <eggert@cs.ucla.edu>
483         * doc/autoconf.texi (Limitations of Usual Tools): sed -e ''
484         fails on AIX 5.3.
486 2007-06-17  Noah Misch  <noah@cs.caltech.edu>
488         * lib/autotest/general.m4 (AT_INIT): Handle absolute `srcdir'.
489         * tests/autotest.at (srcdir propagation): Test absolute `srcdir' and
490         `srcdir' as subdirectory of `builddir'.
492 2007-06-13  Noah Misch  <noah@cs.caltech.edu>
494         * lib/autotest/general.m4 (AT_INIT): Compute $srcdir correctly.
495         * tests/autotest.at (srcdir propagation): New test.
496         * THANKS: Update.
497         Reported by Mike Frysinger.
499 2007-06-13  Paul Eggert  <eggert@cs.ucla.edu>
501         * lib/m4sugar/m4sh.m4 (_AS_PATH_SEPARATOR_PREPARE): Set FPATH too.
502         Problem reported by Fred Kreek in
503         <http://lists.gnu.org/archive/html/bug-autoconf/2007-06/msg00009.html>.
504         * doc/autoconf.texi (Special Shell Variables): Warn about FPATH.
505         (Macro Names, Defining Directories): Don't mention PATH as a name
506         for a fully qualified file name, as this usage violates the GNU
507         coding standards and we shouldn't recommend it.
509         * lib/autotest/general.m4 (AT_INIT): Don't set PATH to the empty
510         string and then assume shell builtins like "test" will work.
512 2007-06-12  Noah Misch  <noah@cs.caltech.edu>
514         * lib/autoconf/general.m4 (AC_SUBST): Raise a fatal error if VARIABLE is
515         not a valid shell variable name.
516         * tests/mktests.sh (ac_exclude_list): Add AC_ARG_VAR.
517         * tests/torture.at (AC_SUBST: variable name validation): New test.
518         Reported by Andreas Schwab.
520 2007-06-04  Noah Misch  <noah@cs.caltech.edu>
522         * doc/autoconf.texi (AC_F77_MAIN): Give a specific usage example that
523         works with both C and C++.
525 2007-06-03  Noah Misch  <noah@cs.caltech.edu>,
526             Bruno Haible  <bruno@clisp.org>
528         * lib/autoconf/c.m4 (AC_OPENMP): Use a simple loop instead of compiler
529         brand tests.
531 2007-05-31  Paul Eggert  <eggert@cs.ucla.edu>
533         * doc/autoconf.texi (Particular Types): Give example of use for
534         AC_TYPE_INT8_T etc.
536 2007-05-29  Stepan Kasal  <kasal@ucw.cz>
538         * lib/autoconf/types.m4 (_AC_TYPE_UNSIGNED_INT): Fix a typo.
540 2007-05-28  Paul Eggert  <eggert@cs.ucla.edu>
542         * doc/autoconf.texi (Particular Types): AC_TYPE_INT8_T does not
543         define HAVE_INT8_T, and likewise for similar macros.
544         Problem reported by Patrick Welche in
545         <http://lists.gnu.org/archive/html/autoconf/2007-05/msg00062.html>.
547 2007-05-25  Noah Misch  <noah@cs.caltech.edu>
549         * bin/Makefile.am ($(top_builddir)/bin/autom4te): New dependency.
551 2007-05-21  Paul Eggert  <eggert@cs.ucla.edu>
553         * lib/autoconf/c.m4 (AC_OPENMP): Don't echo --enable-openmp
554         choice, since that's what we do with --enable-largefile etc.
555         Redo indenting and assignments to simplify things a bit, and make
556         the parens work with Emacs.
558         * doc/autoconf.texi (Generic Compiler Characteristics): Fix typo
559         in my previous change: AC_C_OPENMP -> AC_OPENMP.  Reported by Bruno
560         Haible.
562 2007-05-21  Noah Misch  <noah@cs.caltech.edu>
564         * lib/autoconf/c.m4 (AC_OPENMP): Simplify use of AC_ARG_ENABLE.
565         * tests/local.at (AT_CHECK_ENV): Exempt OPENMP_CFLAGS.
567 2007-05-21  Bruno Haible  <bruno@clisp.org>
569         * NEWS: Rename AC_C_OPENMP to AC_OPENMP.
570         * lib/autoconf/c.m4 (AC_OPENMP): Renamed from AC_C_OPENMP.
571         * doc/autoconf.texi (Generic Compiler Characteristics): Move
572         renamed AC_OPENMP documentation here, from "C compiler".
573         Mention C++ and Fortran.
575 2007-05-21  Paul Eggert  <eggert@cs.ucla.edu>
577         * doc/autoconf.texi (C Compiler): Tweak OpenMP documentation a bit.
579 2007-05-21  Bruno Haible  <bruno@clisp.org>
581         * NEWS: Mention AC_C_OPENMP.
582         * lib/autoconf/c.m4 (AC_C_OPENMP): New macro.
583         * doc/autoconf.texi (C Compiler): Document AC_C_OPENMP.
585 2007-05-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
587         * bin/autom4te.in: Fix typos.
589 2007-05-16  Noah Misch  <noah@cs.caltech.edu>
591         * bin/autoconf.as: Handle `-' just like other input files.
592         * bin/autom4te.in (parse_args): Pass `-' through.
593         (handle_output): Skip the forbidden token search if we read from stdin.
594         (up_to_date): Always treat stdin as out of date.
595         * tests/tools.at (autoconf: input from stdin): New test.
596         (autoconf: forbidden tokens, basic): Check a second `autoconf' run.
598 2007-05-16  Stepan Kasal  <kasal@ucw.cz>
600         * tests/foreign.at tests/semantics.at, tests/tools.at: Remove
601         parameters for AT_CLEANUP.
602         * tests/local.at (AT_CHECK_AU_MACRO): Likewise.
604 2007-05-14  Paul Eggert  <eggert@cs.ucla.edu>
606         * NEWS: Document that AC_C_RESTRICT checks 'restrict' last.
607         * doc/autoconf.texi (C Compiler): Likewise.
609 2007-05-14  Noah Misch  <noah@cs.caltech.edu>
611         * lib/autoconf/c.m4 (AC_C_RESTRICT): Check `restrict' last.
613 2007-05-09  Stepan Kasal  <kasal@ucw.cz>
615         * doc/autoconf.texi: Direntry for "autoconf Invocation"
616         renamed to "autoconf-invocation"
618         * doc/autoconf.texi (Caching Results): The CACHE-ID variable
619         in the examples should not use the internal "ac_" prefix.
621 2007-05-05  Noah Misch  <noah@cs.caltech.edu>
623         * lib/autotest/general.m4 (_AT_NORMALIZE_TEST_GROUP_NUMBER): Use `eval'.
624         * doc/autoconf.texi ($@, case): Document Zsh limitations.
626 2007-05-03  Stepan Kasal  <kasal@ucw.cz>
628         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Put a.out first.
629         Reorganize the comments before and in the macro.
631 2007-05-02  Stepan Kasal  <kasal@ucw.cz>
633         * lib/autoconf/lang.m4, lib/autoconf/c.m4,
634         lib/autoconf/fortran.m4, lib/autoconf/erlang.m4: Cleanup of
635         section titles and other comments; no code change.
637 2007-05-01  Kevin Ryde  <user42@zip.com.au>
639         * doc/autoconf.texi (Particular Programs): Typo
640         @acindex{AC_PROG_MKDIR_P} shouldn't have "AC" in that call.
642 2007-04-30  Paul Eggert  <eggert@cs.ucla.edu>
644         * lib/m4sugar/m4sh.m4 (_AS_SHELL_FN_SPY): Don't imply that
645         'configure' will fail if the shell lacks proper support for shell
646         functions.  Suggested by RMS.
648 2007-04-29  Paul Eggert  <eggert@cs.ucla.edu>
650         * doc/autoconf.texi (Limitations of Builtins): Correct the warning
651         about Solaris /bin/printf '%010000x' 123.  Problem reported by
652         Bruno Haible.
654 2007-04-28  Paul Eggert  <eggert@cs.ucla.edu>
656         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Don't look
657         for a.* when searching for executables, as this prevents users
658         from having files like a.c.  Problem reported by Ralf Wildenhues in:
659         http://lists.gnu.org/archive/html/autoconf-patches/2007-04/msg00029.html
660         This fixes a problem introduced on 2000-12-19.
662 2007-04-26  Paul Eggert  <eggert@cs.ucla.edu>
664         * doc/autoconf.texi (Limitations of Builtins): Warn about Solaris
665         /bin/printf '%010000x' 123.  Problem reported by Arto C. Nirkko
666         via Bruno Haible.
668 2007-04-12  Paul Eggert  <eggert@cs.ucla.edu>
670         * NEWS: Document recent changes to AC_CHECK_ALIGNOF, AC_CHECK_SIZEOF,
671         AC_CHECK_TYPE, AC_CHECK_TYPES.
672         * doc/autoconf.texi (Generic types): C types must be type-names
673         (the C terminology), not type-ids (the C++ term).  C++ types
674         must not be anonymous.
675         * lib/autoconf/types.m4 (_AC_CHECK_TYPE_NEW): Remove special case
676         for C++; this drops support for anonymous struct and union types,
677         which were problematic anyway.
678         * tests/semantics.at (AC_CHECK_HEADERS_NEW): Adjust test to work even
679         for C++.
681 2007-04-12  Jim Meyering  <jim@meyering.net>
683         * doc/autoconf.texi (Libraries): Typo fix: insert missing "in".
685 2007-04-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
687         * lib/autoconf/status.m4 (_AC_OUTPUT_LINK): Fix AC_CONFIG_LINKS
688         to prefer a link source from the build tree, if it exists.
689         Report by Pallav Gupta <pallavgupta@gmail.com>.
691 2007-04-11  Paul Eggert  <eggert@cs.ucla.edu>
693         * doc/autoconf.texi (Generic Types): Document the restrictions
694         on types imposed by AC_CHECK_TYPE, AC_CHECK_TYPES.
695         (Generic Compiler Characteristics): AC_CHECK_SIZEOF now works
696         with objects too.  Document the restrictions on its use.
697         Document the restrictions on AC_CHECK_ALIGNOF's type argument.
698         * lib/autoconf/types.m4 (_AC_CHECK_TYPE_NEW):
699         For C, just try sizeof (TYPE) and sizeof ((TYPE)); if the former
700         works but the latter doesn't, then it's a valid type.
701         This lets people use function types and so forth.
702         For C++ there doesn't seem to be a simple solution, so leave it alone.
703         (AC_CHECK_SIZEOF): Allow argument to be a variable.
704         (AC_CHECK_SIZEOF, AC_CHECK_ALIGNOF): Don't bother to invoke
705         AC_CHECK_TYPE; that wasn't documented or necessary.
707 2007-04-11  Stepan Kasal  <kasal@ucw.cz>
709         * lib/autoconf/general.m4 (_AC_LINK_IFELSE): Skip AS_TEST_X
710         when cross-compiling.
712 2007-04-11  Stepan Kasal  <kasal@ucw.cz>
714         * doc/autoconf.texi (External Software): Fix a typo in the
715         previous change.
717 2007-04-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
719         * doc/autoconf.texi (External Software, Package Options):
720         Fix ambiguous wording.  Report by Reuben Thomas <rrt@sc3d.org>.
722 2007-04-06  Paul Eggert  <eggert@cs.ucla.edu>
724         * doc/autoconf.texi (Particular Types): AC_C_LONG_DOUBLE is now
725         obsolescent.  Suggested by Bruno Haible.
726         * NEWS: Document this.
728 2007-03-29  Paul Eggert  <eggert@cs.ucla.edu>
730         * doc/autoconf.texi (Here-Documents, Limitations of Builtins):
731         (Limitations of Usual Tools): Don't say "older" if Solaris 10 by
732         default still has the problem.  Problem reported by Bruce Korb.
734 2007-03-28  Stepan Kasal  <kasal@ucw.cz>
735         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
737         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Fix a
738         comment in the generated config.status.
740 2007-03-27  Stepan Kasal  <kasal@ucw.cz>
742         * lib/autoconf/status.m4 (AC_CONFIG_SUBDIRS): Update comment.
744 2007-03-26  Paul Eggert  <eggert@cs.ucla.edu>
746         * doc/autoconf.texi (Shellology): Rework treatment of the 'test'
747         command and case statements to make it a bit clearer and describe
748         more pitfalls.
750 2007-03-23  Paul Eggert  <eggert@cs.ucla.edu>
752         * doc/autoconf.texi (C Compiler): Mention that AC_PROG_CC_C99 also
753         checks for unsigned long long int.
755 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
757         * doc/autoconf.texi (Limitations of Usual Tools): Warn about other
758         nonstandard grep R.E. escape sequences.
760 2007-03-17  Jim Meyering  <jim@meyering.net>
762         * doc/autoconf.texi: Adjust grammar around use of "heuristics".
763         (Limitations of Usual Tools): Also list \< and \>, and mention that
764         HP-UX's grep, like the one from Solaris, does not support that syntax.
766 2007-03-09  Stepan Kasal  <kasal@ucw.cz>
768         * doc/autoconf.texi (Specifying Names): `--host' does not
769         change the build type.
771 2007-03-05  Paul Eggert  <eggert@cs.ucla.edu>
773         * doc/autoconf.texi (C Compiler): Warn that AC_C_BIGENDIAN
774         suggests AC_CONFIG_HEADERS.
775         * lib/autoconf/c.m4 (AC_C_BIGENDIAN): Warn if not using
776         AC_CONFIG_HEADERS.  Problem reported by
777         Peter O'Gorman.
779 2007-02-28  Paul Eggert  <eggert@cs.ucla.edu>
781         * lib/autoconf/c.m4 (AC_C_BIGENDIAN): Fix typo "__LITLE_ENDIAN__".
782         Problem reported by Paolo Bonzini in:
783         http://lists.gnu.org/archive/html/autoconf-patches/2007-02/msg00024.html
784         * tests/semantics.at (AC_C_BIGENDIAN): Don't reject hosts that have
785         universal binaries.  Problem reported by Elias Pipping.
787 2007-02-27  Paul Eggert  <eggert@cs.ucla.edu>
789         * NEWS: AC_C_BIGENDIAN now supports universal binaries a la Mac OS X.
790         * doc/autoconf.texi (C Compiler): Document this.  There is a new
791         extra argument ACTION-IF-UNIVERSAL.
792         * lib/autoconf/c.m4 (AC_C_BIGENDIAN): Implement this.
793         Add support for Solaris-style _LITTLE_ENDIAN and _BIG_ENDIAN.
794         Reindent for sanity's sake.
796 2007-02-24  Eric Blake  <ebb9@byu.net>
798         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Update
799         copyright.
800         * lib/autoconf/general.m4 (_AC_INIT_COPYRIGHT): Likewise.
801         * lib/autotest/general.m4 (AT_INIT): Likewise.
802         (_AT_DECIDE_TRACEABLE): Fix syntax highlighting.
804 2007-02-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
806         * lib/autotest/general.m4 (AT_INIT): With --clean, return exit
807         status of rm so we know when it failed.
808         If cleaning of test dir failed before running the test, warn.
809         Output the line separator in verbose mode before the warning
810         to make clear the warning belongs to the following test.
812 2007-02-08  Paul Eggert  <eggert@cs.ucla.edu>
814         * doc/autoconf.texi (Parentheses): Mention problem with (( in
815         shells.
817 2007-02-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
818         and Paul Eggert  <eggert@cs.ucla.edu>
820         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE): Fix quoting
821         errors introduced in last change.
823 2007-02-07  Paul Eggert  <eggert@cs.ucla.edu>
825         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE): Prefer \r to
826         an actual carriage return.  Use "ac_cr" to contain the actual
827         carriage return.
828         * doc/autoconf.texi (Limitations of Usual Tools): Document problem
829         with traditional Awk and begin.
830         * tests/torture.at (Limitations of Builtins): Document the problem
831         with Bash 2.03 printf.
832         (Substitute and define special characters):
833         Remove trailing white space.  Work around a bug in Solaris 8 /bin/bash.
835 2007-02-06  Ralf Menzel  <menzel@ls6.cs.uni-dortmund.de>  (tiny change)
837         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE): Redirect
838         input from /dev/null in awk test, so even Solaris /usr/bin/awk
839         will not wait for input with a script containing only a BEGIN
840         rule.
842 2007-02-03  Paul Eggert  <eggert@cs.ucla.edu>
844         * doc/autoconf.texi (Introduction, Why GNU M4): Clarify M4 version
845         requirements.
846         * README: Likewise.
848 2007-02-02  Eric Blake  <ebb9@byu.net>
850         * NEWS: Update copyright.
852         * m4/m4.m4 (AC_PROG_GNU_M4): Reject M4 1.4 through 1.4.4 as
853         broken.
854         * configure.ac: Update error message.
855         * NEWS: Note that M4 1.4.5 or later is now a hard dependency.
856         Reported by Gary Vaughan and Jim Meyering, and problem analyzed
857         by Stepan Kasal:
858         http://lists.gnu.org/archive/html/bug-autoconf/2006-11/msg00025.html
860 2007-01-31  Eric Blake  <ebb9@byu.net>
862         * THANKS (people): Update.
864 2007-01-28  Paul Eggert  <eggert@cs.ucla.edu>
866         * doc/autoconf.texi (Shellology): pdksh 5.2.14 is still the
867         latest version.
868         (Shell Substitutions): Note problems with @{var:=value} etc.
869         Add a new section for problems with @{#var} etc.  Problem noted
870         by Ralf Wildenhues.  See:
871         http://lists.gnu.org/archive/html/libtool-patches/2005-01/msg00157.html
873 2007-01-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
875         * lib/autoconf/programs.m4 (AC_PROG_MKDIR_P): Also
876         AC_SUBST([MKDIR_P]), so that Automake < 1.10 will pick up its
877         trace, if a package uses AC_PROG_MKDIR_P explicitly.  The actual
878         substitution will still be done by the special code.
879         Report by Jim Meyering.
881         * doc/autoconf.texi (File System Conventions): Mention that
882         $PATH_SEPARATOR is for the build system only.
883         Report by Keith Marshall.
885 2007-01-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
887         * doc/autoconf.texi (Setting Output Variables): Mention that
888         all non-NUL characters are ok in substituted values.
889         * lib/autoconf/status.m4 (_AC_SED_CMD_LIMIT): Fix comment typo.
890         (_AC_OUTPUT_FILES_PREPARE): Test and use backslash escaping of
891         carriage return for $AWK, needed for BSD awk.
892         * tests/torture.at (Substitute and define special characters):
893         Test all 8 bit non-NUL characters.
894         Report against Automake by Patrick Welche.
896 2007-01-15  Stepan Kasal  <kasal@ucw.cz>
898         * doc/autoconf.texi: Direntry for "autoconf Invocation" renamed.
900 2007-01-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
902         * lib/autoconf/programs.m4 (AC_PROG_SED): When closing a pipe
903         early on the reader side, drop stderr of the input to avoid
904         `broken pipe' error output; this may happen even with shell
905         builtin `echo' of some bash versions.  Reports by Ian Macdonald
906         <iamacdo@telkomsa.net> and Sam Sexton <Sam.Sexton@reuters.com>.
908 2007-01-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
910         * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS): Use newlines to
911         separate items of `ac_user_opts', to avoid long lines.
912         (_AC_INIT_PARSE_ENABLE2, _AC_ENABLE_IF_ACTION): Adjust.
914 2007-01-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
916         * doc/autoconf.texi: Fix some typos.
918 2007-01-05  Paul Eggert  <eggert@cs.ucla.edu>
920         Fix some wording problems noted by Paolo Bonzini in:
921         http://lists.gnu.org/archive/html/autoconf-patches/2007-01/msg00077.html
922         * doc/autoconf.texi (Signed Overflow Examples): Give more
923         discussion about the allow_superuser_privileges example,
924         and change it a bit to make things clearer.
925         (Optimization and Wraparound): Clarify whether the compiler
926         will generate an infinite loop for the example derived from
927         Autoconf's mktime test.
928         (Signed Overflow Advice): Say that -ftrapv is meant for debugging.
929         Also, clarify unsigned multiplication overflow.
931 2007-01-04  Eric Blake  <ebb9@byu.net>
933         * bin/Makefile.am (RELEASE_YEAR): New macro.
934         (edit): Use it to supply correct copyright year to scripts.
935         * bin/autoconf.as (version): Use it.
936         * bin/autoheader.in ($version): Likewise.
937         * bin/autom4te.in ($version): Likewise.
938         * bin/autoreconf.in ($version): Likewise.
939         * bin/autoscan.in ($version): Likewise.
940         * bin/autoupdate.in ($version): Likewise.
941         * bin/ifnames.in ($version): Likewise.
943 2007-01-02  Paul Eggert  <eggert@cs.ucla.edu>
945         * doc/autoconf.texi (Integer Overflow): Revised based on today's
946         feedback.  The most important changes document what happens when
947         you convert an out-of-range value to a signed integer type, and
948         say that (sum < a) != (b < 0) reliably detects overflow when sum =
949         a + b.
951         * doc/autoconf.texi (Integer Overflow): Greatly expand and
952         rewrite, taking notions from the recent discussion on the gcc and
953         autoconf mailing lists; please see
954         http://lists.gnu.org/archive/html/autoconf-patches/2006-12/msg00091.html
955         and follow the many links.
956         (Integer Overflow Basics, Signed Overflow Examples):
957         (Optimization and Wraparound, Signed Overflow Advice):
958         (Signed Integer Division): New sections.
960 2006-12-28  Steven G. Johnson  <stevenj@alum.mit.edu>
962         * lib/autoconf/general.m4 (AC_DEFINE_TRACE): Don't include
963         preprocessor macro arguments in traced name.
964         * doc/autoconf.texi (Defining symbols): Document longstanding
965         support for AC_DEFINE-ing macros with arguments, and document
966         behavior when the same variable has multiple AC_DEFINEs.
967         * lib/autoconf/fortran.m4 (_AC_FC_WRAPPERS): Revert to the
968         old implementation which AC_DEFINEs the FC_FUNC and FC_FUNC_
969         macros directly, giving much shorter and simpler code.
971 2006-12-28  Malcolm Purvis <malcolmp@xemacs.org>  (trivial change)
973         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Insert a
974         space before "$ac_configure_args" to prevent a 'config.status
975         --recheck' failure if ac_configure_args doesn't contain a leading
976         space.  This works around a problem with the XEmacs configure.ac,
977         which uses the (undocumented) ac_configure_args variable
978         inconsistently with Autoconf.
980 2006-12-22  Paul Eggert  <eggert@cs.ucla.edu>
982         * lib/autoconf/functions.m4 (AC_FUNC_MKTIME):
983         Include <limits.h>, and use its INT_MAX to rewrite the
984         j loop so that it does not overflow 'int'.  Problem reported by
985         Ralf Wildenhues in
986         <http://lists.gnu.org/archive/html/bug-gnulib/2006-12/msg00084.html>.
987         Play it safe by shifting left by 1 rather than multiplying by 2,
988         as GCC is less likely to optimize this away when the value
989         is signed (when it assumes overflow leads to undefined behavior).
990         Also, don't assume time_t uses two's complement.
992 2006-12-20  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
994         * tests/torture.at (Substitute a 2000-byte string): Avoid using
995         a 10kB long (multi-line) string literal, OpenServer 5.0.7 ksh
996         dumps core on it.  Report by Tim Rice.
998 2006-12-18  Steven G. Johnson  <stevenj@alum.mit.edu>
1000         * lib/autoconf/general.m4 (AC_ARG_ENABLE): Print help about
1001         --disable-option-checking to --help output even when
1002         AC_PRESERVE_HELP_ORDER is not used.
1003         (_AC_INIT_PARSE_ENABLE2): Print warnings using actual --enable or
1004         --with argument, rather than argument with [-.] replaced by
1005         underscores.
1006         * NEWS: Fix typo in previous change; the news was in the
1007         wrong section.
1009 2006-12-18  Paul Eggert  <eggert@cs.ucla.edu>
1011         * NEWS: Warnings are now generated by default for unknown
1012         --enable-* and --with-* options.
1013         * doc/autoconf.texi (Option Checking): Renamed from
1014         (Configure Option Checking).  Tighten up the wording a bit.
1015         (External Software, Package Options): Cross-reference to Option
1016         Checking, and use this to shorten our section.
1017         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ARGS): Prefer test -n
1018         "$x" to test "x$foo" != x.
1019         * lib/autoconf/status.m4 (AC_OUTPUT): Likewise.
1020         Don't warn if $enable_option_checking is "no".
1021         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ARGS): Initialize
1022         ac_unrecognized_opts to the empty string.
1023         Don't echo the unrecognized opts, as this might mishandle
1024         backslashes or leading -.
1025         (AC_PRESERVE_HELP_ORDER): Put the --disable-option-checking
1026         usage next to the other --disable-FEATURE options in the
1027         help string.
1029 2006-12-18  Steven G. Johnson  <stevenj@alum.mit.edu>
1031         * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS, _AC_INIT_PARSE_ARGS):
1032         (_AC_INIT_PARSE_ENABLE2, _AC_INIT_HELP, _AC_ENABLE_IF):
1033         Print warning for unrecognized --with and --enable options
1034         (AC_DISABLE_OPTION_CHECKING): New macro to disable warnings.
1035         * lib/autoconf/status.m4 (AC_CONFIG_SUBDIRS, _AC_OUTPUT_SUBDIRS):
1036         Disable option checking when subdirs are configured.
1037         (AC_OUTPUT): If warnings are enabled, print warning about
1038         unrecognized --with and --enable options at the end of
1039         the configure output (as well as at the beginning).
1040         * doc/autoconf.texi (Option Checking): New node.
1041         Document new option warning functionality.
1043 2006-12-16  Eric Blake  <ebb9@byu.net>
1045         * configure.ac (AC_INIT): Bump version, since 2.61a is released.
1046         * NEWS: Start news for current version.
1048 2006-12-15  Paul Eggert  <eggert@cs.ucla.edu>
1050         * lib/autoconf/functions.m4 (AC_FUNC_GETMNTENT):
1051         Define HAVE_GETMNTENT to 1, not to the empty string.
1052         Problem originally reported by Jochen Friedrich in
1053         <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=403243>.
1055         This change prompted by a problem report by Andrey Simonenko in
1056         <http://lists.gnu.org/archive/html/bug-autoconf/2006-12/msg00026.html>.
1057         * doc/autoconf.texi (Defining Symbols): AC_DEFINE works for
1058         object-like macros only, in the traditional portable character
1059         set.
1060         * lib/autoconf/general.m4 (AC_DEFINE_TRACE_LITERAL):
1061         Warn about attempts to define things that are not identifiers.
1062         * lib/autoconf/fortran.m4 (_AC_FC_WRAPPERS): Rewrite to avoid
1063         awful hack that AC_DEFINEd macro names containing parentheses.
1065 2006-12-12  Paul Eggert  <eggert@cs.ucla.edu>
1067         * doc/autoconf.texi: Undo some of the 2006-12-10 change.  It was
1068         too drastic, even if Texinfo in theory requires it for info mode.
1070         (config.status Invocation): Renamed back from Recreating a
1071         Configuration).
1072         (Obsolete config.status Use): Renamed back from Obsolete Recreation.
1073         (Autoconf 2.13): Renamed back from 20th-century Autoconf 2.
1075 2006-12-11  Paul Eggert  <eggert@cs.ucla.edu>
1077         * NEWS: Version 2.61a.
1079 2006-12-11  Paul Eggert  <eggert@cs.ucla.edu>
1080         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1082         * NEWS: Document changes with echo and printf, and the lack
1083         of limits on the total size of multi-line values of substituted
1084         variables, and the AC_FUNC_FSEEKO fix.
1086 2006-12-10  Paul Eggert  <eggert@cs.ucla.edu>
1088         * doc/autoconf.texi (Writing Autoconf Input): Renamed from
1089         Writing configure.ac.
1090         (Autoconf Input Layout): Renamed from configure.ac Layout.
1091         (Recreating a Configuration): Renamed from config.status Invocation.
1092         (Obsolete Recreation): Renamed from Obsolete config.status Use.
1093         (acconfig Header): Renamed from acconfig.h.
1094         (20th-century Autoconf 2): Renamed from Autoconf 2.13.
1095         (Writing Testsuites): Renamed from Writing testsuite.at.
1096         (Autom4te Cache): Renamed from autom4te.cache.
1098         * BUGS: Remove mention of VPATH problem, since it's now documented
1099         not to be a bug in the Autoconf build procedure itself, but rather
1100         a problem with the proprietary `make' programs.
1102         * doc/autoconf.texi (Build Directories): Add a cross reference
1103         to VPATH and Make.
1105         * build-aux/config.guess, build-aux/config.sub, build-aux/texinfo.tex:
1106         * doc/standards.texi: Sync from gnulib.
1108         * man/autoconf.1, man/autoheader.1, man/autom4te.1, man/autoreconf.1:
1109         * man/autoscan.1, man/autoupdate.1, man/config.guess.1:
1110         * man/config.sub.1, man/ifnames.1: Remove from CVS, since they're
1111         generated automatically.
1113 2006-12-06  Paul Eggert  <eggert@cs.ucla.edu>
1115         * lib/autoconf/c.m4 (_AC_PROG_CC_C89): Also try -xc99=all, for Sun
1116         C 5.8 on Solaris 10.  Using -xc99=all rather than -xc99 bypasses
1117         the buggy -xc99 option of Forte Developer 7 C on Solaris 9.
1119 2006-12-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1121         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE): Drop the
1122         `CEOF$ac_eof' special marker, the awk script cannot contain a
1123         line matching `^CEOF', so this is not needed any more.
1124         * tests/torture.at (Substitute a newline): Expose the `%!_!# '
1125         special marker in the test.
1127 2006-12-06  Stepan Kasal  <kasal@ucw.cz>
1129         * tests/tools.at (autom4te preselections): Use `find -newer';
1130         remove one of the sleeps.
1132         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ENABLE): Make it
1133         more readable, using ...
1134         (_AC_INIT_PARSE_ENABLE2): ... this new helper macro.
1136         * doc/autoconf.texi (autoheader Invocation): Do not double-
1137         quote the parameter of `AH_BOTTOM' in the example.
1139 2006-12-05  Stepan Kasal  <kasal@ucw.cz>
1141         * doc/autoconf.texi (Configuration Headers): Remove the
1142         example with multiple input files.
1143         (autoheader Invocation): Encourage `AH_BOTTOM', discouraging
1144         multiple input files.
1146 2006-12-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1148         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE): When
1149         creating the awk substitution script, handle one input line at a
1150         time, so that the maximum length of a substituted (multi-line)
1151         value is not limited by the size of the sed pattern space.
1152         The trade-off is a slightly repetitive sed script.
1153         * doc/autoconf.texi (Limitations of Usual Tools): Branch labels
1154         can only have up to 7 characters, due to Solaris 10 /bin/sed.
1155         * tests/torture.at (Substitute a 2000-byte string): Increase the
1156         test with several long lines, they should not be caught by sed
1157         limits any more.
1159         * tests/tools.at (autom4te preselections): New test, to flag
1160         entries missing from autom4te.cfg.
1161         Report by David Byron <dbyron@hheld.com>.
1163         * tests/torture.at (Substitute a 2000-byte string): Actually use
1164         AC_PROG_AWK, so the last change works as intended.
1165         (Substitute and define special characters): Likewise.
1166         (Substitute a newline): Likewise.
1168         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE): Use `$AWK'
1169         instead of `awk' consistently.
1170         (_AC_OUTPUT_CONFIG_STATUS): Initialize $AWK.
1171         * tests/torture.at (Torturing config.status): Test both the
1172         result of AC_PROG_AWK and plain awk.
1173         (Substitute a 2000-byte string): Likewise.
1174         (Substitute and define special characters): Likewise.
1175         (Substitute a newline): Likewise.
1177 2006-12-04  Paul Eggert  <eggert@cs.ucla.edu>
1179         * lib/autoconf/functions.m4 (AC_FUNC_FSEEKO): Check that fseeko
1180         can be assigned to a function pointer.  Problem reported by
1181         Peter Palfrader in <http://bugs.debian.org/401377>.  Based on
1182         part of a patch by Ralf Wildenhues in that same bug report.
1184 2006-12-01  Paul Eggert  <eggert@cs.ucla.edu>
1186         * tests/mktests.sh (ac_exclude_list): Exclude AC_FUNC_SETVBUF_REVERSED.
1187         * tests/semantics.at (AC_FUNC_SETVBUF_REVERSED): New test.
1189 2006-12-01  Eric Blake  <ebb9@byu.net>
1191         * lib/autoconf/c.m4 (AC_LANG_INT_SAVE): Avoid newline, to aid in
1192         cross-compiling from cygwin to mingw.
1193         Reported by Bob Rossi.  This resurrects the 2000-11-30 patch to
1194         aclang.m4, which was mistakenly removed in the 2001-09-17 patch
1195         to lib/autoconf/c.m4.
1197 2006-12-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1199         * lib/m4sugar/m4sh.m4 (_AS_ECHO_PREPARE): Use a longer test
1200         string for more reliable failure.  Wrap the entire test that
1201         causes the broken Solaris printf to dump core, in a subshell,
1202         so the segmentation fault message is reliably suppressed.
1203         Fix shell expansion errors by using /usr/ucb/echo always;
1204         avoid an error on systems without it by another subshell.
1205         Avoid m4 expansion of `$1'.  Set the zeroth argument of the
1206         subshell-$as_echo to `as_echo', for better error message.
1208 2006-11-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1210         * lib/autoconf/general.m4 (_AC_CACHE_DUMP): If `BASH_ARGV' or
1211         `BASH_SOURCE' contain a newline, set them to empty, as they may
1212         not be unset.
1214 2006-11-27  Paul Eggert  <eggert@cs.ucla.edu>
1216         Turn AC_FUNC_SETVBUF_REVERSED into a noop.  It's been obsolete for
1217         years and is too hard to maintain now.  The last straw was
1218         reported by Jerker Baeck in
1219         <http://lists.gnu.org/archive/html/autoconf/2006-11/msg00102.html>.
1220         * NEWS: AC_FUNC_SETVBUF_REVERSED is now obsolete.
1221         * doc/autoconf.texi (Particular Functions): Move
1222         AC_FUNC_SETVBUF_REVERSED from here...
1223         (Obsolete Macros): ... to here.  Say that it does nothing now.
1224         * lib/autoconf/functions.m4 (AC_FUNC_SETVBUF_REVERSED):
1225         Turn into (almost) a no-op.
1227         * lib/autoconf/c.m4 (AC_PROG_GCC_TRADITIONAL, AC_C_CONST):
1228         (AC_C_VOLATILE):
1229         Do not recommend via AN_FUNCTION, AN_IDENTIFIER, or AN_HEADER.
1230         These macros are obsolescent and new applications shouldn't need them.
1231         * lib/autoconf/functions.m4 (AC_FUNC_CLOSEDIR_VOID, AC_REPLACE_FNMATCH):
1232         (AC_FUNC_GETLOADAVG, AC_FUNC_GETPGRP, AC_FUNC_MEMCMP):
1233         (AC_FUNC_SELECT_ARGTYPES, AC_FUNC_SETPGRP, AC_FUNC_STAT, AC_FUNC_LSTAT):
1234         (AC_FUNC_STRFTIME, AC_FUNC_SETVBUF_REVERSED, AC_FUNC_UTIME_NULL):
1235         (AC_FUNC_VPRINTF): Likewise.
1236         * lib/autoconf/headers.m4 (AC_HEADER_DIRENT, AC_HEADER_STAT):
1237         (AC_HEADER_STDC, AC_HEADER_SYS_WAIT, AC_HEADER_TIME): Likewise.
1238         * lib/autoconf/types.m4 (AC_STRUCT_TM): Likewise.
1240         * doc/autoconf.texi (Setting Output Variables): Mention that
1241         @VAR1@VAR2 has unspecified behavior.  Problem reported by
1242         Ralf Wildenhues.
1243         * NEWS: Mention this.
1245         * Makefile.am: Put only a single '#' into the copyright notice,
1246         so that it's also present in the output file.  Standardize wording
1247         in makefile copyright notices to match GNU coding standards.
1248         * bin/Makefile.am: Likewise.
1249         * doc/Makefile.am: Likewise.
1250         * lib/Makefile.am: Likewise.
1251         * lib/freeze.mk: Likewise.
1252         * lib/autoconf/Makefile.am: Likewise.
1253         * lib/autoscan/Makefile.am: Likewise.
1254         * lib/autotest/Makefile.am: Likewise.
1255         * lib/m4sugar/Makefile.am: Likewise.
1256         * man/Makefile.am: Likewise.
1257         * tests/Makefile.am: Likewise.
1258         * lib/emacs/Makefile.am: Remove copyright notice; it's just a
1259         one-line file.
1261 2006-11-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1263         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE): Fix error
1264         in the sed script that mangles the awk script: delete up to the
1265         first exclamation mark only.
1266         * tests/torture.at (Substitute and define special characters):
1267         Test '!' too.
1269 2006-11-26  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1271         Rewrite config files generation: avoid quadratic growth in
1272         the number of substituted variables by using awk instead of sed
1273         for the bulk of the substitutions.
1274         * NEWS: Mention this.
1275         * doc/autoconf.texi (Setting Output Variables): `|#_!!_#|' is also
1276         forbidden in the output (and thus input) file.
1277         * lib/autoconf/status.m4 (_AC_AWK_LITERAL_LIMIT): New macro.
1278         (_AC_OUTPUT_FILES_PREPARE): Instead of several sed scripts,
1279         generate just one large awk script for substitutions,
1280         eliminating much of the earlier complexity, while adding some
1281         new complexity.  Only expand the substitution templates at
1282         configure time, for smaller configure script size.  If
1283         _AC_SUBST_FILES are used, test 'awk' for working getline support
1284         at config.status time.  If absent, interpolate through the
1285         shell.  The awk script was written with much help
1286         from Paolo Bonzini and Paul Eggert.
1287         (_AC_SED_CMD_NUM, _AC_SED_DELIM_NUM, _AC_SED_FRAG): Removed.
1288         (_AC_SED_FRAG_NUM): Likewise.
1289         (_AC_SUBST_CMDS): Renamed from...
1290         (_AC_SED_CMDS): ...this.
1291         (_AC_OUTPUT_FILE): Use _AC_SUBST_CMDS.
1292         * tests/torture.at (Substitute a 2000-byte string): Also
1293         substitute a line with 1000 words, and a variable with several
1294         long lines.
1295         (Substitute and define special characters): Test awk special
1296         characters, and put substitution input strings `@foo@' in the
1297         output, to test that no recursion happens; test several other
1298         combinations from Paolo Bonzini.
1300 2006-11-25  Paul Eggert  <eggert@cs.ucla.edu>
1302         * lib/autotest/general.m4 (AT_INIT): Undo recent changes
1303         that replaced echo with AS_ECHO where this wasn't necessary.
1304         Problem reportd by Ralf Wildenhues.
1305         * lib/m4sugar/m4sh.m4 (_AS_ECHO_PREPARE): Port to Solaris 7,
1306         where "/usr/bin/printf '%s\n' S" dumps core if S is long.
1307         This is Sun bug 4206210.  Problem reportd by Ralf Wildenhues.
1309 2006-11-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1311         * lib/freeze.mk (GREP): Removed, no need to initialize this.
1313 2006-11-21  Paul Eggert  <eggert@cs.ucla.edu>
1315         * doc/autoconf.texi (Limitations of Usual Tools): Don't claim
1316         that traditional Awk lacks 3-arg "split".  It has it.
1317         Mention that FS must be a single character, and a few other
1318         99-byte limits of traditional Awk.
1319         Mention that if (i in a) doesn't work with traditional Awk.
1321 2006-11-18  Paul Eggert  <eggert@cs.ucla.edu>
1323         * tests/autotest.at (BSx641-newline in command):
1324         (BS-BS-newline in command, BSx640-newline in command):
1325         (Newline-CODE-BS-newline in command):
1326         (Single-quote-BS-newline in command):
1327         (Single-quote-newline-BS-newline in command):
1328         Use printf '%s\n' instead of echo, for portability to hosts
1329         where echo interprets backslashes.  This will break on hosts
1330         that lack printf, but for now let's assume all such hosts
1331         are dead (if not, we should get reports of test failures).
1333 2006-11-17  Paul Eggert  <eggert@cs.ucla.edu>
1335         'echo' has some portability problems, when given a first argument
1336         with a leading '-', or when given any argument containing '\'.
1337         Avoid using 'echo' in these cases.
1338         * bin/Makefile.am $(bin_SCRIPTS): Rewrite to avoid 'echo' entirely.
1339         * lib/autoconf/c.m4 (AC_PROG_CC, AC_PROG_CXX, AC_PROG_OBJC): Likewise.
1340         * lib/autoconf/fortran.m4 (_AC_PROG_FC): Likewise.
1341         * lib/autotest/general.m4 (AT_INIT): Likewise.
1342         * bin/autoconf.as: Use AS_ECHO rather than plain echo, when the
1343         argument might be unportable.
1344         * lib/autoconf/c.m4 (AC_PROG_CC_C_O): Likewise.
1345         * lib/autoconf/erlang.m4 (AC_LANG(Erlang)): Likewise.
1346         * lib/autoconf/fortran.m4 (_AC_PROG_FC_V_OUTPUT):
1347         (_AC_FC_LIBRARY_LDFLAGS): Likewise.
1348         * lib/autoconf/functions.m4 (AC_FUNC_GETLOADAVG): Likewise.
1349         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ENABLE, _AC_INIT_PREPARE):
1350         (_AC_ARG_VAR_VALIDATE, AC_ARG_PROGRAM, _AC_MSG_LOG_CONFTEST):
1351         (AC_RUN_LOG, _AC_RUN_IFELSE, _AC_LIBOBJS_NORMALIZE): Likewise.
1352         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Likewise.
1353         * lib/autoconf/libs.m4 (_AC_PATH_X_DIRECT): Likewise.
1354         * lib/autoconf/programs.m4 (_AC_FEATURE_CHECK_LENGTH):
1355         (AC_PROG_MAKE_SET): Likewise.
1356         * lib/autoconf/status.m4 (_AC_SRCDIRS, _AC_OUTPUT_HEADER):
1357         (_AC_OUTPUT_SUBDIRS, _AC_OUTPUT_CONFIG_STATUS): Likewise.
1358         * lib/autotest/general.m4 (_AT_CREATE_DEBUGGING_SCRIPT, AT_INIT):
1359         (AT_CLEANUP, _AT_DECIDE_TRACEABLE, _AT_CHECK): Likewise.
1360         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE, _AS_ECHO_UNQUOTED):
1361         (_AS_BASENAME_SED, _AS_DIRNAME_SED, AS_MKDIR_P, AS_TMPDIR, AS_UNAME):
1362         (AS_TR_SH, AS_TR_CPP, AS_VAR_GET): Likewise.
1363         * bin/autoconf.as: Redo verbose flag implementation, as the old
1364         scheme wouldn't work with AS_ECHO.
1365         * lib/autotest/general.m4 (AT_INIT): Likewise.
1366         * lib/autoconf/general.m4 (AC_MSG_RESULT, AC_MSG_RESULT_UNQUOTED):
1367         Don't use ECHO_T, since ECHO_N is now reliable.
1368         * lib/autotest/general.m4 (AT_INIT): Likewise.
1369         * lib/autoconf/general.m4 (AC_ARG_PROGRAM): Use sed "$script"
1370         rather than using a here-document to put the script into a file.
1371         (_AC_DO_ECHO): Hoist the eval out of the echo, so that we can
1372         use AS_ECHO.
1373         * lib/m4sugar/m4sh.m4 (AS_VAR_GET): Likewise.
1374         * lib/autoconf/programs.m4 (_AC_FEATURE_CHECK_LENGTH): Use
1375         AS_ECHO_N rather than ECHO_N and ECHO_C.  This doesn't fix any
1376         bug, but we might as well stop using ECHO_N and ECHO_C internally.
1377         * lib/autotest/general.m4 (AT_SETUP): Likewise.
1378         * lib/m4sugar/m4sh.m4 (_AS_ECHO_N): Likewise.
1379         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS):
1380         (_AC_OUTPUT_MAIN_LOOP): Rework echo so that it has just one
1381         operand, as AS_ECHO requires.  Avoid double file name expansion.
1382         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Invoke _AS_ECHO_PREPARE.
1383         Don't set as_nl, since _AS_ECHO_PREPARE does that now.
1384         (_AS_PREPARE): Comment that _AS_ECHO_N_PREPARE is just for user code.
1385         (AS_ECHO, AS_ECHO_N, _AS_ECHO_PREPARE): New macros.
1386         * tests/c.at (AC_PROG_CPP without warnings, AC_PROG_CPP via CC):
1387         Double-quote strings that would otherwise contain M4 comments.
1388         * tests/m4sh.at (AS_ECHO and AS_ECHO_N): New test.
1390         * configure.ac (AC_INIT): Bump to 2.61a.
1391         * NEWS: Likewise.
1393 2006-11-17  Paul Eggert  <eggert@cs.ucla.edu>
1395         Version 2.61.
1397         * configure.ac (AC_INIT): Bump to 2.61.
1398         * NEWS: Likewise.
1400         * tests/autotest.at (Macro with backslash in a test title):
1401         Comment out for now, as this tests neither fails nor passes
1402         reliably.  Problem reported by Ralf Wildenhues.
1404 2006-11-16  Paul Eggert  <eggert@cs.ucla.edu>
1406         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ENABLE): Fix some typos
1407         in previous change, which caused test failures.
1409 2006-11-16  Stepan Kasal  <kasal@ucw.cz>
1411         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ARGS): Factor out
1412         code for --enable, --disable, --with, and --without to...
1413         (_AC_INIT_PARSE_ENABLE): ... a new macro.
1414         * doc/autoconf.texi (Package Options):
1415         * NEWS: Document that AC_ARG_ENABLE allows dots, too.
1417 2006-11-16  Paul Eggert  <eggert@cs.ucla.edu>
1419         Import these changes from config via gnulib:
1421         2006-11-15  Ben Elliston  <bje@gnu.org>
1423         From Josselin Mouette <joss@debian.org>:
1424         * build-aux/config.guess (SX-8:SUPER-UX:*:*): New.
1426         2006-11-08  Ben Elliston  <bje@gnu.org>
1428         * build-aux/config.guess (authenticamd:Interix*:[3456]*): Another AMD64.
1430         2006-11-07  Steve Woodford  <scw@NetBSD.org>
1431                     Ben Elliston  <bje@gnu.org>
1433         * build-aux/config.guess (*:NetBSD:*:*): Handle sh5el arch.
1434         * build-aux/config.sub (sh5el): New basic_machine.
1437         Import this change from coreutils:
1439         2006-02-13  Jim Meyering  <jim@meyering.net>
1441         * GNUmakefile (all): Emit diagnostics to stderr, not stdout.
1444         Import this change from gnustandards via gnulib:
1446         2006-11-15  Karl Berry  <karl@gnu.org>
1448         * standards.texi: core -> memory, throughout.
1449         (CPU Portability): show correct example of calling write
1450         on a char value; thanks to Paul Eggert for the code.
1451         Both of these suggestions from Eugene Y. Vasserman.
1454         Import these changes from texinfo via gnulib:
1456         2006-11-08  Karl Berry  <karl@gnu.org>
1458         * build-aux/texinfo.tex (\dopdfimage): look for png, jpg/jpeg/JPG, and
1459           as well as pdf images, since they are supported in pdftex with
1460           no further ado.
1462         2006-11-05  Karl Berry  <karl@gnu.org>
1464         * doc/texinfo.tex (Image Syntax): don't mention GIF any more.
1466 2006-11-13  Paul Eggert  <eggert@cs.ucla.edu>
1468         * NEWS: Document the AC_ARG_WITH change.
1470 2006-11-13  Bruno Haible  <bruno@clisp.org>
1472         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ARGS): For --with, --without
1473         options, transliterate also dots to underscores.
1474         (_AC_ENABLE_IF): Transliterate also dots to underscores.
1475         * doc/autoconf.texi (External Software): Document that AC_ARG_WITH's
1476         first argument may also contain dots.
1478 2006-11-09  Paul Eggert  <eggert@cs.ucla.edu>
1480         * tests/mktests.sh (ac_exclude_list): Exclude AC_PROG_CXX_C_O, for
1481         benefit of platforms like Solaris+GCC where it is common to have a
1482         non-working g++ installation.
1484 2006-11-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1485         and Joel E. Denny  <jdenny@ces.clemson.edu>
1486         and Paul Eggert  <eggert@cs.ucla.edu>
1488         * tests/autotest.at (AT_CHECK_AT_TITLE): Fix shell quoting bugs
1489         and non-portable sed scripts, and use $CONFIG_SHELL when invoking
1490         ./micro-suite.
1492 2006-11-08  Paul Eggert  <eggert@cs.ucla.edu>
1494         * lib/autoconf/types.m4 (AC_TYPE_LONG_LONG_INT): Set
1495         ac_cv_type_long_long_int to 'yes' instead of 'cross-compiling'.
1496         Imported from a similar patch to gnulib by Bruno Haible.
1498 2006-11-08  Paul Eggert  <eggert@cs.ucla.edu>
1500         * NEWS: New macros AC_C_FLEXIBLE_ARRAY_MEMBER, AC_C_VARARRAYS.
1501         * doc/autoconf.texi (C Compiler): Document them.
1502         * lib/autoconf/c.m4 (AC_C_FLEXIBLE_ARRAY_MEMBER, AC_C_VARARRAYS):
1503         New macros, taken from gnulib.
1505 2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
1507         * lib/autoconf/types.m4 (AC_TYPE_LONG_LONG_INT): Detect bug in
1508         Tandem NonStop Kernel (OSS) cc -O circa 2004, reported by
1509         Matthew Woehlke.
1511 2006-10-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1513         * tests/torture.at (Configuring subdirectories): Do not skip
1514         Automake 1.10 nor future Automake 11.1 (sic).
1516 2006-10-26  Joel E. Denny  <jdenny@ces.clemson.edu>
1517         and Stepan Kasal  <kasal@ucw.cz>
1519         Handle special characters in test case titles correctly.
1520         * lib/autotest/general.m4 (AT_INIT): M4-quote and AS_ESCAPE AT_help_all
1521         properly.
1522         (AT_SETUP): M4-quote and AS_ESCAPE the title properly everywhere.
1523         * tests/autotest.at (AT_CHECK_AT_TITLE): Add EXPANDED-TITLE-TO-TEST
1524         argument.  Extend to check titles printed by ./micro-suite and
1525         ./micro-suite -l and the title in micro-suite.log.
1526         (Backquote in a test title,
1527         Single-quote in a test title,
1528         Double-quote in a test title): Don't expect failure anymore.
1529         (Backslash in a test title): Put a non-whitespace character after the
1530         backslash so that Bourne shells might actually see it as an escape
1531         sequence.
1532         (Brackets in a test title,
1533         Pound in a test title,
1534         Comma in a test title,
1535         Quoted Macro in a test title,
1536         Macro in a test title,
1537         Macro with single-quote in a test title): New tests.
1538         (Macro with backquote in a test title,
1539         Macro with double-quote in a test title,
1540         Macro with backslash in a test title): New tests expected to fail.
1541         * tests/torture.at (#define header templates): M4-quote this title in
1542         AT_SETUP call so that no M4 code is commented inadvertently somewhere.
1543         The visible effect was a stray [] in the testsuite output.
1545 2006-10-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1547         * doc/autoconf.texi (Limitations of Builtins): Do not invoke
1548         `trap ... 0' inside a function, for AIX sh.
1550 2006-10-26  Paul Eggert  <eggert@cs.ucla.edu>
1552         * tests/base.at (AC_COMPUTE_INT): Test **0** rather than 1 / 0,
1553         since powerpc-apple-darwin8-gcc-4.0.1 (Apple Computer, Inc. build
1554         5363) simply issues a warning when dividing by zero at compile
1555         time.  Problem reported by Elias Pipping.
1557 2006-10-26  Eric Blake  <ebb9@byu.net>
1559         * THANKS: Update.
1560         * doc/autoconf.texi (Evaluation Macros): Improve the example to
1561         show effect on macros that expand with commas.
1562         Reported by Joel E. Denny.
1564         * tests/m4sugar.at (m4_warn, m4_require: circular dependencies):
1565         Also work with M4 1.4.8.
1567 2006-10-25  Paul Eggert  <eggert@cs.ucla.edu>
1569         * doc/autoconf.texi (Slashes): Document Tru64 4.0 bug reported by
1570         Jim Meyering.
1572 2006-10-25  Stepan Kasal  <kasal@ucw.cz>
1574         * tests/tools.at (autom4te --force): New test, verifies that
1575         `--force' always rewrites the output file.
1577 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
1579         * doc/autoconf.texi (Limitations of Usual Tools): Document that rm
1580         needs operands on NetBSD 2.0.2.  Problem reported by Bruno Haible.
1582 2006-10-24  Stepan Kasal  <kasal@ucw.cz>
1584         * tools/trace.at (autoconf --trace: user macros): Test `$%'.
1586 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
1588         * lib/autoconf/specific.m4 (_AC_SYS_LARGEFILE_MACRO_VALUE):
1589         If FUNCTION-BODY is nonempty, use AC_LINK_IFELSE rather than
1590         AC_COMPILE_IFELSE, to work around problem with OSF/1 4.0F fseeko
1591         reported by Nelson H. F. Beebe for Coreutils 6.4.
1593         * tests/tools.at (autoconf --trace: user macros): Remove test
1594         for tracing multiline macros, since m4 1.4.7a uses a different
1595         way to number lines.  Problem reported by Ralf Wildenhues.
1597 2006-10-24  Stepan Kasal  <kasal@ucw.cz>
1599         * bin/autom4te.in (handle_m4): Do not redirect stdin to
1600         /dev/null since the heuristics for interactive behaviour was
1601         fixed in CVS m4.
1603         * bin/autom4te.in: With --force, always refresh the output
1604         file.  Problem reported by Greg Schafer <gschafer@zip.com.au>.
1606         * bin/autoconf.as: Fix the verbose message at the end.
1608 2006-10-23  Paul Eggert  <eggert@cs.ucla.edu>
1610         * configure.ac (AC_INIT): Bump to 2.60c.
1611         * NEWS: Likewise.
1613 2006-10-22  Paul Eggert  <eggert@cs.ucla.edu>
1615         * NEWS: Version 2.60b.
1617         Import this change from Texinfo:
1618         2006-10-15  Karl Berry  <karl@gnu.org>
1619         * build-aux/texinfo.tex: automake 1.10
1621         * NEWS: Remove AC_CACHE_CHECK_INT.
1622         * doc/autoconf.texi (Caching Results): Likewise.
1623         * lib/autoconf/general.m4 (_AC_CACHE_CHECK_INT): Renamed from
1624         AC_CACHE_CHECK_INT, since it's no longer public.
1625         * lib/autoconf/types.m4: All uses of AC_CACHE_CHECK_INT changed.
1626         * tests/base.at (AC_COMPUTE_INT): Test this, not AC_CACHE_CHECK_INT.
1628 2006-10-20  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1630         * doc/autoconf.texi (Limitations of Usual Tools): Fix two typos.
1632 2006-10-19  Eric Blake  <ebb9@byu.net>
1634         * lib/m4sugar/m4sugar.m4 (m4_mkstemp): New macro.
1635         (m4_maketemp): Avoid warnings with M4 1.9a.
1636         * lib/emacs/autoconf-mode.el (autoconf-font-lock-keywords): Color
1637         m4_mkstemp.
1638         * doc/autoconf.texi (Redefined M4 Macros): Document m4_mkstemp.
1639         * NEWS: Likewise.
1641 2006-10-16  Eric Blake  <ebb9@byu.net>
1643         * doc/autoconf.texi (Setting Output Variables): Fix typo.
1645         * bin/autoconf.as (version): Reword to match GNU Coding
1646         Standards.
1647         * bin/autoheader.in (version): Likewise.
1648         * bin/autom4te.in (version): Likewise.
1649         * bin/autoreconf.in (version): Likewise.
1650         * bin/autoscan.in (version): Likewise.
1651         * bin/autoupdate.in (version): Likewise.
1652         * bin/ifnames.in (version): Likewise.
1654 2006-10-14  Stepan Kasal  <kasal@ucw.cz>
1656         * lib/m4sugar/m4sh.m4 (AS_LITERAL_IF): Expand $1 before
1657         looking for special shell characters.
1658         * lib/autoconf/functions.m4 (AC_CHECK_FUNC): Do not expand the
1659         macro defined by AS_VAR_PUSHDEF before passing it as a
1660         parameter.
1661         * lib/autoconf/general.m4 (AC_CHECK_FILE, AC_CHECK_DECL):
1662         * lib/autoconf/libs.m4 (AC_SEARCH_LIBS, AC_CHECK_LIB):
1663         * lib/autoconf/types.m4 (_AC_CHECK_TYPE_NEW, AC_CHECK_MEMBER):
1664         * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_MONGREL):
1665         (_AC_CHECK_HEADER_NEW, _AC_CHECK_HEADER_OLD, _AC_CHECK_HEADER_DIRENT):
1666         Likewise.
1667         * lib/autotest/general.m4 (AT_INIT): Quote parameters of
1668         AS_VAR_* properly.
1669         * tests/m4sh.at (AS_LITERAL_IF): New test.
1671 2006-10-14  Paul Eggert  <eggert@cs.ucla.edu>
1673         (Imported from Automake.)
1674         * build-aux/install-sh (posix_mkdir): Reject FreeBSD 6.1 mkdir -p -m,
1675         which incorrectly sets the mode of an existing destination
1676         directory.  In some cases the unpatched install-sh could do the
1677         equivalent of "chmod 777 /" or "chmod 0 /" on a buggy FreeBSD
1678         system.  We hope this is rare in practice, but it's clearly worth
1679         fixing.  Problem reported by Alex Unleashed in
1680         <http://lists.gnu.org/archive/html/bug-autoconf/2006-10/msg00012.html>.
1681         Also, don't bother to check for -m bugs unless we're using -m;
1682         suggested by Stepan Kasal.
1684 2006-10-14  Paul Eggert  <eggert@cs.ucla.edu>
1686         Import this change from Automake:
1688         2006-08-23  Alexandre Duret-Lutz  <adl@gnu.org>
1689         * lib/Autom4te/ChannelDefs.pm (usage): Mention that -Wportability
1690         is enabled by default with gnu and gnits strictness.
1691         Report from Bruno Haible.
1693         2006-03-10  Alexandre Duret-Lutz  <adl@gnu.org>
1694         * lib/Autom4te/ChannelDefs.pm: Make -Wportability the default in
1695         gnu and gnits modes.
1697         Import this change from Config:
1699         2006-09-20  Ben Elliston  <bje@gnu.org>
1700         * build-aux/config.sub (score, score-*): New.
1702         Import this change from Gnulib:
1704         2006-09-16  Karl Berry  <karl@gnu.org>
1705         * doc/fdl.texi (ADDENDUM): switch to @heading from @appendixsubsec,
1706         to avoid sectioning errors.
1708         Import these changes from Texinfo:
1710         2006-10-04  Karl Berry  <karl@gnu.org>
1711         * build-aux/texinfo.tex (\singlequotechar): rename to \codequoteright.
1712         (\quoteexpand): rename to \rquoteexpand.
1713         (\codequoteleft): new def, to look for @set codequotebacktick.
1714         (\lquoteexpand, \quoteexpand): new defs.
1715         (\lquoteChar, \rquoteChar, \dashChar, \underChar: new \chardef's.
1716         (\code): must use new \...Char values, since now ` is active.
1718         2006-08-26  Karl Berry  <karl@gnu.org>
1719         * build-aux/texinfo.tex (\textdegree): New command.
1721         2006-08-12  Karl Berry  <karl@gnu.org>
1722         * build-aux/texinfo.tex (error \box0): smaller font.
1724 2006-10-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1726         * doc/autoconf.texi (Autoheader Macros): Fix syntax error.
1728 2006-10-13  Stepan Kasal  <kasal@ucw.cz>
1730         * doc/autoconf.texi (Autoheader Macros): Warn that the text
1731         added to the template can get mangled.
1733 2006-10-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1735         * lib/autoconf/functions.m4 (AC_FUNC_OBSTACK): In the test,
1736         include the default headers, and redefine obstack_chunk_alloc
1737         and obstack_chunk_free.  Fixes false failure with glibc.
1739 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
1741         * lib/m4sugar/m4sh.m4 (_AS_TEST_PREPARE): Set as_executable_p,
1742         for backward compatibility with Libtool 1.5.22.  Problem reported
1743         by Ralf Wildenhues.
1745 2006-10-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1747         * lib/autoconf/c.m4 (AC_PROG_GCC_TRADITIONAL): Require
1748         AC_PROG_CC.
1749         Report by IOhannes m zmoelnig <zmoelnig@iem.at>.
1751 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
1753         * NEWS: AC_USE_SYSTEM_EXTENSIONS now defines _TANDEM_SOURCE for
1754         the NonStop platform.
1755         * doc/autoconf.texi (Posix Variants): Likewise.
1756         * lib/autoconf/specific.m4 (AC_USE_SYSTEM_EXTENSIONS): Likewise.
1758         * lib/m4sugar/m4sh.m4 (AS_TEST_X): New macro.
1759         (AS_EXECUTABLE_P): Use as_test_x rather than as_executable_p.
1760         (_AS_TEST_PREPARE): Set as_test_x rather than as_executable_p.
1761         Use a better substitute, by inspecting the output of "ls"
1762         rather than just using ":".
1763         * lib/autoconf/general.m4 (_AC_LINK_IFELSE): Use AS_TEST_X
1764         rather than AS_EXECUTABLE_P, since we needn't worry about
1765         non-regular files here.
1767         * NEWS: Autoconf-generated shell scripts no longer export BIN_SH,
1768         due to configuration hassles with this.  See Tonya Underwood's report
1769         <http://lists.gnu.org/archive/html/bug-autoconf/2006-10/msg00003.html>.
1770         * doc/autoconf.texi (Special Shell Variables): Likewise.
1772 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
1773             Stepan Kasal  <kasal@ucw.cz>
1775         * lib/m4sugar/m4sh.m4 (AS_BOURNE_COMPATIBLE): Don't set BIN_SH.
1776         (_AS_DETECT_BETTER_SHELL): Don't look in /usr/bin/posix.
1778 2006-10-11  Stepan Kasal  <kasal@ucw.cz>
1780         * lib/m4sugar/m4sh.m4 (AS_BOURNE_COMPATIBLE): Move the
1781           initialization which is not inherited through the environment
1782         (_AS_BOURNE_COMPATIBLE): ... to this new macro.
1783         (_AS_RUN): Call _AS_BOURNE_COMPATIBLE, not AS_BOURNE_COMPATIBLE.
1785 2006-10-09  Paul Eggert  <eggert@cs.ucla.edu>
1787         * doc/autoconf.texi (Limitations of Usual Tools): Describe
1788         problems with mkdir -p -m.
1790 2006-10-06  Paul Eggert  <eggert@cs.ucla.edu>
1792         * lib/autoconf/c.m4 (_AC_PROG_PREPROC_WORKS_IFELSE): Remove
1793         comment about ac_cpp_err; it was incorrect, and anyway
1794         ac_cpp_err is being removed below.
1795         * lib/autoconf/general.m4 (_AC_PREPROC_IFELSE): Don't
1796         set ac_cpp_err to 'yesyes' if preproc_warn_flag and werror_flag
1797         are both 'yes'.  In fact, don't bother setting ac_cpp_err at all;
1798         nobody uses it.
1799         (_AC_COMPILE_IFELSE, _AC_LINK_IFELSE): Don't log our funky tests
1800         with werror_flag and conftest.err and so forth.  This is more
1801         compatible with how _AC_PROG_PREPROC_WORKS_IFELSE behaves,
1802         and anyway the user shouldn't normally want to see this gorp logged.
1803         Problem reported by Ralf Wildenhues.
1804         * lib/autoconf/lang.m4 (AC_LANG_WERROR): werror_flag's default is
1805         empty, not 'no', since the rest of the code uses 'test -z'.
1807 2006-10-04  Paul Eggert  <eggert@cs.ucla.edu>
1809         * lib/autoconf/general.m4 (_AC_COMPILE_IFELSE, _AC_LINK_IFELSE):
1810         Use a single call to AC_DO_TOKENS rather than multiple, for
1811         efficiency.
1812         (_AC_LINK_IFELSE): Test that resulting file is executable.
1813         Problem reported by mwoehlke in
1814         <http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00048.html>.
1816         * lib/m4sugar/m4sh.m4 (_AS_TEST_PREPARE): Use "test -x /" rather
1817         than creating a file to use with test -x; this is much faster.
1819 2006-10-02  Bruno Haible  <bruno@clisp.org>
1821         * lib/autom4te.in (Automake-preselections): Add
1822         AM_GNU_GETTEXT_INTL_SUBDIR, for automake 1.10.
1824 2006-09-27  Stepan Kasal  <kasal@ucw.cz>
1826         * doc/autoconf.texi (Writing testsuite.at): Fix a typo: for
1827         standard error, `experr' should be used, not `expout'.
1829 2006-09-26  Paul Eggert  <eggert@cs.ucla.edu>
1831         * lib/autoconf/functions.m4 (AC_FUNC_FSEEKO): Don't compile the
1832         fseeko testing program twice; just use the earlier result.
1833         * lib/autoconf/specific.m4 (_AC_SYS_LARGEFILE_MACRO_VALUE):
1834         Set cache var to 'unknown' (not 'no') if leaving the macro unset
1835         still doesn't let the program compile.
1836         (AC_SYS_LARGEFILE): Test for _LARGE_FILES only if earlier tests
1837         failed.
1839         * lib/autoconf/functions.m4: Fix problems reported by Ralf Wildenhues.
1840         (AC_FUNC_ERROR_AT_LINE): Don't bother to check for error.h.  Just
1841         include it, without including anything else.
1842         (AC_FUNC_FSEEKO): Avoid gcc -Wall warnings about constant
1843         expressions.
1844         (AC_FUNC_STRNLEN): Require AC_USE_SYSTEM_EXTENSIONS.
1846 2006-09-26  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1848         * lib/autoconf/functions.m4 (AC_FUNC_ERROR_AT_LINE): Check for
1849         `error.h', and include it, for a `error_at_line' prototype.
1850         Use a nonempty format string in the link test.
1851         * lib/autoconf/functions.m4 (AC_FUNC_WAIT3): Include <sys/wait.h>,
1852         for a declaration of wait3.
1854 2006-09-26  Paul Eggert  <eggert@cs.ucla.edu>
1856         * NEWS: AC_CHECK_DECL now also works with aggregate objects.
1857         * doc/autoconf.texi (Generic Declarations): Clarify that AC_CHECK_DECL
1858         can apply to constants too, and that it checks for macro defns.
1859         * lib/autoconf/general.m4 (AC_CHECK_DECL): Assume C89 or better,
1860         and simply cast the identifier to void.  This handles structure
1861         values.  Problem reported by Ralf Wildenhues.
1862         * tests/semantics.at (AC_CHECK_DECLS): Also check enums.
1864 2006-09-26  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1866         * tests/semantics.at (AC_CHECK_DECLS): Also check macros,
1867         structure, and function symbols.
1869 2006-09-26  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1871         * tests/semantics.at (AC_CHECK_MEMBERS): Also test with a struct
1872         member.
1874 2006-09-25  Paul Eggert  <eggert@cs.ucla.edu>
1876         * NEWS: Recommend M4 1.4.7 instead of 1.4.6.
1877         * README: Likewise.
1878         * doc/autoconf.texi (Introduction, Why GNU M4): Likewise.
1880 2006-09-25  Paul Eggert  <eggert@cs.ucla.edu>
1881         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1883         * lib/autoconf/functions.m4 (AC_FUNC_OBSTACK): Avoid `gcc -Wall'
1884         warnings (uninitialized value).
1885         (AC_FUNC_UTIME_NULL): Likewise, test for and include <utime.h> if
1886         present.
1887         * lib/autoconf/types.m4 (AC_TYPE_LONG_LONG_INT): Likewise, add
1888         parentheses.
1889         (AC_STRUCT_TM): Likewise, avoid unused variables.
1891 2006-09-20  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1893         * lib/autoconf/c.m4 (_AC_ARG_VAR_LDFLAGS): Update comment.
1894         (_AC_ARG_VAR_LIBS): New macro: let LIBS be precious.
1895         (AC_PROG_CC, AC_PROG_CXX, AC_PROG_OBJC): Call _AC_ARG_VAR_LIBS.
1896         * lib/autoconf/fortran.m4 (AC_PROG_F77, AC_PROG_FC): Likewise.
1897         Report by Olly Betts.
1899 2006-09-19  Eric Blake  <ebb9@byu.net>
1901         * m4/m4.m4: Change copyright.
1902         * configure: Regenerate.
1903         * Makefile.in: Likewise.
1904         * bin/Makefile.in: Likewise.
1905         * doc/Makefile.in: Likewise.
1906         * lib/Makefile.in: Likewise.
1907         * lib/Autom4te/Makefile.in: Likewise.
1908         * lib/autoconf/Makefile.in: Likewise.
1909         * lib/autoscan/Makefile.in: Likewise.
1910         * lib/autotest/Makefile.in: Likewise.
1911         * lib/emacs/Makefile.in: Likewise.
1912         * lib/m4sugar/Makefile.in: Likewise.
1913         * man/Makefile.in: Likewise.
1914         * tests/Makefile.in: Likewise.
1916         * m4/m4.m4 (AC_PROG_GNU_M4): Check for m4 --debugfile support.
1917         * bin/Makefile.am (edit): Substitute M4_DEBUGFILE.
1918         * bin/autom4te.in (handle_m4): Favor --debugfile over misnamed
1919         --error-output, to avoid warnings with M4 2.0.
1921 2006-09-19  Stepan Kasal  <kasal@ucw.cz>
1923         * lib/autoconf/libs.m4 (AH_CHECK_LIB): Fix quoting, to be
1924           consistent with _AH_CHECK_FUNCS and _AH_CHECK_HEADERS.
1925         * lib/autoconf/headers.m4 (AH_CHECK_HEADERS_DIRENT): Likewise.
1927 2006-09-15  Stepan Kasal  <kasal@ucw.cz>
1929         * lib/autoconf/functions.m4 (AC_FUNC_GETMNTENT): Eliminate the
1930         expansion of AC_CHECK_FUNCS.
1932 2006-09-14  Stepan Kasal  <kasal@ucw.cz>
1934         * lib/autoconf/general.m4 (AC_CONFIG_MACRO_DIR): Remove a
1935         mistaken comment: the path has to be relative; do not use
1936         the path at runtime.
1938 2006-09-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1940         * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): Quote the
1941         argument to `--prefix' for sub-configure scripts.
1942         Pass `--silent' to sub-configure scripts.
1943         * tests/torture.at (Configuring subdirectories): Add tests
1944         for both changes.
1945         * doc/autoconf.texi (Setting Output Variables): Fix example to
1946         not show `--silent' being passed to a `configure' re-run.
1948 2006-09-12  Paul Eggert  <eggert@cs.ucla.edu>
1950         * doc/autoconf.texi (Input): Clarify role of AC_CONFIG_MACRO_DIR.
1951         * lib/autoconf/general.m4 (AC_CONFIG_MACRO_DIR): Do not check
1952         for the existence of the directory at configure-time.  That's
1953         too late, anyway.  Problem reported by Stefan Seefeld.
1955         * lib/m4sugar/m4sh.m4 (_AS_TEST_PREPARE): Avoid bug in UnixWare
1956         7.1.4 /usr/bin/posix/sh described by Tim Rice in
1957         <http://lists.gnu.org/archive/html/bug-autoconf/2006-09/msg00017.html>.
1959 2006-09-11  Stepan Kasal  <kasal@ucw.cz>
1961         * tests/local.at (AT_CHECK_M4): Fix this so that the testsuite
1962         works with GNU M4 1.4.3 again; make the normalized form
1963         match the current m4 message; fix the description.
1964         * test/tools.at (autom4te cache): Adapt to the change.
1966 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
1968         * lib/autoconf/functions.m4 (AC_FUNC_MKTIME):  Add year_2050_test
1969         to catch glibc bug 2821
1970         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
1972         Merge from gnulib as follows: Use AC_CHECK_HEADERS_ONCE instead of
1973         AC_CHECK_HEADERS, and likewise for AC_CHECK_FUNCS_ONCE and
1974         AC_CHECK_FUNCS.  Don't check for stdlib.h, since we now
1975         assume C89.
1977 2006-09-08  Stepan Kasal  <kasal@ucw.cz>
1979         * lib/autom4te.in (Autoconf-without-aclocal-m4): Move the
1980         preselections ...
1981         (Autoconf): ... here.
1982         (Autoscan-preselections): Delete.
1984 2006-09-07  Stepan Kasal  <kasal@ucw.cz>
1986         * lib/autom4te.in (Automake-preselections): Preselect
1987         AM_ENABLE_MULTILIB.
1989 2006-09-05  Paul Eggert  <eggert@cs.ucla.edu>
1991         * doc/autoconf.texi (Preset Output Variables): srcdir and
1992         top_srcdir are not necessarily relative.  Problem reported
1993         by Dries Kimpe.
1995 2006-09-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1997         * lib/autoconf/fortran.m4 (_AC_PROG_FC): Prefer xlf90/xlf95 over
1998         f90/f95 because the latter drivers of AIX Fortran 9.1 do not
1999         accept files with extension `.f'.  For consistency, also prefer
2000         xlf over f77.
2001         * doc/autoconf.texi (Fortran Compiler): Remove mention of bug
2002         from last patch.
2004 2006-09-05  Romain Lenglet  <rlenglet@users.forge.objectweb.org>
2006         * lib/autoconf/erlang.m4 (AC_ERLANG_CHECK_LIB): Added substitution
2007         of ERLANG_LIB_VER_* variables.
2008         * doc/autoconf.texi (Erlang Libraries): Document ERLANG_LIB_VER_*
2009         variables.
2011 2006-09-03  Paul Eggert  <eggert@cs.ucla.edu>
2012         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2014         * doc/autoconf.texi (Limitations of Builtins): Document 'unset'
2015         bugs of Bash 2.01 and 2.05a.
2016         (Fortran Compiler): Document that AC_PROG_CC should be called
2017         before AC_PROG_FC, due to a bug in Autoconf.
2019 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
2021         * NEWS: New macro AC_CACHE_CHECK_INT.  It replaces the
2022         old AC_COMPUTE_INT, which now behaves like _AC_COMPUTE_INT
2023         except the first two arguments are reversed.
2024         * doc/autoconf.texi (Caching Results): New macro AC_CACHE_CHECK_INT.
2025         (Generic Compiler Characteristics): AC_COMPUTE_INT no longer
2026         caches nor outputs a diagnostic.  Suggested by Bruno Haible.
2027         * lib/autoconf/general.m4 (AC_CACHE_CHECK_INT): New macro,
2028         equivalent to the old AC_COMPUTE_INT.
2029         (AC_COMPUTE_INT): No longer caches or reports.  New signature.
2030         All uses changed to AC_CACHE_CHECK_INT.
2031         * tests/base.at (AC_CACHE_CHECK_INT): New test.
2032         * tests/mktests.sh (ac_exclude_list): Add AC_CACHE_CHECK_INT.
2034 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
2036         * NEWS: AC_FUNC_FNMATCH, AC_FUNC_FNMATCH_GNU, AC_FUNC_GETLOADVG,
2037         and AC_REPLACE_FNMATCH are now obsolescent in Autoconf.  New
2038         programs should use their Gnulib counterparts.
2039         * doc/autoconf.texi (Particular Functions): Likewise.
2040         (Macro Names, testsuite Invocation): Replace uses of these
2041         obsolete macros with uses of non-obsolete macros.
2043 2006-08-29  Eric Blake  <ebb9@byu.net>
2045         * configure.ac (AC_INIT): Bump to 2.60b.
2046         * NEWS: Update.
2048 2006-08-28  Eric Blake  <ebb9@byu.net>
2050         * lib/autoconf/headers.m4 (AC_HEADER_STAT): Fix logic that was
2051         mistakenly swapped on 2006-08-15.
2053 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
2055         * NEWS: Version 2.60a.
2057 2006-08-25  Stepan Kasal  <kasal@ucw.cz>
2059         * lib/autoconf/general.m4 (_AC_LINK_IFELSE): Remove the IPA/IPO
2060         file created by the PGI compiler.
2062 2006-08-25  Noah Misch  <noah@cs.caltech.edu>
2064         * lib/Autom4te/General.pm (END): Use `File::Path::rmtree' to
2065         simplify the code.
2067 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
2069         Fix Lex library problem reported to us by Julio Garvia.
2070         * doc/autoconf.texi (Particular Programs): YYTEXT_POINTER is
2071         for the default, which the user can override.
2072         * lib/autoconf/programs.m4 (AC_PROG_LEX): Let _AC_PROG_LEX_YYTEXT_DECL
2073         deal with LEXLIB.
2074         (_AC_PROG_LEX_YYTEXT_DECL): Handle caching correctly; the old code
2075         didn't work if some values were cached but not others.  Test for
2076         broken lex libraries like native ia64-hp-hpux11.22; see
2077         <http://sources.redhat.com/ml/binutils/2003-12/msg00337.html>, and
2078         work around the problem by preferring an empty LEXLIB to -lfl or
2079         -ll.  Let the user set LEXLIB='' to indicate no library needed.
2081         * NEWS: Recommend M4 1.4.6 instead of 1.4.5.
2082         * README: Likewise.
2083         * doc/autoconf.texi (Introduction, Why GNU M4): Likewise.
2085 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
2087         Rework to use more-modern build style.
2088         Many files are renamed; all uses of their names were changed.
2089         * .x-sc_trailing_blank: Renamed from .x-sc_trailing_space.
2090         * .x-sc_useless_cpp_parens: New file.
2091         * build-aux/config.guess: Renamed from config/config.guess.  Update.
2092         * build-aux/config.sub: Renamed from config/config.sub.  Update.
2093         * build-aux/elisp-comp: Renamed from config/elisp-comp.
2094         * build-aux/install-sh: Renamed from config/install-sh.  Update.
2095         * build-aux/mdate-sh: Renamed from config/mdate-sh.
2096         * build-aux/missing: Renamed from config/missing.
2097         * build-aux/texinfo.tex: Renamed from config/texinfo.tex.  Update.
2098         * build-aux/vc-list-files: Renamed from config/vc-list-files.
2099         * config/Makefile.am: Removed.
2100         * config/mkinstalldirs: Removed.
2101         * config/move-if-change: Removed.
2102         * m4/m4.m4: Renamed from config/m4.m4.  Add (C) to copyright notice.
2103         * Makefile.am (SUBDIRS): Remove config.
2104         (ACLOCAL_AMFLAGS): Include from m4, not config.
2105         (EXTRA_DIST): Add config/announce-gen, config/prev-version.txt.
2106         (WGET, WGETFLAGS): New macros, since Makefile.maint no longer does this.
2107         (autom4te-update): Rewrite with a loop.  Get from gnulib, not automake.
2108         Fail if there's an error.
2109         * Makefile.cfg (move_if_change): Remove.
2110         (wget_files): Remove.
2111         (cvs_executable_files): New macro.
2112         (cvs_files): Use it.  Remove mkinstalldirs.  Add fdl.texi.
2113         (executable-update): Use $(cvs_executable_files).
2114         (local-checks-to-skip): Remove.
2115         * Makefile.maint: Merge from coreutils, plus add our own changes
2116         (gzip_rsyncable): New macro.
2117         (GZIP_ENV): Use it.
2118         (CVS_LIST): Use build-aux/vc-list-files.
2119         (VERSION_REGEXP): New macro.
2120         (local-checks-available): Add patch-check, $(syntax-check-rules),
2121         check-AUTHORS.
2122         (syntax-check-rules): Compute dynamically.
2123         (sc_cast_of_x_alloc_return_value): Work even if no source files.
2124         (sc_cast_of_alloca_return_value): Likewise.
2125         (sc_prohibit_atoi_atof): Simplify regexp.
2126         (sc_no_if_have_config_h, sc_require_config_h):
2127         (sc_prohibit_assert_without_use,
2128         (sc_obsolete_symbols): Check for O_NDELAY.
2129         (sc_texi_notab): Remove.
2130         (sc-changelog): Don't make an exception for '----' lines.
2131         (.re-list): Remove, so we don't have a junk file behind.
2132         (sc_system_h_headers): Remove the need for .re-list.
2133         (sc_the_the):  New rule.
2134         (sc_tight_scope): Simplify.
2135         (sc_trailing_blank): Renamed from sc_trailing_space.
2136         (longopt_re): New macro.
2137         (sc_two_space_separator_in_usage): New rule.
2138         (sc_unmarked_diagnostics): Look at all files under CVS.
2139         (sc_useless_cpp_parens, patch-check, check-AUTHORS): New rules.
2140         (news-date-check, changelog-check): Version is OK.
2141         (po-check): Look for lib files even if not in CVS.
2142         (copyright-check): Use $() not ``.
2143         (maintainer-distcheck): Do not depend on changelog-check.
2144         (my-distcheck): Depend on $(release_archive_dir)/$(prev-tgz).
2145         Also check for -Wpointer-arith.
2146         (WGET, WGETFLAGS, tgz-md5, tgz-sha1, bz2-md5, bz2-sha1):
2147         (xdelta-md5, xdelta-sha1, tgz-size, bz2-size, xd-size, rel-check):
2148         Remove.
2149         (announcement): Add --gpg-key-id arg.
2150         (cvs-sv): Remove.
2151         (move_if_change): Just use mv.
2152         (local_updates: Remove wget-update, po-update.
2153         (po_repo, do-po-update, po-update, wget_files, get-targets): Remove.
2154         (config.guess-url_prefix, config.sub-url_prefix): Remove.
2155         (ansi2knr.c-url_prefix, texinfo.tex-url_prefix):
2156         (standards.texi-url_prefix, make-stds.texi-url_prefix, target, url):
2157         ($(get-targets)): Remove.
2158         (cvs_files): Remove missing, mkinstalldirs, ansi2knr.c.
2159         (gnulib_repo): Renamed from automake_repo.  Get from gnulib now.
2160         (cvs-update): Get from gnulib.
2161         (emut_upload_commands): gnupload is in build-aux now.
2162         (alpha beta major): Add changelog-check.  Check version.
2163         * configure.ac (AC_CONFIG_AUX_DIR): Renamed from config to build-aux.
2164         (AC_CONFIG_FILES): Remove.
2165         * bin/autoconf.as: Add spaces to avoid distcheck warning.
2166         * config/announce-gen: Sync from coreutils.
2167         * doc/make-stds.texi: Sync from gnulib.
2168         * doc/standards.texi: Likewise.
2169         * man/Makefile.am: Adjust for config -> build-aux renaming.
2170         * tests/Makefile.am: Prefer $(FOO) to @FOO@.
2171         * tests/local.at: Adjust from config -> build-aux renaming.
2172         * tests/tools.at: Likewise.
2173         * tests/torture.at: Likewise.
2175         * NEWS: The C99 check now tests for vararg macros and 64-bit
2176         preprocessor ints.
2177         * doc/autoconf.texi (C Compiler): Document // comments, va_copy.
2178         * lib/autoconf/c.m4 (_AC_PROG_CC_C99): Test varargs macros and
2179         64-bit preprocessor ints.  Check for static initialization of
2180         long long.  Remove unnecessary casts.
2182 2006-08-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2184         * doc/autoconf.texi (Particular Programs): Mention that
2185         @INSTALL@ and @MKDIR_P@ may vary for different output files.
2186         Reported by Alexandre Duret-Lutz.
2188 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
2190         * lib/autoconf/fortran.m4 (_AC_FC_LIBRARY_LDFLAGS): Also ignore
2191         -lgcc?* and -lSystem, for Darwin/MacOS X.  Problem reported by
2192         Bill Northcott in
2193         <http://lists.gnu.org/archive/html/autoconf/2006-08/msg00083.html>.
2195 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
2197         * lib/autoconf/c.m4 (AC_C_CONST): Don't used shadowed vars, to
2198         pacify insanely picky compilers.  Problem reported by Eric Blake.
2200         * doc/autoconf.texi (Posix Variants): INTERACTIVE Unix is no
2201         longer supported by Sun.
2203 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
2205         * NEWS: Autoconf now uses constructs like "#ifdef HAVE_STDLIB_H"
2206         rather than "#if HAVE_STDLIB_H", so that it now works with "gcc
2207         -Wundef -Werror".  Problem reported by David Fang in
2208         <http://lists.gnu.org/archive/html/autoconf/2006-08/msg00045.html>.
2209         * doc/autoconf.texi (Header Templates, Default Includes):
2210         (Particular Functions, Generic Functions, Header Portability):
2211         (Particular Headers, Generic Headers, Generic Declarations, Guidelines):
2212         (Obsolete Macros, AC_FOO_IFELSE vs AC_TRY_FOO):
2213         (Present But Cannot Be Compiled, Preprocessor Symbol Index):
2214         Prefer #ifdef to #if.
2215         * lib/autoconf/c.m4 (AC_C_BIGENDIAN): Prefer #ifdef to #if.
2216         * lib/autoconf/functions.m4 (AC_FUNC_ALLOCA, _AC_FUNC_MALLOC_IF):
2217         (AC_FUNC_MKTIME, AC_FUNC_MMAP, _AC_FUNC_REALLOC_IF):
2218         (AC_FUNC_SELECT_ARGTYPES, AC_FUNC_SETVBUF_REVERSED, _AC_FUNC_VFORK):
2219         Likewise.
2220         * lib/autoconf/headers.m4 (_AC_INCLUDES_DEFAULT_REQUIREMENTS):
2221         (AC_HEADER_RESOLV, AC_HEADER_STAT): Likewise.
2222         * lib/autoconf/specific.m4 (AC_DECL_SYS_SYGLIST):
2223         (AC_SYS_RESTARTABLE_SYSCALLS): Likewise.
2224         * lib/autoconf/headers.m4 (AC_HEADER_STAT): Don't assume that
2225         S_ISDIR etc. are valid for use in #if; POSIX doesn't guarantee
2226         this.
2228 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
2230         * doc/autoconf.texi (Limitations of Usual Tools): Document sed
2231         problems with arg script text that doesn't end in newline, and
2232         with '-e a...'.  Problems reported by Ralf Wildenhues.
2234 2006-08-12  Alexandre Julliard  <julliard@winehq.org>  (tiny change)
2236         * lib/autoconf/libs.m4 (AC_PATH_X_DIRECT): Replace another
2237         check for libXt by a check for libX11.
2239 2006-08-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2241         * doc/autoconf.texi (config.status Invocation): Adjust according
2242         to last change.
2244 2006-08-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2246         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): `config.status
2247         --help' should mention that `--version' outputs configuration
2248         settings.  Report by Bruno Haible.
2250 2006-08-06  Paul Eggert  <eggert@cs.ucla.edu>
2252         Fix test suite failures reported by Pierre in
2253         <http://lists.gnu.org/archive/html/bug-autoconf/2006-08/msg00005.html>.
2254         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Don't claim
2255         the compiler created a file "b.out" when it didn't create anything
2256         at all.
2257         * lib/autoconf/specific.m4 (AC_SYS_INTERPRETER):
2258         Discard stderr too, when invoking the test script.
2260 2006-08-05  Alexandre Julliard  <julliard@winehq.org>  (tiny change)
2262         * lib/autoconf/libs.m4 (AC_PATH_XTRA): Fixed a typo
2263         in the restoring of the werror flag.
2265 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
2267         * doc/autoconf.texi (Volatile Objects): Be even a little
2268         less skeptical about "volatile", after discussion with
2269         Bruno Haible on bug-gnulib.
2270         (Limitations of Usual Tools): Warn about sed stripping
2271         leading white space from text.  From Bruno Haible.
2273 2006-07-20  Paul Eggert  <eggert@cs.ucla.edu>
2275         * lib/autoconf/libs.m4 (AC_PATH_XTRA): Don't use -R if the
2276         compiler complains about it, even if things works after the
2277         complaint.  Problem reported by Peter O'Gorman.
2279         * doc/autoconf.texi (Preset Output Variables): Document CFLAGS,
2280         CPPFLAGS, and LDFLAGS better.  Problem reported by Bruno Haible.
2281         Similarly for CXXFLAGS, OBJCFLAGS, ERLCFLAGS.
2283 2006-07-17  Paul Eggert  <eggert@cs.ucla.edu>
2285         * lib/autoconf/libs.m4 (AC_PATH_XTRA): Do the check for space
2286         after -R regardless of host.  Patrick Welche reports that this
2287         fixes things on NetBSD 3.99.
2289         * NEWS: Recommend M4 1.4.5.
2290         * README: Likewise.
2291         * doc/autoconf.texi (Introduction, Why GNU M4): Likewise.
2292         * tests/tools.at (autom4te cache): Update wording of diagnostic
2293         to match M4 1.4.5.
2295 2006-07-07  Paul Eggert  <eggert@cs.ucla.edu>
2297         * doc/autoconf.texi (C Compiler): Add a ref to Volatile Objects
2298         under AC_C_VOLATILE.
2299         (Volatile Objects): Be a little less skeptical about what
2300         "volatile" means.  Derived from thoughts by Ben Pfaff in
2301         <http://lists.gnu.org/archive/html/bug-gnulib/2006-07/msg00092.html>.
2303 2006-07-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2305         * doc/autoconf.texi: Fix some typos.
2307 2006-07-07  Paul Eggert  <eggert@cs.ucla.edu>
2309         * tests/torture.at (Configuring subdirectories): Set CONFIG_SITE
2310         more globally, since the 2006-06-30 patch didn't suffice.  Problem
2311         reported by Keith Marshall.  Also, don't bother with builddir2,
2312         since it shouldn't be needed any more.
2314 2006-07-07  Paolo Bonzini  <bonzini@gnu.org>
2316         * doc/autoconf.texi (Generic compiler characteristics):
2317         Document AC_COMPUTE_INT.  Fix wrong statements on Default
2318         Includes for AC_CHECK_SIZEOF and AC_CHECK_ALIGNOF.
2320         * lib/autoconf/general.m4 (AC_COMPUTE_INT): New.
2321         (_AC_COMPUTE_INT): Add obsoletion warnings.
2322         * lib/autoconf/types.m4 (AC_CHECK_SIZEOF, AC_CHECK_ALIGNOF): Use
2323         AC_COMPUTE_INT.
2325         * NEWS: Document change.
2327 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
2329         * doc/autoconf.texi (Volatile Objects): New section.
2331         * NEWS: Document previous change.
2333 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
2335         * lib/autoconf/types.m4 (AC_TYPE_LONG_LONG_INT):
2336         Require that long long int be at least 64 bits wide.  C99 requires
2337         this and enough programs depend on it so we should check for it.
2338         Bruno Haible reports in
2339         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00286.html>
2340         that long long int is 32 bits wide with some nonstandard compilers.
2341         (AC_TYPE_UNSIGNED_LONG_LONG_INT): Likewise.
2343 2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
2345         * tests/torture.at (Configuring subdirectories): Set CONFIG_SITE
2346         to a nonexistent file, so that we don't have to worry about
2347         a local site configuration that doesn't use /usr/local.
2348         Problem reported by Keith Marshall in
2349         <http://lists.gnu.org/archive/html/bug-autoconf/2006-06/msg00133.html>.
2351 2006-06-28  Paul Eggert  <eggert@cs.ucla.edu>
2353         * doc/autoconf.texi: Be more consistent about using @acronym with
2354         "HP" and "HP-UX".  Remove mention of OSF; the old version wasn't
2355         quite right (it talked about "OSF/Tru64", even though the
2356         operating systems were called OSF/1, Digital UNIX, and Tru64 UNIX,
2357         and it even mentioned "OSF 4"!) and at this point there's little
2358         reason to talk about OSF any more, since it died in 1994.
2359         (Specific Compiler Characteristics): Simplify example of
2360         negative-size array.
2361         (File Descriptors): Reorder to make the text flow better.
2362         Remove joke about "appreciate the various levels"; I didn't get it.
2363         Add remark about HP-UX sh -x bug with stderr noted by Bob Proulx in
2364         <http://lists.gnu.org/archive/html/bug-coreutils/2006-06/msg00225.html>.
2365         (File Descriptors, Limitations of Usual Tools):
2366         Tone down the advice against renaming or removing open files.
2367         (Limitations of Usual Tools): Add a new section, on 'rm'.
2369 2006-06-26  Stepan Kasal  <kasal@ucw.cz>
2371         * lib/autoconf/libs.m4 (_AC_PATH_X_DIRECT): Use -lX11, not
2372         -lXt in LIBS, idea from Karsten Hopp; this was due since
2373         this change:
2375         2005-09-18  Paul Eggert  <eggert@cs.ucla.edu>
2376         * lib/autoconf/libs.m4 (_AC_PATH_X_DIRECT): Look for X11/Xlib.h
2377         and XrmInitialize rather than X11/Intrinsic.h and XtMalloc
2378         (which belong to Xt, not X itself).  See Debian bug 327655.
2380 2006-06-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2382         * configure.ac (AC_INIT): Bump to 2.60a.
2383         * NEWS: Update.
2385 2006-06-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2387         Version 2.60.
2389         * configure.ac, NEWS: Update.
2391 2006-06-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2393         * config/texinfo.tex: Sync from upstream.
2395         * bin/autom4te.in (handle_traces): Transform the `@S|@'
2396         quadrigraph correctly in traces.
2398         * NEWS, lib/Autom4te/C4che.pm, lib/autoconf/functions.m4:
2399         Fix typos.
2401         * lib/autoconf/status.m4 (_AC_OUTPUT_FILE): Expand tests for
2402         datarootdir-related errors only if AC_DATAROOTDIR_CHECKED is
2403         not defined.
2404         * doc/autoconf.texi (Changed Directory Variables): New node,
2405         to document the whole `datarootdir' business a bit better.
2406         * NEWS: Update.
2407         * tests/torture.at (datarootdir workaround): Extend test.
2408         Prompted by report by Alexandre Julliard.
2410 2006-06-22  Paul Eggert  <eggert@cs.ucla.edu>
2412         * lib/autoconf/c.m4 (_AC_PROG_CC_C89): Check for C89 incompatibility
2413         when using default mode of IBM C 6 for AIX.  Problem and two-line
2414         fix reported by Larry Jones.
2416 2006-06-22  Alexandre Julliard <julliard@winehq.org>
2418         * lib/autoconf/status.m4 (_AC_OUTPUT_FILE): Avoid warning
2419         about literal '${datarootdir}' if a definition is found in the
2420         output file.
2422 2006-06-20  Paul Eggert  <eggert@cs.ucla.edu>
2424         * NEWS: Use "M4" rather than "m4" when appropriate.
2425         Problem reported by Eric Blake.
2426         * doc/autoconf.texi: Likewise.
2427         Use @acronym around BSD, GCC, and GNU when appropriate.
2428         (Why GNU M4): Renamed from "Why GNU m4".
2429         (Redefined M4 Macros): Mention that Posix
2430         m4wrap takes only 1 argument, but GNU M4 1.4.x takes more.
2431         (Buffer Overruns): Mention size_t and ptrdiff_t as alternatives
2432         to int.
2434 2006-06-20  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2436         * bin/autom4te.in (handle_output): Do not forbid the empty
2437         pattern.
2438         * tests/tools.at (autoconf: the empty token): New test.
2440 2006-06-20  Stepan Kasal  <kasal@ucw.cz>
2442         * lib/m4sugar/m4sugar.m4 (m4_init): Merge the two m4_wrap
2443         calls, so that we do not care whether they are LIFO or FIFO;
2444         in the m4_wrap, do not check which diversion is the topmost
2445         one, just check that the stack is balanced at the end.
2446         * lib/m4sugar/m4sh.m4 (AS_INIT): We are going to change the
2447         base diversion forever--pop the previous diversion before
2448         opening the new one; consequently, remove the m4_wrap call.
2449         * lib/autotest/general.m4 (AT_INIT): Likewise.
2450         * tests/m4sugar.at: Do not use
2451         m4_wrap([m4_diversion_pop([..])]), for educational purposes.
2453 2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
2454         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2456         * NEWS: Document that m4wrap/m4_wrap might not be LIFO.
2457         * doc/autoconf.texi (Redefined M4 Macros): Likewise.
2458         Rework example of m4wrap token-pasting trouble so that it doesn't
2459         care whether it's LIFO or FIFO.
2460         Fix some "contrary to"s that are awkward in English.
2462 2006-06-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2464         * lib/autoconf/types.m4 (_AC_TYPE_INT): Set `$ac_cv_c_int$1_t'
2465         to `yes' instead of `int$1_t' if the type is found, for more
2466         consistent configure output (where $1 is the number of bits).
2467         (_AC_TYPE_UINT): Likewise for `uint$1_t'.
2468         Suggested by Bruno Haible.
2470         * lib/autoconf/types.m4 (_AC_TYPE_UNSIGNED_INT): Solaris 2.5.1
2471         needs _UINT8_T and _UINT64_T defines as well, to avoid clashes
2472         with system headers.  Report by Bruno Haible.
2474 2006-06-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2476         * config/config.guess, config/config.sub: Sync from upstream.
2478         * bin/Makefile.am (autoconf.in): Use `--melt' for autom4te,
2479         in order to avoid picking up an older installed frozen m4sh.m4f.
2480         Besides an outdated shell startup, this could have been created
2481         by an earlier M4 version with incompatible frozen file format.
2483 2006-06-16  Paul Eggert  <eggert@cs.ucla.edu>
2485         * README: Recommend m4 1.4.4 instead of 1.4.3..
2486         * doc/autoconf.texi: Likewise.
2487         (Special Chars in Names): Say that $(.FOO) is portable, as
2488         suggested by Stepan Kasal.
2489         (Installation Directory Variables, Build Directories):
2490         (Automatic Remaking, Subdirectories, Fortran Compiler):
2491         (Making testsuite Scripts, Defining Directories):
2492         Quote variable usages better.
2493         (Making testsuite Scripts): Add clean-local rule to makefile
2494         snippet, by Eric Blake.
2495         (Installation Directory Variables): Fix table item font.
2496         Reword slightly to clarify.  Generalize advice about
2497         not using special characters to include all file-related
2498         vars, not just VPATH.
2499         (Special Chars in Variables): Warn about special characters in
2500         $(srcdir) too.
2501         (Assignments): Clarify default-value example as suggested by
2502         Ralf Wildenhues in
2503         <http://lists.gnu.org/archive/html/autoconf-patches/2006-06/msg00072.html>.
2504         (Special Shell Variables): Note leading ./ or ../, as suggested
2505         by Eric Blake.
2506         (Limitations of Builtins): Under cd, warn about CDPATH.
2507         (The Make Macro MAKEFLAGS): Untabify.  Problem reported by
2508         Ralf Wildenhues.
2510 2006-06-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2512         * doc/autoconf.texi (Configuration Actions): Remove duplicate
2513         `@var', for texi2html.
2514         (Systemology): Some more word wrapping, for DVI output.
2515         (autom4te Invocation): The short option for `--melt' is `-M',
2516         not `-m'.
2518 2006-06-15  Paul Eggert  <eggert@cs.ucla.edu>
2520         * doc/autoconf.texi: More formatting and English tweaks,
2521         many suggested by Ralf Wildenhues.
2522         Reword to avoid "@code{...}'s" and the like, since it's ugly
2523         with Emacs info mode.  discontents -> woes.
2524         Put a few "will"s back.  time stamp -> timestamp.
2525         side-effect -> side effect.
2527 2006-06-14  Paul Eggert  <eggert@cs.ucla.edu>
2529         * doc/autoconf.texi (Initializing configure, Shell Substitutions):
2530         Warn about $@ not persisting.  Problem reported by Julien Danjou in
2531         <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=372179>.
2532         (Special Chars in Names): Renamed from Leading _ in Macro Names.
2533         Mention other special chars, too.
2535 2006-06-14  Eric Blake  <ebb9@byu.net>
2537         * doc/autoconf.texi (The Make Macro MAKEFLAGS): New node.
2539 2006-06-13  Paul Eggert  <eggert@cs.ucla.edu>
2541         * doc/autoconf.texi: Some systematic minor improvements, as
2542         follows.  Use "makefile" when talking about makefiles
2543         generally (which might be named "makefile" or "Makefile" or even
2544         "foo.mk"), "Makefile" when talking about a specific makefile
2545         called "Makefile".  This unclutters the text from weird quotes
2546         (e.g., "`Makefile's" in info mode).  Similarly, use "@var{foo}
2547         values" rather than "@var{foo}s" and similar constructs containing
2548         "}s".  Use "Make rules" rather than "Makefile rules".  Minor
2549         English-language improvements.  Change the prefix "sub-" to "sub"
2550         and "re-" to "re".
2551         Put blank lines around examples more consistently.
2552         Avoid "rather" and "very" as intensifiers.
2553         Avoid "will" as an auxiliary.
2554         (Limitations of Make): Split this node into....
2555         (Portable Make, $< in Ordinary Make Rules, Failure in Make Rules):
2556         (Leading _ in Macro Names, Backslash-Newline-Newline):
2557         (Backslash-Newline Comments, Long Lines in Makefiles):
2558         (Macros and Submakes, The Make Macro SHELL, Comments in Make Rules):
2559         (obj/ and Make, make -k Status, VPATH and Make):
2560         (VPATH and Double-colon, $< in Explicit Rules):
2561         (Automatic Rule Rewriting, OSF/Tru64 Directory Magic):
2562         (Make Target Lookup, Single Suffix Rules, Timestamps and Make):
2563         New nodes, resulting from splitup of Limitations of Make.
2564         All cross-references changed.  Raise the top node from
2565         a section to a chapter, and all subnodes accordingly.
2566         Redo the introductory wording to match the new organization.
2567         (Installation Directory Variables): Use an example that is
2568         closer to what Autoconf actually does.  Mention that VPATH's
2569         value should not contain metacharacters or white space.
2570         (Fortran Compiler): Fix a VPATH bug in an example.
2571         (Leading _ in Macro Names): Mention that this problem is no longer
2572         of practical concern.
2573         (VPATH and Make): Reword the advice to make it clearer
2574         that Autoconf and Automake support VPATH in non-GNU make, but
2575         many packages have bugs in this area.
2576         ($< in Explicit Rules): Refer to Build Directories rather
2577         than using a (non-VPATH-safe) example.
2578         (Automatic Rule Rewriting): Mention the sort of disaster that
2579         can ensue with Solaris-style rule rewriting with VPATH.
2581 2006-06-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2583         * doc/install.texi (Compilers and Options): Weaken the
2584         suggestion to use GNU make for VPATH builds.
2586         * lib/autom4te.in (Automake-preselections): Add AM_PROG_CXX_C_O,
2587         AM_PROG_F77_C_O, AM_PROG_FC_C_O, AC_FC_SRCEXT, AC_FC_FREEFORM.
2589         * lib/autoconf/programs.m4 (AC_PROG_MAKE_SET): Fix M4 quotation
2590         in regular expression.
2592 2006-06-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2594         * doc/autoconf.texi (Installation Directory Variables):
2595         Drop extra @samp from `@table @samp' item.
2596         (Limitations of Usual Tools): Comment fix.
2597         Do not nest @samp just to point to other table items.
2598         (Writing testsuite.at) <AT_CHECK>: The second argument to
2599         `@dvar' is already @samp'ed.
2600         (Making testsuite Scripts) <AC_CONFIG_TESTDIR>: Likewise,
2601         do not use @var in the second argument.
2603 2006-06-07  Paul Eggert  <eggert@cs.ucla.edu>
2605         * lib/m4sugar/m4sh.m4 (_AS_DETECT_BETTER_SHELL): Look for
2606         $as_shell.exe too.  Problem reported by Andreas Buening in
2607         <http://lists.gnu.org/archive/html/autoconf/2006-06/msg00038.html>.
2609 2006-06-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2611         * lib/autoconf/functions.m4 (AC_FUNC_ALLOCA): Work around
2612         `unused variable' compiler warning, for `-Wall -Werror'.
2613         Reported by Jaap Haitsma in
2614         <http://lists.gnu.org/archive/html/bug-autoconf/2006-06/msg00012.html>.
2616 2006-06-06  Paul Eggert  <eggert@cs.ucla.edu>
2618         * lib/autoconf/c.m4 (AC_PROG_CC_C_O): Remove core file, in
2619         case the compiler dumps core.  Problem reported for
2620         OpenServer 5.0.7 by Tim Rice in
2621         <http://lists.gnu.org/archive/html/bug-autoconf/2006-06/msg00019.html>.
2622         * lib/autoconf/general.m4 (_AC_COMPILE_IFELSE, _AC_LINK_IFELSE):
2623         Likewise.
2625 2006-06-06  Tim Rice <tim@multitalents.net>.
2627         * lib/freeze.mk: Quiet check-forbidden-patterns so the string
2628         "ERROR" only shows up in "make check" output if there is an
2629         error.
2631 2006-06-06  Eric Blake  <ebb9@byu.net>
2633         * tests/tools.at (automatically allowed tokens): Fix typo.
2635 2006-06-05  Paul Eggert  <eggert@cs.ucla.edu>
2637         * NEWS: Don't blame non-GNU VPATH compatibility issues on Automake.
2639         * doc/autoconf.texi (Integer Overflow): Mention that INT_MIN % -1
2640         typically overflows on x86 CPUs, even though the C standard
2641         requires otherwise.
2643 2006-06-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2645         * configure.ac (AC_INIT): Bump to 2.59e.
2646         * NEWS: Update.
2648 2006-06-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2650         Version 2.59d.
2652         * config/texinfo.tex: Sync from upstream.
2654         * bin/autoreconf.in: Trace `LT_CONFIG_LTDL_DIR'; if it has been
2655         seen, invoke libtoolize with `--ltdl' argument.
2656         * lib/autom4te.in (Autoreconf-preselections): Adjust.
2657         * NEWS: Update.
2658         Suggested by Eric Blake.
2660 2006-06-05  Paul Eggert  <eggert@cs.ucla.edu>
2662         * NEWS: Whoops!  AC_FUNC_STRNLEN isn't obsolescent.  Problem
2663         reported by Ralf Wildenhues.
2664         * doc/autoconf.texi (AC_FUNC_STRNLEN): Likewise.
2666 2006-06-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2668         * THANKS: Update.
2670 2006-06-05  Paul Eggert  <eggert@cs.ucla.edu>
2672         * doc/autoconf.texi: Modernize some of the references to Solaris.
2674 2006-06-05  Stepan Kasal  <kasal@ucw.cz>
2676         * lib/m4sugar/m4sugar.m4 (m4_require): Modify the error
2677         message issued by AC_REQUIRE.
2678         * tests/m4sugar.at: Check m4_require's error message.
2679         * tests/base.at: Check AC_REQUIRE's error message.
2680         * tests/local.at (AT_CHECK_M4): New macro, almost identical
2681         to...
2682         (AT_CHECK_AUTOM4TE): ... which is now a thin wrapper around
2683         AT_CHECK_M4.
2684         (AT_CHECK_AUTOCONF): Use AT_CHECK_M4; no longer support
2685         `expout' as the last parameter.
2686         * tests/tools.at: Adapt to the above change.
2688 2006-06-04  Stepan Kasal  <kasal@ucw.cz>
2690         * doc/autoconf.texi (Limitations of Usual Tools): Correct
2691         information about race-free implementations of mkdir.
2693 2006-06-04  Eric Blake  <ebb9@byu.net>
2695         * bin/autoreconf.in (help): Document M4 environment variable.
2696         * bin/autoconf.as (Usage): Likewise.
2697         * bin/autom4te.in (help): Likewise.
2698         * doc/autoconf.texi (autom4te Invocation): Likewise.
2700 2006-06-04  Paul Eggert  <eggert@cs.ucla.edu>
2702         * NEWS: GNU make now recommended for VPATH builds.
2703         Mention that some macros are now documented to be obsolescent.
2704         * doc/autoconf.texi:
2705         Prefer "current" to "modern" to describe
2706         currently-used (albeit perhaps old-fashioned) hosts.
2707         Mention which ancient features no longer need to be worried about.
2708         setgid -> set-group-ID
2709         setuid -> set-user-ID (these are the Posix terms)
2710         Fix some misuses of "only".
2711         (AC_C_BACKSLASH_A, AC_C_CONST, AC_C_PROTOTYPES):
2712         (AC_C_STRINGIZE, AC_C_VOLATILE, AC_FUNC_CLOSEDIR_VOID):
2713         (AC_FUNC_GETPGRP, AC_FUNC_LSTAT, AC_FUNC_MEMCMP):
2714         (AC_FUNC_SELECT_ARGTYPES, AC_FUNC_SETPGRP):
2715         (AC_FUNC_SETVBUF_REVERSED, AC_FUNC_STAT, AC_FUNC_STRFTIME):
2716         (AC_FUNC_STRNLEN, AC_FUNC_UTIME_NULL, AC_FUNC_VPRINTF):
2717         (AC_HEADER_DIRENT, AC_HEADER_STAT, AC_HEADER_STDC):
2718         (AC_HEADER_SYS_WAIT, AC_HEADER_TIME, AC_ISC_POSIX):
2719         (AC_PROG_GCC_TRADITIONAL, AC_STRUCT_TM):
2720         Mention that these macros are obsolescent.
2721         (Installation Directory Variables): shall -> should
2722         (File Descriptors): Mention that 0, 1, 2 might get reopened.
2723         Mention that it's now safe to use 3 and 4.
2724         (Limitations of Usual Tools): cp -r is now specified by Posix.
2725         Omit longwinded and obsolescent discussion of cp -f.
2726         Modernize discussion of expr, ls.
2727         (Limitations of Make): Modernize discussion of VPATH builds.
2728         Mention $? as a workaround in some cases.
2729         * doc/install.texi (Basic Installation):
2730         Mention "./configure; make; make install" first.  Be more
2731         specific about why this file is generic.  Remove unnecessary
2732         parens.  Remove misleading "only".  Remove obsolete advice
2733         about csh.  Don't say "configure" takes awhile; say it
2734         might take a while.  Suggest CFLAGS=-g rather than CFLAGS=-O2,
2735         and CC=c99 rather than CC=c89, as these are blessed by current
2736         Posix.  Recommend GNU make if doing a VPATH build.
2738 2006-06-03  Paul Eggert  <eggert@cs.ucla.edu>
2740         * doc/autoconf.texi: Use a consistent style "$ @kbd{...}" for
2741         examples involving shell prompts.
2743 2006-06-02  Stepan Kasal  <kasal@ucw.cz>
2744         and Paul Eggert  <eggert@cs.ucla.edu>
2746         * doc/autoconf.texi (Here-Documents): Add details about the
2747         pre-ksh93g bug.  Reword slightly to make it clearer.  Consistently
2748         use "here-documents" instead of "here documents".
2750 2006-06-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2752         * config/texinfo.tex, doc/standards.texi: Sync from upstream.
2754 2006-06-01  Paul Eggert  <eggert@cs.ucla.edu>
2756         * doc/autoconf.texi (File System Conventions): Warn about ":"
2757         anywhere in directory names.
2759 2006-05-31  Paul Eggert  <eggert@cs.ucla.edu>
2761         * lib/autoconf/general.m4 (_AC_DO_ECHO): Be even more conservative
2762         about quoting the case statement, just in case.
2763         * doc/autoconf.texi (Here-Documents): Mention that the ksh bug
2764         was fixed in ksh93g; reported by Ralf Wildenhues.
2766 2006-05-31  Stepan Kasal  <kasal@ucw.cz>
2768         * doc/autoconf.texi (System Services): Do not document
2769         overriding EXEEXT via ac_cv_exeext=ext.
2770         (Particular Programs) <AC_PROG_MKDIR_P>:
2771         Document that ${MKDIR_P} understands --.
2772         * lib/autoconf/programs.m4 (AC_PROG_MKDIR_P): Improve the
2773         comment.
2775 2006-05-31  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2777         * lib/m4sugar/m4sh.m4 (_AS_DIRNAME_PREPARE): Guard against test
2778         argument with leading hyphen.  Problem reported by Paul Eggert.
2780 2006-05-30  Paul Eggert  <eggert@cs.ucla.edu>
2782         * lib/autoconf/general.m4 (_AC_DO_ECHO): Be more conservative
2783         about quoting ac_try: quote all of it, if any of it seems suspicious.
2784         This means we don't have to worry about ${ or sed any more.
2785         Also, double-quote the case statement, to work around misuses via
2786         underquoting as reported by Ralf Wildenhues in
2787         <http://lists.gnu.org/archive/html/autoconf-patches/2006-05/msg00169.html>.
2788         (_AC_EVAL_STDERR): Revert, since evidently some packages rely on this
2789         undocumented and dangerous macro.
2790         Problem reported by Ralf Wildenhues in
2791         <http://lists.gnu.org/archive/html/autoconf-patches/2006-05/msg00168.html>.
2793 2006-05-31  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2795         * lib/m4sugar/m4sh.m4 (_AS_DIRNAME_PREPARE): Check whether
2796         `dirname -- /' returns `/', for SunOS dirname scripts that escaped.
2797         Report by Sam Sirlin <sam@kalessin.jpl.nasa.gov>.
2799 2006-05-30  Paul Eggert  <eggert@cs.ucla.edu>
2801         * lib/autoconf/general.m4: Revert AC_TRY_EVAL and AC_TRY_COMMAND,
2802         since evidently some packages rely on the old, broken behavior.
2803         Problem reported by Ralf Wildenhues in
2804         <http://lists.gnu.org/archive/html/autoconf-patches/2006-05/msg00160.html>.
2805         (AC_TRY_EVAL, AC_TRY_COMMAND, _AC_EVAL): Go back to the
2806         pre-2006-05-26 definitions, but leave in the comments that
2807         these macros are dangerous and should not be used.
2808         (_AC_DO_ECHO): Renamed from _AC_EVAL_ECHO.  All callers changed.
2809         (_AC_DO): Renamed from _AC_EVAL.  All callers changed.
2810         (_AC_DO_STDERR): Renamed from _AC_EVAL_STDERR.  All callers changed.
2811         (_AC_DO_VAR): Renamed from AC_TRY_EVAL.
2812         (_AC_DO_TOKENS): Renamed from AC_TRY_COMMAND.
2814 2006-05-29  Paul Eggert  <eggert@cs.ucla.edu>
2816         * lib/autoconf/status.m4 (AC_OUTPUT_MAKE_DEFS): Rewrite to avoid
2817         the use of 'tr', since this is our only use of 'tr'.
2819 2006-05-29  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2820         and Paul Eggert  <eggert@cs.ucla.edu>
2822         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE):
2823         Don't assume 'grep' works on long lines, since AIX grep doesn't.
2825 2005-05-28  Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
2827         * lib/autoconf/status.m4 (_AC_OUTPUT_FILE): Do not use `grep' on
2828         the output file in the `${datarootdir}' test.
2830 2005-05-28  Stepan Kasal  <kasal@ucw.cz>
2831         and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
2833         * lib/autoconf/status.m4 (_AC_OUTPUT_FILE): If we have not seen
2834         mention of `datarootdir' in the input file(s), but literal
2835         `${datarootdir}' in the output file, and we haven't warned yet,
2836         then warn as well: the user may have (erroneously) used
2837         `AC_SUBST([mydatadir], [$datadir/my])' instead of the correct
2838         `AC_SUBST([mydatadir], ['${datadir}/my'])'.
2839         * tests/torture.at (datarootdir workaround): Extend this test.
2840         * NEWS: Update.
2842 2006-05-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2843         and Paul Eggert  <eggert@cs.ucla.edu>
2845         * doc/autoconf.texi (autoheader Invocation): The first argument to
2846         `AC_DEFINE_UNQUOTED' need not be a literal.  Mention the
2847         alternatives and clear up the language a bit.
2849 2006-05-27  Paul Eggert  <eggert@cs.ucla.edu>
2851         * NEWS: Reword notice for AC_TRY_COMMAND, AC_TRY_EVAL,
2852         ac_config_guess, ac_config_sub, ac_configure.
2853         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS):
2854         Fix typo that prevented an unnecessary space from being removed.
2855         Problems reported by Ralf Wildenhues in:
2856         http://lists.gnu.org/archive/html/autoconf-patches/2006-05/msg00143.html
2858 2006-05-26  Paul Eggert  <eggert@cs.ucla.edu>
2860         * doc/autoconf.texi (Particular Programs, Limitations of Usual Tools):
2861         Use better wording to talk about AC_PROG_MKDIR_P's thread-safety.
2862         Don't use the term "thread-safe" to talk about mkdir race
2863         conditions, since the problem is more a process than a thread
2864         issue.  Problem reported by Stepan Kasal in:
2865         http://lists.gnu.org/archive/html/autoconf-patches/2006-05/msg00088.html
2866         * lib/autoconf/programs.m4 (AC_PROG_MKDIR_P): Use code that mimics
2867         the test for 'install' more closely.  Look at MKDIR_P first.
2868         Look in the PATH, and at /opt/sfw/bin.
2869         Look for a 'gmkdir' program as well (Solaris 10 /opt/sfw/bin/gmkdir).
2870         Don't bother to try mkdir -p, since we already check mkdir --version;
2871         just look at the version number.  (There's no easy way to check
2872         for race-free implementations.)
2873         * tests/tools.at (autoconf: subdirectories): Adjust to above
2874         changes, since MKDIR_P now might end in "/mkdir -p".
2876         * doc/autoconf.texi (autoheader Invocation): Mention that the
2877         first arg of AC_DEFINE_UNQUOTED must be a literal.
2878         Problem reported by Ben Pfaff in
2879         <http://lists.gnu.org/archive/html/bug-autoconf/2006-05/msg00090.html>.
2881         * NEWS: Mention that AC_TRY_COMMAND and AC_TRY_EVAL may be removed.
2882         * doc/autoconf.texi (Special Chars in Variables): New section.
2883         (Preset Output Variables): Warn about special chars in CPPFLAGS.
2884         (Installation Directory Variables): Quote $(datadir) better.
2885         (Limitations of Builtins): Describe some of eval's trickiness.
2887         * lib/autoconf/c.m4 (AC_PROG_CC_C_O): Simplify quoting.
2888         * lib/autoconf/fortram.m4 (_AC_PROG_FC_V_OUTPUT): Likewise.
2889         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Put leading space
2890         in front of every arg, not just trailing args.  Quote apostrophes.
2891         (_AC_EVAL_ECHO): New macro.
2892         (_AC_EVAL, AC_EVAL_STDERR): Use it.  Quote arg of eval.
2893         (AC_TRY_EVAL, AC_TRY_COMMAND): Mention that these macros might get
2894         removed.
2895         (_AC_LINK_IFELSE): Use proper rule for shell continuation lines,
2896         exposed by quoting of eval argument.  Put the command on line line
2897         so it logs better.
2898         * lib/autoconf/libs.m4 (_AC_PATH_X_XMKMF): Use eval more safely.
2899         (_AC_PATH_X, AC_PATH_X): Quote more safely.
2900         * lib/autoconf/programs.m4 (AC_PROG_MAKE_SET): Use eval more safely.
2901         * lib/autoconf/specific.m4 (AC_SYS_LONG_FILE_NAMES): Don't use eval.
2902         * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): Minor style change.
2903         Handle special chars in prefix, ac_srcdir, ac_aux_dir.
2904         Use eval more safely.
2905         (_AC_OUTPUT_CONFIG_STATUS): Adjust to above changes.
2906         * lib/m4sugar/m4sh.m4 (AS_VAR_GET): Note that this API needs
2907         to be replaced.
2908         * tests/base.at (AC_TRY_COMMAND): Use proper rule for shell continuation
2909         lines, exposed by quoting of eval argument.
2911 2006-05-26  Stepan Kasal  <kasal@ucw.cz>
2912         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2914         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Drop the
2915         initialization of `ac_cv_exeext', do not override it if it was
2916         already set, unless it was set to `no', for compatibility with
2917         Autoconf-2.13, and comment this.
2918         Do not export `ac_cv_exeext', Libtool hasn't needed this for years.
2919         (_AC_COMPILER_EXEEXT_DEFAULT): Likewise, do not export it.
2920         (_AC_COMPILER_EXEEXT_WORKS, _AC_COMPILER_EXEEXT_CROSS): Typos.
2921         * doc/autoconf.texi (Compilers and Preprocessors) <EXEEXT>:
2922         Document that this test may be overridden by setting
2923         `ac_cv_exeext'.
2925 2006-05-26  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2927         Revert these two patches:
2929         2006-04-06  Eric Blake  <ebb9@byu.net>
2930         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_O): Inside cache
2931         check, s/ac_exeext/ac_cv_exeext/.  Fixes regression introduced
2932         2006-04-01.
2934         2006-04-01  Stepan Kasal  <kasal@ucw.cz>
2935         Clean up _AC_COMPILER_EXEEXT* macros.
2936         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Don't try to
2937           detect exeext, it will be done by _AC_COMPILER_EXEEXT_O; just set
2938           ac_file to the name of the default output file and call
2939           _AC_COMPILER_EXEEXT_WORKS.  Move the definition of ac_files and the
2940           initial `rm' of the candidate files...
2941         (_AC_COMPILER_EXEEXT): ... here and simplify them.  Moreover, use
2942           the same list in subsequent `rm' calls, and for the temporary
2943           redefinition of ac_clean_files; call _AC_COMPILER_OBJEXT at the end,
2944           and don't call the other _AC_COMPILER_EXEEXT_* macros directly, use...
2945         (_AC_COMPILER_EXEEXT_TESTS): ... this new macro.
2946         (_AC_COMPILER_EXEEXT_O): Don't export ac_cv_exeext, it's not needed (or
2947           no longer needed) by libtool.  Make it a cache check.
2948         (_AC_COMPILER_EXEEXT_CROSS): Remove the comment, it was obviously
2949           copied here by mistake.
2950         (AC_NO_EXECUTABLES): Redefine _AC_COMPILER_EXEEXT_TESTS, not
2951           _AC_COMPILER_EXEEXT.
2952         * lib/autoconf/c.m4 (AC_PROG_CC, AC_PROG_CXX, AC_PROG_OBJC): Do not call
2953           _AC_COMPILER_OBJEXT directly.
2954         * lib/autoconf/fortran.m4 (_AC_PROG_FC): Likewise.
2956 2006-05-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2958         * doc/autoconf.texi (Limitations of Usual Tools) < sed (`t')>:
2959         Fix description of how the buggy `sed' works.
2961 2006-05-25  Noah Misch  <noah@cs.caltech.edu>
2963         Sync from Automake:
2965         * lib/Autom4te/XFile.pm (lock): Allow EOPNOTSUPP, besides
2966         ENOLCK.  Only mention `make -j' when applicable.  Only raise
2967         fatal errors when `make -j' is involved.  Improve error message.
2969 2006-05-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2971         * doc/autoconf.texi (Here-Documents): We now know more about
2972         the variable expansion in here documents bug.
2973         Thanks to Tim Rice and Stepan Kasal.
2975         * doc/autoconf.texi (Making testsuite Scripts): Add an example
2976         how to use TESTSUITEFLAGS.  Suggested by Eric Blake.
2978 2006-05-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2980         * tests/autotest.at (Multiline command from M4 expansion):
2981         No failure to be expected if the shell quotes newlines in
2982         commands in the `set -x' output.  Report by Tim Rice.
2983         * THANKS: Update.
2985 2006-05-23  Paul Eggert  <eggert@cs.ucla.edu>
2987         * lib/autoconf/status.m4 (_AC_OUTPUT_HEADER): Don't use shell
2988         expansion in the here-documents used by config.status, as that
2989         runs afoul of the Korn shell version M-12/28/93d bug described in
2990         the Autoconf manual, and this in turn causes a Coreutils 5.95 build to
2991         fail as described by Tim Rice and diagnosed by Ralf Wildenhues in
2992         <http://lists.gnu.org/archive/html/bug-autoconf/2006-05/msg00082.html>.
2994 2006-05-23  Jim Meyering  <jim@meyering.net>
2996         * lib/autoconf/functions.m4 (AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK):
2997         Fix typo introduced with 2006-04-02 change.  It reversed the sense
2998         of the test.
3000 2006-05-23  Paul Eggert  <eggert@cs.ucla.edu>
3002         * lib/autoconf/status.m4 (_AC_OUTPUT_HEADER): Simplify ac_dA and
3003         ac_dB slightly, to save bytes in the script.
3004         Max out at 50 lines, rather than 96; this is more likely
3005         (though not guaranteed) to avoid obscure 'sed' failures.
3007 2006-05-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3009         * lib/autotest/general.m4 (AT_INIT): UnixWare `tr' may interpret
3010         `tr -d -' as bad option argument.  Work around this by deleting
3011         an unrelated character.
3012         Report by Tim Rice <tim@multitalents.net>.
3014 2006-05-22  Paul Eggert  <eggert@cs.ucla.edu>,
3015             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>,
3016             Stepan Kasal  <kasal@ucw.cz>
3018         * doc/autoconf.texi (Particular Programs): Do not promise that
3019         we always prefer the GNU version of the program, and that we
3020         search according to PATH; both rules can have exceptions.
3021         Update description of AC_PROG_GREP, AC_PROG_EGREP, AC_PROG_FGREP,
3022         AC_PROG_SED.  Move descriptions of limitations
3023         to the Limitations of Usual Tools section.
3024         (Limitations of Usual Tools) <sed>: Mention script length
3025         limitations with Solaris /usr/ucb/sed.
3026         <grep>: Fix wording for empty alternative.  Mention that -c and
3027         -l should not be combined, and that -E and -F should not be
3028         combined.
3030 2006-05-21  Paul Eggert  <eggert@cs.ucla.edu>
3031         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3033         * lib/autoconf/programs.m4 (AC_PROG_SED): Catch script length
3034         limits in Solaris 8 /usr/ucb/sed by testing a long script.
3036 2006-05-22  Stepan Kasal  <kasal@ucw.cz>
3038         * doc/autoconf.texi (Defining Symbols): Literal parameter of
3039         AC_DEFINE is now passed to m4_pattern_allow.
3040         * NEWS: Mention that; likewise for AC_SUBST.
3041         * lib/autoconf/general.m4 (AC_DEFINE_TRACE_LITERAL): Pass
3042         the parameter to m4_pattern_allow.
3043         * tests/tools.at: Add a check for that.
3045 2006-05-22  Stepan Kasal  <kasal@ucw.cz>
3047         * lib/autoconf/status.m4: Fix typos.
3049 2006-05-21  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3051         * lib/autoconf/programs.m4 (_AC_FEATURE_CHECK_LENGTH): Remove
3052         only the files that this macro generates.
3054 2006-05-21  Paul Eggert  <eggert@cs.ucla.edu>
3056         * doc/autoconf.texi (Limitations of Usual Tools) <sed>: For
3057         the HP-UX sed limitation of 99 commands, labels do not count.
3058         * lib/autoconf/status.m4 (_AC_SED_CMD_LIMIT): Mention that
3059         in the comment.
3060         (_AC_OUTPUT_HEADER): Revert the change from 2006-05-19.
3062 2006-05-21  Paul Eggert  <eggert@cs.ucla.edu>
3064         * lib/autoconf/functions.m4 (AC_FUNC_GETMNTENT):
3065         Import the following fix from coreutils:
3067         2006-01-13  Jim Meyering  <jim@meyering.net>
3069         Invoke AC_CHECK_FUNCS(getmntent) unconditionally so that tests of
3070         $ac_cv_func_getmntent (e.g., in gl_LIST_MOUNTED_FILE_SYSTEMS) need
3071         not double-quote uses of that variable, to accommodate the rare
3072         case in which getmntent is available in none of the libraries
3073         checked.  This happens at least on FreeBSD 5.0.
3075 2006-05-20  Paul Eggert  <eggert@cs.ucla.edu>
3077         * lib/autoconf/general.m4 (AC_CONFIG_AUX_DIRS): Bring back
3078         ac_config_guess, ac_config_sub, and ac_configure, since evidently
3079         some other programs unwisely rely on these undocumented vars.
3080         But put in warning comments about them.
3081         Problem reported by Ralf Wildenhues in
3082         <http://lists.gnu.org/archive/html/autoconf-patches/2006-05/msg00068.html>.
3083         * NEWS: Document that these variables are intended to go away.
3085 2006-05-20  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3087         * lib/autoconf/c.m4 (AC_PROG_CXX_C_O): Require AC_PROG_CXX,
3088         and set the language to C++ (analogous to the equivalent Fortran
3089         tests).
3091         * lib/autoconf/c.m4 (AC_PROG_CXX_C_O): New macro.
3092         * doc/autoconf.texi (C++ Compiler): Document it.
3093         * lib/autoconf/fortran.m4 (_AC_PROG_FC_C_O): Adjust comment.
3094         * NEWS: Update.
3096 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
3098         * lib/autoconf/status.m4 (_AC_OUTPUT_HEADER): Fix off-by-one bug
3099         that caused config.status to generate 100-command sed scripts; the
3100         portable limit is 99.
3102 2006-05-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3104         * lib/autoconf/programs.m4 (AC_PROG_MKDIR_P): Name temporary
3105         variable `ac_d' instead of `d' to avoid infringing namespace.
3106         Report by Ralf Menzel.
3108 2006-05-18  Paul Eggert  <eggert@cs.ucla.edu>
3110         * lib/autoconf/status.m4 (_AC_OUTPUT_FILE): Don't prepend
3111         $ac_top_build_prefix to $MKDIR_P if it's just 'mkdir -p'.
3112         * tests/tools.at (autoconf: subdirectories): New test, taken from
3113         the corresponding problem report by Ralf Wildenhues in:
3114         http://lists.gnu.org/archive/html/autoconf-patches/2006-05/msg00053.html
3116         * lib/autoconf/functions.m4 (AC_REPLACE_FNMATCH, AC_FUNC_FNMATCH_GNU):
3117         Quote some uses of shell variables if they might suffer unexpected
3118         globbing.  This doesn't fix all instances of quoting problems that
3119         I found, just the easy ones that look safe.
3120         * lib/autoconf/general.m4 (_AC_INIT_SRCDIR, _AC_INIT_HELP):
3121         (AC_CONFIG_AUX_DIR, AC_CONFIG_AUX_DIR_DEFAULT, AC_CONFIG_AUX_DIRS):
3122         (AC_CANONICAL_BUILD, AC_CANONICAL_HOST, AC_CANONICAL_TARGET):
3123         (AC_CACHE_LOAD, AC_CACHE_SAVE): Likewise.
3124         * lib/autoconf/libs.m4 (_AC_PATH_X_XMKMF, _AC_PATH_X_DIRECT): Likewise.
3125         * lib/autoconf/specific.m4 (AC_SYS_LONG_FILE_NAMES): Likewise.
3126         * lib/autoconf/status.m4 (_AC_OUTPUT_LINK, _AC_OUTPUT_SUBDIRS):
3127         Likewise.
3128         * lib/autotest/general.m4 (_AC_INIT_PARSE_ARGS): Likewise.
3129         * lib/m4sugar/m4sh.m4 (_AS_DETECT_BETTER_SHELL): Likewise.
3131 2006-05-18  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3133         * bin/autoreconf.in ($help): Reword according to the manual.
3134         Suggested by Olly Betts.
3136 2006-05-17  Olly Betts  <olly@survex.com>  (tiny change)
3137         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3139         * bin/autoreconf.in: Pass the directory argument to
3140         `require_configure_ac'.  Fix comment.
3141         * tests/torture.at (Configuring subdirectories): Expose this.
3142         Reported by Olly Betts.
3144 2006-05-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3146         * lib/Automake/Configure_ac.pm, lib/Automake/Channels.pm,
3147         lib/Automake/FileUtils.pm, lib/Automake/Struct.pm: Sync from
3148         Automake as follows:
3150         * lib/Autom4te/Configure_ac.pm (find_configure_ac): Use
3151         `$configure_in' instead of `configure.in', to preserve
3152         directory component.
3154 2006-05-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3156         * config/config.guess, config/config.sub, config/texinfo.tex,
3157         doc/make-stds.texi, doc/standards.texi: Sync from upstream.
3159 2006-05-14  Paul Eggert  <eggert@cs.ucla.edu>
3161         * lib/autoconf/headers.m4 (AC_HEADER_STDBOOL): Fix overly-picky
3162         test for C99 conformance; (bool) 0.5 is an integer constant
3163         expression, but (bool) -0.5 is not.  Problem reported by Fedor
3164         Sergeev in <http://forum.sun.com/jive/thread.jspa?threadID=96202>.
3166 2006-05-13  Paul Eggert  <eggert@cs.ucla.edu>
3168         * doc/autoconf.texi (Particular Programs): AC_PROG_MKDIR_P now
3169         sets MKDIR_P, not mkdir_p, to avoid collisions with Automake.
3170         Warn about obsolete install-sh files.  Remove stray sentence
3171         fragment and fix cross reference.
3172         * lib/autoconf/programs.m4 (AC_PROG_INSTALL): Don't insist on
3173         install -d; this undoes the 2006-05-10 change.
3174         (MKDIR_P): Mark with AN_MAKEVAR.
3175         (AC_PROG_MKDIR_P): Fall back on $ac_install_sh, not $INSTALL, so
3176         that we don't require $INSTALL to be thread-safe.  Move comments
3177         out of generated code.  Require AC_CONFIG_AUX_DIR_DEFAULT instead
3178         of AC_PROG_INSTALL.  Output a message saying that we're checking
3179         mkdir -p.  Set MKDIR_P rather than mkdir_p.  Do special magic for
3180         MKDIR_P instead of AC_SUBST.
3181         * lib/autoconf/status.m4 (_AC_OUTPUT_FILE, _AC_OUTPUT_CONFIG_STATUS):
3182         Special magic for MKDIR_P, too.
3183         * lib/m4sugar/m4sh.m4 (AS_MKDIR_P): Remove comment that defeated
3184         a dnl.
3185         * tests/local.at (AT_CHECK_ENV): mkdir_p -> MKDIR_P.
3187 2006-05-11  Paul Eggert  <eggert@cs.ucla.edu>
3189         Sync from Automake, as follows:
3191         2006-05-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3192         * config/install-sh: Initialize IFS, so field splitting isn't
3193         turned off later.
3194         * config/mkinstalldirs: Likewise.
3195         * config/missing: Remove superfluous quotes.  Replace all uses of
3196         `[' by `test', for consistency, and for..
3197         * config/missing (sed_minuso, sed_output): New variables.
3198         (autom4te, help2man, makeinfo): Use them.  Unifies detection of
3199         `-o FILE', `--output FILE', `--output=FILE', stricter regex.
3200         Fixes `missing' to detect `--output' for help2man.  Fixes
3201         PR automake/483.  Report by Dennis J. Linse.
3202         (autom4te): Document in `missing --help'.
3204 2006-05-10  Paul Eggert  <eggert@cs.ucla.edu>
3206         * NEWS: New macro AC_PROG_MKDIR_P.  AS_MKDIR_P is now more robust.
3207         * config/install-sh: Don't use 'path' to talk about file names,
3208         as per GNU coding standards.  Close a race condition reported by Ralf
3209         Wildenhues and Stepan Kasal.  There is still a race condition
3210         on hosts that predate Posix 1003.1-1992, but we can't help this.
3211         Don't mishandle weird characters like space on pre-Posix hosts.
3212         Invoke mkdir at most once per dir arg on pre-Posix hosts.
3213         * doc/autoconf.texi (Programming in M4sh): Cross-reference to
3214         AC_PROG_MKDIR_P from AS_MKDIR_P.
3215         (Limitations of Usual Tools): Cross-reference to AC_PROG_MKDIR_P
3216         from mkdir.  Mention that Autoconf 2.60 install-sh is safe but
3217         earlier editions are not (including Automake 1.8.3).
3218         Do not suggest mkinstalldirs for thread-safety.
3219         * lib/autoconf/programs.m4 (AC_PROG_INSTALL): Insist on an 'install'
3220         that understands -d, so that AC_PROG_MKDIR_P can fall back on $INSTALL.
3221         * lib/m4sugar/m4sh.m4 (AS_MKDIR_P): Make it more robust in the
3222         presence of special characters and race conditions.
3223         * tests/local.at (AT_CHECK_ENV): Add mkdir_p to the list of variables
3224         in Autoconf's name space.
3226 2006-05-10  Bruno Haible  <bruno@clisp.org>
3227         and Paul Eggert  <eggert@cs.ucla.edu>
3229         * lib/autoconf/programs.m4 (AC_PROG_MKDIR_P): New macro, taken
3230         from Automake with minor changes.
3231         * doc/autoconf.texi (Particular Programs): Document AC_PROG_MKDIR_P.
3233 2006-05-10  Paul Eggert  <eggert@cs.ucla.edu>
3235         * config/install-sh: Update to Automake CVS version, as follows:
3236         2006-04-25  Stepan Kasal  <kasal@ucw.cz>
3237         * lib/install-sh: Simplify the expr implementation of dirname.
3238         2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
3239         * lib/install-sh: Handle --, and diagnose unknown options.
3241 2006-05-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3243         * tests/Makefile.am (AUTOTEST): Use `$(MY_AUTOM4TE)' instead of
3244         `./autom4te' to create `./testsuite', since the `all' target
3245         will ensure its presence, but `installcheck' should not create
3246         the uninstalled wrappers.
3248         * tests/torture.at (Unusual Automake input files): Skip if we
3249         detect automake < 1.8.
3251 2006-05-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3253         * lib/autoconf/c.m4 (AC_PROG_CC_STDC): If ac_cv_prog_cc_stdc
3254         is set to `no', then that overrides and sets ac_cv_prog_cc_c89
3255         and ac_cv_prog_cc_c99 to `no', for backward compatibility.
3256         * NEWS: Update.
3258 2006-05-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3260         * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): Take care not to
3261         munge (multiple) white space and other oddities.
3262         * tests/torture.at (AT_CHECK_AC_ARG_VAR): Make sure to M4-escape
3263         single quotes in variable assignment.
3264         (AC_ARG_VAR, configure invocation): Adjust tests to expose this
3265         and similar failures by adding multiple spaces, tabs, and other
3266         special characters.
3267         Report and different test suggested by Francesco Romani
3268         <fromani@gmail.com> and Andrew Church <achurch@achurch.org>.
3270         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): When we escape
3271         single quotes, we only need to search for single quotes; this
3272         both simplifies the search pattern, and makes us less
3273         susceptible to `echo' variations for arguments not containing
3274         single quotes.
3275         (_AC_ARG_VAR_VALIDATE): Likewise.
3277 2006-05-04  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3279         * doc/autoconf.texi (Special Shell Variables) <IFS>: Document
3280         `$*' and IFS concatenation issue with traditional shells and
3281         bash-2.04.  Report by Seanster@Seanster.com.
3283 2006-05-03  Bruno Haible  <bruno@clisp.org>
3285         * doc/autoconf.texi (Limitations of Usual Tools): Identify more
3286         precisely which Mac OS X versions have the od problem.
3288 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
3290         * doc/autoconf.texi: Use @option systematically.
3292 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
3293         and Bruno Haible  <bruno@clisp.org>
3295         * doc/autoconf.texi (Limitations of Usual Tools): Add a paragraph
3296         about 'od'.
3297         (Integer Overflow): Mention the special case of integer division
3298         overflow.
3300 2006-05-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3302         * lib/autoconf/general.m4 (_AC_CANONICAL_SPLIT): Cater for
3303         traditional shells like the Solaris one that do not use the
3304         first IFS character for assembling `$*'.
3305         Prompted by a related report from autoconf_bug@nro.ca.
3307 2006-05-01  Paul Eggert  <eggert@cs.ucla.edu>
3308         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3310         * doc/autoconf.texi (Limitations of Builtins, Limitations of Make):
3311         Mention more problems with the -e option.
3313 2006-04-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3315         * NEWS: Typo.
3316         * doc/autoconf.texi (Systemology): Mention the Heirloom Project.
3318         * doc/autoconf.texi (Introduction, Pointers): Use `@/' liberally
3319         in URLs to improve DVI formatted output (requires texinfo 4.6).
3320         (System Services, Systemology, Shellology): Likewise.
3321         (Limitations of Usual Tools): Rewrite Mac OS X example for nicer
3322         output.
3324         * doc/autoconf.texi (Fortran Compiler): Do not use `@ovar' in
3325         continuous text.
3326         (Runtime): Fix macro argument names to match description:
3327         `action-if-found' -> `action-if-true' and similarly.
3328         (Obsolete Macros): Likewise.
3329         * lib/autoconf/general.m4 (_AC_COMPILE_IFELSE): Likewise.
3330         (AC_COMPILE_IFELSE, AC_TRY_COMPILE, _AC_LINK_IFELSE)
3331         (AC_LINK_IFELSE, AC_TRY_LINK, AC_COMPILE_CHECK): Likewise.
3333 2006-04-29  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3335         * doc/autoconf.texi (Limitations of Make): Clean up markup.
3337         * ChangeLog: Typo.
3338         * doc/autoconf.texi (Portable Shell): Allow wrapped URLs, for
3339         DVI output.
3341 2006-04-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3343         * doc/autoconf.texi (Limitations of Builtins): Document FreeBSD
3344         /bin/sh set unsorted output.
3345         * lib/autoconf/general.m4 (_AC_CACHE_DUMP): Adjust.
3346         * tests/local.at: Likewise.
3348 2006-04-26  Paul Eggert  <eggert@cs.ucla.edu>
3350         * doc/autoconf.texi (Portable C and C++, Varieties of Unportability):
3351         (Integer Overflow, Null Pointers, Buffer Overruns):
3352         (Floating Point Portability, Exiting Portably): New sections.
3353         (Writing Test Programs): Fix some langauge.  Recommend exiting
3354         with status 1, not merely nonzero.  Clarify exit declaration.
3355         (Run Time): Move C exit status stuff to new Exiting Portably section.
3356         (Systemology): Mention Posix and levenez.  Update v7 reference.
3357         (Portable Shell): Mention the Posix shell.
3359 2006-04-25  Stepan Kasal  <kasal@ucw.cz>
3361         * bin/autoconf.as (me): Replace by as_me.
3363 2006-04-25  Paul Eggert  <eggert@cs.ucla.edu>
3365         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Don't use AS_ERROR,
3366         since as_me isn't set yet.
3368 2006-04-23  Paul Eggert  <eggert@cs.ucla.edu>
3370         Prepare for deprecation of AS_BASENAME and AS_DIRNAME, and fix
3371         a few minor bugs in this area.
3373         * doc/autoconf.texi (Programming in M4sh): Comment out the
3374         documentation of AS_BASENAME, for now.
3375         (Shell Substitutions): Do not use AS_DIRNAME in an example.
3376         (Limitations of Builtins) <basename>: Do not refer to
3377         AS_BASENAME.
3378         * bin/autoconf.as (me): Don't use AS_BASENAME.
3379         (dir): Remove the unused variable.
3380         * lib/m4sugar/m4sh.m4 (_AS_DETECT_REQUIRED): Renamed from
3381         AS_DETECT_REQUIRED.  All uses changed.
3382         (_AS_DETECT_SUGGESTED): Renamed from AS_DETECT_SUGGESTED.
3383         All uses changed.
3384         (_AS_DETECT_BETTER_SHELL): Put ;; at the end of a case.
3385         (AS_BASENAME): Use "basename --" to protect against leading "-".
3386         (_AS_BASENAME_EXPR): Renamed from AS_BASENAME_EXPR.  All uses changed.
3387         (_AS_BASENAME_SED): Renamed from AS_BASENAME_SED.  All uses changed.
3388         (_AS_BASENAME_PREPARE): Reject implementations that cannot handle "--".
3389         (_AS_DIRNAME_PREPARE): Likewise.
3390         (_AS_DIRNAME_EXPR): Renamed from AS_DIRNAME_EXPR.  All uses changed.
3391         (_AS_DIRNAME_SED): Renamed from AS_DIRNAME_SED.  All uses changed.
3392         (AS_DIRNAME): Use "dirname --".
3394 2006-04-23  Paul Eggert  <eggert@cs.ucla.edu>
3396         * doc/autoconf.texi (Runtime): Renamed from "Run Time".  All uses
3397         of "run time" and "run-time" changed to "runtime", for consistency.
3398         * lib/autoconf/fortran.m4: Likewise (in comment).
3399         * lib/autoconf/functions.m4: Likewise.
3400         * lib/autoconf/general.m4: Likewise.
3401         * lib/autoconf/headers.m4: Likewise.
3403         * doc/autoconf.texi (Run Time): Document the exit status situation
3404         with more accuracy and detail.
3406 2006-04-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3408         * doc/autoconf.texi (Introduction): The GNU Autoconf Macro
3409         Archive is not officially `GNU' any more.  Update URL.
3410         (Defining Directories): Likewise
3411         * lib/autoconf/c.m4 (AC_C_RESTRICT): Update URL.
3413 2006-04-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3415         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Remove the leading
3416         newline from the `trap' code to finish `config.log'; the NetBSD
3417         /bin/sh resets the exit status after an empty command, as
3418         documented in doc/autoconf.texi.
3419         Reported by Dalibor Topic <robilad@kaffe.org>.
3421 2006-04-19  Paul Eggert  <eggert@cs.ucla.edu>
3423         * doc/autoconf.texi (C Compiler): Clarify AC_C_TYPEOF.
3424         Suggested by Bruno Haible.
3426 2006-04-18  Paul Eggert  <eggert@cs.ucla.edu>
3428         * configure.ac (ac_cv_sh_n_works): Don't try to test for it, since
3429         some shells (e.g., Solaris 8 /bin/sh) implement it verrrry slowly.
3430         Instead, just list the shells that we know work.
3431         * tests/local.at (AT_CHECK_SHELL_SYNTAX): Remove 2nd arg.  All uses
3432         changed.  Be more cautious about the _cv_ variable.
3433         * tests/tools.at (Syntax of the shell scripts): Check the
3434         _cv_ variable once, at first, to avoid an internal autoconf error
3435         when sh -n does not work.
3437 2006-04-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3439         * lib/Autom4te/FileUtils.pm: Sync from Automake.
3441 2006-04-16  Paul Eggert  <eggert@cs.ucla.edu>
3443         * lib/autoconf/general.m4 (_AC_INIT_CONFIG_LOG): Don't
3444         use ">&-" since we're only 99.999% sure that this is portable,
3445         and since the MinGW bug is fixed in a different way.
3446         * lib/autotest/general.m4 (AT_INIT): Likewise.
3448 2006-04-16  Stepan Kasal  <kasal@ucw.cz>
3450         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Handle --recheck
3451         before opening config.log, to avoid hitting a bug on MinGW.
3453 2006-04-14  Paul Eggert  <eggert@cs.ucla.edu>
3455         * lib/autoconf/general.m4 (_AC_INIT_CONFIG_LOG): Close
3456         AS_MESSAGE_LOG_FD before reopening it onto the log file.
3457         This works around a MinGW bug reported by Eric Paire.
3458         Make sure that all writes to the log file append to it,
3459         rather than possibly losing data.
3460         * lib/autotest/general.m4 (AT_INIT): Likewise.
3462 2006-04-14  Stepan Kasal  <kasal@ucw.cz>
3464         * lib/Autom4te/FileUtils.pm (find_file): Fix a typo in the
3465         description.
3467 2006-04-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3469         * NEWS: Update.
3471         * configure.ac (AC_INIT): Bump to 2.59d.
3473 2006-04-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3475         Version 2.59c.
3477         * Makefile.maint (news-date-check): Do not require a leading `*'
3478         before the release date in NEWS.
3480 2006-04-12  Stepan Kasal  <kasal@ucw.cz>
3481         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3483         * lib/autoconf/status.m4 (_AC_OUTPUT_FILE): If the templates for
3484         the instantiated file do not contain the string 'datarootdir'
3485         but contain @datadir@, @docdir@, @infodir@, @localedir@, or
3486         @mandir@, replace the reference '${datarootdir}' by the value.
3487         * tests/torture.at (datarootdir workaround): New test.
3488         * NEWS: Advertise this temporary fixup.
3489         Based on a patch by Bruno Haible, reported and analyzed by
3490         Paul Eggert and Noah Misch.
3492 2006-04-12  Eric Blake  <ebb9@byu.net>
3494         * tests/autotest.at (Debugging a failed test): Fix comment.
3496 2006-04-12  Stepan Kasal  <kasal@ucw.cz>
3498         * lib/m4sugar/m4sh.m4 (_AS_LN_S_PREPARE): Simplify the summary of
3499         all the changes since 2006-04-07.
3501 2006-04-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3503         * lib/m4sugar/m4sh.m4 (_AS_LN_S_PREPARE): If `ln -s file1 file2'
3504         succeeded, but `ln -s file dir' failed, take care to remove the
3505         leftover target before the next test, to prevent its spurious
3506         failure; also make sure `ln file dir' works before selecting it.
3507         Thanks to Keith Marshall for pointing this out.
3508         * THANKS: Update.
3510         * lib/autotest/general.m4 (AT_INIT): Store quoted variable
3511         assignments in `at_debug_args', so that we put them correctly
3512         in the `run' script.
3513         * tests/autotest.at (Debugging a failed test): Unmark XFAIL.
3514         Reported by Eric Blake.
3516 2006-04-11  Eric Blake  <ebb9@byu.net>
3518         * tests/autotest.at (AT_CHECK_AT): Add new argument, to allow
3519         top-level tests after micro-suite has been run.   Used in...
3520         (Debugging a successful test, Debugging script and environment),
3521         (Debugging a failed test): ...these new tests.  The first of these
3522         is fixed by...
3523         * lib/autotest/general.m4 (_AT_CREATE_DEBUGGING_SCRIPT): New
3524         macro, split out from...
3525         (AT_INIT): ...here, so that using -d also generates a run script.
3526         Document that -d inhibits top-level logging.
3527         * doc/autoconf.texi (testsuite Invocation): Document that -d only
3528         inhibits top-level logging; debug scripts are created.
3530         * lib/autotest/general.m4 (_AT_CHECK): Avoid syntax error on empty
3531         check.
3532         * tests/autotest.at (Empty test, Empty check): New test to check it.
3534         * lib/autoconf/c.m4 (AC_C_CONST, AC_C_VOLATILE): Avoid warnings
3535         from gcc.
3537 2006-04-10  Stepan Kasal  <kasal@ucw.cz>
3539         * tests/mktests.sh: Use "trap '' 0", not "trap 0".  Do not touch
3540         the files if a problem appears.  Make the empty *.at files
3541         read-only, too.  Proposed by Ralf Wildenhues.
3543 2006-04-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3545         * config/Makefile.am: Add comment to force updated Makefile.in.
3547         * lib/freeze.mk: Fix typo in comment.  Unlike the last, white
3548         space only patch to this file, this patch causes the Makefile.in
3549         files that include freeze.mk to be updated, and thus have a
3550         newer time stamp again, which in turn makes a pristine CVS
3551         checkout have correct time stamps.
3553         * Makefile.maint (cvs-sv): New macro, to be used..
3554         (config.guess-url_prefix, config.sub-url_prefix)
3555         (texinfo.tex-url_prefix, standards.texi-url_prefix): ..here;
3556         point to CVS text checkout of Gnulib files.
3557         (copyright-check): Bump current year.
3558         (announcement): Do not hard-wire `./announce-gen'.
3559         (cvs-update): Propagate failures of `cvs' and `move-if-change'
3560         correctly.
3561         * Makefile.cfg (executable-update): Use `chmod a+x' instead of
3562         `chmod +x'.
3563         (wget_files): Update config.guess, config.sub, texinfo.tex by
3564         `wget-update', now that their URLs work again.
3566 2006-04-10  Paul Eggert  <eggert@cs.ucla.edu>
3568         * doc/autoconf.texi (Particular Types): Don't use AC_CHECK_TYPE.
3569         Problem noted by Paul D. Smith.
3571 2006-04-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3573         * doc/autoconf.texi: Remove unused words from word list.
3574         * .x-sc_prohibit_atoi_atof, .x-sc_space_tab, .x-sc_sun_os_names,
3575         .x-sc_trailing_space: New files.
3577         * doc/standards.texi: Sync from gnulib.
3579         * NEWS, doc/autoconf.texi (AC_LIBOBJ vs LIBOBJS): Mark
3580         `LIBOBJDIR' as experimental.
3582         * lib/m4sugar/m4sh.m4 (_AS_LN_S_PREPARE): MSYS `ln -s' fails
3583         with a target directory; it's internally implemented as `cp'
3584         anyway, but since Autoconf advertises the possibility to use
3585         a target directory when LN_S is `ln -s', we need to find out.
3586         Reported by Rolf Ebert <rolf.ebert.gcc@gmx.de> against MSYS,
3587         analyzed by Keith Marshall <keith.marshall@total.com>.
3589         * THANKS: Update.
3591 2006-04-10  Paul Eggert  <eggert@cs.ucla.edu>
3593         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Just output
3594         confdefs.h as-is.  In general, if it has backslash-newline or the
3595         like, then it doesn't work either to sort or to remove empty
3596         lines.
3598 2006-04-09  Stepan Kasal  <kasal@ucw.cz>
3600         * tests/Makefile.am (AUTOCONF_FILES): Fix typo in the comment.
3602 2006-04-09  Alexandre Duret-Lutz  <adl@gnu.org>
3604         * lib/autom4te.in (Automake-preselections): Preselect
3605         _AM_SUBST_NOTMAKE.
3607 2006-04-08  Paul Eggert  <eggert@cs.ucla.edu>
3609         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Use '\'' for an
3610         apostrophe within a single-quoted string, as this is the usual
3611         tradition and is easier to read than '"'"'.  Don't rely on the
3612         shell treating "$/" like '$/'.  Use a more-consistent indenting
3613         style for the trap.
3615 2006-04-09  Eric Blake  <ebb9@byu.net>
3617         * tests/autotest.at (Backquote command substitution),
3618         (Multiline backquote command substitution): Remove mistaken
3619         AT_NO_CMDSUBST from the 2006-03-14 patch, which was meant to be
3620         applied...
3621         (Parenthetical command substitution, Multiline parenthetical
3622         command substitution): here.
3624 2006-04-08  Paul Eggert  <eggert@cs.ucla.edu>
3626         Import macros from gnulib (often changing their name).
3628         * NEWS: AC_C_TYPE_LONG_DOUBLE is now obsolete.
3629         New macros AC_CHECK_DECLS_ONCE, AC_CHECK_FUNCS_ONCE,
3630         AC_CHECK_HEADERS_ONCE, AC_FUNC_STRTOLD, AC_HEADER_ASSERT,
3631         AC_STRUCT_DIRENT_D_INO, AC_STRUCT_DIRENT_D_TYPE,
3632         AC_TYPE_LONG_DOUBLE, AC_TYPE_LONG_DOUBLE_WIDER, AC_TYPE_INT8_T,
3633         AC_TYPE_INT16_T, AC_TYPE_INT32_T, AC_TYPE_INT64_T,
3634         AC_TYPE_INTMAX_T, AC_TYPE_INTPTR_T, AC_TYPE_LONG_LONG_INT,
3635         AC_TYPE_UINT8_T, AC_TYPE_UINT16_T, AC_TYPE_UINT32_T,
3636         AC_TYPE_UINT64_T, AC_TYPE_UINTMAX_T, AC_TYPE_UINTPTR_T,
3637         AC_TYPE_UNSIGNED_LONG_LONG_INT, AC_USE_SYSTEM_EXTENSIONS.
3638         The manual mentions Gnulib more prominently.
3639         * doc/autoconf.texi (Gnulib): New node.
3640         (Pointers): Add Gnulib URL.
3641         (Particular Functions): Alphabetize.  Add AC_FUNC_STRTOLD.
3642         (Generic Functions): Add AC_CHECK_FUNCS_ONCE.  Refer to new
3643         Gnulib section.
3644         (Particular Headers): Add AC_HEADER_ASSERT.  For stdbool.h,
3645         suggest a #define rather than a typedef for _Bool, and mention
3646         Gnulib rather than trying to substitute stdbool code.
3647         (Generic Headers): Add AC_CHECK_HEADERS_ONCE.
3648         (Generic Declarations): Add AC_CHECK_DECLS_ONCE.
3649         (Particular Structures): Add AC_STRUCT_DIRENT_D_INO,
3650         AC_STRUCT_DIRENT_D_TYPE.
3651         (Particular Types): Mention stdint.h and inttypes.h as standard
3652         headers too.
3653         Add AC_TYPE_INT8_T, AC_TYPE_INT16_T, AC_TYPE_INT32_T, AC_TYPE_INT64_T,
3654         AC_TYPE_INTMAX_T, AC_TYPE_INTPTR_T, AC_TYPE_LONG_DOUBLE,
3655         AC_TYPE_LONG_DOUBLE_WIDER, AC_TYPE_LONG_LONG_INT, AC_TYPE_UINT8_T,
3656         AC_TYPE_UINT16_T, AC_TYPE_UINT32_T, AC_TYPE_UINT64_T,
3657         AC_TYPE_UINTMAX_T, AC_TYPE_UINTPTR_T, AC_TYPE_UNSIGNED_LONG_LONG_INT.
3658         (C Compiler): Move AC_C_LONG_DOUBLE to ...
3659         (Obsolete Macros): here.  Under AC_LONG_DOUBLE, mention
3660         AC_TYPE_LONG_DOUBLE or AC_TYPE_LONG_DOUBLE_WIDER instead.
3661         (Posix Variants): Add AC_USE_SYSTEM_EXTENSIONS.
3662         (Coding Style).  Don't mention m4_expand_once.
3663         * lib/autoconf/c.m4 (AC_C_LONG_DOUBLE): Implement via
3664         AC_TYPE_LONG_DOUBLE_WIDER.  Now obsolete.
3665         * lib/autoconf/functions.m4 (_AH_CHECK_FUNCS): New macro.
3666         (AC_CHECK_FUNCS): Use it.
3667         (AC_CHECK_FUNCS_ONCE, AC_FUNC_STRTOLD): New macros.
3668         (AC_FUNC_WAIT3): "the Open Group standards" -> "POSIX".
3669         * lib/autoconf/general.m4 (AC_CHECK_DECLS_ONCE): New macro.
3670         * lib/autoconf/headers.m4 (AC_CHECK_HEADERS_ONCE): New macro.
3671         (AC_HEADER_ASSERT): New macro.
3672         (AC_HEADER_STDBOOL): Don't assume "#error" works.
3673         Catch a bug in IBM AIX xlc compiler version 6.0.0.0.
3674         Catch a bug in an HP-UX C compiler.
3675         * lib/autoconf/specific.m4 (AC_USE_SYSTEM_EXTENSIONS): New macro.
3676         * lib/autoconf/types.m4 (AC_TYPE_INTMAX_T. AC_TYPE_UINTMAX_T):
3677         (AC_TYPE_INTPTR_T, AC_TYPE_UINTPTR_T. AC_TYPE_LONG_DOUBLE):
3678         (AC_TYPE_LONG_DOUBLE_WIDER, AC_C_LONG_DOUBLE, AC_TYPE_LONG_LONG_INT):
3679         (AC_TYPE_UNSIGNED_LONG_LONG_INT, _AC_TYPE_INT, _AC_TYPE_UNSIGNED_INT):
3680         (_AC_STRUCT_DIRENT, AC_STRUCT_DIRENT_D_INO, AC_STRUCT_DIRENT_D_TYPE):
3681         New macros.
3683         * tests/mktests.sh (ac_exclude_list, au_exclude_list): Do not
3684         use /^foo|bar$/, it does not mean /^(foo|bar)$/.
3686 2006-04-08  Stepan Kasal  <kasal@ucw.cz>
3688         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Fix the wording
3689         of the warning introduced by the 2001-08-28 change.
3691 2006-04-08  Stepan Kasal  <kasal@ucw.cz>,
3692             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3694         * lib/autoconf/general.m4 (AC_CACHE_SAVE): All `ac_cv_env_foo'
3695         variables shall be overriden by the cache.
3696         * tests/torture.at (AC_ARG_VAR): Test also with a first value
3697         that contains braces.
3699 2006-04-07  Stepan Kasal  <kasal@ucw.cz>
3701         Revert the patch from 2006-04-01 and only improve
3702         _AS_DETECT_BETTER_SHELL:
3704         * lib/m4sugar/m4sh.m4 (_AS_PATH_WALK): Do not optimize; do not
3705         skip nonexistent directories.
3706         (_AS_DETECT_BETTER_SHELL): The optimization is moved here--try
3707         only shell candidates which exist.
3708         (AS_UNAME): No need to give three parameters to _AS_PATH_WALK.
3709         * lib/autotest/general.m4 (AT_INIT): No need to give three
3710         parameters to _AS_PATH_WALK.
3712 2006-04-07  Stepan Kasal  <kasal@ucw.cz>,
3713             Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3715         * bin/autoupdate.in (handle_autoconf_patches): Change the way we
3716         distinguish m4sugar macros.
3717         * tests/tools.at (autoupdating with aclocal and m4_include):
3718         New test.  Bug reported by Gary V. Vaughan <gary@gnu.org>,
3719         test case by Noah Misch <noah@cs.caltech.edu>.
3721 2006-04-07  Stepan Kasal  <kasal@ucw.cz>
3723         Revert my change from 2006-03-17, in other words:
3724         * lib/m4sugar/m4sh.m4 (AS_BOURNE_COMPATIBLE): Insert BIN_SH=xpg4
3725           and DUALCASE=1.
3726         (AS_SHELL_SANITIZE): Remove DUALCASE=1.
3727         * doc/autoconf.texi (Special Shell Variables) <BIN_SH>: Say that
3728           it is set.
3730 2006-04-07  Eric Blake  <ebb9@byu.net>
3732         * doc/autoconf.texi (Programming in M4sh): Document that
3733         AS_MKDIR_P exits the script on failure.
3734         * lib/autotest/general.m4: Remove redundant AS_ERROR.
3736 2006-04-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3738         * config/elisp-comp, config/install-sh, config/mdate-sh,
3739         config/missing, config/mkinstalldirs: Sync from Automake.
3741         * lib/Autom4te/FileUtils.pm, lib/Autom4te/Struct.pm: Sync
3742         from Automake.
3744         * doc/make-stds.texi: Sync from gnulib.
3746 2006-04-06  Eric Blake  <ebb9@byu.net>
3748         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_O): Inside cache
3749         check, s/ac_exeext/ac_cv_exeext/.  Fixes regression introduced
3750         2006-04-01.
3752 2006-04-06  Stepan Kasal  <kasal@ucw.cz>,
3753             Eric Blake  <ebb9@byu.net>,
3754             Paul Eggert  <eggert@cs.ucla.edu>,
3755             Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3757         * lib/autoconf/general.m4 (_AC_CACHE_DUMP): Fix the detection of
3758         whether `set' quotes correctly: redirect stderr of the tested
3759         `set', and use a subshell, for Ultrix; use `sed' instead of
3760         `grep' for zsh `set' which may write binary output; match only
3761         at the beginning of a line, to avoid false positives.
3762         In order to avoid false positives by unrelated variables with
3763         multiline content, put the dump algorithm in a subshell and
3764         unset all variables containing newlines (except some which are
3765         special to the shell).  Warn about cache variables that are
3766         unset.
3768 2006-04-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3770         * config/config.guess, config/config.sub, config/texinfo.tex:
3771         Sync from upstream.
3773         * tests/mktests.sh: Reword comments.
3775         * tests/mktests.sh: Only skip internal macros starting with
3776         `_AC_' or `__AC_'.  Noted by Stepan Kasal.
3777         Update exclusion lists for the test suite to this end:
3778         (AC_ARG_VAR): Do test this now.
3779         (AC_SEARCH_LIBS, AC_REPLACE_FUNCS): Need an argument.
3780         (AC_LINKER_OPTION): Remove (renamed to _AC_LINKER_OPTION).
3781         (AC_LIST_MEMBER_OF): Likewise (renamed to _AC_LIST_MEMBER_IF).
3782         (AC_LINK_FILES): Obsoleted since (and thus AU_DEFUN'ed).
3784         * doc/autoconf.texi (Shell Substitutions): Mention the MSYS
3785         shell issue with double-quoted command substitutions of native
3786         commands.
3787         Reported to MSYS by Mark Cave-Ayland, to Autoconf by Keith
3788         Marshall.
3790         * Makefile.maint (sc_cast_of_argument_to_free): Do not fail when
3791         no file matches the glob, discard the warning, set `nullglob'.
3792         (syntax-check): Likewise.
3793         (sc_cast_of_x_alloc_return_value): Likewise.
3794         (sc_cast_of_alloca_return_value, sc_error_exit_success)
3795         (sc_prohibit_jm_in_m4, .re-list, sc_unmarked_diagnostics)
3796         (m4-check): Likewise.
3797         (sc_system_h_headers): Do not print rule on execution.
3798         (sc_tight_scope): Do not fail for non-existing `src' directory.
3799         (sc_changelog): Skip the Copyright footer.
3800         * lib/autoconf/lang.m4: Remove trailing space.
3802         * lib/autoconf/status.m4: More replacements to
3803         <tab><space> where this makes sense.
3805 2006-04-06  Stepan Kasal  <kasal@ucw.cz>
3807         * tests/Makefile.am (maintainer-check-posix):
3808           s/POSIXLY_CORRECTLY/POSIXLY_CORRECT/
3810         * lib/autoconf/status.m4 (_AC_CONFIG_FOOS): Append TAGS to
3811           ac_config_<foo>s again, sometimes normalized, sometimes not.
3812         (AC_CONFIG_FILES, AC_CONFIG_HEADERS, AC_CONFIG_LINKS):
3813         (AC_CONFIG_COMMANDS): Do not do so here.
3814         (_AC_CONFIG_REGISTER_DEST): Double quote the tags in macros _AC_LIST_TAGS
3815           and_AC_LIST_TAG_COMMANDS; fixes another regression introduced by the
3816           2005-07-25 rewrite.  Noticed by Noah Misch.
3818         * lib/autoconf/general.m4 (AC_PRESERVE_HELP_ORDER): Do not define
3819           _AC_PRESERVE_HELP_ORDER, ...
3820         (AC_ARG_ENABLE, AC_ARG_WITH): ... use AC_PROVIDE_IFELSE insetad.
3822         * lib/autoconf/general.m4 (AC_ARG_VAR): Do not use m4_divert_once
3823           inside m4_expand_once; it is redundant.
3825         * lib/autoconf/general.m4 (_AC_INIT_HELP): Remove the broken support
3826           for --help from Cygnus `configure.'
3828 2006-04-06  Paul Eggert  <eggert@cs.ucla.edu>
3830         * doc/autoconf.texi (C Compiler): Warn about #error.  Follows up
3831         on a patch proposed by Ralf Wildenhues.
3833 2006-04-05  Paul Eggert  <eggert@cs.ucla.edu>
3835         * lib/autoconf/status.m4: Replace <space>''<tab> with
3836         <tab><space> where this makes sense.
3838 2006-04-05  Howard Chu  <hyc@highlandsun.com>  (trivial change)
3839             Noah Misch  <noah@cs.caltech.edu>
3841         * lib/autoconf/general.m4 (AC_PRESERVE_HELP_ORDER): New macro.
3842         (AC_ARG_ENABLE, AC_ARG_WITH): Adjust.
3843         * doc/autoconf.texi (Help Formatting): New node.
3844         * NEWS: Announce AC_PRESERVE_HELP_ORDER.
3846 2006-04-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3848         * TODO, config/Makefile.am, lib/freeze.mk, lib/autoconf/c.m4,
3849         lib/autoconf/specific.m4, lib/autoconf/status.m4,
3850         lib/autoconf/types.m4, lib/autotest/general.m4,
3851         tests/mktests.sh, tests/torture.at: White space cleanup:
3852         remove some SPACE before TAB, or add quoting ('' or @&t@).
3854         * NEWS, TODO, bin/autoreconf.in: `filesystem' -> `file system'.
3856         * doc/autoconf.texi (Shell Substitutions): Document `^' vs. `|'.
3858 2006-04-05  Eric Blake  <ebb9@byu.net>
3860         * lib/autotest/general.m4 (AT_INIT): Prep AT_*_all, so that an
3861         empty test suite works.
3862         * tests/autotest.at (Empty test suite): Remove xfail.
3864 2006-04-05  Noah Misch  <noah@cs.caltech.edu>
3866         * lib/autoconf/status.m4 (_AC_CONFIG_FOOS): Do not append normalized
3867         TAGS to ac_config_<foo>s.
3868         (AC_CONFIG_FILES, AC_CONFIG_HEADERS, AC_CONFIG_LINKS): Do so here.
3869         (AC_CONFIG_COMMANDS): Append NAME to ac_config_commands without
3870         normalizing it, consistent it with previous releases.
3871         * tests/torture.at (Macro calls in AC_CONFIG_COMMANDS tags): New test.
3873 2006-04-05  Paul Eggert  <eggert@cs.ucla.edu>
3875         * lib/m4sugar/m4sh.m4 (AS_BASENAME_EXPR, AS_DIRNAME_EXPR):
3876         Use simplified args that Eric Blake originally suggested.
3878 2006-04-04  Paul Eggert  <eggert@cs.ucla.edu>
3880         * tests/mktests.sh: Don't use 'cat'; just read the files directly.
3881         Prefer 'sort -u' to 'sort | uniq'.  Filter data before sorting it.
3882         Use 'comm' rather than N instances of grep; this also fixes a bug
3883         whereby substrings were incorrectly matched, causing us to not
3884         generate tests for AC_F77_NAME_MANGLING and AC_FUNC_LSTAT.
3885         (exclude_list): Exclude empty macros.
3886         (ac_exclude_list): Exclude AC_INCLUDES_DEFAULT.
3888         Use awk rather than grep -E or egrep, to avoid
3889         portability problems with regular expressions containing newlines.
3890         (exclude_list, ac_exclude_list, au_exclude_list, ac_exclude_script):
3891         Switch from grep to awk syntax.
3892         (ac_exclude_script): Renamed from ac_exclude_egrep.
3893         (au_exclude_script): Renamed from au_exclude_egrep.
3895 2006-04-04  Noah Misch  <noah@cs.caltech.edu>
3897         * lib/autoconf/general.m4 (_AC_INIT_HELP): Only `configure.in' evidences
3898         a subdirectory subject to Cygnus `configure'.
3899         * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): Likewise.
3901         * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_MONGREL): Omit the bug
3902         report request when we have no AC_PACKAGE_BUGREPORT.
3904 2006-04-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3906         * THANKS: Update.
3908         * tests/mktests.sh: Update copyright year in the header of the
3909         generated files.
3911         * lib/autoconf/c.m4 (AC_C_INLINE): Do not skip cleanup code.
3912         (AC_C_RESTRICT): Likewise.  Furthermore, add a function with a
3913         typedef'ed restricted pointer, to catch a compiler bug on
3914         HP-UX 11.x, and fix warnings so it passes with -Werror.
3915         (_AC_PROG_CC_C99): Likewise.
3916         Reported by Albert Chin <china@thewrittenword.com>.
3917         * tests/mktests.sh: Do not skip AC_C_INLINE, AC_C_RESTRICT.
3919 2006-04-03  Noah Misch  <noah@cs.caltech.edu>
3921         * bin/autoscan.in (subdirs): New global.
3922         (scan_file): Prune directories with configure{,.{ac,in,gnu}}.
3923         (output): Emit AC_CONFIG_SUBDIRS as needed.
3924         * tests/autoscan.at (autoscan): Remove XFAIL.
3926 2006-04-03  Noah Misch  <noah@cs.caltech.edu>
3928         * lib/autoconf/general.m4 (AC_CACHE_SAVE): Use AC_MSG_NOTICE.
3930 2006-04-03  Eric Blake  <ebb9@byu.net>
3932         * THANKS: Add myself.
3934 2006-04-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3936         * lib/autotest/general.m4 (AT_INIT): Add `at_testdir' to pointer
3937         to log, point to testsuite output tree.
3939 2006-04-02  Paul Eggert  <eggert@cs.ucla.edu>
3941         * NEWS: AC_PROG_CC and AC_PROG_CXX no longer declare 'exit'.
3942         * doc/autoconf.texi (Function Portability): Mention that C++
3943         has trouble with 'exit'.
3944         (Guidelines): Test programs shouldn't use 'exit'.
3945         * lib/autoconf/c.m4 (_AC_PROG_CXX_EXIT_DECLARATION):
3946         Remove; all uses removed.
3947         (AC_LANG_INT_SAVE(C), AC_C_BIGENDIAN):
3948         Return from 'main' instead of calling 'exit'.
3949         * lib/autoconf/functions.m4 (_AC_LIBOBJ_ALLOCA, AC_FUNC_CLOSEDIR_VOID):
3950         (_AC_FUNC_FNMATCH_IF, AC_FUNC_GETGROUPS):
3951         (AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK, _AC_FUNC_MALLOC_IF):
3952         (AC_FUNC_MEMCMP, AC_FUNC_MKTIME, AC_FUNC_MMAP, _AC_FUNC_REALLOC_IF):
3953         (AC_FUNC_SETPGRP, _AC_FUNC_STAT, AC_FUNC_STRTOD, AC_FUNC_STRERROR_R):
3954         (AC_FUNC_STRNLEN, AC_FUNC_SETVBUF_REVERSED, AC_FUNC_UTIME_NULL):
3955         (_AC_FUNC_FORK, _AC_FUNC_VFORK, AC_FUNC_WAIT3): Likewise.
3956         * lib/autoconf/headers.m4 (AC_HEADER_STDC): Likewise.
3957         * lib/autoconf/specific.m4 (AC_SYS_RESTARTABLE_SYSCALLS): Likewise.
3958         * lib/autoconf/types.m4 (AC_TYPE_GETGROUPS): Likewise.
3959         * tests/compile.at: Likewise.
3961 2006-04-02  Pavel Roskin  <proski@gnu.org>
3963         * doc/autoconf.texi (AC_PATH_X): Update per 2005-08-26 change.
3965 2006-04-01  Stepan Kasal  <kasal@ucw.cz>
3967         Clean up _AC_COMPILER_EXEEXT* macros.
3969         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Don't try to
3970           detect exeext, it will be done by _AC_COMPILER_EXEEXT_O; just set
3971           ac_file to the name of the default output file and call
3972           _AC_COMPILER_EXEEXT_WORKS.  Move the definition of ac_files and the
3973           initial `rm' of the candidate files...
3974         (_AC_COMPILER_EXEEXT): ... here and simplify them.  Moreover, use
3975           the same list in subsequent `rm' calls, and for the temporary
3976           redefinition of ac_clean_files; call _AC_COMPILER_OBJEXT at the end,
3977           and don't call the other _AC_COMPILER_EXEEXT_* macros directly, use...
3978         (_AC_COMPILER_EXEEXT_TESTS): ... this new macro.
3979         (_AC_COMPILER_EXEEXT_O): Don't export ac_cv_exeext, it's not needed (or
3980           no longer needed) by libtool.  Make it a cache check.
3981         (_AC_COMPILER_EXEEXT_CROSS): Remove the comment, it was obviously
3982           copied here by mistake.
3983         (AC_NO_EXECUTABLES): Redefine _AC_COMPILER_EXEEXT_TESTS, not
3984           _AC_COMPILER_EXEEXT.
3985         * lib/autoconf/c.m4 (AC_PROG_CC, AC_PROG_CXX, AC_PROG_OBJC): Do not call
3986           _AC_COMPILER_OBJEXT directly.
3987         * lib/autoconf/fortran.m4 (_AC_PROG_FC): Likewise.
3989 2006-04-01  Stepan Kasal  <kasal@ucw.cz>
3991         * lib/m4sugar/m4sh.m4 (_AS_DIRNAME_PREPARE): New macro.
3992         (AS_DIRNAME): Use it.
3993         (_AS_PREPARE): Add _AS_DIRNAME_PREPARE.
3995         * tests/*.at: Remove the generated ones.
3997 2006-04-01  Stepan Kasal  <kasal@ucw.cz>
3999         * lib/autotest/general.m4 (AT_INIT): Don't optimize the first PATH walk.
4001 2006-04-01  Eric Blake  <ebb9@byu.net>
4003         * lib/m4sugar/m4sh.m4 (_AS_PATH_WALK): Optimize nonexistent
4004         directories, unless optional third argument supplied.
4005         (AS_UNAME): Don't optimize PATH walk.
4007         * lib/Autom4te/Struct.pm, lib/autoconf/c.m4: s/non-existent/nonexistent/
4009 2006-04-01  Eric Blake  <ebb9@byu.net>
4010         and Stepan Kasal  <kasal@ucw.cz>
4012         * lib/m4sugar/m4sh.m4: Sort sections as implied by the comments,
4013         and fix some typos.
4015 2006-04-01  Noah Misch  <noah@cs.caltech.edu>
4017         * lib/autoconf/general.m4 (_AC_INIT_VERSION): Emit script name and
4018         Autoconf version number despite a zero- or one-argument AC_INIT.
4020         * bin/autoreconf.in (parse_args): Multiple -v send --verbose to
4021         subordinate tools.
4022         * lib/Autom4te/General.pm (getopt): Make -v and -d incremental.
4023         * doc/autoconf.texi (autoreconf Invocation): Document it.
4025         * doc/autoconf.texi: Use `Cygwin', `MinGW', and `license' consistently.
4026         Append LocalWords so ispell-buffer passes cleanly.  Spelling fixes.
4028 2006-04-01  Eric Blake  <ebb9@byu.net>
4030         * lib/m4sugar/m4sh.m4 (AS_MKDIR_P): Allow use in shell lists.
4031         * lib/autotest/general.m4: Be tolerant of existing directory when
4032           rm failed to remove it.
4034 2006-04-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4036         * bin/autoupdate.in: Redefine m4_location so that warnings print
4037         the correct lines of the input file by subtracting..
4038         (_au__first_line): ..this new definition.
4040         * lib/autoconf/general.m4 (AC_COMPILE_CHECK): Prefer
4041         AC_MSG_CHECKING over obsolete AC_CHECKING in autoupdated code.
4042         Remove stray newline in output.
4043         (AC_FOREACH): AU_DEFUN this as literal for autoupdate, and also
4044         AC_DEFUN this for autoconf, including the obsoletion diagnose.
4045         Fixes autoupdating of code where the replacement output contains
4046         m4sugar macros.
4047         * lib/autoconf/lang.m4 (AC_LANG_SAVE): Likewise.
4048         * tests/mktests.sh (ac_exclude_list): Add AC_FOREACH.
4049          (au_exclude_list): Add AC_LANG_SAVE.
4050         * tests/tools.at: Several new tests for all of this.
4051         * doc/autoconf.texi (Obsoleting Macros): Give a hint about the
4052         hairy details.
4053         The AC_LANG_SAVE issue was reported against Libtool by
4054         Dalibor Topic <robilad@kaffe.org>, and against Autoconf 2.57 by
4055         Kristian Kvilekval <kris@cs.ucsb.edu>.
4057 2006-04-01  Stepan Kasal  <kasal@ucw.cz>
4059         * bin/autoupdate.in: Handle m4 builtins and m4sugar macros together--
4060           switch all of them on and of when necessary.  Fixes the bug when
4061           m4sugar macros (e.g., m4_define) were expanded after the first
4062           automatic update (e.g., after AC_PREREQ or AC_INIT).
4064 2006-03-31  Paul Eggert  <eggert@cs.ucla.edu>
4066         * doc/autoconf.texi (Programming in M4sh): Sharpen the descriptions
4067         of AS_BASENAME and AS_DIRNAME.  Reported by Stepan Kasal.
4069         * lib/m4sugar/m4sh.m4 (AS_BASENAME_EXPR): Handle ///, ////, etc.
4070         correctly.  Problem reported by Eric Blake.
4071         (_AS_EXPR_PREPARE): Detect Tru64 expr bug.  Problem reported by
4072         Ralf Wildenhues.
4074 2006-03-30  Paul Eggert  <eggert@cs.ucla.edu>
4076         * doc/autoconf.texi (Programming in M4sh, Limitations of Usual Tools):
4077         Tighten up the basename/dirname wording.
4079 2006-03-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4081         * Makefile.maint (sc_texi_notab): New check: do not use TABs
4082         in texinfo files outside of verbatim environments.
4083         (syntax-check-rules): Update.
4084         * doc/autoconf.texi (Configuration Headers): Conform to it.
4086 2006-03-30  Chris Pickett <cpicke@cs.mcgill.ca>  (tiny change)
4088         * doc/autoconf.texi (autoreconf Invocation): Mention that -I for
4089           aclocal cannot be given on the command line.
4091 2006-03-29  Paul Eggert  <eggert@cs.ucla.edu>
4093         * doc/autoconf.texi (Programming in M4sh): Mention AS_BASENAME.
4094         Give an example for AS_DIRNAME instead of referring to Posix..
4095         (File System Conventions): Put discussion of // versus / here, and
4096         modernize it a bit.
4097         (Limitations of Usual Tools): Add basename.  Remove verbiage
4098         after dirname, since it got moved to the above sections.
4099         All this was inspired by a patch proposed earlier by Eric Blake.
4101 2006-03-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4103         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Quote
4104         `$0' to protect against spaces.
4105         * lib/autotest/general.m4 (AT_INIT): Likewise.
4106         * lib/m4sugar/m4sh.m4 (_AS_LINENO_PREPARE): Likewise, for
4107         `$0', $as_me.
4109 2006-03-26  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4111         * bin/autoscan.in: The value of find_configure_ac should be
4112         checked for existence, so we don't barf over a nonexisting
4113         configure.ac.  Reported by Laurence Darby <ldarby@tuffmail.com>.
4115 2006-03-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4117         * bin/autoupdate.in: Fix some typos.
4119 2006-03-21  Stepan Kasal  <kasal@ucw.cz>
4121         * doc/autoconf.texi (Installation Directory Variables): Fix typo.
4123         * lib/autoscan/autoscan.list: Refreshed.
4125 2006-03-20  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4127         * tests/local.at (AT_CHECK_ENV): Ignore AC_SUBSTed Objective C
4128         and Erlang related variables.
4130         * lib/autoconf/c.m4 (AC_LANG(Objective C), AC_LANG_OBJC)
4131         (_AC_LANG_ABBREV(Objective C), _AC_LANG_PREFIX(Objective C))
4132         (AC_LANG_SOURCE(Objective C), AC_LANG_PROGRAM(Objective C))
4133         (AC_LANG_CALL(Objective C), AC_LANG_FUNC_LINK_TRY(Objective C))
4134         (AC_LANG_BOOL_COMPILE_TRY(Objective C))
4135         (AC_LANG_INT_SAVE(Objective C), AC_LANG_PREPROC(Objective C))
4136         (AC_PROG_OBJCPP, AC_LANG_COMPILER(Objective C), AC_PROG_OBJC)
4137         (_AC_PROG_OBJC_G): New macros.
4138         (_AC_ARG_VAR_CPPFLAGS): Adjusted.
4139         * doc/autoconf.texi (Objective C Compiler): New node.
4140         (Preset Output Variables): Document OBJCFLAGS.
4141         (Language Choice): Document `Objective C' language.
4142         (Fortran Compiler): Fix typo.
4143         * NEWS: Updated.
4144         Inspired by a patch from David M. Lloyd <dmlloyd@tds.net>.
4146 2006-03-20  Stepan Kasal  <kasal@ucw.cz>
4148         * doc/autoconf.texi (Default Includes): Fix typo
4149           s/AC_HEADERS_STDC/AC_HEADER_STDC/
4150         (Limitations of Usual Tools): s/unwriteable/unwritable/
4151         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT, _AC_COMPILER_EXEEXT):
4152           Fix typos in the comments.
4154 2006-03-17  Stepan Kasal  <kasal@ucw.cz>
4156         * lib/autoconf/programs.m4 (AC_PATH_TOOL, AC_CHECK_TOOL, AC_CHECK_TOOLS):
4157           Factor out the warning to...
4158         (_AC_TOOL_WARN): ... this new macro; use `cross_compiling'.
4159         * tests/local.at (AT_CHECK_MACRO_CROSS): Avoid this warning.
4160         * tests/semantics.at (AC_C_BIGENDIAN): Likewise.
4162         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE): Do not special
4163           case `ac_delim' when writing the sed script.
4165         * lib/m4sugar/m4sh.m4 (AS_BOURNE_COMPATIBLE): Removed BIN_SH=xpg4,
4166           moved DUALCASE=1 ...
4167         (AS_SHELL_SANITIZE): ... here.
4168         * doc/autoconf.texi (Special Shell Variables) <BIN_SH>: Do not say
4169           that it is set.
4171         * lib/autoconf/programs.m4 (AC_CHECK_PROG): Quote the parameter of
4172           AC_SUBST.
4173         (_AC_PATH_PROG): Store the result to VARIABLE.
4174         (AC_PATH_PROG): No need to set VARIABLE again.
4176         * tests/local.at (AT_CHECK_MACRO_CROSS): New macro, creates two tests:
4177           the first one is usual AT_CHECK_MACRO test, the second one checks
4178           that the same works when cross-compiling.
4179         * tests/semantics.at (AC_CHECK_ALIGNOF, AC_CHECK_ALIGNOF struct):
4180         (AC_CHECK_SIZEOF, AC_CHECK_SIZEOF struct): Use it.
4182 2006-03-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4184         * lib/m4sugar/m4sh.m4 (_AS_DETECT_BETTER_SHELL): Prepend
4185         the directory `/usr/bin/posix' in the shell search, to prefer
4186         the Posix shell not only in subsequent spawns as with `$BIN_SH'
4187         on Tru64.
4189         * doc/autoconf.texi (contents): To fix texi2html output, hide
4190         `@setcontentsaftertitlepage' for HTML.
4191         (Writing Autoconf Macros): Likewise, insert space after `@c'.
4192         (Leviticus, Numbers, Deuteronomy): Likewise, change `@,c' to
4193         `@,{c}'.
4195 2006-03-16  Stepan Kasal  <kasal@ucw.cz>
4197         * lib/m4sugar/m4sh.m4 (_AS_PREPARE): Move the IFS setup and CDPATH
4198           sanitizing...
4199         (AS_SHELL_SANITIZE): ...here; mention _AS_PATH_WALK needs IFS set.
4200         * lib/autoconf/general.m4 (_AC_CANONICAL_SPLIT): Add an explanation
4201           why IFS is restored so late; thank you, Ralf, for reminding us.
4203 2006-03-15  Stepan Kasal  <kasal@ucw.cz>
4205         * doc/autoconf.texi (Pretty Help Strings): No need to use cached
4206           variables in the examples.
4208 2006-03-14  Romain Lenglet  <rlenglet@users.forge.objectweb.org>
4210         * doc/autoconf.texi (several sections): Cleaned up documentation for
4211         macros in erlang.m4.
4213 2006-03-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4215         * tests/autotest.at (AT_NO_CMDSUBST): New macro to determine
4216         failure condition for `$(cmd)' style command substitutions.
4217         (Parenthetical command substition, Multiline parenthetical
4218         command substition): Use it.
4220         * doc/autoconf.texi (Special Shell Variables): Missing word.
4221         Reported by Keith Marshall <keith.marshall@total.com>.
4223         * lib/m4sugar/m4sh.m4 (_AS_PATH_WALK): Do not forget to reset
4224         IFS even in case of empty `$PATH'.
4226 2006-03-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4228         * lib/autotest/general.m4 (AT_INIT) <at_optarg>: Optimize
4229         `expr' away if there is nothing to do.
4230         < --keywords >: Simplify and robustify argument handling.
4231         Revert erroneous comment from 2005-08-23.  Extend to allow
4232         keyword negation with `!'.
4233         Update help message.  Remove broken code to prevent running
4234         tests multiple times.
4235         * doc/autoconf.texi (testsuite Invocation) < --keywords >:
4236         Update and fix the documentation accordingly.
4237         * tests/autotest.at (Keywords): Renamed to..
4238         (Keywords and ranges): .. this.  Extended to make sure negated
4239         keywords, keywords taken from AT_SETUP arguments, and numeric
4240         test ranges work, and that matching is case-insensitive.
4242 2006-03-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4244         * lib/autoconf/types.m4 (_AC_CHECK_TYPE_NEW): Use a typedef to
4245         allow to pass unnamed structs even in C++.
4246         (AC_CHECK_SIZEOF):  Likewise.
4247         Also fix quoting error in `AC_MSG_FAILURE' arguments.
4248         * tests/semantics.at (AC_CHECK_ALIGNOF struct, AC_CHECK_SIZEOF
4249         struct): New tests for unnamed structs, each both native and
4250         cross-compiling.
4252         * lib/autoconf/c.m4 (AC_C_TYPEOF): Use typedef to avoid defining
4253         a structure inside a cast, for C++ conformance.
4254         * lib/autoconf/types.m4 (AC_CHECK_ALIGNOF): Likewise.
4255         Also fix quoting error in `AC_MSG_FAILURE' arguments.
4257         * lib/autoconf/c.m4 (AC_PROG_CC_STDC): If we cannot enable C99
4258         nor C89 mode, set `$ac_cv_prog_cc_stdc' to `no' instead of
4259         trying to execute the command `no'.
4261         * lib/autoconf/lang.m4 (AC_LANG_CONFTEST): AC_DEFUN this, not
4262         m4_define, so that the requirements of `AC_INCLUDES_DEFAULT' are
4263         expanded outside.
4265         * doc/autoconf.texi (autoconf Invocation): Fix typos in trace
4266         example.  Do not emphasize `$%', it is hardly new and special.
4267         Reported by Edouard Bechetoille <ebecheto@ens-lyon.fr>.
4269         * doc/autoconf.texi (Limitations of Usual Tools): Document
4270         OpenBSD and traditional `grep' failure to handle multiple
4271         patterns separated by newlines.
4273 2006-03-10  Romain Lenglet  <rlenglet@users.forge.objectweb.org>
4275         * doc/autoconf.texi (several sections): Add documentation for macros
4276         in erlang.m4.
4278 2006-03-10  Eric Blake  <ebb9@byu.net>
4280         * doc/autoconf.texi (Obsolete Macros): Fix wording of
4281         AC_TRY_LINK_FUNC.
4283 2006-03-10  Paul Eggert  <eggert@cs.ucla.edu>
4285         * doc/autoconf.texi: Use @acronym more consistently for acronyms
4286         like BSD, GPL, LGPL.  Fix minor English typos.
4287         (AC_STDC_HEADERS, AC_PROG_GCC_TRADITIONAL):
4288         Mention that these macros are becoming obsolete.
4289         (AC_STDC_HEADERS, AC_PROG_CC, AC_C_CONST, AC_C_VOLATILE):
4290         Use more modern terminology for which standard is what.
4291         (AC_PROG_CC): Mention gcc first, and remove obsolete references to egcs
4292         and to ansi2knr.
4293         (AC_PROG_CXX): Likewise.
4294         (AC_C_PROTOTYPES, Test Functions, AC_LIBOBJ vs LIBOBJS):
4295         Remove obsolete discussion about how to port to K&R.
4296         (Guidelines for Test Programs): Suggest AC_HEADER_STDBOOL rather than
4297         the obsolescent AC_HEADER_STDC.
4298         (AC_FOO_IFELSE vs AC_TRY_FOO): Don't use #error; test programs
4299         can't rely on it.
4301 2006-03-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4303         * tests/c.at (AC_PROG_CPP without warnings, AC_PROG_CPP via CC):
4304         Remove stdin redirection from /dev/null to allow pipe to work.
4306 2006-03-08  Paul Eggert  <eggert@cs.ucla.edu>
4308         * tests/c.at (AC_PROG_CPP without warnings, AC_PROG_CPP via CC):
4309         Require that /lib/cpp include stdio.h correctly.  Solaris 10's
4310         doesn't.  Problem reported by D'Arcy A MacIsaac and diagnosed by
4311         Ralf Wildenhues.
4313 2006-03-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4315         * lib/autoconf/status.m4 (_AC_SED_CMD_LIMIT): The limit for
4316         HP-UX sed is 99 commands, not 100.
4317         (_AC_OUTPUT_FILES_PREPARE): Do not count the `}' of an
4318         _AC_SUBST_FILES fragment.  Separate `{' and `r' commands by
4319         newline for portability.
4320         * tests/torture.at (Torturing config.status): Also test 100
4321         AC_SUBST_FILE invocations.  Fix test to actually verify the
4322         AC_CONFIG_FILES output.
4323         * doc/autoconf.texi (Limitations of Usual Tools): Document HP-UX
4324         command, label, and read-file `r' limits.  Unify HP-UX spelling.
4326         * tests/Makefile.am (edit, $(wrappers)): Do not use `$<' in
4327         non-suffix rule.
4328         ($(TESTSUITE_GENERATED_AT)): Use `$(srcdir)` for the benefit of
4329         non-GNU make.
4330         (autoconfdir, $(AUTOCONF_FILES)): Likewise.
4331         * tests/mktests.sh: Small shell portability fixes.
4333 2006-03-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4335         * doc/autoconf.texi (Caching Results): Fix the examples to use a
4336         recommended quoting style and discard unwanted output.
4338 2006-03-05  Paul Eggert  <eggert@cs.ucla.edu>
4340         * lib/autotest/general.m4 (_AT_NORMALIZE_TEST_GROUP_NUMBER): New macro.
4341         (AT_INIT): Use it, to remove arbitrary limit of 999,999 test
4342         cases, and to work around Tru64 expr bug.
4344 2006-03-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4346         * doc/autoconf.texi (Limitations of Usual Tools): Mention Tru64
4347         expr bug that turns the result of a regex match into a number if
4348         possible.
4350 2006-03-04  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4352         * lib/autoconf/types.m4 (AC_CHECK_ALIGNOF): Work around
4353         HPUX compiler bug, similarly to AC_CHECK_SIZEOF, as documented
4354         in section `Specific Compiler Characteristics'.
4356 2006-03-04  Eric Blake  <ebb9@byu.net>
4358         * lib/autoconf/functions.m4 (AC_FUNC_STRERROR_R): Avoid unused
4359         variable warning.
4361 2006-03-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4363         * lib/autoconf/status.m4 (_AC_OUTPUT_HEADER): Force correct
4364         order of variable initialization, so even the Solaris 2.6 shell
4365         can create a config header correctly.  Fixes lots of test suite
4366         failures.
4368 2006-02-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4370         * doc/autoconf.texi (Text processing Macros): New node to
4371         document the m4sugar macros m4_re_escape, m4_tolower,
4372         m4_toupper, m4_split, m4_normalize, m4_append, m4_append_uniq.
4374 2006-02-22  Paul Eggert  <eggert@cs.ucla.edu>
4376         * lib/autoconf/libs.m4 (_AC_PATH_X_DIRECT): Fix typo:
4377         XrmInitialize (0) -> XrmInitialize ().
4378         Reported by Toshio Kuratomi.
4380 2006-02-21  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4382         * lib/m4sugar/m4sh.m4 (AS_IF): Extend to allow more than one
4383         test, as in `if tests; then cmd1; elif ...; else ...; fi'.
4384         * doc/autoconf.texi (Programming in M4sh): Adjusted.
4385         * tests/m4sh.at (AS_IF and AS_CASE): Test this.  Also make sure
4386         both macros are defun'ed so that required macros are evaluated
4387         outside.
4389         * doc/autoconf.texi (Prerequisite Macros): State more precisely
4390         where a required macro will be expanded.
4391         (Coding Style): Another reason not to use `m4_define'.
4393 2006-02-21  Eric Blake  <ebb9@byu.net>
4395         * lib/autoconf/general.m4 (_AC_LIBOBJ): Minor optimization.
4397 2006-02-20  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4399         * doc/autoconf.texi (Looping constructs): New node, to
4400         document m4_for, m4_foreach, m4_foreach_w, and mention
4401         obsolete AC_FOREACH.
4402         (Obsolete Macros): Document AC_FOREACH.
4403         * lib/m4sugar/m4sugar.m4 (_m4_for): Fix declaration comment.
4404         (m4_for): Fix to never loop (almost) endlessly, work correctly
4405         with arithmetic expressions in arguments, a step of zero or
4406         non-integer multiple of the interval, and avoid integer
4407         overflow.
4408         * tests/m4sugar.at: New test for m4_for, m4_foreach, and
4409         m4_foreach_w.
4411 2006-02-20  Romain Lenglet  <rlenglet@users.forge.objectweb.org>
4413         Add basic support for Erlang, both for configuring Erlang/OTP
4414         tools, and Erlang as a conf test language.
4415         * lib/autoconf/erlang.m4: New file.
4416         * lib/autoconf/autoconf.m4: Add erlang.m4.
4417         * lib/autoconf/Makefile.am (dist_autoconflib_DATA): Likewise.
4418         * lib/freeze.mk (autoconf_m4f_dependencies): Likewise.
4419         * NEWS: Add short description of new macros.
4420         * THANKS: Add Romain Lenglet.
4422 2006-02-20  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4424         * doc/autoconf.texi (Shellology) <pdksh>: Document that pdksh as
4425         native /bin/sh may not set KSH_VERSION (seen on OpenBSD).
4427 2006-02-15  Eric Blake  <ebb9@byu.net>
4429         * lib/autoconf/general.m4 (AC_CHECK_DECL): Avoid unused variable
4430         warning.
4432 2006-02-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4434         * lib/m4sugar/m4sh.m4 (AS_CASE): New macro.
4435         (_AS_CASE): Private helper macro.
4436         * tests/m4sh.at: Basic tests for AS_IF and AS_CASE.
4437         * doc/autoconf.texi (Programming in M4sh): Document AS_CASE.
4438         Fix syntax of AS_IF description
4439         (Prerequisite Macros): Mention AS_IF and AS_CASE as workarounds
4440         for the AC_REQUIRE mess.
4441         * NEWS: Mention AS_CASE, AS_BOURNE_COMPATIBLE, and
4442         AS_SHELL_SANITIZE.
4444 2006-02-14  Paul Eggert  <eggert@cs.ucla.edu>
4446         * doc/autoconf.texi: Minor style cleanup.
4447         Be consistent about spaces after commas.
4448         Insert [] where empty args look a bit funny.
4449         Fix some "i.e." and "e.g." usages.
4450         Try to avoid "X/Y" usages.
4451         Don't be pedantic about "ISO C99"; just say C99.
4452         Prefer GNU style for spaces in front of parens.
4453         (Function Portability): Comment about C89 versus C99
4454         signed integer division.
4455         (Particular Headers): Use current gnulib style for dirent
4456         includes.
4458 2006-02-14  Stepan Kasal  <kasal@ucw.cz>
4459         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4461         * bin/autoupdate.in (handle_autoconf_macros): Fix updating of
4462         macros without parameters.
4463         * lib/autoconf/autoupdate.m4 (AU_ALIAS): Likewise.
4464         * doc/autoconf.texi (Obsoleting Macros): Document AU_ALIAS.
4465         * tests/tools.at (autoupdating AU_ALIAS): New test for AU_ALIAS
4466         `$#' bug.
4467         (autoupdate): Updated to match AU_ALIAS fix.
4469 2006-02-13 Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4470         and Paul Eggert  <eggert@cs.ucla.edu>
4472         * doc/autoconf.texi (Programming in M4sh): Document
4473         AS_BOURNE_COMPATIBLE and AS_SHELL_SANITIZE.
4475 2006-02-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4477         * lib/m4sugar/m4sh.m4 (_AS_BOURNE_COMPATIBLE): Renamed to..
4478         (AS_BOURNE_COMPATIBLE): ..this.
4479         (_AS_RUN, AS_SHELL_SANITIZE): Adjusted all callers.
4481 2006-02-12  Paul Eggert  <eggert@cs.ucla.edu>
4483         * doc/install.texi (Defining Variables): Tighten up the
4484         CONFIG_SHELL wording.
4486 2006-02-12 Paul Eggert  <eggert@cs.ucla.edu>
4487         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4489         * lib/m4sugar/m4sh.m4 (_AS_BOURNE_COMPATIBLE): Look at the output
4490         of (set -o) rather than testing whether (set -o posix) succeeds,
4491         to work around a bug in the AIX 5.3 shell.  Problem originally
4492         reportd by Howard Chu for libtool.
4494 2006-02-10  J.T. Conklin  <jtc@acorntoolworks.com>
4496         * doc/autoconf.texi (Running the Compiler, Running the Linker):
4497         Changes the macro arguments in summaries to match the
4498         descriptions.
4500 2006-02-04  Stepan Kasal  <kasal@ucw.cz>
4502         * doc/install.texi (Defining Variables): Classify the `CONFIG_SHELL'
4503         hint as ``a workaround for a bug.''
4505 2006-01-31  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4507         * bin/autoreconf.in: New option `--no-recursive'.
4508         Improve wording for subpackages a bit.
4509         * doc/autoconf.texi (autoreconf Invocation): Updated.
4510         * NEWS: Updated.
4512         * doc/install.texi (Defining Variables): Put `CONFIG_SHELL'
4513         in environment of `configure', not the command line.
4514         Reported by Howard Chu <hyc@highlandsun.com>.
4516 2006-01-25  Paul Eggert  <eggert@cs.ucla.edu>
4518         * doc/autoconf.texi (Limitations of Builtins): Document the
4519         problem with "trap -".
4521 2006-01-23  Steven G. Johnson  <stevenj@fftw.org>
4523         * lib/autoconf/fortran.m4 (_AC_FC_LIBRARY_LDFLAGS, _AC_FC_DUMMY_MAIN):
4524         (_AC_FC_MAIN, __AC_FC_NAME_MANGLING): Use _AC_LANG in check
4525         messages to differentiate Fortran and Fortran 77 tests.
4526         (AC_FC_SRCEXT, AC_FC_FREEFORM): Use AC_LANG_PUSH/POP instead of
4527         AC_LANG_ASSERT, to allow use in mixed-language projects.
4529 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
4531         * lib/autoconf/c.m4 (AC_LANG_FUNC_LINK_TRY(C)): Prefer "defined
4532         FOO" to "defined (FOO)".
4533         * lib/autoconf/functions.m4 (_AC_LIBOBJ_ALLOCA): Likewise.
4534         * lib/autoconf/headers.m4 (AC_HEADER_STAT): Likewise.
4535         * lib/autoconf/specific.m4 (AC_XENIX_DIR): Likewise.
4536         * tests/tools.at (ifnames): Likewise.
4538 2006-01-21  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4540         * lib/m4sugar/m4sh.m4 (AS_TMPDIR): Do not pass `-q' to mktemp.
4541         * lib/Autom4te/General.pm (mktmpdir): Likewise.
4542         (END): Improve error message a bit.
4543         Reported by Bruce Korb <bkorb@gnu.org>.
4545 2006-01-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4547         * lib/autoconf/fortran.m4 (_AC_FC_LIBRARY_LDFLAGS): Ignore
4548         `-LIST:' and `-LNO:', for PathScale 2.3 compilers.
4550 2006-01-11  Stepan Kasal  <kasal@ucw.cz>
4552         * doc/autoconf.texi (Header Portability): On Solaris 8, sys/ptem.h
4553         requires sys/stream.h.  Reported by Oliver Kiddle.
4555 2006-01-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4556             Stepan Kasal  <kasal@ucw.cz>
4558         * lib/autotest/general.m4 (AT_INIT): When ensuring writability
4559         before the removals of test dirs, use `find' to avoid modification
4560         of symlinked directories.
4562 2006-01-11  Steven G. Johnson  <stevenj@alum.mit.edu>
4564         * lib/autoconf/fortran.m4 (AC_F77_DUMMY_MAIN, AC_FC_DUMMY_MAIN):
4565         Don't ignore the macro arguments.
4567 2006-01-11  David Thompson  <dthompsn@vizsolutions.com>
4569         * lib/autoconf/c.m4 (_AC_PROG_CXX_EXIT_DECLARATION): Add `exit'
4570         declaration that works for MSVC.
4572 2006-01-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4574         * lib/autoconf/lang.m4 (_AC_COMPILER_OBJEXT_REJECT):
4575         Add `*.map' and `.inf' for Green Hills compiler.
4576         Reported by Stefan Seefeld <stefan@codesourcery.com>.
4578         * lib/m4sugar/m4sugar.m4 (m4_text_wrap): Handle quadrigraphs
4579         correctly: pad with spaces after FIRST_PREFIX if necessary,
4580         and compute string lenghts with `m4_qlen' instead of `m4_len'.
4581         * lib/m4sugar/m4sh.m4 (AS_HELP_STRING): Comments updated.
4582         * tests/m4sh.at (AS_HELP_STRING): Test extended.
4583         * NEWS: Updated.
4584         Reported by numerous people, numerous times.
4586 2006-01-05  Paul Eggert  <eggert@cs.ucla.edu>
4588         * bin/autoconf.as, bin/autoheader.in, bin/autom4te.in
4589         * bin/autoreconf.in, bin/autoscan.in, bin/autoupdate.in, bin/ifnames.in:
4590         * lib/autoconf/general.m4, lib/autoconf/status.m4:
4591         * lib/autotest/general.m4, tests/local.at:
4592         Update copyright year to 2006.
4594         * Makefile.maint (sc_root_tests): Use the recommended style s/a/b/ for
4595         sed substitutions.
4596         * doc/autoconf.texi (Installation Directory Variables): Use s|a|b|
4597         for file names, again.  Reported by Noah Misch.
4598         (Coding Style): Explain that s|a|b| is preferred for file names.
4599         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE): Prefer s/a/b/.
4600         (AC_OUTPUT_MAKE_DEFS): Likewise.
4601         * lib/autotest/general.m4 (AT_INIT): Likewise.
4602         * lib/m4sugar/m4sh.m4 (_AS_LINENO_PREPARE): Likewise.
4603         * tests/local.at (AT_CHECK_AUTOM4TE): Likewise.
4605         Fix Posix-conformance bugs re use of { command in sed scripts,
4606         and improve the sed-related documentation a bit.
4607         * doc/autoconf.texi (Installation Directory Variables): Use
4608         our own style advice re 's,a,b,' versus 's|a|b|'.  Use "Sed"
4609         rather than "sed" when talking about Sed in general.
4610         (Particular Programs): Likewise.
4611         (Coding Style): y is like s with respect to / and ,.
4612         (Limitations of Usual Tools): Document the weird restrictions
4613         that Posix has about { }.  Use better quoting.
4614         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE, _AC_OUTPUT_HEADER):
4615         Rewrite to conform to Posix rules about { } in sed scripts.
4616         * lib/m4sugar/m4sh.m4 (AS_DIRNAME_SED, AS_BASENAME_SED): Likewise.
4617         * tests/foreign.at (Libtool): Likewise.
4618         * tests/semantics.at (AC_CHECK_PROG & AC_CHECK_PROGS):
4619         Use our own style advice re 's,a,b,' versus 's|a|b|'.
4621 2006-01-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4623         * lib/autoconf/status.m4: Fix typo.
4625         * lib/autoconf/fortran.m4 (_AC_FC_LIBRARY_LDFLAGS): Ignore
4626         singly- or doubly-quoted arguments to `-cmdline', `-ignore',
4627         `-def', for the benefit of Portland `pgf90 -Mipa'.
4628         Reported by Christopher Hulbert <cchgroupmail@gmail.com>.
4630 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
4632         * doc/autoconf.texi: Update copyright (and other) dates to 2006.
4633         * doc/autoconf.texi (Shellology): Mac OS X 10.2 changed the default
4634         shell from zsh to bash.
4636 2005-12-31  Stepan Kasal  <kasal@ucw.cz>
4638         * lib/autoconf/programs.m4 (_AC_PROG_GREP): Use $PATH_SEPARATOR;
4639           ":" caused problems on OS/2-EMX.  Suggested by Andrew Belov.
4641 2005-12-29  Paul Eggert  <eggert@cs.ucla.edu>
4643         * doc/autoconf.texi (Shell Substitutions): Warn about unbalanced
4644         parentheses in $(...).  Problem reported by Eric Blake.
4646 2005-12-12  Paul Eggert  <eggert@cs.ucla.edu>
4648         * doc/autoconf.texi (Limitations of Usual Tools):
4649         Mention which characters can be escaped with \ in portable regular
4650         expressions used in grep, sed, expr.  Mention the leading ^ problem
4651         with expr.  Clean up some confusing wording.  Mention which
4652         grep options are portable.
4654 2005-12-09  Stepan Kasal  <kasal@ucw.cz>
4656         * tests/local.at (AT_CHECK_AUTOM4TE): Fix typo in the comment.
4658 2005-12-02  Paul Eggert  <eggert@cs.ucla.edu>
4660         * doc/autoconf.texi (Limitations of Builtins): Fix typos in previous
4661         patch, noted by Ralf Wildenhues.
4663 2005-12-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4665         * lib/m4sugar/m4sh.m4 (_AS_BOURNE_COMPATIBLE): Try `set -o
4666         posix' unconditionally, for pdksh in `native sh' emulation.
4668 2005-12-01  Paul Eggert  <eggert@cs.ucla.edu>
4670         * doc/autoconf.texi (Shellology): Document eval $? problem
4671         with ash.
4672         (Limitations of Builtins): Likewise.
4674 2005-11-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4676         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Pass
4677         CONFIG_SHELL in the environment of the configure rerun.
4678         * doc/autoconf.texi (Here-Documents, config.status Invocation):
4679         Suggest passing CONFIG_SHELL absolute, and in the environment
4680         rather than as option.
4682 2005-11-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4684         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE):
4685         Fix quoting of output line (triggered for many AC_SUBST_FILEs).
4686         Fix macro quoting.  Fix output for n * 98 substituted variables.
4688 2005-11-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4690         * lib/autoconf/status.m4 (_AC_OUTPUT_MAIN_LOOP): Initialize
4691         `tmp' to avoid file removal race.
4693 2005-11-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4695         * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS): Initialize
4696         ac_clean_files and LIBOBJS.
4698 2005-11-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4700         * lib/autoconf/programs.m4 (AC_CHECK_PROG, AC_PATH_PROG):
4701         Factor functionality to..
4702         (_AC_CHECK_PROG, _AC_PATH_PROG): these new macros, but only
4703         `AC_SUBST($1)' in the public version.
4704         (AC_CHECK_TOOL, AC_PATH_TOOL, AC_PATH_TARGET_TOOL)
4705         (AC_CHECK_TARGET_TOOL): Use internal versions for ac_ct_* and
4706         ac_pt_* variables.
4708 2005-11-01  Stepan Kasal  <kasal@ucw.cz>
4710         * lib/autoconf/c.m4 (AC_PROG_CC_C_O): Remove the comment about 8+3
4711         filesystems.
4713 2005-11-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4715         * NEWS: Move AH_HEADER mention to right place.
4717 2005-10-27  Stepan Kasal  <kasal@ucw.cz>
4719         * lib/autoconf/c.m4 (AC_PROG_CC_C_O): "conftst2" -> "conftest2"
4720         * lib/autoconf/fortran.m4 (_AC_PROG_FC_C_O): Likewise.
4722 2005-10-25  Stepan Kasal  <kasal@ucw.cz>
4724         * lib/autoconf/c.m4 (AC_PROG_CC_C_O): rm -f conftst2.*, not only
4725         conftst2.$ac_objext.
4726         * lib/autoconf/fortran.m4 (_AC_PROG_FC_C_O): Likewise.
4728 2005-10-24  Stepan Kasal  <kasal@ucw.cz>
4730         * lib/autoconf/c.m4 (AC_PROG_CC_C_O): Use conftst2.o instead of
4731         conftest.o, to see whether the compiler really obeys; rm the object
4732         file before and after the test and register it with ac_clean_files.
4733         * lib/autoconf/fortran.m4 (_AC_PROG_FC_C_O): Likewise.
4735 2005-10-21  Stepan Kasal  <kasal@ucw.cz>
4737         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE): When determining,
4738         the delimiter CEOF$ac_eof: fix quoting of CEOF[0-9]* and modify the
4739         code so that the most common case requires less forks.
4741 2005-10-20  Stepan Kasal  <kasal@ucw.cz>
4743         * doc/autoconf.texi (Shell Substitutions}: Document that ${10} is
4744         not portable; thanks to Paul Eggert and Alexandre.
4746         * NEWS: Fix an old typo.
4748 2005-10-20  Jim Meyering  <jim@meyering.net>
4750         * doc/autoconf.texi: Typo: s/feature/features/ in ``the features of
4751         the latter'', in two places.
4753 2005-10-19  Paul Eggert  <eggert@cs.ucla.edu>
4755         * doc/autoconf.texi (Generating Sources): AC_LANG_PROGRAMS ->
4756         AC_LANG_PROGRAM, fixing a typo.  Don't give details about
4757         the inner workings of AC_LANG_FUNC_LINK_TRY.
4758         * lib/autoconf/c.m4 (AC_LANG_CALL(C)): Reformat to match
4759         AC_LANG_FUNC_LINK_TRY.  This involves returning the value returned
4760         by the function rather than ignoring it.
4761         (AC_LANG_FUNC_LINK_TRY(C)): Call the function rather than simply
4762         comparing its address.  Intel's interprocedural optimization was
4763         outsmarting the old heuristic.  Problem reported by
4764         Mikulas Patocka.
4766 2005-10-19  Stepan Kasal  <kasal@ucw.cz>
4768         * lib/autoconf/general.m4 (AC_SUBST): Remove an obsolete comment.
4770 2005-10-05  Paul Eggert  <eggert@cs.ucla.edu>
4772         * lib/m4sugar/m4sugar.m4 (_m4_map): New macro.
4773         (m4_map, m4_map_sep): Use it.  Handle the empty list correctly.
4775 2005-10-04  Stepan Kasal  <kasal@ucw.cz>
4777         * lib/autotest/general.m4 (AT_INIT): Really make the subtree writable
4778         before removing it (chmod -R u+rwx); there are three instances of this.
4780 2005-10-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4781             Stepan Kasal  <kasal@ucw.cz>
4783         * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): Balance parentheses.
4784         * lib/autotest/general.m4 (AT_INIT): If the test dir already exists,
4785         make its content writable before removing it.  Remove an errorneous
4786         comment from the end, where the logs of the failed tests are copied
4787         to the main log file.
4789 2005-09-27  Stepan Kasal  <kasal@ucw.cz>
4791         * tests/semantics.at (AC_C_BIGENDIAN): Pass --force to autoheader,
4792           in case the computer is too quick.  Double quote the configure.ac
4793           snippets.
4795         * tests/local.at (AT_CHECK_AUTOCONF): Always pass --force to prevent
4796           problems if the testsuite were running too fast.
4798 2005-09-18  Paul Eggert  <eggert@cs.ucla.edu>
4800         * lib/autoconf/libs.m4 (_AC_PATH_X_DIRECT): Look for X11/Xlib.h
4801         and XrmInitialize rather than X11/Intrinsic.h and XtMalloc
4802         (which belong to Xt, not X itself).  See Debian bug 327655.
4803         * NEWS: Mention this.
4805 2005-09-07  Stepan Kasal  <kasal@ucw.cz>
4807         * lib/autoconf/c.m4 (AC_LANG_SOURCE(C)): Remove an incorrect comment.
4809 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
4811         * config/move-if-change: Don't output "$2 is unchanged";
4812         suggested by Ben Elliston.  Handle weird characters correctly.
4814 2005-09-06  Stepan Kasal  <kasal@ucw.cz>
4816         * lib/autoconf/libs.m4 (AC_SEARCH_LIBS): Merge the two AC_LINK_IFELSE
4817           calls, so that the final expansion of this macro is shorter.
4818           Create the conftest.$ac_ext outside the `for' loop, to speed the run.
4819           Do not use `break' in the argument to AC_LINK_IFELSE, it would skip
4820           the cleanup there.  Use AS_VAR_* macros, to be more general.
4821         * tests/semantics.at (AC_SEARCH_LIBS): Check for the cleanup.
4823         * lib/autoconf/general.m4: Use AS_IF where appropriate.
4825         * lib/m4sugar/m4sh.m4 (AS_IF): Use m4_default.
4827 2005-09-01  Stepan Kasal  <kasal@ucw.cz>
4829         * doc/autoconf.texi (Configuration Headers): Add an index entry
4830           for AH_HEADER.
4832 2005-08-26  Pavel Roskin  <proski@gnu.org>
4834         * lib/autoconf/libs.m4 (_AC_PATH_X_XMKMF): Use shell variable
4835         XMKMF to locate xmkmf.  Make XMKMF precious.  Export CC when
4836         running xmkmf.
4838 2005-08-26  Paul Eggert  <eggert@cs.ucla.edu>
4840         * lib/m4sugar/m4sh.m4 (_AS_VERSION_COMPARE_PREPARE):
4841         The previous patch didn't work, so try a better one.
4843 2005-08-26  Stepan Kasal  <kasal@ucw.cz>
4845         * doc/autoconf.texi (Programming in M4sh) <AS_TR_CPP>: Fix m4 quoting
4846         in the example.  Reported by Bruno Haible.
4847         <AS_TR_SH>: Likewise.  Also modify the example to be more convincing:
4848         "if $undefined_var;" succeeds with my shell.
4850         * lib/autoconf/general.m4 (AC_CANONICAL_BUILD, AC_CANONICAL_HOST,
4851         AC_CANONICAL_TARGET): Define by AC_DEFUN, no need to use AC_DEFUN_ONCE;
4852         but change the m4_divert_text to m4_divert_once.
4854 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
4856         * lib/m4sugar/m4sh.m4 (_AS_VERSION_COMPARE_PREPARE):
4857         Work around bug in Solaris /usr/xpg4/bin/awk.
4858         The bug is present in at least Solaris 8 through 10.
4860 2005-08-24  Stepan Kasal  <kasal@ucw.cz>
4862         * lib/autoconf/general.m4 (_AC_CANONICAL_SPLIT): Simplify; rejecting
4863         some evil values and relying on the fact that $* concatenates the
4864         parameters by the first character from IFS.
4866 2005-08-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>,
4867             Stepan Kasal  <kasal@ucw.cz>
4869         * lib/autoconf/status.m4 (_AC_CONFIG_REGISTER_DEST): When the
4870         first header appears, define AH_HEADER.
4871         * doc/autoconf.texi (Configuration Headers): Document AH_HEADER.
4872         Update limitations about when to call AC_CONFIG_HEADERS.
4873         (Configuration Commands): Document that AC_CONFIG_COMMANDS_PRE
4874         parameter can call AC_SUBST, AC_DEFINE, or AC_CONFIG_FOOS; explain
4875         that AC_CONFIG_COMMANDS_PRE and AC_CONFIG_COMMANDS_POST are not
4876         ``Configuration Actions''; fix their index entries.
4878         * lib/autotest/general.m4 (AT_INIT): Process multiple keywords
4879         options correctly.  Process N-M as M-N if M is smaller than N.
4880         Process ranges correctly so that N-N will run only N.
4881         Sort and uniquify the tests that will be run.  If there is more
4882         than one test, reinsert the banners for the tests.
4883         * tests/autotest.at (Keywords): Unmark XFAIL.
4885 2005-08-23  Stepan Kasal  <kasal@ucw.cz>
4887         * lib/autoconf/general.m4 (_AC_DEFINE_Q): Strip the parameter list
4888           before passing the macro name to AH_TEMPLATE.
4890         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): config.status
4891           now opens log after option processing; in particular, --version
4892           and --help do not touch config.log.
4894         * Makefile.maint: Revert the change from 2005-08-12.
4896 2005-08-22  Stepan Kasal  <kasal@ucw.cz>
4898         * lib/autoconf/general.m4 (AC_ARG_ENABLE, AC_ARG_WITH): Factor out
4899           common code to...
4900         (_AC_ENABLE_IF, _AC_ENABLE_IF_ACTION): ... these new macros.
4902 2005-08-21  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4904         * doc/autoconf.texi (Using Autotest, testsuite Scripts)
4905         (Autotest Logs, Writing testsuite.at, testsuite Invocation):
4906         Language cleanup.
4908         * doc/autoconf.texi (Defining Symbols, Changed Results):
4909         Prepend to LIBS, not append, in examples.
4911 2005-08-16  Stepan Kasal  <kasal@ucw.cz>
4913         When building in place, set srcdir="."; suggested by Tim Van Holder.
4915         * lib/autoconf/general.m4 (_AC_INIT_SRCDIR): Do this; to recognize
4916           build in place, we need ac_pwd, and thus have to AC_REQUIRE ...
4917         (_AC_INIT_DIRCHECK): ... this macro and AC_DEFUN both of them.
4918         * lib/autoconf/status.m4 (_AC_SRCDIRS): Fix a comment: srcdir="."
4919           does not mean "no --srcdir option".
4921 2005-08-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4923         * tests/autoscan.at (autoscan): New file.
4924         * tests/suite.at: Use it.
4925         * tests/Makefile.am (TESTSUITE_HAND_AT): Add it.
4926         Reported against Libtool by Gideon Go <gideon.go@gmail.com>.
4928         * tests/autotest.at (Keywords): Test keywords combinations.
4930 2005-08-12  Stepan Kasal  <kasal@ucw.cz>
4932         * Makefile.maint (GZIP_ENV): When checking the help text of gzip,
4933           add "2>&1"; gzip 1.2.4 prints help on stderr.
4935 2005-07-27  Stepan Kasal  <kasal@ucw.cz>
4937         * lib/autotest/general.m4 (_AT_DECIDE_TRACEABLE): The symbol at_reason
4938         was pushdef'ed twice while popped only once.  Push it only once.
4939         (_AT_CHECK): Cosmetic changes to the "case $at_status" command.
4941 2005-07-26  Stepan Kasal  <kasal@ucw.cz>
4943         * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): The message is now
4944         prefixed by mere "===", not "configure: === ".
4946 2005-07-25  Paul Eggert  <eggert@cs.ucla.edu>
4948         * Makefile.maint: Update from Bison.
4950         * lib/m4sugar/m4sugar.m4 (m4_strip): Comment fix---change tab to
4951         "<tab>" in comment, so that the point is understandable.
4953 2005-07-25  Stepan Kasal  <kasal@ucw.cz>
4955         Rewrite substantial part of lib/autoconf/status.m4.
4956         The main change is that CONFIG_FILES, CONFIG_HEADERS, CONFIG_LINKS,
4957         and CONFIG_COMMANDS are not processed in four separate loops.
4958         Instead, there is one main loop.  This alows that the common code
4959         is expanded only once, thus config.status (and configure) is smaller.
4961         The registration mechnism in AC_CONFIG_FILES and cousins also changed;
4962         the AC_LIST_FILES and cousins macros are no longer used.
4964         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES, _AC_OUTPUT_HEADERS,
4965         _AC_OUTPUT_LINKS, _AC_OUTPUT_COMMANDS): Renamed to ...
4966         (_AC_OUTPUT_FILE, _AC_OUTPUT_HEADER, _AC_OUTPUT_LINK,
4967         _AC_OUTPUT_COMMAND): ..., respectively.  These macros no longer
4968         contain the initialization, nor the for loop, nor the associated
4969         commands; all these go to ...
4970         (_AC_OUTPUT_MAIN_LOOP): ... this new macro, called from
4971         _AC_OUTPUT_CONFIG_STATUS.
4972         (_AC_CONFIG_SPLIT, _AC_CONFIG_SPLIT_SOURCE_DEST, _AC_CONFIG_SPLIT_FILE_IN):
4973         Nuked; the code was merged into _AC_OUTPUT_MAIN_LOOP.
4974         (_AC_OUTPUT_FILE): The creation of the sed script ...
4975         (AC_OUTPUT): ... and the setup of ac_vpsub goes to ...
4976         (_AC_OUTPUT_FILES_PREPARE): ... a new macro, also called from
4977         _AC_OUTPUT_MAIN_LOOP.
4978         (_AC_CONFIG_FILES, _AC_CONFIG_HEADERS, _AC_CONFIG_LINKS,
4979         _AC_CONFIG_COMMANDS): Use ...
4980         (_AC_CONFIG_FOOS): ... this new macro, which uses these ...
4981         (_AC_CONFIG_REGISTER, _AC_CONFIG_REGISTER_DEST): ... new macros.
4982         (_AC_CONFIG_FILE, _AC_CONFIG_HEADER, _AC_CONFIG_LINK,
4983         _AC_CONFIG_COMMAND, _AC_CONFIG_DEPENDENCIES): No longer needed.
4984         (_AC_CONFIG_DEPENDENCY): Update, it uses these ...
4985         (_AC_CONFIG_DEPENDENCY_DEFAULT, _AC_FILE_DEPENDENCY_TRACE_COLON):
4986         ... new macros.
4987         (_AC_CONFIG_UNIQUE): Update.
4988         (AC_LIST_FILES, AC_LIST_HEADERS, AC_LIST_LINKS, AC_LIST_COMMANDS):
4989         Replaced by this ...
4990         (_AC_LIST_TAGS): ... new common macro.
4991         (AC_LIST_FILE_COMMANDS, AC_LIST_HEADER_COMMANDS, AC_LIST_LINK_COMMANDS,
4992         AC_LIST_COMMAND_COMMANDS): Replaced by this ...
4993         (_AC_LIST_TAG_COMMANDS): ... new common macro.
4994         (_AC_CONFIG_COMMANDS_INIT): Moved top to the `registration' section;
4995         this didn't belong to the `config commands' section.
4996         (_AC_OUTPUT_COMMANDS_INIT): Don't initialize, m4_ifdef is our friend.
4997         (AC_CONFIG_COMMANDS_PRE, AC_OUTPUT_COMMANDS_PRE,
4998         AC_CONFIG_COMMANDS_POST): Moved to a new section, these didn't belong
4999         to the `config commands' section either.
5000         (AC_CONFIG_SUBDIRS): Don't touch diversion DEFAULTS.
5001         (_AC_LIST_SUBDIRS): Don't initialize, m4_ifdef is our friend.
5003         ... and many changes to the comments nearby.
5005         * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS): At the end of the day,
5006         set ac_subdirs_all='_AC_LIST_SUBDIRS'.
5007         * tests/torture.at (AC_CONFIG_FILES, HEADERS, LINKS and COMMANDS):
5008         AC_CONFIG_COMMANDS(command:input,...) is no longer allowed.
5009         (#define header templates): The comment at the top of the generated
5010         header now includes the name(s) of the source file(s).
5012         Several unrelated small changes:
5014         * lib/autoconf/general.m4 (AC_CACHE_VAL): Be didactic, quote the first
5015         parameter to AC_DIAGNOSE.
5016         * lib/autoconf/status.m4 (AC_CONFIG_SUBDIRS): Likewise.
5017         (_AC_LINK_FILES_CNT): Don't AU_DEFUN this; it causes confusing messages
5018         with autoupdate; use m4_define_default inside AU_DEFUNed AC_LINK_FILES.
5019         (AC_OUTPUT): In the compatibility code, use m4_ifvaln, to be consistent
5020         with AU::AC_OUTPUT.
5021         (AU::AC_OUTPUT): Don't double-quote $2 and $3, the compatibility code
5022         in AC_OUTPUT doesn't double-quote it either.
5023         * tests/tools.at (autoupdate): AU::AC_OUTPUT no longer double-quotes the
5024         parameters.
5026 2005-07-10  Stepan Kasal  <kasal@ucw.cz>
5028         * lib/autoconf/fortran.m4 (_AC_PROG_FC_V_OUTPUT): Document which
5029         versions of Portland Group compiler produce single- and double-quoted
5030         -cmdline argument.  Reported by Steven G. Johnson <stevenj@fftw.org>
5031         and Ole Holm Nielsen <Ole.H.Nielsen@fysik.dtu.dk>.
5033 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
5035         * tests/local.at (AT_CONFIG_CMP): Ignore lines like "LIBS=''" too.
5036         This is a corrected version of yesterday's patch.
5038 2005-07-07  Stepan Kasal  <kasal@ucw.cz>
5040         * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): Report the full
5041         path, too; insert a "===" to emphasize the line.
5043         * lib/autoconf/general.m4 (AC_CANONICAL_BUILD): Rename
5044           ac_cv_build_alias to ac_build_alias.
5045         (AC_CANONICAL_HOST, AC_CANONICAL_TARGET): Simplify.
5047         On 2005-02-24, an unintentional AC_SUBST([CC]) was introduced; this
5048         change eliminates it.  Problem reported by Alexandre Duret-Lutz.
5049         * lib/autoconf/general.m4 (_AC_ARG_VAR_PRECIOUS): Move the AC_SUBST ...
5050         (AC_ARG_VAR): ... here.
5051         (_AC_INIT_PREPARE): Call AC_SUBST for build_alias, host_alias and
5052           target_alias.
5054         Keep a list of all precious variables and process them with one simple
5055         for loop, instead of expanding all commands, or, OTOH, complicated
5056         processing of output of "set".
5057         * lib/autoconf/general.m4 (_AC_ARG_VAR_PRECIOUS): Acumulate the
5058         variable names in new macro...
5059         (_AC_PRECIOUS_VARS): ... which will be assigned to ac_precious_vars.
5060         (_AC_ARG_VAR_STORE): New macro which writes to diversion PARSE_ARGS
5061           a loop to assign all ac_env_* and ac_cv_env_* variables.
5062         (_AC_ARG_VAR_VALIDATE): Use shell variable ac_precious_vars, divert
5063           to INIT_PREPARE.
5064         (_AC_INIT_DEFAULTS): At the end, if _AC_PRECIOUS_VARS is set, assign
5065           its value to shell variable ac_precious_vars and call
5066           _AC_ARG_VAR_STORE and _AC_ARG_VAR_VALIDATE.
5067         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Don't call
5068           _AC_ARG_VAR_VALIDATE.
5070         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Move AC_LANG_PUSH(C)
5071           and the AC_SUBSTs ...
5072         (AC_INIT): ... here.
5074         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Changed the title of
5075           the ac_subst_files section in config.log.
5077         * tests/local.at (AT_CONFIG_CMP): Revert Paul's previous change.
5079 2005-07-06  Paul Eggert  <eggert@cs.ucla.edu>
5081         * NEWS: New macro AC_C_TYPEOF.
5082         * doc/autoconf.texi (C Compiler): Document AC_C_TYPEOF.
5083         * lib/autoconf/c.m4 (AC_C_TYPEOF): New macro.
5084         * tests/c.at (C keywords): Test AC_C_TYPEOF.
5086         Fix problems reported by Nicolas Joly.
5087         * tests/base.at (Input/Output): Ignore 'loading site script' chatter.
5088         * tests/local.at (AT_CONFIG_CMP): Ignore lines like "LIBS=''" too.
5089         They are generated by the Tru64 v5.1B shell.
5091 2005-07-05  Stepan Kasal  <kasal@ucw.cz>
5093         Fix my changes from 2005-07-01; reported by Noah Misch.
5094         * lib/autoconf/status.m4 (_AC_CONFIG_DEPENDENCIES): Fix the
5095         description, the macro now accepts only a single tag.
5096         (_AC_CONFIG_UNIQUE): Likewise; s/AC_File/[$1]/
5098         Fix cases when the varsions of Autoconf and Autotest don't match.
5099         Reported by Noah Misch.
5100         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): Set also
5101         at_top_builddir, for compatibility with older autotest.
5102         * lib/autotest/general.m4 (AT_INIT): If at_top_build_prefix
5103         is not set, use at_top_builddir, for compatibility with older
5104         versions of autoconf.
5106 2005-07-04  Paul Eggert  <eggert@cs.ucla.edu>
5108         * bin/autom4te.in ($m4): Catch usages like --nesting-limit=2048.
5109         Problem reported by Patrick Welche.
5111 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
5113         * lib/autoconf/general.m4 (AC_ARG_PROGRAM): Use &, not |, in
5114         sed substitution command, so that we allow | in program prefixes
5115         and program suffixes.  (& is a problem anyway; we're not fixing
5116         that here.)
5117         * lib/autoconf/status.m4 (AC_CONFIG_FILES): Likewise, for
5118         configure_input, top_builddir, srcdir, etc.
5119         * lib/autotest/general.m4 (AT_INIT): Likewise, for
5120         PATH_SEPARATOR in AUTOTEST_PATH.
5122 2005-07-02  Alexandre Duret-Lutz  <adl@gnu.org>
5124         * lib/autoconf/general.m4 (AC_SITE_LOAD): Rewrite the
5125         for loop over config.site files using `set', to allow
5126         directory names containing IFS characters.
5128 2005-07-01  Paul Eggert  <eggert@cs.ucla.edu>
5130         * lib/autoconf/general.m4 (_AC_INIT_DIRCHECK): Remove the tests for
5131         directories with weird names.  Apparently some people like living
5132         on the edge.  However, improve the test that "pwd" actually does
5133         report a name for the working directory.
5134         * NEWS: Remove the claim that we test for funny chars in dir names.
5136 2005-07-01  Stepan Kasal  <kasal@ucw.cz>
5138         * lib/autoconf/general.m4 (AC_FOREACH): Make obsolete; it's
5139         replaced ...
5140         * lib/m4sugar/m4sugar.m4 (m4_foreach_w): ... by this new macro.
5141         * lib/autoconf/status.m4 (_AC_CONFIG_DEPENDENCIES, _AC_CONFIG_UNIQUE):
5142         Now accept a single tag, not whitespace separated list.
5143         (AC_CONFIG_SUBDIRS): Call _AC_CONFIG_UNIQUE in a m4_foreach_w loop.
5145 2005-06-30  Stepan Kasal  <kasal@ucw.cz>
5147         * doc/autoconf.texi (Configuration Headers): Change the explanation
5148         about #include <config.h>.
5149         (Generic Functions): Mention the Gnulib project.
5150         (Limitations of Usual Tools) <sed>: Another minor rephrasing.
5152         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Use a here
5153         document to output the default config_* lists to config.status.
5154         Don't recognize option --file, if the functionality is not there.
5155         Likewise for --header; moreover, recognize --he and --h as shortcuts
5156         for --help in that case.
5158         * lib/autoconf/status.m4: Fix the order of the "sections", so that it
5159         matches the order of execution.  No code changed.
5161 2005-06-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5163         * lib/autoconf/fortran.m4 (_AC_PROG_FC_V_OUTPUT): Fix also for
5164         single-quoted -cmdline argument in Portland Group compiler.
5165         Reported against LAM by Ole Holm Nielsen <Ole.H.Nielsen@fysik.dtu.dk>.
5167 2005-06-30  Alexandre Duret-Lutz  <adl@gnu.org>
5169         * lib/autom4te.in (Automake-preselections): Preselect AC_SUBST_TRACE.
5171 2005-06-29  Stepan Kasal  <kasal@ucw.cz>
5173         * doc/autoconf.texi (File Descriptors): ksh doesn't pass open file
5174         descriptors to child processes; reported by Norman Gray.
5176 2005-06-29  Stepan Kasal  <kasal@ucw.cz>
5178         * lib/autoconf/general.m4 (AC_ARG_VAR): Move next to _AC_ARG_PRECIOUS.
5180         * lib/autoconf/general.m4 (AC_SUBST_TRACE): New macro, to be traced
5181         instead of AC_SUBST; proposed by Alexandre Duret-Lutz.
5182         (AC_SUBST): Call it.
5183         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES): Call AC_SUBST_TRACE for
5184         the directory specific variables; but don't call it for configure_input.
5186 2005-06-28  Derek Price  <derek@ximbiot.com>
5188         * doc/autoconf.texi (Limitations of Usual Tools) <sed>: Reword recent
5189         addition.
5191 2005-06-23  Paul Eggert  <eggert@cs.ucla.edu>
5193         * NEWS: Don't worry about spaces in bindir etc.  Only srcdir and working
5194         directory have inherent problems with special characters like spaces,
5195         due to limitations in Make syntax.  Problem reported by Alexandre
5196         Duret-Lutz.
5197         * lib/autoconf/general.m4 (_AC_INIT_DIRCHECK): Implement the above.
5198         Also, fix Tru64 porting problem with shell patterns,
5199         reported by Ralf Wildenhues.
5201 2005-06-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5203         * doc/autoconf.texi (Subdirectories): Fix markup typos.
5205 2005-06-23  Paul Eggert  <eggert@cs.ucla.edu>
5207         * tests/local.at (AT_CHECK_ENV): Simplify regexp slightly.
5209         Fix some more shell quoting problems.  Prompted by a bug report
5210         from Justace Clutter.
5211         * lib/autoconf/general.m4 (_AC_INIT_DIRCHECK): Put name of invalid
5212         variable into diagnostic.  Make the diagnostic an error, not a warning,
5213         because we really don't support spaces and suchlike in dir names.
5214         (_AC_INIT_SRCDIR): Allow special characters in $ac_unique_file.
5215         Don't worry about backslashes in srcdir; it can't happen now.
5216         (_AC_INIT_PARSE_ARGS): Allow weird characters in ac_optarg.
5217         Simplify ac_optarg handling.
5218         (_AC_ARG_VAR_VALIDATE): Remove unnecessary and inconsistent quotes.
5220 2005-06-22  Stepan Kasal  <kasal@ucw.cz>
5222         Fix AT_CONFIG_CMP for Solaris hosts; idea from Ralf Menzel.
5223         * configure.ac: Call AC_PROG_EGREP and AC_PROG_SED.
5224         * tests/atlocal.in: Propagate $EGREP and $SED.
5225         * tests/local.at (AT_CHECK_ENV): Use $EGREP, not $GREP -E.
5226         (AT_CONFIG_CMP): Use sed instead of grep plumbing.
5228         * doc/autoconf.texi (Limitations of Usual Tools) <grep>: Mention
5229         that '\|' is not allowed in BREs; recommend using newline separated
5230         list of patterns instead of multiple -e options.
5232         * lib/autoconf/fortran.m4 (_AC_PROG_FC_V_OUTPUT): Remove an old comment.
5234         * lib/autoconf/general.m4 (_AC_CANONICAL_SPLIT): Use AC_SUBST/2.
5236 2005-06-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5238         * lib/autoconf/general.m4 (_AC_CANONICAL_SPLIT): Fix typo.
5240 2005-06-21  Stepan Kasal  <kasal@ucw.cz>
5242         * doc/autoconf.texi (Limitations of Usual Tools) <sed>: Document that
5243         b, t, r, w commands require single space, while : cannot have any.
5244         (Special Shell Variables): Fix sed code this in the example.
5245         * lib/autoconf/status.m4 (_AC_OUTPUT_HEADERS): Likewise; and fix a typo.
5246         * lib/autotest/general.m4 (AT_ARG_OPTION): Fix typo in the description.
5248         * lib/m4sugar/m4sugar.m4 (m4_split): If the parameter is empty,
5249         expand to the empty list.  Don't use two pairs of m4_changequote,
5250         it's not necessary.
5252 2005-06-20  Derek Price  <derek@ximbiot.com>
5254         * lib/m4/programs.m4 (AC_PROG_YACC): Declare YACC & YFLAGS precious.
5256 2005-06-17  Paul Eggert  <eggert@cs.ucla.edu>
5258         * lib/m4sugar/m4sh.m4 (as_awk_strverscmp): Port to Solaris /bin/awk.
5259         * doc/autoconf.texi:
5260         Don't mention Solaris versions so much, if a
5261         problem is common to all extant versions of Solaris.  Say "SunOS
5262         4" instead of "SunOS" for SunOS 4.
5263         (awk): Mention more of the limitations of traditional Awk.
5264         (cat): Don't talk about cat -v.
5266 2005-06-16  Paul Eggert  <eggert@cs.ucla.edu>
5268         * lib/m4sugar/m4sh.m4 (_AS_VERSION_COMPARE_PREPARE): New macro.
5269         (AS_VERSION_COMPARE): New macro.  The API is taken from CVS,
5270         but the implementation is entirely different and is designed
5271         to be compatible with glibc strverscmp.
5272         * tests/m4sh.at (AS_VERSION_COMPARE): New test.
5274         * doc/autoconf.texi (Limitations of Usual Tools): Mention expr bug
5275         on Mac OS X 10.4 reported by Peter O'Gorman in:
5276         http://lists.gnu.org/archive/html/autoconf-patches/2005-06/msg00041.html
5277         * lib/autoconf/general.m4 (_AC_CANONICAL_SPLIT):
5278         Use shell builtins rather than 'expr', to work around expr bug.
5280 2005-06-10  Paul Eggert  <eggert@cs.ucla.edu>
5282         * doc/autoconf.texi: "filesystem" -> "file system".
5283         "behaviour" -> "behavior".
5284         Warn about \(...\)* in Solaris sed (written by Ralf Menzel).
5285         * lib/autoconf/general.m4: Omit blank after ":" sed command,
5286         as per POSIX.
5287         * lib/m4sugar/m4sh.m4: Likewise.
5288         * lib/autoconf/status.m4 (_AC_OUTPUT_HEADERS): Work around problem
5289         with Solaris sed.  Fix by Ralf Menzel and Stepan Kasal.
5291         * man/Makefile.am (MOSTLYCLEANFILES): Add $(srcdir)/*.t.
5292         (.x.1): Ignore the time stamp in the .TH line when deciding whether
5293         to update the man page.  That way, we don't have to check in new
5294         man pages every month.
5296         * lib/m4sugar/m4sh.m4 (AS_VAR_TEST_SET): Work even if $1 contains
5297         quotes and backslashes.  Patch from Derek Price.
5299 2005-06-10  Derek Price  <derek@ximbiot.com>
5301         * doc/autoconf.texi (Programming in M4sh): Document AS_TR_CPP &
5302         AS_TR_SH.
5304 2005-06-08  Paul Eggert  <eggert@cs.ucla.edu>
5306         * lib/autotest/general.m4 (AT_INIT): Don't accept Solaris 9's diff
5307         -u, since it outputs chatter if the input files are the same.
5308         Problem reported by Ralf Menzel.
5310 2005-06-08  Derek Price  <derek@ximbiot.com>
5312         * lib/m4sugar/m4sugar.m4: Undefine include & sinclude rather than
5313         renaming them since they are about to be redefined anyhow.
5315 2005-06-08  Derek Price  <derek@ximbiot.com>
5317         * doc/autoconf.texi (Redefined M4 Macros): Add index entries for most
5318         redefined M4 macros to this node.  Document m4_include & m4_sinclude.
5319         Move m4_undefine to alphabetical order.
5321 2005-06-07  Paul Eggert  <eggert@cs.ucla.edu>
5323         * README: Recommend GNU M4 1.4.3 or later.
5324         * doc/autoconf.texi (Introduction): Likewise.
5325         Reword to avoid some formatting glitches.
5326         Use "#!/bin/sh", not "#! /bin/sh"; the space isn't needed these days.
5327         Clarify explanation of HP compiler bug.
5328         Redo example output tp match current CVS snapshot.
5329         Use @example.org in email addresses when the examples
5330         might get inadvertently cut-and-pasted into user code.
5331         Remove example of autom4te usage that doesn't seem to work now.
5332         Use modern AC_INIT (except when the example is meant to be
5333         shown with Autoconf 2.13).
5334         Update ksh info for Solaris 9 and later.
5335         KB -> kB.
5336         Modernize description of Automake versions a bit.
5337         Don't claim a future version of Autoconf is near.
5338         * doc/install.texi: Reword to avoid some formatting glitches.
5340 2005-06-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5342         * doc/autoconf.texi: Add [] to examples, so that the manual
5343         follows its own advice about quoting better.
5344         Reword to avoid some formatting glitches.
5345         * doc/installt.exi: Reword to avoid some formatting glitches.
5347         * doc/autoconf.texi (Limitations of Builtins) <case>: Mention
5348         Tru64 ksh pattern matching bug.  Reported against Libtool by
5349         Albert Chin <libtool@mlists.thewrittenword.com> and
5350         Nicolas Joly <njoly@pasteur.fr>.
5352 2005-06-06  Stepan Kasal  <kasal@ucw.cz>
5354         m4_cdr of one-member list was [[]] (one-member list containing an
5355         empty string) instead of [] (an empty list.  Callers were skewed to
5356         match this misbehaviour.  As a consequence of this:
5357          - m4_foreach([x], [], [foo]) expanded to `foo', while
5358          - the expansion of m4_foreach([x], [[]], [foo]) was empty.
5359         This bug has been fixed:
5361         * lib/m4sugar/m4sugar.m4 (m4_cdr): If only one argument is given,
5362           expand to an empty string; print error msg if called without
5363           an argument list.
5364         (m4_foreach, m4_map, m4_map_sep): Don't expect the previous
5365           misbehaviour; handle [] and [[]] correctly.
5367 2005-06-06  Stepan Kasal  <kasal@ucw.cz>
5369         * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS): Nuke ac_max_here_lines.
5370         * lib/autoconf/status.m4 (_AC_OUTPUT_HEADERS): Simplify the sed
5371           scripts created and the loop applying them, use _AC_SED_CMD_LIMIT.
5373 2005-06-06  Ralf Menzel <menzel@ls6.cs.uni-dortmund.de>  (trivial change)
5375         * doc/autoconf.texi (Limitations of Usual Tools): Solaris' awk cannot
5376           swallow records with more than 99 fields.
5377         * lib/autotest/general.m4 (AT_INIT): Use the awk builtin `split' to
5378           parse the long line.
5380 2005-06-04  Stepan Kasal  <kasal@ucw.cz>
5382         * doc/autoconf.texi (Limitations of Usual Tools): AIX awk cannot
5383           swallow literals longer than 399.  Reported by Ralf Wildenhues.
5384         * lib/autotest/general.m4 (AT_INIT): Pass $at_groups though stdin,
5385           to workaround this limitation.
5387 2005-06-03  Steven G. Johnson  <stevenj@alum.mit.edu>
5389         * lib/autoconf/fortran.m4 (_AC_PROG_FC): Find g95 in addition
5390         to gfortran, and make these the first two compiler names
5391         checked (following the general autoconf preference for gcc).
5393 2005-06-03  Stepan Kasal  <kasal@ucw.cz>
5395         * tests/Makefile.am (check_SCRIPTS): Set to $(wrappers).
5396         (DISTCLEANFILES): Remove $(check_SCRIPTS).
5397         (testsuite): Make sure autotest.m4f is up-to-date before using it.
5399 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
5401         * lib/autotest/general.m4 (AT_INIT): Don't create a regular
5402         expression of unbounded size when processing the --list
5403         option.  This runs afoul of a limit of 399 bytes per regular
5404         expression on AIX.  Problem reported by Ralf Wildenhues.
5406 2005-06-01  Paul Eggert  <eggert@cs.ucla.edu>
5408         * NEWS: Note yesterday's changes to AC_SUBST and AC_SUBST_FILE.
5409         * doc/autoconf.texi (Particular Headers): Reword example
5410         for multiline stdbool replacement.
5411         (Setting Output Variables): Reword text a bit.  Don't
5412         give all the details about |#_!!_#|.
5413         Reword description of line replacement.
5415 2005-05-31  Dan Manthey  <dan_manthey@partech.com>
5417         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES): Output variables may
5418         now contain newlines, and substituted files must be referenced on
5419         a line alone; the sed scripts to substitute them are now very
5420         different.
5421         (_AC_SED_CMD_LIMIT): Added; single place to store limit on how many
5422         commands can be put in a sed script portably.
5423         * doc/autoconf.texi (Setting Output Variables): Document above
5424         changes.  (Particular Header Checks) <AC_HEADER_STDBOOL>: Give exaple
5425         use of multiline substitution.
5426         * tests/torture.at: No longer expect substitution of newline to fail.
5428 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
5430         * lib/m4sugar/m4sh.m4 (_AS_SHELL_FN_WORK): Fix diagnostics.
5431         From Ralf Menzel (trivial change).
5433 2005-05-25  Paul Eggert  <eggert@cs.ucla.edu>
5435         * tests/local.at: Don't attempt to check for negated character
5436         classes in shell scripts.  The test was too brittle.
5438 2005-05-25  Stepan Kasal  <kasal@ucw.cz>
5440         * bin/autoconf.as: Don't use "shift 2"; it's not portable enough.
5441         * doc/autoconf.texi (Limitations of Builtins): Document this
5442           limitation.
5444 2005-05-24  Stepan Kasal  <kasal@ucw.cz>
5446         * lib/m4sugar/m4sh.m4 (_AS_ECHO_LOG): New macro to factor out
5447           common code; used in many places in the tree.
5448         (AS_ESCAPE): Make the pattern a bit simpler; use \& insetad of \1.
5449         (_AS_ECHO_UNQUOTED): Move the macro lower; no code change.
5451         * lib/m4sugar/m4sugar.m4 (m4_ifset): Use m4_ifval.
5453         * lib/autoconf/general.m4 (_AC_INIT_SRCDIR): Merge the two error
5454           messages when ac_unique_file is not found.
5455         (AC_CONFIG_MACRO_DIR): Simplify the `if' at the end.
5456         (AC_MSG_CHECKING, AC_MSG_RESULT): Put braces around the two echo
5457           commands, for consistency with AC_MSG_ERROR and such.
5459         * bin/autoconf.as: Make more use of "shift 2" in option processing.
5461         * bin/Makefile.am: Merge the two rules for creating scripts.
5463 2005-05-23  Stepan Kasal  <kasal@ucw.cz>
5465         * lib/autoconf/general.m4 (AC_MSG_RESULT_UNQUOTED): Make
5466         obsolete; it was never documented.
5467         (AC_CACHE_CHECK): Use AC_MSG_RESULT instead.
5469 2005-05-20  Stepan Kasal  <kasal@ucw.cz>
5471         * NEWS: @top_builddir@ is now a dirname, ac_top_builddir will follow.
5472         * lib/autoconf/status.m4 (_AC_SRCDIRS): Rename ...
5473         (ac_top_builddir): ... this ...
5474         (ac_top_build_prefix): ... to this; the old name is also kept, for
5475           backward compatibility.
5476         (ac_top_builddir_sub): New variable, without the trailing slash,
5477           always nonempty.
5478         (_AC_OUTPUT_FILES): s/@top_builddir@/$ac_top_builddir_sub/
5479         * doc/autoconf.texi (Configuration Actions): Rename
5480           ac_top_builddir to ac_top_build_prefix.
5481         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): Rename
5482           at_top_builddir to at_top_build_prefix.
5483         * lib/autotest/general.m4 (AT_INIT): Likewise.
5485 2005-05-20  Stepan Kasal  <kasal@ucw.cz>
5487         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Simplify the init
5488           of confdefs.h .
5490 2005-05-17  Stepan Kasal  <kasal@ucw.cz>
5492         * lib/m4sugar/m4sugar.m4 (m4_text_wrap): Don't m4_quote the second
5493           argument to m4_foreach.  I guess it was necessary in the past,
5494           but I think it's a no-op now.
5496 2005-05-17  Stepan Kasal  <kasal@ucw.cz>
5498         * lib/autoconf/general.m4 (_AC_INIT_HELP): Merge two consecutive
5499           ``cat <<_ACEOF'' commands to one.
5500         (_AC_CANONICAL_SPLIT): Use expr, not ``echo|sed.''
5501         * lib/autoconf/status.m4: On various places, use expr instead of
5502           ``echo|sed.''
5503         (_AC_CONFIG_SPLIT, _AC_CONFIG_SPLIT_SOURCE_DEST):
5504         (_AC_CONFIG_SPLIT_FILE_IN): New macros, to factor out common code.
5505         * lib/autotest/general.m4 (AT_INIT): Use expr to get the numbers from
5506           a range.
5507         * tests/local.at (AT_CHECK_SHELL_SYNTAX): Use awk to search for
5508           the wrong patterns between ``case'' and ``esac.''  The previous
5509           code had false positives.
5511 2005-05-14  Alexandre Duret-Lutz  <adl@gnu.org>
5513         * lib/autoconf/functions.m4 (_AC_LIBOBJ_ALLOCA): Prepend ${LIBOBJDIR},
5514         as on 2005-05-02.
5515         * doc/autoconf.texi (Particular Functions) <AC_FUNC_ALLOCA>:
5516         Mention LIBOBJDIR.
5518 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
5520         * AUTHORS, BUGS, COPYING, ChangeLog, ChangeLog.0, ChangeLog.1,
5521         ChangeLog.2, GNUmakefile, Makefile.am, Makefile.cfg,
5522         Makefile.maint, NEWS, README, README-alpha, TODO, configure.ac,
5523         bin/Makefile.am, bin/autoconf.as, bin/autoheader.in,
5524         bin/autom4te.in, bin/autoreconf.in, bin/autoscan.in,
5525         bin/autoupdate.in, bin/ifnames.in, config/Makefile.am,
5526         config/config.guess, config/config.sub, config/elisp-comp,
5527         config/m4.m4, config/mdate-sh, config/missing, config/texinfo.tex,
5528         doc/Makefile.am, doc/fdl.texi, lib/Makefile.am, lib/autom4te.in,
5529         lib/freeze.mk, lib/Autom4te/C4che.pm, lib/Autom4te/ChannelDefs.pm,
5530         lib/Autom4te/Channels.pm, lib/Autom4te/Configure_ac.pm,
5531         lib/Autom4te/FileUtils.pm, lib/Autom4te/General.pm,
5532         lib/Autom4te/Request.pm, lib/Autom4te/Struct.pm,
5533         lib/Autom4te/XFile.pm, lib/autoconf/Makefile.am,
5534         lib/autoconf/autoconf.m4, lib/autoconf/autoheader.m4,
5535         lib/autoconf/autoscan.m4, lib/autoconf/autotest.m4,
5536         lib/autoconf/autoupdate.m4, lib/autoconf/c.m4,
5537         lib/autoconf/fortran.m4, lib/autoconf/functions.m4,
5538         lib/autoconf/general.m4, lib/autoconf/headers.m4,
5539         lib/autoconf/lang.m4, lib/autoconf/libs.m4,
5540         lib/autoconf/oldnames.m4, lib/autoconf/programs.m4,
5541         lib/autoconf/specific.m4, lib/autoconf/status.m4,
5542         lib/autoconf/types.m4, lib/autoscan/Makefile.am,
5543         lib/autoscan/autoscan.list, lib/autoscan/autoscan.pre,
5544         lib/autotest/Makefile.am, lib/autotest/autotest.m4,
5545         lib/autotest/general.m4, lib/emacs/Makefile.am,
5546         lib/emacs/autoconf-mode.el, lib/emacs/autotest-mode.el,
5547         lib/m4sugar/Makefile.am, lib/m4sugar/m4sh.m4,
5548         lib/m4sugar/m4sugar.m4, man/Makefile.am, tests/Makefile.am,
5549         tests/atlocal.in, tests/autotest.at, tests/base.at, tests/c.at,
5550         tests/compile.at, tests/foreign.at, tests/fortran.at,
5551         tests/local.at, tests/m4sh.at, tests/m4sugar.at, tests/mktests.sh,
5552         tests/semantics.at, tests/suite.at, tests/tools.at,
5553         tests/torture.at, tests/wrapper.as:
5554         Update FSF postal mail address.
5556 2005-05-13  Stepan Kasal  <kasal@ucw.cz>
5558         * lib/autoconf/general.m4 (AC_CONFIG_LIBOBJ_DIR): Remove the broken
5559           check.
5560         * lib/m4sugar/m4sugar.m4 (m4_bmatch): Halt with error if we don't get
5561           enough arguments, similarly as in m4_bpatsubsts.
5563 2005-05-12  Stepan Kasal  <kasal@ucw.cz>
5565         * lib/autoconf/status.m4 (_AC_SRCDIRS): Simplify the computation
5566           of absolute paths.
5568 2005-05-11  Stepan Kasal  <kasal@ucw.cz>
5570         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ARGS): Make the check
5571           for absolute directory names in one loop.
5572         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Handle
5573           abbreviations of --version and --debug.
5575 2005-05-10  Paul Eggert  <eggert@cs.ucla.edu>
5577         * doc/autoconf.texi (Autoconf Language): Be more precise about
5578         quoting rules.  Problems noted by Stepan Kasal.
5579         Also, throughout this document, be more careful about white space.
5580         "blank", "white space", and "space" all have different meanings
5581         and we should be careful to say what we mean.
5583 2005-05-05  Paul Eggert  <eggert@cs.ucla.edu>
5585         Fix C++ related problems reported by Werner Lemberg.
5586         * doc/autoconf.texi (C++ Compiler): Mention .cpp extension.
5587         * lib/autoconf/c.m4 (AC_LANG(C++)): Set ac_ext to .cpp, not .cc.
5588         * lib/autoconf/types.m4 (AC_TYPE_SIGNAL): Simplify test, to
5589         avoid problems with C++ and throw.
5590         * tests/compile.at: .cpp, not .cc.
5592         * tests/semantics.at: Prepend LIBOBJDIR, as per 2005-05-02 change.
5594 2005-05-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5596         * doc/autoconf.texi (Generic Functions): Typos.
5598 2005-05-02  Gary V. Vaughan  <gary@gnu.org>
5600         * lib/autoconf/general.m4 (_AC_LIBOBJS_NORMALIZE): Prepend each
5601         object named in LIBOBJS and LTLIBOBJS with the ${LIBOBJDIR}, as
5602         set by latest automake.
5604 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
5606         * doc/autoconf.texi (Limitations of Usual Tools): "expr '' \| ''"
5607         outputs 0 on GNU/Linux these days.
5609 2005-04-29  Paul Eggert  <eggert@cs.ucla.edu>
5611         * doc/autoconf.texi (Autoconf Language): Add more description
5612         about quoting heuristics.
5613         (Limitations of Builtins): Describe "set -" problems.
5615 2005-04-29  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5617         * lib/autotest/general.m4 (AT_KEYWORDS): Separate by space,
5618         not newline.
5620         * doc/autoconf.texi (External Software): Replace AC_DEFINE_UNQUOTED
5621         by AC_DEFINE; it was a mistake.
5622         From bug reported against libtool by Dalibor Topic <robilad@kaffe.org>.
5624 2005-04-25  Stepan Kasal  <kasal@ucw.cz>
5626         * lib/autoconf/status.m4 (_AC_OUTPUT_HEADERS): A tiny optimization.
5628 2005-04-22  Stepan Kasal  <kasal@ucw.cz>
5630         * doc/autoconf.texi (External Software): Quadrigraphs are not
5631           processed correctly in AS_HELP_STRING; avoid this in the examples.
5632         * lib/m4sugar/m4sh.m4 (AS_HELP_STRING): Add a FIXME about quadrigraphs.
5633         * lib/m4sugar/m4sugar.m4 (m4_text_wrap): Likewise; and rephrase the
5634           comment and reduce m4_default([foo], []) to [foo].
5635         (m4_strip): Update the explanation.
5637 2005-04-19  Paul Eggert  <eggert@cs.ucla.edu>
5639         * lib/autoconf/general.m4 (_AC_INIT_PREPARE, _AC_RUN_IFELSE):
5640         Remove core.conftest.* too; it's generated by Tru64 5.1.
5641         Problem reported by Jennis Pruett.
5642         * lib/autoconf/functions.m4
5643         (AC_FUNC_SETVBUF_REVERSED, AC_FUNC_UTIME_NULL):
5644         Don't bother to remove core files; AC_RUN_IFELSE should do that
5645         for you.
5647 2005-04-19  Stepan Kasal  <kasal@ucw.cz>
5649         * lib/m4sugar/m4sugar.m4 (m4_bpatsubsts): Add the b- to comment, too.
5651 2005-04-19  Alexandre Duret-Lutz  <adl@gnu.org>
5653         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ARGS): Handle --docdir.
5654         Report from Horst Wente.
5656 2005-04-15  Stepan Kasal  <kasal@ucw.cz>
5658         * lib/autoconf/general.m4 (_AC_ARG_VAR_VALIDATE): Fixed a typo in
5659           the comment.
5661 2005-04-14  Gregorio Guidi  <greg_g@gentoo.org>
5663         * doc/autoconf.texi (External Software, Package Options): Add
5664           examples showing how to implement --with-* and --enable-* options.
5666 2005-04-13  Paul Eggert  <eggert@cs.ucla.edu>
5668         * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): Look for configure.ac
5669         as well as configure.in.  Problem reported by Gregorio Guidi.
5671 2005-04-10  Paul Eggert  <eggert@cs.ucla.edu>
5673         * doc/autoconf.texi (Particular Functions): Use gnulib's current
5674         pattern for alloca snippet.
5676 2005-04-04  Stepan Kasal  <kasal@ucw.cz>
5678         * lib/autotest/general.m4 (_AT_DECIDE_TRACEABLE): Fix a typo.
5680 2005-04-01  Stepan Kasal  <kasal@ucw.cz>
5682         * doc/autoconf.texi (Generic Programs): Fix a typo.
5684 2005-04-01  Paul Eggert  <eggert@cs.ucla.edu>
5686         * lib/autotest/general.m4 (AT_INIT): Don't assume that "date +%s"
5687         fails if %s isn't supported.  Problem reported by Ralf Wildenhues.
5689 2005-03-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5691         * lib/autoconf/fortran.m4 (_AC_FC_LIBRARY_LDFLAGS):
5692         Merge `-z option' as well for the benefit of Solaris link flags.  Pass
5693         whole-archive (-zallextract, -zdefaultextract) options in the hope of
5694         unique libraries, for the Sun Fortran 95 8.0 compiler.  Bug reported
5695         against Libtool by Yury Puhalsky <pooh@cryptopro.ru>.
5697 2005-03-22  Paul Eggert  <eggert@cs.ucla.edu>
5699         * NEWS: The configure command now warns you if you attempt to use
5700         a directory whose name contains a special character like space,
5701         newline, or "\".
5702         * doc/autoconf.texi (Installation Directory Variables): Allow
5703         "," in file names.  Do not use \@; it's not a portable regexp.
5704         * bin/Makefile.am (edit): Likewise.
5705         * lib/Makefile.am (edit): Likewise.
5706         * tests/Makefile.am (edit): Likewise.
5707         * tests/semantics.at: Likewise.
5708         * tests/torture.at: Likewise.
5709         * lib/autoconf/general.m4 (AC_ARG_PROGRAM): Likewise.
5710         * lib/autoconf/status.m4 (_AC_SRCDIRS): Likewise.
5711         * doc/autoconf.texi (File System Conventions): Warn about
5712         unportable file names.
5713         * lib/autoconf/general.m4 (_AC_INIT_DIRCHECK): New macro.
5714         (AC_INIT): Use it.
5715         (_AC_INIT_SRCDIR): Use ac_pwd rather than invoking pwd.
5716         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Propagate
5717         ac_pwd, and quote srcdir.
5718         * lib/autotest/general.m4 (AT_INIT): Quote file name args.
5720         * doc/autoconf.texi: Fix some systematic formatting problems.
5721         ".)"  needs a following @: if not at the end of a sentence, and
5722         similarly for "!)".  "etc." should be preceded by a comma.
5723         "n-th" -> "@var{n}th".  pdksh is still buggy, so update its date.
5725 2005-03-22  Bruno Haible  <bruno@clisp.org>
5727         * doc/autoconf.texi (Input): Mention that AC_CONFIG_AUX_DIR's
5728         argument is often called 'build-aux'.
5730 2005-03-07  Stepan Kasal  <kasal@ucw.cz>
5732         * doc/autoconf.texi (Quotation Rule Of Thumb): Mention that the
5733           macro AC_TRY_LINK is obsolete.
5734         (Installation Directory Variables): Change `AC_OUTPUT_FILES' to
5735           `AC_CONFIG_FILES'.
5737 2005-02-24  Stepan Kasal  <kasal@ucw.cz>
5739         * lib/autoconf/c.m4 (AC_PROG_CC): Be more careful to skip
5740           `/usr/ucb/cc'; use `cl.exe' to distinguish the MS compiler
5741           from a Common Lisp's `cl'.
5742         (AC_PROG_CXX): Behave according to the documentation: don't
5743           search for $ac_tool_prefix$CCC and $CCC, just set CXX=$CCC;
5744           make the variable CCC precious; use `cl.exe', not `cl'.
5746 2005-02-23  Paul Eggert  <eggert@cs.ucla.edu>
5747             Alexandre Duret-Lutz  <adl@gnu.org>
5749         * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS): Redirect stdin from
5750         /dev/null, as "configure" shouldn't read stdin, and this insulates
5751         us from problems (e.g., when testing for "cl").  Also, do this
5752         redirection before invoking "hostname" or "uname", and keep the
5753         original input stream available via...
5754         (AS_ORIGINAL_STDIN_FD): ... this new macro.
5755         (_AC_PREPROC_IFELSE, _AC_COMPILE_IFELSE, _AC_LINK_IFELSE): Don't
5756         bother with "</dev/null" since it's now done at the top of
5757         'configure'.
5758         * lib/autoconf/c.m4 (AC_PROG_CC, AC_PROG_CXX): Likewise.
5759         * lib/autoconf/fortran.m4 (_AC_PROG_FC): Likewise.
5760         * lib/autoconf/programs.m4 (_AC_PATH_PROG_FLAVOR_GNU): Likewise.
5761         * doc/autoconf.texi (File Descriptor Macros): New section.
5762         (Printing Messages): Mention it.
5763         * tests/base.at (Input/Output): New test.
5765 2005-02-23  Paul Eggert  <eggert@cs.ucla.edu>
5767         * lib/m4sugar/m4sh.m4 (_AS_ECHO_N_PREPARE): Don't set ECHO_C to
5768         newline if neither \c nor -n work, as that would output two
5769         newlines.  Prefer -n to \c.  Reported by Stepan Kasal.
5771 2005-02-12  Stepan Kasal  <kasal@ucw.cz>
5773         * lib/m4sugar/m4sh.m4 (AS_IF): Define by m4_defun, not m4_define.
5774         This causes that any required macros inside will get before the if.
5775         * doc/autoconf.texi (autom4te.cache): A typo.
5777 2005-02-12  Paul Eggert  <eggert@cs.ucla.edu>
5779         Undo previous change, except keep the change to
5780         lib/autoconf/programs.m4 that replaced grep with shell
5781         pattern-matching.  This is because net-snmp configure reads stdin.
5782         Reported by Noah Misch.
5784 2005-02-11  Paul Eggert  <eggert@cs.ucla.edu>
5786         * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS): Redirect stdin
5787         from /dev/null, as "configure" shouldn't read stdin, and this
5788         insulates us from problems (e.g., when testing for "cl").
5789         Suggested by Alexandre Duret-Lutz.  Also, do this redirection
5790         before invoking "hostname" or "uname".
5791         (_AC_PREPROC_IFELSE, _AC_COMPILE_IFELSE,
5792         _AC_LINK_IFELSE): Undo previous change, as it's no longer needed.
5793         * lib/autoconf/c.m4 (AC_PROG_CC, AC_PROG_CXX): Don't bother with
5794         "</dev/null" since it's now done at the top of 'configure'.
5795         * lib/autoconf/fortran.m4 (_AC_PROG_FC): Likewise.
5796         * lib/autoconf/programs.m4 (_AC_PATH_PROG_FLAVOR_GNU): Likewise.
5797         Also, replace grep with shell pattern-matching, to save a process.
5799 2005-02-10  Paul Eggert  <eggert@cs.ucla.edu>
5801         * lib/autoconf/general.m4 (_AC_PREPROC_IFELSE, _AC_COMPILE_IFELSE,
5802         _AC_LINK_IFELSE): Redirect stdin to /dev/null, in an attempt to
5803         avoid thinking that Allegro Common Lisp's "cl" command is a C++
5804         compiler.
5806 2005-02-09  Paul Eggert  <eggert@cs.ucla.edu>
5808         * doc/autoconf.texi (Limitations of Usual Tools): Document that
5809         grep -q isn't portable.  Improve grep -s explanation.
5810         Problem reported by Dan Manthey.
5812 2005-02-08  Paul Eggert  <eggert@cs.ucla.edu>
5814         * doc/autoconf.texi (Special Shell Variables): Clarify
5815         PATH_SEPARATOR wording; fix typo in IFS.  Reported by Gary V. Vaughan.
5817 2005-02-07  Paul Eggert  <eggert@cs.ucla.edu>
5819         * doc/autoconf.texi: Use @acronym for DJGPP.
5820         Fix some @code's that should have been @env's, and vice versa.
5821         Sort environment variable names.
5822         Mention that shells no longer inherit IFS.
5823         Don't recommend PATH_SEPARATOR=';' so strongly.
5824         Mention that $RANDOM might expand to the empty string.
5825         "symlink" and "soft link" -> "symbolic link".
5826         Improve mktemp description (reported by Bruno Haible).
5828 2005-02-05  Paul Eggert  <eggert@cs.ucla.edu>
5830         * tests/foreign.at (Libtool): Don't overquote AT_SETUP arg.
5831         * tests/m4sh.at (AS_DIRNAME, AS_BASENAME, AS_MKDIR_P, AS_HELP_STRING):
5832         Likewise.
5833         * tests/semantics.at (AC_C_BIGENDIAN, AC_PATH_PROG & AC_PATH_PROGS):
5834         Likewise.
5836 2005-02-04  Paul Eggert  <eggert@cs.ucla.edu>
5838         * NEWS: Mention AT_COPYRIGHT.
5840         * tests/local.at (AT_CMP): Use diff directly on input files rather
5841         than copying them.
5843         * lib/autoconf/programs.m4 (AC_PROG_SED): Don't look in
5844         /usr/xpg4/bin since that sed dumps core (at least on Solaris 8).
5846 2005-02-04  Noah Misch  <noah@cs.caltech.edu>
5847         and Paul Eggert  <eggert@cs.ucla.edu>
5849         * tests/autotest.at (Empty test suite): New test.
5850         * tests/torture.at (Substitute and define special characters)
5851         (Substitute a 2000-byte string, Define to a 2000-byte string)
5852         (Substitute a newline, Define a newline): New tests.
5854 2005-02-04  Noah Misch  <noah@cs.caltech.edu>
5856         * lib/m4sugar/m4sugar.m4 (m4_re_string, m4_re_word): Revert 2002-03-04.
5857         * tests/local.at (AT_CHECK_M4SUGAR): Add `m4sugar' to keywords.
5858         (AT_CHECK_ENV): Ignore LTLIBOBJS, FC variables, EGREP, FGREP, and SED.
5859         * tests/m4sugar.at (AT_CHECK_M4SUGAR_TEXT, AT_CHECK_M4RE): New macros.
5860         (Standard regular expressions): New test.
5861         (m4_warn, m4_require: circular dependencies, m4_text_wrap): Strip
5862         excess test name quoting.
5863         * tests/semantics.at (AC_CHECK_HEADERS_OLD, AC_CHECK_HEADERS_NEW): Pass
5864         CPPFLAGS to `configure' instead of setting it in `configure'.
5866         * lib/m4sugar/m4sh.m4 (AS_UNAME): Try only /usr/bin/hostinfo, not
5867         any `hostinfo' in $PATH, since hostinfo.exe is a popular file name
5868         on some platforms.
5870         * lib/autoconf/fortran.m4 (AC_LANG(Fortran), AC_FC_SRCEXT):
5871         s/FC_SRCEXT/ac_fc_srcext/; s/FCFLAGS_SRCEXT/ac_fcflags_srcext/.
5873         * tests/local.at (AT_CMP): New macro.
5874         (AT_DATA_AUTOCONF): Do not call AC_PROG_GREP.
5875         (AC_SAVE_STATE): Move environment grep...
5876         (AT_CHECK_ENV): to here.  Filter out `'$''.  Use AT_CMP.
5877         (AT_CONFIG_CMP): New macro.
5878         (AT_CHECK_MACRO): Run `configure' twice with cache and compare results.
5879         * tests/c.at (Extensions): Do not exit early.
5880         * tests/atlocal.in: Inherit $GREP.
5882         * lib/autoconf/c.m4 (_AC_C_STD_TRY): New macro.
5883         (_AC_PROG_CC_C89, _AC_PROG_CC_C99): Use it.
5885         * lib/autoconf/general.m4 (_AC_INIT_COPYRIGHT): Update for 2005.
5886         (AC_COPYRIGHT): Factor header comment portion out and move into...
5887         * lib/m4sugar/m4sh.m4 (AS_COPYRIGHT): This.
5888         * lib/autotest/general.at (AT_COPYRIGHT): New macro.
5889         (AT_INIT): Add Autotest copyright notice.  Display copyright notices in
5890         --version output.
5891         * tests/local.at: Add Autoconf test suite copyright notice.
5892         * doc/autoconf.texi (Writing testsuite.at): Document AT_COPYRIGHT.
5894 2005-02-04  Bruno Haible  <bruno@clisp.org>
5895         and Paul Eggert  <eggert@cs.ucla.edu>
5897         * doc/autoconf.texi (Limitations of Usual Tools): New mkstemp entry.
5899 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
5901         * lib/m4sugar/m4sugar.m4 (m4_re_escape): Escape ?, ^, \, $ too;
5902         this fixes a bug tickled by the AT_CAPTURE_FILE change noted below.
5904         Try not to generated lines of unlimited length, as POSIX places a
5905         2047-byte limit on line length of portable text files.
5906         * lib/autoconf/general.m4 (AC_SUBST, AC_SUBST_FILE):
5907         Use newline as a separator, not space.
5908         * lib/autotest/general.m4 (AT_TESTED, AT_KEYWORDS): Likewise.
5909         (AT_CAPTURE_FILE): Use space-backslash-newline as a separator, not
5910         space.
5912 2005-02-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5914         * lib/m4sugar/m4sh.m4 (_AS_SHELL_FN_WORK): Move func_* to
5915         as_func_*.  Add test to check whether positional parameters
5916         are restored after function return.
5918 2005-02-02  Paul Eggert  <eggert@cs.ucla.edu>
5920         * doc/autoconf.texi (Special Shell Variables): Mention _,
5921         BIN_SH, DUALCASE.  Say that variables other than "status" are safe
5922         if they contain a lower-case letter.  The DUALCASE problem was
5923         reported by Ralf Wildenhues.
5925         * bin/autoconf.as: Don't exit with status 0 after write failure
5926         with --help or --version.
5927         * lib/autoconf/general.m4 (_AC_INIT_HELP, _AC_INIT_VERSION): Likewise.
5928         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Likewise.
5930 2005-02-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5932         * doc/autoconf.texi (Limitations of Usual Tools):
5933         Unicos 9 sed limitations.
5934         * lib/autoconf/fortran.m4 (_AC_PROG_FC): Try cf77 before fort77
5935         to get the option-enhanced interface on older Crays.  Try ftn for
5936         Fortran 95 (newer Crays).
5938 2005-02-01  Paul Eggert  <eggert@cs.ucla.edu>
5940         * man/Makefile.am (.x.1): Go back to the simple solution, but take
5941         care to echo the commands, so the user knows what's going on.
5942         Modified from a suggestion by Stepan Kasal.
5944         * doc/autoconf.texi (autoreconf Invocation): Mention autopoint,
5945         with a cross reference.  Derived from a suggestion by Bruce Korb.
5947 2005-01-31  Paul Eggert  <eggert@cs.ucla.edu>
5949         * doc/autoconf.texi (config.status Invocation): Warn about
5950         discrepancy between CONFIG_SHELL and shell used to invoke 'configure'.
5951         * doc/install.texi (Defining Variables): Likewise.
5952         Based on a proposed patch by Ralf Wildenhues.
5954         * man/Makefile.am (.x.1): Make sure the required generated files
5955         are up to date.  Problem and original solution proposed by Stepan Kasal.
5956         $(dist_man_MANS:.1=-bin-prereq), $(dist_man_MANS:.1=-tests-prereq),
5957         implicit-man-prerequisites): New rules, used by the above.
5959         * doc/make-stds.texi, doc/standards.texi: Sync from gnulib.
5960         * config/config.guess, config/config.sub, config/install-sh: Likewise.
5961         * config/missing, config/texinfo.tex: Likewise.
5963 2005-01-29  Stepan Kasal  <kasal@ucw.cz>
5965         Simplify the implementation of m4_require (a.k.a. AC_REQUIRE).
5966         Update the long comment explaining it.
5968         m4_require no longer writes an ``is required by'' line to the
5969         execution stack.  It contains only one bit of non-redundant
5970         information: that the macro was required, not called.  And even
5971         this bit is useless in most situations: have you ever met a macro
5972         which both calls and requires the same macro?
5974         * lib/m4sugar/m4sugar.m4 (_m4_defun_pro): Don't push a diversion...
5975         (_m4_defun_pro_outer): ... only via this macro, for the outermost
5976           macro.
5977         (_m4_defun_epi, _m4_defun_epi_outer): Complementarily.
5978         (m4_expansion_stack_pop): Remove the misplaced comment.
5979         (m4_require): Don't put the ``is required by'' line to the
5980           execution stack; slightly improve the out-of-a-defun error message.
5981         (_m4_divert_grow): New macro, counter for the temporary diversions.
5982         (_m4_require_call): Use it.
5983         * tests/m4sugar.at (m4_require): Expect output without the
5984           ``is required by'' messages.
5986 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
5988         * doc/autoconf.texi (Limitations of Usual Tools): Recommend X
5989         rather than x for expr.
5991         * lib/autoconf/lang.m4 (_AC_COMPILER_OBJEXT): Avoid subshells when
5992         this is safe.
5993         * lib/autoconf/programs.m4 (AC_PROG_EGREP, AC_PROG_FGREP): Likewise.
5994         * lib/autoconf/specific.m4 (AC_SYS_LONG_FILE_NAMES): Likewise.
5995         * lib/autotest/general.m4 (AT_INIT): Likewise.
5996         * lib/m4sugar/m4sh.m4 (_AS_LINENO_WORKS): Likewise.
5997         * tests/mktests.sh: Likewise.
5999 2005-01-27  Akim Demaille  <akim@epita.fr>
6001         Have autoheader honor --force.
6003         * doc/make-stds.texi, doc/standards.texi: Update from masters.
6004         * lib/Autom4te/Channels.pm, lib/Autom4te/Configure_ac.pm
6005         * lib/Autom4te/FileUtils.pm, lib/Autom4te/XFile.pm: Update
6006         from masters, so that FileUtils.pm's update_file provide --force
6007         support.
6008         * bin/autoheader.in: Pass $force to update_file so that
6009         config.h.in is always recreated when --force.
6011 2005-01-24  Stepan Kasal  <kasal@ucw.cz>
6013         * doc/autoconf.texi (Introduction): Update Peter Simons' address.
6015 2005-01-21  Paul Eggert  <eggert@cs.ucla.edu>
6017         * doc/autoconf.texi (Limitations of Builtins): Clarify that
6018         "if test ! -d foo; ..." is portable.  Suggested by Stepan Kasal.
6020 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
6022         * doc/autoconf.texi (Shell Substitutions): Fix typo in case statement.
6023         Warn about newline stripping in `` and $().  Update Solaris
6024         version to 9.
6025         (Limitations of Builtins): Use expr "X...", not expr "x...", as
6026         X insulates us from future changes to Posix.
6027         (Limitations of Usual Tools): For AS_DIRNAME, warn about newline
6028         stripping.
6030 2005-01-19  Stepan Kasal  <kasal@ucw.cz>
6032         * doc/autoconf.texi (Defining Symbols): Delete the false comment that
6033           you cannot use AC_DEFINE to define macros containing `[' or `]'.
6035 2005-01-13  Paul Eggert  <eggert@cs.ucla.edu>
6037         * doc/autoconf.texi (Limitations of Usual Tools): Document bug
6038         in Solaris 8 join.  Problem reported by Tomohiro Suzuki on
6039         bug-tar mailing list.
6041 2005-01-05  Stepan Kasal  <kasal@ucw.cz>
6043         * lib/m4sugar/m4sugar.m4 (m4_copy): Fix the explanation.
6045 2005-01-05  Paul Eggert  <eggert@cs.ucla.edu>
6047         * lib/autoconf/c.m4 (AC_LANG_INT_SAVE(C)): Declare longval and
6048         ulongval to be static, to avoid unwanted GCC warning.  Problem
6049         reported by Michael Jennings via Daniel Reed; see
6050         <https://bugzilla.redhat.com/beta/show_bug.cgi?id=143852>.
6052 2005-01-05  Alexandre Duret-Lutz  <adl@gnu.org>
6054         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ARGS): Define datarootdir,
6055         docdir, htmldir, dvidir, pdfdir, psdir, and localdir.  Update
6056         datadir, infodir, and mandir.  Adjust argument parsing code.
6057         (_AC_INIT_HELP): Update help text.
6058         * doc/autoconf.texi (Installation Directory Variables): Document
6059         new variables.
6061 2005-01-04  Noah Misch  <noah@cs.caltech.edu>
6063         * lib/autoconf/programs.m4 (AC_PROG_MAKE_SET): If the Make program does
6064         not seem to work, assume it does set $(MAKE).
6065         * doc/autoconf.texi (AC_PROG_MAKE_SET): Update.
6067 2005-01-03  Stepan Kasal  <kasal@ucw.cz>
6069         * lib/m4sugar/m4sh.m4 (AS_REQUIRE): Add a comment about nesting.
6071 2005-01-03  Stepan Kasal  <kasal@ucw.cz>
6073         A cleanup of the diversion support in m4sugar.
6075         * lib/m4sugar/m4sugar.m4 (_m4_divert): A typo in description.
6076         (_m4_divert_n_stack): New macro; the expansion is
6077           <newline>m4_divert_stack, if m4_divert_stack is defined, and void
6078           otherwise.
6079         (m4_divert, m4_divert_push, m4_divert_pop, m4_init): Use it.
6080         (m4_divert_push, m4_divert_pop, _m4_defun_epi): Don't expand the word
6081           stored in _m4_divert_diversion or _m4_divert_dump.
6082         (m4_divert_pop): When the parameter is given, compare the symbolic
6083           name with the last diversion pushed on the stack.  Previously, the
6084           current diversion was compared with the numeric value of the
6085           diversion given as the parameter.
6086         (m4_require): If the macro hasn't been expanded yet, call ...
6087         (_m4_require_call): this new macro.
6089 2005-01-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6091         * lib/autoconf/general.m4 (_AC_INIT_PREPARE, _AC_ARG_VAR_VALIDATE):
6092         Workarounds for documented `case' limitations.
6094 2005-01-03  Paul Eggert  <eggert@cs.ucla.edu>
6096         * doc/autoconf.texi (Limitations of Usual Tools): Warn about
6097         sed 'command1;command2'.  Problem reported by Ralf Wildenhues.
6099 2005-01-02  Paul Eggert  <eggert@cs.ucla.edu>
6101         * bin/autoconf.as, bin/autoheader.in, bin/autom4te.in,
6102         bin/autoreconf.in, bin/autoscan.in, bin/autoupdate.in,
6103         bin/ifnames.in, tests/mktests.sh: Update copyright date to 2005.
6105         Patch from Roger Leigh (with some minor changes) as follows:
6106         * NEWS: New macros AC_PROG_CC_C89, AC_PROG_CC_C99.
6107         Resurrect AC_PROG_CC_STDC.
6108         * doc/autoconf.texi (C Compiler): Add AC_PROG_CC_STDC,
6109         AC_PROG_CC_C89, AC_PROG_CC_C99.
6110         (Obsolete Macros): Remove AC_PROG_CC_STDC; it's no longer obsolete.
6111         * lib/autoconf/c.m4 (_AC_PROG_CC_C89, _AC_PROG_CC_C99, AC_PROG_CC_C89,
6112         AC_PROG_CC_C99): New macros.
6113         (AC_PROG_CC_STDC): Use them.
6114         (_AC_PROG_CC_STDC): Remove.
6115         (AC_C_PROTOTYPES): Use ac_cv_prog_cc_c89, not ac_cv_prog_cc_stdc.
6116         * THANKS: Add Roger Leigh.
6118 2004-12-30  Noah Misch  <noah@cs.caltech.edu>
6120         * bin/autoreconf.in (autoreconf_current_directory):  AM_INIT_AUTOMAKE
6121         signals that the package uses Automake; a `Makefile.am' is typical but
6122         not essential.  Reported by Magnus Therning.
6123         * tests/torture.at (autoreconf.): New banner.
6124         (autoreconf and non-AC configure): Rename to `Non-Autoconf
6125         AC_CONFIG_SUBDIRS'.
6126         (autoreconf an empty directory): Rename to `Empty directory'.
6127         (Unusual Automake input files): New test.
6129 2004-12-30  Noah Misch  <noah@cs.caltech.edu>
6131         * lib/autotest/general.m4 (AT_CAPTURE_FILE): New macro.
6132         (AT_SETUP): Clear AT_capture_files.
6133         (_AT_CHECK): On failure, log each of AT_capture_files.  Fix comment.
6134         (AT_KEYWORDS): Fix comment typo.
6135         * tests/autotest.at (AT_CHECK_AT): Use AT_CAPTURE_FILE.
6136         * tests/local.at (AT_CHECK_CONFIGURE): Use AT_CAPTURE_FILE.
6137         * doc/autoconf.texi (Writing testsuite.at): Document AT_CAPTURE_FILE.
6139 2004-12-29  Albert Chin-A-Young  <china@thewrittenword.com>
6141         * lib/autoconf/programs.m4 (_AC_FEATURE_CHECK_LENGTH):
6142         If the variable to set is already set, set ac_cv_path_$1
6143         to the preset value so caller can assume ac_cv_path_$1
6144         is available.  (trivial change)
6146 2004-12-27  Noah Misch  <noah@cs.caltech.edu>
6148         * BUGS (Minor Problems): Warn about makefile limitations.
6149         * Makefile.am: Find and update `INSTALL' in $(srcdir).
6150         * man/Makefile.am: Find and update manual pages in $(srcdir).
6152 2004-12-24  Eric Blake  <ebb9@byu.net>
6154         * lib/m4sugar/m4sh.m4 (_AS_DETECT_BETTER_SHELL): Test candidate
6155         shells in subshell, to avoid noise from ash.  (trivial change)
6157 2004-12-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6159         * doc/autoconf.texi (Limitations of Builtins) <case>: Mention
6160         problems with SunOS ksh and backslash escaping, Bourne shells and
6161         closing brackets (both within character classes).  Bug reported
6162         against Libtool by Alexander Kurz <alexander.kurz@qsc.de>.
6163         <read>: New entry.  Mention non-availability of -r.
6165 2004-12-21  Akim Demaille  <akim@epita.fr>
6167         * lib/autotest/general.m4 (AT_LINE): Don't add srcdir here, to
6168         avoid cluttering displayed messages.  Rather, prepend srcdir where
6169         AT_LINE is used for log files.
6171 2004-12-21  Stepan Kasal  <kasal@ucw.cz>
6173         * lib/autoconf/status.m4: Quote ``$tmp'' in many places.
6174         * lib/m4sugar/m4sh.m4 (AS_TMPDIR): Fix the comment, as traps are
6175           no longer part of the macro, quote the occurrence of ``$tmp''.
6176         * doc/autoconf.texi (Forbidden Patterns): Typo.
6178 2004-12-21  Akim Demaille  <akim@epita.fr>
6180         * lib/autotest/general.m4 (AT_INIT): Make sure the "ok" etc. are
6181         separated from the test title by forcing a white space.
6183 2004-12-21  Akim Demaille  <akim@epita.fr>
6185         Enable Emacs navigation within testsuite.log files.
6187         * lib/autotest/general.m4 (AT_CLEANUP): Add an hint for Emacs to
6188         use the compilation mode.
6189         (AT_LINE): Point to the srcdir.
6191 2004-12-19  Noah Misch  <noah@cs.caltech.edu>
6193         * tests/Makefile.am (installcheck-local): Use $(bindir).
6194         (check-local, installcheck-local): Pass TESTSUITEFLAGS.
6195         * doc/autoconf.texi (Making testsuite Scripts): Recommend the same
6196         Makefile.am scheme Autoconf now uses.
6198 2004-12-18  Noah Misch  <noah@cs.caltech.edu>
6200         * lib/m4sugar/m4sugar.m4 (m4_qlen, m4_qdelta): New macros.
6201         * lib/autotest/general.m4 (AT_SETUP): Use m4_qdelta.
6203 2004-12-18  Noah Misch  <noah@cs.caltech.edu>
6205         * lib/autotest/general.m4 (_AT_DECIDE_TRACEABLE): New macro.
6206         (_AT_CHECK): Use it.
6207         * lib/m4sugar/m4sh.m4 (AS_ESCAPE_FOR_EXPAND): Remove.
6208         (AS_ESCAPE): Fix comment.
6209         * tests/autotest.at: Adjust section banner comments.
6210         (AT_CHECK_AT): Accept STATUS and STDERR.
6211         (AT_CHECK_AT_TEST): Likewise.
6212         (Invalid brace-enclosed parameter expansion)
6213         (Multiline command from M4 expansion)
6214         (Double-M4-quoted command): New tests.
6216 2004-12-17  Paul Eggert  <eggert@cs.ucla.edu>
6218         * doc/autoconf.texi: Update GNU FDL version from 1.1 to 1.2.
6220 2004-12-17  Akim Demaille  <akim@epita.fr>
6222         * lib/autoconf/general.m4 (AC_SUBST, AC_SUBST_FILES): Pass $1 to
6223         m4_pattern_allow.
6224         Suggested by Alexandre Duret-Lutz.
6225         * doc/autoconf.texi (Setting Output Variables): Catch up.
6227 2004-12-17  Stepan Kasal  <kasal@ucw.cz>
6229         * lib/m4sugar/m4sh.m4 (_AS_TEST_PREPARE): Fix comment.
6231 2004-12-17  Stepan Kasal  <kasal@ucw.cz>
6233         * lib/autoconf/general.m4 (_AC_LIBOBJ): We can use AC_SUBST/2,
6234           remove the comment which said we cannot.
6236 2004-12-17  Stepan Kasal  <kasal@ucw.cz>
6238         Add a specialized check for resolv.h.  Thanks to Gerrit P. Haase,
6239         Reini Urban and Paul Eggert for reporting the dependencies.
6241         * lib/autoconf/headers.m4 (AC_HEADER_RESOLV): New macro.
6242         * doc/autoconf.texi (AC_HEADER_RESOLV): Document it.
6243         (AC_HEADER_STAT): @cvindex{STAT_MACROS_BROKEN}, not @acindex.
6245 2004-12-17  Stepan Kasal  <kasal@ucw.cz>
6247         * bin/autoscan.in: Open autoscan.log only after ``parse_args'';
6248           so that eg. ``autoscan --help'' doesn't truncate it.
6250 2004-12-15  Nicolas Joly  <njoly@pasteur.fr>
6252         * lib/autoconf/programs.m4 (_AC_FEATURE_CHECK_LENGTH): Remove
6253         generated conftest files.
6255 2004-12-13  Noah Misch  <noah@cs.caltech.edu>
6257         * lib/autotest/general.m4 (_AT_CHECK) [--trace]: Do not enable shell
6258         tracing on commands with possibly-escaped newlines.
6259         * doc/autoconf.texi (Writing testsuite.at): Delete documentation of the
6260         discontinued behavior and its implications.
6261         * tests/autotest.at (BS-newline in command, ^BS-newline in command)
6262         (BSx641-newline in command, BS-BS-newline in command)
6263         (BSx640-newline in command, Newline-CODE-BS-newline in command)
6264         (Single-quote-BS-newline in command)
6265         (Single-quote-newline-BS-newline in command): New tests.
6267 2004-12-13  Stepan Kasal  <kasal@ucw.cz>
6269         * lib/m4sugar/m4sh.m4 (AS_EXECUTABLE_P): Use test -f && test -x
6270           on platforms where it works.
6271         (_AS_TEST_PREPARE): Test for ``test -x''.
6272         (_AS_BROKEN_TEST_PREPARE): Nuke.
6274 2004-12-13  Stepan Kasal  <kasal@ucw.cz>
6276         * lib/m4sugar/m4sh.m4 (AS_TMPDIR): Move the trap commands ...
6277         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): ... here;
6278           give only 4-letter prefix to AS_TMPDIR, comment fixed.
6279         * lib/autoconf/programs.m4 (_AC_PATH_PROG_FEATURE_CHECK): Don't
6280           create the temporary directory.
6281         (_AC_FEATURE_CHECK_LENGTH): Work in current directory.
6283 2004-12-12  Kelley Cook  <kcook@gcc.gnu.org>
6285         * bin/autoheader.in: Exit if no AC_CONFIG_HEADERS was found.
6286         (trivial change)
6288 2004-12-12  Alexandre Duret-Lutz  <adl@gnu.org>
6290         * doc/autoconf.texi (Limitations of Usual Tools) <expr (:)>: Typo.
6292 2004-12-11  Noah Misch  <noah@cs.caltech.edu>
6294         * lib/autotest/general.m4 (_AT_CHECK) [--trace]: Rework a shell pattern
6295         to avoid using a negated character class.  Reported by Nicolas Joly.
6296         * tests/local.at (AT_CHECK_SHELL_SYNTAX): Check for similar constructs.
6298 2004-12-10  Paul Eggert  <eggert@cs.ucla.edu>
6300         * man/Makefile.am (autoconf.1, autoheader.1, autom4te.1, autoreconf.1,
6301         autoscan.1, autoupdate.1, ifnames.1, config.guess.1, config.sub.1):
6302         Don't depend on .x file explicitly, since "make" does that for us.
6303         Suggested by Stepan Kasal.
6305         * bin/Makefile.am (MOSTLYCLEANFILES): Renamed from CLEANFILES.
6306         Add *.tmp.
6307         (autoconf, autoheader, autom4te, autoreconf, autoscan, autoupdate,
6308         ifnames): Factor common code.  And they said it couldn't be done!
6310 2004-12-09  Paul Eggert  <eggert@cs.ucla.edu>
6312         * bin/.cvsignore: Add autoconf.in.
6313         * tests/.cvsignore: Add wrapper.in.
6314         * lib/autotest/general.m4: Escape '$' in case pattern.
6316 2004-12-09  Noah Misch  <noah@cs.caltech.edu>
6318         * man/Makefile.am (autoconf.1): Regenerate when `autoconf.as' changes.
6320         * lib/autotest/general.m4 [--trace] (AT_INIT): Do not `set -v'.
6322         * tests/autotest.at: New file.
6323         * tests/suite.at: Include it.
6324         * tests/Makefile.am: Distribute it.
6326         * lib/autotest/general.m4 [--trace] (_AT_CHECK): Do not enable
6327           shell tracing on a command that could contain multiple lines.
6328         * doc/autoconf.text: Document that fact and its implications.
6329         * lib/m4sugar/m4sh.m4 (AS_ESCAPE_FOR_EXPAND): New macro.
6330         * tests/autotest.at (Multiline backquote command substitution,
6331           Multiline parameter expansion, Literal multiline command,
6332           Multiline parenthetical command substitution): Remove XFAIL.
6334 2004-12-09  Paul Eggert  <eggert@cs.ucla.edu>
6336         * doc/autoconf.texi (Libraries): Clarify problems with AC_CHECK_LIB
6337         and suggest AC_SEARCH_LIBS.  Suggested by Noah Misch and Stepan Kasal.
6339 2004-12-08  Noah Misch  <noah@cs.caltech.edu>
6341         * configure.ac (test suite): Cease to generate wrapper scripts.
6342         * configure: Regenerate.
6343         * lib/freeze.mk (MY_AUTOM4TE): Wrap the uninstalled autom4te directly.
6344         (m4f_dependencies): Adjust accordingly.
6345         * tests/Makefile.am (Wrappers): Generate wrapper scripts.
6346         (wrapper.in): Generate it in the build directory.
6347         (MAINTAINERCLEANFILES): Delete wrapper.in.
6348         (CLEANFILES): Add wrapper.in.
6349         * tests/wrapper.as: Move AS_INIT to very top, preserving copyright in
6350         the output.  Replace each $as_me with a @wrap_program@.
6351         * tests/wrapper.in: Delete it; we always build it.
6353         * bin/Makefile.am (autoconf.in): Generate it in the build directory.
6354         (EXTRA_DIST): Remove autoconf.in.
6355         (CLEANFILES): Add autoconf.in.
6356         (autoconf): Find autoconf.in in the build directory.
6357         * bin/autoconf.in: Delete it; we always build it.
6359 2004-12-08  Noah Misch  <noah@cs.caltech.edu>
6361         * lib/autotest/general.m4 (AT_INIT): Replace a `tr' with a `sed'.  Join
6362         PATH members so as to not prepend an empty element.  Move a comment.
6363         * Makefile.am (SUBDIRS): Build in `tests' last.
6364         * tests/Makefile.am (installcheck-local): Add check-local dependencies.
6366 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
6368         * lib/mdate-sh: Don't use "set - x`$ls_command /`", as zsh mishandles
6369         the spaces inside $ls_command.  Problem reported by Loulou Pouchet in
6370         <http://lists.gnu.org/archive/html/autoconf/2004-12/msg00074.html>.
6371         Don't use "set - x"; plain "set x" is enough, and simplifies debugging.
6373 2004-12-07  Stepan Kasal  <kasal@ucw.cz>
6375         * lib/autoconf/functions.m4 (AC_FUNC_GETMNTENT): Fix typo in previous
6376         patch: extra "-l"s.
6378 2004-12-06  Paul Eggert  <eggert@cs.ucla.edu>
6380         * lib/autoconf/functions.m4 (AC_FUNC_GETMNTENT): Check libc before
6381         looking elsewhere for getmntent.  Problem reported by Mark D. Baushke.
6382         * doc/autoconf.texi (Particular Functions): Mention new behavior.
6384 2004-12-03  Stepan Kasal  <kasal@ucw.cz>
6386         * lib/autoconf/general.m4 (AC_DEFINE, AC_DEFINE_UNQUOTED): Factor
6387           out the common code to ...
6388         (_AC_DEFINE_Q): ... a new macro; simplify the condition about the
6389           value of the #define--default to 1, iff the macro was called
6390           with exactly one parameter.
6392 2004-12-02  Paul Eggert  <eggert@cs.ucla.edu>
6394         * lib/autoconf/functions.m4 (AC_FUNC_MEMCMP): Use
6395         "char c = '\200';" rather than "char c = 0x80;" as the
6396         latter doesn't conform to the strict C standard due to
6397         overflow on signed char hosts.
6399         * lib/autoconf/c.m4 (_AC_PROG_CC_STDC): Prefer -qlanglvl=extc89
6400         to -qlanglvl=ansi.  We don't want to disable extensions.
6402 2004-11-29  Paul Eggert  <eggert@cs.ucla.edu>
6404         * doc/autoconf.texi (Particular Programs): @code{$PATH} -> @env{PATH}.
6405         (Using Autotest, testsuite Scripts, Writing testsuite.at):
6406         Reword slightly to avoid some English-language problems noted
6407         by Ralf Wildenhues in:
6408         http://lists.gnu.org/archive/html/autoconf-patches/2004-11/msg00027.html
6410 2004-11-29  Stepan Kasal  <kasal@ucw.cz>
6412         * NEWS: Add ^L above each release.
6414 2004-11-28  Paul Eggert  <eggert@cs.ucla.edu>
6416         Fix documentation problems reported by Russ Boylan in
6417         <http://lists.gnu.org/archive/html/bug-autoconf/2004-11/msg00056.html>,
6418         along with some nearby cruft.
6419         * doc/autoconf.texi (Libtool): Libtool can be used without
6420         Automake (not without Autoconf).
6421         (Introduction): Mention lists.gnu.org.
6422         * BUGS: Don't mention bugs.gnu.org.
6423         Remove mention of ancient libtool compatibility problem.
6424         * NEWS: Mention that bugs.gnu.org is kaput.
6425         * README: Likewise.  Mention where mailing list archives can be found.
6427 2004-11-28  Stepan Kasal  <kasal@ucw.cz>
6429         * lib/m4sugar/m4sh.m4 (AS_HELP_STRING): A typo in the comment.
6431 2004-11-26  Paul Eggert  <eggert@cs.ucla.edu>
6433         * doc/autoconf.texi (Pretty Help Strings): Go back to
6434         single-quoting assignments to cache variables.
6436 2004-11-23  Stepan Kasal  <kasal@ucw.cz>
6438         * doc/autoconf.texi (Pretty Help Strings): Fix quoting issues
6439         with the examples; fix the bug in MY_ARG_WITH example reported
6440         by Alexandre Duret-Lutz.
6441         * lib/autoconf/general.m4 (AC_ARG_ENABLE, AC_ARG_ENABLE): Enable
6442         expansion of $1 in the comment emitted to configure.
6444 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
6446         * doc/autoconf.texi (Pretty Help Strings): Fix typo
6447         in my editing of the previous patch.  Problem reported
6448         by Alexandre Duret-Lutz.
6450 2004-11-22  Stepan Kasal  <kasal@ucw.cz>
6452         * doc/autoconf.texi (Autoconf Language): Explain that
6453         ``descriptions'' may not be double quotes.
6454         (Quotation Rule Of Thumb): Likewise.
6455         (Pretty Help Strings): Likewise; remove the wrong comment;
6456         simplify the examples and improve their quoting.
6458 2004-11-13  Stepan Kasal  <kasal@ucw.cz>
6460         * lib/autoconf/programs.m4 (_AC_FEATURE_CHECK_LENGTH): Don't check
6461         the $1_found variable, don't test whether the file is executable;
6462         Both things are checked ...
6463         (_AC_PATH_PROG_FEATURE_CHECK): ... here; AS_EXECUTABLE_P replaces
6464         the former ``test -f''.
6465         * lib/m4sugar/m4sh.m4 (_AS_TEST_PREPARE): Fix a typo.
6467 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
6469         * doc/autoconf.texi (Limitations of Usual Tools): Avoid cp -r;
6470         use cp -R instead.
6472 2004-11-10  Derek R. Price  <derek@ximbiot.com>
6474         * doc/autoconf.texi (Limitations of Usual Tools): Note `cp -r'
6475         limitations.  Reorder paragraphs for clarity.
6477 2004-10-11  Paul Eggert  <eggert@cs.ucla.edu>
6479         * doc/autoconf.texi: Standardize spelling of "Posix" (as opposed
6480         to "POSIX" or "@acronym{POSIX}"), and similarly for "DOS
6481         variants", "Unix", and some related minor wording fixups.
6483         (Shellology, Special Shell Variables): Document that the Zsh
6484         problem with NULLCMD was fixed in zsh 3.1.6-dev-18.  Thanks
6485         to Alexandre Duret-Lutz for this info.
6487 2004-10-10  Alexandre Duret-Lutz  <adl@gnu.org>
6489         * doc/autoconf.texi (One-Shot Macros): New node.
6491 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
6493         * doc/autoconf.texi (Function Portability): Fix misdescription
6494         of putenv.  Problem reported by Michael Wardle.
6496 2004-09-22  Paul Eggert  <eggert@cs.ucla.edu>
6498         * doc/autoconf.texi (auindex): New macro.
6499         (AU_DEFUN): Use it to fix the bug when the index contained AC_AU_DEFUN.
6500         Problem reported by Stepan Kasal.
6502 2004-09-05  Paul Eggert  <eggert@cs.ucla.edu>
6504         Fix problems reported by Andreas Buening in:
6505         http://lists.gnu.org/archive/html/autoconf-patches/2004-04/msg00004.html
6506         * lib/autoconf/programs.m4 (AC_PROG_MAKE_SET): Set SHELL=/bin/sh
6507         in test makefile.
6508         * lib/autotest/general.m4 (AT_INIT): Don't assume /dev/null is
6509         readable; it's not true in OS/2-emx.
6511 2004-09-04  Paul Eggert  <eggert@cs.ucla.edu>
6513         * lib/autoconf/libs.m4 (_AC_PATH_X_XMKMF): If xmkmf returns
6514         "/usr/include", clear ac_x_includes instead of leaving it as "no"
6515         (trivial change).  Problem and patch reported by Andrew Church in:
6516         http://lists.gnu.org/archive/html/bug-autoconf/2004-04/msg00016.html
6518 2004-09-03  Paul Eggert  <eggert@cs.ucla.edu>
6520         * doc/autoconf.texi: Give AC_DEFINE and AC_DEFINE_UNQUOTED
6521         three args in examples.  Problem reported by Frederik Fouvry in:
6522         http://lists.gnu.org/archive/html/bug-autoconf/2004-09/msg00017.html
6523         Also, fix some minor spacing and punctuation bugs.
6525 2004-09-02  Akim Demaille  <akim@epita.fr>
6527         * doc/autoconf.texi (Limitations of Builtins): Swap "cd" and
6528         "case" to restore ordering.
6529         Reported by Stepan Kasal.
6531 2004-08-26  Akim Demaille  <akim@epita.fr>
6533         * doc/autoconf.texi: Minor typos and stylos.
6535 2004-08-20  Paul Eggert  <eggert@cs.ucla.edu>
6537         * configure.ac (AC_INIT): Bump to 2.59c.
6539 2004-08-20  Paul Eggert  <eggert@cs.ucla.edu>
6541         Version 2.59b.
6543         * README: Add advice about m4 1.4.2.
6545         * Makefile.cfg (wget_files): Remove config.guess, config.sub,
6546         texinfo.tex for now (done by hand now).
6547         * Makefile.maint (wget_files, cvs_files):
6548         Remove ansi2knr.c; nobody uses it.
6549         (ansi2knr.c-url_prefix): Remove.
6550         (cvs-update): Fix test for failure.  I don't know why it ever
6551         worked...
6553         * doc/autoconf.texi: Update URLs, some of which went stale.
6554         Use @uref rather than @href.
6556         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ARGS): Have configure
6557         handle "--" as per POSIX.  Suggested by Paul Pogonyshev.
6559         * config/config.guess, config/config.sub, config/elisp-comp,
6560         config/install-sh, config/mkinstalldirs, config/texinfo.tex,
6561         doc/fdl.texi, doc/standards.texi: Sync with master copy.
6563         * NEWS, TODO, configure.ac, bin/autoscan.in,
6564         bin/autoupdate.in, bin/ifnames.in, doc/autoconf.texi,
6565         doc/install.texi, lib/Autom4te/Configure_ac.pm,
6566         lib/Autom4te/FileUtils.pm, lib/autoconf/general.m4,
6567         lib/autoconf/programs.m4, lib/autoconf/status.m4,
6568         lib/autotest/general.m4, lib/m4sugar/m4sh.m4,
6569         lib/m4sugar/m4sugar.m4, tests/local.at, tests/m4sh.at,
6570         tests/tools.at, tests/torture.at:
6571         Use "file name" rather than "filename" or "path",
6572         to be consistent with the terminology of the GNU coding standards.
6574 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
6576         * lib/autoconf/c.m4 (AC_LANG_BOOL_COMPILE_TRY(C),
6577         AC_C_LONG_DOUBLE): Undo 2004-06-04 change, as it didn't work with
6578         HP-UX 11.23 cc/aCC or Tru64 4.0 cc.  Problem reported by Noah Misch in
6579         <http://lists.gnu.org/archive/html/autoconf/2004-07/msg00004.html>.
6581         More fixes to support spaces in the name of the build directory.
6582         This isn't a complete fix but it's an improvement.
6584         * bin/autoconf.as (autom4te_options): New var.
6585         Use it instead of appending to AUTOM4TE, so that we can allow
6586         spaces in the build directory's absolute name.
6587         * bin/autoheader.in ($autoconf): Allow spaces in file names.
6588         * lib/autotest/general.m4 (AT_INIT, AT_CLEANUP, _AT_CHECK,
6589         AT_CHECK_NOESCAPE): Likewise.
6590         * tests/wrapper.as (testdir, AUTOM4TE_CFG, autom4te_perllibdir,
6591         main program): Likewise.
6593 2004-08-18  Paul Eggert  <eggert@cs.ucla.edu>
6595         * lib/autoconf/general.m4 (_AC_INIT_HELP): Quote $ac_popdir uses.
6596         From Ralf Corsepius in:
6597         http://lists.gnu.org/archive/html/autoconf-patches/2004-08/msg00014.html
6599 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
6601         * doc/autoconf.texi (Function Portability): Document isinf and
6602         and isnan.  From a suggestion by Kevin Ryde.
6604         * lib/Autom4te/General.pm (END): Return correct exit status even
6605         if unlink succeeds and sets $?.  Needed with Solaris 8's perl 5.00503.
6607 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
6609         * tests/torture.at (Deep Package): Use configure.in, not configure.ac,
6610         for compatibility with Automake 1.4.  Reported by J C Fitzgerald in
6611         <http://lists.gnu.org/archive/html/bug-autoconf/2003-08/msg00051.html>.
6613 2004-08-04  Alexandre Duret-Lutz  <adl@gnu.org>
6615         * lib/autoconf/general.m4 (AC_REQUIRE_AUX_FILE): New empty macro.
6616         (AC_CANONICAL_BUILD): Call it to require config.sub and config.guess.
6617         * lib/autoconf/programs.m4 (AC_PROG_INSTALL): Likewise for install-sh.
6618         * doc/autoconf.texi (Input): Document AC_REQUIRE_AUX_FILE.
6619         * lib/autom4te.in (Automake-preselections): Preselect
6620         AC_REQUIRE_AUX_FILE.  Automake 1.10 will trace it.
6622 2004-08-02  Alexandre Duret-Lutz  <adl@gnu.org>
6624         * lib/autom4te.in (Automake-preselections): Preselect
6625         AC_CANONICAL_BUILD and AC_CANONICAL_TARGET.  Automake 1.9.1 will
6626         trace them.
6628 2004-07-29  Paul Eggert  <eggert@cs.ucla.edu>
6630         * lib/m4sugar/m4sh.m4 (_AS_BOURNE_COMPATIBLE): Set BIN_SH, for
6631         Tru64.
6632         * doc/autoconf.texi (Shellology): Mention BIN_SH.
6633         Document problem with "`""`" in pdksh POSIX mode.
6635 2004-07-27  Paul Eggert  <eggert@cs.ucla.edu>
6637         * lib/m4sugar/m4sh.m4 (_AS_BOURNE_COMPATIBLE): Use "set -o posix"
6638         with pdksh, too.  Problem reported by Patrick Welche via
6639         Gary V. Vaughan.
6640         * doc/autoconf.texi (Shellology): Note that set -o posix is
6641         useful for pkdsh, too.
6643 2004-06-24  Paul Eggert  <eggert@cs.ucla.edu>
6645         * lib/m4sugar/m4sh.m4 (_AS_DETECT_BETTER_SHELL): Require
6646         _AS_UNSET_PREPARE, so that we can use $as_unset directly.
6647         Don't fail if ENV or BASH_ENV is readonly.
6648         (AS_SHELL_SANITIZE): Don't fail if ENV, MAIL, MAILPATH, LC_ALL,
6649         etc. are read only.  Problem reported by Ludovic Courtes.
6651 2004-06-23  Noah Misch  <noah@cs.caltech.edu>
6653         * lib/m4sugar/m4sh.m4 (_AS_BOURNE_COMPATIBLE): If the shell is
6654         zsh, disable GLOB_SUBST to avoid backslash handling problems.
6655         (trivial change)
6657 2004-06-04  Paul Eggert  <eggert@cs.ucla.edu>
6659         * doc/autoconf.texi (File System Conventions): Warn about
6660         names like "aux".  Problem reported by Eric Blake.
6662         * lib/autoconf/c.m4 (AC_LANG_BOOL_COMPILE_TRY (C)): Use division
6663         by zero instead of array size, so that we can use any arithmetic
6664         constant expression (instead of requiring an integer constant
6665         expression).  This allows us to test expressions like DBL_MAX <
6666         LDBL_MAX, which didn't conform to the C standard using the old
6667         method.
6668         (AC_C_LONG_DOUBLE): Put back in the tests for LDBL_MAX and LDBL_EPSILON,
6669         now that we can do floating-point tests at compile time.
6671 2004-06-02  Paul Eggert  <eggert@cs.ucla.edu>
6673         * lib/autoconf/c.m4 (AC_C_LONG_DOUBLE): Don't check LDBL_MAX
6674         and LDBL_EPSILON, as the resulting expression isn't an
6675         integer constant expression and violates the C standard.
6676         Problem reported by Nelson H. F. Beebe.  Also, check
6677         for "L" suffix, and check that long double doesn't have
6678         worse range or precision than double, that mixed-mode
6679         arithmetic doesn't generate a diagnostic, that double
6680         constants fit in long double.
6682 2004-06-03  Kevin Ryde  <user42@zip.com.au>
6684         * doc/autoconf.texi (Function Portability): Add notes on free(NULL),
6685         malloc(0) and realloc(NULL,size).
6687         * doc/autoconf.texi (Shell Substitutions): Spelling error reported by
6688         Bob Proulx.
6690 2004-05-31  Paul Eggert  <eggert@cs.ucla.edu>
6692         * lib/autoconf/headers.m4 (HAVE_STDBOOL_H): Detect _Bool bug
6693         in HP aC++/ANSI C B3910B A.05.55 [Dec 04 2003].  Problem reported
6694         by Jim Meyering.
6696 2004-05-26  Paul Eggert  <eggert@cs.ucla.edu>
6698         * doc/autoconf.texi (Limitations of Builtins): Mention that ! COMMAND
6699         can be rewritten using if-then-else.  Suggested by Bruno Haible.
6701 2004-05-25  Paul Eggert  <eggert@cs.ucla.edu>
6703         * doc/autoconf.texi (testsuite Scripts): Fix typo.
6704         Problem reported by Stepan Kasal.
6706 2004-05-24  Paul Eggert  <eggert@cs.ucla.edu>
6708         * tests/Makefile.am (autoconfdir): Fix to match comment (trivial
6709         change).  Patch reported by Ralf Wildenhues in
6710         <http://mail.gnu.org/archive/html/bug-autoconf/2004-05/msg00092.html>.
6712         * lib/autoconf/functions.m4 (AC_FUNC_MBRTOWC): Don't assume that a
6713         function F exists if the compiler and linker let you compile an
6714         expression like (F != 0).  Recent versions of GCC optimize away
6715         the reference to F in that case, since every function address must
6716         be nonzero, so the link succeeds even if F does not exist.
6717         Problem reported by Manu in
6718         <http://mail.gnu.org/archive/html/bug-gnu-utils/2004-05/msg00060.html>.
6720         * doc/autoconf.texi (Systemology): Standardize on the spelling of
6721         "Unix".  Many uses changed.
6722         (Limitations of Builtins): Explain better why the ! command isn't
6723         portable.
6725 2004-05-22  Alexandre Duret-Lutz  <adl@gnu.org>
6727         * lib/autom4te.in (Automake-preselections): Preselect
6728         LT_SUPPORTED_TAG in lieu of AC_LIBTOOL_TAGS.
6730 2004-05-19  Kevin Ryde  <user42@zip.com.au>
6732         * doc/autoconf.texi (Function Portability): Add strerror_r, cross
6733         referencing AC_FUNC_STRERROR_R.
6735         * doc/autoconf.texi (Particular Functions): In AC_FUNC_CLOSEDIR_VOID,
6736         note pessimistic assumption when cross compiling.
6738 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
6740         * doc/autoconf.texi (Limitations of Make): Note that BSD make
6741         (until 2004) invoked subcommands with sh -e, contra POSIX.
6742         Reported by Kevin Ryde.
6744 2004-05-10  Eric Sunshine  <sunshine@sunshineco.com>
6746         * programs.m4 (_AC_PROG_GREP): Fixed bug where PATH argument handed to
6747         _AC_PATH_PROG_FEATURE_CHECK contained leading whitespace (i.e.
6748         "        $PATH:/usr/xpg4/bin"). This resulted in bogus tests, such as
6749         `test -f "        /usr/bin/grep"', which _always_ failed.
6750         (AC_PROG_SED): Ditto bogus PATH fix.
6751         * autoconf.texi (AC_PROG_GREP): Properly document that this macro
6752         requires that grep correctly supports _multiple_ `-e' options, rather
6753         than stating only that grep should accept `-e'.
6755 2004-05-03  Paul Eggert  <eggert@cs.ucla.edu>
6757         Port to C99, which requires that 'exit' be declared.
6759         * lib/autoconf/c.m4 (AC_C_BIGENDIAN): Use AC_INCLUDES_DEFAULT
6760         to ensure that stdlib.h is included.
6761         * lib/autoconf/functions.m4 (_AC_LIBOBJ_ALLOCA, AC_FUNC_SETPGRP,
6762         AC_FUNC_STRTOD, AC_FUNC_SETVBUF_REVERSED, AC_FUNC_FORK, _AC_FUNC_FORK,
6763         _AC_FUNC_VFORK, AC_FUNC_WAIT3): Likewise.
6764         * lib/autoconf/specific.m4 (AC_SYS_RESTARTABLE_SYSCALLS): Likewise.
6765         * lib/autoconf/types.m4 (AC_TYPE_GETGROUPS): Likewise.
6766         * lib/autoconf/headers.m4 (AC_HEADER_STDC): Include <stdlib.h>
6767         when using 'exit' in a test; C99 requires that 'exit' be declared.
6769 2004-05-02  Paul Eggert  <eggert@cs.ucla.edu>
6771         * doc/autoconf.texi (Particular Programs): AC_PROG_GREP
6772         now prefers 'grep' implementations that accept -e.
6773         (Limitations of Usual Tools): Describe problems of traditional
6774         egrep and fgrep with long input lines, and of traditional grep
6775         with -e.
6776         * lib/autoconf/programs.m4 (AC_PROG_GREP): Check for -e, too.
6777         (_AC_PROG_GREP): Assume 3rd arg is properly quoted for the shell.
6778         All callers changed.  Append /usr/xpg4/bin to the PATH, for
6779         Solaris.
6780         (_AC_FEATURE_CHECK_LENGTH): Discard stderr, so we don't bother
6781         the user with complaints about multiple -e options.
6782         * tests/local.at (AC_STATE_SAVE): Use $GREP, not grep.
6783         Define it with AC_PROG_GREP.
6784         * configure.ac (AC_PROG_GREP): Add.
6785         * lib/freeze.mk (GREP): New macro.
6787 2004-05-02  Eric Sunshine  <sunshine@sunshineco.com>
6789         * lib/m4sugar/m4sh.m4 (_AS_DETECT_BETTER_SHELL): Consult $SHELL as
6790         a possible candidate only after all others fail, rather than
6791         consulting it first.  This improves backward compatibility by
6792         better reflecting the way shell selection occurred in previous
6793         versions of Autoconf, and should help to avoid triggering latent
6794         problems in other packages, such as the one in Automake where zsh
6795         is not handled robustly:
6796         http://mail.gnu.org/archive/html/automake/2004-04/msg00095.html
6797         Although it is not Autoconf's responsibility to work around
6798         problems in Automake, it nevertheless makes sense to avoid
6799         introducing unnecessary incompatibilites.
6801 2004-04-22  Albert Chin-A-Young  <china@thewrittenword.com>,
6802             Gary V. Vaughan  <gary@gnu.org>
6804         * lib/autoconf/programs.m4 (_AC_FEATURE_CHECK_LENGTH): Don't guess
6805         how deeply nested we are when a suitable tool is found, set the
6806         ac_path_TOOL_found flag.
6807         (_AC_PATH_PROG_FEATURE_CHECK): Encapsulate knowledge of how deeply
6808         nested we are in this macro.  Break out of all 3 nested loops if
6809         ac_path_TOOL_found is set.
6811 2004-04-21  Gary V. Vaughan  <gary@gnu.org>
6813         * lib/autoconf/programs.m4 (_AC_FEATURE_CHECK_LENGTH): Break out
6814         of the _AS_PATH_WALK loop too if GNU flavor is found.
6816 2004-04-21  Alexandre Duret-Lutz  <adl@gnu.org>
6818         * doc/autoconf.texi (Limitations of Make): Update documentation
6819         for `$<'.  New entry `Long lines', based on a report from Simon
6820         Josefsson.  Augment the documentation for SHELL = @SHELL@ with a
6821         paragraph about DJGPP, based on a mail from Richard Dawe.
6823 2004-04-20  Paul Eggert  <eggert@twinsun.com>
6825         * tests/c.at (C keywords): Don't assume that GCC supports
6826         "restrict" and "inline", as sufficiently-old GCC versions do not
6827         (also, GCC configured to be in pedantic C89 mode does not).
6828         Problem reported by Sumit Pandya in:
6829         http://mail.gnu.org/archive/html/autoconf/2004-04/msg00092.html
6831         * lib/autoconf/c.m4 (_AC_PROG_CC_G, _AC_PROG_CXX_G): Don't
6832         consider -g to work if it generates warnings when plain compiles
6833         don't.  Problem reported by Braden McDaniel in:
6834         http://mail.gnu.org/archive/html/autoconf-patches/2003-07/msg00014.html
6836         * doc/autoconf.texi (Slashes): New section, to document a problem
6837         reported by Jim Meyering in:
6838         http://mail.gnu.org/archive/html/bug-coreutils/2004-02/msg00060.html
6840         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Remove potential
6841         linker output files before linking, to work around IRIX 6 linker bug.
6842         Problem reported by Rainer Orth in:
6843         http://mail.gnu.org/archive/html/autoconf-patches/2004-02/msg00007.html
6845 2004-04-20  Gary V. Vaughan  <gary@gnu.org>
6847         * lib/autoconf/programs.m4 (_AC_FEATURE_CHECK_LENGTH): Make the
6848         best tool so far counter rely on the tool path variable name to
6849         avoid checks for one tool being affected by the results of running
6850         the length check on a previous tool.
6852         * lib/autoconf/programs.m4 (_AC_PROG_GREP): Take an additional
6853         match expression argument, as different greps have different
6854         regular expression flavours.
6855         (AC_PROG_FGREP): Pass 'FGREP'. fgrep treats all match chars as
6856         literals.
6857         (AC_PROG_EGREP): Pass 'EGREP$'.
6858         (AC_PROG_GREP): Pass 'GREP$'.
6860 2004-04-20  Albert Chin-A-Young  <china@thewrittenword.com>
6862         * lib/autoconf/programs.m4 (AC_PROG_GREP): Cache variable
6863         is `ac_cv_path_GREP', not `oc_cv_path_GREP'.
6865 2004-03-29  Paul Eggert  <eggert@twinsun.com>
6867         * doc/autoconf.texi (Particular Headers, Particular Types, Generic
6868         Types, Specific Compiler Characteristics, System Services,
6869         Obsolete Macros): Use 'long int', 'short int', 'unsigned int'
6870         etc. consistently instead of 'long', 'short', 'unsigned' etc.
6871         * lib/autoconf/c.m4 (AC_LANG_INT_SAVE(C), AC_C_BIGENDIAN): Likewise.
6872         * lib/autoconf/functions.m4 (AC_FUNC_MMAP, AC_FUNC_SELECT_ARGTYPES):
6873         Likewise.
6874         * lib/autoconf/headers.m4 (AC_HEADER_SYS_WAIT): Likewise.
6875         * lib/autoconf/types.m4 (AC_TYPE_GETGROUPS, AC_TYPE_SIZE_T,
6876         AC_TYPE_OFF_T): Likewise.
6877         * tests/semantics.at (AC_CHECK_TYPES: backward compatibility):
6878         Likewise.
6880         * tests/foreign.at (Libtool): Create an empty aclocal.m4, to
6881         pacify libtool 1.5.2.  Fix quoting problems in sed command.
6883 2004-03-28  Paul Eggert  <eggert@twinsun.com>
6885         * doc/autoconf.texi (Particular Structures): AC_STRUCT_TIMEZONE
6886         now defines HAVE_DECL_TZNAME if it is declared, when
6887         HAVE_STRUCT_TM_TM_ZONE is not defined.
6888         * lib/autoconf/types.m4 (AC_STRUCT_TIMEZONE): Implement this.
6889         Do not assume atoi.  Rely on HAVE_DECL_TZNAME when testing
6890         for HAVE_TZNAME.
6892 2004-03-28  Steven G. Johnson  <stevenj@fftw.org>
6894         * lib/autoconf/fortran.m4 (_AC_PROG_FC_V_OUTPUT): Corrected
6895         superfluous backslashing of quotes (") in sed expressions;
6896         thanks to Paul Eggert.
6898 2004-03-26  Steven G. Johnson  <stevenj@alum.mit.edu>
6900         * lib/autoconf/fortran.m4 (_AC_PROG_FC): new name of Intel
6901         Fortran compiler is ifort, also added pghpf; thanks to Nelson
6902         H. F. Beebe for the bug report.
6904 2004-03-26  Steven G. Johnson  <stevenj@fftw.org>
6906         * lib/autoconf/fortran.m4 (_AC_PROG_FC_V_OUTPUT): fix for
6907         quoted -cmdline argument in Portland Group compiler (bug
6908         reported by Jeffrey J. Barteet).
6910 2004-03-25  Kevin Ryde  <user42@zip.com.au>
6912         * doc/autoconf.texi (Specifying Names): Move cross_compiling ovindex to
6913         (Run Time): ... here, where it's now mentioned.
6915 2004-03-19  Alexandre Duret-Lutz  <adl@gnu.org>
6917         * doc/autoconf.texi (autom4te Invocation): Language Autoconf
6918         inherits from language Autoconf-without-aclocal-m4.
6919         (Customizing autom4te): Adjust example; the cache must now be
6920         disabled for language Autoconf-without-aclocal-m4.
6922 2004-03-16  Paolo Bonzini  <bonzini@gnu.org>
6923             Nathanael Nerode  <neroden@twcny.rr.com>
6925         * lib/autoconf/programs.m4 (AC_PATH_TOOL, AC_CHECK_TOOL,
6926         AC_CHECK_TOOLS): Warn if a cross-tool is found without
6927         a prefix.
6928         (AC_PATH_TARGET_TOOL, AC_CHECK_TARGET_TOOL,
6929         AC_CHECK_TARGET_TOOLS): New macros.
6930         * doc/autoconf.texi (Generic Programs): Document
6931         (AC_PATH_TARGET_TOOL, AC_CHECK_TARGET_TOOL,
6932         AC_CHECK_TARGET_TOOLS, and warn for future changes
6933         in the behavior of AC_PATH_TOOL, AC_CHECK_TOOL and
6934         AC_CHECK_TOOLS.
6935         (Specifying Names): Document the reason for these future
6936         behavioral changes.
6937         * tests/mktests.sh: Do not generate tests for the
6938         new macros.
6939         * NEWS: Document these changes.
6941         * doc/autoconf.texi: Avoid macros with unbraced arguments,
6942         they make TeX hang up.
6944 2004-03-15  Paul Eggert  <eggert@bogus.example.com>
6946         * NEWS: New macro AC_CHECK_ALIGNOF.
6947         * doc/autoconf.texi (Generic Compiler Characteristics): Document it.
6948         * lib/autoconf/types.m4 (AC_CHECK_SIZEOF): Use long int rather than
6949         int; avoid "a `$1'" since this isn't grammatical if $1 begins with a
6950         vowel.
6951         (AC_CHECK_ALIGNOF): New macro.
6952         * tests/mktests.sh (ac_exclude_list): Exclude AC_CHECK_ALIGNOF.
6953         * tests/semantics.at (AC_CHECK_ALIGNOF): Add tests similar to
6954         those for sizeof.
6956 2004-03-03  Paul Eggert  <eggert@twinsun.com>
6958         * bin/Makefile.am (edit): Don't use $< in a context where
6959         POSIX doesn't require support for it.  Use $@.in instead.
6960         Problem reported by Anthony N. Frasso in
6961         <http://mail.gnu.org/archive/html/autoconf/2004-03/msg00008.html>.
6962         * bin/autoscan.in, bin/autoupdate.in: Add @configure_input@ comment.
6964 2004-02-23  Gary V. Vaughan  <gary@gnu.org>
6966         * bin/autoreconf.in (autoreconf_current_directory): Recognize LT_INIT
6967         from the next generation of Libtool.
6968         * lib/autom4te.in (Autoreconf-preselections): Ditto.
6970 2004-02-20  Alexandre Duret-Lutz  <adl@gnu.org>
6972         * doc/autoconf.texi (Limitations of Usual Tools) <mkdir>: `mkdir -p'
6973         is not always thread-safe.  Report from Nathanael Nerode.
6975 2004-02-18  Paul Eggert  <eggert@twinsun.com>
6977         Fix a dependencies problem, stemming from a Autoconf 2.59 build
6978         problem on QNX reported by Stephen Rasku in
6979         <http://mail.gnu.org/archive/html/bug-autoconf/2004-02/msg00066.html>.
6981         * bin/Makefile.am ($(srcdir)/autoconf.in): Depend on
6982         $(m4sh_m4f_dependencies); this removes a FIXME.
6983         * tests/Makefile.am ($(srcdir)/wrapper.in): Likewise.
6984         (MAINTAINERCLEANFILES): Split into pieces,
6985         one per related section.  Add $(srcdir)/wrapper.in.
6987 2004-02-09  Paul Eggert  <eggert@twinsun.com>
6989         * doc/autoconf.texi (Setting Output Variables): Emphasize that
6990         AC_SUBST provides no portable way to escape literal newlines.
6992         * lib/autoconf/fortran.m4 (_AC_FC_LIBRARY_LDFLAGS): Ignore all
6993         flags of the form -lcrt*.o, not just -lcrt[01].o and -lcrtbegin.o.
6994         Darwin uses -lcrt2.o and there's little point to cataloging all
6995         the system variants.  Partial fix reported by Andreas Waechter in:
6996         http://mail.gnu.org/archive/html/autoconf-patches/2004-02/msg00006.html
6997         for bug reported by Nelson H. F. Beebe in:
6998         http://mail.gnu.org/archive/html/bug-autoconf/2003-12/msg00090.html
7000 2004-02-04  Paolo Bonzini  <bonzini@gnu.org>
7002         * doc/autoconf.texi (AU_DEFUN): Fix English,
7003         suggested by Paul Eggert.
7004         * lib/autoconf/autoupdate.m4: Correct reference to
7005         acobsolete.m4, suggested by Alexandre Duret-Lutz.
7007 2004-02-02  Paolo Bonzini  <bonzini@gnu.org>
7009         * bin/autoupdate.in: Define __file__ so that warnings
7010         refer to the correct file.
7011         * doc/autoconf.texi (AU_DEFUN): Describe more correctly
7012         the behavior of the third argument.
7013         * lib/autoconf/autoupdate.m4 (AU_DEFUN): Describe more
7014         correctly the behavior of the third argument.  Document
7015         what the three macros that AU_DEFUN defines do.  Fix
7016         warning message when the third argument includes $0
7017         (reported by Alexandre Duret-Lutz).
7019 2004-01-30  Paolo Bonzini  <bonzini@gnu.org>
7020             Eric Sunshine  <sunshine@sunshineco.com>
7021             Paul Eggert  <eggert@twinsun.com>
7023         * lib/m4sugar/m4sh.m4 (M4SH-SANITIZE): New diversion.
7024         (AS_INIT): Output shell initialization there. Removed optional
7025         parameter. Expand _AS_SHELL_FN_SPY.
7026         (AS_INIT_WITH_SHELL_FN): Removed.
7027         (_AS_SHELL_FN_SPY): New macro.
7028         (AS_DETECT_REQUIRED, AS_DETECT_SUGGESTED): New
7029         macros.
7030         (AS_SHELL_SANITIZE): Remove loop to find better shell
7031         and documentation for the parameter.
7032         (_AS_DETECT_BETTER_SHELL): Move it here.
7033         (_AS_SHELL_FN_WORK): Remove shell invocation, reformat.
7034         (_AS_RUN): Move it here, support testing with eval.
7035         (AS_REQUIRE_SHELL_FN): Require shell functions when
7036         it is used.
7037         (_AS_LINENO_WORKS): Put around braces, we do not
7038         trigger the bash bug anymore.
7039         * lib/autotest/general.m4: Document M4SH-SANITIZE, do not
7040         use AS_INIT_WITH_SHELL_FN.
7041         * bin/autoconf.in, tests/wrapper.in: Regenerated.
7043 2004-01-30  Paolo Bonzini  <bonzini@gnu.org>
7045         * bin/autoupdate.in: Trace AU_DEFINE instead of AU_DEFUN.
7046         * doc/autoconf.texi: Don't say that the third parameter
7047         is broken.
7048         * lib/autoconf/autoupdate.m4 (AU_DEFINE): New dummy macro.
7049         (AU_DEFUN): Honor the third parameter, create autoupdate
7050         macros with AU_DEFINE.
7051         * lib/autoconf/headers.m4 (AC_USG, AC_MEMORY_H,
7052         AC_DIR_HEADER): Use AU_DEFUN's third parameter.
7053         * lib/autoconf/lang.m4 (AC_LANG_SAVE): Likewise.
7054         * lib/autoconf/programs.m4 (AC_RSH): Likewise.
7055         * lib/autoconf/specific.m4 (AC_HAVE_POUNDBANG,
7056         AC_ARG_ARRAY, AC_CYGWIN, AC_EMXOS2, AC_MINGW32,
7057         AC_XENIX_DIR): Likewise.
7058         * lib/autoconf/types.m4 (AC_INT_16_BITS, AC_LONG_64_BITS,
7059         AC_STRUCT_ST_BLKSIZE, AC_STRUCT_ST_RDEV): Likewise.
7060         * lib/autoconf/status.m4: Remove FIXME.
7061         * tests/local.at (AT_CHECK_AU_MACRO): Ignore stderr, check
7062         that the macro is not present anymore in the updated
7063         configure.ac.
7064         * tests/tools.at (autoupdate AC_LINK_FILES): Ignore stderr
7065         of autoupdate.
7067 2004-01-28  Paul Eggert  <eggert@twinsun.com>
7069         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): Add 2004 to
7070         copyright years.
7071         * lib/autoconf/general.m4 (_AC_INIT_COPYRIGHT): Add 1992 thorugh
7072         2003 (except 1997) to the list of copyright years.  This undoes
7073         the 2003-05-22 change, which removed the older years from the list.
7074         * lib/autoconf/status.m4 (AC_OUTPUT): Update copyright date to 2004.
7076 2004-01-27  Gary V. Vaughan  <gary@gnu.org>
7077             Albert Chin-A-Young  <china@thewrittenword.com>
7079         * lib/autoconf/programs.m4 (AC_PROG_GREP): New macro to test for a
7080         grep or ggrep program in PATH that accepts as long lines as
7081         possible.
7082         * lib/autoconf/programs.m4 (_AC_PROG_GREP): Factor out the core of
7083         AC_PROG_GREP.
7084         (AC_PROG_EGREP, AC_PROG_FGREP): Use it to find best available
7085         egrep and fgrep respectively if $GREP -E/-F don't work.
7086         (_AC_PATH_PROG_FEATURE_CHECK): Factor out the common core of
7087         _AC_PROG_GREP, and AC_PROG_SED.
7088         (_AC_FEATURE_CHECK_LENGTH): New helper macro for finding the
7089         longest input length accepted by a command.
7090         (AC_PROG_SED): Use it.
7091         * doc/autoconf.texi (Particular Programs): Document the changes.
7092         * NEWS: Updated.
7094 2004-01-27  Paul Eggert  <eggert@twinsun.com>
7096         * bin/autoconf.as ($version): Update copyright from 2003 to 2004.
7097         * bin/autoheader.in, bin/autom4te.in, bin/autoreconf.in,
7098         bin/autoscan.in, bin/autoupdate.in, bin/ifnames.in: Likewise.
7099         * lib/autoconf/general.m4 (_AC_INIT_COPYRIGHT): Likewise.
7101         * Makefile.in, aclocal.m4, configure, bin/Makefile.in,
7102         bin/autoconf.in, config/Makefile.in, config/config.guess,
7103         config/config.sub, config/install-sh, config/mdate-sh,
7104         config/mkinstalldirs, config/texinfo.tex, doc/Makefile.in,
7105         lib/Makefile.in, lib/Autom4te/Makefile.in,
7106         lib/autoconf/Makefile.in, lib/autoscan/Makefile.in,
7107         lib/autotest/Makefile.in, lib/emacs/Makefile.in,
7108         lib/m4sugar/Makefile.in, man/Makefile.in, man/autoconf.1,
7109         man/autoheader.1, man/autom4te.1, man/autoreconf.1,
7110         man/autoscan.1, man/autoupdate.1, man/config.guess.1,
7111         man/config.sub.1, man/ifnames.1, tests/Makefile.in,
7112         tests/acc.at, tests/acfortran.at, tests/acfunctions.at,
7113         tests/acgeneral.at, tests/acheaders.at, tests/aclang.at,
7114         tests/aclibs.at, tests/acspecific.at, tests/acstatus.at,
7115         tests/actypes.at: Regenerate and/or sync with original
7116         sources.
7118 2004-01-26  Paul Eggert  <eggert@twinsun.com>
7120         * doc/autoconf.texi (Default Includes): Include <stdint.h> even if
7121         HAVE_INTTYPES_H is defined.  This is needed on Tru64 5.1b with
7122         Compac C V6.5-207 (dtk), which defines uintmax_t in <stdint.h> but
7123         not <inttypes.h>.  Problem reported by Tim Mooney in
7124         <http://mail.gnu.org/archive/html/bug-coreutils/2004-01/msg00147.html>.
7125         * lib/autoconf/headers.m4 (_AC_INCLUDES_DEFAULT_REQUIREMENTS):
7126         Likewise.
7128         * lib/autoconf/programs.m4 (AC_PROG_SED): Use diff, not sed;
7129         otherwise "make check" fails because it forbids cmp (I guess
7130         because cmp treats files as binary on DOS-like systems).
7132         * tests/mktests.sh: Update copyright date to 2004, since some tests
7133         have changed in 2004.
7135 2004-01-23  Gary V. Vaughan  <gary@gnu.org>
7137         * lib/autoconf/programs.m4 (AC_PROG_SED):  New macro to test for a
7138         non-truncating sed or gsed program in PATH.
7139         * tests/acprograms.at: Add it.
7140         * doc/autoconf.texi (Particular Programs): Document it.
7141         * NEWS: Updated.
7143 2004-01-15  Paul Eggert  <eggert@twinsun.com>
7145         * lib/autoconf/c.m4 (_AC_PROG_CC_STDC): Try -std, not -std1, since
7146         -std1 disables some useful extensions on Tru64.  Problem reported
7147         by N. Lichtmaier in
7148         <http://mail.gnu.org/archive/html/autoconf/2004-01/msg00100.html>.
7150 2004-01-14  Paul Eggert  <eggert@twinsun.com>
7152         * doc/autoconf.texi (Programming in M4sh): Document that
7153         AS_MKDIR_P succeeds if the destination is a symbolic link
7154         to an existing directory.
7155         (Limitations of Usual Tools): Note that mkdir -p might not
7156         succeed on symlinks to directories.
7158 2004-01-13  Paul Hilfinger  <hilfinger@CS.Berkeley.EDU>
7160         * lib/autoconf/autoupdate.m4 (AU_DEFUN): Grammar fix in comment.
7161         * bin/autoheader.in: Grammar fix in message.
7162         * lib/m4sugar/m4sh.m4 (AS_MKDIR_P):
7163         Test for dir before calling mkdir -p.  (trivial changes)
7165 2004-01-13  Eric Blake  <ebb9@byu.net>
7167         * doc/autoconf.texi (Obsolete Macros): In AC_TRY_COMPILE and
7168         AC_TRY_LINK, s/AC_LANG_SOURCE/AC_LANG_PROGRAM/.  (trivial change)
7170 2004-01-10  Jim Meyering  <jim@meyering.net>
7172         * doc/autoconf.texi (Running the Preprocessor): Correct grammar.
7174 2004-01-09  Paul Eggert  <eggert@twinsun.com>
7176         * lib/autoconf/general.m4: Fix bug: AC_CHECK_SIZEOF evokes a warning
7177         with `autoconf -Wall,error'.  Bug reported by Eric Blake in:
7178         http://mail.gnu.org/archive/html/autoconf-patches/2004-01/msg00000.html
7179         (_AC_COMPUTE_INT_COMPILE): Invoke _AC_COMPILE_IFELSE, not
7180         AC_COMPILE_IFELSE, since we now assume our caller invokes
7181         AC_LANG_COMPILER_REQUIRE, for symmetry with _AC_COMPUTE_INT_RUN.
7182         (_AC_COMPUTE_INT_RUN): Likewise, for _AC_RUN_IFELSE instead
7183         of AC_RUN_IFELSE; this avoids the warning mentioned above.
7184         (_AC_COMPUTE_INT): Invoke AC_LANG_COMPILER_REQUIRE.
7186 2004-01-07  Paul Eggert  <eggert@twinsun.com>
7188         * lib/autoconf/general.m4 (_AC_LIBOBJS_NORMALIZE): Avoid \$ inside
7189         `"'...'"`, as it's confusing (and I suspect it may not work on
7190         some platforms).  The code was incorrect anyway, as it assumed
7191         that \$ evaluated to itself in that context.  Reported by
7192         Alexandre Duret-Lutz.
7194 2004-01-07  Alexandre Duret-Lutz  <adl@gnu.org>
7196         * lib/autom4te.in (Automake-preselections): Preselect AC_LIBTOOL_TAGS
7197         and _LT_AC_TAGCONFIG.
7199 2004-01-06  Paul Eggert  <eggert@twinsun.com>
7201         * doc/autoconf.texi (One Macro Call): Fix an incorrect
7202         example, and add more examples.  Reported by Eric Sunshine.
7204 2004-01-05  Paul Eggert  <eggert@twinsun.com>
7206         * doc/autoconf.texi (Limitations of Usual Tools):
7207         Remove warning against "rm -fr" introduced yesterday; it
7208         was a false alarm.
7210         * bin/Makefile.am (autoconf, autoheader, autom4te, autoreconf,
7211         autoscan, autoupdate, ifnames): Don't use chmod -w.
7212         * lib/Makefile.am (autom4te.cfg): Likewise.
7213         * doc/autoconf.texi (Limitations of Usual Tools): Warn against
7214         "chmod -w".
7216 2004-01-04  Paul Eggert  <eggert@twinsun.com>
7217             Paolo Bonzini  <bonzini@gnu.org>
7219         * lib/m4sugar/m4sh.m4 (_AS_LINENO_PREPARE): Speed up sed scripts
7220         by doing lineno substitution only on lines containing "$LINENO".
7222 2004-01-04  Paul Eggert  <eggert@twinsun.com>
7224         * lib/autoconf/general.m4 (AC_ARG_PROGRAM):
7225         Use "rm -f" to remove conftest.sed, not plain "rm".
7226         Bug reported by David Relson in
7227         <http://mail.gnu.org/archive/html/autoconf/2004-01/msg00011.html>.
7229         * Makefile.am (autom4te-update):
7230         Replace "rm -rf" and "rm -fr" with "rm -f -r", as POSIX requires.
7231         * Makefile.maint (my-distcheck, do-po-update): Likewise.
7232         * doc/autoconf.texi (Guidelines): Likewise.
7233         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Likewise.
7234         * lib/autoconf/libs.m4 (_AC_PATH_X_XMKMF): Likewise.
7235         * lib/autoconf/specific.m4 (AC_SYS_LONG_FILE_NAMES): Likewise.
7236         * lib/autotest/general.m4 (AT_INIT): Likewise.
7237         * lib/m4sugar/m4sh.m4 (AS_TMPDIR): Likewise.
7238         * tests/Makefile.am (clean-local): Likewise.
7239         * tests/tortue.at (AC_CONFIG_FILES, HEADERS, LINKS and COMMANDS,
7240         srcdir): Likewise.
7241         * doc/autoconf.texi (Limitations of Usual Tools):
7242         Warn against "rm -fr".
7244 2004-01-03  Paul Eggert  <eggert@twinsun.com>
7246         * doc/autoconf.texi (Limitations of Usual Tools): Mention that cc
7247         -c -o might not work.  From a suggestion by Kevin Ryde.
7248         (C Compiler, Generating Sources, Limitations
7249         of Usual Tools, Limitations of Make, Making testsuite Scripts):
7250         Don't put '-o' after non-options, as POSIX doesn't allow this.
7251         Mention that cc's name might be gcc or c89 or whatever.
7253 2004-01-04  Kevin Ryde  <user42@zip.com.au>
7255         * doc/autoconf.texi: Add various further index entries.
7257 2003-12-29  Paul Eggert  <eggert@twinsun.com>
7259         * bin/autoreconf.in (autoreconf_current_directory):
7260         Fix typo: mkdir without umask arg.
7262 2003-12-27  Alexandre Duret-Lutz  <adl@gnu.org>
7264         * doc/autoconf.texi (Limitations of Make) <Automatic rule rewriting>:
7265         Documents OSF1/Tru64 make behavior.  Replace `VPATH = ../src' by
7266         `VPATH = ../pkg/src' in examples to make the OSF1/Tru64 make
7267         explanation clearer.
7269 2003-12-24  Andreas Schwab  <schwab@suse.de>
7271         * doc/autoconf.texi (Default Includes): Fix misspelling of
7272         AC_INCLUDES_DEFAULT.
7274 2003-12-03  Paolo Bonzini  <bonzini@gnu.org>
7276         * configure.ac: Test if sh -n works.
7277         * configure: Regenerate.
7278         * tests/atlocal.in: Store the result here.
7279         * tests/local.at (AT_CHECK_SHELL_SYNTAX): Extracted from
7280         tools.at, looking in atlocal's ac_cv_sh_n_works instead
7281         of explicitly testing.
7282         (AT_CHECK_PERL_SYNTAX): Moved from tools.at.
7283         (AT_CHECK_AUTOCONF): Test for the configure script syntax.
7284         * tests/tools.at (Syntax of the shell scripts): Simplify
7285         using AT_CHECK_SHELL_SYNTAX.
7286         (Syntax of the Perl scripts): Remove definition of
7287         AT_CHECK_PERL_SYNTAX.
7289 2003-12-03  Paolo Bonzini  <bonzini@gnu.org>
7291         * lib/m4sugar/m4sh.m4 (_AS_SHELL_FN_WORK): Redirect
7292         stderr to /dev/null.
7293         * bin/autoconf.in: Regenerate.
7294         * bin/wrapper.in: Regenerate.
7296 2003-11-26  Paolo Bonzini  <bonzini@gnu.org>
7298         * lib/m4sugar/m4sh.m4 (_AS_BOURNE_COMPATIBLE):
7299         Extracted from AS_SHELL_SANITIZE.
7300         (_AS_SHELL_FN_WORK, AS_INIT_WITH_SHELL_FN): New
7301         macros.
7302         (AS_SHELL_SANITIZE): Move reinvocation code from
7303         _AS_LINENO_WORKS, use it to find out if shell
7304         functions work.
7305         (_AS_LINENO_WORKS): Don't find another shell if $LINENO
7306         does not work.
7307         (AS_INIT): Pass parameter down to AS_SHELL_SANITIZE.
7308         (AS_REQUIRE_SHELL_FN): Test that AS_INIT_WITH_SHELL_FN
7309         was called.
7310         * lib/autotest/general.m4: Use AS_INIT_WITH_SHELL_FN.
7311         * bin/autoconf.in: Regenerate.
7312         * tests/wrapper.in: Regenerate.
7313         * tests/tools.at: Test the syntax of tests/autoconf
7314         and tests/testsuite.
7316 2003-11-24  Akim Demaille  <akim@epita.fr>
7318         * config/announce-gen (&print_locations, &print_signatures)
7319         (&sizes): New.
7320         Use them.
7321         No longer rely on Gnus to inline the list of signatures: compute
7322         them on the fly.
7324 2003-11-24  Akim Demaille  <akim@epita.fr>
7326         * doc/autoconf.texi (Particular Programs): AC_PROG_LEX can
7327         override some files.
7328         (Input): AC_CONFIG_AUX_DIR(aux) is a bad idea on DOS.
7329         From Debian Autoconf 2.58.
7331 2003-11-24  Akim Demaille  <akim@epita.fr>
7333         * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): Quote $ac_popdir
7334         uses.
7335         From Debian Autoconf 2.58.
7337 2003-11-24  Paolo Bonzini  <bonzini@gnu.org>
7339         * TODO: Remove already done things.  Update the part about finding
7340         tools for the target.
7342 2003-11-24  Paolo Bonzini  <bonzini@gnu.org>
7344         * lib/autoconf/headers.m4 (AC_USG, AC_MEMORY_H, AC_DIR_HEADER):
7345         Make wording more consistent.
7346         * lib/autoconf/specific.m4 (AC_CYGWIN, AC_EMXOS2, AC_MINGW32):
7347         Explain the transition better.
7348         * lib/autoconf/types.m4 (AC_INT_16_BITS, AC_LONG_64_BITS): Explain
7349         the transition better.
7351 2003-11-24  Paolo Bonzini  <bonzini@gnu.org>
7353         * doc/autoconf.texi (Obsoleting Macros): Don't document the third
7354         parameter of AU_DEFUN.
7355         * lib/autoconf/autoupdate.m4 (AU_DEFINE): Remove.
7356         (AU_DEFUN): Remove the third parameter, it was not used.
7357         Use AC_DEFUN directly, not AU_DEFINE.
7358         * lib/autoconf/status.m4 (AC_LINK_FILES): Move the message into
7359         the expanded body, consistently with other macros such as AC_USG.
7361 2003-11-17  Paul Eggert  <eggert@twinsun.com>
7363         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Put at least 14 bytes
7364         into the initial confdefs.h, to work around a bug in NextStep 3.3
7365         patch 3 reported by Eric Sunshine.
7367 2003-11-15  Kevin Ryde  <user42@zip.com.au>
7369         * doc/autoconf.texi (Using System Type): Revise, showing $host rather
7370         than $target since the latter is not usual, add guidelines on when to
7371         use or not use the system type.
7373 2003-11-12  Derek Price  <derek@ximbiot.com>
7375         * doc/autoconf.texi (Limitations of Usual Tools): Fix what looks like a
7376         typo misrepaired by an auto-spellcheck.
7378 2003-11-12  Akim Demaille  <akim@epita.fr>
7380         * bin/autoreconf.in (&parse_args): Don't call automake with
7381         --force-missing unless it actually supports it.
7382         From Debian #219336.
7384 2003-11-12  Akim Demaille  <akim@epita.fr>
7386         * configure.ac: Bump to 2.59a.
7387         Require 2.59.
7389 2003-11-06  Akim Demaille  <akim@epita.fr>
7391         Version 2.59.
7393 2003-11-05  Alexandre Duret-Lutz  <adl@gnu.org>
7395         * lib/autoconf/status.m4 (_AC_SRCPATHS): Fix use of AS_SET_CATFILE
7396         so that ac_abs_builddir, ac_abs_top_builddir, ac_abs_srcdir,
7397         and ac_abs_top_srcdir are absolute paths.
7398         * lib/m4sugar/m4sh.m4 (AS_SET_CATFILE): Remove misleading comment.
7400 2003-11-05  Akim Demaille  <akim@epita.fr>
7402         * configure.ac: Bump to 2.58a.
7404 2003-11-05  Kevin Ryde  <user42@zip.com.au>
7406         * doc/autoconf.texi (Using Autotest): Avoid @strong{Note: ...}, since
7407         it provokes a warning from makeinfo about looking like a cross
7408         reference in info output.
7410         * doc/autoconf.texi (Function Portability): Add notes on signal
7411         handler return type, as per AC_TYPE_SIGNAL.
7413 2003-11-04  Akim Demaille  <akim@epita.fr>
7415         Version 2.58.
7416         * doc/standards.texi: Update from master.
7418         * tests/mktests.sh (ac_exclude_list): Add AC_FC_FREEFORM.
7420 2003-11-04  Akim Demaille  <akim@epita.fr>
7422         AC_CONFIG_FILE([d1/foo:d2/foo]) triggers error messages when
7423         computing the absolute path to d1 in the source hierarchy: it may
7424         not exist at all.  So don't cd into it.
7425         From Alexandre Duret-Lutz.
7426         http://mail.gnu.org/archive/html/bug-autoconf/2003-10/msg00205.html
7428         * lib/m4sugar/m4sh.m4 (AS_SET_CATFILE): New.
7429         From Paul Eggert, but named after Perl's IO::Spec->catfile.
7430         * doc/autoconf.texi (Programming in M4sh): Document.
7431         * lib/autoconf/status.m4 (_AC_SRCPATHS): Use it.
7433 2003-11-03  Pavel Roskin  <proski@gnu.org>
7435         * doc/autoconf.texi (Generic Structure Checks): Describe
7436         action-if-found and action-if-not-found in AC_CHECK_MEMBERS.
7438 2003-10-31  Akim Demaille  <akim@epita.fr>
7440         * tests/fortran.at (GNU Fortran 77): Don't run FC macros.
7441         (GNU Fortran): New.
7442         * doc/autoconf.texi (Language Choice): Document.
7443         * lib/autoconf/fortran.m4 (AC_FC_SRCEXT, AC_FC_FREEFORM): Assert
7444         the current language is Fortran.
7446 2003-10-31  Akim Demaille  <akim@epita.fr>
7448         * bin/autom4te.in (&freeze): Use a less likely warning separator
7449         than `\n\n', so that `\n\n\n' is valid in warnings.
7450         Reported by Steve Huston.
7452 2003-10-28  Akim Demaille  <akim@epita.fr>
7454         * Makefile.cfg (local_updates, executable-update): Tweak to be
7455         robust to parallel makes.
7456         Suggested by Alexandre Duret-Lutz.
7458 2003-10-27  Akim Demaille  <akim@epita.fr>
7460         * Makefile.cfg (executable-update): New.
7461         (local_updates): Call it.
7463 2003-10-27  Akim Demaille  <akim@epita.fr>
7465         * lib/autoconf/general.m4 (_AC_RUN_IFELSE, _AC_INIT_PREPARE):
7466         Don't remove core.* as it may remove valid user files.
7467         * lib/autoconf/functions.m4 (AC_FUNC_SETVBUF_REVERSED)
7468         (AC_FUNC_UTIME_NULL): Likewise.
7470 2003-10-23  Akim Demaille  <akim@epita.fr>
7472         Version 2.57g.
7473         * config/config.guess, config/config.sub: Upgrade from masters.
7475 2003-10-23  Akim Demaille  <akim@epita.fr>
7477         * lib/autoconf/fortran.m4 (AC_FC_SRCEXT): Functions using
7478         AC_COMPILE_IFELSE that use break skip the clean up.  So do it by
7479         hand...
7481 2003-10-23  Akim Demaille  <akim@epita.fr>
7483         * lib/autoconf/general.m4 (_AC_LINK_IFELSE, _AC_COMPILE_IFELSE):
7484         Don't forget to remove conftest.err.
7486 2003-10-23  Akim Demaille  <akim@epita.fr>
7488         * lib/autoconf/general.m4 (_AC_LIBOBJ): Don't insert twice the
7489         same object file in $LIBOBJS.
7490         Reported by Alexandre Duret-Lutz & Derek Robert Price.
7491         * doc/autoconf.texi (Generic Functions): Adjust.
7493 2003-10-20  Paul Eggert  <eggert@twinsun.com>
7495         * lib/m4sugar/m4sh.m4 (_AS_TR_SH_PREPARE, _AS_TR_CPP_PREPARE):
7496         Use 'eval', so that the resulting configure scripts work even if
7497         the current directory has a weird file name like 'y%s+%pp%;s%@%_%g'.
7499 2003-10-20  Daniel Jacobowitz  <drow@mvista.com>
7501         * lib/autoconf/lang.m4 (AC_LANG_WERROR): New macro.
7502         * lib/autoconf/general.m4 (_AC_COMPILE_IFELSE, _AC_PREPROC_IFELSE)
7503         (_AC_LINK_IFELSE): Check the werror flag.
7504         * doc/autoconf.texi (Generic Compiler Characteristics): Document
7505         AC_LANG_WERROR.
7506         * NEWS: Mention it.
7508 2003-10-20  Daniel Jacobowitz  <drow@mvista.com>
7510         * lib/autoconf/lang.m4 (AC_NO_EXECUTABLES): Override
7511         _AC_COMPILER_EXEEXT to attempt a link.  If linking fails,
7512         override AC_LINK_IFELSE.
7514 2003-10-15  Paul Eggert  <eggert@twinsun.com>
7516         * lib/m4sugar/m4sh.m4 (_AS_UNSET_PREPARE): Work around a bug in
7517         pdksh 5.2.14.  Bug reported by Ralf Corsepius.
7518         * doc/autoconf.texi (Shellology): Mention the Korn shell and pdksh.
7519         Mention /usr/dt/bin/dtksh on Solaris.
7520         (Shell Substitutions): Warn about $((...)).
7521         (Parentheses): New section.
7523 2003-10-15  Kevin Ryde  <user42@zip.com.au>
7525         * doc/autoconf.texi (Function Portability): Add @prindex for exit.
7526         Add putenv and unsetenv.  Add sysconf _SC_PAGE_SIZE.
7528 2003-10-13  Nathanael Nerode  <neroden@gcc.gnu.org>
7530         * lib/autoconf/functions.m4 (AC_FUNC_FORK): Trivial fix for vfork
7531         cross test.
7533 2003-10-11  Steven G. Johnson  <stevenj@alum.mit.edu>
7535         * lib/autoconf/fortran.m4 (_AC_PROG_FC): Use the new official
7536         name for the GNU Fortran 95+ compiler, 'gfortran', not 'g95'.
7538 2003-10-10  Andreas Schwab  <schwab@suse.de>
7540         * bin/autoheader.in: Avoid empty first line in --version and
7541         --help output.
7542         * bin/ifnames.in: Likewise.
7544 2003-10-09  Paul Eggert  <eggert@twinsun.com>
7546         * lib/Autom4te/XFile.pm: Don't assume -j is solo.
7547         Issue a more-informative diagnostic.
7548         Problems reported by Eric Sunshine.
7550 2003-10-08  Steven G. Johnson  <stevenj@alum.mit.edu>
7552         * lib/autoconf/fortran.m4 (_AC_PROG_FC_V_OUTPUT): Omit quoted
7553         -mGLOB_options_string stuff for Intel ifc, which can cause
7554         _AC_FC_LIBRARY_LDFLAGS to fail.  Use (faster) case for
7555         pattern-matching instead of grep.
7557 2003-10-08  Steven G. Johnson  <stevenj@alum.mit.edu>
7559         * doc/autoconf.texi: Document new FC Fortran macros.
7561 2003-10-08  Gary V. Vaughan  <gary@gnu.org>
7563         * lib/autoconf/general.m4 (AC_CONFIG_MACRO_DIR): Stub out a macro
7564         that future autopoint/aclocal/automake/autoreconf will be able
7565         to trace to find where to install local m4 macros.
7566         * doc/autoconf.texi (Input): Document it.
7567         * NEWS: Updated.
7569 2003-10-06  Gary V. Vaughan  <gary@gnu.org>
7571         * lib/autoconf/fortran.m4 (_AC_FC_LIBRARY_LDFLAGS): Add
7572         -lcrtbegin.o to list of ignored flags and fix underquoting of
7573         -lcrt[01].o.
7575 2003-10-04  Steven G. Johnson  <stevenj@ab-initio.mit.edu>
7577         * lib/autoconf/fortran.m4 (_AC_PROG_FC_G): Use language-specific
7578         cache variable instead of $G77 to decide whether to include -O2,
7579         since $G77 is specific to Fortran 77.
7581 2003-10-03  Steven G. Johnson  <stevenj@alum.mit.edu>
7583         * lib/autoconf/fortran.m4 (AC_FC_FREEFORM): Support Absoft "-f
7584         free" flag.  Re-order flags tested into rough order of popularity.
7586 2003-10-03  Steven G. Johnson  <stevenj@alum.mit.edu>
7588         * lib/autoconf/fortran.m4 (AC_PROG_FC): Reverse the order of the
7589         arguments so that it can be used with syntax identical to
7590         AC_PROG_F77, and so that we can more easily decide to
7591         remove/deprecate the DIALECT optional argument in the future if it
7592         proves troublesome.
7593         (AC_FC_FREEFORM): Exit 77 upon failure to fix test suite for
7594         non-freeform-supporting compilers.  Document freeform flags.
7596 2003-10-03  Akim Demaille  <akim@epita.fr>
7598         * configure.ac: Look for emacs, not macs.
7599         Reported by Eric Sunshine.
7601 2003-10-03  Akim Demaille  <akim@epita.fr>
7603         * lib/autom4te.in (Autoreconf-preselections): Trace AC_CONFIG_AUX_DIR.
7604         * bin/autoreconf.in (autoreconf_current_directory): Create the
7605         AUX_DIR if needed, for sake of automake --add-missing etc.
7606         Suggested by Alexandre Duret-Lutz.
7608 2003-10-03  Akim Demaille  <akim@epita.fr>
7610         * configure.ac: Quotation and formatting changes.
7611         (EMACS): Don't set it if it is not recent enough to support
7612         autoconf-mode.el.
7613         From Eric Sunshine.
7615 2003-10-02  Akim Demaille  <akim@epita.fr>
7617         * bin/ifnames.in (&scan_file): Skip C++ comments.
7618         From Jeremy Yallop.
7620 2003-10-01  Pavel Roskin  <proski@gnu.org>
7622         * doc/autoconf.texi (Particular Structure Checks):
7623         Fix misspelling of HAVE_STRUCT_STAT_ST_BLOCKS.
7625 2003-10-01  Akim Demaille  <akim@epita.fr>
7627         Version 2.57f.
7629 2003-09-30  Paul Eggert  <eggert@twinsun.com>
7631         * lib/Autom4te/XFile.pm: Use Errno.
7632         (lock): Ignore ENOLCK errors.  Problem reported Andreas Schwab in
7633         <http://mail.gnu.org/archive/html/bug-autoconf/2003-09/msg00141.html>.
7635 2003-09-30  Akim Demaille  <akim@epita.fr>
7637         * config/announce-gen (&print_news_deltas): Extracted from...
7638         (&print_changelog_deltas): here.
7639         (&news_file): Rename as...
7640         (@news_file): this.
7642 2003-09-30  Nicolas Joly  <njoly@pasteur.fr>
7644         * lib/autoconf/fortran.m4 (_AC_PROG_FC): Remove files which might
7645         have been created when invoking the compiler.
7646         * tests/fortran.at (GNU Fortran 77): Quote $G77.
7648 2003-09-29  Akim Demaille  <akim@epita.fr>
7650         Version 2.57e.
7652         * config/mkinstalldirs: Upgrade.
7654 2003-09-28  Paul Eggert  <eggert@twinsun.com>
7656         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Set DUALCASE=1, for MKS sh.
7657         Problem reported by Lars J. Aas in
7658         <http://mail.gnu.org/archive/html/autoconf/2003-07/msg00042.html>.
7659         (_AS_MKDIR_P_PREPARE): Change "rm -fr ./-p" to the more-conservative
7660         "test -d ./-p && rmdir ./-p".  Suggested by Andreas Schwab in:
7661         http://mail.gnu.org/archive/html/autoconf-patches/2003-09/msg00039.html
7663 2003-09-26  Akim Demaille  <akim@epita.fr>
7665         * lib/autoconf/status.m4 (_AC_OUTPUT_COMMANDS): Make sure the
7666         directory for AC_CONFIG_COMMANDS' first argument exists.
7667         This makes valid the invocation of _AC_SRCPATH that follows.
7668         Reported by Eric Sunshine.
7669         * doc/autoconf.texi (Configuration Commands): Adjust.
7671 2003-09-26  Akim Demaille  <akim@epita.fr>
7673         * bin/autoscan.in (Autom4te::FileUtils): Use it for find_file.
7674         Reported by Ralf Corsepius.
7676 2003-09-26  Akim Demaille  <akim@epita.fr>
7678         * lib/autoconf/general.m4 (AC_HELP_STRING): Don't overquote the
7679         arguments.
7680         Actually, use AU_ALIAS.
7681         From Bruno Haible.
7683 2003-09-26  Paul Eggert  <eggert@twinsun.com>
7685         * lib/m4sugar/m4sh.m4 (_AS_MKDIR_P_PREPARE): If mkdir -p . fails,
7686         rm -fr ./-p to remove junk left behind on NextStep and OpenStep.
7687         Problem reported by Eric Sunshine in:
7688         http://mail.gnu.org/archive/html/autoconf-patches/2002-12/msg00014.html
7690 2003-09-26  Akim Demaille  <akim@epita.fr>
7692         The test suite are sometimes assigning timings incorrectly.
7693         Reported by Henk Krus.
7694         Diagnosed by Nicolas Joly.
7696         * lib/autotest/general.m4 (AT_CLEANUP): Rename AT_help as
7697         AT_help_all.
7698         Instead of making AT_help a sequence of assignments to grow
7699         $at_help_all, just make AT_help_all be the growing contents of
7700         $at_help_all, and make a single assignment in...
7701         (AT_INIT): here.
7702         (at_times_skip): Flip the meaning and rename as...
7703         (at_times_p): this.
7704         (AT_INIT): When summarizing the test that ran, remove
7705         $at_times_file after use, and check it is present before trying to
7706         use it.
7708 2003-09-25  Akim Demaille  <akim@epita.fr>
7710         Version 2.57d.
7712         * bin/Makefile.am (edit): Handle '@configure_input@'.
7713         (autoconf, autoheader, autom4te, autoreconf, autoscan, autoupdate)
7714         (ifnames): chmod -w.
7715         * tests/wrapper.as (AUTOCONF, AUTOM4TE, ): Point to tests/
7716         executables, not bin/ executables!  Otherwise all the magic needed
7717         to find non installed files is turned off.  This caused a failure
7718         of test 40 and 41 that ran aclocal 1.8 which in turn ran autom4te
7719         as found in its environment (sent by tests/autoreconf): pointing
7720         to bin/autom4te that could not find its files.
7721         * tests/mktests.sh: Force the replacement of generated files, for
7722         the sake of "mv" program that are interactive when overwriting a
7723         -w file.
7724         * config/install-sh: Upgrade from CVS Automake.
7726 2003-09-23  Paul Eggert  <eggert@twinsun.com>
7728         * doc/autoconf.texi (Limitations of Builtins): Document test -h
7729         versus test -L issues.
7731 2003-09-23  Daniel Jacobowitz  <drow@mvista.com> and
7732             Paul Eggert  <eggert@twinsun.com>
7734         Trivial change to support GCC's configuration procedure.
7735         * lib/autoconf/c.m4 (AC_PROG_CPP_WERROR): New macro.
7736         * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_MONGREL): Don't warn
7737         about inconsistency if the preprocessor is set to give errors for
7738         any warning.
7739         * doc/autoconf.texi (C Compiler Characteristics): Document this.
7741 2003-09-13  Alexandre Duret-Lutz  <adl@gnu.org>
7743         * Makefile.am (autom4te-update, autom4te_files): Fetch Struct.pm
7744         and XFile.pm from Automake.
7745         * lib/Autom4te/XFile.pm: Update from Automake.
7747 2003-09-12  Akim Demaille  <akim@epita.fr>
7749         Version 2.57c.
7751 2003-09-12  Akim Demaille  <akim@epita.fr>
7753         * config/config.guess, config/config.sub, config/missing,
7754         * lib/Autom4te/Channels.pm, lib/Autom4te/Configure_ac.pm: Update
7755         from masters.
7757 2003-09-12  Akim Demaille  <akim@epita.fr>
7759         * doc/autoconf.texi (Header Portability): Promote linux/types.h,
7760         not asm/types.h.
7762 2003-09-11  Akim Demaille  <akim@epita.fr>
7764         * doc/autoconf.texi (Header Portability): linux/random.h.
7765         From Peter Hendrickson.
7767 2003-09-10  Akim Demaille  <akim@epita.fr>
7769         * tests/mktests.sh (au_exclude_egrep): Make it harder to be
7770         willing to edit the output files.
7772 2003-09-10  Akim Demaille  <akim@epita.fr>
7774         * tests/fortran.at (GNU Fortran 77): Also exercise AC_FC_SRCEXT
7775         and AC_FC_FREEFORM.
7776         * tests/mktests.sh: Skip AC_FC_SRCEXT.
7777         * lib/autoconf/fortran.m4 (AC_FC_SRCEXT, AC_FC_FREEFORM): Likewise.
7779 2003-09-09  Akim Demaille  <akim@epita.fr>
7781         * lib/Autom4te/FileUtils.pm (&update_file): s/cannot not/cannot/g.
7782         Reported by Gary Vaughan.
7783         * bin/autom4te.in (handle_m4): Likewise.
7785 2003-09-09  Akim Demaille  <akim@epita.fr>
7787         * lib/Autom4te/FileUtils.pm (&update_file): Be sure not to leave
7788         trailing files.
7790 2003-09-07  Paul Eggert  <eggert@twinsun.com>
7792         * lib/autoconf/specific.m4 (AC_SYS_RESTARTABLE_SYSCALLS):
7793         Improve the accuracy of the wording about obsolescence.
7794         From a suggestion by Ian Lance Taylor in
7795         <http://mail.gnu.org/archive/html/autoconf/2003-09/msg00044.html>.
7797 2003-09-05  Paul Eggert  <eggert@twinsun.com>
7799         * lib/autoconf/fortran.m4 (AC_FC_FREEFORM): Try -ffree-form too,
7800         for the benefit of g77 3.2.  Fix suggested by Steven G. Johnson.
7802 2003-09-04  Akim Demaille  <akim@epita.fr>
7804         * tests/mktests.sh (ac_exclude_list): Fix the filtering of
7805         AC_FUNC_WAIT3.
7807 2003-09-04  Akim Demaille  <akim@epita.fr>
7809         * bin/autom4te.in: Use &fatal where more appropriate than &error.
7810         (freeze): When exiting, use $exit_code.
7811         * lib/autoconf/fortran.m4: Comment changes.
7813 2003-09-04  Akim Demaille  <akim@epita.fr>
7815         * tests/mktests.sh (ac_exclude_list): Add AC_FC_FUNC.
7817 2003-09-02  Steven G. Johnson  <stevenj@alum.mit.edu>
7819         Add support for newer Fortran dialects.  The F77 interface is
7820         unchanged, and continues to support Fortran 77.  New FC macros
7821         correspond to all the old F77 macros, with output variables FC,
7822         FCFLAGS, and FCLIBS.  AC_PROG_FC defaults to picking the newest
7823         available dialect, but older dialects can be specified.  There are
7824         new macros AC_FC_SRCEXT to set the source extension, and
7825         AC_FC_FREEFORM to accept free-form source files.
7827         * lib/autoconf/c.m4 (_AC_LANG_PREFIX(C), _AC_LANG_PREFIX(C++)):
7828         New macros.
7829         (AC_LANG_PROGRAM(C)): Invoke _AC_LANG_PROGRAM_C_FC_HOOKS if defined.
7830         * lib/autoconf/fortran.m4 (AC_LANG(Fortran), _AC_FORTRAN_ASSERT,
7831         _AC_LANG_ABBREV(Fortran), _AC_LANG_PREFIX(Fortran 77),
7832         _AC_LANG_PREFIX(Fortran), _AC_FC, AC_LANG_SOURCE(Fortran),
7833         AC_LANG_PROGRAM(Fortran), AC_LANG_CALL(Fortran),
7834         AC_LANG_PREPROC(Fortran), AC_LANG_COMPILER(Fortran),
7835         _AC_FC_DIALECT_YEAR, _AC_F95_FC, _AC_F90_FC, _AC_F77_FC,
7836         _AC_PROG_FC, AC_PROG_FC, _AC_PROG_FC_G, _AC_PROG_FC_C_O,
7837         AC_PROG_FC_C_O, _AC_PROG_FC_V_OUTPUT, _AC_PROG_FC_V,
7838         _AC_FC_LIBRARY_LDFLAGS, AC_FC_LIBRARY_LDFLAGS, _AC_FC_DUMMY_MAIN,
7839         AC_FC_DUMMY_MAIN, _AC_FC_MAIN, AC_FC_MAIN, __AC_FC_NAME_MANGLING,
7840         _AC_FC_WRAPPERS, AC_FC_WRAPPERS, _AC_FC_FUNC, AC_FC_FUNC,
7841         AC_FC_SRCEXT, AC_FC_FREEFORM):
7842         New macros.
7843         (AC_PROG_F77, AC_PROG_F77_C_O, AC_F77_LIBRARY_LDFLAGS,
7844         AC_F77_DUMMY_MAIN, AC_F77_MAIN, _AC_F77_NAME_MANGLING,
7845         AC_F77_NAME_MANGLING, AC_F77_WRAPPERS, AC_F77_FUNC):
7846         Rewrite in terms of the above.
7847         (_AC_PROG_F77_G, _AC_PROG_F77_V_OUTPUT, _AC_PROG_F77_V): Remove.
7848         * lib/autoconf/lang.m4 (_AC_LANG_PREFIX): New macro.
7849         * tests/acfortran.at: Test AC_FC_FREEFORM, AC_FC_FUNC,
7850         AC_FC_MAIN, AC_FC_SRCEXT, AC_FC_WRAPPERS, AC_PROG_FC_C_O.
7852 2003-09-02  Paul Eggert  <eggert@twinsun.com>
7854         * doc/autoconf.texi (Limitations of Usual Tools, Limitations of Make):
7855         Document problems with timestamp resolution that 'make', 'cp -p', and
7856         'touch -r' have.
7858 2003-08-27  Akim Demaille  <akim@epita.fr>
7860         * tests/m4sugar.at (cross_warning): Make sure to enable the
7861         output, so that we can track spurious m4sugar output.
7862         * tests/local.at: Require 2.57.
7863         (AT_CHECK_M4SUGAR, AT_CHECK_M4SH): Don't m4_default the arguments that
7864         are defaulted by AT_CHECK anyway.
7865         Use AT_CHECK_AUTOM4TE.
7866         * lib/m4sugar/m4sugar.m4: There should be no output at all: add a
7867         missing dnl.
7869 2003-08-27  Akim Demaille  <akim@epita.fr>
7871         * bin/autoheader.in: Issue the "Using auxiliary..." message only
7872         when -Wobsolete is set.
7873         Set it on by default.
7874         Suggested by Klee Dienes.
7876 2003-08-27  Akim Demaille  <akim@epita.fr>
7878         * doc/autoconf.texi (AC_FUNC_FSEEKO, AC_SYS_LARGEFILE): More
7879         documentation.
7880         From Guido Draheim.
7882 2003-08-26  Akim Demaille  <akim@epita.fr>
7884         * doc/autoconf.texi (Output): Make clear that one can run code
7885         after AC_OUTPUT.
7887 2003-08-25  Akim Demaille  <akim@epita.fr>
7889         * config/announce-gen, GNUmakefile, Makefile.maint: Update from
7890         CVS Bison.
7892 2003-08-25  Alexandre Duret-Lutz  <adl@gnu.org>
7894         * bin/autoreconf.in (parse_args): Do not pass --no-force to
7895         Automake versions prior to 1.8.
7897 2003-08-25  Akim Demaille  <akim@epita.fr>
7899         * doc/autoconf.texi (Header Portability): netinet/if_ether.h.
7900         From Ville Karaila.
7902 2003-08-24  Akim Demaille  <akim@epita.fr>
7904         * configure.ac: Bump to 2.57c.
7906 2003-08-22  Akim Demaille  <akim@epita.fr>
7908         Version 2.57b.
7910         * Makefile.cfg (local-checks-to-skip): New.
7911         * Makefile.maint (local-check): Rename as...
7912         (local-checks-available): this.
7913         (local-check): New.
7915         * Makefile.am (EXTRA_DIST): Add Makefile.cfg.
7916         * configure.ac: Require Automake 1.7.6.
7918 2003-08-22  Akim Demaille  <akim@epita.fr>
7920         Output stack traces in warnings.
7922         * lib/m4sugar/m4sugar.m4 (_m4_warn): New.
7923         Replace the former...
7924         (m4_warn): Pass the call stack to _m4_warn.
7925         * bin/autom4te.in: Adjust to output the call stack.
7926         * tests/m4sugar.at (m4@&t@_warn): Adjust.
7928 2003-08-22  Akim Demaille  <akim@epita.fr>
7930         * lib/Autom4te/Request.pm, lib/Autom4te/C4che.pm: New.
7931         * bin/autom4te.in: Adjust.
7933 2003-08-21  Akim Demaille  <akim@epita.fr>
7935         * lib/Autom4te/General.pm (&file_name_is_absolute): Remove.
7936         (&verbose): Remove.
7937         (&getopt): Adjust the note and verb channels, depending upon
7938         --verbose.
7939         * bin/autoheader.in, bin/autom4te.in, bin/autoscan.in,
7940         * bin/autoupdate.in: Adjust.
7941         Use &verb, not &verbose.
7943 2003-08-21  Akim Demaille  <akim@epita.fr>
7945         * bin/autoheader.in (&parse_args): Use &parse_warnings and
7946         &parse_WARNINGS.
7947         ($help): Use Autom4te::ChannelDefs::usage.
7948         * bin/autoscan.in: Use Autom4te::ChannelDefs.
7949         * lib/Autom4te/General.pm: Don't export error: you don't own it.
7951 2003-08-21  Akim Demaille  <akim@epita.fr>
7953         First stab at preserving warnings between calls to autom4te,
7954         including when the cache is used.
7956         There are still several issues: (i) there are too many runs of m4
7957         (one for include, one for warnings, and some more), (ii) warnings
7958         spreading on several lines are not handled gracefully, (iii) the
7959         code meant to have the call stack display for errors does not work
7960         (its handling should move from m4 to autom4te).
7962         * bin/autom4te.in Autom4te::Channels, Autom4te::ChannelDefs):
7963         Use them.
7964         (@preselect): Add m4_warn.
7965         ($exit_status): Remove, use $exit_code.
7966         ($help): Use Autom4te::ChannelDefs::usage.
7967         (&handle_m4): No longer define the m4_warnings.
7968         At each run, extract and report the warnings.
7969         Always cache the result, including if the exit status is on
7970         failure, since if nothing changes, we should result in the same
7971         failure, hence we can use the cache.
7972         * lib/m4sugar/m4sugar.m4 (m4_warning_ifelse, _m4_warning_ifelse)
7973         (_m4_warning_error_ifelse, __m4_warning_error_ifelse, _m4_warn):
7974         Remove.
7975         (m4_warn): Redefine as a do-nothing: it is its invocation that
7976         matters, as warnings are now reported via traces.
7977         * lib/autoconf/general.m4 (AC_DIAGNOSE): Don't make it a copy of
7978         the contents of m4_warn: make it _call_ m4_warn, so that tracing
7979         the latter reveals calls to the former.
7981         Adjust the tests.
7983         * tests/m4sugar.at (m4@&t@_warn): Use existing warning categories.
7985 2003-08-21  Akim Demaille  <akim@epita.fr>
7987         * bin/autoreconf.pm (Autom4te::Channels, Autom4te::ChannelDefs):
7988         Use them.
7990 2003-08-21  Akim Demaille  <akim@epita.fr>
7992         * lib/Autom4te/FileUtils.pm (&find_file): Walk the @include in
7993         forward order.
7994         * lib/Autom4te/ChannelDefs.pm: Doc typos.
7995         (&parse_warnings): Accept a list of warning requests.
7996         (&usage): Return a string, not a side effect.
7997         (cross): New warning category.
7999 2003-08-21  Akim Demaille  <akim@epita.fr>
8001         * lib/Autom4te/Configure_ac.pm (&find_configure_ac)
8002         (&require_configure_ac): Accept an optional directory argument.
8003         ($configure_ac): Remove.
8004         * lib/Autom4te/General.pm (&find_configure_ac, &canonfile)
8005         (&catfile): Remove.
8006         * bin/autoheader.in, bin/autoreconf.in, bin/autoupdate.in,
8007         * bin/autoscan.in: Adjust.
8009 2003-08-20  Akim Demaille  <akim@epita.fr>
8011         * bin/autoheader.in: Remove duplicate 'use Autom4te::FileUtils'.
8012         Reported by Alexandre Duret-Lutz.
8014 2003-08-20  Akim Demaille  <akim@epita.fr>
8016         * bin/autoupdate.in, bin/autoheader.in, bin/autoreconf.in,
8017         * bin/autom4te: Adjust.
8018         In particular, be Autoconf tools are really silent when properly
8019         working, bind the verbosity of the 'note' channel to $verbose.
8020         * lib/Autom4te/General.pm (&find_file, &mtime, &update_file)
8021         (&xsystem, &contents): Remove, since they are exported by...
8022         * lib/Autom4te/FileUtils.pm: this.
8023         More perldoc.
8024         * lib/Autom4te/General.pm (&up_to_date_p): Move to...
8025         * lib/Autom4te/FileUtils.pm: here.
8027 2003-08-20  Akim Demaille  <akim@epita.fr>
8029         * lib/Autom4te/Channels.pm, lib/Autom4te/ChannelDefs.pm
8030         * lib/Autom4te/Configure_ac.pm, lib/Autom4te/FileUtils.pm: New,
8031         from CVS Automake.
8033 2003-08-20  Akim Demaille  <akim@epita.fr>
8035         * Makefile.am (automake_cvsweb, automake_cvsargs, autom4te_files)
8036         (autom4te-update): New.
8037         * Makefile.cfg (update): Bind autom4te-update.
8039 2003-08-19  Derek Price  <derek@ximbiot.com>
8041         * lib/autotest/general.m4: Comment various HELP_* diversions.
8042         (PARSE_ARGS_BEGIN): New section for option parsing related
8043         initialization.
8044         (AT_ARG_OPTION,AT_ARG_OPTION_ARG,_AT_ARG_OPTION): New macros to define
8045         package specific options and associated help.
8047 2003-08-19  Akim Demaille  <akim@epita.fr>
8049         * config/announce-gen, Makefile.cfg: New.
8050         * Makefile.am: Adjust.
8051         * GNUmakefile, Makefile.maint: Update from CVS Coreutils.
8053 2003-08-19  Alexandre Duret-Lutz  <adl@gnu.org>
8055         * lib/autom4te.in (Automake-preselections): Preselect
8056         AC_CONFIG_LIBOBJ_DIR, AC_CONFIG_LINKS, m4_include,
8057         and m4_sinclude.
8059 2003-08-19  Alexandre Duret-Lutz  <adl@gnu.org>
8061         * lib/autom4te.in (Autoconf): Move all args except aclocal.m4? into ...
8062         (Autoconf-without-aclocal-m4): ... this new language.
8063         * doc/autoconf.texi (autom4te Invocation): Mention
8064         Autoconf-without-aclocal-m4.
8066 2003-08-18  Derek Price  <derek@ximbiot.com>
8068         * doc/autoconf.texi (Writing testsuite.at): Document RUN-IF-FAIL &
8069         RUN-IF-PASS optional arguments.
8071 2003-08-18  Derek Price  <derek@ximbiot.com>
8073         * doc/autoconf.texi (Programming in M4sh): Add doc for AS_IF.
8075 2003-08-16  Derek Price  <derek@ximbiot.com>
8077         * doc/autoconf.texi (Writing testsuite.at): Document defaults for
8078         STDOUT & STDERR arguments.
8080 2003-08-14  Derek Price  <derek@ximbiot.com>
8082         * lib/autotestgeneral.m4 (AT_INIT): Reformat test summary line to print
8083         DESCRIPTION rather than FILE and LINE.  Shorten result to fit in new,
8084         shorter column three.  Add DESCRIPTION to log file content.
8086 2003-08-13  Derek Price  <derek@ximbiot.com>
8088         * lib/autotest/general.m4 (AT_INIT): Correct typo in final status
8089         output.
8091 2003-08-12  Derek Price  <derek@ximbiot.com>
8093         * lib/autotest/general.m4 (AT_CHECK): Use new _AT_CHECK API.
8094         (AT_CHECK_NOESCAPE): Move core functionality to...
8095         (_AT_CHECK): ...this new macro.
8097 2003-08-07  Derek Price  <derek@ximbiot.com>
8099         * lib/autotest/general.m4 (AT_CHECK): Move core functionality...
8100         (AT_CHECK_NOESCAPE): ...to this new macro.
8102 2003-07-31  Paul Eggert  <eggert@twinsun.com>
8104         * lib/m4sugar/m4sh.m4 (_AS_UNSET_PREPARE): Work around a bug
8105         in Bash 2.01.  Problem reported by Brian Gough in
8106         <http://mail.gnu.org/archive/html/bug-autoconf/2003-07/msg00106.html>.
8108 2003-07-25  John W. Eaton  <jwe@bevo.che.wisc.edu>
8110         * lib/autoconf/fortran.m4 (AC_F77_LIBRARY_LDFLAGS): Also ignore
8111         -lcrt1.o, for OS X.  (trivial change)
8113 2003-07-07  Paul Eggert  <eggert@twinsun.com>
8115         * lib/autoconf/c.m4 (AC_C_INLINE): Wrap the '#define inline ...'
8116         inside '#ifndef __cplusplus'.  Problem reported by
8117         Bob Friesenhahn.
8119 2003-07-06  Bill Clarke  <llib@computer.org>
8121         * lib/autoconf/functions.m4 (AC_FUNC_MMAP): Cast pointer to
8122         'long', not 'int', for benefit of Sun's recent C++ compilers
8123         (trivial change).  See:
8124         http://mail.gnu.org/archive/html/autoconf-patches/2003-07/msg00007.html
8125         (This really should be 'intptr_t', not 'long', but that would
8126         take more work.)
8128 2003-06-25  Akim Demaille  <akim@epita.fr>
8130         * lib/Makefile.am (autom4te.cfg): Make it read only.
8131         Depend on Makefile since it contains substitutions.
8132         From Paolo Bonzini.
8133         * lib/autom4te.in (args): Add local.at? for Autotest args.
8134         This change was made on autom4te.cfg which is generated.
8135         Reported by Raja R. Harinath.
8137 2003-06-25  Akim Demaille  <akim@epita.fr>
8139         * doc/autoconf.texi (Header Portability): sys/mount.h.
8140         From Gareth McCaughan.
8142 2003-06-23  Akim Demaille  <akim@epita.fr>
8144         * lib/autotest/general.m4 (AT_INIT): Report a single config.log,
8145         not all of them.  This fixes 1. the fact that when testing
8146         Autoconf there are many many config.log, 2. the incorrect use of
8147         top_srcdir to find config.log.
8148         Don't mix the detailed output of failed test with the summary of
8149         failures.  Rather, append detailed log afterwards.
8151 2003-06-23  Akim Demaille  <akim@epita.fr>
8153         * tests/local.at (AT_CHECK_CONFIGURE): Adjust to the verbose being
8154         always run: output config.log on $at_group_log.
8156 2003-06-23  Akim Demaille  <akim@epita.fr>
8158         * tests/torture.at (#define header templates): Don't use quotes in
8159         C++ comments as it puzzles Emacs' sh font-lock-mode.
8161 2003-06-23  Akim Demaille  <akim@epita.fr>
8163         * tests/mktests.sh (au_exclude_egrep): Fix output copyright notice.
8164         * lib/autom4te.cfg (args): Add local.at? for Autotest args.
8165         * tests/atspecific.m4: Rename as...
8166         * tests/local.at: This.
8167         * tests/suite.at: Move the globals into...
8168         * tests/local.at: here.
8169         * tests/Makefile.am: Adjust.
8170         * doc/autoconf.texi (testsuite Scripts): Adjust.
8172 2003-06-21  Kevin Ryde  <user42@zip.com.au>
8174         * lib/autoconf/c.m4 (_AC_PROG_CC_STDC): Extend test program to get an
8175         error from OSF 4.0 Compaq cc in its default almost-ANSI mode, thereby
8176         ensuring we add -std1 for full-ANSI.
8178         * doc/autoconf.texi (hdrindex): New macro.
8179         Add index entries for portability of various standard header files.
8181 2003-06-20  Akim Demaille  <akim@epita.fr>
8183         * configure.ac: Bump to 2.57b.
8185 2003-06-20  Akim Demaille  <akim@epita.fr>
8187         Version 2.57a.
8189 2003-06-20  Akim Demaille  <akim@epita.fr>
8191         * bin/autom4te.in: Don't rely on $HOME being defined.
8192         Reported by Marc Espie as PR/233.
8194 2003-06-20  Akim Demaille  <akim@epita.fr>
8196         * lib/autotest/general.m4: Use at_times_file only if used.
8197         From Nicolas Joly.
8199 2003-06-20  Akim Demaille  <akim@epita.fr>
8201         * config/config.guess, config/config.sub, config/elisp-comp,
8202         * config/install-sh, config/mkinstalldirs, doc/standards.texi:
8203         Update from masters.
8205 2003-06-11  Paolo Bonzini  <bonzini@gnu.org>
8207         * doc/autoconf.texi (Writing testsuite.at): Document AT_XFAIL_IF
8208         * lib/autotest/general.m4 (AT_XFAIL_IF): New macro.
8209         (TEST_SCRIPT): New diversion.
8210         (AT_SETUP): Divert output to TEST_SCRIPT and move some code...
8211         (AT_CLEANUP): ...to here.  Undivert TEST_SCRIPT.
8212         (AT_INIT): Support for expected failures.
8214 2003-06-02  Akim Demaille  <akim@epita.fr>
8216         * bin/autom4te.in, bin/autoscan.in, bin/autoheader.in: White space
8217         changes.
8218         * lib/Autom4te/General.pm (&backname): Remove, no longer used by
8219         Autoconf nor Automake.
8220         (&contents): New, from Automake.
8221         PODify.
8223 2003-05-28  Paul Eggert  <eggert@twinsun.com>
8225         * NEWS, doc/autoconf.texi (Particular Functions),
8226         lib/autoconf/functions.m4 (AC_FUNC_MKTIME): Check that mktime
8227         is the inverse of localtime.
8229 2003-05-25  Alexandre Duret-Lutz  <adl@gnu.org>
8231         * lib/Autom4te/General.pm (END): Print diagnostics to STDERR.
8232         (handle_exec_errors): New function.  Work around $! being
8233         altered by WEXITSTATUS.
8234         (xqx, xsystem): Use handle_exec_errors.
8236 2003-05-23  Alexandre Duret-Lutz  <adl@gnu.org>
8238         * lib/Autom4te/General.pm (END): Rewrite exit code processing.
8239         Do not call `_exit()', simply modify `$?'.
8240         (xsystem): Reset $! before running system, and check it afterward.
8241         * tests/tools.at (autoupdating AC_PREREQ): Expect exit status
8242         63 for version mismatches.
8244 2003-05-23  Akim Demaille  <akim@epita.fr>
8246         * lib/autoconf/status.m4: Prefer "TAB-SP" to "SP-TAB", because of
8247         Emacs' dangerous whitespace.el behavior (smashing "useless" spaces in
8248         the middle of a line).
8249         * lib/m4sugar/m4sugar.m4: Likewise.
8250         Remove useless spaces in comments.
8252 2003-05-23  Akim Demaille  <akim@epita.fr>
8254         * lib/m4sugar/m4sugar.m4 (m4_version_prereq): Failure causes an
8255         exit 63, so that we (or Automake's "missing") can tell the
8256         difference with a plain failure.
8257         * doc/autoconf.texi (Notices): Adjust.
8259 2003-05-23  Akim Demaille  <akim@epita.fr>
8261         * Makefile.am, bin/Makefile.am, config/Makefile.am,
8262         * doc/Makefile.am, lib/autoconf/Makefile.am, tests/Makefile.am:
8263         White spaces cleanup.
8265 2003-05-22  Jim Meyering  <jim@meyering.net>
8266             Paul Eggert  <eggert@twinsun.com>
8268         * lib/autoconf/c.m4 (_AC_PROG_CXX_EXIT_DECLARATION):
8269         Remove `#include <stdlib.h>' from the list; we should never
8270         make confdefs.h include <stdlib.h> or <cstdlib>, because the
8271         resulting namespace pollution would cause other tests to fail.
8272         Configure scripts run with some older versions of g++ and HP's
8273         aCC would fail due to such an #include.  Problems reported by
8274         Matthew Mueller in <http://bugs.debian.org/120704> and by
8275         Keith Bostic in
8276         <http://mail.gnu.org/archive/html/autoconf/2003-05/msg00063.html>.
8277         In the test, use the test declaration before including <stdlib.h>,
8278         as that's closer to how it'll be used.
8280 2003-05-23  Akim Demaille  <akim@epita.fr>
8282         * doc/autoconf.texi (Header Portability): ucred.h.
8283         From Ian Redfern.
8285 2003-05-22  Paolo Bonzini  <bonzini@gnu.org>
8287         Overhaul Autotest's logging: generate separate log files
8288         in testsuite.dir/NNN/testsuite.log, and append them to
8289         testsuite.log instead of re-running the test verbosely.
8291         * lib/autotest/general.m4 (AT_INIT): Use a single redirected
8292         file descriptor, write 0 to at_status_file instead of setting
8293         at_status=0, initialize some new variables (at_status_file,
8294         at_group_log, at_suite_log, at_tee_pipe).  Remove the cruft
8295         to rerun the tests, instead append the at_group_log to the
8296         at_suite_log when a test fails.
8297         (AT_SETUP): pipe the test case's output into at_tee_pipe,
8298         with the AS_MESSAGE_LOG_FD redirected to stdout.
8299         (AT_CLEANUP): save the output status in $at_status_file
8300         and restore it, redirect the AS_MESSAGE_LOG_FD back to
8301         its original place.
8302         (AT_CHECK): since tests are run with a redirected stdout,
8303         and used to be re-run in verbose mode, turn some $at_verbose
8304         into echo, and don't redirect the output of testing stdout
8305         and stderr.
8307         * lib/autotest/autoconf.texi (testsuite Scripts): Update
8308         the name of the debugging directory and information about
8309         its contents.
8311 2003-05-22  Paolo Bonzini  <bonzini@gnu.org>
8313         * lib/m4sugar/m4sh.m4 (AS_REQUIRE): Actually use the 2nd
8314         parameter.
8316 2003-05-22  Akim Demaille  <akim@epita.fr>
8318         * lib/autoconf/autotest.m4, lib/autoconf/autoupdate.m4
8319         * lib/autoconf/fortran.m4 lib/autoconf/general.m4
8320         * lib/autoconf/headers.m4 lib/autoconf/oldnames.m4
8321         * lib/autoconf/status.m4: Fix and adjust copyright notices.
8323 2003-05-22  Akim Demaille  <akim@epita.fr>
8325         * aclocal.m4, bin/autoconf.as, lib/autoconf/autoconf.m4,
8326         * lib/autoconf/autoheader.m4, lib/autoconf/autoupdate.m4,
8327         * lib/autoconf/c.m4, lib/autoconf/fortran.m4,
8328         * lib/autoconf/general.m4, lib/autoconf/headers.m4,
8329         * lib/autoconf/lang.m4, lib/autoconf/libs.m4,
8330         * lib/autoconf/programs.m4, lib/autoconf/specific.m4,
8331         * lib/autoconf/status.m4, lib/autoconf/types.m4,
8332         * lib/autotest/general.m4, lib/m4sugar/m4sugar.m4,
8333         * tests/atspecific.m4, tests/base.at, tests/compile.at,
8334         * tests/foreign.at, tests/m4sh.at, tests/semantics.at,
8335         * tests/tools.at, tests/torture.at:
8336         Whitespace clean up.
8337         Suggested by Jim Meyering.
8339 2003-05-22  Akim Demaille  <akim@epita.fr>
8341         * lib/autoconf/functions.m4 (AC_FUNC_GETLOADAVG): Restore smashed
8342         ' \t' as '\t ' so that Emacs' whitespace.el keep it.
8343         Reported by Jim Meyering.
8345 2003-05-22  Akim Demaille  <akim@epita.fr>
8347         * doc/autoconf.texi: Replace AC_HELP_STRING AS_HELP_STRING.
8348         Add AC_HELP_STRING  to the obsolete macros section.
8349         Typos.
8350         Use '@.' for sentences that ended in a capital letter.
8351         From Art Haas.
8353 2003-05-22  Akim Demaille  <akim@epita.fr>
8355         * config/config.guess, config/config.sub, config/elisp-comp,
8356         * config/install-sh, config/mdate-sh, config/mkinstalldirs,
8357         * config/texinfo.tex, doc/standards.texi: Update from masters.
8359 2003-05-21  Paolo Bonzini  <bonzini@gnu.org>
8361         * lib/m4sugar/m4sh.m4 (AS_VAR_SET): Escape the RHS before passing
8362         it to eval.
8364 2003-05-21  Akim Demaille  <akim@epita.fr>
8366         * bin/autoupdate.in ($m4): Fix quotation.
8367         Reported by Martin Mokrejs.
8369 2003-05-19  Paul Eggert  <eggert@twinsun.com>
8371         * ChangeLog, ChangeLog.2, THANKS, lib/m4sugar/m4sugar.m4:
8372         Remove non-ASCII characters.
8374 2003-05-18  Paolo Bonzini  <bonzini@gnu.org>
8376         * tests/semantics.at (AC_SEARCH_LIBS): New test.
8377         * tests/semantics.at (AC_CHECK_HEADERS_OLD,
8378         AC_CHECK_HEADERS_NEW): New tests.
8380 2003-05-17  Akim Demaille  <akim@epita.fr>
8382         * lib/autoconf/functions.m4: Use the default includes so that
8383         memcmp be declared before being tested.
8384         Reported by Sander Niemeijer.
8385         (AC_FUNC_ERROR_AT_LINE, AC_FUNC_GETGROUPS, AC_FUNC_STRNLEN): Likewise.
8386         * doc/autoconf.texi (Default Includes): Document
8387         AC_INCLUDES_DEFAULT.
8389 2003-05-17  Akim Demaille  <akim@epita.fr>
8391         * lib/autoconf/specific.m4: Include signal.h and unistd.h.
8392         * doc/autoconf.texi (Obsolete Macros): Adjust.
8393         Reported by Werner LEMBERG and Debian Bug 190886.
8395 2003-05-16  Akim Demaille  <akim@epita.fr>
8397         * lib/m4sugar/m4sh.m4 (_AS_UNSET_PREPARE): s/FOO/as_foo/ to avoid
8398         user name space clashes.
8399         Reported by Bruno Haible.
8401 2003-05-16  Akim Demaille  <akim@epita.fr>
8403         * bin/autoheader.in, bin/autom4te.in, bin/autoreconf.in,
8404         * bin/autoscan.in, bin/autoupdate.in, bin/ifnames.in (BEGIN): Make
8405         them uniform, and more robust to Perl special characters.
8406         Reported by Martin Mokrejs.
8408 2003-05-14  Akim Demaille  <akim@epita.fr>
8410         * tests/foreign.at (Libtool): Skip all Libtools pre 1.4.
8412 2003-05-14  Akim Demaille  <akim@epita.fr>
8414         * doc/autoconf.texi (Header Portability): X11/extensions/scrnsaver.h,
8415         linux/irda.h.
8417 2003-05-12  Akim Demaille  <akim@epita.fr>
8419         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Improve the
8420         message.
8421         From Matthias Andree.
8423 2003-05-07  Alexandre Duret-Lutz  <adl@gnu.org>
8425         * lib/Autom4te/XFile.pm (lock, truncate): Do not pass @_ to flock
8426         and truncate.
8428 2003-05-06  Akim Demaille  <akim@epita.fr>
8430         Don't try to be smart with aclocal 1.8+ because (i) aclocal no
8431         longer updates aclocal.m4 if useless, (ii) if a file m4_included
8432         by aclocal.m4 is changed it might require the importing of another
8433         m4 extension file, i.e., aclocal must be run.
8435         * bin/autoreconf.in (&run_aclocal, $aclocal_supports_force): New.
8436         (&parse_args): Use --force with aclocal if required and supported.
8437         (&autoreconf_current_directory): Use &run_aclocal.
8439 2003-05-06  Akim Demaille  <akim@epita.fr>
8441         Lock autom4te's cache.
8443         * lib/Autom4te/XFile.pm ($me, &name, &lock, &truncate, &seek): New.
8444         * bin/autom4te.in (&Request::save, &Request::load): Use an IO::File
8445         argument instead of a file name, so that the request file remains
8446         open during the whole autom4te run.
8447         ($icache_file): New.
8448         (&freeze): Lock the $icache_file.
8450 2003-04-29  Derek Price  <derek@ximbiot.com>
8452         * lib/autotest/general.m4 (AT_KEYWORDS): Don't use a comma as the
8453         seperator with m4_append_uniq().  It doesn't work.
8454         (AT_CLEANUP): Add `;' to end of at_help_all.
8455         (AT_INIT): Allow --keywords to be specified more than once.  When
8456         grepping $at_help_all for keywords, use the field and keyword
8457         seperators to ensure a complete keyword match.  Alter at_prev handling
8458         to support the new --keywords behavior.
8460 2003-04-27  Karl Berry  <karl@freefriends.org>
8462         * doc/autoconf.texi: Make the dir entries in the autoconf manual
8463         align better with others.  I also made some of the individual
8464         entries on one line, for brevity and to make it easier for me to
8465         sort my dir-example file in the Texinfo distribution :).
8467 2003-04-12  Jim Meyering  <jim@meyering.net>
8469         * NEWS: Mention the new macro.
8470         * lib/autoconf/c.m4 (AC_C_RESTRICT): New macro.
8471         * doc/autoconf.texi (C Compiler): Describe AC_C_RESTRICT.
8472         * tests/c.at: Test AC_C_RESTRICT.
8473         * tests/mktests.sh (ac_exclude_list): Add exclusion for AC_C_RESTRICT.
8475 2003-04-08  Akim Demaille  <akim@epita.fr>
8477         * bin/ifnames.in: Skip C++ comments.
8478         From Jeremy Yallop.
8480 2003-04-08  Akim Demaille  <akim@epita.fr>
8482         * GNUmakefile (SHELL): Don't assume sh is in /bin/.
8483         From Ilya Zakharevich.
8485 2003-04-08  Akim Demaille  <akim@epita.fr>
8487         * doc/autoconf.texi (Particular Headers): Some about sys/socket.h,
8488         net/if.h, stdlib.h.
8490 2003-04-01  Derek Price  <derek@ximbiot.com>
8492         * lib/autoconf/programs.m4 (AC_PROG_INSTALL): Correct syntax error
8493         from Akim's checkin of 2003-03-29.
8495 2003-04-01  Derek Price  <derek@ximbiot.com>
8497         * tests/torture.at (Configuring subdirectories): Add missing
8498         close-quote for Akim's change from 2003-03-28.
8500 2003-04-01  Akim Demaille  <akim@epita.fr>
8502         * doc/autoconf.texi (ac, at, ms): Rename these indexes as...
8503         (AC, AT, MS): these.
8504         (shortindexflag, @acindex, @ahindex, @asindex, @atindex, @msindex):
8505         New.
8506         Use them.
8507         * doc/Makefile.am (CLEANFILES): Adjust.
8508         (TEXI2DVI): Make it --batch.
8510 2003-03-31  Derek Price  <derek@ximbiot.com>
8512         * lib/autotest/general.m4: Revert the checkin from 2003-03-27
8513         which removed the main loop.
8514         Thanks to Akim Demaille.
8516 2003-03-29  Akim Demaille  <akim@epita.fr>
8518         * lib/autoconf/programs.m4 (AC_PROG_INSTALL): Skip OS/2's install,
8519         that starts a GUI.
8520         From Ilya Zakharevich.
8522 2003-03-29  Akim Demaille  <akim@epita.fr>
8524         * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_MONGREL): The
8525         documentation to read is Autoconf's.
8526         Suggested by Paul Eggert.
8528 2003-03-28  Akim Demaille  <akim@epita.fr>
8530         * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_MONGREL): Suggest
8531         reading the section "Present But Cannot Be Compiled" when the
8532         header causes problems.
8534 2003-03-28  Akim Demaille  <akim@epita.fr>
8536         * tests/torture.at (Configuring subdirectories): Require aclocal
8537         1.4, otherwise the test fails, as it does support configure.ac.
8538         This fixes the "test 40 failed" bug reports.
8540 2003-03-28  Akim Demaille  <akim@epita.fr>
8542         * doc/autoconf.texi (C Compiler): `#line' portability.
8543         From Paul Eggert and Nelson H. F. Beebe.
8545 2003-03-27  Derek Price  <derek@ximbiot.com>
8547         * lib/autotest/general.m4: Eliminate main loop and reorganize test
8548         layout in order to allow scripting around test groups.
8550 2003-03-27  Derek Price  <derek@ximbiot.com>
8552         * lib/autotest/general.m4 (PARSE_ARGS,PARSE_ARGS_END,HELP,HELP_MODES,
8553         HELP_TUNING,HELP_OTHER,HELP_END,PREPARE_TESTS,TESTS_END): Define and
8554         use new diversions in preparation for accepting new arguments and
8555         allowing scripting around tests.
8556         (OPTIONS,TAIL): Remove these diversions to make way for the ones above.
8558 2003-03-26  Derek Price  <derek@ximbiot.com>
8560         * lib/autoconf/general.m4 (AC_ARG_VAR): Use AS_HELP_STRING instead of
8561         obsolete AC_HELP_STRING.
8562         (AC_HELP_STRING): AU_DEFUN to...
8563         * lib/m4sugar/m4sh.m4 (AS_HELP_STRING): ...here.
8564         * tests/m4sh.at (AS_HELP_STRING): New test.
8566         * tests/acgeneral.at: Regenerated.
8568 2003-03-26  Derek Price  <derek@ximbiot.com>
8570         * lib/autotest/general.m4: s/DEFAULT/DEFAULTS/ since it makes more
8571         sense.  Verbosify the diversion definitions comment.
8573 2003-03-26  Derek Price  <derek@ximbiot.com>
8575         * lib/autotest/general.m4 (AT_INIT): Remove redundant call to
8576         AS_PREPARE.
8578 2003-03-21  Eric Siegerman  <eric_97@pobox.com>
8580         * doc/autoconf.texi (Present But Cannot Be Compiled):
8581         Grammar fixes and minor rewording. (trivial change)
8583 2003-03-06  Paul Eggert  <eggert@twinsun.com>
8585         Work around a problem noted by Nelson H. F. Beebe with coreutils
8586         4.5.9: Sun c89 (Sun WorkShop 6 update 2 C 5.3 Patch 111679-08
8587         2002/05/09) rejects '#line 32768 "configure"' because the line
8588         number overflows.
8589         * lib/autoconf/c.m4 (AC_LANG_SOURCE(C)): Do not generate
8590         #line directives.
8591         * lib/autoconf/lang.m4 (AC_LANG_SOURCE): Fix comment to match this.
8592         * doc/autoconf.texi (Generating Sources): Document this.
8594 2003-03-01  Richard Dawe  <rich@phekda.freeserve.co.uk>
8596         * tests/atspecific.m4 (AT_CHECK_AUTOM4TE): Normalize
8597         file name for the m4 program, when it has an "exe" file extension.
8598         DJGPP's error messages include the error code in brackets -
8599         remove the error code during normalization.
8601 2003-02-28  Akim Demaille  <akim@epita.fr>
8603         * doc/autoconf.texi (Present But Cannot Be Compiled): New.
8605 2003-02-28  Alexandre Duret-Lutz  <adl@gnu.org>
8607         * doc/autoconf.texi (Limitations of Make): Remove the section
8608         about `$<' in inference rules, it was a bogus interpretation of
8609         an old Automake change.  Discuss NetBSD, FreeBSD, OpenBSD, and
8610         Tru64 make in the "target lookup" section.
8611         (Automake): Automake 1.5+ no longer requires special tools to be
8612         present on the developer's host.
8614 2003-02-26  Richard Dawe  <rich@phekda.freeserve.co.uk>
8616         * bin/autoheader.in (BEGIN): For DJGPP SHELL may not be set
8617         to a shell that can handle redirection or quoting correctly.
8618         Override SHELL with the shell detected by configure.
8619         Use of $^O suggested by Tim van Holder.
8620         * bin/autom4te.in (BEGIN): Likewise.
8621         * bin/autoreconf.in (BEGIN): Likewise.
8622         * bin/autoscan.in (BEGIN): Likewise.
8623         * bin/autoupdate.in (BEGIN): Likewise.
8624         * bin/ifnames.in (BEGIN): Likewise.
8626         * bin/ifnames.in: Add final newline to help and version messages.
8628         * lib/autoconf/programs.m4 (AC_PROG_MAKE_SET): Translate colons,
8629         to cope with DOS-style absolute paths, when constructing
8630         ${ac_make}.
8632         * lib/autoconf/status.m4 (_AC_OUTPUT_HEADERS, _AC_OUTPUT_FILES):
8633         When constructing paths with IFS=:, quote the path. If we're
8634         constructing a DOS-style absolute path, we don't want to split it
8635         on the colon.
8637         * tests/atspecific.m4 (AT_CHECK_CONFIGURE): Fix typo
8638         in description.
8640 2003-02-25  Pavel Roskin  <proski@gnu.org>
8642         * bin/autoheader.in: Add missing newline when printing
8643         suggestion how change AC_DEFINE call.
8645 2003-02-24  Paul Eggert  <eggert@twinsun.com>
8647         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Fix typo in
8648         2002-09-01 patch by replacing "test -n" with "test -z".
8649         This fixes a bug found by Jeff Painter and reported by Tom Epperly in
8650         <http://mail.gnu.org/archive/html/autoconf/2003-02/msg00139.html>.
8652         * doc/autoconf.texi (Shell Substitutions): test -n -> test -z,
8653         to fix a mismatch between example and discussion.
8655 2003-02-24  Kevin Ryde  <user42@zip.com.au>
8657         * doc/autoconf.texi (Limitations of Builtins): Add notes on printf
8658         format starting with "-".
8660 2003-02-20  Alexandre Duret-Lutz  <adl@gnu.org>
8662         * doc/autoconf.texi (Limitations of Make): `foo=bar make -e'
8663         is not portable inside Makefile.
8665 2003-02-20  Akim Demaille  <akim@epita.fr>
8667         * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_MONGREL): When
8668         compiler says yeah, but preproc says nope, compiler is right.
8669         Conversely, prompt the reader to send a bug report to the
8670         maintainers of the package, not of Autoconf.
8672 2003-02-20  Klee Dienes  <kdienes@apple.com>
8674         * bin/autoreconf.in (autoreconf_current_directory): Properly
8675         handle an empty aclocal.m4.
8677 2003-02-20  Akim Demaille  <akim@epita.fr>
8679         * lib/autoconf/general.m4 (AC_PREFIX_PROGRAM): Quote
8680         $ac_prefix_program.
8681         From Larry Jones.
8683 2002-12-23  Paul Eggert  <eggert@twinsun.com>
8685         * lib/autoconf/c.m4 (AC_LANG_FUNC_LINK_TRY(C)): Define $1 to an
8686         innocuous variant befor including <limits.h> or <assert.h>.  This
8687         works around a bug reported by Albert Chin: HP-UX 11i
8688         (and earlier versions) have a <limits.h> that declares
8689         gettimeofday and many other functions.
8691 2002-12-03  Paul Eggert  <eggert@twinsun.com>
8693         Version 2.57.
8695         * NEWS, configure.ac: Update version.
8697         * doc/fdl.texi: Upgrade to FDL version 1.2.
8699         * lib/autoconf/c.m4 (AC_LANG_FUNC_LINK_TRY(C)): Use the function f
8700         nontrivially in main's body, so that f's external declaration is
8701         not optimized away in AIX.  This should fix the bug reported by
8702         Martin Frydl in
8703         <http://mail.gnu.org/pipermail/autoconf/2002-November/014508.html>.
8705         * lib/autoconf/c.m4 (AC_LANG_FUNC_LINK_TRY(C),
8706         _AC_PROG_PREPROC_WORKS_IFELSE): Use <limits.h> if __STDC__ is
8707         defined, to support freestanding compilers.  This should fix the
8708         bug reported by Momchil Velkov in
8709         <http://mail.gnu.org/pipermail/autoconf/2002-November/014490.html>.
8711         * doc/autoconf.texi (Obsolete Macros): Fix typos (insert empty
8712         arg, AC_DEFINE -> AC_DEFINE_UNQUOTED) in documentation for
8713         obsolete AC_CHECK_TYPE.  The missing empty arg was reported
8714         by Simon Josefsson in
8715         <http://mail.gnu.org/pipermail/autoconf-patches/2002-December/008830.html>.
8717         * Makefile.maint (www-gnu): New macro.
8718         (standards.texi-url_prefix, make-stds.texi-url_prefix): Use it, as
8719         the location has moved.
8721 2002-12-02  Martin Frydl  <martin@systinet.com>
8723         * bin/autom4te.in (at_flatten): rewritten to avoid M4 problem when
8724         \(.*\) match is too long and there is something more to be checked.
8725         <http://mail.gnu.org/pipermail/autoconf/2002-November/014524.html>
8727 2002-11-15  Akim Demaille  <akim@epita.fr>
8729         Version 2.56.
8731         * config/install-sh: chmod +x.
8732         From Paul Eggert.
8733         * config/move-if-change: Indenting changes.
8734         * Makefile.am (AUTOMAKE_OPTIONS): Move to...
8735         * configure.ac (AM_INIT_AUTOMAKE): here.
8736         Require 1.7.1.
8738 2002-11-14  Akim Demaille  <akim@epita.fr>
8740         Version 2.55.
8742         * config/config.guess, config/config.sub, config/install-sh:
8743         Update from masters.
8745 2002-11-14  Akim Demaille  <akim@epita.fr>
8747         * Makefile.maint: Sync with Bison, i.e.:
8748         (po-check): Scan .l and .y files instead of the
8749         .c and the .h files that they generate.  This fixes the bug
8750         reported by Tim Van Holder in:
8751         <http://mail.gnu.org/pipermail/bison-patches/2002-November/001352.html>
8752         Look for N_ as well as for _.  Try to avoid matching #define for
8753         N_ and _.
8754         From Paul Eggert.
8756 2002-11-14  Akim Demaille  <akim@epita.fr>
8758         * doc/autoconf.texi (C Compiler): Compiling several files at once.
8759         From Paul Eggert and Albert Chin-A-Young.
8761 2002-11-14  Akim Demaille  <akim@epita.fr>
8763         * doc/autoconf.texi (C Compiler): Solitary backslashes.
8764         From Paul Eggert and Albert Chin-A-Young.
8766 2002-11-14  Kevin Ryde  <user42@zip.com.au>
8768         * lib/autoconf/c.m4 (AC_LANG_FUNC_LINK_TRY(C)): Initialize f=$1 rather
8769         than assigning in main, to avoid HP cc +O3 optimizing it away.
8771 2002-11-12  Peter Eisentraut  <peter_e@gmx.net>
8773         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Add -q
8774         option.  Process --recheck after parsing all options.  Pass -q
8775         option to configure on --recheck.
8776         (AC_OUTPUT): Pass -q from configure to config.status.
8777         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Strip -q from
8778         arguments to record.
8779         * doc/autoconf.texi (config.status Invocation): Document
8780         config.status -q option.
8782 2002-11-07  Alexandre Duret-Lutz  <adl@gnu.org>
8784         * bin/autoscan.in (scan_file): Scan Makefile.am too. Ignore
8785         Makefile.in if Makefile.am exists.
8786         (output): Strip `.am' from Makefiles.  Don't
8787         output AC_CONFIG_FILES if no Makefiles were found.
8789 2002-11-07  Akim Demaille  <akim@epita.fr>
8791         * Makefile.am (cvs_files): Add elisp-comp, mdate-sh.
8792         (local_updates): New.
8793         * Makefile.maint: Update, from CVS Bison.
8794         (local_updates): New.
8796 2002-11-06  Akim Demaille  <akim@epita.fr>
8798         * lib/autoconf/c.m4 (AC_LANG_FUNC_LINK_TRY): Wrap the `f'
8799         declaration in extern "C" too.
8800         Reported by Roberto Bagnara.
8802 2002-11-06  Akim Demaille  <akim@epita.fr>
8804         * tests/torture.at (Configuring subdirectories): Don't use grep
8805         -w.
8806         * doc/autoconf.texi (Limitations of Usual Tools): Grep -w.
8807         Reported by Ezra Peisach.
8809 2002-11-05  Akim Demaille  <akim@epita.fr>
8811         * lib/autoconf/autoheader.m4 (_AH_TEMPLATE_OLD, _AH_VERBATIM_OLD):
8812         Remove.
8813         We _have_ to stop using the old compatibility scheme that tried to
8814         avoid useless backslashes because Libtool 1.4.3 contains a
8815         AC_DEFINE([error_t], [int],
8816         [Define to a type to use for \`error_t' if it is not
8817         otherwise available.])
8818         We _have_ to quote the single quote and backslashes with \.  The
8819         old compatibility scheme saw that ` was backslashed, and therefore
8820         did not quote the single quote.  Hence before this patch, Autoconf
8821         was not compatible with Libtool.
8823 2002-11-04  Paul Eggert  <eggert@twinsun.com>
8825         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Set the following variables,
8826         too: LC_ADDRESS, LC_IDENTIFICATION, LC_MEASUREMENT, LC_MONETARY,
8827         LC_NAME, LC_PAPER, LC_TELEPHONE.
8828         * doc/autoconf.texi (Special Shell Variables): Mention those vars.
8830 2002-11-04  Akim Demaille  <akim@epita.fr>
8832         Version 2.54c.
8834         * Makefile.maint (update, cvs-update, po-update, do-po-update):
8835         New.
8836         * config/texinfo.tex: Update.
8838 2002-11-03  Akim Demaille  <akim@epita.fr>
8840         * bin/autoreconf.in (&autoreconf_current_directory): New, extracted
8841         from...
8842         (&autoreconf): here.
8843         ($help, $make, &parse_args, &autoreconf_current_directory):
8844         Support -m/--make.
8845         * doc/autoconf.texi (autoreconf Invocation): Adjust.
8847 2002-10-31  Bruno Haible  <bruno@clisp.org>
8849         * lib/autoconf/functions.m4 (_AC_FUNC_MALLOC_IF): Change message.
8850         Change name of cache variable to ac_cv_func_malloc_0_nonnull.
8851         (AC_FUNC_MALLOC): Change description of HAVE_MALLOC macro.
8852         (_AC_FUNC_REALLOC_IF): Change message. Change name of cache variable
8853         to ac_cv_func_realloc_0_nonnull.
8854         (AC_FUNC_REALLOC): Change description of HAVE_REALLOC macro.
8856 2002-10-31  Akim Demaille  <akim@epita.fr>
8858         The test suite was no longer checking for trailing envvars and files.
8860         * tests/atspecific.m4 (AC_STATE_SAVE): Don't use quadrigraphs here.
8861         (AT_CHECK_ENV): Make sure the `state-ls.before file exists.
8863 2002-10-31  Akim Demaille  <akim@epita.fr>
8865         * lib/autoconf/programs.m4 (AC_PROG_MAKE_SET): Use and display
8866         `$(MAKE)' instead of '${MAKE}' to emphasize that we refer to the
8867         Make variable, not a shell variable.
8868         Suggested by Bruno Haible.
8870 2002-10-31  Akim Demaille  <akim@epita.fr>
8872         * bin/autom4te.in (load_configuration): Reject #args out of any
8873         language.
8875 2002-10-31  Akim Demaille  <akim@epita.fr>
8877         * lib/autoconf/general.m4 (_AC_MSG_LOG_CONFTEST): New.
8878         (_AC_PREPROC_IFELSE, _AC_COMPILE_IFELSE, _AC_LINK_IFELSE)
8879         (_AC_RUN_IFELSE): Use it.
8880         * lib/autoconf/lang.m4 (_AC_COMPILER_OBJEXT):
8881         (_AC_COMPILER_EXEEXT_DEFAULT): Likewise.
8882         * lib/autoconf/c.m4 (AC_LANG_SOURCE): Don't include confdefs.h,
8883         inline it.
8885 2002-10-30  Akim Demaille  <akim@epita.fr>
8887         * bin/autom4te.in (&parse_args, $help): Support --no-cache.
8888         * doc/autoconf.texi (autom4te Invocation): Adjust.
8889         Suggested by Tim van Holder.
8891 2002-10-29  Paul Eggert  <eggert@twinsun.com>
8893         * doc/autoconf.texi (Particular Functions): AC_FUNC_MALLOC and
8894         AC_FUNC_REALLOC check for compatibility with glibc, not POSIX.
8895         Problem reported by Bruno Haible.
8897 2002-10-29  Akim Demaille  <akim@epita.fr>
8899         * doc/autoconf.texi (Header Templates): Put also in words what the
8900         pictures says to assist free style readers.
8901         (Customizing autom4te): s/--cache=/--cache /.
8903 2002-10-29  Akim Demaille  <akim@epita.fr>
8905         * lib/autoconf/functions.m4 (_AC_FUNC_VFORK): Include stdlib.h and
8906         sys/wait.h.
8907         sparc_address_test returns void.
8908         Use it with an argument, as prototyped.
8909         From Bruno Haible.
8911 2002-10-29  Akim Demaille  <akim@epita.fr>
8913         * doc/autoconf.texi (Subdirectories): Cygnus dirs have
8914         configure.in, not configure.ac.
8915         Reported by Bruno Haible.
8917 2002-10-29  Akim Demaille  <akim@epita.fr>
8919         * tests/torture.at (Deep Package): New test.
8920         (Configuring subdirectories): Don't use a testSubDir as Autotest
8921         now does it itself.
8923 2002-10-29  Akim Demaille  <akim@epita.fr>
8925         * bin/autoreconf.in (&parse_args, $help): Support --warnings.
8926         * doc/autoconf.texi (Invoking autom4te): Rename as...
8927         (autom4te Invocation): this, for consistency with the other nodes.
8929 2002-10-29  Akim Demaille  <akim@epita.fr>
8931         * lib/autom4te.in (Autoconf): s/automate/autom4te/.
8932         Reported by Ralf Corsepius.
8934 2002-10-29  Akim Demaille  <akim@epita.fr>
8936         * lib/m4sugar/m4sh.m4 (_AS_QUOTE): The warning about quoted
8937         characters is a back as an `obsolete' warning now.
8938         Reported by Ralf Corsepius.
8940 2002-10-28  Akim Demaille  <akim@epita.fr>
8942         * configure.ac: Bump to 2.54c.
8944 2002-10-28  Akim Demaille  <akim@epita.fr>
8946         Version 2.54b.
8948         * tests/foreign.at (Libtool): Adjust to broken libtoolize.
8950 2002-10-28  Akim Demaille  <akim@epita.fr>
8952         * tests/atspecific.m4 (AT_CHECK_AUTOM4TE): Be robust to different
8953         m4 executable names, and different GNU M4 version.
8954         Reported by Ezra Peisach and Paul Jarc.
8956 2002-10-27  Akim Demaille  <akim@epita.fr>
8958         * lib/autoconf/functions.m4 (_AC_FUNC_VFORK): Really use
8959         AC_RUN_IFELSE.
8961 2002-10-27  Akim Demaille  <akim@epita.fr>
8963         * doc/autoconf.texi: More AC_MSG_FAILURE promotion.
8964         * lib/autoconf/fortran.m4 (_AC_F77_NAME_MANGLING):
8965         Die when a simple Fortran program cannot be compiled.
8966         * lib/autoconf/lang.m4 (AC_LANG_CALL, AC_LANG_FUNC_LINK_TRY):
8967         Issue a warning if no function is given.
8969 2002-10-27  Akim Demaille  <akim@epita.fr>
8971         * doc/autoconf.texi (Run Time): Document AC_RUN_IFELSE.
8972         Move the documentation of AC_TRY_RUN to...
8973         (Obsolete Macros): here.
8974         Adjust all the old samples still using AC_TRY_RUN to AC_RUN_IFELSE.
8975         (autoconf Invocation): Remove the duplicates with `invoking
8976         autom4te'.
8977         * lib/autoconf/headers.m4 (AC_HEADER_STDC): Don't use AC_TRY_RUN.
8978         * lib/autoconf/c.m4 (AC_C_BIGENDIAN): Likewise.
8980 2002-10-27  Akim Demaille  <akim@epita.fr>
8982         * doc/autoconf.texi (Generating Sources): Document AC_LANG_CALL
8983         and AC_LANG_FUNC_LINK_TRY.
8984         (Examining Libraries): Rename as...
8985         (Running the Linker): this.
8986         Document AC_LINK_IFELSE.
8987         Move the documentation of AC_TRY_LINK and AC_TRY_LINK_FUNC to...
8988         (Obsolete Macros): here.
8989         * lib/autoconf/fortran.m4 (_AC_F77_NAME_MANGLING): Don't use
8990         AC_TRY_LINK_FUNC nor AC_TRY_LINK.
8991         * lib/autoconf/libs.m4 (AC_CHECK_LIB, AC_PATH_XTRA): Likewise.
8992         * lib/autoconf/headers.m4 (AC_USG): Likewise.
8994 2002-10-27  Akim Demaille  <akim@epita.fr>
8996         * lib/autoconf/headers.m4 (AC_HEADER_STDC): Don't use AC_TRY_CPP.
8998         More `check config.log' messages.
9000         * lib/autoconf/general.m4 (AC_MSG_FAILURE): New.
9001         * doc/autoconf.texi (Printing Messages): Document it.
9002         * lib/autoconf/types.m4 (AC_CHECK_SIZEOF): Use it when
9003         appropriate.
9004         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT)
9005         (_AC_COMPILER_EXEEXT_WORKS, _AC_COMPILER_EXEEXT_O)
9006         (_AC_COMPILER_OBJEXT): Likewise.
9007         * lib/autoconf/general.m4 (AC_RUN_IFELSE): Likewise.
9008         * lib/autoconf/fortran.m4 (_AC_LANG_PROGRAM_C_F77_HOOKS):
9009         Likewise.
9010         * lib/autoconf/c.m4 (AC_PROG_CPP, AC_PROG_CC, AC_PROG_CXXCPP):
9011         Likewise.
9013         Deprecate macros with unusual interfaces.
9015         * lib/autoconf/general.m4 (AC_TRY_CPP, AC_TRY_LINK)
9016         (AC_TRY_COMPILE, AC_TRY_RUN): AU_DEFUN'ed.
9018         Document the new ones, and proper style.
9020         * doc/autoconf.texi (Generating Sources): New.
9021         Document AC_LANG_CONFTEST, AC_LANG_SOURCE, AC_LANG_PROGRAM.
9022         (Examining Declarations): Rename as...
9023         (Running the Preprocessor): this.
9024         Document AC_PREPROC_IFELSE.
9025         (Examining Syntax): Rename as...
9026         (Running the Compiler): this.
9027         (AC_FOO_IFELSE vs AC_TRY_FOO): New section.
9028         (Obsolete Macros): Move the definition of AC_TRY_CPP and
9029         AC_TRY_COMPILE here.
9031 2002-10-27  Akim Demaille  <akim@epita.fr>
9033         Move sections around.
9035         * doc/autoconf.texi (Customizing autom4te): Remove a lost
9036         sentence.
9037         Reported by Burno Haible.
9038         (Language Choice): Now the first section of...
9039         (Writing Tests): this section.
9040         Make the introduction less C-centric.
9041         (Guidelines, Test Functions): Move to...
9042         (Writing Test Programs): this new section.
9043         (Test Programs): Merge into...
9044         (Run Time): this.
9046 2002-10-27  Akim Demaille  <akim@epita.fr>
9048         * lib/freeze.mk ($(AUTOM4TE_CFG)): Add a missing dependency on
9049         autom4te.in that resulted in the need for two `make' runs.
9051 2002-10-27  Akim Demaille  <akim@epita.fr>
9053         * configure.ac: Bump to 2.54b.
9055 2002-10-25  Akim Demaille  <akim@epita.fr>
9057         Version 2.54a.
9059         * Makefile.maint: Update from the Coreutils.
9060         (AMTAR): Remove, obsolete.
9061         (automake_repo): Update to redhat.com.
9062         (cvs_file): New.
9063         Adjust to the fact that ansi2knr is now hosted by Automake.
9064         * Makefile.am (cvs_files): Add install-sh and mkinstalldirs.
9065         * config/config.guess, config/mkinstalldirs, config/texinfo.tex:
9066         Update from masters.
9067         * lib/autoscan/Makefile.am (EXTRA_DIST, nodist_autoscanlib_DATA):
9068         autoscan.pre is not to be installed, and autoscan.list is not to
9069         be shipped.
9070         (CLEANFILES): Add autoscan.list.
9071         (autoscan.list): Disable the cache.
9072         * bin/Makefile.am: Include freeze.mk.
9074 2002-10-25  Akim Demaille  <akim@epita.fr>
9076         * bin/autom4te.in (&load_configuration): Take the file as
9077         argument.
9078         (&parse_args): Handle -C, --cache.
9079         ($help): Adjust.
9080         (MAIN): Load ~/.autom4te.cfg and ./.autom4te.cfg.
9081         * lib/autom4te.in (Autoconf): Pass --cache=autom4te.cache.
9082         * doc/autoconf.texi (Invoking autom4te): Document --cache.
9083         Now a subsection of...
9084         (Using autom4te): This new section.
9085         (Customizing autom4te): New.
9086         (autom4te.cache): Adjust.
9088 2002-10-25  Akim Demaille  <akim@epita.fr>
9090         * doc/autoconf.texi (Generic Headers): More information on how to
9091         use AC_CHECK_HEADERS.
9093 2002-10-25  Akim Demaille  <akim@epita.fr>
9095         * bin/autoconf.as, bin/autoconf.in, bin/autoupdate.in ($help):
9096         Space changes.
9098 2002-10-25  Akim Demaille  <akim@epita.fr>
9100         * bin/autoscan.in (output): Output AC_PREREQ.
9101         (%needed_macros): Add AC_PREREQ so that configure.ac without one
9102         be reported.
9104 2002-10-23  Akim Demaille  <akim@epita.fr>
9106         * doc/autoconf.texi (Particular Headers): In AC_HEADER_STDBOOL,
9107         document _Bool.
9109 2002-10-23  Akim Demaille  <akim@epita.fr>
9111         * bin/autom4te.in (handle_traces): Handle @&t@ in traces.
9112         Reported by Peter Eisentraut.
9114 2002-10-23  Akim Demaille  <akim@epita.fr>
9116         * lib/autoconf/headers.m4 (AC_HEADER_STDBOOL): Also look for the
9117         type _Bool.
9118         Fix a typo.
9119         * doc/autoconf.texi (Particular Headers): Adjust according to Paul
9120         Eggert's recommandations.
9122 2002-10-22  Akim Demaille  <akim@epita.fr>
9124         * lib/autoconf/headers.m4 (AC_HEADER_STDBOOL): New, based on CVS
9125         Bison, by Paul Eggert.
9126         * doc/autoconf.texi (Particular Headers): Document it.
9128 2002-10-22  Aaron M. Ucko  <amu@alum.mit.edu>
9130         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Avoid duplicates in
9131         `$ac_configure_args'.
9133 2002-10-22  Akim Demaille  <akim@epita.fr>
9135         * doc/autoconf.texi: Use AC_CONFIG_HEADERS in examples.
9136         (AC_ST_BLKSIZE, AC_ST_RDEV): Directly point to AC_CHECK_MEMBERS.
9137         From Art Haas.
9139 2002-10-22  Akim Demaille  <akim@epita.fr>
9141         Restore the 2002-10-11  Akim Demaille  <akim@epita.fr> patch:
9143         * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_MONGREL)
9144         (AC_CHECK_HEADER, _AC_CHECK_HEADER_NEW,_AC_CHECK_HEADER_OLD): Restore.
9145         (_AC_CHECK_HEADER_NEW): Rename as...
9146         (AC_CHECK_HEADER): this.
9148 2002-10-22  Akim Demaille  <akim@epita.fr>
9150         * doc/autoconf.texi (Limitations of Usual Tools): Remove incorrect
9151         words about HP-UX cmp: it was actually a user-written cmp.
9153 2002-10-22  Akim Demaille  <akim@epita.fr>
9155         * tests/foreign.at (Libtool): Don't check autoconf's stderr: there
9156         are a few warnings.
9157         * lib/autoconf/autoheader.m4 (AH_VERBATIM, _AH_VERBATIM_OLD):
9158         Quote for Perl '' strings, not "".
9159         * bin/autoheader.in: Invoke autoconf to get '' strings, not ""
9160         strings.
9162 2002-10-22  Akim Demaille  <akim@epita.fr>
9164         * lib/m4sugar/m4sh.m4 (_AS_QUOTE): The warning about quoted
9165         characters is a syntax warning now.
9166         (_AS_QUOTE): Accept $2 as list of characters to quote.
9167         * lib/autoconf/autoheader.m4 (AH_VERBATIM, _AH_VERBATIM_OLD):
9168         Quote for Perl, not sh.
9169         * bin/autoheader.in: When $debug, report the file which is
9170         `do'ne.
9171         * tests/tools.at (autom4te, autoheader): Exercise @bar, not merely
9172         `@', to tickle Perl's lists.
9173         Reported by Carlos Velasco.
9175 2002-10-18  Akim Demaille  <akim@epita.fr>
9177         * bin/autom4te.in (handle_m4): Pass --fatal-warning to m4, so that
9178         missing included files _are_ errors.
9179         Thanks to Alexandre Duret-Lutz.
9180         * tests/tools.at (autom4te cache): Adjust.
9181         * tests/atspecific.m4 (AT_CHECK_AUTOM4TE): New.
9182         (AT_CHECK_M4SUGAR): Use it.
9183         * tests/m4sugar.at (m4_warn, m4_require: circular dependencies):
9184         Adjust.
9185         * tests/tools.at (autom4te): Now it does exit 1.
9187 2002-10-17  Akim Demaille  <akim@epita.fr>
9189         * lib/autoconf/general.m4 (AC_CACHE_SAVE): Don't use cmp.
9190         Fixes the `AC_ARG_VAR' test failures.
9191         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES): Don't use cmp.
9192         * lib/freeze.mk (check-forbidden-patterns): New.
9193         * lib/autoconf/Makefile.am, lib/autotest/Makefile.am
9194         * lib/m4sugar/Makefile.am (check-local): Use it to catch `cmp'.
9195         * doc/autoconf.texi (Limitations of Usual Tools): HP-UX' cmp and
9196         /dev/null.
9197         Reported months ago by H. Merijn Brand.
9199 2002-10-17  Akim Demaille  <akim@epita.fr>
9201         * tests/tools.at (autoheader): Put randoms `@' to stress Perl.
9203 2002-10-16  Paul Eggert  <eggert@twinsun.com>
9205         * Makefile.maint (wget_files): Remove ansi2knr.c.
9206         (ansi2knr.c-url_prefix): Remove.
9208 2002-10-16  Akim Demaille  <akim@epita.fr>
9210         Because of caching, some files that no longer exist and are no
9211         longer required can still cause errors.
9212         Reported by Alexandre Duret-Lutz.
9214         * bin/autom4te.in (&parse_args): Do not prepend `--reload-state'
9215         to frozen files in @ARGV, as @ARGV must remain being a list of
9216         files.  Rather, at M4 call sites, use this...
9217         (&files_to_options): New function.
9218         (&freeze): Use &error.
9219         (&up_to_date): If a file that was included according to the cache
9220         is no longer there, then the output is out dated.
9221         (&main): Don't even check whether a file is up to date is anyway
9222         --force is given.
9223         * tests/tools.at (autom4te cache): New.
9225 2002-10-16  Akim Demaille  <akim@epita.fr>
9227         * bin/autoconf.as: Kill dead options.
9228         * bin/autoupdate.in (&parse_args): Kill old options.
9229         * bin/autoreconf.in (&parse_args): Remove dead options.
9230         Factor some code.
9231         (&autoreconf): Report the directories we enter *and leave*, so
9232         that error messages can be easily located, and use GNU Make
9233         format, so that Emacs' compile mode understands us.
9234         * lib/Autom4te/General.pm (&update_file): Use `verbose' to report
9235         if some file was changed instead of `print'.
9236         * bin/autoheader.in: Suggest AC_DEFINE with 3 args when needed.
9237         (&parse_args): Remove the dead options.
9238         * tests/atspecific.m4 (AT_CHECK_AUTOHEADER): Adjust to the new
9239         autoheader's quiet mode.
9240         (AT_CHECK_AUTOUPDATE): Likewise.
9241         * tests/tools.at (autoupdate): Adjust.
9242         * tests/semantics.at (AC_C_BIGENDIAN): Likewise.
9244 2002-10-11  Akim Demaille  <akim@epita.fr>
9246         No longer use CPP to check for the existing of headers: use CC to
9247         check for compilability.
9249         * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_MONGREL)
9250         (AC_CHECK_HEADER, _AC_CHECK_HEADER_OLD): Remove.
9251         (_AC_CHECK_HEADER_NEW): Rename as...
9252         (AC_CHECK_HEADER): this.
9254         * lib/autotest/general.m4 (AT_INIT): Include the failed test
9255         numbers in the Subject suggestion.
9257 2002-10-11  Akim Demaille  <akim@epita.fr>
9259         * lib/autoconf/specific.m4 (AC_DECL_SYS_SIGLIST): Obsolete.
9260         Suggest using AC_CHECK_DECLS instead.
9262 2002-10-11  Akim Demaille  <akim@epita.fr>
9264         * tests/torture.at (AC_ARG_VAR): Have configure report the value
9265         of `precious'.
9267 2002-10-11  Akim Demaille  <akim@epita.fr>
9269         * lib/m4sugar/m4sh.m4 (_AS_PATH_SEPARATOR_PREPARE): Use $$ in the
9270         file name to enable parallel executions.
9271         From Sam Varshavchik.
9273 2002-10-08  Akim Demaille  <akim@epita.fr>
9275         * bin/autoreconf.in (&autoreconf): Run autopoint before the first
9276         aclocal invocation, as Gettext macros might not be visible to
9277         aclocal.
9278         Instead of blindly running autopoint, scan configure.ac (not the
9279         traces) for AM_GNU_GETTEXT_VERSION uses, as autopoint does.
9280         Reported by Paul D. Smith.
9282 2002-10-08  Paul Eggert  <eggert@twinsun.com>
9284         Work around problems found when POSIXLY_CORRECT=1 is set.
9285         None of this seems to have anything to do with POSIX, really,
9286         but it's how Perl getopt works.
9287         * bin/autom4te.in (parse_args): Configure GetOpt with
9288         "permute", too.
9289         * doc/autoconf.texi (Invoking autom4te):
9290         --warning -> --warnings.
9291         * lib/autom4te.in: --warning -> --warnings.
9293 2002-09-28  Akim Demaille  <akim@epita.fr>
9295         * doc/autoconf.texi (autom4te.cache): New section.
9297 2002-09-28  Akim Demaille  <akim@epita.fr>
9299         * lib/autom4te.in (Autoscan-preselections, Autoreconf-preselections)
9300         (Automake-preselections): Update.
9301         * bin/autoreconf.in, bin/autoheader.in: Comment changes.
9303 2002-09-28  Akim Demaille  <akim@epita.fr>
9305         * lib/autoscan/autoscan.pre: Move all the remaining rules to...
9306         * lib/autoconf/c.m4, lib/autoconf/functions.m4,
9307         * lib/autoconf/headers.m4, lib/autoconf/libs.m4,
9308         * lib/autoconf/specific.m4, lib/autoconf/types.m4: here.
9310 2002-09-28  Akim Demaille  <akim@epita.fr>
9312         * tests/torture.at (Configuring subdirectories): Be robust to
9313         users who use config.site to require for a cache: in this case,
9314         the two last configure runs, using two different sets of
9315         arguments, trigger a legitimate error.
9317 2002-09-28  Akim Demaille  <akim@epita.fr>
9319         * tests/m4sh.at (Functions Support, Functions and return Support):
9320         New.
9322 2002-09-28  Akim Demaille  <akim@epita.fr>
9324         * bin/Makefile.am (ETAGS_SH, ETAGS_PERL): Update: ifnames and
9325         autoheader are Perl programs.
9326         (autoconf, autoheader, autoreconf, autoupdate, ifnames, autoscan)
9327         (autom4te): Specify that the sources are in the $srcdir.
9328         * doc/autoconf.texi (Installation Directory Variables): Adjust.
9330 2002-09-28  Akim Demaille  <akim@epita.fr>
9332         * lib/autoscan/autoscan.pre (st_blksize, st_blocks, st_rdev)
9333         (tm_zone): Move their rules to...
9334         * lib/autoconf/types.m4: here, using AN_ macros.
9335         * lib/autoscan/autoscan.pre (AWK, BISON, INSTALL, LEX, LN, MAKE)
9336         (RANLIB, YACC, awk, bison, byacc, flex, gawk, install, lex, ln)
9337         (make, mawk, nawk, ranlib, yacc): Similarly, move to...
9338         * lib/autoconf/programs.m4: here.
9339         * lib/freeze.mk (ETAGS_FOR_M4, ETAGS_FOR_M4SUGAR)
9340         (ETAGS_FOR_AUTOCONF): New.
9341         Use it.
9343 2002-09-28  Akim Demaille  <akim@epita.fr>
9345         * lib/autoconf/autoscan.m4: New file.
9346         * lib/autoconf/autoconf.m4: Include it.
9347         * lib/autoconf/functions.m4: Use AN_FUNCTION for all the functions
9348         that were listed in the original autoscan.list.
9349         * lib/autoconf/headers.m4: Similarly with headers.
9350         * lib/freeze.mk (autoconf_m4f_dependencies): Add autoscan.m4.
9351         (.m4.m4f): Don't pass --prepend-include, since that's done by
9352         tests/autom4te itself.
9353         * lib/autoscan/Makefile.am: Include freeze.mk.
9354         (autoscan.list): New target --this file is no longer a source.
9355         (autoscan.pre): New file.
9357 2002-09-28  Akim Demaille  <akim@epita.fr>
9359         * bin/autoscan.in (@kinds): Make them singular.
9360         Adjust all uses.
9361         (&init_tables): When --debug, report the list of rules to ease
9362         tracking changes in autoscan.list.
9363         * lib/autoscan/autoscan.list (function): Strip comments, sort.
9365 2002-09-28  Akim Demaille  <akim@epita.fr>
9367         * lib/autoscan/functions, lib/autoscan/headers,
9368         * lib/autoscan/identifiers, lib/autoscan/makevars,
9369         * lib/autoscan/programs: Merge into...
9370         * lib/autoscan/autoscan.list: this.
9371         * bin/autoscan.in (&init_tables): Adjust.
9373 2002-09-28  Akim Demaille  <akim@epita.fr>
9375         * lib/autoscan/functions, lib/autoscan/headers,
9376         * lib/autoscan/identifiers, lib/autoscan/makevars,
9377         * lib/autoscan/programs: Make the `kind' explicit, i.e., each
9378         `functions' line is now prefixed with `function:'.
9379         * bin/autoscan.in (&init_tables): Adjust.
9381 2002-09-28  Akim Demaille  <akim@epita.fr>
9383         From now on, autoscan files must always map a macro name to a
9384         word: there is no `default' macro for autoscan.
9386         * bin/autoscan.in (&init_tables): Reject entries with no macro at
9387         all.
9388         * lib/autoscan/functions, lib/autoscan/headers: Make the macro
9389         explicit.
9391 2002-09-28  Akim Demaille  <akim@epita.fr>
9393         * bin/autoscan.in (%c_keywords): Remove.
9394         (&used): Keep only track of the words we might be interested in.
9395         (&output_kind): It is no longer needed to look for non active
9396         checks.
9398 2002-09-27  Akim Demaille  <akim@epita.fr>
9400         * lib/autoconf/functions.m4 (AC_FUNC_MBRTOWC): New, stolen from
9401         jm_FUNC_MBRTOWC, by Paul Eggert, from the Coreutils 4.5.1.
9402         * lib/autoscan/functions: Adjust.
9403         * doc/autoconf.texi (Particular Functions): Adjust.
9405 2002-09-27  Akim Demaille  <akim@epita.fr>
9407         * doc/autoconf.texi (Limitations of Usual Tools): Some about mv
9408         from /tmp.
9409         Thanks to Bill Moseley and Paul Eggert.
9410         * lib/m4sugar/m4sh.m4 (AS_TMPDIR): $2 is the directory into which
9411         the tmpdir must be created.
9412         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Have the tmp
9413         dir be in the build tree, instead of $TMPDIR.
9415 2002-09-27  Akim Demaille  <akim@epita.fr>
9417         * bin/autoscan.in: Improve the comments.
9418         (&parse_args): Drop obsolete undocumented options.
9419         (&output_kind): Output warnings.
9420         * lib/autoscan/functions: (dcgettext): Now trigger AM_GNU_GETTEXT.
9421         (getwd): Trigger a warning.
9423 2002-09-26  Akim Demaille  <akim@epita.fr>
9425         * bin/autoreconf.in: Clarify that -s is meaningless without -i.
9426         Reported by Ralf Corsepius.
9427         * doc/autoconf.texi (autoreconf Invocation): Likewise.
9429 2002-09-26  Akim Demaille  <akim@epita.fr>
9431         Single suffix rules and seperated dependencies are not portable.
9433         * doc/autoconf.texi (Installation Directory Variables): Update.
9434         (Limitations of Make): Some about `Single Suffix Rules and
9435         Separated Dependencies'.
9436         * bin/Makefile.am (autoconf, autoheader, autoreconf, autoupdate)
9437         (ifnames, autoscan, autom4te): Un-factor into several rules.
9439 2002-09-25  Paul Eggert  <eggert@twinsun.com>
9441         * BUGS (Interoperability bugs): New section.  Mention libtool
9442         1.4.2, configure.ac, and AC_CONFIG_AUX_DIR interoperability bug.
9444 2002-09-24  Paul Eggert  <eggert@twinsun.com>
9446         Fix a portability bug reported by Alexandre Duret-Lutz: Solaris 8
9447         make handles suffix-rules differently from GNU make.
9449         * bin/Makefile.am (SUFFIXES, .in): Remove.
9450         (autoconf autoheader autoreconf autoupdate ifnames autoscan autom4te):
9451         Move the body of the old .in rule here.
9453 2002-09-16  Akim Demaille  <akim@epita.fr>
9455         i960 compilers create `b.out' files by default.
9456         Reported by Ralf Corsepius.
9458         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT): Remove b.out files.
9459         (_AC_COMPILER_EXEEXT_DEFAULT): Adjust to b.out.
9461 2002-09-13  Paul Eggert  <eggert@twinsun.com>
9463         * doc/autoconf.texi (Particular Headers): Remove obsolete
9464         reference to `struct timezone' in the description of
9465         AC_HEADER_TIME.
9467 2002-09-13  Akim Demaille  <akim@epita.fr>
9469         Version 2.54.
9471         * config/config.sub, config/config.guess: Update.
9472         * Makefile.maint: Update from bits of the Coreutils 4.5.1.
9473         * Makefile.am: Adjust.
9475 2002-09-13  Akim Demaille  <akim@epita.fr>
9477         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Suggest
9478         reading config.log when the compiler is rejected.
9479         Suggested by Guido Draheim.
9481 2002-09-13  Akim Demaille  <akim@epita.fr>
9483         * bin/autoreconf.in: Don't use Cwd::chdir, since in its internals
9484         (chdir_init) might hang when stat'ing mounted directories.
9485         Reported by Vance Shipley.
9487 2002-09-12  Akim Demaille  <akim@epita.fr>
9489         * bin/autoscan.in (&parse_args): Pass a reference to the lists, not
9490         the lists.
9492 2002-09-12  Akim Demaille  <akim@epita.fr>
9494         * doc/autoconf.texi (Defining Symbols): Present two different
9495         prototypes for AC_DEFINE and AC_DEFINE_UNQUOTED to emphasize the
9496         difference between 1 argument calls, and 2-3 argument calls.
9498 2002-09-12  Peter Eisentraut  <peter_e@gmx.net>
9500         * doc/autoconf.texi: Review grammar and punctuation.
9502 2002-09-11  Paul Eggert  <eggert@twinsun.com>
9504         * doc/autoconf.texi: Fix minor formatting, spelling, and
9505         grammatical typos.
9506         (Defining Symbols): Explain that AC_DEFINE(var) defaults to 1, but
9507         AC_DEFINE(var,,description) does not; and the AC_DEFINE(var) case
9508         is obsolescent.
9510 2002-09-11  Akim Demaille  <akim@epita.fr>
9512         * doc/autoconf.texi (Questions): Rename as...
9513         (FAQ): this.
9514         (Defining Directories): New.
9516 2002-09-09  Akim Demaille  <akim@epita.fr>
9518         * doc/autoconf.texi (Making testsuite Scripts): Update.
9519         Suggested by Nishio Futoshi.
9521 2002-09-09  Koji Arai  <JCA02266@nifty.ne.jp>
9523         * doc/autoconf.texi (Making testsuite Scripts): Use `@@' where a
9524         plain `@' is wanted.
9526 2002-09-09  Akim Demaille  <akim@epita.fr>
9528         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Keep the
9529         `duplicates', since the algorithm was too naive and could keep
9530         `--prefix=1 --prefix=2 --prefix=1' as `--prefix=1 --prefix=2', and
9531         keep `--prefix foo --prefix bar' as `--prefix foo bar'.
9532         Reported by Ralf Corsepius.
9533         * tests/torture.at (Configuring subdirectories): Exercise these
9534         cases.
9536 2002-09-09  Akim Demaille  <akim@epita.fr>
9538         * lib/autoconf/functions.m4 (AC_FUNC_GETLOADAVG): Use $srcdir when
9539         looking for a replacement file.
9540         * lib/autoconf/general.m4 (AC_CHECK_DECLS): Check that the
9541         directory is relative.
9542         * doc/autoconf.texi (Generic Functions): Clarify the replacement
9543         directory definition.
9544         Reported by Andreas Schwab and Jim Meyering.
9546 2002-09-06  Akim Demaille  <akim@epita.fr>
9548         * doc/autoconf.texi (Setting Output Variables): Clarify what
9549         precious variables are.
9550         Suggested by Pontus Skoeld.
9552 2002-09-05  Akim Demaille  <akim@epita.fr>
9554         * bin/Makefile.am (autoconf, autoheader, autoreconf, autoupdate)
9555         (ifnames, autoscan, autom4te): Since we don't only depend on
9556         configure.ac variables (such as VERSION etc.), but also on prefix
9557         and so forth, depend on Makefile, not configure.ac.
9558         Reported by Alexandre Duret-Lutz.
9559         * doc/autoconf.texi (Installation Directory Variables): Adjust.
9561 2002-09-05  Kevin Ryde  <user42@zip.com.au>
9563         * doc/autoconf.texi (Limitations of Make): HP-UX trailing backslashes
9564         doesn't seem to be confined to ia64, just say "some versions".
9566 2002-09-04  Akim Demaille  <akim@epita.fr>
9568         * Makefile.am, doc/Makefile.am: Remove pdf targets, handled by
9569         Automake 1.6c.
9570         * Makefile.am (maintainer-clean-local): Remove.
9571         (MAINTAINERCLEANFILES): Remove COPYING.
9573 2002-09-03  Paul Eggert  <eggert@twinsun.com>
9575         * doc/autoconf.texi (Configuration Commands): Remove obsolete
9576         example for AC_CONFIG_COMMANDS_PRE.  Problem reported by Marcus
9577         Brinkmann.
9579 2002-09-03  Akim Demaille  <akim@epita.fr>
9581         * configure.ac: Bump to 2.53d.
9582         * Makefile.am (AUTOMAKE_OPTIONS): Require 1.6c, i.e., CVS Automake
9583         as of today, on Automake's team suggestion.
9585 2002-09-03  Akim Demaille  <akim@epita.fr>
9587         Version 2.53c.
9589 2002-09-02  Akim Demaille  <akim@epita.fr>
9591         * bin/autom4te.in (parse_args): Don't honor AUTOM4TE_PATH and
9592         SITE_MACRO_DIR.
9593         * configure.ac: Disable SITE_MACRO_DIR.
9595 2002-09-02  Jim Meyering  <meyering@lucent.com>
9597         * doc/autoconf.texi (AC_SYS_POSIX_TERMIOS): Reflect renaming: s/am/ac/,
9598         i.e., change am_cv_sys_posix_termios to ac_cv_sys_posix_termios.
9599         Also, tweak grammar: s/make sure to/be sure to/.
9601 2002-09-02  Paul Eggert  <eggert@twinsun.com>
9603         * doc/autoconf.texi (Limitations of Builtins): Explain why logical
9604         directory names are generally preferable to physical names.
9606 2002-09-02  Akim Demaille  <akim@epita.fr>
9608         * lib/Autom4te/General.pm (&update_file): s/die/error/.
9609         Reported by Raja R. Harinath.
9610         * bin/autoheader.in, bin/autoreconf.in, bin/autoscan.in,
9611         * bin/autoupdate.in: Use error instead of die.
9613 2002-09-01  Paul Eggert  <eggert@twinsun.com>
9615         * tests/mktests.sh (ac_exclude_egrep, au_exclude_egrep): Use
9616         ordinary shell concatenation rather than echo+tr+sed command that
9617         runs afoul of a long-line-related sed bug in Solaris 8.
9619         * bin/autoheader.in (parse_args): --warning -> --warnings.
9621         * bin/autoconf.as: Work even if "ls" outputs "FOO not found" to
9622         stdout, as traditional "ls" does.
9623         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT,
9624         _AC_COMPILER_EXEEXT_O): Likewise.
9625         * doc/autoconf.texi (Limitations of Usual Tools): Add "ls".
9627         * bin/autoconf.as: Add --prepend-include option.  This patch was
9628         applied to bin/autoconf.in in the 2002-07-17 patch by Mark D. Roth,
9629         but bin/autoconf.in is generated automatically from bin/autoconf.as.
9631         * bin/autoconf.in, configure: Regenerate.
9633         * doc/autoconf.texi (Special Shell Variables): Mention
9634         ENV, MAIL, MAILPATH, PS1, PS2, PS4.  Index PWD.
9636         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Unset ENV, MAIL,
9637         MAILPATH and set PS1, PS2, PS4 to default values, to work
9638         around bug in pre-3.0 UWIN ksh reported by Bruce Lilly.
9639         For LC_ALL etc, first try to set to "C" as POSIX requires and as
9640         the Autoconf documentation specifies; fall back to "unset" only if
9641         this fails.  Use a shell for-loop for this rather than an m4 loop,
9642         to shorten the output script.
9644 2002-08-30  Paul Eggert  <eggert@twinsun.com>
9646         * doc/autoconf.texi (Special Shell Variables): Mention POSIX
9647         1003.1-2001's requirements for CDPATH.  Give a simpler workaround
9648         for the CDPATH problem.  Document PWD.
9649         (Limitations of Builtins): Document the problem that "cd $foo" and
9650         "ls $foo" may refer to different directories in shells conforming
9651         to POSIX 1003.1-2001.  Use PS1 rather than CDPATH for "unset"
9652         example, since the old example is now out of date.
9654         * lib/autoconf/general.m4 (_AC_INIT_SRCDIR): Reject FOO if "cd
9655         FOO" and "ls FOO" talk about different directories; this catches
9656         problems when POSIX 1003.1-2001 "cd" fails due to symlink
9657         spaghetti.
9659         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Use AS_UNSET instead
9660         of rolling our own unset.
9661         (_AS_PREPARE): $as_unset CDPATH instead of AS_UNSETting it, since
9662         in practice we needn't worry about CDPATH if unset doesn't work.
9664         * Makefile.in, aclocal.m4, bin/Makefile.in,
9665         config/Makefile.in, doc/Makefile.in, lib/Makefile.in,
9666         lib/Autom4te/Makefile.in, lib/autoconf/Makefile.in,
9667         lib/autoscan/Makefile.in, lib/autotest/Makefile.in,
9668         lib/emacs/Makefile.in, lib/m4sugar/Makefile.in, man/Makefile.in,
9669         tests/Makefile.in: Regenerate with Automake 1.6.3.
9671         * config/config.guess, config/config.sub, config/mkinstalldirs:
9672         Update.
9674         * configure: Regenerate with self.
9676 2002-08-30  Kevin Ryde  <user42@zip.com.au>
9678         * doc/autoconf.texi (Limitations of Usual Tools): Notes on "cc"
9679         default output.
9681 2002-08-29  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
9683         * bin/autom4te.in (Request::load): Correctly test for "do" read
9684         failure.
9686 2002-08-29  Akim Demaille  <akim@epita.fr>
9688         * lib/Autom4te/General.pm (&xqx): New.
9689         (&xsystem): Use WIFEXITED and WEXITSTATUS instead of decoding $? by
9690         hand, which is not portable.
9691         (&error): New.
9692         * bin/autom4te.in: Use them.
9693         Use &error instead of die.
9694         * tests/m4sugar.at (m4_warn, m4_require: circular dependencies):
9695         Adjust.
9697 2002-08-17  Paul Eggert  <eggert@twinsun.com>
9699         * lib/autoconf/fortran.m4 (AC_PROG_F77): Remove fc from the
9700         default list of compilers to try, since it was long ago superseded
9701         by the ksh fc builtin.  Suggested by Steven G. Johnson.
9703 2002-07-31  Alexandre Duret-Lutz  <duret_g@epita.fr>
9705         * doc/autoconf.texi (Invoking autom4te): End the option table,
9706         fixing a bug introduced by the previous patch.
9707         (Limitations of Make): Add a 'target lookup' subentry in the
9708         'VPATH' entry.  Rewrite all `make' occurences as `@command{make}'.
9710 2002-07-29  Mark D. Roth  <roth@feep.net>
9712         * bin/autom4te.in: Remove --include-envvar and --site-macro-subdir
9713         options and use $AUTOM4TE_PATH.
9714         * doc/autoconf.texi: Remove documentation of autom4te
9715         --include-envvar and --site-macro-subdir options and document
9716         use of $AUTOM4TE_PATH.
9717         * lib/autom4te.in: Remove --include-envvar and --site-macro-subdir
9718         arguments from each language section.
9720 2002-07-29  Paul Eggert  <eggert@twinsun.com>
9722         * doc/install.texi: Include copyright symbol in copyright notice.
9724         * Makefile.am (MAKEINFO): Remove; it's a user-specified macro.
9725         Replace with:
9726         (AM_MAKEINFOFLAGS): New macro.
9727         * doc/Makefile.am (MAKEINFO, AM_MAKEINFOFLAGS): Likewise.
9728         * Makefile.am (INSTALL): Use the new macros.
9729         Use -o rather than --output, since "missing" does not grok --output.
9731 2002-07-25  Alexandre Duret-Lutz  <duret_g@epita.fr>
9733         * doc/autoconf.texi (Limitations of Make): Escaped newlines in
9734         comments do not always work. Never trust the exit status of
9735         `make -k'.
9737 2002-07-24  Kevin Ryde  <user42@zip.com.au>
9739         * doc/autoconf.texi (Limitations of Make, Making testsuite Scripts):
9740         Untabify, since tabs are not enjoyed by texi2dvi and makeinfo.
9742 2002-07-23  Paul Eggert  <eggert@twinsun.com>
9744         * lib/m4sugar/m4sh.m4 (_AS_PATH_SEPARATOR_PREPARE):
9745         Use PATH="/nonexistent;.", not PATH=".;.", as FreeBSD ksh2002
9746         apparently treats PATH="nonexistent" as if it contained ".".
9747         Bug reported by Stefan `Sec' Zehl.
9749 2002-07-22  Alexandre Duret-Lutz  <duret_g@epita.fr>
9751         * doc/autoconf.texi (Limitations of Make): Mention the special
9752         handling of the obj/ directory by BSD make.
9754 2002-07-20  Kevin Ryde  <user42@zip.com.au>
9756         * doc/autoconf.texi (Limitations of Make): Add HP-UX IA-64 trailing
9757         backslashes.
9759 2002-07-19  Akim Demaille  <akim@epita.fr>
9761         * doc/autoconf.texi (Function Portability): `exit'.
9762         (Programming in M4sh): Ethymology of M4sh.
9764 2002-07-19  Akim Demaille  <akim@epita.fr>
9766         * doc/autoconf.texi (AC_LIBOBJ vs LIBOBJS): More about $U.
9768 2002-07-18  Akim Demaille  <akim@epita.fr>
9770         Version 2.53b.
9772 2002-07-18  Akim Demaille  <akim@epita.fr>
9774         * config/config.guess, config/config.sub: Update.
9776 2002-07-18  Akim Demaille  <akim@epita.fr>
9778         Handle LIBOBJS and LTLIBOBJS once for all, including Libtool's and
9779         Automake's parts.
9781         * lib/autoconf/general.m4 (_AC_LIBOBJS_NORMALIZE): New.
9782         * lib/autoconf/status.m4 (AC_OUTPUT_COMMANDS_PRE): Call it.
9783         * tests/semantics.at (AC_REPLACE_FUNCS): Adjust.
9785 2002-07-18  Akim Demaille  <akim@epita.fr>,
9786             Alexandre Duret-Lutz  <duret_g@epita.fr>
9788         * lib/autoconf/status.m4 (_AC_OUTPUT_HEADERS): Install
9789         _AC_AM_CONFIG_HEADER_HOOK for Automake 1.7.
9791 2002-07-17  Russ Allbery  <rra@stanford.edu>
9793         * doc/autoconf.texi (Initializing configure): Clarify the
9794         description of the tarname default.
9796 2002-07-17  Andreas Buening  <andreas.buening@nexgo.de>
9798         * lib/autoconf/functions.m4 (AC_FUNC_FORK): Don't set
9799         ac_cv_func_fork_works before running _AC_FUNC_FORK, do it if the
9800         latter was not run.
9802 2002-07-17  Akim Demaille  <akim@epita.fr>
9804         * lib/Autom4te/General.pm (find_file): Browse the directories in
9805         the order they are given.
9807 2002-07-17  Akim Demaille  <akim@epita.fr>
9809         * tests/wrapsh.as, tests/wrappl.as: Merge into...
9810         * tests/wrapper.as: this.
9811         * tests/Makefile.am, configure.ac: Adjust.
9813 2002-07-17  Mark D. Roth  <roth@feep.net>
9815         * configure.ac: Add --enable-site-macro-dir option.
9816         * bin/Makefile.am: Expand @SITE_MACRO_DIR@.
9817         * bin/autom4te.in: Add --prepend-include, --include-envvar, and
9818         --site-macro-subdir options.
9819         * bin/autoconf.in: Add --prepend-include option.
9820         * bin/autoheader.in: Add --prepend-include option.
9821         * bin/autoreconf.in: Add --prepend-include option.
9822         * bin/autoscan.in: Add --prepend-include option.
9823         * bin/autoupdate.in: Add --prepend-include option.
9824         * doc/autoconf.texi: Document use of $AC_MACRO_PATH and site
9825         macro directory, remove note that include path directories are
9826         used in reverse order, and document --prepend-include option.
9827         * lib/autom4te.in: Use --prepend-include instead of --include.
9828         * tests/wrapsh.in: Use --prepend-include instead of --include.
9830 2002-07-17  Akim Demaille  <akim@epita.fr>
9832         * lib/autoconf/general.m4 (_AC_INIT_PACKAGE): `_' is allowed in
9833         tarnames.
9834         * doc/autoconf.texi (Initializing configure): Adjust.
9836 2002-07-17  Akim Demaille  <akim@epita.fr>
9838         * lib/autoconf/functions.m4 (AC_FUNC_REALLOC, _AC_FUNC_REALLOC)
9839         (_AC_FUNC_MALLOC): New.
9840         (AC_FUNC_MALLOC): Use the latter.
9841         Define HAVE_MALLOC to 0 if broken.
9842         * doc/autoconf.texi (Particular Functions): Adjust.
9844 2002-07-16  Akim Demaille  <akim@epita.fr>
9846         * lib/autoconf/c.m4 (AC_C_BACKSLASH_A): New.
9847         * doc/autoconf.texi (C Compiler): Adjust.
9849 2002-07-09  Akim Demaille  <akim@epita.fr>
9851         * doc/autoconf.texi: Properly set the ``header'' part.
9853 2002-07-09  Akim Demaille  <akim@epita.fr>
9855         * doc/autoconf.texi (Systemology): Some about Darwin.
9857 2002-07-09  Alexandre Duret-Lutz  <duret_g@epita.fr>
9859         * lib/autoconf/specific.m4 (AC_CYGWIN, AC_EMXOS2, AC_MINGW32):
9860         Don't use AC_REQUIRE in AU_DEFUN.
9862 2002-07-09  Art Haas  <ahaas@neosoft.com>
9864         * doc/autoconf.texi: Use @enddots{} or @dots{} where appropriate.
9866 2002-07-02  Alexandre Duret-Lutz  <duret_g@epita.fr>
9868         * bin/autoheader.in, bin/autom4te.in, bin/autoreconf.in,
9869         bin/autoupdate.in, bin/ifnames.in, lib/Autom4te/General.pm,
9870         lib/Autom4te/Struct.pm, lib/Autom4te/XFile.pm: Add local variables
9871         so that Emacs setups GNU style for perl-mode and cperl-mode.
9873 2002-06-27  Paul Eggert  <eggert@twinsun.com>
9875         * config/install-sh: Quote $src.  Prefer || to test's -o option,
9876         as per "Limitations of Builtins".
9877         * tests/atspecific.m4 (AT_CHECK_ENV): Likewise, for && vs test -a.
9878         * tests/semantics.at (AC_C_BIGENDIAN): Likewise.
9880         * tests/mktests.sh: Use grep instead of fgrep, as per
9881         "Limitations of Builtins".
9883 2002-06-15  Paul Eggert  <eggert@twinsun.com>
9885         * tests/wrapsh.as (AUTOCONF, AUTOHEADER, AUTOM4TE, AUTOM4TE_CFG,
9886         autom4te_perllibdir): Set to top build dir or src dir as appropriate,
9887         so that we consistently test the just-built programs.
9888         * tests/wrappl.as: Likewise.
9890 2002-06-12  Paul Eggert  <eggert@twinsun.com>
9892         * bin/autoconf.as (AUTOM4TE): Default to a fully qualified path
9893         name, so that symlinks to 'autoconf' work properly.  Bug reported
9894         by Bruno Haible.
9895         * bin/autoheader.in (AUTOM4TE): Likewise.
9896         * bin/autoreconf.in (autoconf, autoheader): Likewise.
9897         * bin/autoscan.in (autom4te): Likewise.
9898         * bin/autoupdate.in (autom4te): Likewise.
9900         * lib/autoconf/functions.m4 (_AC_LIBOBJ_FNMATCH): Also check for
9901         btowc, to fix a portability bug with diffutils-2.8.2/lib/fnmatch.c
9902         on Solaris 2.5.1.
9904 2002-06-11  Andreas Schwab  <schwab@suse.de>
9906         * doc/autoconf.texi: Add more dir entries.
9908 2002-06-10  Alexandre Duret-Lutz  <duret_g@epita.fr>
9910         * bin/autom4te.in ($cache): Don't define using `$me', the name
9911         of the cache should not depend on the name under which autom4te
9912         was installed.
9914 2002-06-07  Akim Demaille  <akim@epita.fr>
9916         * tests/tools.at (autoconf: forbidden tokens, basic)
9917         (autoconf: forbidden tokens, exceptions): Adjust to the change of
9918         words in autom4te.in.
9920 2002-06-07  Peter Eisentraut  <peter_e@gmx.net>
9922         * lib/autoconf/c.m4 (AC_LANG_PROGRAM(C)): Use
9923         _AC_LANG_PROGRAM_C_F77_HOOKS.
9925 2002-06-07  Akim Demaille  <akim@epita.fr>
9927         * lib/autoconf/functions.m4 (AC_REPLACE_FUNC_FNMATCH): Typo,
9928         rename as...
9929         (AC_REPLACE_FNMATCH): this.
9930         * tests/mktests.sh (exclude_list): Exclude AC_REPLACE_FNMATCH,
9931         AC_FUNC_FNMATCH_GNU.
9933 2002-06-07  Akim Demaille  <akim@epita.fr>
9935         * doc/autoconf.texi (Systemology): Point to Tru64 docs, and the
9936         Rosetta Stone for Unix.
9938 2002-06-07  Akim Demaille  <akim@epita.fr>
9940         * bin/autom4te.in (warn_forbidden): When rejecting a token,
9941         suggest m4_pattern_allow.
9942         Suggested by Adam J. Richter.
9944 2002-06-07  Akim Demaille  <akim@epita.fr>
9946         * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS): Initialize
9947         ac_config_libobj_dir.
9948         (AC_CONFIG_LIBOBJ_DIR): New.
9949         * lib/autoconf/functions.m4 (_AC_FUNC_FNMATCH): Split into...
9950         (_AC_FUNC_FNMATCH_IF, _AC_LIBOBJ_FNMATCH): these.
9951         Use ac_config_libobj_dir to find the replacement files.
9952         (AC_FUNC_FNMATCH, AC_FUNC_FNMATCH_GNU): Split into...
9953         (AC_FUNC_FNMATCH, AC_FUNC_FNMATCH_GNU, AC_REPLACE_FNMATCH)
9954         (AC_REPLACE_FNMATCH_GNU): these.
9955         (AC_FUNC_GETLOADAVG): Use ac_config_libobj_dir.
9956         * doc/autoconf.texi (Particular Functions, Generic Functions): Adjust.
9957         * tests/mktests.sh (ac_exclude_list): Don't check
9958         AC_FUNC_GETLOADAVG as it requires getloadavg.c which is not shipped.
9960 2002-06-06  Paul Eggert  <eggert@twinsun.com>
9962         * lib/autoconf/status.m4 (_AC_OUTPUT_LINKS): Fall back on cp
9963         if ln doesn't work.
9964         * NEWS: Likewise.
9965         * doc/autoconf.texi (Configuration Links): Likewise.
9966         (Limitations of Usual Tools): Prefer $(LN_S) to ln -s || ln.
9968 2002-06-05  Paul Eggert  <eggert@twinsun.com>
9970         * config/config.guess, config/config.sub, config/texinfo.tex:
9971         Update from masters.
9973 2002-05-29  Paul Eggert  <eggert@twinsun.com>
9975         * bin/autom4te.in ($m4): Do not assume that egrep and fgrep exist.
9976         * lib/autoconf/c.m4 (AC_C_BIGENDIAN): Likewise.
9977         * lib/autoconf/general.m4 (_AC_RUN_LOG_STDERR, AC_EGREP_CPP):
9978         Likewise.
9979         * lib/autoconf/Makefile.am (check-local): Likewise.
9980         * lib/autoconf/status.m4 (AC_CONFIG_HEADER): Likewise.
9981         * lib/autoconf/types.m4 (commentary only): Likewise.
9982         * lib/autotest/general.m4 (AT_INIT, AT_CHECK): Likewise.
9983         * lib/autotest/Makefile.am (check-local): Likewise.
9984         * lib/m4sugar/Makefile.am (check-local): Likewise.
9985         * tests/atspecific.m4 (AT_CONFIGURE_AC, AT_CHECK_DEFINES): Likewise.
9986         * tests/mktests.sh (egrep): New var; use it instead of plain egrep.
9988         * lib/autoconf/programs.m4 (AC_PROG_EGREP, AC_PROG_FGREP): New macros.
9989         * doc/autoconf.texi (Particular Programs): Document them.
9990         (Limitations of Usual Tools): Warn that egrep and fgrep may not exist.
9991         * NEWS: Likewise.
9993 2002-05-27  Paul Eggert  <eggert@twinsun.com>
9995         * lib/autoconf/types.m4 (AC_TYPE_MBSTATE_T): New macro.
9996         * NEWS, doc/autoconf.texi (Particular Types): Document it.
9997         * lib/autoconf/functions.m4 (_AC_FUNC_FNMATCH): Require it
9998         instead of AC_MBSTATE_T, which never existed.
10000 2002-05-23  Akim Demaille  <akim@epita.fr>
10002         * doc/autoconf.texi (Hosts and Cross-Compilation): Specify the
10003         version of Autoconf that is discussed.
10005 2002-05-22  Paul Eggert  <eggert@twinsun.com>
10007         * lib/autoconf/fortran.m4 (AC_PROG_F77): Remove cf77 and cft77
10008         from the default list of compilers to try.  Suggested by
10009         Kate Hedstrom.
10010         * NEWS: Document the above.
10011         * doc/autoconf.texi (Fortran 77 Compiler): Don't suggest cf77.
10013 2002-05-17  Paul Eggert  <eggert@twinsun.com>
10015         * lib/autoconf/types.m4 (AC_CHECK_MEMBER): Work correctly even if
10016         the member is itself an aggregate.  Bug reported by Sergey Poznyakoff.
10017         This improves on an earlier suggestion by H. Peter Anvin.
10019 2002-05-16  Paul Eggert  <eggert@twinsun.com>
10021         AC_FUNC_FNMATCH now tests only for POSIX compatibility.
10022         AC_FUNC_FNMATCH_GNU also tests for GNU extensions.
10023         Both macros now accept an optional source-dir arg.
10024         New macro AC_GNU_SOURCE to define _GNU_SOURCE.
10026         * NEWS: Document this.
10027         * doc/autoconf.texi (Particular Functions, UNIX Variants): Likewise.
10029         * lib/autoconf/functions.m4 (_AC_FUNC_FNMATCH): New macro.
10030         (AC_FUNC_FNMATCH): Use it.  Test only for POSIX conformance,
10031         not for GNU extensions; this undoes part of the 2000-11-03 change,
10032         reverting to 2.13-compatible behavior.
10033         Add new optional argument DIR.
10034         (AC_FUNC_FNMATCH_GNU): New macro.
10036         * lib/autoconf/specific.m4 (AC_GNU_SOURCE): New macro.
10038 2002-05-08  Paul Eggert  <eggert@twinsun.com>
10040         * lib/autoconf/headers.m4 (AC_HEADER_TIOCGWINSZ):
10041         Don't require AC_SYS_POSIX_TERMIOS.  The test is unnecessary,
10042         and it causes a 'test' syntax error if it fails.
10043         Bug reported by Stephen Gildea.
10045         * lib/autoconf/functions.m4 (AC_FUNC_SETVBUF_REVERSED):
10046         If prototypes are supported, use them to check this at compile-time,
10047         instead of trying to check it at run-time.  If we must do a run-time
10048         check, assume that setvbuf is standard when cross-compiling, as
10049         nonstandard setvbuf occurs only on ancient and unlikely hosts.
10050         Bug reported by Paul D. Smith.
10052         * lib/autoconf/functions.m4 (AC_FUNC_GETLOADAVG): Add optional
10053         argument specifying location of getloadavg.c.  This removes a
10054         FIXME.  This idea was taken from Jim Meyering's implementation in
10055         textutils.
10056         * doc/autoconf.texi (Particular Functions): Document this.
10057         Also, mention HAVE_NLIST_H rather than NLIST_STRUCT, since
10058         that's what the code does; this fixes a bug reported by
10059         Paul D. Smith.
10061 2002-05-03  Akim Demaille  <akim@epita.fr>
10063         * bin/autoreconf.in (autoreconf): Rewrite to use Gettext's
10064         autopoint instead of gettextize.
10065         ($uses_alocal): Rename as...
10066         ($uses_aclocal): this.
10067         * doc/autoconf.texi (autoreconf Invocation): Adjust.
10068         Suggested by Bruno Haible.
10070 2002-05-03  Akim Demaille  <akim@epita.fr>
10072         * lib/m4sugar/m4sugar.m4 (m4_map_sep): New.
10074 2002-04-29  Paul Eggert  <eggert@twinsun.com>
10076         * bin/autoreconf.in (autoreconf): Don't age aclocal.m4's input
10077         files to be 1 second older; just set them to be the same time.
10078         Also, sleep 1 second after the first aclocal, to work around
10079         problems with sub-second time stamps on the input files.
10081 2002-04-29  Thien-Thi Nguyen  <ttn@gnu.org>
10083         * doc/autoconf.texi: Mention "set -e -x" lossage
10084         under node "Limitations of Builtins".
10086 2002-04-29  Akim Demaille  <akim@epita.fr>
10088         * doc/install.texi: Better wording for setting variables when
10089         running configure.
10090         From Christian Cornelssen.
10092 2002-04-29  Akim Demaille  <akim@epita.fr>
10094         * tests/m4sh.at (LINENO): If testsuite itself is rewritten because
10095         of lack of $LINENO support, then the test will compare the $LINENO
10096         in testsuite vs. the lineno in the test file.  This is wrong, of
10097         course.
10098         Be sure to protect it.
10099         Reported by Patrick Welche.
10101 2002-04-25  Akim Demaille  <akim@epita.fr>
10103         * doc/autoconf.texi (Obsolete Macros): Typo.
10104         Reported by Vladimir Volovich.
10106 2002-04-25  Akim Demaille  <akim@epita.fr>
10108         * bin/autoreconf.in (autoreconf): Don't let aclocal.m4 be older
10109         than some of the input files, hence, on the second run of aclocal,
10110         if some of its input are younger, make them older.
10111         Suggested by Paul Eggert.
10113 2002-04-25  Akim Demaille  <akim@epita.fr>
10115         * doc/autoconf.texi (Limitations of Usual Tools): sed and `!'.
10116         Thanks to Paul Eggert.
10118 2002-04-25  Akim Demaille  <akim@epita.fr>
10120         * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS): Let ac_subst_files
10121         and ac_subst_vars be sh variables containing the list of
10122         AC_SUBST_FILES'ed and AC_SUBST'ed identifiers.  Output them in the
10123         DEFAULT diversion.
10124         (_AC_INIT_PREPARE): Use them to log them.
10125         (_AC_SUBST, _AC_SUBST_SED_PROGRAM): Remove.
10126         (AC_SUBST, AC_SUBST_FILE): Instead of buliding the
10127         _AC_SUBST_SED_PROGRAM, store the list of output files/variables in
10128         _AC_SUBST_FILES and _AC_SUBST_VARS.
10129         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES): Adjust.
10131 2002-04-24  Akim Demaille  <akim@epita.fr>
10133         * bin/autoreconf.in (autoreconf): Run automake after autoconf and
10134         autoheader, so that automake does not complain about a missing
10135         config.h.in that was to be created.
10137 2002-04-23  Akim Demaille  <akim@epita.fr>
10139         * bin/autoheader.in (parse_args): --warning takes an argument.
10140         Fixes PR/220.
10142 2002-04-22  Peter Eisentraut  <peter_e@gmx.net>
10144         * lib/autoconf/general.m4 (_AC_RUN_IFELSE): Remove gmon.out
10145         and bb.out when cleaning up.
10147 2002-04-22  Akim Demaille  <akim@epita.fr>
10149         Version 2.53a.
10151 2002-04-22  Akim Demaille  <akim@epita.fr>
10153         * tests/m4sh.at (LINENO): Fix the Zsh skip pattern.
10155 2002-04-22  Akim Demaille  <akim@epita.fr>
10157         * doc/autoconf.texi (Pretty Help Strings): Remove a spurious
10158         comma.
10159         Reported by Gregory Giannoni.
10161 2002-04-22  Akim Demaille  <akim@epita.fr>
10163         * tests/m4sh.at (LINENO): Skip the test if LINENO cannot be unset.
10164         Fixes false failures on Darwin.
10166 2002-04-21  Paul Eggert  <eggert@twinsun.com>
10168         * TODO, bin/autoupdate.in, doc/autoconf.texi,
10169         lib/autoconf/general.m4, lib/autoconf/libs.m4,
10170         lib/autoconf/status.m4, lib/m4sugar/m4sugar.m4, tests/m4sh.at,
10171         tests/tools.at: Minor spelling and grammar fixes.
10173 2002-04-20  Paul Eggert  <eggert@twinsun.com>
10175         * doc/autoconf.texi (Shell Substitutions): Fix typos in yesterday's
10176         ZSH_VERSION fixes.  Bug reported by Raja R Harinath.
10177         * lib/autotest/general.m4 (AT_INIT): Likewise.
10178         * tests/atgeneral.m4 (AT_INIT): Likewise.
10180 2002-04-19  Paul Eggert  <eggert@twinsun.com>
10182         * NEWS, TODO, bin/autom4te.in, bin/autoreconf.in, bin/autoupdate.in,
10183         doc/autoconf.texi, lib/freeze.mk, lib/Autom4te/Struct.pm,
10184         lib/autoconf/autoheader.m4, lib/autoconf/c.m4,
10185         lib/autoconf/functions.m4, lib/autoconf/general.m4,
10186         lib/autoconf/lang.m4, lib/autoconf/libs.m4, lib/autoscan/identifiers,
10187         lib/autotest/general.m4, lib/m4sugar/m4sh.m4, tests/atgeneral.m4,
10188         tests/atspecific.m4, tests/semantics.at, tests/torture.at:
10189         Minor spelling and grammar fixes.
10191         * doc/autoconf.texi: Follow the outline suggested in the GNU
10192         Sample Texts sections of the Texinfo 4.2 manual.  Most
10193         importantly, this makes sure that the copyright notices appear in
10194         all output formats.  You probably need Texinfo 4.2 to generate
10195         the manual now.
10197         Fix some bugs when using "$@" when there might be zero positional
10198         arguments in cases where this matters.
10200         * bin/autoconf.as: Rewrite so that the problem does not come up.
10201         * lib/autoconf/programs.m4 (AC_CHECK_PROG): Likewise.
10202         * lib/autoconf/status.m4 (AC_OUTPUT): Likewise.
10203         * lib/autotest/general.m4 (AT_INIT): Likewise.
10205         * bin/autoheader.in: Use 'case' statement to work around problem.
10206         * bin/auto4mte.in: Likewise.
10207         * bin/autoreconf.in: Likewise.
10208         * bin/autoscan.in: Likewise.
10209         * bin/autoupdate.in: Likewise.
10210         * bin/ifnames.in: Likewise.
10212         * doc/autoconf.texi (Shell Substitutions): Document the problem.
10214         * lib/autotest/general.m4 (AT_INIT):
10215         Use Zsh alias to work around problem.
10216         * tests/atgeneral.m4 (AT_INIT): Likewise.
10218         * tests/c.at: We can't have zero arguments, so remove workaround
10219         that is not portable to Zsh.
10221 2002-04-19  Alexandre Duret-Lutz  <duret_g@epita.fr>
10223         * bin/autoupdate.in (handle_autoconf_macros): Honor AU_DEFUNs
10224         from aclocal.m4 too.
10226 2002-04-12  Akim Demaille  <akim@epita.fr>
10228         * tests/wrappl.as: New, M4sh precursor of wrappl.in.
10230 2002-04-10  Akim Demaille  <akim@epita.fr>
10232         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Install the Zsh
10233         workaround for ${1+"$@"}.
10234         * doc/autoconf.texi (Shell Substitutions): Explain it.
10235         From Oliver Kiddle and Peter Stephenson.
10237         Have M4sh perform minimal shell sanitizing.
10239         * lib/m4sugar/m4sh.at (AS_SHELL_SANITIZE): Split the `_AS_PREPARE_*'
10240         part into...
10241         (_AS_PREPARE): this new macro.
10242         (AS_PREPARE): New.
10243         (AS_INIT): Invoke AS_SHELL_SANITIZE.
10244         * tests/m4sh.at (AT_DATA_LINENO): Use _AS_PREPARE.
10246         Adjust Autoconf and Autotest.
10248         * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS): Don't invoke
10249         AS_SHELL_SANITIZE, AS_INIT did it, but invoke AS_PREPARE.
10250         * lib/autotest/general.m4 (AT_INIT): Likewise.
10251         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS):
10252         Invoke _AS_PREPARE (not AS_PREPARE) in addition to
10253         AS_SHELL_SANITIZE.
10255         Use this M4sh to generate Autoconf's shell scripts.
10257         * tests/wrapsh.as: New, precursor of wrapsh.in.
10258         * tests/Makefile.am: Include lib/freeze.mk to get the dependencies
10259         on Autotest and M4sh.
10260         ($(TESTSUITE)): Use $(autotest_m4f_dependencies).
10261         (wrapsh.in): New target.
10262         * bin/autoconf.as: New, precursor of autoconf.in.
10263         (autoconf.in): New target.
10265 2002-04-09  Alexandre Duret-Lutz  <duret_g@epita.fr>
10267         * doc/autoconf.texi (Limitations of Make): Mention the issue
10268         with indented comments in rules.
10270 2002-04-09  Andreas Schwab  <schwab@suse.de>
10272         * lib/autoconf/status.m4 (_AC_SRCPATHS): Handle empty
10273         ac_top_builddir when setting ac_abs_top_builddir.
10275 2002-04-06  Kevin Ryde  <user42@zip.com.au>
10277         * doc/autoconf.texi (Systemology): Add link to Unix V7 online docs.
10278         (Portable Shell): Cross reference to Systemology.
10280 2002-04-05  Akim Demaille  <akim@epita.fr>
10282         * bin/autoreconf.in (autoreconf): Be sure to accumulate the
10283         directories when descending in a SUBDIRS.
10284         Reported by Ezra Peisach.
10286 2002-04-04  Andreas Schwab  <schwab@suse.de>
10288         * lib/m4sugar/m4sh.m4 (_AS_PATH_WALK): Only simplify if path
10289         contains no literal separators.
10291 2002-04-03  Akim Demaille  <akim@epita.fr>
10293         * lib/autoconf/status.m4 (_AC_CONFIG_FILE, _AC_CONFIG_HEADER)
10294         (_AC_CONFIG_COMMAND, _AC_CONFIG_LINK): New.
10295         Use dnl, not the KILL diversion.
10296         Extracted from...
10297         (AC_CONFIG_FILES, AC_CONFIG_HEADERS, AC_CONFIG_COMMANDS)
10298         (AC_CONFIG_LINKS): here.
10299         Adjust.
10300         Don't use the KILL diversion, as it kills spurious output, which
10301         results in failures being hidden.
10302         Use m4_defn where appropriate.
10303         (AC_CONFIG_IF_MEMBER): Kill the real bug: a spurious parenthesis
10304         after the second argument.
10305         Use m4_defn.
10306         * lib/autom4te.in (Autoconf, Autotest, M4sh): Don't pass --warning
10307         syntax, as it is provided by M4sugar.
10308         * tests/torture.at (Multiple AC_CONFIG_FILES): New.
10310 2002-04-03  Andreas Schwab  <schwab@suse.de>
10312         * lib/m4sugar/m4sugar.m4 (m4_bmatch): Make sure m4_bregexp is not
10313         expanded if $# <= 2.
10315         * bin/autoreconf.in (autoreconf): Run automake after rerunning
10316         aclocal.
10318 2002-04-03  Akim Demaille  <akim@epita.fr>
10320         * lib/autoconf/lang.m4 (_AC_COMPILER_OBJEXT_REJECT)
10321         (_AC_COMPILER_EXEEXT_REJECT): New.
10322         Also recognize *.bb and *.bbg as compilation byproducts.
10323         (_AC_COMPILER_EXEEXT_DEFAULT, _AC_COMPILER_EXEEXT_O)
10324         (_AC_COMPILER_OBJEXT): Use them.
10325         Fixes Debian #138666.
10327 2002-04-02  Peter Eisentraut  <peter_e@gmx.net>
10329         Integrate AC_PROG_CC_STDC into AC_PROG_CC.
10331         * lib/autoconf/c.m4 (AC_PROG_CC_STDC): Rename to _AC_PROG_CC_STDC.
10332         AU_DEFUN old name.  Use _AC_COMPILE_IFELSE.
10333         (AC_PROG_CC): Call _AC_PROG_CC_STDC.
10334         (AC_C_INLINE): Do not require AC_PROG_CC_STDC.
10335         (AC_C_CONST): Same.
10336         (AC_C_INLINE): Same.
10337         (AC_C_PROTOTYPES): Same.  Require AC_PROG_CC instead.
10338         * doc/autoconf.texi, NEWS: Document.
10339         * tests/mktests.sh (au_exclude_list): Add AC_PROG_CC_STDC and
10340         AC_C_CROSS.
10342 2002-04-02  Akim Demaille  <akim@epita.fr>
10344         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Invoke
10345         _AS_MKDIR_P_PREPARE.
10347 2002-03-28  Kevin Ryde  <user42@zip.com.au>
10349         * lib/autoconf/c.m4 (AC_C_INLINE): Test with a typedef return value,
10350         to avoid versions of HP C which don't allow that.
10352 2002-03-27  Paul Eggert  <eggert@twinsun.com>
10354         * lib/m4sugar/m4sh.m4 (_AS_BASENAME_PREPARE): New macro.
10355         (AS_SHELL_SANITIZE): Invoke it.
10356         (AS_BASENAME): AS_REQUIRE it, and use $as_basename.
10358 2002-03-26  Akim Demaille  <akim@epita.fr>
10360         * doc/autoconf.texi (Portable Shell): Add pointers to FAQs.
10362 2002-03-26  Akim Demaille  <akim@epita.fr>
10364         * doc/autoconf.texi (Introduction): The GNATS base moved.
10366 2002-03-25  Paul Eggert  <eggert@twinsun.com>
10368         * tests/m4sh.at: Don't rely on "PATH=test:$PATH test-1" working
10369         as POSIX requires, as it doesn't work with Zsh.
10370         * doc/autoconf.texi (Assignments): Document the problem.
10372 2002-03-25  Alexandre Duret-Lutz  <duret_g@epita.fr>
10374         * doc/autoconf.texi (Limitations of Make): Mention more issue
10375         about VPATH, overriding of macros in sub-makes, and handling of
10376         SHELL.
10378 2002-03-21  Paul Eggert  <eggert@twinsun.com>
10380         * doc/autoconf.texi (Here-Documents): Mention Solaris 8 dtksh
10381         problem with here-document buffer boundaries.
10383         * lib/m4sugar/m4sh.m4 (_AS_LINENO_PREPARE): Unset ENV and BASH_ENV
10384         when reinvoking the shell, to work around problems with installers
10385         who put strange things like "cd" commands in their environments.
10387 2002-03-19  Akim Demaille  <akim@epita.fr>
10389         * tests/semantics.at (AC_C_BIGENDIAN): s/unknow/unknown/.
10390         From Aaron Ucko.
10392 2002-03-19  Akim Demaille  <akim@epita.fr>
10394         * bin/autoscan.in (scan_file): Specify the location in `&used'
10395         invocations.
10396         From Nicolas Joly.
10398 2002-03-19  Akim Demaille  <akim@epita.fr>
10400         * doc/autoconf.texi: Adjust @code/@command, @xref/@ref usage.
10401         From Nishio Futoshi.
10403 2002-03-19  Akim Demaille  <akim@epita.fr>
10405         * lib/m4sugar/m4sugar.m4 (m4_define_default, m4_fst, m4_map): New.
10407 2002-03-18  Paul Eggert  <eggert@twinsun.com>
10409         * doc/autoconf.texi (Programming in M4sh): Add AS_MKDIR_P.
10410         (Limitations of Usual Tools): Add mkdir section.
10412         * lib/m4sugar/m4sh.m4 (_AS_MKDIR_P_PREPARE): New macro.
10413         (AS_MKDIR_P): Require it.  Use mkdir -p if available, falling
10414         back on AS_DIRNAME to compute prefixes otherwise; this is
10415         roughly what mkinstalldirs does.  That way, we need not have
10416         our own filename disassembler.  The old disassembler did not
10417         work with Solaris 8 dtksh, which is ksh Version M-12/28/93d.
10419         * lib/autotest/general.m4 (AT_INIT, AT_CLEANUP):
10420         Create at_test_all by a series of assignments,
10421         not by a single assignment of a long string.  The latter causes ksh
10422         version 11/16/88g to silently misbehave on OpenServer 5.0.6a,
10423         presumably because of a buffer overrun.
10425 2002-03-14  Paul Eggert  <eggert@twinsun.com>
10427         * lib/autotest/general.m4 (at_times_skip):
10428         Renamed from at_times.  Now a boolean.
10429         ksh93 Version M-12/28/93d doesn't like 'x=times; $x'; it
10430         says 'times: not found'.
10432 2002-03-14  Akim Demaille  <akim@epita.fr>
10434         * bin/autoreconf.in (&study_gettextize): New.
10435         (&autoreconf): Handle newest gettextize.
10436         Rerun aclocal if needed.
10437         Suggested by Andreas Schwab.
10439 2002-03-13  Akim Demaille  <akim@epita.fr>
10441         * doc/autoconf.texi (Special Shell Variables): More about IFS.
10443 2002-03-13  Akim Demaille  <akim@epita.fr>
10445         * doc/autoconf.texi (Header Portability): New.
10446         Add information about stdint.h and inttypes.h from Paul Eggert.
10448 2002-03-13  Akim Demaille  <akim@epita.fr>
10450         * doc/autoconf.texi (Limitations of Usual Tools): Some about `cp
10451         -p'.
10452         From Bob Proulx.
10454 2002-03-12  Akim Demaille  <akim@epita.fr>
10456         * lib/m4sugar/m4sh.m4 (AS_BASENAME_EXPR): AS_REQUIRE, not
10457         m4_require.
10459 2002-03-11  Andreas Schwab  <schwab@suse.de>
10461         * configure.ac: Explicitly check for EMACS since AM_PATH_LISPDIR
10462         does not do it if --with-lispdir is given.
10464 2002-03-08  Akim Demaille  <akim@epita.fr>
10466         Version 2.53.
10468 2002-03-08  Akim Demaille  <akim@epita.fr>
10470         * doc/autoconf.texi (Subdirectories): Clarify that the
10471         subdirectory should exist.
10473 2002-03-08  Akim Demaille  <akim@epita.fr>
10475         * Makefile.am (AUTOMAKE_OPTIONS): 1.6.
10477 2002-03-08  Akim Demaille  <akim@epita.fr>
10479         * bin/autom4te.in (&handle_m4): Do not foreach with `$_' as it
10480         aliases the actual variables, and modifications of the former
10481         affect the latter.
10483 2002-03-08  Akim Demaille  <akim@epita.fr>
10485         * bin/autom4te.in (&handle_m4): Protect us from corrupted file
10486         because of C-c: have m4 output in tmp files, then mv them.
10488 2002-03-08  Akim Demaille  <akim@epita.fr>
10490         * bin/autoconf.in, bin/autoheader.in, bin/autom4te.in,
10491         * bin/autoreconf.in, bin/autoscan.in, bin/autoupdate.in,
10492         * bin/ifnames.in: Copyright update.
10494 2002-03-08  Akim Demaille  <akim@epita.fr>
10496         * doc/autoconf.texi (Invoking autom4te): New.
10498 2002-03-05  Akim Demaille  <akim@epita.fr>
10500         * doc/autoconf.texi (Specifying Names): Clarification suggested by
10501         Kevin Ryde.
10503 2002-03-05  Akim Demaille  <akim@epita.fr>
10505         Version 2.52i.
10507 2002-03-04  Akim Demaille  <akim@epita.fr>
10509         * doc/autoconf.texi (AC_LIBOBJ vs. LIBOBJS): New.
10510         * lib/autoconf/general.m4 (AC_INIT): More informative error
10511         message for LIBOBJ.
10513 2002-03-04  Akim Demaille  <akim@epita.fr>
10515         * lib/freeze.mk ($(build_libdir)/m4sugar/version.m4): New, for
10516         parallel builds.
10518 2002-03-04  Akim Demaille  <akim@epita.fr>
10520         * doc/autoconf.texi (Transforming Names): Equality between target
10521         and host is irrelevant.
10522         (Specifying Names, Canonicalizing): Remove all references to the
10523         backward compatibility hooks.  Rather, collect them all into...
10524         (Hosts and Cross-Compilation): this new section.
10525         * doc/install.texi (System Type): Ditto.
10526         * lib/autoconf/general.m4 (AC_CANONICAL_HOST): Explicitly state
10527         that `--host' implies cross-compilation.
10529 2002-03-04  Akim Demaille  <akim@epita.fr>
10531         * doc/autoconf.texi (Evaluation Macros): New.
10532         * lib/m4sugar/m4sugar.m4 (m4_lquote): Remove, it is totally
10533         useless.
10534         (_m4_foreach): Define the variant with immediate evaluation so
10535         that it contains exactly the items, not an expression which
10536         evaluation is the current item.
10537         (m4_re_string, m4_re_word): Don't over quote them.
10539 2002-03-04  Akim Demaille  <akim@epita.fr>
10541         Instead of having stacking `shift's evaluated at the end, let
10542         `foreach' loops immediately evaluate them.
10544         * lib/m4sugar/m4sugar.m4 (m4_quote, m4_dquote): Use $@ rather than
10545         $*.  This is the n-th time I change my mind, but hopefully this is
10546         the last...
10547         (m4_lquote): New.
10548         (m4_text_wrap): Use m4_foreach, which is finally correct _and_
10549         efficient.
10550         (m4_foreach_quoted, m4_car_quoted, _m4_foreach_quoted): Remove, as
10551         it was only a hack for m4_text_wrap.
10552         (m4_car2): Remove, replaced by...
10553         (m4_cdr): New.
10554         (_m4_foreach): Adjust.
10555         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Adjust, and use
10556         m4_bpatsubst for clarification.
10558 2002-03-04  Akim Demaille  <akim@epita.fr>
10560         * doc/autoconf.texi (Changequote is Evil): New.
10562 2002-03-03  Kevin Ryde  <user42@zip.com.au>
10564         * doc/autoconf.texi (Portable Shell): Mention 32-byte #! length limit
10565         on old systems like SunOS.
10567 2002-03-01  Peter Eisentraut  <peter_e@gmx.net>
10569         * lib/autoconf/c.m4, lib/autoconf/fortran.m4,
10570         lib/autoconf/functions.m4, lib/autoconf/general.m4,
10571         lib/autoconf/headers.m4, lib/autoconf/lang.m4,
10572         lib/autoconf/programs.m4, lib/autoconf/status.m4: Improve spelling
10573         of messages.
10575 2002-02-28  Akim Demaille  <akim@epita.fr>
10577         * lib/autotest/general.m4 (AT_INIT): Suggest a title to the
10578         message to be sent.
10580 2002-02-28  Kevin Ryde  <user42@zip.com.au>
10582         * doc/autoconf.texi (Function Portability): Add va_copy and va_list.
10584 2002-02-25  Akim Demaille  <akim@epita.fr>
10586         * lib/autoconf/functions.m4 (AC_FUNC_SETPGRP): Fix the test.
10587         From Akinori Musha.
10589 2002-02-13  Alexandre Duret-Lutz  <duret_g@epita.fr>
10591         * lib/Autom4te/XFile.pm (getline, getlines): New functions,
10592         translate \r\n to \n.
10594 2002-02-07  Akim Demaille  <akim@epita.fr>
10596         Version 2.52h.
10598 2002-02-07  Akim Demaille  <akim@epita.fr>
10600         Fix Autoconf PR/209.
10601         Also reported by Frank Denis.
10603         * lib/m4sugar/m4sh.m4 (_AS_PATH_WALK): Don't over quote.
10605 2002-02-07  Akim Demaille  <akim@epita.fr>
10607         Fix Autoconf PR/207:
10608         AC_PREFIX_PROGRAM fails with dashed program names
10610         * lib/autoconf/general.m4 (AC_PREFIX_PROGRAM): Just use a fresh
10611         variable when looking for the prefix program.
10612         Now it also works for shell variables.
10614 2002-02-07  Akim Demaille  <akim@epita.fr>
10616         * doc/autoconf.texi (Limitations of Builtins): More about
10617         case/esac.
10619 2002-02-06  Akim Demaille  <akim@epita.fr>
10621         * lib/autoconf/status.m4 (_AC_OUTPUT_COMMANDS): Don't output empty
10622         case/esac, some shells don't support it.
10623         Reported by Zack Weinberg.
10624         * tests/torture.at (AC_CONFIG_COMMANDS with empty commands): New.
10626 2002-02-06  Akim Demaille  <akim@epita.fr>
10628         * lib/autotest/general.m4 (AT_INIT): When handling --keywords, be
10629         sure not to introduce newlines in at_groups.
10630         * lib/autotest/Makefile.am (autotest.m4f): Typo.
10632 2002-02-06  Akim Demaille  <akim@epita.fr>
10634         * tests/torture.at (Configuring subdirectories): Skip if aclocal
10635         is not available.
10637 2002-02-05  Paul Eggert  <eggert@twinsun.com>
10639         * doc/autoconf.texi (Specific Compiler Characteristics):
10640         Describe HP-UX cc bug workaround more accurately.
10641         * lib/autoconf/types.m4 (AC_CHECK_SIZEOF): Cast to long,
10642         not unsigned long.
10643         * tests/semantics.at (AC_CHECK_SIZEOF): Check non-GCC
10644         cross-compilers, too.  This undoes some of the most recent change
10645         to this file.
10647 2002-02-05  Akim Demaille  <akim@epita.fr>
10649         * tests/Makefile.am (check_SCRIPTS): Use it, instead of WRAPPERS,
10650         to make sure they are up to date when `check' is run.
10652 2002-02-05  Akim Demaille  <akim@epita.fr>
10654         * doc/autoconf.texi (Making testsuite Scripts): Document
10655         package.m4.
10657 2002-02-05  Akim Demaille  <akim@epita.fr>
10659         * lib/freeze.mk: New.
10661 2002-02-05  Akim Demaille  <akim@epita.fr>
10663         Implement `autom4te --freeze'.
10665         * bin/autom4te.in (&freeze): New.
10666         * lib/autoconf/autoconf.m4, lib/autotest/general.m4,
10667         * lib/m4sugar/m4sh.m4: Don't include files given by autom4te.
10669 2002-02-05  Akim Demaille  <akim@epita.fr>
10671         * bin/autom4te.in (&parse_args): Implement `frozen files are
10672         optional are the sum of the previous files on the command line'.
10673         Also, pass `--reload-state=' on them, so...
10674         (handle_m4): don't.
10675         * lib/autom4te.in (Autotest, Autoconf): Rely on M4sh.
10676         (M4sh): Rely on M4sugar.
10677         (Autotest, M4sh, M4sugar): Use frozen files.
10679 2002-01-31  Akim Demaille  <akim@epita.fr>
10681         * lib/autoconf/general.m4 (_AC_INIT_PACKAGE): Accept $4.
10682         * doc/autoconf.texi (Initializing configure): Adjust.
10684 2002-01-30  Akim Demaille  <akim@epita.fr>
10686         * lib/autoconf/general.m4 (_AC_INIT_PACKAGE): Map non
10687         alphanumeric to `-' instead of `_'.
10689 2002-01-30  Akim Demaille  <akim@epita.fr>
10691         * tests/semantics.at (AC_CHECK_SIZEOF): Split into two tests: one
10692         for plain code, the other for cross-compilation code.  The latter
10693         is now run with GCC only.
10694         * doc/autoconf.texi (Compilers and Preprocessors): New.
10696 2002-01-30  Akim Demaille  <akim@epita.fr>
10698         * lib/autoconf/general.m4 (_AC_INIT_PACKAGE): Support pre-defined
10699         values.
10700         * doc/autoconf.texi (Initializing configure): Explain how to
10701         change AC_INIT default values.
10703 2002-01-29  Akim Demaille  <akim@epita.fr>
10705         * tests/torture.at (Configuring subdirectories): Use configure.in,
10706         so that aclocal 1.4 works.
10707         Reported by Alexandre Duret-Lutz and Larry Schmitt.
10709 2002-01-28  Akim Demaille  <akim@epita.fr>
10711         * doc/autoconf.texi (Writing testsuite.at): AT_CLEANUP no longer
10712         needs an argument.
10714 2002-01-28  Akim Demaille  <akim@epita.fr>
10716         * lib/autotest/general.m4 (AT_INIT): Don't be ridiculous: adjust
10717         AUTOTEST_PATH *after* it was set.
10718         Don't put `.' in the PATH: the user should be precise and `./' if
10719         needed.  In addition, given that the test suite does some `cd', if
10720         `.' is in the path, the `tested programs' sections will report
10721         programs found in the test suite's directory, while during the
10722         tests (performed in their own directory), these programs are no
10723         longer visible.  In other words, the results is confusing and
10724         useless.
10725         * tests/m4sh.at: Adjust: don't rely on `.' being in the PATH.
10727 2002-01-24  Akim Demaille  <akim@epita.fr>
10729         Version 2.52g.
10731 2002-01-24  Akim Demaille  <akim@epita.fr>
10733         * bin/autoheader.in, bin/autoconf.in, bin/autoscan.in,
10734         * doc/autoconf.texi: Finally add Akim as an author.
10736 2002-01-24  Akim Demaille  <akim@epita.fr>
10738         * lib/m4sugar/m4sh.m4 (_AS_LINENO_PREPARE): Use PATH_SEPARATOR.
10739         (_AS_PATH_SEPARATOR_PREPARE): Don't expect $SHELL to be
10740         Bourne. Use /bin/sh.
10741         From Andreas Buening.
10743 2002-01-24  Akim Demaille  <akim@epita.fr>
10745         * config/config.guess, config/config.sub, config/texinfo.tex:
10746         Update from masters.
10748 2002-01-24  Akim Demaille  <akim@epita.fr>
10750         * Makefile.am (AUTOMAKE_OPTIONS): 1.5b.
10751         * config/auxdir.m4, config/cond.m4, config/depend.m4,
10752         * config/init.m4, config/install-sh.m4, config/lispdir.m4,
10753         * config/missing.m4, config/sanity.m4, config/select.m4,
10754         * config/strip.m4: Remove, to ease sync'ing with any version of
10755         Automake.
10757 2002-01-24  Akim Demaille  <akim@epita.fr>
10759         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ARGS)
10760         (_AC_INIT_PREPARE): Support -n as --no-create, as documented.
10761         Reported by Geir Ove Myhr.
10763 2002-01-21  Akim Demaille  <akim@epita.fr>
10765         * lib/autoconf/functions.m4 (AC_FUNC_MMAP): #Undef malloc.
10767 2002-01-21  Akim Demaille  <akim@epita.fr>
10769         * lib/Autom4te/General.pm (getopt): Use a more GNUish error
10770         message on invalid options.
10771         * bin/autom4te.in (parse_args): Don't use
10772         Autoconf::General::getopt with non valid options.
10774 2002-01-17  Jim Meyering  <meyering@lucent.com>
10776         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Initialize
10777         $ac_cv_exeext so we don't use an old, invalid, cached value.
10779 2002-01-11  Akim Demaille  <akim@epita.fr>
10781         * lib/autoconf/functions.m4 (AC_FUNC_STRNLEN): New, from Jim
10782         Meyering.
10783         * doc/autoconf.texi (Function Portability): Document the strnlen
10784         limitation.
10785         (Particular Functions): Document AC_FUNC_STRNLEN.
10786         * lib/autoscan/functions: Adjust.
10788 2002-01-06  Akim Demaille  <akim@epita.fr>
10790         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): Don't create
10791         package.m4, since is really depends upon configure.ac, not
10792         configure.
10793         * doc/autoconf.texi (testsuite Scripts): Adjust.
10794         * tests/Makefile.am (package.m4): New.
10795         EXTRA_DIST it since its a source.
10797 2002-01-06  Akim Demaille  <akim@epita.fr>
10799         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ARGS): Move the AC_SUBST
10800         of PACKAGE_NAME, PACKAGE_TARNAME, PACKAGE_VERSION, PACKAGE_STRING,
10801         and PACKAGE_BUGREPORT from here...
10802         (_AC_INIT_DEFAULTS): to here, since it is unrelated to the
10803         arguments.
10804         (_AC_INIT_PREPARE): AC_DEFINE these symbols.
10805         * lib/autotest/general.m4: Use AT_PACKAGE_*, not PACKAGE_*.
10806         (AT_INIT): No longer catch `^PACKAGE_(BUGREPORT|STRING)$'.
10807         * tests/tools.at (autoheader): Adjust.
10808         * tests/atspecific.m4 (AT_CHECK_DEFINES): Adjust.
10810 2002-01-06  Akim Demaille  <akim@epita.fr>
10812         * bin/autoscan.in (scan_file): Use `&used'.
10814 2002-01-03  Akim Demaille  <akim@epita.fr>
10816         * doc/autoconf.texi (Output): Improved wording regarding use of
10817         AC_OUTPUT.
10818         From Olly Betts.
10820 2001-12-18  Kevin Ryde  <user42@zip.com.au>
10822         * doc/autoconf.texi (Function Portability): Add notes on sscanf
10823         sometimes needing writable input.
10825 2001-12-17  Jim Meyering  <meyering@lucent.com>
10827         * doc/autoconf.texi (New Macros): Tweak wording.
10829 2001-12-14  Akim Demaille  <akim@epita.fr>
10831         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): We cleaning up the
10832         trailing files, don't apply `-rf' to files which might not be
10833         created by configure (core, core.*, and *.core), but just `rm -f'.
10834         Suggested by Jonathan Kamens.
10836 2001-12-14  Aaron M. Ucko  <amu@alum.mit.edu>
10838         * lib/autoconf/general.m4: Avoid duplicates in `$ac_configure_args'.
10840 2001-12-14  Akim Demaille  <akim@epita.fr>
10842         * Makefile.am (MAINTAINERCLEANFILES): Remove configure.
10844 2001-12-13  Peter Eisentraut  <peter_e@gmx.net>
10846         * lib/autoconf/status.m4 (_AC_SRCPATHS): Rename buildpath to
10847         abs_builddir, top_buildpath to abs_top_builddir, srcpath to
10848         abs_srcdir, top_srcpath to abs_top_srcdir.
10849         (_AC_OUTPUT_FILES): Adjust.
10850         * NEWS, doc/autoconf.texi, lib/autoconf/autotest.m4,
10851         * tests/atspecific.m4, tests/autoreconf.in, tests/tools.at,
10852         * tests/wrappl.in, tests/wrapsh.in: Adjust.
10854 2001-12-12  Steven G. Johnson  <stevenj@alum.mit.edu>
10856         * lib/autoconf/fortran.m4 (_AC_PROG_F77_V_OUTPUT): Fix failed
10857         C/Fortran linking on HP/UX, by extracting the Fortran library
10858         search path from the LPATH line in the $F77 -v output.
10860 2001-12-12  Kevin Ryde  <user42@zip.com.au>
10862         * doc/autoconf.texi (File Descriptors): Use a clearer layout for the
10863         forbidden file descriptors table.
10865 2001-11-26  Akim Demaille  <akim@epita.fr>
10867         * bin/autoscan.in (%c_keywords): Build it at top level.
10868         Map to 1 in order to simplify its uses.
10870 2001-11-26  Akim Demaille  <akim@epita.fr>
10872         * bin/autoscan.in (&scan_c_file, &scan_sh_file, &scan_makefile):
10873         Remove $filepath, useless.
10874         (&scan_makefile): Don't remove the $(FOO), ${FOO} and @FOO@
10875         variables, they are really part of the tokens.
10876         Split the input line on spaces and then look for tokens.
10877         Now autoscan ceases to ask for AC_PROG_LEX for the package Bison
10878         because of `lex$U.$(OBJEXT)'.
10879         (&scan_files): Use "@list" instead of join.
10880         * doc/Makefile.am (CLEANFILES): Add *.fns.
10882 2001-11-26  Akim Demaille  <akim@epita.fr>
10884         * tests/autoreconf.in, tests/autom4te.in, tests/autoupdate.in:
10885         Remove, replaced by...
10886         * tests/wrappl.in: Be common for all the Perl executables.
10887         In particular autoscan and autoheader want -I.
10888         * configure.ac: Adjust.
10889         * lib/autoscan/headers: errno.h is portable.
10891 2001-11-26  Akim Demaille  <akim@epita.fr>
10893         * bin/autoscan.in (used): New.
10894         Use it.
10896 2001-11-26  Akim Demaille  <akim@epita.fr>
10898         * bin/autoscan.in (&scan_c_file): Better parsing of CPP
10899         directives.
10900         (&scan_sh_file): Remove a duplicate pattern.
10901         (&check_configure_ac): Use long options.
10902         * lib/autoscan/headers (alloca.h): Check with AC_FUNC_ALLOCA.
10904 2001-11-26  Akim Demaille  <akim@epita.fr>
10906         * bin/autoscan.in (scan_c_file): Fix the handling of C comments.
10907         Before, having a line containing the opening of a multi line
10908         comment made the whole line be ignored.
10910 2001-11-26  Akim Demaille  <akim@epita.fr>
10912         * doc/autoconf.texi (Using an Autotest Test Suite): New.
10913         (testsuite Scripts): Be one of its subsection.
10914         (Autotest Logs): New.
10916 2001-11-26  Akim Demaille  <akim@epita.fr>
10918         Test groups are now run two directories deeper.
10920         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): Replace srcdir,
10921         top_srcdir and top_builddir with at_srcdir, at_top_srcdir and
10922         at_top_builddir.
10923         * lib/autotest/general.m4 (AT_INIT): Compute srcdir,
10924         top_srcdir, builddir and top_builddir.
10925         Use `at_*dir' relatively to the directory containing the
10926         suite, use `*dir' when relatively to the current group dir.
10928 2001-11-25  Joseph S. Myers  <jsm28@cam.ac.uk>
10930         * doc/autoconf.texi, TODO, lib/autoconf/fortran.m4,
10931         lib/autoconf/functions.m4, lib/autoconf/headers.m4,
10932         tests/atgeneral.m4, tests/tools.at, tests/atspecific.m4: Fix
10933         spelling errors.
10935 2001-11-22  Alexandre Duret-Lutz  <duret_g@epita.fr>
10937         * doc/autoconf.texi (Using System Type): Add an example of `case
10938         $host' usage so people quit using `case $target' everywhere.
10940 2001-11-22  Akim Demaille  <akim@epita.fr>
10942         * doc/autoconf.texi (Installation Directory Variables): Englishoes
10943         spotted by Jim Meyering.
10945 2001-11-16  Paul Eggert  <eggert@twinsun.com>
10947         This patch implements a `long double' suggestion by Oliver Kiddle.
10949         * lib/autoconf/c.m4 (AC_LANG_BOOL_COMPILE_TRY(C)): Make the array
10950         static, to catch errors if the value isn't known at compile-time
10951         and the compiler supports dynamic arrays.  Change its name from
10952         `_array_' to `test_array' to avoid potential name clashes.
10953         (AC_C_LONG_DOUBLE): Make it a compile-time test, not a run-time
10954         test.  Do not define HAVE_LONG_DOUBLE if `long double' is no
10955         better than double.  Catch a bug in GCC 2.95.2 x86.
10956         * doc/autoconf.texi (C Compiler): Document the above.
10957         * NEWS: Likewise.
10959 2001-11-13  Akim Demaille  <akim@epita.fr>
10961         * tests/m4sh.at (LINENO): Protect from autom4te's substitution by
10962         hand.
10963         * tests/tools.at: Don't protect dnl, AT_DATA_M4SH does.
10965 2001-11-13  Akim Demaille  <akim@epita.fr>
10967         * lib/autotest/general.m4 (AT_INIT): After having run the test
10968         group, go back to the initial directory, not to at_suite_dir.
10970 2001-11-13  Akim Demaille  <akim@epita.fr>
10972         * tests/atspecific.m4 (AT_DATA_M4SUGAR, AT_DATA_M4SH)
10973         (AT_DATA_AUTOCONF):  Also protect @&t@ from autom4te.
10974         (AT_CHECK_AUTOCONF, AT_CHECK_AUTOHEADER): Pass no --include
10975         option.
10976         (AT_CHECK_CONFIGURE): Use absolute paths.
10977         (_AT_CHECK_AC_MACRO): Create aclocal.m4 with AC_STATE_SAVE in it.
10978         The problem is still the old one: there is no means in M4 (that I
10979         know about) to create a defining macro, because there is no means
10980         to create `$1' etc., therefore, the defining macro ``swallows''
10981         all the arguments meant to the defined macro.
10983 2001-11-13  Akim Demaille  <akim@epita.fr>
10985         * tests/atspecific.m4 (AT_DATA_AUTOCONF): New.
10986         (AT_CONFIGURE_AC): Output the definition of AC_STATE_SAVE in
10987         configure.ac.
10988         * tests/aclocal.m4: Remove, as it is no longer used.
10990 2001-11-13  Akim Demaille  <akim@epita.fr>
10992         * lib/autotest/general.m4: Change `tests?' into `groups?' in
10993         variable names when referring to a single test group, or to
10994         `suite' when referring to the whole test suite.
10995         `at_last_test' is removed: m4 compute at_format itself.
10996         (at_stdout, at_stder1, at_stderr): New variables.
10997         (AT_CHECK): Use them.
10999 2001-11-13  Akim Demaille  <akim@epita.fr>
11001         * lib/autotest/general.m4 (AT_INIT): Be sure to put `.', relative,
11002         in PATH.
11003         Create `testsuite.dir/003/run' instead of `testsuite.003'.
11004         Do it as soon as a test fails, don't wait till the end of the test
11005         suite.
11006         Don't remove $as_me.[0-9]*, since these files no longer exist.
11008 2001-11-13  Akim Demaille  <akim@epita.fr>
11010         * tests/tools.at: Use absolute paths, since we are no longer run
11011         in place.
11013 2001-11-13  Akim Demaille  <akim@epita.fr>
11015         Now that tests are running in their own private dir, there is no
11016         need to list the files to remove at the end of tests groups.
11018         * lib/autotest/general.m4 (_AT_CLEANUP_FILE, AT_CLEANUP_FILES):
11019         (AT_data_files, at_data_files): Remove.
11020         (AT_CLEANUP, AT_DATA): Simplify.
11021         (AT_INIT): Adjust.
11022         Remove the group dir if !debug && !failed.
11023         * tests/atspecific.m4: Adjust.
11025 2001-11-13  Akim Demaille  <akim@epita.fr>
11027         Start a new layout for Autotest: `testsuite' creates
11028         `testsuite.dir' in which the at-check-line etc. files are to be
11029         found, and `testsuite.dir/003' where the test group 3 is run.
11031         * lib/autotest/general.m4 (AT_INIT): at_tests_dir,
11032         at_check_line_file, at_format, at_test_normalized, at_group_dir
11033         are new variables.
11034         Create the directories.
11035         Use absolute paths for at- files.
11036         (AT_CHECK): Adjust.
11038 2001-11-11  Michael Matz  <matz@kde.org>
11040         * m4sugar.m4 (_m4_foreach): Make it linear instead quadratic.
11041         (m4_car2): New.
11042         (m4_car): Properly quote arguments.
11044 2001-11-13  Akim Demaille  <akim@epita.fr>
11046         * tests/aclocal.m4 (AC_STATE_SAVE): s/LIBOBJS/LIB@&t@OBJS/ to cope
11047         with stricter rules on LIBOBJS.
11049 2001-11-12  Paul Eggert  <eggert@twinsun.com>
11051         * lib/autoconf/c.m4 (AC_C_PROTOTYPES): Define __PROTOTYPES too.
11052         * doc/autoconf.texi (C Compiler): AC_C_PROTOTYPES now defines
11053         __PROTOTYPES too.
11055 2001-11-12  Akim Demaille  <akim@epita.fr>
11057         * lib/autoconf/functions.m4 (AC_FUNC_GETMNTENT): Use AC_CHECK_FUNCS.
11059 2001-11-12  Akim Demaille  <akim@epita.fr>
11061         * lib/autoconf/c.m4, lib/autoconf/fortran.m4,
11062         * lib/autoconf/functions.m4, lib/autoconf/general.m4,
11063         * lib/autoconf/headers.m4, lib/autoconf/libs.m4,
11064         * lib/autoconf/programs.m4, lib/autoconf/specific.m4,
11065         * lib/autoconf/types.m4: When invoking AC_DEFINE and friends,
11066         specify to what the macro should be defined (typically to 1).
11068 2001-11-12  Akim Demaille  <akim@epita.fr>
11070         * lib/autoconf/functions.m4 (AC_FUNC_STRTOD): AC_SUBST POW_LIB.
11071         From Jim Meyering.
11073 2001-11-12  Akim Demaille  <akim@epita.fr>
11075         * lib/autoconf/programs.m4 (_AC_PROG_LEX_YYTEXT_DECL): Use
11076         AC_TRY_EVAL to run $LEX, not AC_TRY_COMMAND.  This validates the
11077         definition used by Automake where LEX is +/- "${missing} lex" and
11078         `missing' itself contains variables.
11080 2001-11-12  Akim Demaille  <akim@epita.fr>
11082         * lib/autotest/general.m4 (AT_INIT): Push KILL at the end.
11083         Now that M4sh pushes BODY, the comments were output at the end of
11084         the test suites.
11086 2001-11-08  Akim Demaille  <akim@epita.fr>
11088         * bin/autoreconf.in (&autoreconf): Run aclocal before tracing, so
11089         that we can trace macros from aclocal.m4.
11090         Trace AC_PROG_LIBTOOL, not AM_PROG_LIBTOOL, since the latter is
11091         obsoleted, and redirect to the former anyway.
11092         Reported by Ralf Corsepius.
11094 2001-11-08  Akim Demaille  <akim@epita.fr>
11096         * bin/autoreconf.in (&autoreconf): AC_CONFIG_SUBIDRS are to be
11097         processed only if present.
11098         * tests/torture.at (Configuring subdirectories): Use autoreconf
11099         instead of successive calls to autoconf.
11100         Add a nonexistent subdirectory to exercise the patch above.
11101         Reported by Ralf Corsepius.
11103 2001-11-08  Kevin Ryde  <user42@zip.com.au>
11105         * doc/autoconf.texi (Limitations of Usual Tools): Note HP-UX cc
11106         doesn't accept .S files.
11108 2001-11-07  Akim Demaille  <akim@epita.fr>
11110         * lib/m4sugar/m4sugar.m4 (m4_pattern_forbid): Accepts $2.
11111         * lib/autoconf/general.m4 (AC_INTI): Forbid LIBOBJS.
11112         (_AC_LIBOBJ): s/LIBOBJS/LIB@&t@OBJS/.
11113         * bin/autom4te.in (warn_forbidden): New.
11114         (handle_output): Use it.
11115         Read m4_pattern_forbid with messages.
11117 2001-11-05  Akim Demaille  <akim@epita.fr>
11119         * bin/autom4te.in (--normalize): Remove.
11120         * lib/autom4te.in: Adjust.
11122 2001-11-05  Akim Demaille  <akim@epita.fr>
11124         * tests/Makefile.am (testsuite): Rename this target as...
11125         ($(TESTSUITE)): this.
11126         From Nicolas Joly.
11128 2001-11-05  Alexandre Duret-Lutz  <duret_g@epita.fr>
11130         * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): When removing
11131         the --prefix option, also remove it's argument.
11133 2001-11-05  Akim Demaille  <akim@epita.fr>
11135         * doc/autoconf.texi (testsuite Invocation): Update.
11136         (Writing testsuite.at): Update.
11138 2001-11-03  Akim Demaille  <akim@epita.fr>
11140         * doc/autoconf.texi: s/@code/@command/ where appropriate.
11142 2001-11-03  Akim Demaille  <akim@epita.fr>
11144         * lib/Autom4te/General.pm: (&catfile, &canonfile)
11145         (&file_name_is_absolute): New, wrappers around routines from
11146         File::Spec.
11147         Use and export them.
11148         (&find_configure_ac): Optionally take a directory where to look at.
11149         * bin/autoreconf.in (&parse_args): Trim the configure.ac part of
11150         the arguments.
11151         Default @ARGV to `.', not find_configure_ac.
11152         (&autoreconf): Argument is a directory.
11153         Trace AC_CONFIG_SUBDIRS and schedule the subdirs for autoreconf'ing.
11154         * doc/autoconf.texi (autoreconf Invocation): Update.
11156 2001-11-03  Akim Demaille  <akim@epita.fr>
11158         * lib/Autom4te/General.pm (@export_vars, @export_subs)
11159         (@export_forward_subs): New.
11160         Add basename, dirname, and fileparse.
11161         (@EXPORT): Adjust.
11162         * bin/autoreconf.in (&autoreconf): Fix call to fileparse.
11163         Don't look for aclocal flags if we already know aclocal is not
11164         used.
11165         Move aclocal.m4t only if it exists.
11166         Reported by Ezra Peisach.
11168 2001-11-03  Akim Demaille  <akim@epita.fr>
11170         * bin/autoreconf.in (&parse_args): Work only on the configure.ac
11171         passed on command line, defaulting to ./configure.ac if present.
11172         (&maybe_autoreconf, File::Find): Remove, unused.
11173         (&autoreconf): If autoconf is not used, don't try to trace.
11175 2001-11-02  Akim Demaille  <akim@epita.fr>
11177         * configure.ac: Bump to 2.52g.
11179 2001-11-02  Akim Demaille  <akim@epita.fr>
11181         Version 2.52f.
11183 2001-11-02  Akim Demaille  <akim@epita.fr>
11185         * config/config.guess, config/config.sub, doc/standards.texi:
11186         * config/lispdir.m4: Update from masters.
11187         * configure.ac: Bump to 2.52f.
11189 2001-11-02  Akim Demaille  <akim@epita.fr>
11191         * bin/autoreconf.in (&autoreconf): Set `$aclocal_flags' to ''.
11192         Don't run aclocal when aclocal.m4 is not from aclocal.
11193         From Ezra Peisach.
11194         Don't run libtoolize and gettextize if --install is not given.
11196 2001-11-01  Paul Eggert  <eggert@twinsun.com>
11198         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): _AS_CR_PREPARE needs to
11199         be invoked before _AS_LINENO_PREPARE.
11200         (_AS_LINENO_PREPARE): Use as_cr_digits and as_cr_alnum rather
11201         than character ranges.
11203         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Fix NLS before
11204         invoking AS_BASENAME.  Set the locale variables to 'C' if
11205         possible, as POSIX requires this to get the traditional
11206         behavior.
11207         * doc/autoconf.texi (Special Shell Variables): Describe the above.
11209 2001-10-31  Paul Eggert  <eggert@twinsun.com>
11211         * lib/m4sugar/m4sh.m4 (_AS_LINENO_WORKS): Do not surround body
11212         with {}, as that triggers a bug in Bash 2.05.
11214         (_AS_LINENO_PREPARE): Use Sed rather than
11215         Awk.  Fix the sed prepass to work even if there are multiple
11216         instances of $LINENO on the same line.  Do not substitute for
11217         other variables like $LINENOT.  Do not check file dates; such a
11218         check is unreliable on sufficiently fast machines, and removing
11219         the check makes the code simpler and more reliable.  Check for
11220         output and chmod failures.
11222         * doc/autoconf.texi (Special Shell Variables): Document
11223         the above.
11225 2001-10-31  Akim Demaille  <akim@epita.fr>
11227         * tests/Makefile.am (atconfig): Remove this target, Automake
11228         handles it now.
11230 2001-10-31  Akim Demaille  <akim@epita.fr>
11232         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): Do not
11233         AC_CONFIG_FILES(atlocal) as it means a file atlocal.in *must* be
11234         provided, while it is optional.
11235         * configure.ac: Adjust.
11237 2001-10-26  Paul Eggert  <eggert@twinsun.com>
11239         * NEWS, README, configure.ac, lib/Autom4te/General.pm,
11240           lib/Autom4te/Struct.pm:
11241         Require Perl 5.005_03 instead of just 5.005, as some tests fail
11242         with 5.005_02.
11244         * doc/autoconf.texi (Special Shell Variables): Document some
11245         more LINENO gotchas, particularly with respect to the Awk+Sed hack.
11247         * lib/m4sugar/m4sh.m4 (_AS_LINENO_WORKS): New macro.
11248         (_AS_LINENO_PREPARE): Use it instead of shell eval, since
11249         eval $LINENO is not portable in practice.
11251 2001-10-24  Akim Demaille  <akim@epita.fr>
11253         * lib/Autom4te/General.pm (backname): New.
11255 2001-10-24  Akim Demaille  <akim@epita.fr>
11257         * m4/: Remove, merged into...
11258         * config/: here.
11260 2001-10-23  Tim Van Holder  <tim.van.holder@pandora.be>
11262         * doc/autoconf.texi (Shellology): Mention the problems with bash
11263         2.05's use of ANSI quoting in its `set' builtin.
11265 2001-10-22  Paul Eggert  <eggert@twinsun.com>
11267         * lib/autoconf/functions.m4 (AC_FUNC_STRERROR_R):
11268         Rename ac_cv_func_strerror_r_works to ac_cv_func_strerror_r_char_p,
11269         and rename HAVE_WORKING_STRERROR_R to STRERROR_R_CHAR_P, since
11270         POSIX decided to standardize on the int flavor of strerror_r.
11271         Always do char* test, as there's no reason not to.
11272         Assign to a char* var, to catch strerror_r that returns int*.
11274         * doc/autoconf.texi (Particular Functions):
11275         Document the above changes.  Also, document the fact that
11276         AC_FUNC_STRERROR_R defines HAVE_DECL_STRERROR_R.
11278         * NEWS: Mention HAVE_WORKING_STRERROR_R -> STRERROR_R_CHAR_P.
11280 2001-10-20  Akim Demaille  <akim@epita.fr>
11282         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): The name of
11283         the executable was missing from the log.
11285 2001-10-20  Akim Demaille  <akim@epita.fr>
11287         * lib/Autom4te/General.pm (&update_file): If destination is
11288         unchanged, remove the source.
11289         (&up_to_date_p): Don't be verbose, be debug.
11290         * bin/autoreconf.in: No longer support --m4dir.
11291         (&autoreconf): Display the full path of the configure.ac we are
11292         studying.
11293         Trace it only once.
11294         Be sure to honor --force with gettextize.
11295         Always run aclocal.
11296         * doc/autoconf.texi: Adjust.
11298 2001-10-20  Akim Demaille  <akim@epita.fr>
11300         * bin/autoheader.in ($localdir, $m4, $SIMPLE_BACKUP_SUFFIX):
11301         Remove, dead.
11302         * bin/autoreconf.in (&autoreconf): Do not run gettextize when
11303         `intl' is already present, as it refuses unless --force.
11304         (&parse_args): Use -I, --include instead of the old Autoconf
11305         options.
11306         ($localdir, $autoconf_dir): Remove.
11307         (@include): New.
11308         (&maybe_autoreconf): New, to preserve $_ for File::Find.
11310 2001-10-19  Jens Petersen  <petersen@redhat.com>
11312         * lib/autoconf/programs.m4 (AC_PROG_AWK): Prefer gawk to mawk.
11313         * doc/autoconf.texi (Particular Programs): Likewise.
11315 2001-10-19  Akim Demaille  <akim@epita.fr>
11317         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES): Name the generated
11318         file in @configure_input@.
11319         Don't mention `automatically' in addition to `generated'.
11320         * tests/torture.at (#define header templates): Adjust.
11322 2001-10-19  Akim Demaille  <akim@epita.fr>
11324         * lib/emacs/autoconf-mode.el, lib/emacs/autotest-mode.el: In a
11325         comment, explain how to install automatic mode selection.
11326         From Russ Allbery.
11328 2001-10-19  Ezra Peisach  <epeisach@zif.mit.edu>
11330         * bin/autoreconf.in (autoreconf): Display the path to the
11331         configure.ac being studied.
11333 2001-10-18  Paul Eggert  <eggert@twinsun.com>
11335         * lib/autoconf/types.m4 (AC_CHECK_SIZEOF): Cast sizeof to unsigned
11336         long, to work around a bug in the HP C compiler version HP92453-01
11337         B.11.11.23709.GP.
11339         * lib/m4sugar/m4sh.m4 (AS_DIRNAME): Use 'dirname' if that works.
11340         (AS_BASENAME_EXPR): New macro.
11341         (AS_BASENAME_SED): Do not assume GNU sed semantics.
11342         (AS_BASENAME): Use 'basename' if that works; then try 'expr';
11343         and fall back on 'sed' only if the other two fail.  This makes
11344         AS_BASENAME act more like AS_DIRNAME.
11345         (as_me): Shell-quote the argument of AS_BASENAME, in case $0
11346         contains white space.
11347         * lib/autoconf/general.m4 (_AC_INIT_SRCDIR):
11348         Use AS_DIRNAME, since I think it's now DOS-friendly.
11349         * tests/m4sh.at (DIRNAME_TEST): New arg $3.
11350         Allow "dirname //FOO" to return either / or //, as POSIX allows
11351         either behavior.
11353 2001-10-10  Akim Demaille  <akim@epita.fr>
11355         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Recognize
11356         `a_out.exe' for OpenVMS 7.1, DEC C 5.5 compiler, via GNV.
11357         From Eric Sharkey.
11359 2001-10-10  Akim Demaille  <akim@epita.fr>
11361         * lib/m4sugar/m4sh.m4 (_AS_ECHO_N_PREPARE): m4_defun, not
11362         m4_define, since...
11363         (_AS_ECHO_N): AS_REQUIREs it.
11365 2001-10-10  Akim Demaille  <akim@epita.fr>
11367         * lib/autoconf/general.m4 (_AC_INCLUDES_DEFAULT_REQUIREMENTS)
11368         (AC_INCLUDES_DEFAULT): Move to...
11369         * lib/autoconf/headers.m4: here.
11370         * lib/autoconf/types.m4: Comment changes.
11371         * doc/autoconf.texi: Specify where the default includes are used
11372         in the macro prototypes.
11374 2001-10-09  Akim Demaille  <akim@epita.fr>
11376         * lib/autoconf/autoconf.m4 (m4_patsubst, m4_regexp): New
11377         transition code.
11379 2001-10-08  Akim Demaille  <akim@epita.fr>
11381         * bin/autoreconf.in (&autoreconf): Remove debugging code.
11382         (&parse_args): Pass verbosity/debugging options to subtools when
11383         --debug, not when --verbose.
11384         * lib/autom4te.in (Autoreconf-preselections): New.
11385         (Autoconf): Use it.
11387 2001-10-08  Akim Demaille  <akim@epita.fr>
11389         * bin/autoreconf.in (autoreconf): Run libtoolize when appropriate.
11391 2001-10-08  Akim Demaille  <akim@epita.fr>
11393         * doc/autoconf.texi (autoreconf Invocation): Adjust.
11394         * bin/autoreconf.in (autoreconf): Run gettextize when appropriate.
11396 2001-10-08  Akim Demaille  <akim@epita.fr>
11398         * tests/tools.at (AT_CHECK_PERL_SYNTAX): Check autoreconf.
11399         (Syntax of the shell scripts): Don't.
11400         * bin/autoheader.in, bin/autom4te.in, bin/autoreconf.in: Don't
11401         bother with $force since...
11402         * lib/Autom4te/General.pm: does.
11404 2001-10-08  Akim Demaille  <akim@epita.fr>
11406         * bin/autoreconf.in: Rewrite in Perl.
11407         * configure.ac: Adjust.
11408         * lib/Autom4te/General.pm (&up_to_date_p): New.
11409         * bin/autom4te.in (&up_to_date_p): Use it.
11410         Rename as...
11411         (&up_to_date): this.
11413 2001-10-08  Akim Demaille  <akim@epita.fr>
11415         * lib/m4sugar/m4sugar.m4 (m4_case, m4_bmatch, m4_normalize)
11416         (m4_list_cmp): Use $0 to reinvoke yourself.
11417         (m4_patsubsts): New.
11418         (m4_strip, m4_version_unletter): Use it.
11419         * tests/atspecific.m4 (AT_DATA_M4SUGAR, AT_DATA_M4SH): Likewise.
11421 2001-10-08  Akim Demaille  <akim@epita.fr>
11423         * lib/autoconf/autoconf.m4, lib/autoconf/general.m4,
11424         * lib/autoconf/libs.m4, lib/autoconf/status.m4,
11425         * lib/autoconf/types.m4, lib/autotest/general.m4,
11426         * lib/m4sugar/m4sh.m4, lib/m4sugar/m4sugar.m4, tests/atspecific.m4,
11427         * tests/torture.at: Rename m4_regexp, m4_patsubst, and m4_match to
11428         m4_bregexp, m4_bpatsubst, and m4_bmatch.
11429         * doc/autoconf.texi (Redefined M4 Macros): Adjust.
11431 2001-10-08  Akim Demaille  <akim@epita.fr>
11433         * lib/m4sugar/m4sh.m4: Use AS_REQUIRE.
11435 2001-10-08  Akim Demaille  <akim@epita.fr>
11437         * lib/m4sugar/m4sh.m4 (AS_DIRNAME_EXPR): Use AS_REQUIRE.
11438         * tests/tools.at (AT_DATA_FORBIDDEN): Rename/move/duplicate to...
11439         * tests/atspecific.m4 (AT_DATA_M4SUGAR, AT_DATA_M4SH): here.
11440         * tests/tools.at, tests/m4sh.at: Use it.
11441         * tests/m4sh.at: Don't rely on Autoconf macros.
11442         (DIRNAME_TEST): Also exercise the expr variant.
11443         * tests/m4sugar.at, tests/atspecific.m4 (AT_CHECK_M4SUGAR): The
11444         preferred M4sugar extension is now `.4s'.
11445         * tests/README: Remove.
11447 2001-10-08  Akim Demaille  <akim@epita.fr>
11449         * lib/m4sugar/m4sugar.m4 (m4_provide_ifelse): Rename as...
11450         (m4_provide_if): this.
11451         * lib/m4sugar/m4sh.m4 (AS_REQUIRE): New.
11452         * lib/autoconf/general.m4 (AS_DEFUN, AC_DEFUN_ONCE, AC_BEFORE)
11453         (AC_REQUIRE, AC_PROVIDE, AC_PROVIDE_IFELSE): Be exact copy of the
11454         M4sugar peer, i.e., drop the `AC_PROVIDE_$1' broken marker.
11456 2001-10-08  Akim Demaille  <akim@epita.fr>
11458         Use `add-log-current-defun-function' for ChangeLog creation.
11459         Suggested by Tom Tromey.
11461         * lib/emacs/autotest-mode.el (autotest-mode-map): New.
11462         (autotest-mode): Adjust.
11463         * lib/emacs/autoconf-mode.el (autoconf-mode-map): Modernize, map
11464         'comment-region onto `C-c ;'.
11465         Comments are `#', not `dnl'.
11466         (autoconf-current-defun): New.
11467         (autoconf-font-lock-keywords): Recognize `m4_defun'.
11469 2001-10-08  Akim Demaille  <akim@epita.fr>
11471         * lib/autoconf/general.m4 (_m4_divert(BODY)): Move to...
11472         * lib/m4sugar/m4sh.m4: here.
11473         (AS_INIT): Push the BODY diversion, set the #! /bin/sh line.
11474         * lib/autoconf/general.m4 (AC_PLAIN_SCRIPT) : Remove.
11475         (AT_INIT): Replace AC_PLAIN_SCRIPT with AS_INIT invocation,
11476         include handle the m4_pattern_*, no longer push the
11477         BODY diversion nor set the /bin/sh line, AS_INIT does it.
11478         * lib/autotest/general.m4 (AT_INIT): Likewise.
11479         * tests/base.at: Adjust the tests to use AS_INIT.
11480         * tests/tools.at (AT_DATA_FORBIDDEN): New.
11481         (autoconf: forbidden tokens): Adjust to work on M4sh instead of
11482         Autoconf.
11484 2001-10-07  Paul Eggert  <eggert@twinsun.com>
11486         * doc/autoconf.texi (config.status Invocation):
11487         CONFIG_SHELL defaults to a shell that supports LINENO if available.
11489         * lib/m4sugar/m4sh.m4 (_AS_LINENO_PREPARE): If the current
11490         shell does not support LINENO, and if CONFIG_SHELL is unset or
11491         empty, and if we can find a shell that does support LINENO,
11492         then set CONFIG_SHELL to that shell and then re-execute
11493         ourselves with CONFIG_SHELL.
11495 2001-10-05  Paul Eggert  <eggert@twinsun.com>
11497         * tests/Makefile.am (clean-local): Don't invoke $(TESTSUITE) if it
11498         doesn't exist.  Remove *.tmp, as a .tmp file is created during the
11499         build of $(TESTSUITE).
11501 2001-10-05  Akim Demaille  <akim@epita.fr>
11503         * lib/m4sugar/m4sh.m4 (_AS_LINENO_PREPARE): Look in the path
11504         iff we are a bareword.
11505         Reported by Raja R Harinath.
11507 2001-10-05  Akim Demaille  <akim@epita.fr>
11509         * tests/m4sh.at (LINENO): New.
11510         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Be sure to set
11511         PATH_SEPARATOR before using it.
11512         Fix the absolute path case/esac pattern.
11513         Provide $0 as fallback for as_myself.
11514         Reported by Raja R Harinath.
11516 2001-10-05  Akim Demaille  <akim@epita.fr>
11518         * Makefile.am, config/Makefile.am, lib/emacs/Makefile.am,
11519         * m4/Makefile.am, man/Makefile.am: Add/adjust MAINTAINERCLEANFILES.
11521 2001-10-05  Akim Demaille  <akim@epita.fr>
11523         * lib/m4sugar/m4sh.m4 (_AS_LINENO_PREPARE): New, extracted from...
11524         (AS_SHELL_SANITIZE): here.  Use it.
11525         (_AS_LINENO_PREPARE): Preserve the exit status of $0.lineno.
11526         From Paul Eggert.
11528 2001-10-04  Akim Demaille  <akim@epita.fr>
11530         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Use a portable
11531         combination of Awk and sed to replace $LINENO.
11533 2001-10-02  Paul Eggert  <eggert@twinsun.com>
11535         * doc/autoconf.texi (Limitations of Builtins): You can't use
11536         "source"; it's not portable.  Remove confusing and
11537         somewhat-incorrect example involving "." and "/".
11539         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): "source" -> ".", for
11540         compatibility with POSIX shells.
11542 2001-10-02  Akim Demaille  <akim@epita.fr>
11544         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Just source 40.lineno
11545         instead of exec'ing to preserve $0 and $@.
11547 2001-10-01  Akim Demaille  <akim@epita.fr>
11549         * tests/testsuite (AT_INIT) <at_pass_list>: New.
11550         Don't run twice the same test.
11552 2001-10-01  Akim Demaille  <akim@epita.fr>
11554         * lib/autotest/general.m4 (AT_INIT) <--help>: Catch up with reality.
11555         No longer output the list of tests.
11556         <--list>: New option.
11557         <--full-help>: Remove.
11558         Complete the short/long options duality.
11559         Various small adjustments.
11561 2001-10-01  Akim Demaille  <akim@epita.fr>
11563         * doc/autoconf.texi: Use @kbd for user input.
11564         Always use `$' as shell prompt.
11566 2001-09-30  Paul Eggert  <eggert@twinsun.com>
11568         * lib/autoconf/status.m4 (AC_OUTPUT_MAKE_DEFS):
11569         Don't use nested parenthesization.  This patch was originally
11570         suggested to bug-autoconf by Philippe De Muyter on 2000-05-28,
11571         but somehow it didn't get incorporated then.
11572         * doc/autoconf.texi (Limitations of Usual Tools):
11573         Clarify remark about sed and nested parenthesization.
11575         * lib/autoconf/types.m4 (AC_CHECK_SIZEOF):
11576         Report an error if the size cannot be determined even though
11577         the type exists.
11578         * lib/autoconf/general.m4 (_AC_COMPUTE_INT_COMPILE):
11579         Check for `expr' arithmetic overflow, and for compilation failure,
11580         and invoke a new argument $4 if either is discovered.
11581         This makes _AC_COMPUTE_INT_COMPILE more like _AC_COMPUTE_INT_RUN.
11582         (_AC_COMPUTE_INT): Pass IF-FAILS arg to _AC_COMPUTE_INT_COMPILE.
11584 2001-09-28  Akim Demaille  <akim@epita.fr>
11586         * lib/emacs/autoconf-mode.el, lib/emacs/autotest-mode.el: New.
11587         * m4/lispdir.m4: New.
11588         * aclocal.m4, configure.ac: Adjust.
11590 2001-09-28  Akim Demaille  <akim@epita.fr>
11592         * lib/autotest/general.m4 (AT_VICTIMS): Rename as...
11593         (AT_TESTED): this.
11594         (AT_INIT): More the wrapped section to where it will be expanded.
11595         Output `AT_tested' only when existing.
11596         Catch unexpanded PACKAGE_STRING and PACKAGE_BUGREPORT.
11598 2001-09-27  Akim Demaille  <akim@epita.fr>
11600         Fix the passing of $? to ACTION-IF-FAILED in AC_TRY_RUN, that
11601         generates too many bug reports.
11603         * lib/autoconf/general.m4 (_AC_RUN_IFELSE): Pass the right exit
11604         status when executing the ACTION-IF-FALSE.
11605         * tests/base.at (AC_TRY_*): Rename as...
11606         (AC_TRY_COMMAND): this.
11607         (AC_RUN_IFELSE): New.
11608         * tests/compile.at (Extensions, C keywords)
11609         (AC_PROG_CPP requires AC_PROG_CC, GNU Fortran 77)
11610         (Broken/missing compilers, AC_PROG_CPP with warnings)
11611         (AC_PROG_CPP without warnings, AC_PROG_CPP via CC): Move to...
11612         * tests/c.at (Extensions, C keywords)
11613         (Broken/missing compilers, AC_PROG_CPP with warnings)
11614         (AC_PROG_CPP without warnings, AC_PROG_CPP via CC)
11615         (AC_PROG_CPP requires AC_PROG_CC): here and...
11616         * tests/fortran.at (GNU Fortran 77): there.
11617         * doc/autoconf.texi (autoconf Invocation): Fix the example:
11618         AC_TRY_RUN is about compilation, not shell commands.
11619         (Test Programs): AC_TRY_RUN works as used to be advertised.
11621 2001-09-27  Akim Demaille  <akim@epita.fr>
11623         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Fix bugs spotted by
11624         Raja R Harinath:
11625         Be sure to detect when $LINENO always returns the same value.
11626         Look for the original script, basename($0) is certainly not
11627         enough.
11628         Pass the CLI arguments to `$as_me.lineno'.
11630 2001-09-25  Akim Demaille  <akim@epita.fr>
11632         * lib/autotest/general.m4 (AT_INIT): Dump the whole config.log.
11633         Be sure the close and reopen the LOG fd before and after using tee
11634         to extend the log.
11635         <at_tests_pattern>: Adjust to the new format of at_help_all.
11637 2001-09-23  Akim Demaille  <akim@epita.fr>
11639         * bin/autom4te.in (parse_args): There can be several invocations
11640         of --language now.
11642 2001-09-23  Akim Demaille  <akim@epita.fr>
11644         * doc/autoconf.texi (Top): Wrap in @ifnottex.
11646 2001-09-23  Akim Demaille  <akim@epita.fr>
11648         * lib/autoconf/status.m4 (_AC_SRCPATHS): Compute and provide
11649         ac_buildpath, ac_top_buildpath, ac_srcpath, and ac_top_srcpath.
11650         (_AC_OUTPUT_FILES): Also substitute srcpath, top_srcpath,
11651         builddir, buildpath, top_builddir, and top_buildpath.
11652         (_AC_OUTPUT_SUBDIRS): Compute the dir variables *before* changing
11653         the current directory.
11654         * lib/autoconf/general.m4 (_AC_INIT_HELP): Compute the dir
11655         variables *before* changing the current directory.
11656         Skip nonexistent dirs.
11657         * doc/autoconf.texi (Preset Output Variables): Document these
11658         variables.
11660         * lib/autotest/general.m4: Do not reset AT_victims.
11661         Don't compute at_srcdir nor at_top_srcdir.
11663         * tests/tools.at: Hence use top_srcdir.
11665         * tests/Makefile.am, tests/autoconf, tests/autoheader,
11666         * tests/autom4te, tests/autoreconf, tests/autoupdate, tests/ifnames:
11667         Remove.
11668         * tests/autoreconf.in, tests/wrappl.in, tests/autom4te.in,
11669         * tests/wrapsh.in, tests/autoupdate.in: New.
11670         * tests/Makefile.am (DISTCLEANFILES, EXTRA_DIST): Adjust.
11671         * configure.ac: Build the position independent wrappers.
11673         * man/Makefile.am: Now that test wrappers are position
11674         independent, use them and drop dark envvar magic.
11676 2001-09-23  Akim Demaille  <akim@epita.fr>
11678         * doc/autoconf.texi (Common Shell Constructs): Rename as...
11679         (Programming in M4sh): this.
11680         Promote to @section.
11682 2001-09-23  Akim Demaille  <akim@epita.fr>
11684         * lib/autotest/general.m4 (AT_INIT): Dump config.log last.
11685         Pass $at_debug_args to the rerun test suite.
11686         * lib/m4sugar/Makefile.am (DISTCLEANFILES): New.
11687         * bin/Makefile.am (ETAGS_SH): Don't use characters ranges.
11688         From Paul Eggert.
11690 2001-09-23  Akim Demaille  <akim@epita.fr>
11692         * bin/autom4te.in (@my_warning): Remove, handled by `autom4te.cfg'.
11694 2001-09-23  Akim Demaille  <akim@epita.fr>
11696         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Fix shell
11697         over-escaping.
11699 2001-09-23  Akim Demaille  <akim@epita.fr>
11701         * lib/Autom4te/General.pm (&debug): New.
11702         * bin/autom4te.in ($language): Move to...
11703         (parse_args): here.
11704         Handle --language in languages.
11705         * lib/autom4te.in (Automake-selections, Autoheader-selections)
11706         (Autoscan-selections): New.
11707         (Autoconf): Adjust.
11709 2001-09-23  Tim Van Holder  <tim.van.holder@pandora.be>
11711         * m4/auxdir.m4, m4/cond.m4, m4/depend.m4, m4/init.m4,
11712         * m4/install-sh.m4, m4/missing.m4, m4/sanity.m4, m4/strip.m4: Updated
11713         to match current versions from CVS Automake.
11715 2001-09-23  Alexandre Duret-Lutz  <duret_g@epita.fr>
11717         * doc/autoconf.texi (Special Shell Variables): Add pdksh output
11718         for $LINENO.
11720 2001-09-22  Akim Demaille  <akim@epita.fr>
11722         * lib/autoconf/autotest.m4: Create `package.m4'.
11723         * tests/Makefile.am (package.m4): Remove.
11725 2001-09-22  Akim Demaille  <akim@epita.fr>
11727         Rely on `$LINENO' when possible instead of `__oline__'.
11729         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Provide some form of
11730         `$LINENO' support replacement when not supported.
11731         (_AS_CR_PREPARE, _AS_TR_CPP_PREPARE, _AS_TR_SH_PREPARE): Invoke
11732         them explicitly to be sure they are not output before this section
11733         (via m4_require).  Cosmetic only.
11734         * lib/autoconf/c.m4, lib/autoconf/general.m4,
11735         * lib/autoconf/programs.m4: Replace all the occurrences of
11736         `__oline__' with `$LINENO'.
11737         * doc/autoconf.texi (Special Shell Variables): Document LINENO.
11739 2001-09-21  Tim Van Holder  <tim.van.holder@pandora.be>
11741         * lib/autoconf/functions.m4 (_AC_FUNC_FORK): Replaceded an 8-bit
11742         character (u: -> ue) in a code comment.
11743         (AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK): Only run 'ln -s' if we know
11744         it works.
11746 2001-09-21  Akim Demaille  <akim@epita.fr>
11748         * Makefile.maint (AUTOM4TE): Neutralize autom4te.
11749         Suggested by Jim Meyering.
11751 2001-09-20  Tim Van Holder  <tim.van.holder@pandora.be>
11753         * lib/autoconf/programs.m4: Use extensions listed in
11754         $ac_executable_extensions when looking for programs.
11756 2001-09-20  Tim Van Holder  <tim.van.holder@pandora.be>
11758         * lib/autoconf/general.m4: Fix a small Englisho.
11759         * lib/autoconf/status.m4: Fix a small typo.  Handle DOS paths when
11760         setting up ac_dir_suffix and ac_top_builddir.
11761         * lib/m4sugar/m4sh.m4: Default CDPATH to $PATH_SEPARATOR, not ':'.
11763 2001-09-20  Tim Van Holder  <tim.van.holder@pandora.be>
11765         * doc/autoconf.texi (File System Conventions): Clarify the use of
11766         PATH_SEPARATOR.
11767         (Special Shell Variables[PATH_SEPARATOR]): Ditto.
11768         (Special Shell Variables[CDPATH]): Mention that $PATH_SEPRATOR should
11769         be used instead of ':'.
11770         * lib/autotest/general.m4: Replace occurrences of ':' in
11771         AUTOTEST_PATH with $PATH_SEPARATOR at test suite startup.
11773 2001-09-20  Tim Van Holder  <tim.van.holder@pandora.be>
11775         * tests/atgeneral.m4: Add basic support for test ranges (e.g. 7-34) as
11776         arguments.  Fixed a typo.
11778 2001-09-20  Tim Van Holder  <tim.van.holder@pandora.be>
11780         * man/Makefile.am (.x.1): Use @PATH_SEPARATOR@, not ':' to set up
11781         $PATH.  Also set AUTOM4TE_CFG, so we can process autom4te properly.
11783 2001-09-20  Tim Van Holder  <tim.van.holder@pandora.be>
11785         * bin/autoscan.in: Add 'exec-perl-if-not-run-by-perl'.
11786         * bin/autoupdate.in: Ditto.
11787         * bin/autoheader.in: Reworded a few comments.
11788         * bin/autoconf.in: Reworded help text for a few options.
11789         * bin/autoheader.in, bin/autom4te.in, bin/autoreconf.in,
11790         * bin/autoscan.in, bin/autoupdate.in: Ditto.
11792 2001-09-20  Tim Van Holder  <tim.van.holder@pandora.be>
11794         * lib/Autom4te/XFile.pm (open): Simplified the error message (we
11795         already have $file).  Set output files to binary mode (helps avoid
11796         CR issues on DOSish systems).
11798 2001-09-19  Akim Demaille  <akim@epita.fr>
11800         * lib/autotest/general.m4: Englishoes.
11801         From Tim Van Holder and Alexey Mahotkin.
11803 2001-09-18  Paul Eggert  <eggert@twinsun.com>
11805         * doc/autoconf.texi (Common Shell Constructs): New node,
11806         documenting AS_DIRNAME.
11807         (Limitations of Usual Tools): Refer to it when discussing dirname.
11808         Also, update discussion of POSIX standard to reflect latest draft.
11810         * lib/autoconf/c.m4:
11811         (AC_LANG_INT_SAVE(C)): Also support negative values, down to LONG_MIN.
11813         * lib/autoconf/general.m4 (_AC_COMPUTE_INT_COMPILE):
11814         Do not pass a first argument with leading '-'
11815         to expr, by parenthesizing initial integers that might be negative.
11817         * doc/autoconf.texi (Particular Functions): AC_FUNC_GETPGRP
11818         now merely checks whether it is an error to pass an argument
11819         to getpgrp.
11821         * lib/autoconf/functions.m4 (_AC_FUNC_GETPGRP_TEST): Remove.
11822         (AC_FUNC_GETPGRP): Don't bother with a runtime test.  Just check
11823         whether it is a (compile-time) error to pass an argument to
11824         getpgrp.  This simpler test supports the revised documentation,
11825         and is all that AC_FUNC_GETPGRP's users really need.
11827 2001-09-18  Akim Demaille  <akim@epita.fr>
11829         * doc/autoconf.texi (Limitations of Make) <$<>: New.
11831 2001-09-18  Akim Demaille  <akim@epita.fr>
11833         * doc/autoconf.texi (Limitations of Usual Tools) <find>: More about
11834         `{}'.
11835         * lib/autotest/general.m4 (AT_INIT): Adjust.
11837 2001-09-18  Paul Wagland  <paul@wagland.net>
11839         * tests/m4sh.at: Ensure that AS_DIRNAME handles '/', '//' and '///'
11840         correctly.
11841         Add test for AS_BASENAME.
11842         * lib/m4sugar/m4sh.m4: Fix AS_BASENAME so that it passes the previous
11843         added test. It now correctly handles /1/2/3/, returning '3' not ''.
11844         Added AS_BASENAME_SED to make the interface the same as AS_DIRNAME.
11845         * tests/base.at: Fixed the expected responses. The old ones were
11846         one line out...
11847         * lib/autoconf/general.m4: Fixed AC_PREFIX_PROGRAM, it now behaves as
11848         the documentation claims it should (and how it behaved in 2.13).
11850 2001-09-18  Akim Demaille  <akim@epita.fr>
11852         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): No INIT-CMDS in
11853         the AC_CONFIG_COMMANDS invocation.
11854         This also solves the name clash problems.
11855         Don't set the package's ID.
11856         * lib/m4sugar/Makefile.am (version.m4): Revamp.
11857         No longer to be shipped.
11858         (version.in): Remove.
11859         * lib/m4sugar/m4sugar.m4, lib/autoconf/general.m4,
11860         * lib/autoconf/status.m4: Adjust.
11861         Use `m4_PACKAGE_STRING'.
11862         * lib/autotest/general.m4 (AT_INIT): N-th signature change: now
11863         the only optional argument is the name of the test suite.
11864         Expect `package.m4' to define the package signature.
11865         * lib/autom4te.in (Autotest): Add `package.m4?'.
11866         * tests/Makefile.am (package.m4): New.
11867         * tests/suite.at: ifnames is a victim.
11869 2001-09-18  Akim Demaille  <akim@epita.fr>
11871         * lib/autom4te.in (Autoconf): Preselect AM_CONDITIONAL,
11872         AC_LIBSOURCE, AC_CONFIG_FILES.
11873         * lib/autotest/general.m4 (AT_INIT): Don't abort when a tested
11874         program version string doesn't match the package's.
11875         * lib/autoconf/general.m4 (AC_CACHE_VAL): Reestablish the space
11876         after `(cached)'.
11878 2001-09-17  Paul Eggert  <eggert@twinsun.com>
11880         * lib/autoconf/c.m4: (AC_LANG_INT_SAVE(C)):
11881         Allow expression to return any value that can fit into unsigned long
11882         (not int, as before).  Check for output errors.
11884 2001-09-17  Bruno Haible  <haible@ilog.fr>
11886         * lib/autoconf/c.m4: (AC_LANG_INT_SAVE(C)):
11887         Always include <stdio.h> and <stdlib.h>. Evaluate
11888         the expression in an extra function before these includes. Call
11889         fprintf "%d" only after ensuring the argument is of type 'int'.
11890         Reported by Wayne Chapeskie <waynec@spinnaker.com>.
11892 2001-09-17  Paul Eggert  <eggert@twinsun.com>
11894         Fix bug reported by Paul Townsend on AIX 4.3.3.0 with CFLAGS=-O4
11895         or CFLAGS=-O5.  In that case, the linker has a relaxed view of
11896         fatal errors, and AC_CHECK_LIB causes it to include libraries even
11897         when they don't exist.
11899         * lib/autoconf/headers.m4 (AC_HEADER_DIRENT): Use AC_SEARCH_LIBS,
11900         not AC_CHECK_LIB, so that we don't use -ldir or -lx if we don't
11901         need it.
11903         * lib/autoconf/specific.m4 (AC_ISC_POSIX): Replace the old, crufty
11904         version with the version used by fileutils 4.1, except use
11905         AC_SEARCH_LIBS, not AC_CHECK_LIB, so that we don't use -lcposix if
11906         we don't need it.
11908         * doc/autoconf.texi (AC_ISC_POSIX): Describe new behavior.
11910 2001-09-13  Akim Demaille  <akim@epita.fr>
11912         * tests/base.at, tests/m4sh.at: Be sure to issue the bangshe line
11913         _first_.
11914         Reported by Gerrit P. Haase.
11916 2001-09-13  Akim Demaille  <akim@epita.fr>
11918         * lib/autotest/general.m4 (AT_INIT): Reset `AT_victims' so that
11919         m4_defn'ing is valid.
11921 2001-09-13  Akim Demaille  <akim@epita.fr>
11923         * lib/m4sugar/m4sugar.m4 (m4_append_uniq): New.
11924         * lib/autotest/general.m4 (AT_VICTIMS, AT_KEYWORDS, _AT_CLEANUP_FILE):
11925         Use it.
11927 2001-09-13  Akim Demaille  <akim@epita.fr>
11929         * lib/m4sugar/m4sugar.m4 (_AS_QUOTE_IFELSE, _AS_BOX_INDIR): Use
11930         m4_match.
11931         (m4_re_escape): New.
11932         * lib/autoconf/status.m4 (AC_CONFIG_IF_MEMBER): Use it.
11933         * lib/autoconf/general.m4 (AC_CACHE_SAVE): Use m4_match.
11934         * lib/autoconf/status.m4 (AC_CONFIG_IF_MEMBER, AC_CONFIG_LINKS):
11935         Likewise.
11936         * lib/autoconf/types.m4 (_AC_CHECK_TYPE_REPLACEMENT_TYPE_P)
11937         (_AC_CHECK_TYPE_MAYBE_TYPE_P, AC_CHECK_MEMBER): Likewise.
11938         * lib/autotest/general.m4 (AT_INIT): Rename AT_TESTS_ALL as
11939         AT_tests_all for consistency.
11940         Set at_victims.
11941         (AT_VICTIMS): Similar to AT_KEYWORDS.
11942         (_AT_CLEANUP_FILE_IF): Use m4_match and m4_re_escape.
11944 2001-09-13  Akim Demaille  <akim@epita.fr>
11946         * lib/autotest/general.m4 (AT_INIT): Fix stupid bugs.
11948 2001-09-13  Akim Demaille  <akim@epita.fr>
11950         * lib/autotest/general.m4 (AT_INIT): Create and remove
11951         `$as_me.[0-9]+' instead of `debug-[0-9]+.sh', so that multiple
11952         test suites can cohabit.
11954 2001-09-13  Akim Demaille  <akim@epita.fr>
11956         * tests/mktests.sh: Don't output banners for empty test files.
11958 2001-09-13  Akim Demaille  <akim@epita.fr>
11960         Test suites can be run independently of configure.
11962         * lib/m4sugar/m4sh.m4 (_AS_ECHO, _AS_ECHO_N_PREPARE): New.
11963         * lib/autoconf/programs.m4 (_AC_PROG_ECHO): Remove.
11964         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Adjust: AC_SUBST
11965         ECHO_N etc.
11966         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): Don't ask for at_n
11967         and at_c.
11968         * lib/autotest/general.m4: Use ECHO_*.
11970 2001-09-13  Akim Demaille  <akim@epita.fr>
11972         * bin/ifnames.in: Rewrite in Perl.
11973         * configure.ac: Don't look for AWK.
11974         * tests/tools.at (AWK portability): Remove.
11975         (Syntax of the shell scripts): Don't check ifnames.
11976         (AT_CHECK_PERL_SYNTAX): New.
11977         (Syntax of the Perl scripts): Check ifnames.
11978         * tests/ifnames: New.
11980 2001-09-13  Akim Demaille  <akim@epita.fr>
11982         * lib/autotest/general.m4 (AT_INIT): Let --keywords also match
11983         test group titles.
11984         * tests/atspecific.m4 (AT_CHECK_AU_MACRO): AT_KEYWORDS(autoupdate).
11985         Remove all the other keywords.
11987 2001-09-10  Akim Demaille  <akim@epita.fr>
11989         * lib/autotest/general.m4 (AT_INIT): Remove the diversion HELP and
11990         SETUP: no longer used.
11991         Support -k, --keywords.
11992         <at_help>: Be `no', `short', or `long'.
11993         <at_help_all>: New variable.
11994         (AT_KEYWORDS): New.
11995         (AT_CLEANUP_FILE_IFELSE, AT_CLEANUP_FILE): Rename as...
11996         (_AT_CLEANUP_FILE_IF, _AT_CLEANUP_FILE): these.
11997         (_AT_CLEANUP_FILE_IF): Simplify the regexp.
11998         (AT_SETUP): Reset AT_line, AT_keywords, AT_description.
11999         No longer fill the HELP diversion.
12000         (AT_CLEANUP): Use them.
12001         * lib/m4sugar/m4sugar.m4 (m4_append): Support a separator.
12002         (m4_list_append): Remove.
12004         Spread a few keywords in the Autoconf test suite.
12006 2001-09-10  Akim Demaille  <akim@epita.fr>
12008         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): Don't pass
12009         PATH_SEPARATOR, let M4sh compute it.
12010         * lib/m4sugar/m4sh.m4 (_AS_PATH_SEPARATOR_PREPARE): New.
12011         * lib/autoconf/programs.m4 (AC_SHELL_PATH_WALK): Use PATH_SEPARATOR.
12012         Move to...
12013         * lib/m4sugar/m4sh.m4 (_AS_PATH_WALK): Here.
12014         Simplify when the path is not a literal.
12015         (AS_UNAME): Use it to report PATH.
12016         * lib/autoconf/general.m4 (_AC_INIT_PREPARE_FS_SEPARATORS): Remove.
12017         (_AC_INIT_DEFAULTS): AC_SUBST PATH_SEPARATOR.
12018         * lib/autoconf/programs.m4 (AC_PROG_INSTALL): Use _AS_PATH_WALK.
12019         * lib/autotest/general.m4 (AT_INIT): Use _AS_PATH_WALK to
12020         normalize the path, and to look for victims.
12021         * tests/semantics.at (AC_PATH_PROG & AC_PATH_PROGS)
12022         (AC_CHECK_PROG & AC_CHECK_PROGS): Use PATH_SEPARATOR.
12024 2001-09-07  Akim Demaille  <akim@epita.fr>
12026         * bin/autom4te.in (&handle_m4): `< /dev/null' so that GNU M4 1.5
12027         doesn't neutralize SIGINT, making autoconf etc. non interruptible.
12028         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): Move the package
12029         related variables into `at_package_*'.
12030         * lib/autotest/general.m4 (AT_VICTIMS): New.
12031         (AT_INIT): Adjust for stand-alone/embedded test suites.
12032         (AS_MESSAGE_LOG_FD): Define and use it.
12033         * tests/suite.at (AT_VICTIMS): Use it.
12034         * tests/tools.at (autoupdating AC_PREREQ): Don't depend upon
12035         at_version.
12037 2001-09-07  Akim Demaille  <akim@epita.fr>
12039         Move toward possibly stand-alone test suites.
12041         * lib/autotest/general.m4: Stop displaying srcdir everywhere as,
12042         in addition, it introduces useless differences in logs.
12043         (AT_INIT): Let atconfig and atlocal be both optional.
12044         Adjust PATH computation.
12045         * lib/m4sugar/m4sh.m4 (AS_UNAME): More readable display of PATH.
12047 2001-09-07  Akim Demaille  <akim@epita.fr>
12049         * lib/autoconf/Makefile.am (autoconf.m4f): Depends upon
12050         m4sugar/version.m4.
12052 2001-09-05  Akim Demaille  <akim@epita.fr>
12054         * lib/autoconf/c.m4 (AC_LANG_BOOL_COMPILE_TRY(C)): Use `_array_'
12055         to avoid GCC warnings.
12056         From Uwe Seimet.
12058 2001-09-05  Akim Demaille  <akim@epita.fr>
12060         * bin/autom4te.in: --language is -l, not -s.
12062 2001-09-05  Akim Demaille  <akim@epita.fr>
12064         Be ready to handle filenames as stupid as `dnl.at', for if even
12065         the maintainer is dumb enough to do that...
12067         * lib/autotest/general.m4 (AT_SETUP, AT_LINE): Demonstrates your
12068         excellence in M4 quotation: consider `__file__' is active.
12070         And BTW, when invoking m4, pass the --include in the right order:
12071         the wrong one.
12073         * bin/autom4te.in, bin/autoupdate.in: Use reverse when kingtal to
12074         4m.
12076 2001-09-05  Akim Demaille  <akim@epita.fr>
12078         * lib/Autom4te/XFile.pm: New lib file.
12079         * bin/autoupdate.in, bin/autoscan.pl, bin/autom4te.in,
12080         * bin/autoheader.in: Use it.
12082 2001-09-05  Akim Demaille  <akim@epita.fr>
12084         * bin/autoupdate.in (&handle_m4_macros) <unm4.m4>: Undefine iff
12085         defined.
12087 2001-09-05  Akim Demaille  <akim@epita.fr>
12089         * lib/Autom4te/General.pm (&getopt): Work around the `-' Getopt bug.
12090         * bin/autoheader.in, bin/autoupdate.in (&parse_args): Adjust.
12092         * bin/autoscan.in: Use `getopt' and `find_files' etc.
12093         Add -I, --include support.
12094         * doc/autoconf.texi (autoscan Invocation): Adjust.
12096 2001-09-05  Akim Demaille  <akim@epita.fr>
12098         CVS GNU M4 doesn't like `undefine(undefined)'.
12100         * bin/autoupdate.in (&handle_m4_macros, &handle_autoconf_macros):
12101         New, extracted from main.
12102         Use IO::File wherever possible.
12103         (input.m4): Be constant, use -I instead of hard coding $tmp.
12104         Therefore be a quoted heredoc.
12105         Don't invoke `_au_disable', since ac was not loaded, but just
12106         `unm4.m4'.
12108 2001-08-31  Akim Demaille  <akim@epita.fr>
12110         Version 2.52d.
12112 2001-08-31  Akim Demaille  <akim@epita.fr>
12114         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Fix the
12115         previous patch.
12116         * tests/atspecific.m4 (AT_CHECK_AUTOHEADER): Can create `config.hin~'.
12118 2001-08-31  Akim Demaille  <akim@epita.fr>
12120         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): DU 5.0 has
12121         serious problems handling heredocs in heredocs.
12122         Reported by Nicolas Joly.
12124 2001-08-31  Akim Demaille  <akim@epita.fr>
12126         * doc/autoconf.texi: Don't promote non `m4_*' M4 macros.
12127         (Making testsuite Scripts): Update.
12129 2001-08-31  Akim Demaille  <akim@epita.fr>
12131         * lib/Makefile.am (CLEANFILES): Add autom4te.cfg.
12133 2001-08-31  Akim Demaille  <akim@epita.fr>
12135         * doc/autoconf.texi (Quadrigraphs): Document `@&t@'.
12136         (testsuite Scripts): There is no such thing as `atconfig.in'.
12137         And actually one diagram is missing: test suite runtime.
12139 2001-08-31  Akim Demaille  <akim@epita.fr>
12141         * lib/Autom4te/General.pm (&find_file): Browse the includes in the
12142         inverse order.
12144 2001-08-31  Akim Demaille  <akim@epita.fr>
12146         * bin/autoupdate.in (@include): `installcheck' revealed the path
12147         to m4sugar was lacking!
12149 2001-08-31  Akim Demaille  <akim@epita.fr>
12151         * man/Makefile.am (.x.1): We really have to pass
12152         autom4te_perllibdir.
12154 2001-08-31  Akim Demaille  <akim@epita.fr>
12156         * lib/autotest/general.m4 (AT_INIT): Don't pass all the args to
12157         debug scripts, in particular passing explicitly listed tests to
12158         run is stupid.
12160 2001-08-31  Akim Demaille  <akim@epita.fr>
12162         * bin/autom4te.in (&parse_args): Strip `.' from `@include'.
12163         * bin/autoupdate.in: Use --include, -I, and --force, -f, too.
12164         Use directly autom4te, not autoconf.
12165         * tests/autoupdate: $top_srcdir/lib is needed too for melt files.
12167 2001-08-31  Akim Demaille  <akim@epita.fr>
12169         * tests/semantics.at (AC_C_BIGENDIAN): Missing eol.
12170         * bin/autoheader.in (%symbol): Strip arguments of macros.
12172 2001-08-31  Akim Demaille  <akim@epita.fr>
12174         * doc/autoconf.texi: Catch up -I, --include changes.
12176 2001-08-31  Akim Demaille  <akim@epita.fr>
12178         * bin/autom4te.in (&parse_args): Die on unknown languages.
12179         * bin/autoheader.in: Run directly autom4te --mode=autoconf, no
12180         need for autoconf.
12181         Promote --include over --macrodir and other obsolete options.
12183 2001-08-31  Akim Demaille  <akim@epita.fr>
12185         * lib/Autom4te/General.pm ($version, $help, &getopt): New.
12186         * bin/autoupdate.in, bin/autoheader.in, bin/autom4te.in: Use them.
12187         * bin/autom4te.in ($autoconf): Pass --force.
12188         `print $out' doesn't print `$_' but `$out'.
12189         * tests/tools.at (Syntax of the Perl scripts): Pass the lib dir.
12190         (autoheader): Pass --force since the test suite goes too fast for
12191         the time stamps.
12192         Adjust to the new autoheader messages.
12194 2001-08-31  Akim Demaille  <akim@epita.fr>
12196         * bin/autoheader.in: Handle the acconfig.h etc. junk files.
12197         Check the completeness of the #template.
12198         * lib/Autom4te/General.pm (&update_file): s/remove/unlink/.
12199         * tests/semantics.at (AC_C_BIGENDIAN): Adjust AT_CHECK_AUTOHEADER
12200         invocation.
12202 2001-08-31  Akim Demaille  <akim@epita.fr>
12204         * lib/Autom4te/General.pm (&find_file, &update_file): New.
12205         * bin/autoupdate.in, bin/autoheader.in: Adjust.
12206         Drop AC_MACRODIR dead for real.
12207         * tests/atspecific.m4 (AT_CHECK_AUTOHEADER): Now autoheader says
12208         `autoheader: `config.hin' is created'.
12209         * tests/tools.at (Syntax of the Perl scripts): Check autoheader.
12211 2001-08-31  Akim Demaille  <akim@epita.fr>
12213         * bin/autoheader.in: Rewrite in Perl.
12214         * tests/autoheader: Adjust.
12216 2001-08-31  Akim Demaille  <akim@epita.fr>
12218         * bin/autoconf.in (--include, -I): New option.
12219         Map --localdir, --autoconf-dir onto it.
12220         Forward autom4te's options instead of interpreting them.
12221         * bin/autoconf.in, bin/autoheader.in (AC_MACRODIR, autoconf_dir):
12222         There is no such envvar since the inception of autom4te.cfg.
12223         * bin/autom4te.in (&parse_args): Uniquify `@include'.
12224         * bin/autoupdate.in: Adjust, and perform more control.
12225         * tests/atspecific.m4 (AT_CHECK_AUTOCONF): Adjust.
12226         * tests/autoconf: Dittowise.
12228 2001-08-31  Akim Demaille  <akim@epita.fr>
12230         * bin/autoconf.in: Don't bother with `acsite.m4' and `aclocal.m4'.
12231         * bin/autom4te.in (&find_file): Support `FILE?' standing for
12232         optionally `FILE'.
12233         Use -e, not -f, since /dev/null for instance is OK.
12234         (&parse_args): Adjust.
12235         * lib/autom4te.in (Autoconf): Add `acsite.m4?' and `aclocal.m4?'.
12237 2001-08-31  Akim Demaille  <akim@epita.fr>
12239         * configure.ac: Also find tested executables in bin.
12240         * bin/autoconf.in, bin/autoheader.in, bin/autoreconf.in,
12241         * bin/autoscan.in, autoupdate.in: Use exclusively the name of the
12242         installed peer executables, only PATH is allowed to resolve it.
12243         Pass `autoconf_dir' via options, not via invisible envvars.
12244         * lib/Autom4te/General.pm (&find_peer): Remove.
12245         * lib/autotest/general.m4 (AT_INIT): `AUTOTEST_PATH=a:b' gives
12246         `abuild:asrc:bbuild:bsrc', not `abuild:bbuild:asrc:bsrc'.
12247         * man/Makefile.am: Let help2man rely on PATH instead of trying to
12248         find the executables for it.
12249         * tests/Makefile.am: Major cleanup.  Too lazy to document...
12250         * tests/atlocal.in: Remove all the obscure envvar manipulations.
12251         We only need PERL.
12252         * tests/atspecific.m4, tests/tools.at: Passing --localdir is
12253         indeed related to running the test suite, while passing
12254         --autoconf-dir and others is related to running non installed
12255         Autoconf executables.  So don't do that, leave it to...
12256         * tests/autoconf, tests/autoheader, tests/autom4te, tests/autoupdate,
12257         * tests/autoscan: New.
12258         * tests/atspecific.m4 (AT_CHECK_M4SUGAR, AT_CHECK_M4SH): Don't
12259         refer to library files: rely on --language.
12261 2001-08-29  Akim Demaille  <akim@epita.fr>
12263         * bin/autom4te.in, lib/autom4te.in, bin/autoconf.in:
12264         s/--set/--language/.
12266 2001-08-29  Akim Demaille  <akim@epita.fr>
12268         * doc/autoconf.texi: Strip the @nodes.
12269         Suggested by Paul Eggert.
12270         (Initializing configure): Typo.
12272 2001-08-29  Akim Demaille  <akim@epita.fr>
12274         * bin/autom4te.in (&handle_output): s/@__@/@&t@/.
12275         Suggested by Paul Eggert.
12277 2001-08-29  Akim Demaille  <akim@epita.fr>
12279         * Makefile.maint (do-po-update): Wget refuses to overwrite files:
12280         download in a tmp dir.
12282 2001-08-29  Akim Demaille  <akim@epita.fr>
12284         * lib/autotest/general.m4: s/AT-devnull/devnull/ since there are
12285         case insensitive OSes out there :(
12286         From Tim Van Holder.
12288 2001-08-29  Akim Demaille  <akim@epita.fr>
12290         * lib/autom4te.in: New.
12291         * lib/Makefile.am (edit, autom4te.cfg): New.
12292         * bin/autom4te.in (BEGIN): Simplify.
12293         Rely on `AC_MACRODIR' in addition of `autom4te_perllibdir'.
12294         (&load_configuration): New.  Use it.
12295         (&parse_args): Support --mode, --set, and --melt.
12296         * bin/autoconf.in: Simplify and adjust.
12297         * tests/Makefile.am (AUTOMAKE): Use --set.
12298         * tests/atlocal.in: Adjust.
12299         * BUGS: distcheck and check are weak.
12301 2001-08-29  Akim Demaille  <akim@epita.fr>
12303         * lib/autotest/general.m4: Use
12304                 foo=`(command) 2>/dev/null`
12305         not
12306                 foo=`command` 2>/dev/null
12307         (at-devnull): Rename as...
12308         (AT-devnull): this.
12309         (--clean): Remove AT-* files too.
12310         * doc/autoconf.texi (Limitations of Usual Tools): Document `date'.
12311         Reported by Nicolas Joly.
12313 2001-08-28  Akim Demaille  <akim@epita.fr>
12315         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Don't use single
12316         quotes inside single quotes.
12317         Reported by Nicolas Joly.
12319 2001-08-28  Kevin Ryde  <user42@zip.com.au>
12321         * doc/autoconf.texi (Function Portability): Mention C right shifts.
12323 2001-08-27  Tim Van Holder  <tim.van.holder@pandora.be>
12325         * lib/autotest/general.m4: Reword some messages.
12326         (AT_INIT): Check for the `times' builtin before using it.
12327         Support test ranges as arguments to the testsuite.
12328         Have -e imply -d as the help text suggested.
12330 2001-08-27  Akim Demaille  <akim@epita.fr>
12332         * Makefile.maint: Formatting changes.
12333         (do-po-update, po-update, cvs-update, update): New targets.
12334         (AMTAR): Remove.
12336 2001-08-27  Akim Demaille  <akim@epita.fr>
12338         * lib/autotest/general.m4 (AT_INIT) <at_cmd_line>: Remove.
12339         <at_cmd_line>: New.
12340         Pass it to debug-*.sh scripts.
12341         <AUTOTEST_PATH>: May contain absolute dir names.
12343 2001-08-27  Akim Demaille  <akim@epita.fr>
12345         * lib/autotest/general.m4 (AT_INIT): Log the command line.
12346         Support `VAR=VAL' as arguments.
12347         Compute PATH _after_ the options processing, so that AUTOTEST_PATH
12348         may be set via the command line.
12350 2001-08-27  Akim Demaille  <akim@epita.fr>
12352         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): $2 defaults to $1.
12353         * lib/autotest/autotest.m4 (AT_INIT): Expand AUTOTEST_PATH into
12354         first the build dirs, then the src dirs.
12355         * configure.ac (AC_CONFIG_TESTDIR): Adjust.
12357 2001-08-27  Akim Demaille  <akim@epita.fr>
12359         * lib/autotest/general.m4 (AT_INIT): Output the definition of
12360         at_data_files earlier.
12361         (--clean, -c): New option.
12362         * tests/Makefile.am: Use this option.
12364 2001-08-27  Akim Demaille  <akim@epita.fr>
12366         * lib/autoconf/status.m4 (_AC_SRCPATHS): Rename `ac_dots' as
12367         `ac_top_builddir' to mimic Automake's vocabulary, which much more
12368         readable.
12369         Adjust callers.
12370         * doc/autoconf.texi (Configuration Actions): Document the vars
12371         available in commands.
12372         Emphasize the risks of collisions in init-cmds.
12374 2001-08-27  Akim Demaille  <akim@epita.fr>
12376         * doc/autoconf.texi (Input) <AC_INIT>: Move to..
12377         (Initializing configure): this new node.
12379 2001-08-27  Akim Demaille  <akim@epita.fr>
12381         * Makefile.am (EXTRA_DIST): INSTALL.txt is a dead hack.
12383 2001-08-27  Akim Demaille  <akim@epita.fr>
12385         * m4/atconfig.m4 (AT_CONFIG): Remove, replaced by...
12386         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): this.
12387         New file.
12388         * m4/Makefile.am (EXTRA_DIST): Oops, adjust...
12390 2001-08-27  Akim Demaille  <akim@epita.fr>
12392         * lib/autoconf/general.m4 (AU_DEFINE, AU_DEFUN, AU_ALIAS): Move
12393         to...
12394         * lib/autoconf/autoheader.m4: this new file.
12395         * lib/autoconf/general.m4 (AH_OUTPUT, AH_VERBATIM)
12396         (_AH_VERBATIM_OLD, AH_TEMPLATE, _AH_TEMPLATE_OLD, AH_TOP, AH_BOTTOM):
12397         Move to...
12398         * lib/autoconf/autoupdate.m4: this new file.
12400 2001-08-27  Akim Demaille  <akim@epita.fr>
12402         * lib/autoconf/status.m4 (_AC_SRCPATHS): New.
12403         (_AC_OUTPUT_LINKS, _AC_OUTPUT_FILES, _AC_OUTPUT_SUBDIRS): Use it.
12404         Standardize the var names (ac_sub_srcdir -> ac_srcdir, ac_subdir
12405         -> ac_dir).
12406         (_AC_OUTPUT_HEADERS): AS_DIRNAME always return a dir name.
12407         * lib/autoconf/general.m4 (_AC_INIT_HELP): Ditto.
12409 2001-08-27  Akim Demaille  <akim@epita.fr>
12411         * lib/autoconf/autoconf.m4 (AC_CONFIG_COMMANDS)
12412         (AC_CONFIG_COMMANDS_POST, AC_CONFIG_COMMANDS_PRE, AC_CONFIG_FILES)
12413         (AC_CONFIG_HEADER, AC_CONFIG_HEADERS, AC_CONFIG_IF_MEMBER)
12414         (AC_CONFIG_LINKS, AC_CONFIG_SUBDIRS, AC_FILE_DEPENDENCY_TRACE)
12415         (AC_LINK_FILES, AC_LIST_COMMANDS, AC_LIST_COMMANDS_COMMANDS)
12416         (AC_LIST_FILES, AC_LIST_FILES_COMMANDS, AC_LIST_HEADERS)
12417         (AC_LIST_HEADERS_COMMANDS, AC_LIST_LINKS, AC_LIST_LINKS_COMMANDS)
12418         (AC_OUTPUT, AC_OUTPUT_COMMANDS, AC_OUTPUT_COMMANDS_POST)
12419         (AC_OUTPUT_COMMANDS_PRE, AC_OUTPUT_MAKE_DEFS)
12420         (_AC_CONFIG_COMMANDS_INIT, _AC_CONFIG_DEPENDENCIES)
12421         (_AC_CONFIG_DEPENDENCY, _AC_CONFIG_UNIQUE, _AC_LINK_FILES_CNT)
12422         (_AC_LIST_SUBDIRS, _AC_OUTPUT_COMMANDS, _AC_OUTPUT_COMMANDS_CNT)
12423         (_AC_OUTPUT_COMMANDS_INIT, _AC_OUTPUT_CONFIG_STATUS)
12424         (_AC_OUTPUT_FILES, _AC_OUTPUT_HEADERS, _AC_OUTPUT_LINKS)
12425         (_AC_OUTPUT_SUBDIRS): Move to...
12426         * lib/autoconf/status.m4: this new file.
12427         * lib/autoconf/general.m4, lib/autoconf/Makefile.am: Adjust.
12428         * tests/Makefile.am, tests/suite.at: Adjust.
12430 2001-08-27  Akim Demaille  <akim@epita.fr>
12432         Automake 1.5.
12434         * Makefile.am (AUTOMAKE_OPTIONS): Add 1.5 and dist-bzip2.
12435         (AMTAR): Help automake define it.
12436         (INSTALL, install-data-hook): The INSTALL.txt trick is no longer
12437         needed, 1.5 can have a macro and a target with the same name.
12438         * m4/auxdir.m4, m4/cond.m4, m4/depend.m4, m4/install-sh.m4,
12439         * m4/strip.m4: New.
12440         * m4/init.m4, m4/sanity.m4: Update.
12441         * doc/Makefile.am (CLEANFILES): 1.5 knows the texi2dvi files.
12442         * lib/autoconf/Makefile.am, lib/autotest/Makefile.am,
12443         * lib/m4sugar/Makefile.am, lib/autoscan/Makefile.am,
12444         * lib/Autom4te/Makefile.am, man/Makefile.am: Use dist/nodist.
12446 2001-08-27  Akim Demaille  <akim@epita.fr>
12448         Provide a mean to ``AC_PREREQ'' for M4sugar, M4sh and Autotest.
12450         * lib/autoconf/version.in: Remove.
12451         * lib/m4sugar/version.in: New.
12452         * lib/m4sugar/m4sugar.m4 (m4_acversion, m4_version_prereq): New.
12453         Adjust callers.
12454         * bin/autoupdate.in: Distinguish M4sugar vs. Autoconf macros by
12455         the name of the directory they're in, instead of the filename,
12456         since version.m4 is now in m4sugar, but m4_acversion must not be
12457         classified as an Autoconf macro.
12458         ($input_m4): Don't qualify the path to m4sugar.
12459         Rather, pass autoconf_dir to m4.
12460         * tests/Makefile.am (testsuite): Remove -I top_srcdir, unneeded.
12461         * tests/suite.at: Require 2.52c.
12463 2001-08-27  Akim Demaille  <akim@epita.fr>
12465         testsuite.log should include config.log.
12467         * lib/autotest/autotest.m4: New.
12468         * lib/autotest/general.m4, tests/atspecific.m4: Adjust.
12469         * tests/suite.at : Adjust.
12470         (AT_INIT): Log config.log.
12471         * lib/m4sugar/m4sugar.m4 (m4_text_box): New.
12472         * lib/m4sugar/m4sh.m4 (_AS_BOX_LITERAL): Adjust.
12473         * lib/autoconf/general.m4 (_AC_INIT_CONFIG_LOG): Use them.
12474         (_AC_INIT_PREPARE): Fix the incredibly messy and buggy completion
12475         of config.log on traps.
12476         (_AC_OUTPUT_CONFIG_STATUS): Use AS_BOX.
12477         Use consistently `_ACEOF' for configure's here docs, and `_CSEOF'
12478         for config.status'.
12479         Open the log as soon as possible.
12480         Use the same log introduction as configure's.
12482 2001-08-22  Paul Eggert  <eggert@twinsun.com>
12484         * doc/autoconf.texi (Indices): New node.
12485         Move indices out of the top level menu and into this submenu.
12487 2001-08-22  Akim Demaille  <akim@epita.fr>
12489         * lib/autoconf/programs.m4 (_AC_PROG_LEX_YYTEXT_DECL): Use
12490         AC_TRY_COMMAND.
12491         (AC_DECL_YYTEXT): Fix the previous patch: it points to AC_PROG_LEX.
12493 2001-08-22  Akim Demaille  <akim@epita.fr>
12495         * lib/autoconf/general.m4 (AC_SHELL_PATH_WALK, AC_CHECK_PROG)
12496         (AC_CHECK_PROGS, AC_PATH_PROG, AC_PATH_PROGS, AC_CHECK_TOOL_PREFIX)
12497         (AC_PATH_TOOL, AC_CHECK_TOOL, AC_CHECK_TOOLS): Move to...
12498         * lib/autoconf/programs.m4: here.
12499         * lib/autoconf/specific.m4 (_AC_PROG_ECHO, AC_PROG_MAKE_SET)
12500         (AC_PROG_RANLIB, AC_PROG_YACC, AC_PROG_LEX, _AC_DECL_YYTEXT)
12501         (AC_PROG_INSTALL, AC_PROG_LN_S, AC_RSH): Move to...
12502         * lib/autoconf/programs.m4: here.
12503         (_AC_DECL_YYTEXT): Rename as...
12504         (_AC_PROG_LEX_YYTEXT_DECL): this.
12505         * lib/autoconf/autoconf.m4, lib/autoconf/Makefile.am
12506         * tests/Makefile.am, tests/suite.am: Adjust.
12508 2001-08-22  Akim Demaille  <akim@epita.fr>
12510         * lib/autoconf/general.m4 (AC_LIST_MEMBER_OF, AC_LINKER_OPTION):
12511         Move to...
12512         * lib/autoconf/fortran.m4 (_AC_LIST_MEMBER_IF, _AC_LINKER_OPTION):
12513         here.
12514         * lib/autoconf/general.m4 (AC_TRY_LINK_FUNC): Move to...
12515         * lib/autoconf/functions.m4: here.
12516         * lib/autoconf/general.m4 (AC_SEARCH_LIBS, AC_CHECK_LIB)
12517         (AH_CHECK_LIB): Move to...
12518         * lib/autoconf/libs: this new file.
12519         * lib/autoconf/specific.m4 (_AC_PATH_X_XMKMF, _AC_PATH_X_DIRECT)
12520         (_AC_PATH_X, AC_PATH_X, AC_PATH_XTRA): Move to...
12521         * lib/autoconf/libs.m4: here.
12522         * lib/autoconf/autoconf.m4, lib/autoconf/Makefile.am: Adjust.
12524 2001-08-22  Akim Demaille  <akim@epita.fr>
12526         * lib/m4sugar/m4sh.m4 (AS_MKDIR_P): Fail if fails.
12527         * lib/autoconf/general.m4 (_AC_OUTPUT_SUBDIRS): Adjust.
12528         (AC_SITE_LOAD): Better logging of config.site.
12530 2001-08-20  Akim Demaille  <akim@epita.fr>
12532         * configure.ac (AT_CONFIG): Fix the path.
12533         * m4/atconfig.m4 (AT_CONFIG): Don't use EOF but ATEOF so that 2.52
12534         can be used.
12536 2001-08-20  Alexandre Duret-Lutz  <duret_g@epita.fr>
12538         * lib/autoconf/c.m4 (AC_C_BIGENDIAN): Prepare the cross-compile
12539         program with AC_LANG_PROGRAM before feeding it to
12540         AC_COMPILE_IFELSE.  Cleanup grep usage.
12542 2001-08-20  Akim Demaille  <akim@epita.fr>
12544         * ChangeLog, ChangeLog.0, ChangeLog.1, ChangeLog.2, AUTHORS, BUGS,
12545         * NEWS, README, README-alpha, TODO, tests/README: This package is
12546         `Autoconf', not `autoconf' (the executable).
12548 2001-08-20  Akim Demaille  <akim@epita.fr>
12550         Info readers seem to need `Index' in the index node title :(
12552         * doc/autoconf.texi: Reverse the 2001-08-15 change which
12553         simplified index node names.
12555 2001-08-20  Akim Demaille  <akim@epita.fr>
12557         * lib/autoconf/general.m4 (_AC_INIT_PACKAGE): Warn if the
12558         arguments are not literals.
12559         * doc/autoconf.texi (Input) <AC_INIT>: Arguments must be literals.
12560         Specify the output variables, and macros defined.
12562 2001-08-20  Akim Demaille  <akim@epita.fr>
12564         * doc/autoconf.texi (Examining Declarations) <AC_TRY_CPP>:
12565         (Examining Syntax) <AC_TRY_COMPILE>
12566         (Examining Libraries) <AC_TRY_LINK>
12567         (Test Programs) <AC_TRY_RUN>: These macros double quote some of
12568         their arguments.
12569         Reported by Werner Lemberg.
12571 2001-08-20  Akim Demaille  <akim@epita.fr>
12573         * lib/autotest/general.m4 (AT_INIT): Compute top_builddir,
12574         top_srcdir and srcdir from at_topbuild_2_topsrc and at_testdir.
12575         Load atlocal late enough to dump it in the log.
12576         * m4/atconfig.m4 (AT_CONFIG): Pass them to atconfig.
12578 2001-08-20  Akim Demaille  <akim@epita.fr>
12580         * tests/torture.at (Configuring subdirectories): New test.
12581         * lib/autoconf/general.m4 (_AC_INIT_SRCDIR): Say what you are
12582         looking for.
12583         * m4/atconfig.m4: Be sure the let $[0] be expandable.
12584         (top_srcdir): Fix its computation.
12586 2001-08-20  Akim Demaille  <akim@epita.fr>
12588         * lib/autoconf/general.m4 (_AC_OUTPUT_COMMANDS): Say what you do.
12589         * m4/atconfig.m4 (AT_CONFIG): $1 is now the directory where the
12590         test suite lives.
12591         Create `atconfig' automagically.
12592         Configure atlocal.in if present.
12593         * tests/atconfig.in: Remove.
12594         * tests/atlocal.in: New.
12595         * tests/Makefile.am: Adjust.
12597 2001-08-20  Akim Demaille  <akim@epita.fr>
12599         Huh!?!?!  There are still some user EOF tags used, which prevents
12600         their use in AC_CONFIG_COMMANDS for instance...
12602         * lib/autoconf/general.m4, lib/autoconf/specific.m4,
12603         * lib/autotest/general.m4: Rename the EOF tags as `_ACEOF',
12604         `_CSEOF', or `_ATEOF', as appropriate.
12605         * lib/m4sugar/Makefile.am, lib/autoconf/Makefile.am,
12606         * lib/autotest/Makefile.am (check-local): Enforce this constraint.
12608 2001-08-20  Akim Demaille  <akim@epita.fr>
12610         * tests/base.at, tests/m4sh.at, tests/m4sugar.at,
12611         * tests/semantics.at, tests/tools.at, tests/torture.at:
12612         s/^AT_DATA\(([^][]+),/AT_DATA([$1],/.
12614 2001-08-20  Akim Demaille  <akim@epita.fr>
12616         Autotest invokes M4sh's initialization.
12618         * lib/autotest/general.m4: Adjust the diversion names.
12619         (AT_INIT): Run AS_INIT.
12620         Use the BINSH diversion to invoke /bin/sh.
12621         * tests/base.at, tests/m4sh.at, tests/m4sugar.at, tests/tools.at:
12622         * tests/torture.at: Respect M4sugar and M4sh macro name spaces.
12624 2001-08-20  Akim Demaille  <akim@epita.fr>
12626         Let M4sh have its own diversions.
12628         * lib/autoconf/general.m4 (_m4_divert(BINSH), _m4_divert(REVISION))
12629         (_m4_divert(NOTICE)): Rename as...
12630         * lib/m4sugar/m4msh.m4 (_m4_divert(BINSH), _m4_divert(HEADER-REVISION))
12631         (_m4_divert(HEADER-COMMENT)): these.
12632         (_m4_divert(HEADER-COPYRIGHT), _m4_divert(HEADER-COPYRIGHT)): New.
12633         (_m4_divert(NOTICE)): New, for Libtool.
12634         * lib/autoconf/general.m4 (_m4_divert(PREPARE)): Remove, replaced
12635         long ago with `_m4_divert(GROW)'.
12636         (AC_COPYRIGHT, AC_REVISION, _AC_INIT_NOTICE): Adjust.
12638 2001-08-20  Akim Demaille  <akim@epita.fr>
12640         * tests/base.at, tests/compile.at, tests/foreign.at,
12641         * tests/m4sh.at, tests/m4sugar.at, tests/mktests.sh,
12642         * tests/semantics.at, tests/suite.at, tests/tools.at,
12643         * tests/torture.at: Ask Autotest mode, not Autoconf mode.
12645 2001-08-20  Akim Demaille  <akim@epita.fr>
12647         * bin/autom4te.in (handle_output): Handle @__@.
12649 2001-08-20  Akim Demaille  <akim@epita.fr>
12651         * lib/autoconf/autoconf.m4, lib/autoconf/oldnames.m4,
12652         * lib/autotest/general.m4: Adjust the license.
12654 2001-08-17  Paul Eggert  <eggert@twinsun.com>
12656         * doc/autoconf.texi (Function Portability): Mention snprintf,
12657         following up on a suggestion by Kevin Ryde.
12659 2001-08-17  Akim Demaille  <akim@epita.fr>
12661         * doc/install.texi, doc/autoconf.texi: Use `autoconf', not
12662         `autoconf_manual', as texinfo.tex 2001-06-21.10 chokes on it.
12664 2001-08-17  Akim Demaille  <akim@epita.fr>
12666         * lib/autotest/general.m4 (AT_INIT): Refer to `$as_me.log', not
12667         `$0.log' as for projects where testsuite is in src, we'd have
12668         testsuite.log created in src.
12670 2001-08-17  Akim Demaille  <akim@epita.fr>
12672         * bin/autom4te.in (&parse_args): Recognize --normalize.
12674 2001-08-17  Akim Demaille  <akim@epita.fr>
12676         Start implementing the AC_CHECK_HEADER transition scheme.
12678         * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_NEW)
12679         (_AC_CHECK_HEADER_OLD, _AC_CHECK_HEADER_MONGREL): New.
12680         (AC_CHECK_HEADER): Use them.
12682 2001-08-17  Akim Demaille  <akim@epita.fr>
12684         * doc/autoconf.texi: Work around Texinfo buglets.
12685         (Transformation Rules): One example is enough, users are expected
12686         to have their brains on. And BTW, use DESTDIR.
12687         (dvar): New macro.  Use it.
12689 2001-08-17  Akim Demaille  <akim@epita.fr>
12691         * doc/autoconf.texi (Writing testsuite.at) <AT_CHECK>: Complete.
12692         * lib/autotest/general.m4 (AT_INIT): Use the relative dir when
12693         looking for ChangeLogs.
12695 2001-08-17  Akim Demaille  <akim@epita.fr>
12697         * bin/autom4te.in: --normalize is a new option.
12698         * bin/autoconf.in: Use it.
12700 2001-08-17  Akim Demaille  <akim@epita.fr>
12702         * bin/Makefile.am, lib/Autom4te/Makefile.am, lib/autoconf/Makefile.am
12703         * lib/autotest/Makefile.am, lib/m4sugar/Makefile.am: Add TAGS support.
12705 2001-08-16  Paul Eggert  <eggert@twinsun.com>
12707         * doc/autoconf.texi, doc/install.texi: Put copyright notice at
12708         start, not at end.
12710 2001-08-15  Akim Demaille  <akim@epita.fr>
12712         * doc/Makefile.am (fu): New index, can't use fn because of defmac.
12713         Use it.
12715 2001-08-15  Akim Demaille  <akim@epita.fr>
12717         * doc/autoconf.texi (pr): New index.
12718         (prindex, findex): Use, merge, and output them.
12719         (Environment Variable Index, Output Variable Index)
12720         (Preprocessor Symbol Index, Autoconf Macro Index, M4 Macro Index)
12721         (Autotest Macro Index): Rename as...
12722         (Environment Variables, Output Variables,Preprocessor Symbols)
12723         (Autoconf Macros, M4 Macros, Autotest Macros): these.
12724         * doc/install.texi: Use @command.
12725         (Environment Variables): Rename as...
12726         (Defining Variables): this.
12728 2001-08-15  Akim Demaille  <akim@epita.fr>
12730         * doc/autoconf.texi (Function Portability): sprintf's return
12731         value.
12732         From Kevin Ryde.
12734 2001-08-15  Akim Demaille  <akim@epita.fr>
12736         * Makefile.maint (CVS): New.
12737         (local-check): Run changelog-check. last.
12738         (alpha): Don't depend upon local-check, since...
12739         (cvs-dist): depends upon it.
12741 2001-08-15  Tim Van Holder  <tim.van.holder@pandora.be>
12743         * tests/Makefile.am: Use a clean-local rule to remove
12744         autom4te.cache (it's a directory, not a file.
12745         * Makefile.am: Ditto (but maintainer-clean-local).
12747 2001-08-15  Akim Demaille  <akim@epita.fr>
12749         * bin/autom4te.in (@m4_warning): New.
12750         (&handle_m4): Use it.
12751         * tests/m4sugar.at (m4_warn): Pass `-f' to autom4te to ensure the
12752         warnings are issued at each run.
12753         * tests/atspecific.m4 (AT_CHECK_M4SUGAR, AT_CHECK_M4SH): M4sugar
12754         is in the src tree.
12756 2001-08-15  Akim Demaille  <akim@epita.fr>
12758         * tests/atspecific.m4 (AT_CHECK_AUTOUPDATE): Perl is now required:
12759         don't waste time running `autoupdate --version' works.
12760         * tests/tools.at (autoupdating AC_PREREQ): Likewise.
12762 2001-08-13  Akim Demaille  <akim@epita.fr>
12764         * doc/autoconf.texi (ma): Rename this index as...
12765         (ac): this.
12767 2001-08-13  Akim Demaille  <akim@epita.fr>
12769         * Makefile.am: Remove dead code and dead comments.
12770         (pdf, html): New targets.
12771         * doc/autoconf.texi (Using Autotest): New chapter.
12772         * doc/Makefile.am (pdf): New targets.
12773         (CLEANFILES): Adjust.
12775 2001-08-13  Akim Demaille  <akim@epita.fr>
12777         * lib/autotest/general.m4 (AT_INIT): Log the start/stop dates and
12778         duration of the test suite.
12780 2001-08-12  Alexandre Duret-Lutz  <duret_g@epita.fr>
12782         * tests/semantics.at (AC_C_BIGENDIAN): Explicitelly save and load
12783         endianness for comparison instead of relying on AT_CHECK_ENV.
12785 2001-08-11  Paul Eggert  <eggert@twinsun.com>
12787         * doc/autoconf.texi, doc/install.texi: Add a copyright notice
12788         to the INSTALL file.
12790 2001-08-11  Paul Eggert  <eggert@twinsun.com>
12792         * NEWS: The autoconf manual now is distributed under the terms
12793         of the GNU Free Documentation License.
12795         * doc/autoconf.texi: Switch from old style copyright notice to FDL.
12796         Add an appendix "Copying This Manual" for the FDL.
12798         * doc/fdl.texi: New file, from
12799         <http://www.gnu.org/licenses/fdl.texi>.
12801         * doc/Makefile.am (autoconf_TEXINFOS): Add fdl.texi.
12803 2001-08-10  Paul Eggert  <eggert@twinsun.com>
12805         * AUTHORS, BUGS, ChangeLog, ChangeLog.0, ChangeLog.1,
12806         ChangeLog.2, GNUmakefile, Makefile.maint, NEWS, README,
12807         README-alpha, TODO, configure.ac, lib/autoconf/Makefile.am,
12808         m4/atconfig.m4, m4/init.m4, m4/m4.m4, m4/missing.m4,
12809         m4/sanity.m4, tests/README, tests/aclocal.m4,
12810         tests/atspecific.m4, tests/base.at, tests/compile.at,
12811         tests/foreign.at, tests/m4sh.at, tests/m4sugar.at,
12812         tests/semantics.at, tests/suite.at, tests/tools.at,
12813         tests/torture.at: Add copyright notice.
12815         * tests/mktests.sh: Update year in copyright notice.
12817 2001-08-12  Alexandre Duret-Lutz  <duret_g@epita.fr>
12819         * tests/semantics.at (AC_C_BIGENDIAN): New test.
12821 2001-08-11  Alexandre Duret-Lutz  <duret_g@epita.fr>
12823         * lib/autoconf/c.m4 (AC_C_BIGENDIAN): Handle ACTION-IF-TRUE,
12824         ACTION-IF-FALSE, and ACTION-IF-UNKNOWN.
12825         * doc/autoconf.texi (C Compiler Characteristics): Update
12826         documentation for AC_C_BIGENDIAN.
12828 2001-08-11  Alexandre Duret-Lutz  <duret_g@epita.fr>
12830         * lib/autoconf/c.m4 (AC_C_BIGENDIAN): Guess endianness by grep'ing
12831         magic values from an object file when cross-compiling.
12832         Based on code by Guido Draheim <Guido.Draheim@gmx.de>.
12834 2001-08-10  Akim Demaille  <akim@epita.fr>
12836         * bin/autom4te.in (&handle_output): Don't use `grep' with side
12837         effects.
12838         Suggested by Russ Allbery.
12840 2001-08-10  Ralf Corsepius  <corsepiu@faw.uni-ulm.de>
12842         * lib/autoconf/general.m4 (_AC_OUTPUT_SUBDIRS): Propagate the
12843         current $prefix to the sub-configures.
12845 2001-08-09  Tim Van Holder  <tim.van.holder@pandora.be>
12847         * lib/autoconf/lang.m4: Ignore *.xSYM when looking for an executable
12848         extension (needed on BeOS).  Reported by Guido van Rossum.
12850 2001-08-09  Akim Demaille  <akim@epita.fr>
12852         * bin/autom4te.in ($icache): Load it only if older than autom4te.
12854 2001-08-07  Akim Demaille  <akim@epita.fr>
12856         * lib/autotest/general.m4 (AT_INIT): All the `at-*' are to be
12857         removed.
12858         (at-setup-line): Huh?  Be a variable `at_setup_line', not a file.
12859         No need to remove the files before and after the each test, before
12860         each test and at the end of the suite is enough.
12861         Display only the children `times', not the shell's.
12862         If the test failed or was skipped, at-times is not available.
12864 2001-08-07  Akim Demaille  <akim@epita.fr>
12866         Always produce testsuite.log, including when there are no
12867         failures.  This helps getting information on skipped tests, and
12868         duration of the tests.  Err, implement the latter btw.
12870         * lib/autotest/general.m4 (AT_INIT): Set up fd 6 for the log.
12871         Dump information on the first run of each test.
12872         (AT_CLEANUP): Create `at-times' containing the duration of the
12873         test group.
12875 2001-08-07  Akim Demaille  <akim@epita.fr>
12877         The use of `dumpstat' revealed that `len' was used although it
12878         should not.  m4_text_wrap was using it, but in the Autoconf world
12879         where it is legal.  Hence (i) test M4sh in its own world, not
12880         Autoconf's, and (ii), ahem, fix the bug :)
12882         * lib/autotest/general.m4: Be sure the set good quotes, as tracing
12883         does not like `' instead of [].
12884         (AT_INIT): Forbid `^_?AT_'.
12885         And don't output such tokens.
12886         * tests/Makefile.am (CLEANFILES): Add `script', `script.s4g',
12887         `script.as', and `autom4te.cache'.
12888         Remove `empty' and `macro' which are no longer used.
12889         * tests/atspecific.m4 (AT_CHECK_M4SUGAR, AT_CHECK_M4SH): New.
12890         * tests/m4sugar.at: Use it.
12891         * lib/m4sugar/m4sugar.m4: Use `m4_len' not `len'.
12893 2001-08-07  Akim Demaille  <akim@epita.fr>
12895         * bin/autoconf.in, bin/autoheader.in: --force, -f is a new option.
12897 2001-08-07  Alexandre Duret-Lutz  <duret_g@epita.fr>
12899         * bin/autom4te.in (handle_output): Typo in quadrigraph substitution.
12901 2001-08-04  Akim Demaille  <akim@epita.fr>
12903         * lib/autoconf/functions.m4 (AC_FUNC_ALLOCA, AC_FUNC_ERROR_AT_LINE)
12904         (AC_FUNC_FSEEKO, AC_FUNC_OBSTACK): Use AC_LANG_IFELSE, not
12905         AC_TRY_LINK.
12906         * lib/autoconf/headers.m4 (AC_HEADER_MAJOR): Likewise.
12907         * lib/autoconf/fortran.m4 (_AC_LANG_PROGRAM_C_F77_HOOKS)
12908         (AC_F77_MAIN): Likewise.
12910 2001-08-04  Akim Demaille  <akim@epita.fr>
12912         Don't rely on M4sugar outputting the patterns in files, since we
12913         might process the output _without_ running m4, hence without these
12914         files.
12916         * lib/m4sugar/m4sugar.m4 (m4_init): No need for `m4_tmpdir'.
12917         * bin/autom4te.in (@Request::includes): Remove, unused.
12918         (@Request::source): Rename as...
12919         (@Request::input): this.
12920         (@preselect): Add `m4_pattern_forbid' and `m4_pattern_allow'.
12921         (&handle_output): Fetch the patterns from the traces.
12922         `$forbidden' and `$allowed' are constant: use m//o.
12923         (&handle_m4): M4sugar no longer wants `m4_tmpdir'.
12924         (m4_pattern_forbid, m4_pattern_allow): Adjust for tracing only.
12926 2001-08-04  Akim Demaille  <akim@epita.fr>
12928         `autoconf && autoheader' is sped up.  Now, speed up `autoheader &&
12929         autoconf', i.e., in addition to caching traces, cache the output.
12931         * bin/autom4te.in (Request::cache): Rename as...
12932         (Request::id): this.
12933         ($cache, $icache, $tcache, $ocache): New.
12934         (&handle_m4): Save M4 output in the cache instead of $tmp.
12935         (&handle_output): Adjust.
12936         (&up_to_date_p): Check that the output cache is up to date too.
12937         (top level): Run `&handle_m4' iff force or the cache is invalid.
12938         Run `&handle_output' if the output cache is more recent.
12940 2001-08-04  Akim Demaille  <akim@epita.fr>
12942         * bin/autom4te.in ($force): New.
12943         (&parse_args, &print_usage): -f, --force is a new option.
12944         (&handle_output): CPP directives might have spaces after `#'.
12945         (&parse_args): The first file only can be frozen.
12947 2001-08-04  Akim Demaille  <akim@epita.fr>
12949         Don't let autom4te compute the `include' traces several times:
12950         first check that the trace cache file is up to date, and then
12951         compare its timestamp with that of the output.
12953         * bin/autom4te.in, bin/autoupdate.in, bin/autoscan.in: Normalize
12954         the preamble.  Don't require 5.005 as Autom4te::General does it,
12955         and better yet (use `use', not `require'!).
12956         * lib/Autom4te/Struct.pm: Rename the last occurrences of
12957         Class::Struct as Autom4te::Struct.
12958         * lib/Autom4te/General.pm (File::stat): Use it.
12959         (&mtime): New, export it.
12960         * bin/autom4te.in: Use it.
12961         Declare `$req' is invalid if it is outdated.
12962         Don't declare it valid before saving it if something went wrong.
12964 2001-08-04  Akim Demaille  <akim@epita.fr>
12966         Autom4te shall not encode Autoconf data, and preselecting traces
12967         must be proposed to the users.
12969         * bin/autom4te.in (@required_trace): Remove.
12970         (@preselect): New.
12971         (&parse_args, &print_usage): -p, --preselect is a new option.
12972         (&up_to_date_p): Adjust.
12973         * bin/autoconf.in: Preselect some Autoconf macros.
12975 2001-08-04  Akim Demaille  <akim@epita.fr>
12977         * tests/tools.at (autoconf --trace: user macros): Check traces on
12978         macros invoked without arguments, and macros invoked with multiple
12979         lines arguments.
12981 2001-08-03  Alexandre Duret-Lutz  <duret_g@epita.fr>
12983         * bin/autom4te.in (handle_traces): Fix rewriting of traces without
12984         arguments.
12986 2001-08-03  Akim Demaille  <akim@epita.fr>
12988         * bin/autoconf.in ($@): Work around the usual sh bug.
12989         From Nicolas Joly.
12991 2001-08-03  Akim Demaille  <akim@epita.fr>
12993         Clean up the handling of the M4 builtins tracing exception.
12995         * bin/autom4te.in (Request::request): Don't complete M4 builtins
12996         trace requests.
12997         (@m4_builtins): Rename as...
12998         (@m4_builtin): this.
12999         (%m4_builtin_alternate_name): New.
13000         (&parse_args): Complete the trace requests with alternate names.
13001         (&handle_traces): Hence no longer do it here.
13002         (&trace_requests): Remove, unused.
13004 2001-08-03  Akim Demaille  <akim@epita.fr>
13006         * doc/autoconf.texi (Redefined M4 Macros): Document m4_exit,
13007         m4_if, and m4_wrap.
13009 2001-08-03  Akim Demaille  <akim@epita.fr>
13011         * lib/m4sugar/m4sugar.m4 (m4_init): Also forbid `_m4_*' tokens.
13012         (m4_divert_pop): Dump the whole diversion stack when a diversion
13013         mismatch happens.
13014         * bin/autom4te.in (&handle_output): Remember of the first
13015         occurrence of a possibly undefined macro, not the last.
13016         Complain about the possibly undefined macros in the same order as
13017         the appear in the output.
13018         * lib/autoconf/Makefile.am (autoconf.m4f): List its dependencies.
13019         * tests/tools.at (autoconf: forbidden tokens, basic)
13020         (autoconf: forbidden tokens, exceptions): No longer sort
13021         autoconf's stderr, as it is now deterministic.
13022         Check that `dnl' is caught.
13024 2001-08-01  Akim Demaille  <akim@epita.fr>
13026         * configure.ac: Bump to 2.52c.
13028 2001-08-01  Akim Demaille  <akim@epita.fr>
13030         Version 2.52b.
13032         * lib/Autom4te/Makefile.am (perllibdir): s/Autoconf/Autom4te/.
13034 2001-08-01  Akim Demaille  <akim@epita.fr>
13036         Version 2.52a.
13038 2001-08-01  Akim Demaille  <akim@epita.fr>
13040         * lib/Autom4te/General.pm: Use `carp' and `croak', not `warn' and
13041         `die'.
13042         (&END): New.
13043         * bin/autoconf.in, bin/autom4te.in, bin/autoupdate.in: Remove your
13044         `END', as `Autom4te::General::END' will be triggered.
13045         * bin/autoupdate.in, bin/autoscan.in: Improve error messages accuracy.
13046         * bin/autoupdate.in (File::Compare, File::Copy): Use them instead of
13047         system to run `mv', `rm', and `cmp'.
13049 2001-08-01  Akim Demaille  <akim@epita.fr>
13051         * lib/Autom4te/General.pm (&unique): New.
13052         * bin/autoscan.in (&output): Use it to issue trace requests once.
13054 2001-08-01  Akim Demaille  <akim@epita.fr>
13056         * lib/Autom4te/General.pm: New.
13057         * bin/autom4te.in (Autom4te::General): Use it.
13058         ($me, $tmp, $verbose, $debug, &mktmpdir, &verbose, &xsystem)
13059         (&find_configure_ac, &find_slave): Remove.
13060         * bin/autoscan.in: Likewise.
13061         * bin/autoupdate.in: Likewise.
13063 2001-08-01  Akim Demaille  <akim@epita.fr>
13065         * autoconf.in, autom4te.in, autoscan.in, ifnames.in,
13066         * autoheader.in, autoreconf.in, autoupdate.in: Move to...
13067         * bin: here, new directory.
13068         * lib/Autoconf: Rename as...
13069         * lib/Autom4te: this, to please case insensitive junkie OSes.
13071 2001-08-01  Akim Demaille  <akim@epita.fr>
13073         * autom4te.in ($m4): Handle the --nesting-limit.
13074         * autoconf.in (M4): Remove.
13076 2001-08-01  Akim Demaille  <akim@epita.fr>
13078         * autoconf.in ($AWK): Remove, no longer used.
13079         * test/tools.at: Use AT_CHECK_AUTOCONF.
13080         (AWK portability): Remove, for autoconf no longer uses AWK.
13081         (Syntax of the Perl scripts): New.
13082         * configure.ac: autoconf no longer needs an AWK with a good
13083         regexp engine.
13084         Use a static test on AC_PACKAGE_VERSION.
13085         * autom4te.in (&up_to_date_p): Output depends on the arguments.
13086         * lib/autoconf/Makefile.am: Ship version.m4, maintainer file.
13087         * tests/atconfig.in (PERL): New.
13089 2001-08-01  Akim Demaille  <akim@epita.fr>
13091         * lib/autoconf/lang.m4 (AC_LANG(C), AC_LANG_C, _AC_LANG_ABBREV(C))
13092         (AC_LANG(C++), AC_LANG_CPLUSPLUS, _AC_LANG_ABBREV(C++))
13093         (AC_LANG_SOURCE(C), AC_LANG_PROGRAM(C), AC_LANG_CALL(C))
13094         (AC_LANG_FUNC_LINK_TRY(C), AC_LANG_BOOL_COMPILE_TRY(C))
13095         (AC_LANG_INT_SAVE(C), _AC_ARG_VAR_CPPFLAGS, _AC_ARG_VAR_LDFLAGS)
13096         (AC_LANG_PREPROC(C), _AC_PROG_PREPROC_WORKS_IFELSE, AC_PROG_CPP)
13097         (AC_LANG_COMPILER(C), ac_cv_prog_gcc, AC_PROG_CC, _AC_PROG_CC_G)
13098         (AC_PROG_GCC_TRADITIONAL, AC_PROG_CC_C_O, AC_LANG_PREPROC(C++))
13099         (AC_PROG_CXXCPP, AC_LANG_COMPILER(C++), ac_cv_prog_gxx)
13100         (AC_PROG_CXX, _AC_PROG_CXX_G, _AC_PROG_CXX_EXIT_DECLARATION)
13101         (AC_PROG_CC_STDC, AC_C_CROSS, AC_C_CHAR_UNSIGNED, AC_C_LONG_DOUBLE)
13102         (AC_C_BIGENDIAN, AC_C_INLINE, AC_C_CONST, AC_C_VOLATILE)
13103         (AC_C_STRINGIZE, AC_C_PROTOTYPES): Move to...
13104         * lib/autoconf/c.m4: here, new file.
13106         * lib/autoconf/lang.m4 (AC_LANG(Fortran 77), AC_LANG_FORTRAN77)
13107         (_AC_LANG_ABBREV(Fortran 77), AC_LANG_SOURCE(Fortran 77))
13108         (AC_LANG_PROGRAM(Fortran 77), AC_LANG_CALL(Fortran 77))
13109         (AC_LANG_PREPROC(Fortran 77), AC_LANG_COMPILER(Fortran 77))
13110         (ac_cv_prog_g77, AC_PROG_F77, _AC_PROG_F77_G, AC_PROG_F77_C_O)
13111         (_AC_PROG_F77_V_OUTPUT, _AC_PROG_F77_V, AC_F77_LIBRARY_LDFLAGS)
13112         (AC_F77_DUMMY_MAIN, _AC_LANG_PROGRAM_C_F77_HOOKS, AC_F77_MAIN)
13113         (_AC_F77_NAME_MANGLING, AC_F77_NAME_MANGLING, AC_F77_WRAPPERS)
13114         (AC_F77_FUNC): Move to...
13115         * lib/autoconf/fortran.m4: here, new file.
13117 2001-08-01  Akim Demaille  <akim@epita.fr>
13119         * acfunctions.m4: Rename as...
13120         * lib/autoconf/functions.m4: this.
13121         * acgeneral.m4: Rename as...
13122         * lib/autoconf/general.m4: this.
13123         * acheaders.m4: Rename as...
13124         * lib/autoconf/headers.m4: this.
13125         * aclang.m4: Rename as...
13126         * lib/autoconf/lang.m4: this.
13127         * acoldnames.m4: Rename as...
13128         * lib/autoconf/oldnames.m4: this.
13129         * acspecific.m4: Rename as...
13130         * lib/autoconf/specific.m4: this.
13131         * actypes.m4: Rename as...
13132         * lib/autoconf/types.m4: this.
13133         * autoconf.m4: Rename as...
13134         * lib/autoconf/autoconf.m4: this.
13136         * m4sugar.m4: Rename as...
13137         * lib/m4sugar/m4sugar.m4: this.
13138         * m4sh.m4: Rename as...
13139         * lib/m4sugar/m4sh.m4: this.
13141         * tests/atgeneral.m4: Rename as...
13142         * lib/autotest/general.m4: this.
13144         * acfunctions: Rename as...
13145         * lib/autoscan/functions: this.
13146         * acheaders: Rename as...
13147         * lib/autoscan/headers: this.
13148         * acidentifiers: Rename as...
13149         * lib/autoscan/identifiers: this.
13150         * aclibraries: Rename as...
13151         * lib/autoscan/libraries: this.
13152         * acmakevars: Rename as...
13153         * lib/autoscan/makevars: this.
13154         * acprograms: Rename as...
13155         * lib/autoscan/programs: this.
13157 2001-08-01  Akim Demaille  <akim@epita.fr>
13159         * doc/autoconf.texi: Moving/deleting open files is not portable.
13160         Portability issues for `.' (source), and more information about sed.
13162 2001-07-25  Steven G. Johnson  <stevenj@alum.mit.edu>
13164         * aclang.m4 (AC_F77_LIBRARY_LDFLAGS): Ignore -libmil (on Solaris),
13165         which has a special meaning and is not a reference to libibmil.a.
13166         Reported by Matteo Frigo.
13168 2001-07-25  Pavel Roskin  <proski@gnu.org>
13170         * autom4te.in (mktmpdir): Strip trailing newline from mktemp
13171         output.
13173 2001-07-25  Akim Demaille  <akim@epita.fr>
13175         * autoconf.in: Try to define the variables before using them.
13176         * autom4te.in ($perllibdir): Use `$autom4te_perllibdir' as envvar
13177         instead of `$perllibdir'.
13178         * tests/atconfig.in ($autom4te_perllibdir): Export it.
13180 2001-07-25  Akim Demaille  <akim@epita.fr>
13182         * autoconf.in (ac_LF_and_DOT): Remove, unused.
13184 2001-07-24  Akim Demaille  <akim@epita.fr>
13186         Let autoconf use autom4te for traces.
13188         * autoconf.in ($task, task trace): Remove, merely pass --trace to
13189         autom4te.
13190         * autoheader.in: Don't pass `-' to autoconf, rather, a tmp file.
13191         (Because I found no way for autom4te to accept `-').
13192         * autom4te.in (&Request::request): Beware of M4 builtins.
13193         (END): Don't try to remove the content of an empty dir.
13194         (&parse_args): Default is `$f:$l:$n:$%', not `$f:$l:$n:$*'.
13195         (&handle_output): Set a default value to `$forbidden'.
13196         * autoupdate.in (&verbose, &xsystem): New, from autom4te.in.
13197         ($autoconf): Pass --debug and --verbose.
13198         * tests/atspecific.m4 (AT_CHECK_AUTOCONF): Clean up autom4te's
13199         cache.
13201 2001-07-24  Akim Demaille  <akim@epita.fr>
13203         Let autoconf use autom4te to create configure.
13205         * autoconf.in ($automate): New var.
13206         (task script): Use autom4te.
13207         * autom4te.in (File::Spec): Use it.
13208         (&find_file): New.
13209         (&parse_args): --warning is -W, not -w.
13210         Find the top level files.
13211         (&handle_m4): Pass the warnings flags.
13212         Don't report verbosely m4's failures, unless requested.
13213         (&handle_output): Don't complain for forbidden tokens in comments.
13214         Be sure to report all the forbidden tokens within a single line.
13215         (&trace_format_to_m4): Preserve `$_'.
13216         (&handle_traces): Sort the output macros.
13217         (&up_to_date_p): Find the files before trying to get its time stamp.
13219 2001-07-24  Akim Demaille  <akim@epita.fr>
13221         * Makefile.am: Ship, build and install Autom4te.
13222         (SUBDIRS): Add lib.
13223         * lib/Autoconf/Struct.pm: New, from Automake 1.5.
13224         * configure.in: Require Perl.
13225         * man/autom4te.in: New.
13227 2001-07-19  Paul Eggert  <eggert@twinsun.com>
13229         * doc/autoconf.texi (Cache Checkpointing): Use AC_MSG_ERROR in
13230         example, rather than (exit 1); exit (which isn't portable).
13232 2001-07-18  Akim Demaille  <akim@epita.fr>
13234         Version 2.52.
13236 2001-07-18  Akim Demaille  <akim@epita.fr>
13238         The C-Fortran 77 hooks are available only once AC_F77_DUMMY_MAIN
13239         was run, while they are needed also when it is expanded.
13240         Reported by Nicolas Joly.
13242         * aclang.m4 (AC_F77_DUMMY_MAIN): Define _AC_LANG_PROGRAM_C_F77_HOOKS.
13243         (AC_LANG_PROGRAM(C)): Use it instead of depending upon
13244         AC_F77_DUMMY_MAIN being expanded.
13246 2001-07-18  Akim Demaille  <akim@epita.fr>
13248         * configure.in: Bump to 2.51a.
13250 2001-07-17  Akim Demaille  <akim@epita.fr>
13252         Version 2.51.
13254 2001-07-17  Akim Demaille  <akim@epita.fr>
13256         * aclang.m4 (AC_F77_DUMMY_MAIN): Let the interface be more
13257         Autoconfy: $1 = action-if-found, $2 = action-if-not-found.
13259 2001-07-17  Akim Demaille  <akim@epita.fr>
13261         The runtime test for AC_FUNC_GETPGRP fails when prototypes are
13262         used.  Well, then use the prototypes when you can, and runtime as
13263         a last resort.
13264         Reported by Artur Frysiak
13266         * acfunctions.m4 (_AC_FUNC_GETPGRP_TEST): New.
13267         (AC_FUNC_GETPGRP): Use it.
13268         First try to compile with 0-ary or 1-ary calls.
13270 2001-07-17  Akim Demaille  <akim@epita.fr>
13272         * actypes.m4 (_AC_CHECK_TYPE_REPLACEMENT_TYPE_P): `foo_t' is a
13273         replacement type.
13274         From Paul Eggert.
13276 2001-07-17  Akim Demaille  <akim@epita.fr>
13278         * Makefile.maint: Sync. with cppi 1.10.
13280 2001-07-17  Akim Demaille  <akim@epita.fr>
13282         * aclang.m4 (AC_LANG_PROGRAM(C)): Output F77_DUMMY_MAIN only when
13283         AC_F77_DUMMY_MAIN has been run.
13284         From Pavel Roskin and Steven G. Johnson.
13286 2001-07-17  Akim Demaille  <akim@epita.fr>
13288         * configure.in: Rename as...
13289         * configure.ac: this.
13291 2001-07-17  Akim Demaille  <akim@epita.fr>
13293         * Makefile.am (INSTALL.txt): Don't use $@ and $< in non suffix
13294         rules.
13295         From Marc Espie.
13296         * Makefile.maint (release-archive-dir): Rename as...
13297         (release_archive_dir): this, so that it can be specialized in
13298         Makefile.
13300 2001-07-14  Akim Demaille  <akim@epita.fr>
13302         * configure.in: Bump to 2.50d.
13304 2001-07-14  Akim Demaille  <akim@epita.fr>
13306         Version 2.50c.
13307         * Makefile.maint (alpha): Typo.
13309 2001-07-14  Akim Demaille  <akim@epita.fr>
13311         * doc/autoconf.texi (Limitations of Make): Macro names and underscore.
13313 2001-07-14  Akim Demaille  <akim@epita.fr>
13315         * config/config.guess, config/config.sub, config/texinfo.tex
13316         * doc/standards.texi, doc/make-stds.texi: Update.
13318 2001-07-14  Akim Demaille  <akim@epita.fr>
13320         * Makefile.maint (cvs-check, cvs-tag-check, cvs-diff-check): New.
13322 2001-07-14  Akim Demaille  <akim@epita.fr>
13324         * Makefile.maint (maintainer-check): Rename as...
13325         (maintainer-distcheck): this.
13326         (changelog-check, static-check): New.
13327         Use them.
13329 2001-07-14  Kevin Ryde  <user42@zip.com.au>
13331         * doc/autoconf.texi (C++ Compilers Characteristics): Last resort
13332         for CXX is g++, not gcc.
13334 2001-07-14  Akim Demaille  <akim@epita.fr>
13336         * doc/autoconf.texi (Files): New subsection.
13338 2001-07-14  Akim Demaille  <akim@epita.fr>
13340         * doc/autoconf.texi (C Compiler, Fortran 77 Compiler): Be subsections
13341         of...
13342         (Generic Compiler Characteristics): this.
13343         (C++ Compiler): New subsection.
13345 2001-07-14  Akim Demaille  <akim@epita.fr>
13347         * autoscan.in: Use IO::File.
13348         Adjust all the routines to use it.
13349         ($log): New file (autoscan.log).
13350         (output): Dump detailed logs into $log, and a shortened version to
13351         stderr.
13352         (&scan_makefile): Refine the regexp catching tokens in the code.
13353         * doc/autoconf.texi (autoscan Invocation): Document `autoscan.log'
13354         and the `configure.ac' checking feature.
13356 2001-07-12  Akim Demaille  <akim@epita.fr>
13358         For some AWK, such as on HPUX 11, `xfoo' does not match `foo|^bar'.
13359         Reported by Michael Elizabeth Chastain.
13361         * autoconf.in: Refuse such AWK.
13362         * configure.in: Likewise.
13363         * Makefile.am (acversion.m4): Do not use move-if-change this file
13364         has dependencies.
13365         * doc/autoconf.texi (Fortran 77 Compiler): Some typos.
13367 2001-07-10  Jens Petersen  <petersen@redhat.com>
13369         * autoscan.in (&scan_makefile): Improve programs regexp to parse
13370         things like "g++", "file.c" and "some-conf" as tokens.
13371         (&scan_file): Match C++ files extensions.
13372         If the filename extension is C++ then ask for c++.
13374 2001-07-05  Steven G. Johnson  <stevenj@alum.mit.edu>
13376         * aclang.m4 (AC_F77_DUMMY_MAIN): Use AC_TRY_LINK, not
13377         AC_TRY_LINK_FUNC, to check whether defining a dummy
13378         main-like routine is needed for linking with F77 libs.
13380 2001-07-05  Pavel Roskin  <proski@gnu.org>
13382         * aclocal.m4 (_AC_PROG_CXX_EXIT_DECLARATION): Remove conftest*
13383         after using break.
13384         (_AC_PROG_F77_V_OUTPUT): Remove conftest*, not conftest.* after
13385         linking.
13387 2001-07-05  Akim Demaille  <akim@epita.fr>
13389         * Makefile.am (move_if_change): New.  Use it instead of `mv'.
13390         (acversion.m4): Name it `$(srcdir)/acversion.m4' to ease broken
13391         Makes' lives.
13392         Reported by Nicolas Joly.
13394 2001-07-04  Akim Demaille  <akim@epita.fr>
13396         * acgeneral.m4 (_AC_RUN_IFELSE): Remove conftest.o when cleaning
13397         up.
13398         * acfunctions.m4 (AC_FUNC_WAIT3): Use `break' to silent some
13399         warnings from compilers.
13400         * aclang.m4 (_AC_LANG_COMPILER_GNU): Log the version information
13401         for all the compilers, not only GNU.  Hence move from here...
13402         (AC_PROG_CC, AC_PROG_CXX, AC_PROG_F77): to here.
13404 2001-07-04  Akim Demaille  <akim@epita.fr>
13406         * acfunctions.m4 (AC_FUNC_STRTOD, AC_FUNC_STRERROR_R)
13407         (AC_FUNC_STRCOLL, AC_FUNC_WAIT3): Use AC_RUN_IFELSE and
13408         AC_COMPILE_IFELSE.
13410 2001-07-04  Akim Demaille  <akim@epita.fr>
13412         * acgeneral.m4 (_AC_INCLUDES_DEFAULT_REQUIREMENTS): Actually apply
13413         the ``strings.h'' change claimed below.
13415 2001-07-04  Akim Demaille  <akim@epita.fr>
13417         * aclang.m4 (_AC_LANG_COMPILER_GNU): s/-dumpspecs/-v/.
13419 2001-07-04  Akim Demaille  <akim@epita.fr>
13421         * acgeneral.m4 (_AC_INCLUDES_DEFAULT_REQUIREMENTS): Include
13422         strings.h if usable with string.h.
13423         Suggested by Paul Eggert.
13425 2001-07-04  Akim Demaille  <akim@epita.fr>
13427         * autoscan.in (&scan_file): Skip FILE if there is FILE.in.
13428         From Jens Petersen.
13430 2001-07-03  Akim Demaille  <akim@epita.fr>
13432         * acgeneral.m4 (_AC_OUTPUT_CONFIG_STATUS): Specify CONFIG_FILES
13433         etc. in the log.
13435 2001-07-03  Akim Demaille  <akim@epita.fr>
13437         * acheaders.m4 (AC_CHECK_HEADER): When INCLUDES are set, use the
13438         compiler, not the preprocessor.
13439         * acgeneral.m4 (_AC_INCLUDES_DEFAULT_REQUIREMENTS): No longer use
13440         dedicated code to check for inttypes.h, as AC_CHECK_HEADERS does
13441         the right thing.
13442         * Makefile.am (.m4.m4f): Emphasize M4 error messages and fail
13443         earlier if there are.
13445 2001-07-03  Akim Demaille  <akim@epita.fr>
13447         * autoscan.in ($initfile): Remove.
13448         (&find_file): Rename as...
13449         (&scan_file): this.
13450         Immediately scan the current file, instead of gathering them, and
13451         later having them handled by &scan_files.
13452         (&scan_files): Merely invoke Find::File.
13453         Adjust.
13455 2001-07-02  Akim Demaille  <akim@epita.fr>
13457         * autoscan.in: Formatting changes, matching the invocation order.
13458         (File::Find): Use it instead of Perl 4's `find.pl'.
13459         (&wanted): Rename as...
13460         (&find_file): this.
13462 2001-07-01  Pavel Roskin  <proski@gnu.org>
13464         * aclang.m4 (AC_F77_DUMMY_MAIN): Remove conftest* after using
13465         break in the argument to AC_TRY_LINK_FUNC.
13466         (AC_F77_MAIN): Remove conftest* after using break in the
13467         argument to AC_TRY_LINK.
13469 2001-07-01  Steven G. Johnson  <stevenj@alum.mit.edu>
13471         Add alternate 'main' routine detection for linking C/C++ with Fortran,
13472         fixing link failures for e.g. AC_F77_WRAPPERS on NetBSD.
13474         * aclang.m4 (AC_F77_DUMMY_MAIN): New macro to detect whether a
13475         dummy alternate main is required even if the user provides her own
13476         'main'.
13477         (AC_F77_MAIN): New macro to detect whether it is possible to
13478         provide an alternate 'main' function name, using the 'main' from
13479         the Fortran libraries.
13480         (AC_LANG_PROGRAM(C)): Use F77_DUMMY_MAIN, if it is defined, so that
13481         cross-language link tests can be performed successfully.
13482         (_AC_F77_NAME_MANGLING): Require AC_F77_DUMMY_MAIN.  Also put $FLIBS
13483         after $LIBS, for consistency; this should be the general rule since
13484         the user may want to link to Fortran libraries that require $FLIBS.
13485         * doc/autoconf.texi: Document AC_F77_DUMMY_MAIN and AC_F77_MAIN.
13487 2001-06-29  Pavel Roskin  <proski@gnu.org>
13489         * atgeneral.m4 (AT_CHECK): Add a newline to the end of
13490         at-stdout and at-stderr instead of removing the newline
13491         from the echo output, which is not guaranteed to work.
13493 2001-06-28  Jens Petersen  <petersen@redhat.com>
13495         * aclang.m4 (_AC_PROG_CXX_EXIT_DECLARATION): Only add declaration to
13496         confdefs.h when non-zero.
13498 2001-06-28  Akim Demaille  <akim@epita.fr>
13500         * configure.in: Bump to 2.50c.
13502 2001-06-26  Akim Demaille  <akim@epita.fr>
13504         Version 2.50b.
13506 2001-06-26  Akim Demaille  <akim@epita.fr>
13508         Version 2.50a.
13510 2001-06-25  Pavel Roskin  <proski@gnu.org>
13512         * tests/atspecific.m4 (AT_CHECK_MACRO): Accept one more
13513         argument, AUTOCONF-FLAGS.
13514         * tests/mktests.sh (update_exclude_list): Add
13515         AC_SYS_RESTARTABLE_SYSCALLS and AC_FUNC_WAIT3.
13516         * tests/semantics.at: Test AC_SYS_RESTARTABLE_SYSCALLS and
13517         AC_FUNC_WAIT3 with "-W no-obsolete".
13519 2001-06-25  Akim Demaille  <akim@epita.fr>
13521         * tests/foreign.at (libtool): Fix the `libtoolize --version' decoding.
13523 2001-06-25  Akim Demaille  <akim@epita.fr>
13525         * autoscan.in (%macro): Now maps from word to list of macros.
13526         (&init_tables): Die when a word which is already handled by
13527         explicit macros is mapped to the default macro.
13528         (&print_unique): Remove, inlined in...
13529         (&output_kind): here.
13530         (File::Basename): Use it.
13531         (&output): Sort the CONFIG_FILES.
13532         * acheaders: Normalize.
13533         * acfunctions: Likewise.
13535 2001-06-25  Akim Demaille  <akim@epita.fr>
13537         * aclang.m4 (_AC_LANG_COMPILER_GNU): If GNU, dump the compiler
13538         characteristics in the logs.
13539         Suggested by Mo DeJong.
13541 2001-06-24  Akim Demaille  <akim@epita.fr>
13543         * acfunctions.m4 (AM_FUNC_ERROR_AT_LINE, AM_FUNC_FNMATCH)
13544         (AM_FUNC_MKTIME, AM_FUNC_OBSTACK, AM_FUNC_STRTOD): Reactivated.
13545         * doc/autoconf.texi (Autoconf 2.13): New section.
13547 2001-06-24  Akim Demaille  <akim@epita.fr>
13549         * autoconf.in (Task traces): Separate the error messages from the
13550         traces to improve robustness.
13552 2001-06-23  Akim Demaille  <akim@epita.fr>
13554         * tests/torture.at (AC_ARG_VAR): Make it a single test instead of
13555         three as failures are unlikely, and speed matters.
13557 2001-06-23  Akim Demaille  <akim@epita.fr>
13559         * doc/autoconf.texi (Redefined M4 Macros): New.
13561 2001-06-23  Akim Demaille  <akim@epita.fr>
13563         * acgeneral.m4 (_AC_INCLUDES_DEFAULT_REQUIREMENTS): Consider
13564         inttypes.h is missing if it conflicts with sys/types.h, as on IRIX
13565         5.3.
13567 2001-06-23  Paolo Bonzini  <bonzini@gnu.org>
13569         * acgeneral.m4 (_AC_OUTPUT_CONFIG_STATUS): Defer parsing of
13570         config.status targets to after the evaluation of the INIT-CMDS.
13571         Double quote config.status targets (used to be single quoted).
13573 2001-06-23  Akim Demaille  <akim@epita.fr>
13575         * tests/torture.at (CONFIG_FILES, HEADERS, LINKS and COMMANDS):
13576         Check the content of the created file.
13577         Check the ./config.status command line invocation.
13579 2001-06-23  Akim Demaille  <akim@epita.fr>
13581         * tests/foreign.at (Libtool): Reject prehistoric versions.
13583 2001-06-23  Akim Demaille  <akim@epita.fr>
13585         * aclang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Try to be robust to
13586         preexisting files matching a.*.
13588 2001-06-23  Akim Demaille  <akim@epita.fr>
13590         * acgeneral.m4 (_AC_ARG_VAR_VALIDATE): Output error messages on
13591         stderr.
13592         * doc/autoconf.texi (AC_ARG_VAR): Update.
13594 2001-06-21  Akim Demaille  <akim@epita.fr>
13596         * acgeneral.m4 (_AC_ARG_VAR_VALIDATE): Die instead of warning when
13597         precious variables have changed.
13598         * tests/torture.at (AC_ARG_VAR): Adjust.
13600 2001-06-21  Akim Demaille  <akim@epita.fr>
13602         ./configure --program-suffix=foo produces `transform=s,$$,foo,;',
13603         but some sed choke on multiple `;', and other tools (e.g.,
13604         Automake), include the separator themselves.
13606         * acgeneral.m4 (AC_ARG_VAR): Be sure not to leave extra `;'.
13608 2001-06-19  Tim Van Holder  <tim.van.holder@pandora.be>
13610         * doc/autoconf.texi (Functions Portability): Rename as...
13611         (Function Portability): this.
13612         (Function Portability): Document potential problems with unlink().
13614 2001-06-19  Paul Eggert  <eggert@twinsun.com>
13616         * NEWS, doc/autoconf.texi: Document quadrigraphs.
13618 2001-06-18  Akim Demaille  <akim@epita.fr>
13620         * acfunctions.m4 (AC_FUNC_FORK): Fix typos.
13622 2001-06-18  Ruediger Kuhlmann  <info@ruediger-kuhlmann.de>
13624         * acfunctions.m4: (AC_FUNC_VFORK) rename as...
13625         (_AC_FUNC_VFORK): this.
13626         Remove AC_DEFINEs and don't guess cross-compilation values.
13627         (_AC_FUNC_FORK): New, check whether fork() isn't just a stub.
13628         (AC_FUNC_FORK): New, use _AC_FUNC_VFORK and _AC_FUNC_FORK to
13629         define HAVE_WORKING_FORK, HAVE_WORKING_VFORK; and vfork to fork if
13630         vfork doesn't work.
13631         Guess values if cross-compiling, but warn.
13632         * acfunctions: Add AC_FUNC_FORK.
13633         * doc/autoconf.texi: Document AC_FUNC_FORK. Give example to define
13634         and vfork appropriately.
13636 2001-06-18  Akim Demaille  <akim@epita.fr>
13638         * doc/autoconf.texi (Functions Portability): New section.
13640 2001-06-18  Akim Demaille  <akim@epita.fr>
13642         * autoconf.in (M4): Pass --nesting-limit=1024, unless already set
13643         in $M4.
13644         Suggested by Andreas Schwab.
13646 2001-06-18  Akim Demaille  <akim@epita.fr>
13648         * acfunctions.m4 (AC_FUNC_CHOWN, AC_FUNC_CLOSEDIR_VOID)
13649         (AC_FUNC_GETPGRP, AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK)
13650         (AC_FUNC_MMAP, AC_FUNC_SELECT_ARGTYPES, _AC_FUNC_STAT)
13651         (AC_FUNC_UTIME_NULL): Use AC_INCLUDES_DEFAULT.
13652         Don't use AC_TRY_RUN, which double quotes, prefer AC_RUN_IFELSE,
13653         and either AC_LANG_SOURCE or AC_LANG_PROGRAM.
13654         (AC_FUNC_CLOSEDIR_VOID): Protect C++ from `int closedir ();' (or
13655         the converse).
13657 2001-06-18  Akim Demaille  <akim@epita.fr>
13659         * doc/autoconf.texi (ms): New index.
13660         (Macro Index): Rename as...
13661         (Autoconf Macro Index): this.
13662         (M4 Macro Index): New appendix.
13663         (Programming in M4): New chapter.
13664         Define M4sugar, M4sh, m4_pattern_forbid, and m4_pattern_allow.
13665         (Quoting): Rename as...
13666         (M$ Quotation): this.
13667         Be part of `Programming in M4).
13669 2001-06-18  Nicolas Joly  <njoly@pasteur.fr>
13671         * tests/torture.at (AC_ARG_VAR): Set variables and export them
13672         in separate statements for compatibility with Tru64 v5.1.
13674 2001-06-17  Akim Demaille  <akim@epita.fr>
13676         * acgeneral.m4 (_AC_ARG_VAR_VALIDATE): Be sure to cache the
13677         current values of the precious variables, not the previously
13678         cached values.
13679         Pass precious variables which are set to config.status.
13680         * doc/autoconf.texi (Setting Output Variables): Document AC_ARG_VAR.
13681         * tests/torture.at (AC_ARG_VAR): New.
13683 2001-06-15  Paul Eggert  <eggert@twinsun.com>
13685         * doc/autoconf.texi: Move AC_FUNC_WAIT3 and
13686         AC_SYS_RESTARTABLE_SYSCALLS to the obsolete section,
13687         and explain why and how to replace them.
13688         * acfunctions.m4 (AC_FUNC_WAIT3): Warn as obsolete.
13689         * acspecific.m4 (AC_SYS_RESTARTABLE_SYSCALLS): Likewise.
13691 2001-06-15  Akim Demaille  <akim@epita.fr>
13693         `build_alias', `host_alias', and `target_alias' are not AC_SUBST'd.
13694         Reported by Bruno Haible.
13696         * acgeneral.m4 (AC_ARG_VAR): Move the AC_SUBST, from here...
13697          (_AC_ARG_VAR_PRECIOUS): to here.
13699 2001-06-15  Pavel Roskin  <proski@gnu.org>
13701         * acheaders.m4 (_AC_CHECK_HEADER_DIRENT): Instead of defining
13702         an unused pointer use cast to this type and `if' statement to
13703         avoid warnings from the compiler.
13704         (AC_HEADER_TIME): Likewise.
13705         * actypes.m4 (AC_CHECK_MEMBER): s/foo/ac_aggr/. Use the member
13706         in `if' statement to avoid warnings from the compiler. Declare
13707         ac_aggr static to avoid the need to initialize it.
13709 2001-06-14  Akim Demaille  <akim@epita.fr>
13711         * doc/autoconf.texi (Portable Shell): Move to follow `Writing
13712         Macros'.
13714 2001-06-13  Akim Demaille  <akim@epita.fr>
13716         * m4/missing.m4, config/missing: Updated to Automake 1.4g's.
13717         Suggested by Alexander Mai.
13719 2001-06-13  Akim Demaille  <akim@epita.fr>
13721         * acgeneral.m4 (_AC_INCLUDES_DEFAULT_REQUIREMENTS): Guard
13722         sys/types.h and sys/stat.h, and check for them.
13724 2001-06-13  Akim Demaille  <akim@epita.fr>
13726         * acheaders.m4 (AC_CHECK_HEADER, AC_CHECK_HEADERS): Support $4 =
13727         INCLUDES.
13729 2001-06-12  Maciej W. Rozycki  <macro@ds2.pg.gda.pl>
13731         * acspecific.m4 (AC_PATH_XTRA): Check if linking against libX11
13732         succeeds and only try adding libdnet upon a failure.
13734 2001-06-12  Akim Demaille  <akim@epita.fr>
13736         * autoscan.in (&output_kind): Output the comment only if it exists.
13737         (%kind_comment): Add entry for `programs'.
13738         (&output_programs): Use &output_kind.
13739         (&output_functions, &output_identifiers, &output_headers)
13740         (&output_programs): Inline, and remove.
13742 2001-06-12  Akim Demaille  <akim@epita.fr>
13744         * autoscan.in (%kind_comment): New.
13745         (output_kind): New.
13746         (output_functions, output_identifiers, output_headers): Use it.
13748 2001-06-12  Akim Demaille  <akim@epita.fr>
13750         * autoscan.in (&print_unique): Take `$kind' and `$word' as
13751         arguments, to factor indirections into `%macro' and `%used'.
13752         (%generic_macro): Fix a typo.
13754 2001-06-12  Akim Demaille  <akim@epita.fr>
13756         * aclibraries: New.
13757         * autoscan.in (@kinds): Add `libraries'.
13758         Use `@kinds' instead of hard coded lists.
13759         (%programs, %headers, %identifiers, %makevars, %libraries, %functions):
13760         Remove, replaced by...
13761         (%used): this.
13763 2001-06-12  Akim Demaille  <akim@epita.fr>
13765         * autoscan.in (%functions_macros %headers_macros)
13766         (%identifiers_macros %programs_macros %makevars_macros): Remove,
13767         replaced by...
13768         (%macro): New.
13770 2001-06-11  Raja R Harinath  <harinath@cs.umn.edu>
13772         * aclang.m4 (AC_NO_EXECUTABLES): Override
13773         _AC_COMPILER_EXEEXT_WORKS, not _AC_LANG_COMPILER_WORKS.
13775 2001-06-11  Akim Demaille  <akim@epita.fr>
13777         * aclang.m4 (AC_NO_EXECUTABLES): Define the macros with their
13778         trailing new line.
13779         Reported by Andreas Schwab.
13781 2001-06-11  Akim Demaille  <akim@epita.fr>
13783         * Makefile.am, Makefile.maint: Typos.
13785 2001-06-09  Akim Demaille  <akim@epita.fr>
13787         * doc/autoconf.texi (Here-Documents): New section, gathering
13788         documentation about here-documents.
13789         Use `href', not `uref', and other changes.
13791 2001-06-09  Akim Demaille  <akim@epita.fr>
13793         * doc/autoconf.texi (Portable Shell Programming): Promoted as a
13794         chapter.
13796 2001-06-09  Akim Demaille  <akim@epita.fr>
13798         * doc/autoconf.texi (Limitations of Builtins): Complete the
13799         description of the here-docs penalties with Alexandre Oliva's
13800         explanations.
13802 2001-06-01  Paul Eggert  <eggert@twinsun.com>
13804         * doc/autoconf.texi: Talk about here documents and speedups.
13805         Do not use "echo" on arbitrary strings.
13806         Spell "here-documents" consistently with the standard.
13808 2001-06-09  Akim Demaille  <akim@epita.fr>
13810         * doc/autoconf.texi (Concept Index): Introduce it.
13811         Regenerate the menus.
13813 2001-06-09  Akim Demaille  <akim@epita.fr>
13815         * Makefile.maint, GNUmakefile: New, from Jim Meyering.
13816         * config/prev-version.txt: New.
13817         * config/move-if-change: New, for GNU libc.
13819 2001-06-06  Pavel Roskin  <proski@gnu.org>
13821         * tests/atgeneral.m4 (AT_INIT): Remove "/bin/sh" after $SHELL.
13823 2001-06-06  Akim Demaille  <akim@epita.fr>
13825         * acgeneral.m4 (AC_CHECK_LIB): Fix the cache var name to work
13826         properly when $1 is not a literal.
13827         Fixes PR Autoconf/187, reported by Bram Moolenaar.
13829 2001-06-06  Akim Demaille  <akim@epita.fr>
13831         Invoking AC_COPYRIGHT before AC_INIT fails.
13833         * Makefile.am (.m4.m4f): Pass --fatal-warnings to m4.
13834         * acgeneral.m4 (_m4_divert(VERSION_FSF))
13835         (_m4_divert(VERSION_USER)): New.
13836         (AC_COPYRIGHT): $2 is the diversion to use.
13837         (_AC_INIT_COPYRIGHT): Use the FSF diversion.
13838         (AC_INIT): Remove dead comments as now it's commutative.
13840 2001-06-06  Akim Demaille  <akim@epita.fr>
13842         * tests/semantics.at (AC_CHECK_LIB): Strengthen to reflect
13843         PR autoconf/187.
13845 2001-06-05  Akim Demaille  <akim@epita.fr>
13847         * acgeneral.m4 (_AC_INIT_PARSE_ARGS): `prefix' and `exec_prefix'
13848         can be empty.
13849         `*dir' variables cannot be NONE.
13850         Reported by Mark Kettenis.
13852 2001-06-05  Paul Eggert  <eggert@twinsun.com>
13854         * doc/autoconf.texi: Fix references to Solaris and SunOS versions.
13856 2001-06-04  Akim Demaille  <akim@epita.fr>
13858         * acgeneral.m4 (AC_VAR_SET, AC_VAR_GET, AC_VAR_TEST_SET)
13859         (AC_VAR_SET_IFELSE, AC_VAR_PUSHDEF and AC_VAR_POPDEF, AC_TR_CPP)
13860         (AC_TR_SH): Move as...
13861         * m4sh.m4 (AS_VAR_SET, AS_VAR_GET, AS_VAR_TEST_SET)
13862         (AS_VAR_SET_IF, AC_VAR_PUSHDEF, AS_VAR_POPDEF, AS_TR_CPP)
13863         (AS_TR_SH): these.
13864         (_AS_TR_PREPARE, _AS_CR_PREPARE, _AS_TR_CPP_PREPARE)
13865         (_AS_TR_SH_PREPARE): New.
13866         (AS_SHELL_SANITIZE): Invoke _AS_TR_PREPARE.
13867         * tests/aclocal.m4 (AC_STATE_SAVE): `as_' vars can be modified.
13869 2001-06-02  Akim Demaille  <akim@epita.fr>
13871         * Makefile.am (.m4.m4f): Pass the options first.
13872         Fixes PR autoconf/182.
13874 2001-06-02  Nathan Sidwell  <nathan@codesourcery.com>
13876         GNU getopt, when POSIXLY_CORRECT does not permute options and
13877         arguments.  So pass the options first.
13878         Fixes PR autoconf/184.
13880         * autoconf.sh (m4_prefiles, m4f_prefiles): New variables.
13881         (run_m4): Remove files.
13882         (run_m4f): Remove.
13883         Update remainder of script to use them.
13884         (for warning in): Do not use a literal comma as it will not be
13885         split by IFS.
13887 2001-06-02  Christian Marquardt  <marq@gfz-potsdam.de>
13889         * aclang.m4 (AC_PROG_F77): Add Fujitsu's "frt" to the list of
13890         Fortran compilers to check.
13891         (_AC_PROG_F77_V): Add '-###' as a possible option to print
13892         information on library and object files.
13893         (AC_PROG_CXX): Add Fujitsu's "FCC" to the list of C++ compilers
13894         to check.
13896 2001-06-02  Akim Demaille  <akim@epita.fr>
13898         * autom4te.in (Request::@request): Declare with `vars', not `my',
13899         as it prevents updates via `do FILENAME'.
13901 2001-06-02  Akim Demaille  <akim@epita.fr>
13903         * configure.in (standards_texi): Remove, dead code.
13905 2001-06-02  Akim Demaille  <akim@epita.fr>
13907         * autom4te.in: New.
13909 2001-06-02  Pavel Roskin  <proski@gnu.org>
13911         * acgeneral.m4 (_AC_INIT_PREPARE): Don't rely on $? in the traps
13912         for signals other than 0 - exit with code 1.
13913         * m4sh.m4 (AS_TMPDIR): Likewise.
13914         * autoconf.in: Likewise. Also don't rely on exit == exit $?.
13915         * autoheader.in: Likewise.
13916         * autoreconf.in: Likewise.
13917         * tests/torture.at (Signal handling): New test for the above.
13919 2001-06-01  Akim Demaille  <akim@epita.fr>
13921         * m4sugar.m4 (m4_defn, m4_undefine, m4_popdef): Clarify the error
13922         message.
13924 2001-05-31  Akim Demaille  <akim@epita.fr>
13926         * acfunctions, acheaders, acidentifiers, acmakevars, acprograms:
13927         Add copyright and comments.
13928         * acheaders: Add stdint.h.
13929         Suggested by Paul Eggert.
13931 2001-05-31  Akim Demaille  <akim@epita.fr>
13933         * atgeneral.m4 (AT_INIT): Use $SHELL.
13934         * atspecific.m4 (AT_CHECK_DEFINES): Skip HAVE_STDINT_H.
13936 2001-05-31  Akim Demaille  <akim@epita.fr>
13938         * acgeneral.m4 (_AC_INCLUDES_DEFAULT_REQUIREMENTS): Include
13939         stdint.h.
13940         From Paul Eggert and Lars Hecking.
13942 2001-05-31  Akim Demaille  <akim@epita.fr>
13944         * tests/base.at: Adjust line numbers in error messages.
13946 2001-05-31  Akim Demaille  <akim@epita.fr>
13948         * tests/base.at, tests/m4sh.at: When using AC_PLAIN_SCRIPT be sure
13949         to emit the bangshe line.
13950         Reported by David Carter.
13952 2001-05-30  Steven G. Johnson  <stevenj@alum.mit.edu>
13954         * aclang.m4 (AC_PROG_F77): Add Compaq's "fort" to the list of
13955         Fortran (95) compilers to check.
13957 2001-05-29  Alexandre Duret-Lutz  <duret_g@epita.fr>
13959         * doc/autoconf.texi (Introduction, Pointers): Update the Autoconf
13960         Macro Archive URL.
13962 2001-05-23  Pavel Roskin  <proski@gnu.org>
13964         * aclang.m4 (AC_PROG_CPP): Use `break' instead of `break 2' since
13965         _AC_PROG_PREPROC_WORKS_IFELSE expands arguments outside the loop.
13966         (AC_PROG_CXXCPP): Likewise.
13968 2001-05-22  Akim Demaille  <akim@epita.fr>
13970         * config: New directory.
13971         * configure.in: AC_CONFIG_AUX_DIR it.
13972         * tests/atspecific.m4 (AT_CONFIGURE_AC): Adjust.
13974 2001-05-22  Akim Demaille  <akim@epita.fr>
13976         * autoconf.in, autoreconf.in, autoheader.in, autoscan.in, ifnames.in,
13977         * autoupdate.in: Specify the Emacs mode.
13978         * acversion.m4.in: Rename as...
13979         * acversion.m4: this.
13980         * tests/Makefile.am (CLEANFILES): More garbage.
13982 2001-05-22  Akim Demaille  <akim@epita.fr>
13984         * autoconf.sh, autoreconf.sh, autoheader.sh, autoscan.pl, ifnames.sh:
13985         Rename as...
13986         * autoconf.in, autoreconf.in, autoheader.in, autoscan.in, ifnames.in:
13987         these.
13989 2001-05-21  Akim Demaille  <akim@epita.fr>
13991         * configure.in: Bump to 2.50a.
13994         -----
13996         Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007 Free
13997         Software Foundation, Inc.
13999         Copying and distribution of this file, with or without
14000         modification, are permitted provided the copyright notice and this
14001         notice are preserved.