* doc/autoconf.texi: Be more consistent about using @acronym with
[autoconf/tsuna.git] / ChangeLog
blobf0c114a049fde6fe0920c5f4421a2f8a65ed96af
1 2006-06-28  Paul Eggert  <eggert@cs.ucla.edu>
3         * doc/autoconf.texi: Be more consistent about using @acronym with
4         "HP" and "HP-UX".  Remove mention of OSF; the old version wasn't
5         quite right (it talked about "OSF/Tru64", even though the
6         operating systems were called OSF/1, Digital UNIX, and Tru64 UNIX,
7         and it even mentioned "OSF 4"!) and at this point there's little
8         reason to talk about OSF any more, since it died in 1994.
9         (Specific Compiler Characteristics): Simplify example of
10         negative-size array.
11         (File Descriptors): Reorder to make the text flow better.
12         Remove joke about "appreciate the various levels"; I didn't get it.
13         Add remark about HP-UX sh -x bug with stderr noted by Bob Proulx in
14         <http://lists.gnu.org/archive/html/bug-coreutils/2006-06/msg00225.html>.
15         (File Descriptors, Limitations of Usual Tools):
16         Tone down the advice against renaming or removing open files.
17         (Limitations of Usual Tools): Add a new section, on 'rm'.
19 2006-06-26  Stepan Kasal  <kasal@ucw.cz>
21         * lib/autoconf/libs.m4 (_AC_PATH_X_DIRECT): Use -lX11, not
22         -lXt in LIBS, idea from Karsten Hopp; this was due since
23         this change:
25         2005-09-18  Paul Eggert  <eggert@cs.ucla.edu>
26         * lib/autoconf/libs.m4 (_AC_PATH_X_DIRECT): Look for X11/Xlib.h
27         and XrmInitialize rather than X11/Intrinsic.h and XtMalloc
28         (which belong to Xt, not X itself).  See Debian bug 327655.
30 2006-06-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
32         * configure.ac (AC_INIT): Bump to 2.60a.
33         * NEWS: Update.
35 2006-06-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
37         Version 2.60.
39         * configure.ac, NEWS: Update.
41 2006-06-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
43         * config/texinfo.tex: Sync from upstream.
45         * bin/autom4te.in (handle_traces): Transform the `@S|@'
46         quadrigraph correctly in traces.
48         * NEWS, lib/Autom4te/C4che.pm, lib/autoconf/functions.m4:
49         Fix typos.
51         * lib/autoconf/status.m4 (_AC_OUTPUT_FILE): Expand tests for
52         datarootdir-related errors only if AC_DATAROOTDIR_CHECKED is
53         not defined.
54         * doc/autoconf.texi (Changed Directory Variables): New node,
55         to document the whole `datarootdir' business a bit better.
56         * NEWS: Update.
57         * tests/torture.at (datarootdir workaround): Extend test.
58         Prompted by report by Alexandre Julliard.
60 2006-06-22  Paul Eggert  <eggert@cs.ucla.edu>
62         * lib/autoconf/c.m4 (_AC_PROG_CC_C89): Check for C89 incompatibility
63         when using default mode of IBM C 6 for AIX.  Problem and two-line
64         fix reported by Larry Jones.
66 2006-06-22  Alexandre Julliard <julliard@winehq.org>
68         * lib/autoconf/status.m4 (_AC_OUTPUT_FILE): Avoid warning
69         about literal '${datarootdir}' if a definition is found in the
70         output file.
72 2006-06-20  Paul Eggert  <eggert@cs.ucla.edu>
74         * NEWS: Use "M4" rather than "m4" when appropriate.
75         Problem reported by Eric Blake.
76         * doc/autoconf.texi: Likewise.
77         Use @acronym around BSD, GCC, and GNU when appropriate.
78         (Why GNU M4): Renamed from "Why GNU m4".
79         (Redefined M4 Macros): Mention that Posix
80         m4wrap takes only 1 argument, but GNU M4 1.4.x takes more.
81         (Buffer Overruns): Mention size_t and ptrdiff_t as alternatives
82         to int.
84 2006-06-20  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
86         * bin/autom4te.in (handle_output): Do not forbid the empty
87         pattern.
88         * tests/tools.at (autoconf: the empty token): New test.
90 2006-06-20  Stepan Kasal  <kasal@ucw.cz>
92         * lib/m4sugar/m4sugar.m4 (m4_init): Merge the two m4_wrap
93         calls, so that we do not care whether they are LIFO or FIFO;
94         in the m4_wrap, do not check which diversion is the topmost
95         one, just check that the stack is balanced at the end.
96         * lib/m4sugar/m4sh.m4 (AS_INIT): We are going to change the
97         base diversion forever--pop the previous diversion before
98         opening the new one; consequently, remove the m4_wrap call.
99         * lib/autotest/general.m4 (AT_INIT): Likewise.
100         * tests/m4sugar.at: Do not use
101         m4_wrap([m4_diversion_pop([..])]), for educational purposes.
103 2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
104         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
106         * NEWS: Document that m4wrap/m4_wrap might not be LIFO.
107         * doc/autoconf.texi (Redefined M4 Macros): Likewise.
108         Rework example of m4wrap token-pasting trouble so that it doesn't
109         care whether it's LIFO or FIFO.
110         Fix some "contrary to"s that are awkward in English.
112 2006-06-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
114         * lib/autoconf/types.m4 (_AC_TYPE_INT): Set `$ac_cv_c_int$1_t'
115         to `yes' instead of `int$1_t' if the type is found, for more
116         consistent configure output (where $1 is the number of bits).
117         (_AC_TYPE_UINT): Likewise for `uint$1_t'.
118         Suggested by Bruno Haible.
120         * lib/autoconf/types.m4 (_AC_TYPE_UNSIGNED_INT): Solaris 2.5.1
121         needs _UINT8_T and _UINT64_T defines as well, to avoid clashes
122         with system headers.  Report by Bruno Haible.
124 2006-06-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
126         * config/config.guess, config/config.sub: Sync from upstream.
128         * bin/Makefile.am (autoconf.in): Use `--melt' for autom4te,
129         in order to avoid picking up an older installed frozen m4sh.m4f.
130         Besides an outdated shell startup, this could have been created
131         by an earlier M4 version with incompatible frozen file format.
133 2006-06-16  Paul Eggert  <eggert@cs.ucla.edu>
135         * README: Recommend m4 1.4.4 instead of 1.4.3..
136         * doc/autoconf.texi: Likewise.
137         (Special Chars in Names): Say that $(.FOO) is portable, as
138         suggested by Stepan Kasal.
139         (Installation Directory Variables, Build Directories):
140         (Automatic Remaking, Subdirectories, Fortran Compiler):
141         (Making testsuite Scripts, Defining Directories):
142         Quote variable usages better.
143         (Making testsuite Scripts): Add clean-local rule to makefile
144         snippet, by Eric Blake.
145         (Installation Directory Variables): Fix table item font.
146         Reword slightly to clarify.  Generalize advice about
147         not using special characters to include all file-related
148         vars, not just VPATH.
149         (Special Chars in Variables): Warn about special characters in
150         $(srcdir) too.
151         (Assignments): Clarify default-value example as suggested by
152         Ralf Wildenhues in
153         <http://lists.gnu.org/archive/html/autoconf-patches/2006-06/msg00072.html>.
154         (Special Shell Variables): Note leading ./ or ../, as suggested
155         by Eric Blake.
156         (Limitations of Builtins): Under cd, warn about CDPATH.
157         (The Make Macro MAKEFLAGS): Untabify.  Problem reported by
158         Ralf Wildenhues.
160 2006-06-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
162         * doc/autoconf.texi (Configuration Actions): Remove duplicate
163         `@var', for texi2html.
164         (Systemology): Some more word wrapping, for DVI output.
165         (autom4te Invocation): The short option for `--melt' is `-M',
166         not `-m'.
168 2006-06-15  Paul Eggert  <eggert@cs.ucla.edu>
170         * doc/autoconf.texi: More formatting and English tweaks,
171         many suggested by Ralf Wildenhues.
172         Reword to avoid "@code{...}'s" and the like, since it's ugly
173         with Emacs info mode.  discontents -> woes.
174         Put a few "will"s back.  time stamp -> timestamp.
175         side-effect -> side effect.
177 2006-06-14  Paul Eggert  <eggert@cs.ucla.edu>
179         * doc/autoconf.texi (Initializing configure, Shell Substitutions):
180         Warn about $@ not persisting.  Problem reported by Julien Danjou in
181         <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=372179>.
182         (Special Chars in Names): Renamed from Leading _ in Macro Names.
183         Mention other special chars, too.
185 2006-06-14  Eric Blake  <ebb9@byu.net>
187         * doc/autoconf.texi (The Make Macro MAKEFLAGS): New node.
189 2006-06-13  Paul Eggert  <eggert@cs.ucla.edu>
191         * doc/autoconf.texi: Some systematic minor improvements, as
192         follows.  Use "makefile" when talking about makefiles
193         generally (which might be named "makefile" or "Makefile" or even
194         "foo.mk"), "Makefile" when talking about a specific makefile
195         called "Makefile".  This unclutters the text from weird quotes
196         (e.g., "`Makefile's" in info mode).  Similarly, use "@var{foo}
197         values" rather than "@var{foo}s" and similar constructs containing
198         "}s".  Use "Make rules" rather than "Makefile rules".  Minor
199         English-language improvements.  Change the prefix "sub-" to "sub"
200         and "re-" to "re".
201         Put blank lines around examples more consistently.
202         Avoid "rather" and "very" as intensifiers.
203         Avoid "will" as an auxiliary.
204         (Limitations of Make): Split this node into....
205         (Portable Make, $< in Ordinary Make Rules, Failure in Make Rules):
206         (Leading _ in Macro Names, Backslash-Newline-Newline):
207         (Backslash-Newline Comments, Long Lines in Makefiles):
208         (Macros and Submakes, The Make Macro SHELL, Comments in Make Rules):
209         (obj/ and Make, make -k Status, VPATH and Make):
210         (VPATH and Double-colon, $< in Explicit Rules):
211         (Automatic Rule Rewriting, OSF/Tru64 Directory Magic):
212         (Make Target Lookup, Single Suffix Rules, Timestamps and Make):
213         New nodes, resulting from splitup of Limitations of Make.
214         All cross-references changed.  Raise the top node from
215         a section to a chapter, and all subnodes accordingly.
216         Redo the introductory wording to match the new organization.
217         (Installation Directory Variables): Use an example that is
218         closer to what Autoconf actually does.  Mention that VPATH's
219         value should not contain metacharacters or white space.
220         (Fortran Compiler): Fix a VPATH bug in an example.
221         (Leading _ in Macro Names): Mention that this problem is no longer
222         of practical concern.
223         (VPATH and Make): Reword the advice to make it clearer
224         that Autoconf and Automake support VPATH in non-GNU make, but
225         many packages have bugs in this area.
226         ($< in Explicit Rules): Refer to Build Directories rather
227         than using a (non-VPATH-safe) example.
228         (Automatic Rule Rewriting): Mention the sort of disaster that
229         can ensue with Solaris-style rule rewriting with VPATH.
231 2006-06-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
233         * doc/install.texi (Compilers and Options): Weaken the
234         suggestion to use GNU make for VPATH builds.
236         * lib/autom4te.in (Automake-preselections): Add AM_PROG_CXX_C_O,
237         AM_PROG_F77_C_O, AM_PROG_FC_C_O, AC_FC_SRCEXT, AC_FC_FREEFORM.
239         * lib/autoconf/programs.m4 (AC_PROG_MAKE_SET): Fix M4 quotation
240         in regular expression.
242 2006-06-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
244         * doc/autoconf.texi (Installation Directory Variables):
245         Drop extra @samp from `@table @samp' item.
246         (Limitations of Usual Tools): Comment fix.
247         Do not nest @samp just to point to other table items.
248         (Writing testsuite.at) <AT_CHECK>: The second argument to
249         `@dvar' is already @samp'ed.
250         (Making testsuite Scripts) <AC_CONFIG_TESTDIR>: Likewise,
251         do not use @var in the second argument.
253 2006-06-07  Paul Eggert  <eggert@cs.ucla.edu>
255         * lib/m4sugar/m4sh.m4 (_AS_DETECT_BETTER_SHELL): Look for
256         $as_shell.exe too.  Problem reported by Andreas Buening in
257         <http://lists.gnu.org/archive/html/autoconf/2006-06/msg00038.html>.
259 2006-06-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
261         * lib/autoconf/functions.m4 (AC_FUNC_ALLOCA): Work around
262         `unused variable' compiler warning, for `-Wall -Werror'.
263         Reported by Jaap Haitsma in
264         <http://lists.gnu.org/archive/html/bug-autoconf/2006-06/msg00012.html>.
266 2006-06-06  Paul Eggert  <eggert@cs.ucla.edu>
268         * lib/autoconf/c.m4 (AC_PROG_CC_C_O): Remove core file, in
269         case the compiler dumps core.  Problem reported for
270         OpenServer 5.0.7 by Tim Rice in
271         <http://lists.gnu.org/archive/html/bug-autoconf/2006-06/msg00019.html>.
272         * lib/autoconf/general.m4 (_AC_COMPILE_IFELSE, _AC_LINK_IFELSE):
273         Likewise.
275 2006-06-06  Tim Rice <tim@multitalents.net>.
277         * lib/freeze.mk: Quiet check-forbidden-patterns so the string
278         "ERROR" only shows up in "make check" output if there is an
279         error.
281 2006-06-06  Eric Blake  <ebb9@byu.net>
283         * tests/tools.at (automatically allowed tokens): Fix typo.
285 2006-06-05  Paul Eggert  <eggert@cs.ucla.edu>
287         * NEWS: Don't blame non-GNU VPATH compatibility issues on Automake.
289         * doc/autoconf.texi (Integer Overflow): Mention that INT_MIN % -1
290         typically overflows on x86 CPUs, even though the C standard
291         requires otherwise.
293 2006-06-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
295         * configure.ac (AC_INIT): Bump to 2.59e.
296         * NEWS: Update.
298 2006-06-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
300         Version 2.59d.
302         * config/texinfo.tex: Sync from upstream.
304         * bin/autoreconf.in: Trace `LT_CONFIG_LTDL_DIR'; if it has been
305         seen, invoke libtoolize with `--ltdl' argument.
306         * lib/autom4te.in (Autoreconf-preselections): Adjust.
307         * NEWS: Update.
308         Suggested by Eric Blake.
310 2006-06-05  Paul Eggert  <eggert@cs.ucla.edu>
312         * NEWS: Whoops!  AC_FUNC_STRNLEN isn't obsolescent.  Problem
313         reported by Ralf Wildenhues.
314         * doc/autoconf.texi (AC_FUNC_STRNLEN): Likewise.
316 2006-06-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
318         * THANKS: Update.
320 2006-06-05  Paul Eggert  <eggert@cs.ucla.edu>
322         * doc/autoconf.texi: Modernize some of the references to Solaris.
324 2006-06-05  Stepan Kasal  <kasal@ucw.cz>
326         * lib/m4sugar/m4sugar.m4 (m4_require): Modify the error
327         message issued by AC_REQUIRE.
328         * tests/m4sugar.at: Check m4_require's error message.
329         * tests/base.at: Check AC_REQUIRE's error message.
330         * tests/local.at (AT_CHECK_M4): New macro, almost identical
331         to...
332         (AT_CHECK_AUTOM4TE): ... which is now a thin wrapper around
333         AT_CHECK_M4.
334         (AT_CHECK_AUTOCONF): Use AT_CHECK_M4; no longer support
335         `expout' as the last parameter.
336         * tests/tools.at: Adapt to the above change.
338 2006-06-04  Stepan Kasal  <kasal@ucw.cz>
340         * doc/autoconf.texi (Limitations of Usual Tools): Correct
341         information about race-free implementations of mkdir.
343 2006-06-04  Eric Blake  <ebb9@byu.net>
345         * bin/autoreconf.in (help): Document M4 environment variable.
346         * bin/autoconf.as (Usage): Likewise.
347         * bin/autom4te.in (help): Likewise.
348         * doc/autoconf.texi (autom4te Invocation): Likewise.
350 2006-06-04  Paul Eggert  <eggert@cs.ucla.edu>
352         * NEWS: GNU make now recommended for VPATH builds.
353         Mention that some macros are now documented to be obsolescent.
354         * doc/autoconf.texi:
355         Prefer "current" to "modern" to describe
356         currently-used (albeit perhaps old-fashioned) hosts.
357         Mention which ancient features no longer need to be worried about.
358         setgid -> set-group-ID
359         setuid -> set-user-ID (these are the Posix terms)
360         Fix some misuses of "only".
361         (AC_C_BACKSLASH_A, AC_C_CONST, AC_C_PROTOTYPES):
362         (AC_C_STRINGIZE, AC_C_VOLATILE, AC_FUNC_CLOSEDIR_VOID):
363         (AC_FUNC_GETPGRP, AC_FUNC_LSTAT, AC_FUNC_MEMCMP):
364         (AC_FUNC_SELECT_ARGTYPES, AC_FUNC_SETPGRP):
365         (AC_FUNC_SETVBUF_REVERSED, AC_FUNC_STAT, AC_FUNC_STRFTIME):
366         (AC_FUNC_STRNLEN, AC_FUNC_UTIME_NULL, AC_FUNC_VPRINTF):
367         (AC_HEADER_DIRENT, AC_HEADER_STAT, AC_HEADER_STDC):
368         (AC_HEADER_SYS_WAIT, AC_HEADER_TIME, AC_ISC_POSIX):
369         (AC_PROG_GCC_TRADITIONAL, AC_STRUCT_TM):
370         Mention that these macros are obsolescent.
371         (Installation Directory Variables): shall -> should
372         (File Descriptors): Mention that 0, 1, 2 might get reopened.
373         Mention that it's now safe to use 3 and 4.
374         (Limitations of Usual Tools): cp -r is now specified by Posix.
375         Omit longwinded and obsolescent discussion of cp -f.
376         Modernize discussion of expr, ls.
377         (Limitations of Make): Modernize discussion of VPATH builds.
378         Mention $? as a workaround in some cases.
379         * doc/install.texi (Basic Installation):
380         Mention "./configure; make; make install" first.  Be more
381         specific about why this file is generic.  Remove unnecessary
382         parens.  Remove misleading "only".  Remove obsolete advice
383         about csh.  Don't say "configure" takes awhile; say it
384         might take a while.  Suggest CFLAGS=-g rather than CFLAGS=-O2,
385         and CC=c99 rather than CC=c89, as these are blessed by current
386         Posix.  Recommend GNU make if doing a VPATH build.
388 2006-06-03  Paul Eggert  <eggert@cs.ucla.edu>
390         * doc/autoconf.texi: Use a consistent style "$ @kbd{...}" for
391         examples involving shell prompts.
393 2006-06-02  Stepan Kasal  <kasal@ucw.cz>
394         and Paul Eggert  <eggert@cs.ucla.edu>
396         * doc/autoconf.texi (Here-Documents): Add details about the
397         pre-ksh93g bug.  Reword slightly to make it clearer.  Consistently
398         use "here-documents" instead of "here documents".
400 2006-06-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
402         * config/texinfo.tex, doc/standards.texi: Sync from upstream.
404 2006-06-01  Paul Eggert  <eggert@cs.ucla.edu>
406         * doc/autoconf.texi (File System Conventions): Warn about ":"
407         anywhere in directory names.
409 2006-05-31  Paul Eggert  <eggert@cs.ucla.edu>
411         * lib/autoconf/general.m4 (_AC_DO_ECHO): Be even more conservative
412         about quoting the case statement, just in case.
413         * doc/autoconf.texi (Here-Documents): Mention that the ksh bug
414         was fixed in ksh93g; reported by Ralf Wildenhues.
416 2006-05-31  Stepan Kasal  <kasal@ucw.cz>
418         * doc/autoconf.texi (System Services): Do not document
419         overriding EXEEXT via ac_cv_exeext=ext.
420         (Particular Programs) <AC_PROG_MKDIR_P>:
421         Document that ${MKDIR_P} understands --.
422         * lib/autoconf/programs.m4 (AC_PROG_MKDIR_P): Improve the
423         comment.
425 2006-05-31  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
427         * lib/m4sugar/m4sh.m4 (_AS_DIRNAME_PREPARE): Guard against test
428         argument with leading hyphen.  Problem reported by Paul Eggert.
430 2006-05-30  Paul Eggert  <eggert@cs.ucla.edu>
432         * lib/autoconf/general.m4 (_AC_DO_ECHO): Be more conservative
433         about quoting ac_try: quote all of it, if any of it seems suspicious.
434         This means we don't have to worry about ${ or sed any more.
435         Also, double-quote the case statement, to work around misuses via
436         underquoting as reported by Ralf Wildenhues in
437         <http://lists.gnu.org/archive/html/autoconf-patches/2006-05/msg00169.html>.
438         (_AC_EVAL_STDERR): Revert, since evidently some packages rely on this
439         undocumented and dangerous macro.
440         Problem reported by Ralf Wildenhues in
441         <http://lists.gnu.org/archive/html/autoconf-patches/2006-05/msg00168.html>.
443 2006-05-31  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
445         * lib/m4sugar/m4sh.m4 (_AS_DIRNAME_PREPARE): Check whether
446         `dirname -- /' returns `/', for SunOS dirname scripts that escaped.
447         Report by Sam Sirlin <sam@kalessin.jpl.nasa.gov>.
449 2006-05-30  Paul Eggert  <eggert@cs.ucla.edu>
451         * lib/autoconf/general.m4: Revert AC_TRY_EVAL and AC_TRY_COMMAND,
452         since evidently some packages rely on the old, broken behavior.
453         Problem reported by Ralf Wildenhues in
454         <http://lists.gnu.org/archive/html/autoconf-patches/2006-05/msg00160.html>.
455         (AC_TRY_EVAL, AC_TRY_COMMAND, _AC_EVAL): Go back to the
456         pre-2006-05-26 definitions, but leave in the comments that
457         these macros are dangerous and should not be used.
458         (_AC_DO_ECHO): Renamed from _AC_EVAL_ECHO.  All callers changed.
459         (_AC_DO): Renamed from _AC_EVAL.  All callers changed.
460         (_AC_DO_STDERR): Renamed from _AC_EVAL_STDERR.  All callers changed.
461         (_AC_DO_VAR): Renamed from AC_TRY_EVAL.
462         (_AC_DO_TOKENS): Renamed from AC_TRY_COMMAND.
464 2006-05-29  Paul Eggert  <eggert@cs.ucla.edu>
466         * lib/autoconf/status.m4 (AC_OUTPUT_MAKE_DEFS): Rewrite to avoid
467         the use of 'tr', since this is our only use of 'tr'.
469 2006-05-29  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
470         and Paul Eggert  <eggert@cs.ucla.edu>
472         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE):
473         Don't assume 'grep' works on long lines, since AIX grep doesn't.
475 2005-05-28  Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
477         * lib/autoconf/status.m4 (_AC_OUTPUT_FILE): Do not use `grep' on
478         the output file in the `${datarootdir}' test.
480 2005-05-28  Stepan Kasal  <kasal@ucw.cz>
481         and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
483         * lib/autoconf/status.m4 (_AC_OUTPUT_FILE): If we have not seen
484         mention of `datarootdir' in the input file(s), but literal
485         `${datarootdir}' in the output file, and we haven't warned yet,
486         then warn as well: the user may have (erroneously) used
487         `AC_SUBST([mydatadir], [$datadir/my])' instead of the correct
488         `AC_SUBST([mydatadir], ['${datadir}/my'])'.
489         * tests/torture.at (datarootdir workaround): Extend this test.
490         * NEWS: Update.
492 2006-05-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
493         and Paul Eggert  <eggert@cs.ucla.edu>
495         * doc/autoconf.texi (autoheader Invocation): The first argument to
496         `AC_DEFINE_UNQUOTED' need not be a literal.  Mention the
497         alternatives and clear up the language a bit.
499 2006-05-27  Paul Eggert  <eggert@cs.ucla.edu>
501         * NEWS: Reword notice for AC_TRY_COMMAND, AC_TRY_EVAL,
502         ac_config_guess, ac_config_sub, ac_configure.
503         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS):
504         Fix typo that prevented an unnecessary space from being removed.
505         Problems reported by Ralf Wildenhues in:
506         http://lists.gnu.org/archive/html/autoconf-patches/2006-05/msg00143.html
508 2006-05-26  Paul Eggert  <eggert@cs.ucla.edu>
510         * doc/autoconf.texi (Particular Programs, Limitations of Usual Tools):
511         Use better wording to talk about AC_PROG_MKDIR_P's thread-safety.
512         Don't use the term "thread-safe" to talk about mkdir race
513         conditions, since the problem is more a process than a thread
514         issue.  Problem reported by Stepan Kasal in:
515         http://lists.gnu.org/archive/html/autoconf-patches/2006-05/msg00088.html
516         * lib/autoconf/programs.m4 (AC_PROG_MKDIR_P): Use code that mimics
517         the test for 'install' more closely.  Look at MKDIR_P first.
518         Look in the PATH, and at /opt/sfw/bin.
519         Look for a 'gmkdir' program as well (Solaris 10 /opt/sfw/bin/gmkdir).
520         Don't bother to try mkdir -p, since we already check mkdir --version;
521         just look at the version number.  (There's no easy way to check
522         for race-free implementations.)
523         * tests/tools.at (autoconf: subdirectories): Adjust to above
524         changes, since MKDIR_P now might end in "/mkdir -p".
526         * doc/autoconf.texi (autoheader Invocation): Mention that the
527         first arg of AC_DEFINE_UNQUOTED must be a literal.
528         Problem reported by Ben Pfaff in
529         <http://lists.gnu.org/archive/html/bug-autoconf/2006-05/msg00090.html>.
531         * NEWS: Mention that AC_TRY_COMMAND and AC_TRY_EVAL may be removed.
532         * doc/autoconf.texi (Special Chars in Variables): New section.
533         (Preset Output Variables): Warn about special chars in CPPFLAGS.
534         (Installation Directory Variables): Quote $(datadir) better.
535         (Limitations of Builtins): Describe some of eval's trickiness.
537         * lib/autoconf/c.m4 (AC_PROG_CC_C_O): Simplify quoting.
538         * lib/autoconf/fortram.m4 (_AC_PROG_FC_V_OUTPUT): Likewise.
539         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Put leading space
540         in front of every arg, not just trailing args.  Quote apostrophes.
541         (_AC_EVAL_ECHO): New macro.
542         (_AC_EVAL, AC_EVAL_STDERR): Use it.  Quote arg of eval.
543         (AC_TRY_EVAL, AC_TRY_COMMAND): Mention that these macros might get
544         removed.
545         (_AC_LINK_IFELSE): Use proper rule for shell continuation lines,
546         exposed by quoting of eval argument.  Put the command on line line
547         so it logs better.
548         * lib/autoconf/libs.m4 (_AC_PATH_X_XMKMF): Use eval more safely.
549         (_AC_PATH_X, AC_PATH_X): Quote more safely.
550         * lib/autoconf/programs.m4 (AC_PROG_MAKE_SET): Use eval more safely.
551         * lib/autoconf/specific.m4 (AC_SYS_LONG_FILE_NAMES): Don't use eval.
552         * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): Minor style change.
553         Handle special chars in prefix, ac_srcdir, ac_aux_dir.
554         Use eval more safely.
555         (_AC_OUTPUT_CONFIG_STATUS): Adjust to above changes.
556         * lib/m4sugar/m4sh.m4 (AS_VAR_GET): Note that this API needs
557         to be replaced.
558         * tests/base.at (AC_TRY_COMMAND): Use proper rule for shell continuation
559         lines, exposed by quoting of eval argument.
561 2006-05-26  Stepan Kasal  <kasal@ucw.cz>
562         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
564         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Drop the
565         initialization of `ac_cv_exeext', do not override it if it was
566         already set, unless it was set to `no', for compatibility with
567         Autoconf-2.13, and comment this.
568         Do not export `ac_cv_exeext', Libtool hasn't needed this for years.
569         (_AC_COMPILER_EXEEXT_DEFAULT): Likewise, do not export it.
570         (_AC_COMPILER_EXEEXT_WORKS, _AC_COMPILER_EXEEXT_CROSS): Typos.
571         * doc/autoconf.texi (Compilers and Preprocessors) <EXEEXT>:
572         Document that this test may be overridden by setting
573         `ac_cv_exeext'.
575 2006-05-26  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
577         Revert these two patches:
579         2006-04-06  Eric Blake  <ebb9@byu.net>
580         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_O): Inside cache
581         check, s/ac_exeext/ac_cv_exeext/.  Fixes regression introduced
582         2006-04-01.
584         2006-04-01  Stepan Kasal  <kasal@ucw.cz>
585         Clean up _AC_COMPILER_EXEEXT* macros.
586         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Don't try to
587           detect exeext, it will be done by _AC_COMPILER_EXEEXT_O; just set
588           ac_file to the name of the default output file and call
589           _AC_COMPILER_EXEEXT_WORKS.  Move the definition of ac_files and the
590           initial `rm' of the candidate files...
591         (_AC_COMPILER_EXEEXT): ... here and simplify them.  Moreover, use
592           the same list in subsequent `rm' calls, and for the temporary
593           redefinition of ac_clean_files; call _AC_COMPILER_OBJEXT at the end,
594           and don't call the other _AC_COMPILER_EXEEXT_* macros directly, use...
595         (_AC_COMPILER_EXEEXT_TESTS): ... this new macro.
596         (_AC_COMPILER_EXEEXT_O): Don't export ac_cv_exeext, it's not needed (or
597           no longer needed) by libtool.  Make it a cache check.
598         (_AC_COMPILER_EXEEXT_CROSS): Remove the comment, it was obviously
599           copied here by mistake.
600         (AC_NO_EXECUTABLES): Redefine _AC_COMPILER_EXEEXT_TESTS, not
601           _AC_COMPILER_EXEEXT.
602         * lib/autoconf/c.m4 (AC_PROG_CC, AC_PROG_CXX, AC_PROG_OBJC): Do not call
603           _AC_COMPILER_OBJEXT directly.
604         * lib/autoconf/fortran.m4 (_AC_PROG_FC): Likewise.
606 2006-05-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
608         * doc/autoconf.texi (Limitations of Usual Tools) < sed (`t')>:
609         Fix description of how the buggy `sed' works.
611 2006-05-25  Noah Misch  <noah@cs.caltech.edu>
613         Sync from Automake:
615         * lib/Autom4te/XFile.pm (lock): Allow EOPNOTSUPP, besides
616         ENOLCK.  Only mention `make -j' when applicable.  Only raise
617         fatal errors when `make -j' is involved.  Improve error message.
619 2006-05-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
621         * doc/autoconf.texi (Here-Documents): We now know more about
622         the variable expansion in here documents bug.
623         Thanks to Tim Rice and Stepan Kasal.
625         * doc/autoconf.texi (Making testsuite Scripts): Add an example
626         how to use TESTSUITEFLAGS.  Suggested by Eric Blake.
628 2006-05-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
630         * tests/autotest.at (Multiline command from M4 expansion):
631         No failure to be expected if the shell quotes newlines in
632         commands in the `set -x' output.  Report by Tim Rice.
633         * THANKS: Update.
635 2006-05-23  Paul Eggert  <eggert@cs.ucla.edu>
637         * lib/autoconf/status.m4 (_AC_OUTPUT_HEADER): Don't use shell
638         expansion in the here-documents used by config.status, as that
639         runs afoul of the Korn shell version M-12/28/93d bug described in
640         the Autoconf manual, and this in turn causes a Coreutils 5.95 build to
641         fail as described by Tim Rice and diagnosed by Ralf Wildenhues in
642         <http://lists.gnu.org/archive/html/bug-autoconf/2006-05/msg00082.html>.
644 2006-05-23  Jim Meyering  <jim@meyering.net>
646         * lib/autoconf/functions.m4 (AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK):
647         Fix typo introduced with 2006-04-02 change.  It reversed the sense
648         of the test.
650 2006-05-23  Paul Eggert  <eggert@cs.ucla.edu>
652         * lib/autoconf/status.m4 (_AC_OUTPUT_HEADER): Simplify ac_dA and
653         ac_dB slightly, to save bytes in the script.
654         Max out at 50 lines, rather than 96; this is more likely
655         (though not guaranteed) to avoid obscure 'sed' failures.
657 2006-05-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
659         * lib/autotest/general.m4 (AT_INIT): UnixWare `tr' may interpret
660         `tr -d -' as bad option argument.  Work around this by deleting
661         an unrelated character.
662         Report by Tim Rice <tim@multitalents.net>.
664 2006-05-22  Paul Eggert  <eggert@cs.ucla.edu>,
665             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>,
666             Stepan Kasal  <kasal@ucw.cz>
668         * doc/autoconf.texi (Particular Programs): Do not promise that
669         we always prefer the GNU version of the program, and that we
670         search according to PATH; both rules can have exceptions.
671         Update description of AC_PROG_GREP, AC_PROG_EGREP, AC_PROG_FGREP,
672         AC_PROG_SED.  Move descriptions of limitations
673         to the Limitations of Usual Tools section.
674         (Limitations of Usual Tools) <sed>: Mention script length
675         limitations with Solaris /usr/ucb/sed.
676         <grep>: Fix wording for empty alternative.  Mention that -c and
677         -l should not be combined, and that -E and -F should not be
678         combined.
680 2006-05-21  Paul Eggert  <eggert@cs.ucla.edu>
681         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
683         * lib/autoconf/programs.m4 (AC_PROG_SED): Catch script length
684         limits in Solaris 8 /usr/ucb/sed by testing a long script.
686 2006-05-22  Stepan Kasal  <kasal@ucw.cz>
688         * doc/autoconf.texi (Defining Symbols): Literal parameter of
689         AC_DEFINE is now passed to m4_pattern_allow.
690         * NEWS: Mention that; likewise for AC_SUBST.
691         * lib/autoconf/general.m4 (AC_DEFINE_TRACE_LITERAL): Pass
692         the parameter to m4_pattern_allow.
693         * tests/tools.at: Add a check for that.
695 2006-05-22  Stepan Kasal  <kasal@ucw.cz>
697         * lib/autoconf/status.m4: Fix typos.
699 2006-05-21  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
701         * lib/autoconf/programs.m4 (_AC_FEATURE_CHECK_LENGTH): Remove
702         only the files that this macro generates.
704 2006-05-21  Paul Eggert  <eggert@cs.ucla.edu>
706         * doc/autoconf.texi (Limitations of Usual Tools) <sed>: For
707         the HP-UX sed limitation of 99 commands, labels do not count.
708         * lib/autoconf/status.m4 (_AC_SED_CMD_LIMIT): Mention that
709         in the comment.
710         (_AC_OUTPUT_HEADER): Revert the change from 2006-05-19.
712 2006-05-21  Paul Eggert  <eggert@cs.ucla.edu>
714         * lib/autoconf/functions.m4 (AC_FUNC_GETMNTENT):
715         Import the following fix from coreutils:
717         2006-01-13  Jim Meyering  <jim@meyering.net>
719         Invoke AC_CHECK_FUNCS(getmntent) unconditionally so that tests of
720         $ac_cv_func_getmntent (e.g., in gl_LIST_MOUNTED_FILE_SYSTEMS) need
721         not double-quote uses of that variable, to accommodate the rare
722         case in which getmntent is available in none of the libraries
723         checked.  This happens at least on FreeBSD 5.0.
725 2006-05-20  Paul Eggert  <eggert@cs.ucla.edu>
727         * lib/autoconf/general.m4 (AC_CONFIG_AUX_DIRS): Bring back
728         ac_config_guess, ac_config_sub, and ac_configure, since evidently
729         some other programs unwisely rely on these undocumented vars.
730         But put in warning comments about them.
731         Problem reported by Ralf Wildenhues in
732         <http://lists.gnu.org/archive/html/autoconf-patches/2006-05/msg00068.html>.
733         * NEWS: Document that these variables are intended to go away.
735 2006-05-20  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
737         * lib/autoconf/c.m4 (AC_PROG_CXX_C_O): Require AC_PROG_CXX,
738         and set the language to C++ (analogous to the equivalent Fortran
739         tests).
741         * lib/autoconf/c.m4 (AC_PROG_CXX_C_O): New macro.
742         * doc/autoconf.texi (C++ Compiler): Document it.
743         * lib/autoconf/fortran.m4 (_AC_PROG_FC_C_O): Adjust comment.
744         * NEWS: Update.
746 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
748         * lib/autoconf/status.m4 (_AC_OUTPUT_HEADER): Fix off-by-one bug
749         that caused config.status to generate 100-command sed scripts; the
750         portable limit is 99.
752 2006-05-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
754         * lib/autoconf/programs.m4 (AC_PROG_MKDIR_P): Name temporary
755         variable `ac_d' instead of `d' to avoid infringing namespace.
756         Report by Ralf Menzel.
758 2006-05-18  Paul Eggert  <eggert@cs.ucla.edu>
760         * lib/autoconf/status.m4 (_AC_OUTPUT_FILE): Don't prepend
761         $ac_top_build_prefix to $MKDIR_P if it's just 'mkdir -p'.
762         * tests/tools.at (autoconf: subdirectories): New test, taken from
763         the corresponding problem report by Ralf Wildenhues in:
764         http://lists.gnu.org/archive/html/autoconf-patches/2006-05/msg00053.html
766         * lib/autoconf/functions.m4 (AC_REPLACE_FNMATCH, AC_FUNC_FNMATCH_GNU):
767         Quote some uses of shell variables if they might suffer unexpected
768         globbing.  This doesn't fix all instances of quoting problems that
769         I found, just the easy ones that look safe.
770         * lib/autoconf/general.m4 (_AC_INIT_SRCDIR, _AC_INIT_HELP):
771         (AC_CONFIG_AUX_DIR, AC_CONFIG_AUX_DIR_DEFAULT, AC_CONFIG_AUX_DIRS):
772         (AC_CANONICAL_BUILD, AC_CANONICAL_HOST, AC_CANONICAL_TARGET):
773         (AC_CACHE_LOAD, AC_CACHE_SAVE): Likewise.
774         * lib/autoconf/libs.m4 (_AC_PATH_X_XMKMF, _AC_PATH_X_DIRECT): Likewise.
775         * lib/autoconf/specific.m4 (AC_SYS_LONG_FILE_NAMES): Likewise.
776         * lib/autoconf/status.m4 (_AC_OUTPUT_LINK, _AC_OUTPUT_SUBDIRS):
777         Likewise.
778         * lib/autotest/general.m4 (_AC_INIT_PARSE_ARGS): Likewise.
779         * lib/m4sugar/m4sh.m4 (_AS_DETECT_BETTER_SHELL): Likewise.
781 2006-05-18  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
783         * bin/autoreconf.in ($help): Reword according to the manual.
784         Suggested by Olly Betts.
786 2006-05-17  Olly Betts  <olly@survex.com>  (tiny change)
787         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
789         * bin/autoreconf.in: Pass the directory argument to
790         `require_configure_ac'.  Fix comment.
791         * tests/torture.at (Configuring subdirectories): Expose this.
792         Reported by Olly Betts.
794 2006-05-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
796         * lib/Automake/Configure_ac.pm, lib/Automake/Channels.pm,
797         lib/Automake/FileUtils.pm, lib/Automake/Struct.pm: Sync from
798         Automake as follows:
800         * lib/Autom4te/Configure_ac.pm (find_configure_ac): Use
801         `$configure_in' instead of `configure.in', to preserve
802         directory component.
804 2006-05-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
806         * config/config.guess, config/config.sub, config/texinfo.tex,
807         doc/make-stds.texi, doc/standards.texi: Sync from upstream.
809 2006-05-14  Paul Eggert  <eggert@cs.ucla.edu>
811         * lib/autoconf/headers.m4 (AC_HEADER_STDBOOL): Fix overly-picky
812         test for C99 conformance; (bool) 0.5 is an integer constant
813         expression, but (bool) -0.5 is not.  Problem reported by Fedor
814         Sergeev in <http://forum.sun.com/jive/thread.jspa?threadID=96202>.
816 2006-05-13  Paul Eggert  <eggert@cs.ucla.edu>
818         * doc/autoconf.texi (Particular Programs): AC_PROG_MKDIR_P now
819         sets MKDIR_P, not mkdir_p, to avoid collisions with Automake.
820         Warn about obsolete install-sh files.  Remove stray sentence
821         fragment and fix cross reference.
822         * lib/autoconf/programs.m4 (AC_PROG_INSTALL): Don't insist on
823         install -d; this undoes the 2006-05-10 change.
824         (MKDIR_P): Mark with AN_MAKEVAR.
825         (AC_PROG_MKDIR_P): Fall back on $ac_install_sh, not $INSTALL, so
826         that we don't require $INSTALL to be thread-safe.  Move comments
827         out of generated code.  Require AC_CONFIG_AUX_DIR_DEFAULT instead
828         of AC_PROG_INSTALL.  Output a message saying that we're checking
829         mkdir -p.  Set MKDIR_P rather than mkdir_p.  Do special magic for
830         MKDIR_P instead of AC_SUBST.
831         * lib/autoconf/status.m4 (_AC_OUTPUT_FILE, _AC_OUTPUT_CONFIG_STATUS):
832         Special magic for MKDIR_P, too.
833         * lib/m4sugar/m4sh.m4 (AS_MKDIR_P): Remove comment that defeated
834         a dnl.
835         * tests/local.at (AT_CHECK_ENV): mkdir_p -> MKDIR_P.
837 2006-05-11  Paul Eggert  <eggert@cs.ucla.edu>
839         Sync from Automake, as follows:
841         2006-05-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
842         * config/install-sh: Initialize IFS, so field splitting isn't
843         turned off later.
844         * config/mkinstalldirs: Likewise.
845         * config/missing: Remove superfluous quotes.  Replace all uses of
846         `[' by `test', for consistency, and for..
847         * config/missing (sed_minuso, sed_output): New variables.
848         (autom4te, help2man, makeinfo): Use them.  Unifies detection of
849         `-o FILE', `--output FILE', `--output=FILE', stricter regex.
850         Fixes `missing' to detect `--output' for help2man.  Fixes
851         PR automake/483.  Report by Dennis J. Linse.
852         (autom4te): Document in `missing --help'.
854 2006-05-10  Paul Eggert  <eggert@cs.ucla.edu>
856         * NEWS: New macro AC_PROG_MKDIR_P.  AS_MKDIR_P is now more robust.
857         * config/install-sh: Don't use 'path' to talk about file names,
858         as per GNU coding standards.  Close a race condition reported by Ralf
859         Wildenhues and Stepan Kasal.  There is still a race condition
860         on hosts that predate Posix 1003.1-1992, but we can't help this.
861         Don't mishandle weird characters like space on pre-Posix hosts.
862         Invoke mkdir at most once per dir arg on pre-Posix hosts.
863         * doc/autoconf.texi (Programming in M4sh): Cross-reference to
864         AC_PROG_MKDIR_P from AS_MKDIR_P.
865         (Limitations of Usual Tools): Cross-reference to AC_PROG_MKDIR_P
866         from mkdir.  Mention that Autoconf 2.60 install-sh is safe but
867         earlier editions are not (including Automake 1.8.3).
868         Do not suggest mkinstalldirs for thread-safety.
869         * lib/autoconf/programs.m4 (AC_PROG_INSTALL): Insist on an 'install'
870         that understands -d, so that AC_PROG_MKDIR_P can fall back on $INSTALL.
871         * lib/m4sugar/m4sh.m4 (AS_MKDIR_P): Make it more robust in the
872         presence of special characters and race conditions.
873         * tests/local.at (AT_CHECK_ENV): Add mkdir_p to the list of variables
874         in Autoconf's name space.
876 2006-05-10  Bruno Haible  <bruno@clisp.org>
877         and Paul Eggert  <eggert@cs.ucla.edu>
879         * lib/autoconf/programs.m4 (AC_PROG_MKDIR_P): New macro, taken
880         from Automake with minor changes.
881         * doc/autoconf.texi (Particular Programs): Document AC_PROG_MKDIR_P.
883 2006-05-10  Paul Eggert  <eggert@cs.ucla.edu>
885         * config/install-sh: Update to Automake CVS version, as follows:
886         2006-04-25  Stepan Kasal  <kasal@ucw.cz>
887         * lib/install-sh: Simplify the expr implementation of dirname.
888         2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
889         * lib/install-sh: Handle --, and diagnose unknown options.
891 2006-05-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
893         * tests/Makefile.am (AUTOTEST): Use `$(MY_AUTOM4TE)' instead of
894         `./autom4te' to create `./testsuite', since the `all' target
895         will ensure its presence, but `installcheck' should not create
896         the uninstalled wrappers.
898         * tests/torture.at (Unusual Automake input files): Skip if we
899         detect automake < 1.8.
901 2006-05-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
903         * lib/autoconf/c.m4 (AC_PROG_CC_STDC): If ac_cv_prog_cc_stdc
904         is set to `no', then that overrides and sets ac_cv_prog_cc_c89
905         and ac_cv_prog_cc_c99 to `no', for backward compatibility.
906         * NEWS: Update.
908 2006-05-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
910         * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): Take care not to
911         munge (multiple) white space and other oddities.
912         * tests/torture.at (AT_CHECK_AC_ARG_VAR): Make sure to M4-escape
913         single quotes in variable assignment.
914         (AC_ARG_VAR, configure invocation): Adjust tests to expose this
915         and similar failures by adding multiple spaces, tabs, and other
916         special characters.
917         Report and different test suggested by Francesco Romani
918         <fromani@gmail.com> and Andrew Church <achurch@achurch.org>.
920         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): When we escape
921         single quotes, we only need to search for single quotes; this
922         both simplifies the search pattern, and makes us less
923         susceptible to `echo' variations for arguments not containing
924         single quotes.
925         (_AC_ARG_VAR_VALIDATE): Likewise.
927 2006-05-04  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
929         * doc/autoconf.texi (Special Shell Variables) <IFS>: Document
930         `$*' and IFS concatenation issue with traditional shells and
931         bash-2.04.  Report by Seanster@Seanster.com.
933 2006-05-03  Bruno Haible  <bruno@clisp.org>
935         * doc/autoconf.texi (Limitations of Usual Tools): Identify more
936         precisely which Mac OS X versions have the od problem.
938 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
940         * doc/autoconf.texi: Use @option systematically.
942 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
943         and Bruno Haible  <bruno@clisp.org>
945         * doc/autoconf.texi (Limitations of Usual Tools): Add a paragraph
946         about 'od'.
947         (Integer Overflow): Mention the special case of integer division
948         overflow.
950 2006-05-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
952         * lib/autoconf/general.m4 (_AC_CANONICAL_SPLIT): Cater for
953         traditional shells like the Solaris one that do not use the
954         first IFS character for assembling `$*'.
955         Prompted by a related report from autoconf_bug@nro.ca.
957 2006-05-01  Paul Eggert  <eggert@cs.ucla.edu>
958         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
960         * doc/autoconf.texi (Limitations of Builtins, Limitations of Make):
961         Mention more problems with the -e option.
963 2006-04-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
965         * NEWS: Typo.
966         * doc/autoconf.texi (Systemology): Mention the Heirloom Project.
968         * doc/autoconf.texi (Introduction, Pointers): Use `@/' liberally
969         in URLs to improve DVI formatted output (requires texinfo 4.6).
970         (System Services, Systemology, Shellology): Likewise.
971         (Limitations of Usual Tools): Rewrite Mac OS X example for nicer
972         output.
974         * doc/autoconf.texi (Fortran Compiler): Do not use `@ovar' in
975         continuous text.
976         (Runtime): Fix macro argument names to match description:
977         `action-if-found' -> `action-if-true' and similarly.
978         (Obsolete Macros): Likewise.
979         * lib/autoconf/general.m4 (_AC_COMPILE_IFELSE): Likewise.
980         (AC_COMPILE_IFELSE, AC_TRY_COMPILE, _AC_LINK_IFELSE)
981         (AC_LINK_IFELSE, AC_TRY_LINK, AC_COMPILE_CHECK): Likewise.
983 2006-04-29  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
985         * doc/autoconf.texi (Limitations of Make): Clean up markup.
987         * ChangeLog: Typo.
988         * doc/autoconf.texi (Portable Shell): Allow wrapped URLs, for
989         DVI output.
991 2006-04-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
993         * doc/autoconf.texi (Limitations of Builtins): Document FreeBSD
994         /bin/sh set unsorted output.
995         * lib/autoconf/general.m4 (_AC_CACHE_DUMP): Adjust.
996         * tests/local.at: Likewise.
998 2006-04-26  Paul Eggert  <eggert@cs.ucla.edu>
1000         * doc/autoconf.texi (Portable C and C++, Varieties of Unportability):
1001         (Integer Overflow, Null Pointers, Buffer Overruns):
1002         (Floating Point Portability, Exiting Portably): New sections.
1003         (Writing Test Programs): Fix some langauge.  Recommend exiting
1004         with status 1, not merely nonzero.  Clarify exit declaration.
1005         (Run Time): Move C exit status stuff to new Exiting Portably section.
1006         (Systemology): Mention Posix and levenez.  Update v7 reference.
1007         (Portable Shell): Mention the Posix shell.
1009 2006-04-25  Stepan Kasal  <kasal@ucw.cz>
1011         * bin/autoconf.as (me): Replace by as_me.
1013 2006-04-25  Paul Eggert  <eggert@cs.ucla.edu>
1015         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Don't use AS_ERROR,
1016         since as_me isn't set yet.
1018 2006-04-23  Paul Eggert  <eggert@cs.ucla.edu>
1020         Prepare for deprecation of AS_BASENAME and AS_DIRNAME, and fix
1021         a few minor bugs in this area.
1023         * doc/autoconf.texi (Programming in M4sh): Comment out the
1024         documentation of AS_BASENAME, for now.
1025         (Shell Substitutions): Do not use AS_DIRNAME in an example.
1026         (Limitations of Builtins) <basename>: Do not refer to
1027         AS_BASENAME.
1028         * bin/autoconf.as (me): Don't use AS_BASENAME.
1029         (dir): Remove the unused variable.
1030         * lib/m4sugar/m4sh.m4 (_AS_DETECT_REQUIRED): Renamed from
1031         AS_DETECT_REQUIRED.  All uses changed.
1032         (_AS_DETECT_SUGGESTED): Renamed from AS_DETECT_SUGGESTED.
1033         All uses changed.
1034         (_AS_DETECT_BETTER_SHELL): Put ;; at the end of a case.
1035         (AS_BASENAME): Use "basename --" to protect against leading "-".
1036         (_AS_BASENAME_EXPR): Renamed from AS_BASENAME_EXPR.  All uses changed.
1037         (_AS_BASENAME_SED): Renamed from AS_BASENAME_SED.  All uses changed.
1038         (_AS_BASENAME_PREPARE): Reject implementations that cannot handle "--".
1039         (_AS_DIRNAME_PREPARE): Likewise.
1040         (_AS_DIRNAME_EXPR): Renamed from AS_DIRNAME_EXPR.  All uses changed.
1041         (_AS_DIRNAME_SED): Renamed from AS_DIRNAME_SED.  All uses changed.
1042         (AS_DIRNAME): Use "dirname --".
1044 2006-04-23  Paul Eggert  <eggert@cs.ucla.edu>
1046         * doc/autoconf.texi (Runtime): Renamed from "Run Time".  All uses
1047         of "run time" and "run-time" changed to "runtime", for consistency.
1048         * lib/autoconf/fortran.m4: Likewise (in comment).
1049         * lib/autoconf/functions.m4: Likewise.
1050         * lib/autoconf/general.m4: Likewise.
1051         * lib/autoconf/headers.m4: Likewise.
1053         * doc/autoconf.texi (Run Time): Document the exit status situation
1054         with more accuracy and detail.
1056 2006-04-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1058         * doc/autoconf.texi (Introduction): The GNU Autoconf Macro
1059         Archive is not officially `GNU' any more.  Update URL.
1060         (Defining Directories): Likewise
1061         * lib/autoconf/c.m4 (AC_C_RESTRICT): Update URL.
1063 2006-04-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1065         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Remove the leading
1066         newline from the `trap' code to finish `config.log'; the NetBSD
1067         /bin/sh resets the exit status after an empty command, as
1068         documented in doc/autoconf.texi.
1069         Reported by Dalibor Topic <robilad@kaffe.org>.
1071 2006-04-19  Paul Eggert  <eggert@cs.ucla.edu>
1073         * doc/autoconf.texi (C Compiler): Clarify AC_C_TYPEOF.
1074         Suggested by Bruno Haible.
1076 2006-04-18  Paul Eggert  <eggert@cs.ucla.edu>
1078         * configure.ac (ac_cv_sh_n_works): Don't try to test for it, since
1079         some shells (e.g., Solaris 8 /bin/sh) implement it verrrry slowly.
1080         Instead, just list the shells that we know work.
1081         * tests/local.at (AT_CHECK_SHELL_SYNTAX): Remove 2nd arg.  All uses
1082         changed.  Be more cautious about the _cv_ variable.
1083         * tests/tools.at (Syntax of the shell scripts): Check the
1084         _cv_ variable once, at first, to avoid an internal autoconf error
1085         when sh -n does not work.
1087 2006-04-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1089         * lib/Autom4te/FileUtils.pm: Sync from Automake.
1091 2006-04-16  Paul Eggert  <eggert@cs.ucla.edu>
1093         * lib/autoconf/general.m4 (_AC_INIT_CONFIG_LOG): Don't
1094         use ">&-" since we're only 99.999% sure that this is portable,
1095         and since the MinGW bug is fixed in a different way.
1096         * lib/autotest/general.m4 (AT_INIT): Likewise.
1098 2006-04-16  Stepan Kasal  <kasal@ucw.cz>
1100         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Handle --recheck
1101         before opening config.log, to avoid hitting a bug on MinGW.
1103 2006-04-14  Paul Eggert  <eggert@cs.ucla.edu>
1105         * lib/autoconf/general.m4 (_AC_INIT_CONFIG_LOG): Close
1106         AS_MESSAGE_LOG_FD before reopening it onto the log file.
1107         This works around a MinGW bug reported by Eric Paire.
1108         Make sure that all writes to the log file append to it,
1109         rather than possibly losing data.
1110         * lib/autotest/general.m4 (AT_INIT): Likewise.
1112 2006-04-14  Stepan Kasal  <kasal@ucw.cz>
1114         * lib/Autom4te/FileUtils.pm (find_file): Fix a typo in the
1115         description.
1117 2006-04-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1119         * NEWS: Update.
1121         * configure.ac (AC_INIT): Bump to 2.59d.
1123 2006-04-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1125         Version 2.59c.
1127         * Makefile.maint (news-date-check): Do not require a leading `*'
1128         before the release date in NEWS.
1130 2006-04-12  Stepan Kasal  <kasal@ucw.cz>
1131         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1133         * lib/autoconf/status.m4 (_AC_OUTPUT_FILE): If the templates for
1134         the instantiated file do not contain the string 'datarootdir'
1135         but contain @datadir@, @docdir@, @infodir@, @localedir@, or
1136         @mandir@, replace the reference '${datarootdir}' by the value.
1137         * tests/torture.at (datarootdir workaround): New test.
1138         * NEWS: Advertise this temporary fixup.
1139         Based on a patch by Bruno Haible, reported and analyzed by
1140         Paul Eggert and Noah Misch.
1142 2006-04-12  Eric Blake  <ebb9@byu.net>
1144         * tests/autotest.at (Debugging a failed test): Fix comment.
1146 2006-04-12  Stepan Kasal  <kasal@ucw.cz>
1148         * lib/m4sugar/m4sh.m4 (_AS_LN_S_PREPARE): Simplify the summary of
1149         all the changes since 2006-04-07.
1151 2006-04-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1153         * lib/m4sugar/m4sh.m4 (_AS_LN_S_PREPARE): If `ln -s file1 file2'
1154         succeeded, but `ln -s file dir' failed, take care to remove the
1155         leftover target before the next test, to prevent its spurious
1156         failure; also make sure `ln file dir' works before selecting it.
1157         Thanks to Keith Marshall for pointing this out.
1158         * THANKS: Update.
1160         * lib/autotest/general.m4 (AT_INIT): Store quoted variable
1161         assignments in `at_debug_args', so that we put them correctly
1162         in the `run' script.
1163         * tests/autotest.at (Debugging a failed test): Unmark XFAIL.
1164         Reported by Eric Blake.
1166 2006-04-11  Eric Blake  <ebb9@byu.net>
1168         * tests/autotest.at (AT_CHECK_AT): Add new argument, to allow
1169         top-level tests after micro-suite has been run.   Used in...
1170         (Debugging a successful test, Debugging script and environment),
1171         (Debugging a failed test): ...these new tests.  The first of these
1172         is fixed by...
1173         * lib/autotest/general.m4 (_AT_CREATE_DEBUGGING_SCRIPT): New
1174         macro, split out from...
1175         (AT_INIT): ...here, so that using -d also generates a run script.
1176         Document that -d inhibits top-level logging.
1177         * doc/autoconf.texi (testsuite Invocation): Document that -d only
1178         inhibits top-level logging; debug scripts are created.
1180         * lib/autotest/general.m4 (_AT_CHECK): Avoid syntax error on empty
1181         check.
1182         * tests/autotest.at (Empty test, Empty check): New test to check it.
1184         * lib/autoconf/c.m4 (AC_C_CONST, AC_C_VOLATILE): Avoid warnings
1185         from gcc.
1187 2006-04-10  Stepan Kasal  <kasal@ucw.cz>
1189         * tests/mktests.sh: Use "trap '' 0", not "trap 0".  Do not touch
1190         the files if a problem appears.  Make the empty *.at files
1191         read-only, too.  Proposed by Ralf Wildenhues.
1193 2006-04-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1195         * config/Makefile.am: Add comment to force updated Makefile.in.
1197         * lib/freeze.mk: Fix typo in comment.  Unlike the last, white
1198         space only patch to this file, this patch causes the Makefile.in
1199         files that include freeze.mk to be updated, and thus have a
1200         newer time stamp again, which in turn makes a pristine CVS
1201         checkout have correct time stamps.
1203         * Makefile.maint (cvs-sv): New macro, to be used..
1204         (config.guess-url_prefix, config.sub-url_prefix)
1205         (texinfo.tex-url_prefix, standards.texi-url_prefix): ..here;
1206         point to CVS text checkout of Gnulib files.
1207         (copyright-check): Bump current year.
1208         (announcement): Do not hard-wire `./announce-gen'.
1209         (cvs-update): Propagate failures of `cvs' and `move-if-change'
1210         correctly.
1211         * Makefile.cfg (executable-update): Use `chmod a+x' instead of
1212         `chmod +x'.
1213         (wget_files): Update config.guess, config.sub, texinfo.tex by
1214         `wget-update', now that their URLs work again.
1216 2006-04-10  Paul Eggert  <eggert@cs.ucla.edu>
1218         * doc/autoconf.texi (Particular Types): Don't use AC_CHECK_TYPE.
1219         Problem noted by Paul D. Smith.
1221 2006-04-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1223         * doc/autoconf.texi: Remove unused words from word list.
1224         * .x-sc_prohibit_atoi_atof, .x-sc_space_tab, .x-sc_sun_os_names,
1225         .x-sc_trailing_space: New files.
1227         * doc/standards.texi: Sync from gnulib.
1229         * NEWS, doc/autoconf.texi (AC_LIBOBJ vs LIBOBJS): Mark
1230         `LIBOBJDIR' as experimental.
1232         * lib/m4sugar/m4sh.m4 (_AS_LN_S_PREPARE): MSYS `ln -s' fails
1233         with a target directory; it's internally implemented as `cp'
1234         anyway, but since Autoconf advertises the possibility to use
1235         a target directory when LN_S is `ln -s', we need to find out.
1236         Reported by Rolf Ebert <rolf.ebert.gcc@gmx.de> against MSYS,
1237         analyzed by Keith Marshall <keith.marshall@total.com>.
1239         * THANKS: Update.
1241 2006-04-10  Paul Eggert  <eggert@cs.ucla.edu>
1243         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Just output
1244         confdefs.h as-is.  In general, if it has backslash-newline or the
1245         like, then it doesn't work either to sort or to remove empty
1246         lines.
1248 2006-04-09  Stepan Kasal  <kasal@ucw.cz>
1250         * tests/Makefile.am (AUTOCONF_FILES): Fix typo in the comment.
1252 2006-04-09  Alexandre Duret-Lutz  <adl@gnu.org>
1254         * lib/autom4te.in (Automake-preselections): Preselect
1255         _AM_SUBST_NOTMAKE.
1257 2006-04-08  Paul Eggert  <eggert@cs.ucla.edu>
1259         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Use '\'' for an
1260         apostrophe within a single-quoted string, as this is the usual
1261         tradition and is easier to read than '"'"'.  Don't rely on the
1262         shell treating "$/" like '$/'.  Use a more-consistent indenting
1263         style for the trap.
1265 2006-04-09  Eric Blake  <ebb9@byu.net>
1267         * tests/autotest.at (Backquote command substitution),
1268         (Multiline backquote command substitution): Remove mistaken
1269         AT_NO_CMDSUBST from the 2006-03-14 patch, which was meant to be
1270         applied...
1271         (Parenthetical command substitution, Multiline parenthetical
1272         command substitution): here.
1274 2006-04-08  Paul Eggert  <eggert@cs.ucla.edu>
1276         Import macros from gnulib (often changing their name).
1278         * NEWS: AC_C_TYPE_LONG_DOUBLE is now obsolete.
1279         New macros AC_CHECK_DECLS_ONCE, AC_CHECK_FUNCS_ONCE,
1280         AC_CHECK_HEADERS_ONCE, AC_FUNC_STRTOLD, AC_HEADER_ASSERT,
1281         AC_STRUCT_DIRENT_D_INO, AC_STRUCT_DIRENT_D_TYPE,
1282         AC_TYPE_LONG_DOUBLE, AC_TYPE_LONG_DOUBLE_WIDER, AC_TYPE_INT8_T,
1283         AC_TYPE_INT16_T, AC_TYPE_INT32_T, AC_TYPE_INT64_T,
1284         AC_TYPE_INTMAX_T, AC_TYPE_INTPTR_T, AC_TYPE_LONG_LONG_INT,
1285         AC_TYPE_UINT8_T, AC_TYPE_UINT16_T, AC_TYPE_UINT32_T,
1286         AC_TYPE_UINT64_T, AC_TYPE_UINTMAX_T, AC_TYPE_UINTPTR_T,
1287         AC_TYPE_UNSIGNED_LONG_LONG_INT, AC_USE_SYSTEM_EXTENSIONS.
1288         The manual mentions Gnulib more prominently.
1289         * doc/autoconf.texi (Gnulib): New node.
1290         (Pointers): Add Gnulib URL.
1291         (Particular Functions): Alphabetize.  Add AC_FUNC_STRTOLD.
1292         (Generic Functions): Add AC_CHECK_FUNCS_ONCE.  Refer to new
1293         Gnulib section.
1294         (Particular Headers): Add AC_HEADER_ASSERT.  For stdbool.h,
1295         suggest a #define rather than a typedef for _Bool, and mention
1296         Gnulib rather than trying to substitute stdbool code.
1297         (Generic Headers): Add AC_CHECK_HEADERS_ONCE.
1298         (Generic Declarations): Add AC_CHECK_DECLS_ONCE.
1299         (Particular Structures): Add AC_STRUCT_DIRENT_D_INO,
1300         AC_STRUCT_DIRENT_D_TYPE.
1301         (Particular Types): Mention stdint.h and inttypes.h as standard
1302         headers too.
1303         Add AC_TYPE_INT8_T, AC_TYPE_INT16_T, AC_TYPE_INT32_T, AC_TYPE_INT64_T,
1304         AC_TYPE_INTMAX_T, AC_TYPE_INTPTR_T, AC_TYPE_LONG_DOUBLE,
1305         AC_TYPE_LONG_DOUBLE_WIDER, AC_TYPE_LONG_LONG_INT, AC_TYPE_UINT8_T,
1306         AC_TYPE_UINT16_T, AC_TYPE_UINT32_T, AC_TYPE_UINT64_T,
1307         AC_TYPE_UINTMAX_T, AC_TYPE_UINTPTR_T, AC_TYPE_UNSIGNED_LONG_LONG_INT.
1308         (C Compiler): Move AC_C_LONG_DOUBLE to ...
1309         (Obsolete Macros): here.  Under AC_LONG_DOUBLE, mention
1310         AC_TYPE_LONG_DOUBLE or AC_TYPE_LONG_DOUBLE_WIDER instead.
1311         (Posix Variants): Add AC_USE_SYSTEM_EXTENSIONS.
1312         (Coding Style).  Don't mention m4_expand_once.
1313         * lib/autoconf/c.m4 (AC_C_LONG_DOUBLE): Implement via
1314         AC_TYPE_LONG_DOUBLE_WIDER.  Now obsolete.
1315         * lib/autoconf/functions.m4 (_AH_CHECK_FUNCS): New macro.
1316         (AC_CHECK_FUNCS): Use it.
1317         (AC_CHECK_FUNCS_ONCE, AC_FUNC_STRTOLD): New macros.
1318         (AC_FUNC_WAIT3): "the Open Group standards" -> "POSIX".
1319         * lib/autoconf/general.m4 (AC_CHECK_DECLS_ONCE): New macro.
1320         * lib/autoconf/headers.m4 (AC_CHECK_HEADERS_ONCE): New macro.
1321         (AC_HEADER_ASSERT): New macro.
1322         (AC_HEADER_STDBOOL): Don't assume "#error" works.
1323         Catch a bug in IBM AIX xlc compiler version 6.0.0.0.
1324         Catch a bug in an HP-UX C compiler.
1325         * lib/autoconf/specific.m4 (AC_USE_SYSTEM_EXTENSIONS): New macro.
1326         * lib/autoconf/types.m4 (AC_TYPE_INTMAX_T. AC_TYPE_UINTMAX_T):
1327         (AC_TYPE_INTPTR_T, AC_TYPE_UINTPTR_T. AC_TYPE_LONG_DOUBLE):
1328         (AC_TYPE_LONG_DOUBLE_WIDER, AC_C_LONG_DOUBLE, AC_TYPE_LONG_LONG_INT):
1329         (AC_TYPE_UNSIGNED_LONG_LONG_INT, _AC_TYPE_INT, _AC_TYPE_UNSIGNED_INT):
1330         (_AC_STRUCT_DIRENT, AC_STRUCT_DIRENT_D_INO, AC_STRUCT_DIRENT_D_TYPE):
1331         New macros.
1333         * tests/mktests.sh (ac_exclude_list, au_exclude_list): Do not
1334         use /^foo|bar$/, it does not mean /^(foo|bar)$/.
1336 2006-04-08  Stepan Kasal  <kasal@ucw.cz>
1338         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Fix the wording
1339         of the warning introduced by the 2001-08-28 change.
1341 2006-04-08  Stepan Kasal  <kasal@ucw.cz>,
1342             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1344         * lib/autoconf/general.m4 (AC_CACHE_SAVE): All `ac_cv_env_foo'
1345         variables shall be overriden by the cache.
1346         * tests/torture.at (AC_ARG_VAR): Test also with a first value
1347         that contains braces.
1349 2006-04-07  Stepan Kasal  <kasal@ucw.cz>
1351         Revert the patch from 2006-04-01 and only improve
1352         _AS_DETECT_BETTER_SHELL:
1354         * lib/m4sugar/m4sh.m4 (_AS_PATH_WALK): Do not optimize; do not
1355         skip nonexistent directories.
1356         (_AS_DETECT_BETTER_SHELL): The optimization is moved here--try
1357         only shell candidates which exist.
1358         (AS_UNAME): No need to give three parameters to _AS_PATH_WALK.
1359         * lib/autotest/general.m4 (AT_INIT): No need to give three
1360         parameters to _AS_PATH_WALK.
1362 2006-04-07  Stepan Kasal  <kasal@ucw.cz>,
1363             Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
1365         * bin/autoupdate.in (handle_autoconf_patches): Change the way we
1366         distinguish m4sugar macros.
1367         * tests/tools.at (autoupdating with aclocal and m4_include):
1368         New test.  Bug reported by Gary V. Vaughan <gary@gnu.org>,
1369         test case by Noah Misch <noah@cs.caltech.edu>.
1371 2006-04-07  Stepan Kasal  <kasal@ucw.cz>
1373         Revert my change from 2006-03-17, in other words:
1374         * lib/m4sugar/m4sh.m4 (AS_BOURNE_COMPATIBLE): Insert BIN_SH=xpg4
1375           and DUALCASE=1.
1376         (AS_SHELL_SANITIZE): Remove DUALCASE=1.
1377         * doc/autoconf.texi (Special Shell Variables) <BIN_SH>: Say that
1378           it is set.
1380 2006-04-07  Eric Blake  <ebb9@byu.net>
1382         * doc/autoconf.texi (Programming in M4sh): Document that
1383         AS_MKDIR_P exits the script on failure.
1384         * lib/autotest/general.m4: Remove redundant AS_ERROR.
1386 2006-04-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1388         * config/elisp-comp, config/install-sh, config/mdate-sh,
1389         config/missing, config/mkinstalldirs: Sync from Automake.
1391         * lib/Autom4te/FileUtils.pm, lib/Autom4te/Struct.pm: Sync
1392         from Automake.
1394         * doc/make-stds.texi: Sync from gnulib.
1396 2006-04-06  Eric Blake  <ebb9@byu.net>
1398         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_O): Inside cache
1399         check, s/ac_exeext/ac_cv_exeext/.  Fixes regression introduced
1400         2006-04-01.
1402 2006-04-06  Stepan Kasal  <kasal@ucw.cz>,
1403             Eric Blake  <ebb9@byu.net>,
1404             Paul Eggert  <eggert@cs.ucla.edu>,
1405             Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
1407         * lib/autoconf/general.m4 (_AC_CACHE_DUMP): Fix the detection of
1408         whether `set' quotes correctly: redirect stderr of the tested
1409         `set', and use a subshell, for Ultrix; use `sed' instead of
1410         `grep' for zsh `set' which may write binary output; match only
1411         at the beginning of a line, to avoid false positives.
1412         In order to avoid false positives by unrelated variables with
1413         multiline content, put the dump algorithm in a subshell and
1414         unset all variables containing newlines (except some which are
1415         special to the shell).  Warn about cache variables that are
1416         unset.
1418 2006-04-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1420         * config/config.guess, config/config.sub, config/texinfo.tex:
1421         Sync from upstream.
1423         * tests/mktests.sh: Reword comments.
1425         * tests/mktests.sh: Only skip internal macros starting with
1426         `_AC_' or `__AC_'.  Noted by Stepan Kasal.
1427         Update exclusion lists for the test suite to this end:
1428         (AC_ARG_VAR): Do test this now.
1429         (AC_SEARCH_LIBS, AC_REPLACE_FUNCS): Need an argument.
1430         (AC_LINKER_OPTION): Remove (renamed to _AC_LINKER_OPTION).
1431         (AC_LIST_MEMBER_OF): Likewise (renamed to _AC_LIST_MEMBER_IF).
1432         (AC_LINK_FILES): Obsoleted since (and thus AU_DEFUN'ed).
1434         * doc/autoconf.texi (Shell Substitutions): Mention the MSYS
1435         shell issue with double-quoted command substitutions of native
1436         commands.
1437         Reported to MSYS by Mark Cave-Ayland, to Autoconf by Keith
1438         Marshall.
1440         * Makefile.maint (sc_cast_of_argument_to_free): Do not fail when
1441         no file matches the glob, discard the warning, set `nullglob'.
1442         (syntax-check): Likewise.
1443         (sc_cast_of_x_alloc_return_value): Likewise.
1444         (sc_cast_of_alloca_return_value, sc_error_exit_success)
1445         (sc_prohibit_jm_in_m4, .re-list, sc_unmarked_diagnostics)
1446         (m4-check): Likewise.
1447         (sc_system_h_headers): Do not print rule on execution.
1448         (sc_tight_scope): Do not fail for non-existing `src' directory.
1449         (sc_changelog): Skip the Copyright footer.
1450         * lib/autoconf/lang.m4: Remove trailing space.
1452         * lib/autoconf/status.m4: More replacements to
1453         <tab><space> where this makes sense.
1455 2006-04-06  Stepan Kasal  <kasal@ucw.cz>
1457         * tests/Makefile.am (maintainer-check-posix):
1458           s/POSIXLY_CORRECTLY/POSIXLY_CORRECT/
1460         * lib/autoconf/status.m4 (_AC_CONFIG_FOOS): Append TAGS to
1461           ac_config_<foo>s again, sometimes normalized, sometimes not.
1462         (AC_CONFIG_FILES, AC_CONFIG_HEADERS, AC_CONFIG_LINKS):
1463         (AC_CONFIG_COMMANDS): Do not do so here.
1464         (_AC_CONFIG_REGISTER_DEST): Double quote the tags in macros _AC_LIST_TAGS
1465           and_AC_LIST_TAG_COMMANDS; fixes another regression introduced by the
1466           2005-07-25 rewrite.  Noticed by Noah Misch.
1468         * lib/autoconf/general.m4 (AC_PRESERVE_HELP_ORDER): Do not define
1469           _AC_PRESERVE_HELP_ORDER, ...
1470         (AC_ARG_ENABLE, AC_ARG_WITH): ... use AC_PROVIDE_IFELSE insetad.
1472         * lib/autoconf/general.m4 (AC_ARG_VAR): Do not use m4_divert_once
1473           inside m4_expand_once; it is redundant.
1475         * lib/autoconf/general.m4 (_AC_INIT_HELP): Remove the broken support
1476           for --help from Cygnus `configure.'
1478 2006-04-06  Paul Eggert  <eggert@cs.ucla.edu>
1480         * doc/autoconf.texi (C Compiler): Warn about #error.  Follows up
1481         on a patch proposed by Ralf Wildenhues.
1483 2006-04-05  Paul Eggert  <eggert@cs.ucla.edu>
1485         * lib/autoconf/status.m4: Replace <space>''<tab> with
1486         <tab><space> where this makes sense.
1488 2006-04-05  Howard Chu  <hyc@highlandsun.com>  (trivial change)
1489             Noah Misch  <noah@cs.caltech.edu>
1491         * lib/autoconf/general.m4 (AC_PRESERVE_HELP_ORDER): New macro.
1492         (AC_ARG_ENABLE, AC_ARG_WITH): Adjust.
1493         * doc/autoconf.texi (Help Formatting): New node.
1494         * NEWS: Announce AC_PRESERVE_HELP_ORDER.
1496 2006-04-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1498         * TODO, config/Makefile.am, lib/freeze.mk, lib/autoconf/c.m4,
1499         lib/autoconf/specific.m4, lib/autoconf/status.m4,
1500         lib/autoconf/types.m4, lib/autotest/general.m4,
1501         tests/mktests.sh, tests/torture.at: White space cleanup:
1502         remove some SPACE before TAB, or add quoting ('' or @&t@).
1504         * NEWS, TODO, bin/autoreconf.in: `filesystem' -> `file system'.
1506         * doc/autoconf.texi (Shell Substitutions): Document `^' vs. `|'.
1508 2006-04-05  Eric Blake  <ebb9@byu.net>
1510         * lib/autotest/general.m4 (AT_INIT): Prep AT_*_all, so that an
1511         empty test suite works.
1512         * tests/autotest.at (Empty test suite): Remove xfail.
1514 2006-04-05  Noah Misch  <noah@cs.caltech.edu>
1516         * lib/autoconf/status.m4 (_AC_CONFIG_FOOS): Do not append normalized
1517         TAGS to ac_config_<foo>s.
1518         (AC_CONFIG_FILES, AC_CONFIG_HEADERS, AC_CONFIG_LINKS): Do so here.
1519         (AC_CONFIG_COMMANDS): Append NAME to ac_config_commands without
1520         normalizing it, consistent it with previous releases.
1521         * tests/torture.at (Macro calls in AC_CONFIG_COMMANDS tags): New test.
1523 2006-04-05  Paul Eggert  <eggert@cs.ucla.edu>
1525         * lib/m4sugar/m4sh.m4 (AS_BASENAME_EXPR, AS_DIRNAME_EXPR):
1526         Use simplified args that Eric Blake originally suggested.
1528 2006-04-04  Paul Eggert  <eggert@cs.ucla.edu>
1530         * tests/mktests.sh: Don't use 'cat'; just read the files directly.
1531         Prefer 'sort -u' to 'sort | uniq'.  Filter data before sorting it.
1532         Use 'comm' rather than N instances of grep; this also fixes a bug
1533         whereby substrings were incorrectly matched, causing us to not
1534         generate tests for AC_F77_NAME_MANGLING and AC_FUNC_LSTAT.
1535         (exclude_list): Exclude empty macros.
1536         (ac_exclude_list): Exclude AC_INCLUDES_DEFAULT.
1538         Use awk rather than grep -E or egrep, to avoid
1539         portability problems with regular expressions containing newlines.
1540         (exclude_list, ac_exclude_list, au_exclude_list, ac_exclude_script):
1541         Switch from grep to awk syntax.
1542         (ac_exclude_script): Renamed from ac_exclude_egrep.
1543         (au_exclude_script): Renamed from au_exclude_egrep.
1545 2006-04-04  Noah Misch  <noah@cs.caltech.edu>
1547         * lib/autoconf/general.m4 (_AC_INIT_HELP): Only `configure.in' evidences
1548         a subdirectory subject to Cygnus `configure'.
1549         * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): Likewise.
1551         * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_MONGREL): Omit the bug
1552         report request when we have no AC_PACKAGE_BUGREPORT.
1554 2006-04-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1556         * THANKS: Update.
1558         * tests/mktests.sh: Update copyright year in the header of the
1559         generated files.
1561         * lib/autoconf/c.m4 (AC_C_INLINE): Do not skip cleanup code.
1562         (AC_C_RESTRICT): Likewise.  Furthermore, add a function with a
1563         typedef'ed restricted pointer, to catch a compiler bug on
1564         HP-UX 11.x, and fix warnings so it passes with -Werror.
1565         (_AC_PROG_CC_C99): Likewise.
1566         Reported by Albert Chin <china@thewrittenword.com>.
1567         * tests/mktests.sh: Do not skip AC_C_INLINE, AC_C_RESTRICT.
1569 2006-04-03  Noah Misch  <noah@cs.caltech.edu>
1571         * bin/autoscan.in (subdirs): New global.
1572         (scan_file): Prune directories with configure{,.{ac,in,gnu}}.
1573         (output): Emit AC_CONFIG_SUBDIRS as needed.
1574         * tests/autoscan.at (autoscan): Remove XFAIL.
1576 2006-04-03  Noah Misch  <noah@cs.caltech.edu>
1578         * lib/autoconf/general.m4 (AC_CACHE_SAVE): Use AC_MSG_NOTICE.
1580 2006-04-03  Eric Blake  <ebb9@byu.net>
1582         * THANKS: Add myself.
1584 2006-04-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1586         * lib/autotest/general.m4 (AT_INIT): Add `at_testdir' to pointer
1587         to log, point to testsuite output tree.
1589 2006-04-02  Paul Eggert  <eggert@cs.ucla.edu>
1591         * NEWS: AC_PROG_CC and AC_PROG_CXX no longer declare 'exit'.
1592         * doc/autoconf.texi (Function Portability): Mention that C++
1593         has trouble with 'exit'.
1594         (Guidelines): Test programs shouldn't use 'exit'.
1595         * lib/autoconf/c.m4 (_AC_PROG_CXX_EXIT_DECLARATION):
1596         Remove; all uses removed.
1597         (AC_LANG_INT_SAVE(C), AC_C_BIGENDIAN):
1598         Return from 'main' instead of calling 'exit'.
1599         * lib/autoconf/functions.m4 (_AC_LIBOBJ_ALLOCA, AC_FUNC_CLOSEDIR_VOID):
1600         (_AC_FUNC_FNMATCH_IF, AC_FUNC_GETGROUPS):
1601         (AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK, _AC_FUNC_MALLOC_IF):
1602         (AC_FUNC_MEMCMP, AC_FUNC_MKTIME, AC_FUNC_MMAP, _AC_FUNC_REALLOC_IF):
1603         (AC_FUNC_SETPGRP, _AC_FUNC_STAT, AC_FUNC_STRTOD, AC_FUNC_STRERROR_R):
1604         (AC_FUNC_STRNLEN, AC_FUNC_SETVBUF_REVERSED, AC_FUNC_UTIME_NULL):
1605         (_AC_FUNC_FORK, _AC_FUNC_VFORK, AC_FUNC_WAIT3): Likewise.
1606         * lib/autoconf/headers.m4 (AC_HEADER_STDC): Likewise.
1607         * lib/autoconf/specific.m4 (AC_SYS_RESTARTABLE_SYSCALLS): Likewise.
1608         * lib/autoconf/types.m4 (AC_TYPE_GETGROUPS): Likewise.
1609         * tests/compile.at: Likewise.
1611 2006-04-02  Pavel Roskin  <proski@gnu.org>
1613         * doc/autoconf.texi (AC_PATH_X): Update per 2005-08-26 change.
1615 2006-04-01  Stepan Kasal  <kasal@ucw.cz>
1617         Clean up _AC_COMPILER_EXEEXT* macros.
1619         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Don't try to
1620           detect exeext, it will be done by _AC_COMPILER_EXEEXT_O; just set
1621           ac_file to the name of the default output file and call
1622           _AC_COMPILER_EXEEXT_WORKS.  Move the definition of ac_files and the
1623           initial `rm' of the candidate files...
1624         (_AC_COMPILER_EXEEXT): ... here and simplify them.  Moreover, use
1625           the same list in subsequent `rm' calls, and for the temporary
1626           redefinition of ac_clean_files; call _AC_COMPILER_OBJEXT at the end,
1627           and don't call the other _AC_COMPILER_EXEEXT_* macros directly, use...
1628         (_AC_COMPILER_EXEEXT_TESTS): ... this new macro.
1629         (_AC_COMPILER_EXEEXT_O): Don't export ac_cv_exeext, it's not needed (or
1630           no longer needed) by libtool.  Make it a cache check.
1631         (_AC_COMPILER_EXEEXT_CROSS): Remove the comment, it was obviously
1632           copied here by mistake.
1633         (AC_NO_EXECUTABLES): Redefine _AC_COMPILER_EXEEXT_TESTS, not
1634           _AC_COMPILER_EXEEXT.
1635         * lib/autoconf/c.m4 (AC_PROG_CC, AC_PROG_CXX, AC_PROG_OBJC): Do not call
1636           _AC_COMPILER_OBJEXT directly.
1637         * lib/autoconf/fortran.m4 (_AC_PROG_FC): Likewise.
1639 2006-04-01  Stepan Kasal  <kasal@ucw.cz>
1641         * lib/m4sugar/m4sh.m4 (_AS_DIRNAME_PREPARE): New macro.
1642         (AS_DIRNAME): Use it.
1643         (_AS_PREPARE): Add _AS_DIRNAME_PREPARE.
1645         * tests/*.at: Remove the generated ones.
1647 2006-04-01  Stepan Kasal  <kasal@ucw.cz>
1649         * lib/autotest/general.m4 (AT_INIT): Don't optimize the first PATH walk.
1651 2006-04-01  Eric Blake  <ebb9@byu.net>
1653         * lib/m4sugar/m4sh.m4 (_AS_PATH_WALK): Optimize nonexistent
1654         directories, unless optional third argument supplied.
1655         (AS_UNAME): Don't optimize PATH walk.
1657         * lib/Autom4te/Struct.pm, lib/autoconf/c.m4: s/non-existent/nonexistent/
1659 2006-04-01  Eric Blake  <ebb9@byu.net>
1660         and Stepan Kasal  <kasal@ucw.cz>
1662         * lib/m4sugar/m4sh.m4: Sort sections as implied by the comments,
1663         and fix some typos.
1665 2006-04-01  Noah Misch  <noah@cs.caltech.edu>
1667         * lib/autoconf/general.m4 (_AC_INIT_VERSION): Emit script name and
1668         Autoconf version number despite a zero- or one-argument AC_INIT.
1670         * bin/autoreconf.in (parse_args): Multiple -v send --verbose to
1671         subordinate tools.
1672         * lib/Autom4te/General.pm (getopt): Make -v and -d incremental.
1673         * doc/autoconf.texi (autoreconf Invocation): Document it.
1675         * doc/autoconf.texi: Use `Cygwin', `MinGW', and `license' consistently.
1676         Append LocalWords so ispell-buffer passes cleanly.  Spelling fixes.
1678 2006-04-01  Eric Blake  <ebb9@byu.net>
1680         * lib/m4sugar/m4sh.m4 (AS_MKDIR_P): Allow use in shell lists.
1681         * lib/autotest/general.m4: Be tolerant of existing directory when
1682           rm failed to remove it.
1684 2006-04-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1686         * bin/autoupdate.in: Redefine m4_location so that warnings print
1687         the correct lines of the input file by subtracting..
1688         (_au__first_line): ..this new definition.
1690         * lib/autoconf/general.m4 (AC_COMPILE_CHECK): Prefer
1691         AC_MSG_CHECKING over obsolete AC_CHECKING in autoupdated code.
1692         Remove stray newline in output.
1693         (AC_FOREACH): AU_DEFUN this as literal for autoupdate, and also
1694         AC_DEFUN this for autoconf, including the obsoletion diagnose.
1695         Fixes autoupdating of code where the replacement output contains
1696         m4sugar macros.
1697         * lib/autoconf/lang.m4 (AC_LANG_SAVE): Likewise.
1698         * tests/mktests.sh (ac_exclude_list): Add AC_FOREACH.
1699          (au_exclude_list): Add AC_LANG_SAVE.
1700         * tests/tools.at: Several new tests for all of this.
1701         * doc/autoconf.texi (Obsoleting Macros): Give a hint about the
1702         hairy details.
1703         The AC_LANG_SAVE issue was reported against Libtool by
1704         Dalibor Topic <robilad@kaffe.org>, and against Autoconf 2.57 by
1705         Kristian Kvilekval <kris@cs.ucsb.edu>.
1707 2006-04-01  Stepan Kasal  <kasal@ucw.cz>
1709         * bin/autoupdate.in: Handle m4 builtins and m4sugar macros together--
1710           switch all of them on and of when necessary.  Fixes the bug when
1711           m4sugar macros (e.g., m4_define) were expanded after the first
1712           automatic update (e.g., after AC_PREREQ or AC_INIT).
1714 2006-03-31  Paul Eggert  <eggert@cs.ucla.edu>
1716         * doc/autoconf.texi (Programming in M4sh): Sharpen the descriptions
1717         of AS_BASENAME and AS_DIRNAME.  Reported by Stepan Kasal.
1719         * lib/m4sugar/m4sh.m4 (AS_BASENAME_EXPR): Handle ///, ////, etc.
1720         correctly.  Problem reported by Eric Blake.
1721         (_AS_EXPR_PREPARE): Detect Tru64 expr bug.  Problem reported by
1722         Ralf Wildenhues.
1724 2006-03-30  Paul Eggert  <eggert@cs.ucla.edu>
1726         * doc/autoconf.texi (Programming in M4sh, Limitations of Usual Tools):
1727         Tighten up the basename/dirname wording.
1729 2006-03-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1731         * Makefile.maint (sc_texi_notab): New check: do not use TABs
1732         in texinfo files outside of verbatim environments.
1733         (syntax-check-rules): Update.
1734         * doc/autoconf.texi (Configuration Headers): Conform to it.
1736 2006-03-30  Chris Pickett <cpicke@cs.mcgill.ca>  (tiny change)
1738         * doc/autoconf.texi (autoreconf Invocation): Mention that -I for
1739           aclocal cannot be given on the command line.
1741 2006-03-29  Paul Eggert  <eggert@cs.ucla.edu>
1743         * doc/autoconf.texi (Programming in M4sh): Mention AS_BASENAME.
1744         Give an example for AS_DIRNAME instead of referring to Posix..
1745         (File System Conventions): Put discussion of // versus / here, and
1746         modernize it a bit.
1747         (Limitations of Usual Tools): Add basename.  Remove verbiage
1748         after dirname, since it got moved to the above sections.
1749         All this was inspired by a patch proposed earlier by Eric Blake.
1751 2006-03-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1753         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Quote
1754         `$0' to protect against spaces.
1755         * lib/autotest/general.m4 (AT_INIT): Likewise.
1756         * lib/m4sugar/m4sh.m4 (_AS_LINENO_PREPARE): Likewise, for
1757         `$0', $as_me.
1759 2006-03-26  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1761         * bin/autoscan.in: The value of find_configure_ac should be
1762         checked for existence, so we don't barf over a nonexisting
1763         configure.ac.  Reported by Laurence Darby <ldarby@tuffmail.com>.
1765 2006-03-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1767         * bin/autoupdate.in: Fix some typos.
1769 2006-03-21  Stepan Kasal  <kasal@ucw.cz>
1771         * doc/autoconf.texi (Installation Directory Variables): Fix typo.
1773         * lib/autoscan/autoscan.list: Refreshed.
1775 2006-03-20  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1777         * tests/local.at (AT_CHECK_ENV): Ignore AC_SUBSTed Objective C
1778         and Erlang related variables.
1780         * lib/autoconf/c.m4 (AC_LANG(Objective C), AC_LANG_OBJC)
1781         (_AC_LANG_ABBREV(Objective C), _AC_LANG_PREFIX(Objective C))
1782         (AC_LANG_SOURCE(Objective C), AC_LANG_PROGRAM(Objective C))
1783         (AC_LANG_CALL(Objective C), AC_LANG_FUNC_LINK_TRY(Objective C))
1784         (AC_LANG_BOOL_COMPILE_TRY(Objective C))
1785         (AC_LANG_INT_SAVE(Objective C), AC_LANG_PREPROC(Objective C))
1786         (AC_PROG_OBJCPP, AC_LANG_COMPILER(Objective C), AC_PROG_OBJC)
1787         (_AC_PROG_OBJC_G): New macros.
1788         (_AC_ARG_VAR_CPPFLAGS): Adjusted.
1789         * doc/autoconf.texi (Objective C Compiler): New node.
1790         (Preset Output Variables): Document OBJCFLAGS.
1791         (Language Choice): Document `Objective C' language.
1792         (Fortran Compiler): Fix typo.
1793         * NEWS: Updated.
1794         Inspired by a patch from David M. Lloyd <dmlloyd@tds.net>.
1796 2006-03-20  Stepan Kasal  <kasal@ucw.cz>
1798         * doc/autoconf.texi (Default Includes): Fix typo
1799           s/AC_HEADERS_STDC/AC_HEADER_STDC/
1800         (Limitations of Usual Tools): s/unwriteable/unwritable/
1801         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT, _AC_COMPILER_EXEEXT):
1802           Fix typos in the comments.
1804 2006-03-17  Stepan Kasal  <kasal@ucw.cz>
1806         * lib/autoconf/programs.m4 (AC_PATH_TOOL, AC_CHECK_TOOL, AC_CHECK_TOOLS):
1807           Factor out the warning to...
1808         (_AC_TOOL_WARN): ... this new macro; use `cross_compiling'.
1809         * tests/local.at (AT_CHECK_MACRO_CROSS): Avoid this warning.
1810         * tests/semantics.at (AC_C_BIGENDIAN): Likewise.
1812         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE): Do not special
1813           case `ac_delim' when writing the sed script.
1815         * lib/m4sugar/m4sh.m4 (AS_BOURNE_COMPATIBLE): Removed BIN_SH=xpg4,
1816           moved DUALCASE=1 ...
1817         (AS_SHELL_SANITIZE): ... here.
1818         * doc/autoconf.texi (Special Shell Variables) <BIN_SH>: Do not say
1819           that it is set.
1821         * lib/autoconf/programs.m4 (AC_CHECK_PROG): Quote the parameter of
1822           AC_SUBST.
1823         (_AC_PATH_PROG): Store the result to VARIABLE.
1824         (AC_PATH_PROG): No need to set VARIABLE again.
1826         * tests/local.at (AT_CHECK_MACRO_CROSS): New macro, creates two tests:
1827           the first one is usual AT_CHECK_MACRO test, the second one checks
1828           that the same works when cross-compiling.
1829         * tests/semantics.at (AC_CHECK_ALIGNOF, AC_CHECK_ALIGNOF struct):
1830         (AC_CHECK_SIZEOF, AC_CHECK_SIZEOF struct): Use it.
1832 2006-03-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1834         * lib/m4sugar/m4sh.m4 (_AS_DETECT_BETTER_SHELL): Prepend
1835         the directory `/usr/bin/posix' in the shell search, to prefer
1836         the Posix shell not only in subsequent spawns as with `$BIN_SH'
1837         on Tru64.
1839         * doc/autoconf.texi (contents): To fix texi2html output, hide
1840         `@setcontentsaftertitlepage' for HTML.
1841         (Writing Autoconf Macros): Likewise, insert space after `@c'.
1842         (Leviticus, Numbers, Deuteronomy): Likewise, change `@,c' to
1843         `@,{c}'.
1845 2006-03-16  Stepan Kasal  <kasal@ucw.cz>
1847         * lib/m4sugar/m4sh.m4 (_AS_PREPARE): Move the IFS setup and CDPATH
1848           sanitizing...
1849         (AS_SHELL_SANITIZE): ...here; mention _AS_PATH_WALK needs IFS set.
1850         * lib/autoconf/general.m4 (_AC_CANONICAL_SPLIT): Add an explanation
1851           why IFS is restored so late; thank you, Ralf, for reminding us.
1853 2006-03-15  Stepan Kasal  <kasal@ucw.cz>
1855         * doc/autoconf.texi (Pretty Help Strings): No need to use cached
1856           variables in the examples.
1858 2006-03-14  Romain Lenglet  <rlenglet@users.forge.objectweb.org>
1860         * doc/autoconf.texi (several sections): Cleaned up documentation for
1861         macros in erlang.m4.
1863 2006-03-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1865         * tests/autotest.at (AT_NO_CMDSUBST): New macro to determine
1866         failure condition for `$(cmd)' style command substitutions.
1867         (Parenthetical command substition, Multiline parenthetical
1868         command substition): Use it.
1870         * doc/autoconf.texi (Special Shell Variables): Missing word.
1871         Reported by Keith Marshall <keith.marshall@total.com>.
1873         * lib/m4sugar/m4sh.m4 (_AS_PATH_WALK): Do not forget to reset
1874         IFS even in case of empty `$PATH'.
1876 2006-03-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1878         * lib/autotest/general.m4 (AT_INIT) <at_optarg>: Optimize
1879         `expr' away if there is nothing to do.
1880         < --keywords >: Simplify and robustify argument handling.
1881         Revert erroneous comment from 2005-08-23.  Extend to allow
1882         keyword negation with `!'.
1883         Update help message.  Remove broken code to prevent running
1884         tests multiple times.
1885         * doc/autoconf.texi (testsuite Invocation) < --keywords >:
1886         Update and fix the documentation accordingly.
1887         * tests/autotest.at (Keywords): Renamed to..
1888         (Keywords and ranges): .. this.  Extended to make sure negated
1889         keywords, keywords taken from AT_SETUP arguments, and numeric
1890         test ranges work, and that matching is case-insensitive.
1892 2006-03-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1894         * lib/autoconf/types.m4 (_AC_CHECK_TYPE_NEW): Use a typedef to
1895         allow to pass unnamed structs even in C++.
1896         (AC_CHECK_SIZEOF):  Likewise.
1897         Also fix quoting error in `AC_MSG_FAILURE' arguments.
1898         * tests/semantics.at (AC_CHECK_ALIGNOF struct, AC_CHECK_SIZEOF
1899         struct): New tests for unnamed structs, each both native and
1900         cross-compiling.
1902         * lib/autoconf/c.m4 (AC_C_TYPEOF): Use typedef to avoid defining
1903         a structure inside a cast, for C++ conformance.
1904         * lib/autoconf/types.m4 (AC_CHECK_ALIGNOF): Likewise.
1905         Also fix quoting error in `AC_MSG_FAILURE' arguments.
1907         * lib/autoconf/c.m4 (AC_PROG_CC_STDC): If we cannot enable C99
1908         nor C89 mode, set `$ac_cv_prog_cc_stdc' to `no' instead of
1909         trying to execute the command `no'.
1911         * lib/autoconf/lang.m4 (AC_LANG_CONFTEST): AC_DEFUN this, not
1912         m4_define, so that the requirements of `AC_INCLUDES_DEFAULT' are
1913         expanded outside.
1915         * doc/autoconf.texi (autoconf Invocation): Fix typos in trace
1916         example.  Do not emphasize `$%', it is hardly new and special.
1917         Reported by Edouard Bechetoille <ebecheto@ens-lyon.fr>.
1919         * doc/autoconf.texi (Limitations of Usual Tools): Document
1920         OpenBSD and traditional `grep' failure to handle multiple
1921         patterns separated by newlines.
1923 2006-03-10  Romain Lenglet  <rlenglet@users.forge.objectweb.org>
1925         * doc/autoconf.texi (several sections): Add documentation for macros
1926         in erlang.m4.
1928 2006-03-10  Eric Blake  <ebb9@byu.net>
1930         * doc/autoconf.texi (Obsolete Macros): Fix wording of
1931         AC_TRY_LINK_FUNC.
1933 2006-03-10  Paul Eggert  <eggert@cs.ucla.edu>
1935         * doc/autoconf.texi: Use @acronym more consistently for acronyms
1936         like BSD, GPL, LGPL.  Fix minor English typos.
1937         (AC_STDC_HEADERS, AC_PROG_GCC_TRADITIONAL):
1938         Mention that these macros are becoming obsolete.
1939         (AC_STDC_HEADERS, AC_PROG_CC, AC_C_CONST, AC_C_VOLATILE):
1940         Use more modern terminology for which standard is what.
1941         (AC_PROG_CC): Mention gcc first, and remove obsolete references to egcs
1942         and to ansi2knr.
1943         (AC_PROG_CXX): Likewise.
1944         (AC_C_PROTOTYPES, Test Functions, AC_LIBOBJ vs LIBOBJS):
1945         Remove obsolete discussion about how to port to K&R.
1946         (Guidelines for Test Programs): Suggest AC_HEADER_STDBOOL rather than
1947         the obsolescent AC_HEADER_STDC.
1948         (AC_FOO_IFELSE vs AC_TRY_FOO): Don't use #error; test programs
1949         can't rely on it.
1951 2006-03-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1953         * tests/c.at (AC_PROG_CPP without warnings, AC_PROG_CPP via CC):
1954         Remove stdin redirection from /dev/null to allow pipe to work.
1956 2006-03-08  Paul Eggert  <eggert@cs.ucla.edu>
1958         * tests/c.at (AC_PROG_CPP without warnings, AC_PROG_CPP via CC):
1959         Require that /lib/cpp include stdio.h correctly.  Solaris 10's
1960         doesn't.  Problem reported by D'Arcy A MacIsaac and diagnosed by
1961         Ralf Wildenhues.
1963 2006-03-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1965         * lib/autoconf/status.m4 (_AC_SED_CMD_LIMIT): The limit for
1966         HP-UX sed is 99 commands, not 100.
1967         (_AC_OUTPUT_FILES_PREPARE): Do not count the `}' of an
1968         _AC_SUBST_FILES fragment.  Separate `{' and `r' commands by
1969         newline for portability.
1970         * tests/torture.at (Torturing config.status): Also test 100
1971         AC_SUBST_FILE invocations.  Fix test to actually verify the
1972         AC_CONFIG_FILES output.
1973         * doc/autoconf.texi (Limitations of Usual Tools): Document HP-UX
1974         command, label, and read-file `r' limits.  Unify HP-UX spelling.
1976         * tests/Makefile.am (edit, $(wrappers)): Do not use `$<' in
1977         non-suffix rule.
1978         ($(TESTSUITE_GENERATED_AT)): Use `$(srcdir)` for the benefit of
1979         non-GNU make.
1980         (autoconfdir, $(AUTOCONF_FILES)): Likewise.
1981         * tests/mktests.sh: Small shell portability fixes.
1983 2006-03-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1985         * doc/autoconf.texi (Caching Results): Fix the examples to use a
1986         recommended quoting style and discard unwanted output.
1988 2006-03-05  Paul Eggert  <eggert@cs.ucla.edu>
1990         * lib/autotest/general.m4 (_AT_NORMALIZE_TEST_GROUP_NUMBER): New macro.
1991         (AT_INIT): Use it, to remove arbitrary limit of 999,999 test
1992         cases, and to work around Tru64 expr bug.
1994 2006-03-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1996         * doc/autoconf.texi (Limitations of Usual Tools): Mention Tru64
1997         expr bug that turns the result of a regex match into a number if
1998         possible.
2000 2006-03-04  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2002         * lib/autoconf/types.m4 (AC_CHECK_ALIGNOF): Work around
2003         HPUX compiler bug, similarly to AC_CHECK_SIZEOF, as documented
2004         in section `Specific Compiler Characteristics'.
2006 2006-03-04  Eric Blake  <ebb9@byu.net>
2008         * lib/autoconf/functions.m4 (AC_FUNC_STRERROR_R): Avoid unused
2009         variable warning.
2011 2006-03-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2013         * lib/autoconf/status.m4 (_AC_OUTPUT_HEADER): Force correct
2014         order of variable initialization, so even the Solaris 2.6 shell
2015         can create a config header correctly.  Fixes lots of test suite
2016         failures.
2018 2006-02-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2020         * doc/autoconf.texi (Text processing Macros): New node to
2021         document the m4sugar macros m4_re_escape, m4_tolower,
2022         m4_toupper, m4_split, m4_normalize, m4_append, m4_append_uniq.
2024 2006-02-22  Paul Eggert  <eggert@cs.ucla.edu>
2026         * lib/autoconf/libs.m4 (_AC_PATH_X_DIRECT): Fix typo:
2027         XrmInitialize (0) -> XrmInitialize ().
2028         Reported by Toshio Kuratomi.
2030 2006-02-21  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2032         * lib/m4sugar/m4sh.m4 (AS_IF): Extend to allow more than one
2033         test, as in `if tests; then cmd1; elif ...; else ...; fi'.
2034         * doc/autoconf.texi (Programming in M4sh): Adjusted.
2035         * tests/m4sh.at (AS_IF and AS_CASE): Test this.  Also make sure
2036         both macros are defun'ed so that required macros are evaluated
2037         outside.
2039         * doc/autoconf.texi (Prerequisite Macros): State more precisely
2040         where a required macro will be expanded.
2041         (Coding Style): Another reason not to use `m4_define'.
2043 2006-02-21  Eric Blake  <ebb9@byu.net>
2045         * lib/autoconf/general.m4 (_AC_LIBOBJ): Minor optimization.
2047 2006-02-20  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2049         * doc/autoconf.texi (Looping constructs): New node, to
2050         document m4_for, m4_foreach, m4_foreach_w, and mention
2051         obsolete AC_FOREACH.
2052         (Obsolete Macros): Document AC_FOREACH.
2053         * lib/m4sugar/m4sugar.m4 (_m4_for): Fix declaration comment.
2054         (m4_for): Fix to never loop (almost) endlessly, work correctly
2055         with arithmetic expressions in arguments, a step of zero or
2056         non-integer multiple of the interval, and avoid integer
2057         overflow.
2058         * tests/m4sugar.at: New test for m4_for, m4_foreach, and
2059         m4_foreach_w.
2061 2006-02-20  Romain Lenglet  <rlenglet@users.forge.objectweb.org>
2063         Add basic support for Erlang, both for configuring Erlang/OTP
2064         tools, and Erlang as a conf test language.
2065         * lib/autoconf/erlang.m4: New file.
2066         * lib/autoconf/autoconf.m4: Add erlang.m4.
2067         * lib/autoconf/Makefile.am (dist_autoconflib_DATA): Likewise.
2068         * lib/freeze.mk (autoconf_m4f_dependencies): Likewise.
2069         * NEWS: Add short description of new macros.
2070         * THANKS: Add Romain Lenglet.
2072 2006-02-20  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2074         * doc/autoconf.texi (Shellology) <pdksh>: Document that pdksh as
2075         native /bin/sh may not set KSH_VERSION (seen on OpenBSD).
2077 2006-02-15  Eric Blake  <ebb9@byu.net>
2079         * lib/autoconf/general.m4 (AC_CHECK_DECL): Avoid unused variable
2080         warning.
2082 2006-02-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2084         * lib/m4sugar/m4sh.m4 (AS_CASE): New macro.
2085         (_AS_CASE): Private helper macro.
2086         * tests/m4sh.at: Basic tests for AS_IF and AS_CASE.
2087         * doc/autoconf.texi (Programming in M4sh): Document AS_CASE.
2088         Fix syntax of AS_IF description
2089         (Prerequisite Macros): Mention AS_IF and AS_CASE as workarounds
2090         for the AC_REQUIRE mess.
2091         * NEWS: Mention AS_CASE, AS_BOURNE_COMPATIBLE, and
2092         AS_SHELL_SANITIZE.
2094 2006-02-14  Paul Eggert  <eggert@cs.ucla.edu>
2096         * doc/autoconf.texi: Minor style cleanup.
2097         Be consistent about spaces after commas.
2098         Insert [] where empty args look a bit funny.
2099         Fix some "i.e." and "e.g." usages.
2100         Try to avoid "X/Y" usages.
2101         Don't be pedantic about "ISO C99"; just say C99.
2102         Prefer GNU style for spaces in front of parens.
2103         (Function Portability): Comment about C89 versus C99
2104         signed integer division.
2105         (Particular Headers): Use current gnulib style for dirent
2106         includes.
2108 2006-02-14  Stepan Kasal  <kasal@ucw.cz>
2109         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2111         * bin/autoupdate.in (handle_autoconf_macros): Fix updating of
2112         macros without parameters.
2113         * lib/autoconf/autoupdate.m4 (AU_ALIAS): Likewise.
2114         * doc/autoconf.texi (Obsoleting Macros): Document AU_ALIAS.
2115         * tests/tools.at (autoupdating AU_ALIAS): New test for AU_ALIAS
2116         `$#' bug.
2117         (autoupdate): Updated to match AU_ALIAS fix.
2119 2006-02-13 Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2120         and Paul Eggert  <eggert@cs.ucla.edu>
2122         * doc/autoconf.texi (Programming in M4sh): Document
2123         AS_BOURNE_COMPATIBLE and AS_SHELL_SANITIZE.
2125 2006-02-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2127         * lib/m4sugar/m4sh.m4 (_AS_BOURNE_COMPATIBLE): Renamed to..
2128         (AS_BOURNE_COMPATIBLE): ..this.
2129         (_AS_RUN, AS_SHELL_SANITIZE): Adjusted all callers.
2131 2006-02-12  Paul Eggert  <eggert@cs.ucla.edu>
2133         * doc/install.texi (Defining Variables): Tighten up the
2134         CONFIG_SHELL wording.
2136 2006-02-12 Paul Eggert  <eggert@cs.ucla.edu>
2137         and Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2139         * lib/m4sugar/m4sh.m4 (_AS_BOURNE_COMPATIBLE): Look at the output
2140         of (set -o) rather than testing whether (set -o posix) succeeds,
2141         to work around a bug in the AIX 5.3 shell.  Problem originally
2142         reportd by Howard Chu for libtool.
2144 2006-02-10  J.T. Conklin  <jtc@acorntoolworks.com>
2146         * doc/autoconf.texi (Running the Compiler, Running the Linker):
2147         Changes the macro arguments in summaries to match the
2148         descriptions.
2150 2006-02-04  Stepan Kasal  <kasal@ucw.cz>
2152         * doc/install.texi (Defining Variables): Classify the `CONFIG_SHELL'
2153         hint as ``a workaround for a bug.''
2155 2006-01-31  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2157         * bin/autoreconf.in: New option `--no-recursive'.
2158         Improve wording for subpackages a bit.
2159         * doc/autoconf.texi (autoreconf Invocation): Updated.
2160         * NEWS: Updated.
2162         * doc/install.texi (Defining Variables): Put `CONFIG_SHELL'
2163         in environment of `configure', not the command line.
2164         Reported by Howard Chu <hyc@highlandsun.com>.
2166 2006-01-25  Paul Eggert  <eggert@cs.ucla.edu>
2168         * doc/autoconf.texi (Limitations of Builtins): Document the
2169         problem with "trap -".
2171 2006-01-23  Steven G. Johnson  <stevenj@fftw.org>
2173         * lib/autoconf/fortran.m4 (_AC_FC_LIBRARY_LDFLAGS, _AC_FC_DUMMY_MAIN):
2174         (_AC_FC_MAIN, __AC_FC_NAME_MANGLING): Use _AC_LANG in check
2175         messages to differentiate Fortran and Fortran 77 tests.
2176         (AC_FC_SRCEXT, AC_FC_FREEFORM): Use AC_LANG_PUSH/POP instead of
2177         AC_LANG_ASSERT, to allow use in mixed-language projects.
2179 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
2181         * lib/autoconf/c.m4 (AC_LANG_FUNC_LINK_TRY(C)): Prefer "defined
2182         FOO" to "defined (FOO)".
2183         * lib/autoconf/functions.m4 (_AC_LIBOBJ_ALLOCA): Likewise.
2184         * lib/autoconf/headers.m4 (AC_HEADER_STAT): Likewise.
2185         * lib/autoconf/specific.m4 (AC_XENIX_DIR): Likewise.
2186         * tests/tools.at (ifnames): Likewise.
2188 2006-01-21  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2190         * lib/m4sugar/m4sh.m4 (AS_TMPDIR): Do not pass `-q' to mktemp.
2191         * lib/Autom4te/General.pm (mktmpdir): Likewise.
2192         (END): Improve error message a bit.
2193         Reported by Bruce Korb <bkorb@gnu.org>.
2195 2006-01-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2197         * lib/autoconf/fortran.m4 (_AC_FC_LIBRARY_LDFLAGS): Ignore
2198         `-LIST:' and `-LNO:', for PathScale 2.3 compilers.
2200 2006-01-11  Stepan Kasal  <kasal@ucw.cz>
2202         * doc/autoconf.texi (Header Portability): On Solaris 8, sys/ptem.h
2203         requires sys/stream.h.  Reported by Oliver Kiddle.
2205 2006-01-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2206             Stepan Kasal  <kasal@ucw.cz>
2208         * lib/autotest/general.m4 (AT_INIT): When ensuring writability
2209         before the removals of test dirs, use `find' to avoid modification
2210         of symlinked directories.
2212 2006-01-11  Steven G. Johnson  <stevenj@alum.mit.edu>
2214         * lib/autoconf/fortran.m4 (AC_F77_DUMMY_MAIN, AC_FC_DUMMY_MAIN):
2215         Don't ignore the macro arguments.
2217 2006-01-11  David Thompson  <dthompsn@vizsolutions.com>
2219         * lib/autoconf/c.m4 (_AC_PROG_CXX_EXIT_DECLARATION): Add `exit'
2220         declaration that works for MSVC.
2222 2006-01-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2224         * lib/autoconf/lang.m4 (_AC_COMPILER_OBJEXT_REJECT):
2225         Add `*.map' and `.inf' for Green Hills compiler.
2226         Reported by Stefan Seefeld <stefan@codesourcery.com>.
2228         * lib/m4sugar/m4sugar.m4 (m4_text_wrap): Handle quadrigraphs
2229         correctly: pad with spaces after FIRST_PREFIX if necessary,
2230         and compute string lenghts with `m4_qlen' instead of `m4_len'.
2231         * lib/m4sugar/m4sh.m4 (AS_HELP_STRING): Comments updated.
2232         * tests/m4sh.at (AS_HELP_STRING): Test extended.
2233         * NEWS: Updated.
2234         Reported by numerous people, numerous times.
2236 2006-01-05  Paul Eggert  <eggert@cs.ucla.edu>
2238         * bin/autoconf.as, bin/autoheader.in, bin/autom4te.in
2239         * bin/autoreconf.in, bin/autoscan.in, bin/autoupdate.in, bin/ifnames.in:
2240         * lib/autoconf/general.m4, lib/autoconf/status.m4:
2241         * lib/autotest/general.m4, tests/local.at:
2242         Update copyright year to 2006.
2244         * Makefile.maint (sc_root_tests): Use the recommended style s/a/b/ for
2245         sed substitutions.
2246         * doc/autoconf.texi (Installation Directory Variables): Use s|a|b|
2247         for file names, again.  Reported by Noah Misch.
2248         (Coding Style): Explain that s|a|b| is preferred for file names.
2249         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE): Prefer s/a/b/.
2250         (AC_OUTPUT_MAKE_DEFS): Likewise.
2251         * lib/autotest/general.m4 (AT_INIT): Likewise.
2252         * lib/m4sugar/m4sh.m4 (_AS_LINENO_PREPARE): Likewise.
2253         * tests/local.at (AT_CHECK_AUTOM4TE): Likewise.
2255         Fix Posix-conformance bugs re use of { command in sed scripts,
2256         and improve the sed-related documentation a bit.
2257         * doc/autoconf.texi (Installation Directory Variables): Use
2258         our own style advice re 's,a,b,' versus 's|a|b|'.  Use "Sed"
2259         rather than "sed" when talking about Sed in general.
2260         (Particular Programs): Likewise.
2261         (Coding Style): y is like s with respect to / and ,.
2262         (Limitations of Usual Tools): Document the weird restrictions
2263         that Posix has about { }.  Use better quoting.
2264         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE, _AC_OUTPUT_HEADER):
2265         Rewrite to conform to Posix rules about { } in sed scripts.
2266         * lib/m4sugar/m4sh.m4 (AS_DIRNAME_SED, AS_BASENAME_SED): Likewise.
2267         * tests/foreign.at (Libtool): Likewise.
2268         * tests/semantics.at (AC_CHECK_PROG & AC_CHECK_PROGS):
2269         Use our own style advice re 's,a,b,' versus 's|a|b|'.
2271 2006-01-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2273         * lib/autoconf/status.m4: Fix typo.
2275         * lib/autoconf/fortran.m4 (_AC_FC_LIBRARY_LDFLAGS): Ignore
2276         singly- or doubly-quoted arguments to `-cmdline', `-ignore',
2277         `-def', for the benefit of Portland `pgf90 -Mipa'.
2278         Reported by Christopher Hulbert <cchgroupmail@gmail.com>.
2280 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
2282         * doc/autoconf.texi: Update copyright (and other) dates to 2006.
2283         * doc/autoconf.texi (Shellology): Mac OS X 10.2 changed the default
2284         shell from zsh to bash.
2286 2005-12-31  Stepan Kasal  <kasal@ucw.cz>
2288         * lib/autoconf/programs.m4 (_AC_PROG_GREP): Use $PATH_SEPARATOR;
2289           ":" caused problems on OS/2-EMX.  Suggested by Andrew Belov.
2291 2005-12-29  Paul Eggert  <eggert@cs.ucla.edu>
2293         * doc/autoconf.texi (Shell Substitutions): Warn about unbalanced
2294         parentheses in $(...).  Problem reported by Eric Blake.
2296 2005-12-12  Paul Eggert  <eggert@cs.ucla.edu>
2298         * doc/autoconf.texi (Limitations of Usual Tools):
2299         Mention which characters can be escaped with \ in portable regular
2300         expressions used in grep, sed, expr.  Mention the leading ^ problem
2301         with expr.  Clean up some confusing wording.  Mention which
2302         grep options are portable.
2304 2005-12-09  Stepan Kasal  <kasal@ucw.cz>
2306         * tests/local.at (AT_CHECK_AUTOM4TE): Fix typo in the comment.
2308 2005-12-02  Paul Eggert  <eggert@cs.ucla.edu>
2310         * doc/autoconf.texi (Limitations of Builtins): Fix typos in previous
2311         patch, noted by Ralf Wildenhues.
2313 2005-12-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2315         * lib/m4sugar/m4sh.m4 (_AS_BOURNE_COMPATIBLE): Try `set -o
2316         posix' unconditionally, for pdksh in `native sh' emulation.
2318 2005-12-01  Paul Eggert  <eggert@cs.ucla.edu>
2320         * doc/autoconf.texi (Shellology): Document eval $? problem
2321         with ash.
2322         (Limitations of Builtins): Likewise.
2324 2005-11-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2326         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Pass
2327         CONFIG_SHELL in the environment of the configure rerun.
2328         * doc/autoconf.texi (Here-Documents, config.status Invocation):
2329         Suggest passing CONFIG_SHELL absolute, and in the environment
2330         rather than as option.
2332 2005-11-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2334         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE):
2335         Fix quoting of output line (triggered for many AC_SUBST_FILEs).
2336         Fix macro quoting.  Fix output for n * 98 substituted variables.
2338 2005-11-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2340         * lib/autoconf/status.m4 (_AC_OUTPUT_MAIN_LOOP): Initialize
2341         `tmp' to avoid file removal race.
2343 2005-11-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2345         * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS): Initialize
2346         ac_clean_files and LIBOBJS.
2348 2005-11-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2350         * lib/autoconf/programs.m4 (AC_CHECK_PROG, AC_PATH_PROG):
2351         Factor functionality to..
2352         (_AC_CHECK_PROG, _AC_PATH_PROG): these new macros, but only
2353         `AC_SUBST($1)' in the public version.
2354         (AC_CHECK_TOOL, AC_PATH_TOOL, AC_PATH_TARGET_TOOL)
2355         (AC_CHECK_TARGET_TOOL): Use internal versions for ac_ct_* and
2356         ac_pt_* variables.
2358 2005-11-01  Stepan Kasal  <kasal@ucw.cz>
2360         * lib/autoconf/c.m4 (AC_PROG_CC_C_O): Remove the comment about 8+3
2361         filesystems.
2363 2005-11-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2365         * NEWS: Move AH_HEADER mention to right place.
2367 2005-10-27  Stepan Kasal  <kasal@ucw.cz>
2369         * lib/autoconf/c.m4 (AC_PROG_CC_C_O): "conftst2" -> "conftest2"
2370         * lib/autoconf/fortran.m4 (_AC_PROG_FC_C_O): Likewise.
2372 2005-10-25  Stepan Kasal  <kasal@ucw.cz>
2374         * lib/autoconf/c.m4 (AC_PROG_CC_C_O): rm -f conftst2.*, not only
2375         conftst2.$ac_objext.
2376         * lib/autoconf/fortran.m4 (_AC_PROG_FC_C_O): Likewise.
2378 2005-10-24  Stepan Kasal  <kasal@ucw.cz>
2380         * lib/autoconf/c.m4 (AC_PROG_CC_C_O): Use conftst2.o instead of
2381         conftest.o, to see whether the compiler really obeys; rm the object
2382         file before and after the test and register it with ac_clean_files.
2383         * lib/autoconf/fortran.m4 (_AC_PROG_FC_C_O): Likewise.
2385 2005-10-21  Stepan Kasal  <kasal@ucw.cz>
2387         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES_PREPARE): When determining,
2388         the delimiter CEOF$ac_eof: fix quoting of CEOF[0-9]* and modify the
2389         code so that the most common case requires less forks.
2391 2005-10-20  Stepan Kasal  <kasal@ucw.cz>
2393         * doc/autoconf.texi (Shell Substitutions}: Document that ${10} is
2394         not portable; thanks to Paul Eggert and Alexandre.
2396         * NEWS: Fix an old typo.
2398 2005-10-20  Jim Meyering  <jim@meyering.net>
2400         * doc/autoconf.texi: Typo: s/feature/features/ in ``the features of
2401         the latter'', in two places.
2403 2005-10-19  Paul Eggert  <eggert@cs.ucla.edu>
2405         * doc/autoconf.texi (Generating Sources): AC_LANG_PROGRAMS ->
2406         AC_LANG_PROGRAM, fixing a typo.  Don't give details about
2407         the inner workings of AC_LANG_FUNC_LINK_TRY.
2408         * lib/autoconf/c.m4 (AC_LANG_CALL(C)): Reformat to match
2409         AC_LANG_FUNC_LINK_TRY.  This involves returning the value returned
2410         by the function rather than ignoring it.
2411         (AC_LANG_FUNC_LINK_TRY(C)): Call the function rather than simply
2412         comparing its address.  Intel's interprocedural optimization was
2413         outsmarting the old heuristic.  Problem reported by
2414         Mikulas Patocka.
2416 2005-10-19  Stepan Kasal  <kasal@ucw.cz>
2418         * lib/autoconf/general.m4 (AC_SUBST): Remove an obsolete comment.
2420 2005-10-05  Paul Eggert  <eggert@cs.ucla.edu>
2422         * lib/m4sugar/m4sugar.m4 (_m4_map): New macro.
2423         (m4_map, m4_map_sep): Use it.  Handle the empty list correctly.
2425 2005-10-04  Stepan Kasal  <kasal@ucw.cz>
2427         * lib/autotest/general.m4 (AT_INIT): Really make the subtree writable
2428         before removing it (chmod -R u+rwx); there are three instances of this.
2430 2005-10-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2431             Stepan Kasal  <kasal@ucw.cz>
2433         * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): Balance parentheses.
2434         * lib/autotest/general.m4 (AT_INIT): If the test dir already exists,
2435         make its content writable before removing it.  Remove an errorneous
2436         comment from the end, where the logs of the failed tests are copied
2437         to the main log file.
2439 2005-09-27  Stepan Kasal  <kasal@ucw.cz>
2441         * tests/semantics.at (AC_C_BIGENDIAN): Pass --force to autoheader,
2442           in case the computer is too quick.  Double quote the configure.ac
2443           snippets.
2445         * tests/local.at (AT_CHECK_AUTOCONF): Always pass --force to prevent
2446           problems if the testsuite were running too fast.
2448 2005-09-18  Paul Eggert  <eggert@cs.ucla.edu>
2450         * lib/autoconf/libs.m4 (_AC_PATH_X_DIRECT): Look for X11/Xlib.h
2451         and XrmInitialize rather than X11/Intrinsic.h and XtMalloc
2452         (which belong to Xt, not X itself).  See Debian bug 327655.
2453         * NEWS: Mention this.
2455 2005-09-07  Stepan Kasal  <kasal@ucw.cz>
2457         * lib/autoconf/c.m4 (AC_LANG_SOURCE(C)): Remove an incorrect comment.
2459 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
2461         * config/move-if-change: Don't output "$2 is unchanged";
2462         suggested by Ben Elliston.  Handle weird characters correctly.
2464 2005-09-06  Stepan Kasal  <kasal@ucw.cz>
2466         * lib/autoconf/libs.m4 (AC_SEARCH_LIBS): Merge the two AC_LINK_IFELSE
2467           calls, so that the final expansion of this macro is shorter.
2468           Create the conftest.$ac_ext outside the `for' loop, to speed the run.
2469           Do not use `break' in the argument to AC_LINK_IFELSE, it would skip
2470           the cleanup there.  Use AS_VAR_* macros, to be more general.
2471         * tests/semantics.at (AC_SEARCH_LIBS): Check for the cleanup.
2473         * lib/autoconf/general.m4: Use AS_IF where appropriate.
2475         * lib/m4sugar/m4sh.m4 (AS_IF): Use m4_default.
2477 2005-09-01  Stepan Kasal  <kasal@ucw.cz>
2479         * doc/autoconf.texi (Configuration Headers): Add an index entry
2480           for AH_HEADER.
2482 2005-08-26  Pavel Roskin  <proski@gnu.org>
2484         * lib/autoconf/libs.m4 (_AC_PATH_X_XMKMF): Use shell variable
2485         XMKMF to locate xmkmf.  Make XMKMF precious.  Export CC when
2486         running xmkmf.
2488 2005-08-26  Paul Eggert  <eggert@cs.ucla.edu>
2490         * lib/m4sugar/m4sh.m4 (_AS_VERSION_COMPARE_PREPARE):
2491         The previous patch didn't work, so try a better one.
2493 2005-08-26  Stepan Kasal  <kasal@ucw.cz>
2495         * doc/autoconf.texi (Programming in M4sh) <AS_TR_CPP>: Fix m4 quoting
2496         in the example.  Reported by Bruno Haible.
2497         <AS_TR_SH>: Likewise.  Also modify the example to be more convincing:
2498         "if $undefined_var;" succeeds with my shell.
2500         * lib/autoconf/general.m4 (AC_CANONICAL_BUILD, AC_CANONICAL_HOST,
2501         AC_CANONICAL_TARGET): Define by AC_DEFUN, no need to use AC_DEFUN_ONCE;
2502         but change the m4_divert_text to m4_divert_once.
2504 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
2506         * lib/m4sugar/m4sh.m4 (_AS_VERSION_COMPARE_PREPARE):
2507         Work around bug in Solaris /usr/xpg4/bin/awk.
2508         The bug is present in at least Solaris 8 through 10.
2510 2005-08-24  Stepan Kasal  <kasal@ucw.cz>
2512         * lib/autoconf/general.m4 (_AC_CANONICAL_SPLIT): Simplify; rejecting
2513         some evil values and relying on the fact that $* concatenates the
2514         parameters by the first character from IFS.
2516 2005-08-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>,
2517             Stepan Kasal  <kasal@ucw.cz>
2519         * lib/autoconf/status.m4 (_AC_CONFIG_REGISTER_DEST): When the
2520         first header appears, define AH_HEADER.
2521         * doc/autoconf.texi (Configuration Headers): Document AH_HEADER.
2522         Update limitations about when to call AC_CONFIG_HEADERS.
2523         (Configuration Commands): Document that AC_CONFIG_COMMANDS_PRE
2524         parameter can call AC_SUBST, AC_DEFINE, or AC_CONFIG_FOOS; explain
2525         that AC_CONFIG_COMMANDS_PRE and AC_CONFIG_COMMANDS_POST are not
2526         ``Configuration Actions''; fix their index entries.
2528         * lib/autotest/general.m4 (AT_INIT): Process multiple keywords
2529         options correctly.  Process N-M as M-N if M is smaller than N.
2530         Process ranges correctly so that N-N will run only N.
2531         Sort and uniquify the tests that will be run.  If there is more
2532         than one test, reinsert the banners for the tests.
2533         * tests/autotest.at (Keywords): Unmark XFAIL.
2535 2005-08-23  Stepan Kasal  <kasal@ucw.cz>
2537         * lib/autoconf/general.m4 (_AC_DEFINE_Q): Strip the parameter list
2538           before passing the macro name to AH_TEMPLATE.
2540         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): config.status
2541           now opens log after option processing; in particular, --version
2542           and --help do not touch config.log.
2544         * Makefile.maint: Revert the change from 2005-08-12.
2546 2005-08-22  Stepan Kasal  <kasal@ucw.cz>
2548         * lib/autoconf/general.m4 (AC_ARG_ENABLE, AC_ARG_WITH): Factor out
2549           common code to...
2550         (_AC_ENABLE_IF, _AC_ENABLE_IF_ACTION): ... these new macros.
2552 2005-08-21  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2554         * doc/autoconf.texi (Using Autotest, testsuite Scripts)
2555         (Autotest Logs, Writing testsuite.at, testsuite Invocation):
2556         Language cleanup.
2558         * doc/autoconf.texi (Defining Symbols, Changed Results):
2559         Prepend to LIBS, not append, in examples.
2561 2005-08-16  Stepan Kasal  <kasal@ucw.cz>
2563         When building in place, set srcdir="."; suggested by Tim Van Holder.
2565         * lib/autoconf/general.m4 (_AC_INIT_SRCDIR): Do this; to recognize
2566           build in place, we need ac_pwd, and thus have to AC_REQUIRE ...
2567         (_AC_INIT_DIRCHECK): ... this macro and AC_DEFUN both of them.
2568         * lib/autoconf/status.m4 (_AC_SRCDIRS): Fix a comment: srcdir="."
2569           does not mean "no --srcdir option".
2571 2005-08-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2573         * tests/autoscan.at (autoscan): New file.
2574         * tests/suite.at: Use it.
2575         * tests/Makefile.am (TESTSUITE_HAND_AT): Add it.
2576         Reported against Libtool by Gideon Go <gideon.go@gmail.com>.
2578         * tests/autotest.at (Keywords): Test keywords combinations.
2580 2005-08-12  Stepan Kasal  <kasal@ucw.cz>
2582         * Makefile.maint (GZIP_ENV): When checking the help text of gzip,
2583           add "2>&1"; gzip 1.2.4 prints help on stderr.
2585 2005-07-27  Stepan Kasal  <kasal@ucw.cz>
2587         * lib/autotest/general.m4 (_AT_DECIDE_TRACEABLE): The symbol at_reason
2588         was pushdef'ed twice while popped only once.  Push it only once.
2589         (_AT_CHECK): Cosmetic changes to the "case $at_status" command.
2591 2005-07-26  Stepan Kasal  <kasal@ucw.cz>
2593         * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): The message is now
2594         prefixed by mere "===", not "configure: === ".
2596 2005-07-25  Paul Eggert  <eggert@cs.ucla.edu>
2598         * Makefile.maint: Update from Bison.
2600         * lib/m4sugar/m4sugar.m4 (m4_strip): Comment fix---change tab to
2601         "<tab>" in comment, so that the point is understandable.
2603 2005-07-25  Stepan Kasal  <kasal@ucw.cz>
2605         Rewrite substantial part of lib/autoconf/status.m4.
2606         The main change is that CONFIG_FILES, CONFIG_HEADERS, CONFIG_LINKS,
2607         and CONFIG_COMMANDS are not processed in four separate loops.
2608         Instead, there is one main loop.  This alows that the common code
2609         is expanded only once, thus config.status (and configure) is smaller.
2611         The registration mechnism in AC_CONFIG_FILES and cousins also changed;
2612         the AC_LIST_FILES and cousins macros are no longer used.
2614         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES, _AC_OUTPUT_HEADERS,
2615         _AC_OUTPUT_LINKS, _AC_OUTPUT_COMMANDS): Renamed to ...
2616         (_AC_OUTPUT_FILE, _AC_OUTPUT_HEADER, _AC_OUTPUT_LINK,
2617         _AC_OUTPUT_COMMAND): ..., respectively.  These macros no longer
2618         contain the initialization, nor the for loop, nor the associated
2619         commands; all these go to ...
2620         (_AC_OUTPUT_MAIN_LOOP): ... this new macro, called from
2621         _AC_OUTPUT_CONFIG_STATUS.
2622         (_AC_CONFIG_SPLIT, _AC_CONFIG_SPLIT_SOURCE_DEST, _AC_CONFIG_SPLIT_FILE_IN):
2623         Nuked; the code was merged into _AC_OUTPUT_MAIN_LOOP.
2624         (_AC_OUTPUT_FILE): The creation of the sed script ...
2625         (AC_OUTPUT): ... and the setup of ac_vpsub goes to ...
2626         (_AC_OUTPUT_FILES_PREPARE): ... a new macro, also called from
2627         _AC_OUTPUT_MAIN_LOOP.
2628         (_AC_CONFIG_FILES, _AC_CONFIG_HEADERS, _AC_CONFIG_LINKS,
2629         _AC_CONFIG_COMMANDS): Use ...
2630         (_AC_CONFIG_FOOS): ... this new macro, which uses these ...
2631         (_AC_CONFIG_REGISTER, _AC_CONFIG_REGISTER_DEST): ... new macros.
2632         (_AC_CONFIG_FILE, _AC_CONFIG_HEADER, _AC_CONFIG_LINK,
2633         _AC_CONFIG_COMMAND, _AC_CONFIG_DEPENDENCIES): No longer needed.
2634         (_AC_CONFIG_DEPENDENCY): Update, it uses these ...
2635         (_AC_CONFIG_DEPENDENCY_DEFAULT, _AC_FILE_DEPENDENCY_TRACE_COLON):
2636         ... new macros.
2637         (_AC_CONFIG_UNIQUE): Update.
2638         (AC_LIST_FILES, AC_LIST_HEADERS, AC_LIST_LINKS, AC_LIST_COMMANDS):
2639         Replaced by this ...
2640         (_AC_LIST_TAGS): ... new common macro.
2641         (AC_LIST_FILE_COMMANDS, AC_LIST_HEADER_COMMANDS, AC_LIST_LINK_COMMANDS,
2642         AC_LIST_COMMAND_COMMANDS): Replaced by this ...
2643         (_AC_LIST_TAG_COMMANDS): ... new common macro.
2644         (_AC_CONFIG_COMMANDS_INIT): Moved top to the `registration' section;
2645         this didn't belong to the `config commands' section.
2646         (_AC_OUTPUT_COMMANDS_INIT): Don't initialize, m4_ifdef is our friend.
2647         (AC_CONFIG_COMMANDS_PRE, AC_OUTPUT_COMMANDS_PRE,
2648         AC_CONFIG_COMMANDS_POST): Moved to a new section, these didn't belong
2649         to the `config commands' section either.
2650         (AC_CONFIG_SUBDIRS): Don't touch diversion DEFAULTS.
2651         (_AC_LIST_SUBDIRS): Don't initialize, m4_ifdef is our friend.
2653         ... and many changes to the comments nearby.
2655         * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS): At the end of the day,
2656         set ac_subdirs_all='_AC_LIST_SUBDIRS'.
2657         * tests/torture.at (AC_CONFIG_FILES, HEADERS, LINKS and COMMANDS):
2658         AC_CONFIG_COMMANDS(command:input,...) is no longer allowed.
2659         (#define header templates): The comment at the top of the generated
2660         header now includes the name(s) of the source file(s).
2662         Several unrelated small changes:
2664         * lib/autoconf/general.m4 (AC_CACHE_VAL): Be didactic, quote the first
2665         parameter to AC_DIAGNOSE.
2666         * lib/autoconf/status.m4 (AC_CONFIG_SUBDIRS): Likewise.
2667         (_AC_LINK_FILES_CNT): Don't AU_DEFUN this; it causes confusing messages
2668         with autoupdate; use m4_define_default inside AU_DEFUNed AC_LINK_FILES.
2669         (AC_OUTPUT): In the compatibility code, use m4_ifvaln, to be consistent
2670         with AU::AC_OUTPUT.
2671         (AU::AC_OUTPUT): Don't double-quote $2 and $3, the compatibility code
2672         in AC_OUTPUT doesn't double-quote it either.
2673         * tests/tools.at (autoupdate): AU::AC_OUTPUT no longer double-quotes the
2674         parameters.
2676 2005-07-10  Stepan Kasal  <kasal@ucw.cz>
2678         * lib/autoconf/fortran.m4 (_AC_PROG_FC_V_OUTPUT): Document which
2679         versions of Portland Group compiler produce single- and double-quoted
2680         -cmdline argument.  Reported by Steven G. Johnson <stevenj@fftw.org>
2681         and Ole Holm Nielsen <Ole.H.Nielsen@fysik.dtu.dk>.
2683 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
2685         * tests/local.at (AT_CONFIG_CMP): Ignore lines like "LIBS=''" too.
2686         This is a corrected version of yesterday's patch.
2688 2005-07-07  Stepan Kasal  <kasal@ucw.cz>
2690         * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): Report the full
2691         path, too; insert a "===" to emphasize the line.
2693         * lib/autoconf/general.m4 (AC_CANONICAL_BUILD): Rename
2694           ac_cv_build_alias to ac_build_alias.
2695         (AC_CANONICAL_HOST, AC_CANONICAL_TARGET): Simplify.
2697         On 2005-02-24, an unintentional AC_SUBST([CC]) was introduced; this
2698         change eliminates it.  Problem reported by Alexandre Duret-Lutz.
2699         * lib/autoconf/general.m4 (_AC_ARG_VAR_PRECIOUS): Move the AC_SUBST ...
2700         (AC_ARG_VAR): ... here.
2701         (_AC_INIT_PREPARE): Call AC_SUBST for build_alias, host_alias and
2702           target_alias.
2704         Keep a list of all precious variables and process them with one simple
2705         for loop, instead of expanding all commands, or, OTOH, complicated
2706         processing of output of "set".
2707         * lib/autoconf/general.m4 (_AC_ARG_VAR_PRECIOUS): Acumulate the
2708         variable names in new macro...
2709         (_AC_PRECIOUS_VARS): ... which will be assigned to ac_precious_vars.
2710         (_AC_ARG_VAR_STORE): New macro which writes to diversion PARSE_ARGS
2711           a loop to assign all ac_env_* and ac_cv_env_* variables.
2712         (_AC_ARG_VAR_VALIDATE): Use shell variable ac_precious_vars, divert
2713           to INIT_PREPARE.
2714         (_AC_INIT_DEFAULTS): At the end, if _AC_PRECIOUS_VARS is set, assign
2715           its value to shell variable ac_precious_vars and call
2716           _AC_ARG_VAR_STORE and _AC_ARG_VAR_VALIDATE.
2717         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Don't call
2718           _AC_ARG_VAR_VALIDATE.
2720         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Move AC_LANG_PUSH(C)
2721           and the AC_SUBSTs ...
2722         (AC_INIT): ... here.
2724         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Changed the title of
2725           the ac_subst_files section in config.log.
2727         * tests/local.at (AT_CONFIG_CMP): Revert Paul's previous change.
2729 2005-07-06  Paul Eggert  <eggert@cs.ucla.edu>
2731         * NEWS: New macro AC_C_TYPEOF.
2732         * doc/autoconf.texi (C Compiler): Document AC_C_TYPEOF.
2733         * lib/autoconf/c.m4 (AC_C_TYPEOF): New macro.
2734         * tests/c.at (C keywords): Test AC_C_TYPEOF.
2736         Fix problems reported by Nicolas Joly.
2737         * tests/base.at (Input/Output): Ignore 'loading site script' chatter.
2738         * tests/local.at (AT_CONFIG_CMP): Ignore lines like "LIBS=''" too.
2739         They are generated by the Tru64 v5.1B shell.
2741 2005-07-05  Stepan Kasal  <kasal@ucw.cz>
2743         Fix my changes from 2005-07-01; reported by Noah Misch.
2744         * lib/autoconf/status.m4 (_AC_CONFIG_DEPENDENCIES): Fix the
2745         description, the macro now accepts only a single tag.
2746         (_AC_CONFIG_UNIQUE): Likewise; s/AC_File/[$1]/
2748         Fix cases when the varsions of Autoconf and Autotest don't match.
2749         Reported by Noah Misch.
2750         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): Set also
2751         at_top_builddir, for compatibility with older autotest.
2752         * lib/autotest/general.m4 (AT_INIT): If at_top_build_prefix
2753         is not set, use at_top_builddir, for compatibility with older
2754         versions of autoconf.
2756 2005-07-04  Paul Eggert  <eggert@cs.ucla.edu>
2758         * bin/autom4te.in ($m4): Catch usages like --nesting-limit=2048.
2759         Problem reported by Patrick Welche.
2761 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
2763         * lib/autoconf/general.m4 (AC_ARG_PROGRAM): Use &, not |, in
2764         sed substitution command, so that we allow | in program prefixes
2765         and program suffixes.  (& is a problem anyway; we're not fixing
2766         that here.)
2767         * lib/autoconf/status.m4 (AC_CONFIG_FILES): Likewise, for
2768         configure_input, top_builddir, srcdir, etc.
2769         * lib/autotest/general.m4 (AT_INIT): Likewise, for
2770         PATH_SEPARATOR in AUTOTEST_PATH.
2772 2005-07-02  Alexandre Duret-Lutz  <adl@gnu.org>
2774         * lib/autoconf/general.m4 (AC_SITE_LOAD): Rewrite the
2775         for loop over config.site files using `set', to allow
2776         directory names containing IFS characters.
2778 2005-07-01  Paul Eggert  <eggert@cs.ucla.edu>
2780         * lib/autoconf/general.m4 (_AC_INIT_DIRCHECK): Remove the tests for
2781         directories with weird names.  Apparently some people like living
2782         on the edge.  However, improve the test that "pwd" actually does
2783         report a name for the working directory.
2784         * NEWS: Remove the claim that we test for funny chars in dir names.
2786 2005-07-01  Stepan Kasal  <kasal@ucw.cz>
2788         * lib/autoconf/general.m4 (AC_FOREACH): Make obsolete; it's
2789         replaced ...
2790         * lib/m4sugar/m4sugar.m4 (m4_foreach_w): ... by this new macro.
2791         * lib/autoconf/status.m4 (_AC_CONFIG_DEPENDENCIES, _AC_CONFIG_UNIQUE):
2792         Now accept a single tag, not whitespace separated list.
2793         (AC_CONFIG_SUBDIRS): Call _AC_CONFIG_UNIQUE in a m4_foreach_w loop.
2795 2005-06-30  Stepan Kasal  <kasal@ucw.cz>
2797         * doc/autoconf.texi (Configuration Headers): Change the explanation
2798         about #include <config.h>.
2799         (Generic Functions): Mention the Gnulib project.
2800         (Limitations of Usual Tools) <sed>: Another minor rephrasing.
2802         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Use a here
2803         document to output the default config_* lists to config.status.
2804         Don't recognize option --file, if the functionality is not there.
2805         Likewise for --header; moreover, recognize --he and --h as shortcuts
2806         for --help in that case.
2808         * lib/autoconf/status.m4: Fix the order of the "sections", so that it
2809         matches the order of execution.  No code changed.
2811 2005-06-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2813         * lib/autoconf/fortran.m4 (_AC_PROG_FC_V_OUTPUT): Fix also for
2814         single-quoted -cmdline argument in Portland Group compiler.
2815         Reported against LAM by Ole Holm Nielsen <Ole.H.Nielsen@fysik.dtu.dk>.
2817 2005-06-30  Alexandre Duret-Lutz  <adl@gnu.org>
2819         * lib/autom4te.in (Automake-preselections): Preselect AC_SUBST_TRACE.
2821 2005-06-29  Stepan Kasal  <kasal@ucw.cz>
2823         * doc/autoconf.texi (File Descriptors): ksh doesn't pass open file
2824         descriptors to child processes; reported by Norman Gray.
2826 2005-06-29  Stepan Kasal  <kasal@ucw.cz>
2828         * lib/autoconf/general.m4 (AC_ARG_VAR): Move next to _AC_ARG_PRECIOUS.
2830         * lib/autoconf/general.m4 (AC_SUBST_TRACE): New macro, to be traced
2831         instead of AC_SUBST; proposed by Alexandre Duret-Lutz.
2832         (AC_SUBST): Call it.
2833         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES): Call AC_SUBST_TRACE for
2834         the directory specific variables; but don't call it for configure_input.
2836 2005-06-28  Derek Price  <derek@ximbiot.com>
2838         * doc/autoconf.texi (Limitations of Usual Tools) <sed>: Reword recent
2839         addition.
2841 2005-06-23  Paul Eggert  <eggert@cs.ucla.edu>
2843         * NEWS: Don't worry about spaces in bindir etc.  Only srcdir and working
2844         directory have inherent problems with special characters like spaces,
2845         due to limitations in Make syntax.  Problem reported by Alexandre
2846         Duret-Lutz.
2847         * lib/autoconf/general.m4 (_AC_INIT_DIRCHECK): Implement the above.
2848         Also, fix Tru64 porting problem with shell patterns,
2849         reported by Ralf Wildenhues.
2851 2005-06-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2853         * doc/autoconf.texi (Subdirectories): Fix markup typos.
2855 2005-06-23  Paul Eggert  <eggert@cs.ucla.edu>
2857         * tests/local.at (AT_CHECK_ENV): Simplify regexp slightly.
2859         Fix some more shell quoting problems.  Prompted by a bug report
2860         from Justace Clutter.
2861         * lib/autoconf/general.m4 (_AC_INIT_DIRCHECK): Put name of invalid
2862         variable into diagnostic.  Make the diagnostic an error, not a warning,
2863         because we really don't support spaces and suchlike in dir names.
2864         (_AC_INIT_SRCDIR): Allow special characters in $ac_unique_file.
2865         Don't worry about backslashes in srcdir; it can't happen now.
2866         (_AC_INIT_PARSE_ARGS): Allow weird characters in ac_optarg.
2867         Simplify ac_optarg handling.
2868         (_AC_ARG_VAR_VALIDATE): Remove unnecessary and inconsistent quotes.
2870 2005-06-22  Stepan Kasal  <kasal@ucw.cz>
2872         Fix AT_CONFIG_CMP for Solaris hosts; idea from Ralf Menzel.
2873         * configure.ac: Call AC_PROG_EGREP and AC_PROG_SED.
2874         * tests/atlocal.in: Propagate $EGREP and $SED.
2875         * tests/local.at (AT_CHECK_ENV): Use $EGREP, not $GREP -E.
2876         (AT_CONFIG_CMP): Use sed instead of grep plumbing.
2878         * doc/autoconf.texi (Limitations of Usual Tools) <grep>: Mention
2879         that '\|' is not allowed in BREs; recommend using newline separated
2880         list of patterns instead of multiple -e options.
2882         * lib/autoconf/fortran.m4 (_AC_PROG_FC_V_OUTPUT): Remove an old comment.
2884         * lib/autoconf/general.m4 (_AC_CANONICAL_SPLIT): Use AC_SUBST/2.
2886 2005-06-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2888         * lib/autoconf/general.m4 (_AC_CANONICAL_SPLIT): Fix typo.
2890 2005-06-21  Stepan Kasal  <kasal@ucw.cz>
2892         * doc/autoconf.texi (Limitations of Usual Tools) <sed>: Document that
2893         b, t, r, w commands require single space, while : cannot have any.
2894         (Special Shell Variables): Fix sed code this in the example.
2895         * lib/autoconf/status.m4 (_AC_OUTPUT_HEADERS): Likewise; and fix a typo.
2896         * lib/autotest/general.m4 (AT_ARG_OPTION): Fix typo in the description.
2898         * lib/m4sugar/m4sugar.m4 (m4_split): If the parameter is empty,
2899         expand to the empty list.  Don't use two pairs of m4_changequote,
2900         it's not necessary.
2902 2005-06-20  Derek Price  <derek@ximbiot.com>
2904         * lib/m4/programs.m4 (AC_PROG_YACC): Declare YACC & YFLAGS precious.
2906 2005-06-17  Paul Eggert  <eggert@cs.ucla.edu>
2908         * lib/m4sugar/m4sh.m4 (as_awk_strverscmp): Port to Solaris /bin/awk.
2909         * doc/autoconf.texi:
2910         Don't mention Solaris versions so much, if a
2911         problem is common to all extant versions of Solaris.  Say "SunOS
2912         4" instead of "SunOS" for SunOS 4.
2913         (awk): Mention more of the limitations of traditional Awk.
2914         (cat): Don't talk about cat -v.
2916 2005-06-16  Paul Eggert  <eggert@cs.ucla.edu>
2918         * lib/m4sugar/m4sh.m4 (_AS_VERSION_COMPARE_PREPARE): New macro.
2919         (AS_VERSION_COMPARE): New macro.  The API is taken from CVS,
2920         but the implementation is entirely different and is designed
2921         to be compatible with glibc strverscmp.
2922         * tests/m4sh.at (AS_VERSION_COMPARE): New test.
2924         * doc/autoconf.texi (Limitations of Usual Tools): Mention expr bug
2925         on Mac OS X 10.4 reported by Peter O'Gorman in:
2926         http://lists.gnu.org/archive/html/autoconf-patches/2005-06/msg00041.html
2927         * lib/autoconf/general.m4 (_AC_CANONICAL_SPLIT):
2928         Use shell builtins rather than 'expr', to work around expr bug.
2930 2005-06-10  Paul Eggert  <eggert@cs.ucla.edu>
2932         * doc/autoconf.texi: "filesystem" -> "file system".
2933         "behaviour" -> "behavior".
2934         Warn about \(...\)* in Solaris sed (written by Ralf Menzel).
2935         * lib/autoconf/general.m4: Omit blank after ":" sed command,
2936         as per POSIX.
2937         * lib/m4sugar/m4sh.m4: Likewise.
2938         * lib/autoconf/status.m4 (_AC_OUTPUT_HEADERS): Work around problem
2939         with Solaris sed.  Fix by Ralf Menzel and Stepan Kasal.
2941         * man/Makefile.am (MOSTLYCLEANFILES): Add $(srcdir)/*.t.
2942         (.x.1): Ignore the time stamp in the .TH line when deciding whether
2943         to update the man page.  That way, we don't have to check in new
2944         man pages every month.
2946         * lib/m4sugar/m4sh.m4 (AS_VAR_TEST_SET): Work even if $1 contains
2947         quotes and backslashes.  Patch from Derek Price.
2949 2005-06-10  Derek Price  <derek@ximbiot.com>
2951         * doc/autoconf.texi (Programming in M4sh): Document AS_TR_CPP &
2952         AS_TR_SH.
2954 2005-06-08  Paul Eggert  <eggert@cs.ucla.edu>
2956         * lib/autotest/general.m4 (AT_INIT): Don't accept Solaris 9's diff
2957         -u, since it outputs chatter if the input files are the same.
2958         Problem reported by Ralf Menzel.
2960 2005-06-08  Derek Price  <derek@ximbiot.com>
2962         * lib/m4sugar/m4sugar.m4: Undefine include & sinclude rather than
2963         renaming them since they are about to be redefined anyhow.
2965 2005-06-08  Derek Price  <derek@ximbiot.com>
2967         * doc/autoconf.texi (Redefined M4 Macros): Add index entries for most
2968         redefined M4 macros to this node.  Document m4_include & m4_sinclude.
2969         Move m4_undefine to alphabetical order.
2971 2005-06-07  Paul Eggert  <eggert@cs.ucla.edu>
2973         * README: Recommend GNU M4 1.4.3 or later.
2974         * doc/autoconf.texi (Introduction): Likewise.
2975         Reword to avoid some formatting glitches.
2976         Use "#!/bin/sh", not "#! /bin/sh"; the space isn't needed these days.
2977         Clarify explanation of HP compiler bug.
2978         Redo example output tp match current CVS snapshot.
2979         Use @example.org in email addresses when the examples
2980         might get inadvertently cut-and-pasted into user code.
2981         Remove example of autom4te usage that doesn't seem to work now.
2982         Use modern AC_INIT (except when the example is meant to be
2983         shown with Autoconf 2.13).
2984         Update ksh info for Solaris 9 and later.
2985         KB -> kB.
2986         Modernize description of Automake versions a bit.
2987         Don't claim a future version of Autoconf is near.
2988         * doc/install.texi: Reword to avoid some formatting glitches.
2990 2005-06-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
2992         * doc/autoconf.texi: Add [] to examples, so that the manual
2993         follows its own advice about quoting better.
2994         Reword to avoid some formatting glitches.
2995         * doc/installt.exi: Reword to avoid some formatting glitches.
2997         * doc/autoconf.texi (Limitations of Builtins) <case>: Mention
2998         Tru64 ksh pattern matching bug.  Reported against Libtool by
2999         Albert Chin <libtool@mlists.thewrittenword.com> and
3000         Nicolas Joly <njoly@pasteur.fr>.
3002 2005-06-06  Stepan Kasal  <kasal@ucw.cz>
3004         m4_cdr of one-member list was [[]] (one-member list containing an
3005         empty string) instead of [] (an empty list.  Callers were skewed to
3006         match this misbehaviour.  As a consequence of this:
3007          - m4_foreach([x], [], [foo]) expanded to `foo', while
3008          - the expansion of m4_foreach([x], [[]], [foo]) was empty.
3009         This bug has been fixed:
3011         * lib/m4sugar/m4sugar.m4 (m4_cdr): If only one argument is given,
3012           expand to an empty string; print error msg if called without
3013           an argument list.
3014         (m4_foreach, m4_map, m4_map_sep): Don't expect the previous
3015           misbehaviour; handle [] and [[]] correctly.
3017 2005-06-06  Stepan Kasal  <kasal@ucw.cz>
3019         * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS): Nuke ac_max_here_lines.
3020         * lib/autoconf/status.m4 (_AC_OUTPUT_HEADERS): Simplify the sed
3021           scripts created and the loop applying them, use _AC_SED_CMD_LIMIT.
3023 2005-06-06  Ralf Menzel <menzel@ls6.cs.uni-dortmund.de>  (trivial change)
3025         * doc/autoconf.texi (Limitations of Usual Tools): Solaris' awk cannot
3026           swallow records with more than 99 fields.
3027         * lib/autotest/general.m4 (AT_INIT): Use the awk builtin `split' to
3028           parse the long line.
3030 2005-06-04  Stepan Kasal  <kasal@ucw.cz>
3032         * doc/autoconf.texi (Limitations of Usual Tools): AIX awk cannot
3033           swallow literals longer than 399.  Reported by Ralf Wildenhues.
3034         * lib/autotest/general.m4 (AT_INIT): Pass $at_groups though stdin,
3035           to workaround this limitation.
3037 2005-06-03  Steven G. Johnson  <stevenj@alum.mit.edu>
3039         * lib/autoconf/fortran.m4 (_AC_PROG_FC): Find g95 in addition
3040         to gfortran, and make these the first two compiler names
3041         checked (following the general autoconf preference for gcc).
3043 2005-06-03  Stepan Kasal  <kasal@ucw.cz>
3045         * tests/Makefile.am (check_SCRIPTS): Set to $(wrappers).
3046         (DISTCLEANFILES): Remove $(check_SCRIPTS).
3047         (testsuite): Make sure autotest.m4f is up-to-date before using it.
3049 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
3051         * lib/autotest/general.m4 (AT_INIT): Don't create a regular
3052         expression of unbounded size when processing the --list
3053         option.  This runs afoul of a limit of 399 bytes per regular
3054         expression on AIX.  Problem reported by Ralf Wildenhues.
3056 2005-06-01  Paul Eggert  <eggert@cs.ucla.edu>
3058         * NEWS: Note yesterday's changes to AC_SUBST and AC_SUBST_FILE.
3059         * doc/autoconf.texi (Particular Headers): Reword example
3060         for multiline stdbool replacement.
3061         (Setting Output Variables): Reword text a bit.  Don't
3062         give all the details about |#_!!_#|.
3063         Reword description of line replacement.
3065 2005-05-31  Dan Manthey  <dan_manthey@partech.com>
3067         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES): Output variables may
3068         now contain newlines, and substituted files must be referenced on
3069         a line alone; the sed scripts to substitute them are now very
3070         different.
3071         (_AC_SED_CMD_LIMIT): Added; single place to store limit on how many
3072         commands can be put in a sed script portably.
3073         * doc/autoconf.texi (Setting Output Variables): Document above
3074         changes.  (Particular Header Checks) <AC_HEADER_STDBOOL>: Give exaple
3075         use of multiline substitution.
3076         * tests/torture.at: No longer expect substitution of newline to fail.
3078 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
3080         * lib/m4sugar/m4sh.m4 (_AS_SHELL_FN_WORK): Fix diagnostics.
3081         From Ralf Menzel (trivial change).
3083 2005-05-25  Paul Eggert  <eggert@cs.ucla.edu>
3085         * tests/local.at: Don't attempt to check for negated character
3086         classes in shell scripts.  The test was too brittle.
3088 2005-05-25  Stepan Kasal  <kasal@ucw.cz>
3090         * bin/autoconf.as: Don't use "shift 2"; it's not portable enough.
3091         * doc/autoconf.texi (Limitations of Builtins): Document this
3092           limitation.
3094 2005-05-24  Stepan Kasal  <kasal@ucw.cz>
3096         * lib/m4sugar/m4sh.m4 (_AS_ECHO_LOG): New macro to factor out
3097           common code; used in many places in the tree.
3098         (AS_ESCAPE): Make the pattern a bit simpler; use \& insetad of \1.
3099         (_AS_ECHO_UNQUOTED): Move the macro lower; no code change.
3101         * lib/m4sugar/m4sugar.m4 (m4_ifset): Use m4_ifval.
3103         * lib/autoconf/general.m4 (_AC_INIT_SRCDIR): Merge the two error
3104           messages when ac_unique_file is not found.
3105         (AC_CONFIG_MACRO_DIR): Simplify the `if' at the end.
3106         (AC_MSG_CHECKING, AC_MSG_RESULT): Put braces around the two echo
3107           commands, for consistency with AC_MSG_ERROR and such.
3109         * bin/autoconf.as: Make more use of "shift 2" in option processing.
3111         * bin/Makefile.am: Merge the two rules for creating scripts.
3113 2005-05-23  Stepan Kasal  <kasal@ucw.cz>
3115         * lib/autoconf/general.m4 (AC_MSG_RESULT_UNQUOTED): Make
3116         obsolete; it was never documented.
3117         (AC_CACHE_CHECK): Use AC_MSG_RESULT instead.
3119 2005-05-20  Stepan Kasal  <kasal@ucw.cz>
3121         * NEWS: @top_builddir@ is now a dirname, ac_top_builddir will follow.
3122         * lib/autoconf/status.m4 (_AC_SRCDIRS): Rename ...
3123         (ac_top_builddir): ... this ...
3124         (ac_top_build_prefix): ... to this; the old name is also kept, for
3125           backward compatibility.
3126         (ac_top_builddir_sub): New variable, without the trailing slash,
3127           always nonempty.
3128         (_AC_OUTPUT_FILES): s/@top_builddir@/$ac_top_builddir_sub/
3129         * doc/autoconf.texi (Configuration Actions): Rename
3130           ac_top_builddir to ac_top_build_prefix.
3131         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): Rename
3132           at_top_builddir to at_top_build_prefix.
3133         * lib/autotest/general.m4 (AT_INIT): Likewise.
3135 2005-05-20  Stepan Kasal  <kasal@ucw.cz>
3137         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Simplify the init
3138           of confdefs.h .
3140 2005-05-17  Stepan Kasal  <kasal@ucw.cz>
3142         * lib/m4sugar/m4sugar.m4 (m4_text_wrap): Don't m4_quote the second
3143           argument to m4_foreach.  I guess it was necessary in the past,
3144           but I think it's a no-op now.
3146 2005-05-17  Stepan Kasal  <kasal@ucw.cz>
3148         * lib/autoconf/general.m4 (_AC_INIT_HELP): Merge two consecutive
3149           ``cat <<_ACEOF'' commands to one.
3150         (_AC_CANONICAL_SPLIT): Use expr, not ``echo|sed.''
3151         * lib/autoconf/status.m4: On various places, use expr instead of
3152           ``echo|sed.''
3153         (_AC_CONFIG_SPLIT, _AC_CONFIG_SPLIT_SOURCE_DEST):
3154         (_AC_CONFIG_SPLIT_FILE_IN): New macros, to factor out common code.
3155         * lib/autotest/general.m4 (AT_INIT): Use expr to get the numbers from
3156           a range.
3157         * tests/local.at (AT_CHECK_SHELL_SYNTAX): Use awk to search for
3158           the wrong patterns between ``case'' and ``esac.''  The previous
3159           code had false positives.
3161 2005-05-14  Alexandre Duret-Lutz  <adl@gnu.org>
3163         * lib/autoconf/functions.m4 (_AC_LIBOBJ_ALLOCA): Prepend ${LIBOBJDIR},
3164         as on 2005-05-02.
3165         * doc/autoconf.texi (Particular Functions) <AC_FUNC_ALLOCA>:
3166         Mention LIBOBJDIR.
3168 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
3170         * AUTHORS, BUGS, COPYING, ChangeLog, ChangeLog.0, ChangeLog.1,
3171         ChangeLog.2, GNUmakefile, HACKING, Makefile.am, Makefile.cfg,
3172         Makefile.maint, NEWS, README, README-alpha, TODO, configure.ac,
3173         bin/Makefile.am, bin/autoconf.as, bin/autoheader.in,
3174         bin/autom4te.in, bin/autoreconf.in, bin/autoscan.in,
3175         bin/autoupdate.in, bin/ifnames.in, config/Makefile.am,
3176         config/config.guess, config/config.sub, config/elisp-comp,
3177         config/m4.m4, config/mdate-sh, config/missing, config/texinfo.tex,
3178         doc/Makefile.am, doc/fdl.texi, lib/Makefile.am, lib/autom4te.in,
3179         lib/freeze.mk, lib/Autom4te/C4che.pm, lib/Autom4te/ChannelDefs.pm,
3180         lib/Autom4te/Channels.pm, lib/Autom4te/Configure_ac.pm,
3181         lib/Autom4te/FileUtils.pm, lib/Autom4te/General.pm,
3182         lib/Autom4te/Request.pm, lib/Autom4te/Struct.pm,
3183         lib/Autom4te/XFile.pm, lib/autoconf/Makefile.am,
3184         lib/autoconf/autoconf.m4, lib/autoconf/autoheader.m4,
3185         lib/autoconf/autoscan.m4, lib/autoconf/autotest.m4,
3186         lib/autoconf/autoupdate.m4, lib/autoconf/c.m4,
3187         lib/autoconf/fortran.m4, lib/autoconf/functions.m4,
3188         lib/autoconf/general.m4, lib/autoconf/headers.m4,
3189         lib/autoconf/lang.m4, lib/autoconf/libs.m4,
3190         lib/autoconf/oldnames.m4, lib/autoconf/programs.m4,
3191         lib/autoconf/specific.m4, lib/autoconf/status.m4,
3192         lib/autoconf/types.m4, lib/autoscan/Makefile.am,
3193         lib/autoscan/autoscan.list, lib/autoscan/autoscan.pre,
3194         lib/autotest/Makefile.am, lib/autotest/autotest.m4,
3195         lib/autotest/general.m4, lib/emacs/Makefile.am,
3196         lib/emacs/autoconf-mode.el, lib/emacs/autotest-mode.el,
3197         lib/m4sugar/Makefile.am, lib/m4sugar/m4sh.m4,
3198         lib/m4sugar/m4sugar.m4, man/Makefile.am, tests/Makefile.am,
3199         tests/atlocal.in, tests/autotest.at, tests/base.at, tests/c.at,
3200         tests/compile.at, tests/foreign.at, tests/fortran.at,
3201         tests/local.at, tests/m4sh.at, tests/m4sugar.at, tests/mktests.sh,
3202         tests/semantics.at, tests/suite.at, tests/tools.at,
3203         tests/torture.at, tests/wrapper.as:
3204         Update FSF postal mail address.
3206 2005-05-13  Stepan Kasal  <kasal@ucw.cz>
3208         * lib/autoconf/general.m4 (AC_CONFIG_LIBOBJ_DIR): Remove the broken
3209           check.
3210         * lib/m4sugar/m4sugar.m4 (m4_bmatch): Halt with error if we don't get
3211           enough arguments, similarly as in m4_bpatsubsts.
3213 2005-05-12  Stepan Kasal  <kasal@ucw.cz>
3215         * lib/autoconf/status.m4 (_AC_SRCDIRS): Simplify the computation
3216           of absolute paths.
3218 2005-05-11  Stepan Kasal  <kasal@ucw.cz>
3220         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ARGS): Make the check
3221           for absolute directory names in one loop.
3222         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Handle
3223           abbreviations of --version and --debug.
3225 2005-05-10  Paul Eggert  <eggert@cs.ucla.edu>
3227         * doc/autoconf.texi (Autoconf Language): Be more precise about
3228         quoting rules.  Problems noted by Stepan Kasal.
3229         Also, throughout this document, be more careful about white space.
3230         "blank", "white space", and "space" all have different meanings
3231         and we should be careful to say what we mean.
3233 2005-05-05  Paul Eggert  <eggert@cs.ucla.edu>
3235         Fix C++ related problems reported by Werner Lemberg.
3236         * doc/autoconf.texi (C++ Compiler): Mention .cpp extension.
3237         * lib/autoconf/c.m4 (AC_LANG(C++)): Set ac_ext to .cpp, not .cc.
3238         * lib/autoconf/types.m4 (AC_TYPE_SIGNAL): Simplify test, to
3239         avoid problems with C++ and throw.
3240         * tests/compile.at: .cpp, not .cc.
3242         * tests/semantics.at: Prepend LIBOBJDIR, as per 2005-05-02 change.
3244 2005-05-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3246         * doc/autoconf.texi (Generic Functions): Typos.
3248 2005-05-02  Gary V. Vaughan  <gary@gnu.org>
3250         * lib/autoconf/general.m4 (_AC_LIBOBJS_NORMALIZE): Prepend each
3251         object named in LIBOBJS and LTLIBOBJS with the ${LIBOBJDIR}, as
3252         set by latest automake.
3254 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
3256         * doc/autoconf.texi (Limitations of Usual Tools): "expr '' \| ''"
3257         outputs 0 on GNU/Linux these days.
3259 2005-04-29  Paul Eggert  <eggert@cs.ucla.edu>
3261         * doc/autoconf.texi (Autoconf Language): Add more description
3262         about quoting heuristics.
3263         (Limitations of Builtins): Describe "set -" problems.
3265 2005-04-29  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3267         * lib/autotest/general.m4 (AT_KEYWORDS): Separate by space,
3268         not newline.
3270         * doc/autoconf.texi (External Software): Replace AC_DEFINE_UNQUOTED
3271         by AC_DEFINE; it was a mistake.
3272         From bug reported against libtool by Dalibor Topic <robilad@kaffe.org>.
3274 2005-04-25  Stepan Kasal  <kasal@ucw.cz>
3276         * lib/autoconf/status.m4 (_AC_OUTPUT_HEADERS): A tiny optimization.
3278 2005-04-22  Stepan Kasal  <kasal@ucw.cz>
3280         * doc/autoconf.texi (External Software): Quadrigraphs are not
3281           processed correctly in AS_HELP_STRING; avoid this in the examples.
3282         * lib/m4sugar/m4sh.m4 (AS_HELP_STRING): Add a FIXME about quadrigraphs.
3283         * lib/m4sugar/m4sugar.m4 (m4_text_wrap): Likewise; and rephrase the
3284           comment and reduce m4_default([foo], []) to [foo].
3285         (m4_strip): Update the explanation.
3287 2005-04-19  Paul Eggert  <eggert@cs.ucla.edu>
3289         * lib/autoconf/general.m4 (_AC_INIT_PREPARE, _AC_RUN_IFELSE):
3290         Remove core.conftest.* too; it's generated by Tru64 5.1.
3291         Problem reported by Jennis Pruett.
3292         * lib/autoconf/functions.m4
3293         (AC_FUNC_SETVBUF_REVERSED, AC_FUNC_UTIME_NULL):
3294         Don't bother to remove core files; AC_RUN_IFELSE should do that
3295         for you.
3297 2005-04-19  Stepan Kasal  <kasal@ucw.cz>
3299         * lib/m4sugar/m4sugar.m4 (m4_bpatsubsts): Add the b- to comment, too.
3301 2005-04-19  Alexandre Duret-Lutz  <adl@gnu.org>
3303         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ARGS): Handle --docdir.
3304         Report from Horst Wente.
3306 2005-04-15  Stepan Kasal  <kasal@ucw.cz>
3308         * lib/autoconf/general.m4 (_AC_ARG_VAR_VALIDATE): Fixed a typo in
3309           the comment.
3311 2005-04-14  Gregorio Guidi  <greg_g@gentoo.org>
3313         * doc/autoconf.texi (External Software, Package Options): Add
3314           examples showing how to implement --with-* and --enable-* options.
3316 2005-04-13  Paul Eggert  <eggert@cs.ucla.edu>
3318         * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): Look for configure.ac
3319         as well as configure.in.  Problem reported by Gregorio Guidi.
3321 2005-04-10  Paul Eggert  <eggert@cs.ucla.edu>
3323         * doc/autoconf.texi (Particular Functions): Use gnulib's current
3324         pattern for alloca snippet.
3326 2005-04-04  Stepan Kasal  <kasal@ucw.cz>
3328         * lib/autotest/general.m4 (_AT_DECIDE_TRACEABLE): Fix a typo.
3330 2005-04-01  Stepan Kasal  <kasal@ucw.cz>
3332         * doc/autoconf.texi (Generic Programs): Fix a typo.
3334 2005-04-01  Paul Eggert  <eggert@cs.ucla.edu>
3336         * lib/autotest/general.m4 (AT_INIT): Don't assume that "date +%s"
3337         fails if %s isn't supported.  Problem reported by Ralf Wildenhues.
3339 2005-03-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3341         * lib/autoconf/fortran.m4 (_AC_FC_LIBRARY_LDFLAGS):
3342         Merge `-z option' as well for the benefit of Solaris link flags.  Pass
3343         whole-archive (-zallextract, -zdefaultextract) options in the hope of
3344         unique libraries, for the Sun Fortran 95 8.0 compiler.  Bug reported
3345         against Libtool by Yury Puhalsky <pooh@cryptopro.ru>.
3347 2005-03-22  Paul Eggert  <eggert@cs.ucla.edu>
3349         * NEWS: The configure command now warns you if you attempt to use
3350         a directory whose name contains a special character like space,
3351         newline, or "\".
3352         * doc/autoconf.texi (Installation Directory Variables): Allow
3353         "," in file names.  Do not use \@; it's not a portable regexp.
3354         * bin/Makefile.am (edit): Likewise.
3355         * lib/Makefile.am (edit): Likewise.
3356         * tests/Makefile.am (edit): Likewise.
3357         * tests/semantics.at: Likewise.
3358         * tests/torture.at: Likewise.
3359         * lib/autoconf/general.m4 (AC_ARG_PROGRAM): Likewise.
3360         * lib/autoconf/status.m4 (_AC_SRCDIRS): Likewise.
3361         * doc/autoconf.texi (File System Conventions): Warn about
3362         unportable file names.
3363         * lib/autoconf/general.m4 (_AC_INIT_DIRCHECK): New macro.
3364         (AC_INIT): Use it.
3365         (_AC_INIT_SRCDIR): Use ac_pwd rather than invoking pwd.
3366         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Propagate
3367         ac_pwd, and quote srcdir.
3368         * lib/autotest/general.m4 (AT_INIT): Quote file name args.
3370         * doc/autoconf.texi: Fix some systematic formatting problems.
3371         ".)"  needs a following @: if not at the end of a sentence, and
3372         similarly for "!)".  "etc." should be preceded by a comma.
3373         "n-th" -> "@var{n}th".  pdksh is still buggy, so update its date.
3375 2005-03-22  Bruno Haible  <bruno@clisp.org>
3377         * doc/autoconf.texi (Input): Mention that AC_CONFIG_AUX_DIR's
3378         argument is often called 'build-aux'.
3380 2005-03-07  Stepan Kasal  <kasal@ucw.cz>
3382         * doc/autoconf.texi (Quotation Rule Of Thumb): Mention that the
3383           macro AC_TRY_LINK is obsolete.
3384         (Installation Directory Variables): Change `AC_OUTPUT_FILES' to
3385           `AC_CONFIG_FILES'.
3387 2005-02-24  Stepan Kasal  <kasal@ucw.cz>
3389         * lib/autoconf/c.m4 (AC_PROG_CC): Be more careful to skip
3390           `/usr/ucb/cc'; use `cl.exe' to distinguish the MS compiler
3391           from a Common Lisp's `cl'.
3392         (AC_PROG_CXX): Behave according to the documentation: don't
3393           search for $ac_tool_prefix$CCC and $CCC, just set CXX=$CCC;
3394           make the variable CCC precious; use `cl.exe', not `cl'.
3396 2005-02-23  Paul Eggert  <eggert@cs.ucla.edu>
3397             Alexandre Duret-Lutz  <adl@gnu.org>
3399         * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS): Redirect stdin from
3400         /dev/null, as "configure" shouldn't read stdin, and this insulates
3401         us from problems (e.g., when testing for "cl").  Also, do this
3402         redirection before invoking "hostname" or "uname", and keep the
3403         original input stream available via...
3404         (AS_ORIGINAL_STDIN_FD): ... this new macro.
3405         (_AC_PREPROC_IFELSE, _AC_COMPILE_IFELSE, _AC_LINK_IFELSE): Don't
3406         bother with "</dev/null" since it's now done at the top of
3407         'configure'.
3408         * lib/autoconf/c.m4 (AC_PROG_CC, AC_PROG_CXX): Likewise.
3409         * lib/autoconf/fortran.m4 (_AC_PROG_FC): Likewise.
3410         * lib/autoconf/programs.m4 (_AC_PATH_PROG_FLAVOR_GNU): Likewise.
3411         * doc/autoconf.texi (File Descriptor Macros): New section.
3412         (Printing Messages): Mention it.
3413         * tests/base.at (Input/Output): New test.
3415 2005-02-23  Paul Eggert  <eggert@cs.ucla.edu>
3417         * lib/m4sugar/m4sh.m4 (_AS_ECHO_N_PREPARE): Don't set ECHO_C to
3418         newline if neither \c nor -n work, as that would output two
3419         newlines.  Prefer -n to \c.  Reported by Stepan Kasal.
3421 2005-02-12  Stepan Kasal  <kasal@ucw.cz>
3423         * lib/m4sugar/m4sh.m4 (AS_IF): Define by m4_defun, not m4_define.
3424         This causes that any required macros inside will get before the if.
3425         * doc/autoconf.texi (autom4te.cache): A typo.
3427 2005-02-12  Paul Eggert  <eggert@cs.ucla.edu>
3429         Undo previous change, except keep the change to
3430         lib/autoconf/programs.m4 that replaced grep with shell
3431         pattern-matching.  This is because net-snmp configure reads stdin.
3432         Reported by Noah Misch.
3434 2005-02-11  Paul Eggert  <eggert@cs.ucla.edu>
3436         * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS): Redirect stdin
3437         from /dev/null, as "configure" shouldn't read stdin, and this
3438         insulates us from problems (e.g., when testing for "cl").
3439         Suggested by Alexandre Duret-Lutz.  Also, do this redirection
3440         before invoking "hostname" or "uname".
3441         (_AC_PREPROC_IFELSE, _AC_COMPILE_IFELSE,
3442         _AC_LINK_IFELSE): Undo previous change, as it's no longer needed.
3443         * lib/autoconf/c.m4 (AC_PROG_CC, AC_PROG_CXX): Don't bother with
3444         "</dev/null" since it's now done at the top of 'configure'.
3445         * lib/autoconf/fortran.m4 (_AC_PROG_FC): Likewise.
3446         * lib/autoconf/programs.m4 (_AC_PATH_PROG_FLAVOR_GNU): Likewise.
3447         Also, replace grep with shell pattern-matching, to save a process.
3449 2005-02-10  Paul Eggert  <eggert@cs.ucla.edu>
3451         * lib/autoconf/general.m4 (_AC_PREPROC_IFELSE, _AC_COMPILE_IFELSE,
3452         _AC_LINK_IFELSE): Redirect stdin to /dev/null, in an attempt to
3453         avoid thinking that Allegro Common Lisp's "cl" command is a C++
3454         compiler.
3456 2005-02-09  Paul Eggert  <eggert@cs.ucla.edu>
3458         * doc/autoconf.texi (Limitations of Usual Tools): Document that
3459         grep -q isn't portable.  Improve grep -s explanation.
3460         Problem reported by Dan Manthey.
3462 2005-02-08  Paul Eggert  <eggert@cs.ucla.edu>
3464         * doc/autoconf.texi (Special Shell Variables): Clarify
3465         PATH_SEPARATOR wording; fix typo in IFS.  Reported by Gary V. Vaughan.
3467 2005-02-07  Paul Eggert  <eggert@cs.ucla.edu>
3469         * doc/autoconf.texi: Use @acronym for DJGPP.
3470         Fix some @code's that should have been @env's, and vice versa.
3471         Sort environment variable names.
3472         Mention that shells no longer inherit IFS.
3473         Don't recommend PATH_SEPARATOR=';' so strongly.
3474         Mention that $RANDOM might expand to the empty string.
3475         "symlink" and "soft link" -> "symbolic link".
3476         Improve mktemp description (reported by Bruno Haible).
3478 2005-02-05  Paul Eggert  <eggert@cs.ucla.edu>
3480         * tests/foreign.at (Libtool): Don't overquote AT_SETUP arg.
3481         * tests/m4sh.at (AS_DIRNAME, AS_BASENAME, AS_MKDIR_P, AS_HELP_STRING):
3482         Likewise.
3483         * tests/semantics.at (AC_C_BIGENDIAN, AC_PATH_PROG & AC_PATH_PROGS):
3484         Likewise.
3486 2005-02-04  Paul Eggert  <eggert@cs.ucla.edu>
3488         * NEWS: Mention AT_COPYRIGHT.
3490         * tests/local.at (AT_CMP): Use diff directly on input files rather
3491         than copying them.
3493         * lib/autoconf/programs.m4 (AC_PROG_SED): Don't look in
3494         /usr/xpg4/bin since that sed dumps core (at least on Solaris 8).
3496 2005-02-04  Noah Misch  <noah@cs.caltech.edu>
3497         and Paul Eggert  <eggert@cs.ucla.edu>
3499         * tests/autotest.at (Empty test suite): New test.
3500         * tests/torture.at (Substitute and define special characters)
3501         (Substitute a 2000-byte string, Define to a 2000-byte string)
3502         (Substitute a newline, Define a newline): New tests.
3504 2005-02-04  Noah Misch  <noah@cs.caltech.edu>
3506         * lib/m4sugar/m4sugar.m4 (m4_re_string, m4_re_word): Revert 2002-03-04.
3507         * tests/local.at (AT_CHECK_M4SUGAR): Add `m4sugar' to keywords.
3508         (AT_CHECK_ENV): Ignore LTLIBOBJS, FC variables, EGREP, FGREP, and SED.
3509         * tests/m4sugar.at (AT_CHECK_M4SUGAR_TEXT, AT_CHECK_M4RE): New macros.
3510         (Standard regular expressions): New test.
3511         (m4_warn, m4_require: circular dependencies, m4_text_wrap): Strip
3512         excess test name quoting.
3513         * tests/semantics.at (AC_CHECK_HEADERS_OLD, AC_CHECK_HEADERS_NEW): Pass
3514         CPPFLAGS to `configure' instead of setting it in `configure'.
3516         * lib/m4sugar/m4sh.m4 (AS_UNAME): Try only /usr/bin/hostinfo, not
3517         any `hostinfo' in $PATH, since hostinfo.exe is a popular file name
3518         on some platforms.
3520         * lib/autoconf/fortran.m4 (AC_LANG(Fortran), AC_FC_SRCEXT):
3521         s/FC_SRCEXT/ac_fc_srcext/; s/FCFLAGS_SRCEXT/ac_fcflags_srcext/.
3523         * tests/local.at (AT_CMP): New macro.
3524         (AT_DATA_AUTOCONF): Do not call AC_PROG_GREP.
3525         (AC_SAVE_STATE): Move environment grep...
3526         (AT_CHECK_ENV): to here.  Filter out `'$''.  Use AT_CMP.
3527         (AT_CONFIG_CMP): New macro.
3528         (AT_CHECK_MACRO): Run `configure' twice with cache and compare results.
3529         * tests/c.at (Extensions): Do not exit early.
3530         * tests/atlocal.in: Inherit $GREP.
3532         * lib/autoconf/c.m4 (_AC_C_STD_TRY): New macro.
3533         (_AC_PROG_CC_C89, _AC_PROG_CC_C99): Use it.
3535         * lib/autoconf/general.m4 (_AC_INIT_COPYRIGHT): Update for 2005.
3536         (AC_COPYRIGHT): Factor header comment portion out and move into...
3537         * lib/m4sugar/m4sh.m4 (AS_COPYRIGHT): This.
3538         * lib/autotest/general.at (AT_COPYRIGHT): New macro.
3539         (AT_INIT): Add Autotest copyright notice.  Display copyright notices in
3540         --version output.
3541         * tests/local.at: Add Autoconf test suite copyright notice.
3542         * doc/autoconf.texi (Writing testsuite.at): Document AT_COPYRIGHT.
3544 2005-02-04  Bruno Haible  <bruno@clisp.org>
3545         and Paul Eggert  <eggert@cs.ucla.edu>
3547         * doc/autoconf.texi (Limitations of Usual Tools): New mkstemp entry.
3549 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
3551         * lib/m4sugar/m4sugar.m4 (m4_re_escape): Escape ?, ^, \, $ too;
3552         this fixes a bug tickled by the AT_CAPTURE_FILE change noted below.
3554         Try not to generated lines of unlimited length, as POSIX places a
3555         2047-byte limit on line length of portable text files.
3556         * lib/autoconf/general.m4 (AC_SUBST, AC_SUBST_FILE):
3557         Use newline as a separator, not space.
3558         * lib/autotest/general.m4 (AT_TESTED, AT_KEYWORDS): Likewise.
3559         (AT_CAPTURE_FILE): Use space-backslash-newline as a separator, not
3560         space.
3562 2005-02-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3564         * lib/m4sugar/m4sh.m4 (_AS_SHELL_FN_WORK): Move func_* to
3565         as_func_*.  Add test to check whether positional parameters
3566         are restored after function return.
3568 2005-02-02  Paul Eggert  <eggert@cs.ucla.edu>
3570         * doc/autoconf.texi (Special Shell Variables): Mention _,
3571         BIN_SH, DUALCASE.  Say that variables other than "status" are safe
3572         if they contain a lower-case letter.  The DUALCASE problem was
3573         reported by Ralf Wildenhues.
3575         * bin/autoconf.as: Don't exit with status 0 after write failure
3576         with --help or --version.
3577         * lib/autoconf/general.m4 (_AC_INIT_HELP, _AC_INIT_VERSION): Likewise.
3578         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Likewise.
3580 2005-02-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3582         * doc/autoconf.texi (Limitations of Usual Tools):
3583         Unicos 9 sed limitations.
3584         * lib/autoconf/fortran.m4 (_AC_PROG_FC): Try cf77 before fort77
3585         to get the option-enhanced interface on older Crays.  Try ftn for
3586         Fortran 95 (newer Crays).
3588 2005-02-01  Paul Eggert  <eggert@cs.ucla.edu>
3590         * man/Makefile.am (.x.1): Go back to the simple solution, but take
3591         care to echo the commands, so the user knows what's going on.
3592         Modified from a suggestion by Stepan Kasal.
3594         * doc/autoconf.texi (autoreconf Invocation): Mention autopoint,
3595         with a cross reference.  Derived from a suggestion by Bruce Korb.
3597 2005-01-31  Paul Eggert  <eggert@cs.ucla.edu>
3599         * doc/autoconf.texi (config.status Invocation): Warn about
3600         discrepancy between CONFIG_SHELL and shell used to invoke 'configure'.
3601         * doc/install.texi (Defining Variables): Likewise.
3602         Based on a proposed patch by Ralf Wildenhues.
3604         * man/Makefile.am (.x.1): Make sure the required generated files
3605         are up to date.  Problem and original solution proposed by Stepan Kasal.
3606         $(dist_man_MANS:.1=-bin-prereq), $(dist_man_MANS:.1=-tests-prereq),
3607         implicit-man-prerequisites): New rules, used by the above.
3609         * doc/make-stds.texi, doc/standards.texi: Sync from gnulib.
3610         * config/config.guess, config/config.sub, config/install-sh: Likewise.
3611         * config/missing, config/texinfo.tex: Likewise.
3613 2005-01-29  Stepan Kasal  <kasal@ucw.cz>
3615         Simplify the implementation of m4_require (a.k.a. AC_REQUIRE).
3616         Update the long comment explaining it.
3618         m4_require no longer writes an ``is required by'' line to the
3619         execution stack.  It contains only one bit of non-redundant
3620         information: that the macro was required, not called.  And even
3621         this bit is useless in most situations: have you ever met a macro
3622         which both calls and requires the same macro?
3624         * lib/m4sugar/m4sugar.m4 (_m4_defun_pro): Don't push a diversion...
3625         (_m4_defun_pro_outer): ... only via this macro, for the outermost
3626           macro.
3627         (_m4_defun_epi, _m4_defun_epi_outer): Complementarily.
3628         (m4_expansion_stack_pop): Remove the misplaced comment.
3629         (m4_require): Don't put the ``is required by'' line to the
3630           execution stack; slightly improve the out-of-a-defun error message.
3631         (_m4_divert_grow): New macro, counter for the temporary diversions.
3632         (_m4_require_call): Use it.
3633         * tests/m4sugar.at (m4_require): Expect output without the
3634           ``is required by'' messages.
3636 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
3638         * doc/autoconf.texi (Limitations of Usual Tools): Recommend X
3639         rather than x for expr.
3641         * lib/autoconf/lang.m4 (_AC_COMPILER_OBJEXT): Avoid subshells when
3642         this is safe.
3643         * lib/autoconf/programs.m4 (AC_PROG_EGREP, AC_PROG_FGREP): Likewise.
3644         * lib/autoconf/specific.m4 (AC_SYS_LONG_FILE_NAMES): Likewise.
3645         * lib/autotest/general.m4 (AT_INIT): Likewise.
3646         * lib/m4sugar/m4sh.m4 (_AS_LINENO_WORKS): Likewise.
3647         * tests/mktests.sh: Likewise.
3649 2005-01-27  Akim Demaille  <akim@epita.fr>
3651         Have autoheader honor --force.
3653         * doc/make-stds.texi, doc/standards.texi: Update from masters.
3654         * lib/Autom4te/Channels.pm, lib/Autom4te/Configure_ac.pm
3655         * lib/Autom4te/FileUtils.pm, lib/Autom4te/XFile.pm: Update
3656         from masters, so that FileUtils.pm's update_file provide --force
3657         support.
3658         * bin/autoheader.in: Pass $force to update_file so that
3659         config.h.in is always recreated when --force.
3661 2005-01-24  Stepan Kasal  <kasal@ucw.cz>
3663         * doc/autoconf.texi (Introduction): Update Peter Simons' address.
3665 2005-01-21  Paul Eggert  <eggert@cs.ucla.edu>
3667         * doc/autoconf.texi (Limitations of Builtins): Clarify that
3668         "if test ! -d foo; ..." is portable.  Suggested by Stepan Kasal.
3670 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
3672         * doc/autoconf.texi (Shell Substitutions): Fix typo in case statement.
3673         Warn about newline stripping in `` and $().  Update Solaris
3674         version to 9.
3675         (Limitations of Builtins): Use expr "X...", not expr "x...", as
3676         X insulates us from future changes to Posix.
3677         (Limitations of Usual Tools): For AS_DIRNAME, warn about newline
3678         stripping.
3680 2005-01-19  Stepan Kasal  <kasal@ucw.cz>
3682         * doc/autoconf.texi (Defining Symbols): Delete the false comment that
3683           you cannot use AC_DEFINE to define macros containing `[' or `]'.
3685 2005-01-13  Paul Eggert  <eggert@cs.ucla.edu>
3687         * doc/autoconf.texi (Limitations of Usual Tools): Document bug
3688         in Solaris 8 join.  Problem reported by Tomohiro Suzuki on
3689         bug-tar mailing list.
3691 2005-01-05  Stepan Kasal  <kasal@ucw.cz>
3693         * lib/m4sugar/m4sugar.m4 (m4_copy): Fix the explanation.
3695 2005-01-05  Paul Eggert  <eggert@cs.ucla.edu>
3697         * lib/autoconf/c.m4 (AC_LANG_INT_SAVE(C)): Declare longval and
3698         ulongval to be static, to avoid unwanted GCC warning.  Problem
3699         reported by Michael Jennings via Daniel Reed; see
3700         <https://bugzilla.redhat.com/beta/show_bug.cgi?id=143852>.
3702 2005-01-05  Alexandre Duret-Lutz  <adl@gnu.org>
3704         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ARGS): Define datarootdir,
3705         docdir, htmldir, dvidir, pdfdir, psdir, and localdir.  Update
3706         datadir, infodir, and mandir.  Adjust argument parsing code.
3707         (_AC_INIT_HELP): Update help text.
3708         * doc/autoconf.texi (Installation Directory Variables): Document
3709         new variables.
3711 2005-01-04  Noah Misch  <noah@cs.caltech.edu>
3713         * lib/autoconf/programs.m4 (AC_PROG_MAKE_SET): If the Make program does
3714         not seem to work, assume it does set $(MAKE).
3715         * doc/autoconf.texi (AC_PROG_MAKE_SET): Update.
3717 2005-01-03  Stepan Kasal  <kasal@ucw.cz>
3719         * lib/m4sugar/m4sh.m4 (AS_REQUIRE): Add a comment about nesting.
3721 2005-01-03  Stepan Kasal  <kasal@ucw.cz>
3723         A cleanup of the diversion support in m4sugar.
3725         * lib/m4sugar/m4sugar.m4 (_m4_divert): A typo in description.
3726         (_m4_divert_n_stack): New macro; the expansion is
3727           <newline>m4_divert_stack, if m4_divert_stack is defined, and void
3728           otherwise.
3729         (m4_divert, m4_divert_push, m4_divert_pop, m4_init): Use it.
3730         (m4_divert_push, m4_divert_pop, _m4_defun_epi): Don't expand the word
3731           stored in _m4_divert_diversion or _m4_divert_dump.
3732         (m4_divert_pop): When the parameter is given, compare the symbolic
3733           name with the last diversion pushed on the stack.  Previously, the
3734           current diversion was compared with the numeric value of the
3735           diversion given as the parameter.
3736         (m4_require): If the macro hasn't been expanded yet, call ...
3737         (_m4_require_call): this new macro.
3739 2005-01-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3741         * lib/autoconf/general.m4 (_AC_INIT_PREPARE, _AC_ARG_VAR_VALIDATE):
3742         Workarounds for documented `case' limitations.
3744 2005-01-03  Paul Eggert  <eggert@cs.ucla.edu>
3746         * doc/autoconf.texi (Limitations of Usual Tools): Warn about
3747         sed 'command1;command2'.  Problem reported by Ralf Wildenhues.
3749 2005-01-02  Paul Eggert  <eggert@cs.ucla.edu>
3751         * bin/autoconf.as, bin/autoheader.in, bin/autom4te.in,
3752         bin/autoreconf.in, bin/autoscan.in, bin/autoupdate.in,
3753         bin/ifnames.in, tests/mktests.sh: Update copyright date to 2005.
3755         Patch from Roger Leigh (with some minor changes) as follows:
3756         * NEWS: New macros AC_PROG_CC_C89, AC_PROG_CC_C99.
3757         Resurrect AC_PROG_CC_STDC.
3758         * doc/autoconf.texi (C Compiler): Add AC_PROG_CC_STDC,
3759         AC_PROG_CC_C89, AC_PROG_CC_C99.
3760         (Obsolete Macros): Remove AC_PROG_CC_STDC; it's no longer obsolete.
3761         * lib/autoconf/c.m4 (_AC_PROG_CC_C89, _AC_PROG_CC_C99, AC_PROG_CC_C89,
3762         AC_PROG_CC_C99): New macros.
3763         (AC_PROG_CC_STDC): Use them.
3764         (_AC_PROG_CC_STDC): Remove.
3765         (AC_C_PROTOTYPES): Use ac_cv_prog_cc_c89, not ac_cv_prog_cc_stdc.
3766         * THANKS: Add Roger Leigh.
3768 2004-12-30  Noah Misch  <noah@cs.caltech.edu>
3770         * bin/autoreconf.in (autoreconf_current_directory):  AM_INIT_AUTOMAKE
3771         signals that the package uses Automake; a `Makefile.am' is typical but
3772         not essential.  Reported by Magnus Therning.
3773         * tests/torture.at (autoreconf.): New banner.
3774         (autoreconf and non-AC configure): Rename to `Non-Autoconf
3775         AC_CONFIG_SUBDIRS'.
3776         (autoreconf an empty directory): Rename to `Empty directory'.
3777         (Unusual Automake input files): New test.
3779 2004-12-30  Noah Misch  <noah@cs.caltech.edu>
3781         * lib/autotest/general.m4 (AT_CAPTURE_FILE): New macro.
3782         (AT_SETUP): Clear AT_capture_files.
3783         (_AT_CHECK): On failure, log each of AT_capture_files.  Fix comment.
3784         (AT_KEYWORDS): Fix comment typo.
3785         * tests/autotest.at (AT_CHECK_AT): Use AT_CAPTURE_FILE.
3786         * tests/local.at (AT_CHECK_CONFIGURE): Use AT_CAPTURE_FILE.
3787         * doc/autoconf.texi (Writing testsuite.at): Document AT_CAPTURE_FILE.
3789 2004-12-29  Albert Chin-A-Young  <china@thewrittenword.com>
3791         * lib/autoconf/programs.m4 (_AC_FEATURE_CHECK_LENGTH):
3792         If the variable to set is already set, set ac_cv_path_$1
3793         to the preset value so caller can assume ac_cv_path_$1
3794         is available.  (trivial change)
3796 2004-12-27  Noah Misch  <noah@cs.caltech.edu>
3798         * BUGS (Minor Problems): Warn about makefile limitations.
3799         * Makefile.am: Find and update `INSTALL' in $(srcdir).
3800         * man/Makefile.am: Find and update manual pages in $(srcdir).
3802 2004-12-24  Eric Blake  <ebb9@byu.net>
3804         * lib/m4sugar/m4sh.m4 (_AS_DETECT_BETTER_SHELL): Test candidate
3805         shells in subshell, to avoid noise from ash.  (trivial change)
3807 2004-12-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3809         * doc/autoconf.texi (Limitations of Builtins) <case>: Mention
3810         problems with SunOS ksh and backslash escaping, Bourne shells and
3811         closing brackets (both within character classes).  Bug reported
3812         against Libtool by Alexander Kurz <alexander.kurz@qsc.de>.
3813         <read>: New entry.  Mention non-availability of -r.
3815 2004-12-21  Akim Demaille  <akim@epita.fr>
3817         * lib/autotest/general.m4 (AT_LINE): Don't add srcdir here, to
3818         avoid cluttering displayed messages.  Rather, prepend srcdir where
3819         AT_LINE is used for log files.
3821 2004-12-21  Stepan Kasal  <kasal@ucw.cz>
3823         * lib/autoconf/status.m4: Quote ``$tmp'' in many places.
3824         * lib/m4sugar/m4sh.m4 (AS_TMPDIR): Fix the comment, as traps are
3825           no longer part of the macro, quote the occurrence of ``$tmp''.
3826         * doc/autoconf.texi (Forbidden Patterns): Typo.
3828 2004-12-21  Akim Demaille  <akim@epita.fr>
3830         * lib/autotest/general.m4 (AT_INIT): Make sure the "ok" etc. are
3831         separated from the test title by forcing a white space.
3833 2004-12-21  Akim Demaille  <akim@epita.fr>
3835         Enable Emacs navigation within testsuite.log files.
3837         * lib/autotest/general.m4 (AT_CLEANUP): Add an hint for Emacs to
3838         use the compilation mode.
3839         (AT_LINE): Point to the srcdir.
3841 2004-12-19  Noah Misch  <noah@cs.caltech.edu>
3843         * tests/Makefile.am (installcheck-local): Use $(bindir).
3844         (check-local, installcheck-local): Pass TESTSUITEFLAGS.
3845         * doc/autoconf.texi (Making testsuite Scripts): Recommend the same
3846         Makefile.am scheme Autoconf now uses.
3848 2004-12-18  Noah Misch  <noah@cs.caltech.edu>
3850         * lib/m4sugar/m4sugar.m4 (m4_qlen, m4_qdelta): New macros.
3851         * lib/autotest/general.m4 (AT_SETUP): Use m4_qdelta.
3853 2004-12-18  Noah Misch  <noah@cs.caltech.edu>
3855         * lib/autotest/general.m4 (_AT_DECIDE_TRACEABLE): New macro.
3856         (_AT_CHECK): Use it.
3857         * lib/m4sugar/m4sh.m4 (AS_ESCAPE_FOR_EXPAND): Remove.
3858         (AS_ESCAPE): Fix comment.
3859         * tests/autotest.at: Adjust section banner comments.
3860         (AT_CHECK_AT): Accept STATUS and STDERR.
3861         (AT_CHECK_AT_TEST): Likewise.
3862         (Invalid brace-enclosed parameter expansion)
3863         (Multiline command from M4 expansion)
3864         (Double-M4-quoted command): New tests.
3866 2004-12-17  Paul Eggert  <eggert@cs.ucla.edu>
3868         * doc/autoconf.texi: Update GNU FDL version from 1.1 to 1.2.
3870 2004-12-17  Akim Demaille  <akim@epita.fr>
3872         * lib/autoconf/general.m4 (AC_SUBST, AC_SUBST_FILES): Pass $1 to
3873         m4_pattern_allow.
3874         Suggested by Alexandre Duret-Lutz.
3875         * doc/autoconf.texi (Setting Output Variables): Catch up.
3877 2004-12-17  Stepan Kasal  <kasal@ucw.cz>
3879         * lib/m4sugar/m4sh.m4 (_AS_TEST_PREPARE): Fix comment.
3881 2004-12-17  Stepan Kasal  <kasal@ucw.cz>
3883         * lib/autoconf/general.m4 (_AC_LIBOBJ): We can use AC_SUBST/2,
3884           remove the comment which said we cannot.
3886 2004-12-17  Stepan Kasal  <kasal@ucw.cz>
3888         Add a specialized check for resolv.h.  Thanks to Gerrit P. Haase,
3889         Reini Urban and Paul Eggert for reporting the dependencies.
3891         * lib/autoconf/headers.m4 (AC_HEADER_RESOLV): New macro.
3892         * doc/autoconf.texi (AC_HEADER_RESOLV): Document it.
3893         (AC_HEADER_STAT): @cvindex{STAT_MACROS_BROKEN}, not @acindex.
3895 2004-12-17  Stepan Kasal  <kasal@ucw.cz>
3897         * bin/autoscan.in: Open autoscan.log only after ``parse_args'';
3898           so that eg. ``autoscan --help'' doesn't truncate it.
3900 2004-12-15  Nicolas Joly  <njoly@pasteur.fr>
3902         * lib/autoconf/programs.m4 (_AC_FEATURE_CHECK_LENGTH): Remove
3903         generated conftest files.
3905 2004-12-13  Noah Misch  <noah@cs.caltech.edu>
3907         * lib/autotest/general.m4 (_AT_CHECK) [--trace]: Do not enable shell
3908         tracing on commands with possibly-escaped newlines.
3909         * doc/autoconf.texi (Writing testsuite.at): Delete documentation of the
3910         discontinued behavior and its implications.
3911         * tests/autotest.at (BS-newline in command, ^BS-newline in command)
3912         (BSx641-newline in command, BS-BS-newline in command)
3913         (BSx640-newline in command, Newline-CODE-BS-newline in command)
3914         (Single-quote-BS-newline in command)
3915         (Single-quote-newline-BS-newline in command): New tests.
3917 2004-12-13  Stepan Kasal  <kasal@ucw.cz>
3919         * lib/m4sugar/m4sh.m4 (AS_EXECUTABLE_P): Use test -f && test -x
3920           on platforms where it works.
3921         (_AS_TEST_PREPARE): Test for ``test -x''.
3922         (_AS_BROKEN_TEST_PREPARE): Nuke.
3924 2004-12-13  Stepan Kasal  <kasal@ucw.cz>
3926         * lib/m4sugar/m4sh.m4 (AS_TMPDIR): Move the trap commands ...
3927         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): ... here;
3928           give only 4-letter prefix to AS_TMPDIR, comment fixed.
3929         * lib/autoconf/programs.m4 (_AC_PATH_PROG_FEATURE_CHECK): Don't
3930           create the temporary directory.
3931         (_AC_FEATURE_CHECK_LENGTH): Work in current directory.
3933 2004-12-12  Kelley Cook  <kcook@gcc.gnu.org>
3935         * bin/autoheader.in: Exit if no AC_CONFIG_HEADERS was found.
3936         (trivial change)
3938 2004-12-12  Alexandre Duret-Lutz  <adl@gnu.org>
3940         * doc/autoconf.texi (Limitations of Usual Tools) <expr (:)>: Typo.
3942 2004-12-11  Noah Misch  <noah@cs.caltech.edu>
3944         * lib/autotest/general.m4 (_AT_CHECK) [--trace]: Rework a shell pattern
3945         to avoid using a negated character class.  Reported by Nicolas Joly.
3946         * tests/local.at (AT_CHECK_SHELL_SYNTAX): Check for similar constructs.
3948 2004-12-10  Paul Eggert  <eggert@cs.ucla.edu>
3950         * man/Makefile.am (autoconf.1, autoheader.1, autom4te.1, autoreconf.1,
3951         autoscan.1, autoupdate.1, ifnames.1, config.guess.1, config.sub.1):
3952         Don't depend on .x file explicitly, since "make" does that for us.
3953         Suggested by Stepan Kasal.
3955         * bin/Makefile.am (MOSTLYCLEANFILES): Renamed from CLEANFILES.
3956         Add *.tmp.
3957         (autoconf, autoheader, autom4te, autoreconf, autoscan, autoupdate,
3958         ifnames): Factor common code.  And they said it couldn't be done!
3960 2004-12-09  Paul Eggert  <eggert@cs.ucla.edu>
3962         * bin/.cvsignore: Add autoconf.in.
3963         * tests/.cvsignore: Add wrapper.in.
3964         * lib/autotest/general.m4: Escape '$' in case pattern.
3966 2004-12-09  Noah Misch  <noah@cs.caltech.edu>
3968         * man/Makefile.am (autoconf.1): Regenerate when `autoconf.as' changes.
3970         * lib/autotest/general.m4 [--trace] (AT_INIT): Do not `set -v'.
3972         * tests/autotest.at: New file.
3973         * tests/suite.at: Include it.
3974         * tests/Makefile.am: Distribute it.
3976         * lib/autotest/general.m4 [--trace] (_AT_CHECK): Do not enable
3977           shell tracing on a command that could contain multiple lines.
3978         * doc/autoconf.text: Document that fact and its implications.
3979         * lib/m4sugar/m4sh.m4 (AS_ESCAPE_FOR_EXPAND): New macro.
3980         * tests/autotest.at (Multiline backquote command substitution,
3981           Multiline parameter expansion, Literal multiline command,
3982           Multiline parenthetical command substitution): Remove XFAIL.
3984 2004-12-09  Paul Eggert  <eggert@cs.ucla.edu>
3986         * doc/autoconf.texi (Libraries): Clarify problems with AC_CHECK_LIB
3987         and suggest AC_SEARCH_LIBS.  Suggested by Noah Misch and Stepan Kasal.
3989 2004-12-08  Noah Misch  <noah@cs.caltech.edu>
3991         * configure.ac (test suite): Cease to generate wrapper scripts.
3992         * configure: Regenerate.
3993         * lib/freeze.mk (MY_AUTOM4TE): Wrap the uninstalled autom4te directly.
3994         (m4f_dependencies): Adjust accordingly.
3995         * tests/Makefile.am (Wrappers): Generate wrapper scripts.
3996         (wrapper.in): Generate it in the build directory.
3997         (MAINTAINERCLEANFILES): Delete wrapper.in.
3998         (CLEANFILES): Add wrapper.in.
3999         * tests/wrapper.as: Move AS_INIT to very top, preserving copyright in
4000         the output.  Replace each $as_me with a @wrap_program@.
4001         * tests/wrapper.in: Delete it; we always build it.
4003         * bin/Makefile.am (autoconf.in): Generate it in the build directory.
4004         (EXTRA_DIST): Remove autoconf.in.
4005         (CLEANFILES): Add autoconf.in.
4006         (autoconf): Find autoconf.in in the build directory.
4007         * bin/autoconf.in: Delete it; we always build it.
4009 2004-12-08  Noah Misch  <noah@cs.caltech.edu>
4011         * lib/autotest/general.m4 (AT_INIT): Replace a `tr' with a `sed'.  Join
4012         PATH members so as to not prepend an empty element.  Move a comment.
4013         * Makefile.am (SUBDIRS): Build in `tests' last.
4014         * tests/Makefile.am (installcheck-local): Add check-local dependencies.
4016 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
4018         * lib/mdate-sh: Don't use "set - x`$ls_command /`", as zsh mishandles
4019         the spaces inside $ls_command.  Problem reported by Loulou Pouchet in
4020         <http://lists.gnu.org/archive/html/autoconf/2004-12/msg00074.html>.
4021         Don't use "set - x"; plain "set x" is enough, and simplifies debugging.
4023 2004-12-07  Stepan Kasal  <kasal@ucw.cz>
4025         * lib/autoconf/functions.m4 (AC_FUNC_GETMNTENT): Fix typo in previous
4026         patch: extra "-l"s.
4028 2004-12-06  Paul Eggert  <eggert@cs.ucla.edu>
4030         * lib/autoconf/functions.m4 (AC_FUNC_GETMNTENT): Check libc before
4031         looking elsewhere for getmntent.  Problem reported by Mark D. Baushke.
4032         * doc/autoconf.texi (Particular Functions): Mention new behavior.
4034 2004-12-03  Stepan Kasal  <kasal@ucw.cz>
4036         * lib/autoconf/general.m4 (AC_DEFINE, AC_DEFINE_UNQUOTED): Factor
4037           out the common code to ...
4038         (_AC_DEFINE_Q): ... a new macro; simplify the condition about the
4039           value of the #define--default to 1, iff the macro was called
4040           with exactly one parameter.
4042 2004-12-02  Paul Eggert  <eggert@cs.ucla.edu>
4044         * lib/autoconf/functions.m4 (AC_FUNC_MEMCMP): Use
4045         "char c = '\200';" rather than "char c = 0x80;" as the
4046         latter doesn't conform to the strict C standard due to
4047         overflow on signed char hosts.
4049         * lib/autoconf/c.m4 (_AC_PROG_CC_STDC): Prefer -qlanglvl=extc89
4050         to -qlanglvl=ansi.  We don't want to disable extensions.
4052 2004-11-29  Paul Eggert  <eggert@cs.ucla.edu>
4054         * doc/autoconf.texi (Particular Programs): @code{$PATH} -> @env{PATH}.
4055         (Using Autotest, testsuite Scripts, Writing testsuite.at):
4056         Reword slightly to avoid some English-language problems noted
4057         by Ralf Wildenhues in:
4058         http://lists.gnu.org/archive/html/autoconf-patches/2004-11/msg00027.html
4060 2004-11-29  Stepan Kasal  <kasal@ucw.cz>
4062         * NEWS: Add ^L above each release.
4064 2004-11-28  Paul Eggert  <eggert@cs.ucla.edu>
4066         Fix documentation problems reported by Russ Boylan in
4067         <http://lists.gnu.org/archive/html/bug-autoconf/2004-11/msg00056.html>,
4068         along with some nearby cruft.
4069         * doc/autoconf.texi (Libtool): Libtool can be used without
4070         Automake (not without Autoconf).
4071         (Introduction): Mention lists.gnu.org.
4072         * BUGS: Don't mention bugs.gnu.org.
4073         Remove mention of ancient libtool compatibility problem.
4074         * NEWS: Mention that bugs.gnu.org is kaput.
4075         * README: Likewise.  Mention where mailing list archives can be found.
4077 2004-11-28  Stepan Kasal  <kasal@ucw.cz>
4079         * HACKING: Refer to "coreutils", not "File, Shell or Text utils".
4080         * lib/m4sugar/m4sh.m4 (AS_HELP_STRING): A typo in the comment.
4082 2004-11-26  Paul Eggert  <eggert@cs.ucla.edu>
4084         * doc/autoconf.texi (Pretty Help Strings): Go back to
4085         single-quoting assignments to cache variables.
4087 2004-11-23  Stepan Kasal  <kasal@ucw.cz>
4089         * doc/autoconf.texi (Pretty Help Strings): Fix quoting issues
4090         with the examples; fix the bug in MY_ARG_WITH example reported
4091         by Alexandre Duret-Lutz.
4092         * lib/autoconf/general.m4 (AC_ARG_ENABLE, AC_ARG_ENABLE): Enable
4093         expansion of $1 in the comment emitted to configure.
4095 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
4097         * doc/autoconf.texi (Pretty Help Strings): Fix typo
4098         in my editing of the previous patch.  Problem reported
4099         by Alexandre Duret-Lutz.
4101 2004-11-22  Stepan Kasal  <kasal@ucw.cz>
4103         * doc/autoconf.texi (Autoconf Language): Explain that
4104         ``descriptions'' may not be double quotes.
4105         (Quotation Rule Of Thumb): Likewise.
4106         (Pretty Help Strings): Likewise; remove the wrong comment;
4107         simplify the examples and improve their quoting.
4109 2004-11-13  Stepan Kasal  <kasal@ucw.cz>
4111         * lib/autoconf/programs.m4 (_AC_FEATURE_CHECK_LENGTH): Don't check
4112         the $1_found variable, don't test whether the file is executable;
4113         Both things are checked ...
4114         (_AC_PATH_PROG_FEATURE_CHECK): ... here; AS_EXECUTABLE_P replaces
4115         the former ``test -f''.
4116         * lib/m4sugar/m4sh.m4 (_AS_TEST_PREPARE): Fix a typo.
4118 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
4120         * doc/autoconf.texi (Limitations of Usual Tools): Avoid cp -r;
4121         use cp -R instead.
4123 2004-11-10  Derek R. Price  <derek@ximbiot.com>
4125         * doc/autoconf.texi (Limitations of Usual Tools): Note `cp -r'
4126         limitations.  Reorder paragraphs for clarity.
4128 2004-10-11  Paul Eggert  <eggert@cs.ucla.edu>
4130         * doc/autoconf.texi: Standardize spelling of "Posix" (as opposed
4131         to "POSIX" or "@acronym{POSIX}"), and similarly for "DOS
4132         variants", "Unix", and some related minor wording fixups.
4134         (Shellology, Special Shell Variables): Document that the Zsh
4135         problem with NULLCMD was fixed in zsh 3.1.6-dev-18.  Thanks
4136         to Alexandre Duret-Lutz for this info.
4138 2004-10-10  Alexandre Duret-Lutz  <adl@gnu.org>
4140         * doc/autoconf.texi (One-Shot Macros): New node.
4142 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
4144         * doc/autoconf.texi (Function Portability): Fix misdescription
4145         of putenv.  Problem reported by Michael Wardle.
4147 2004-09-22  Paul Eggert  <eggert@cs.ucla.edu>
4149         * doc/autoconf.texi (auindex): New macro.
4150         (AU_DEFUN): Use it to fix the bug when the index contained AC_AU_DEFUN.
4151         Problem reported by Stepan Kasal.
4153 2004-09-05  Paul Eggert  <eggert@cs.ucla.edu>
4155         Fix problems reported by Andreas Buening in:
4156         http://lists.gnu.org/archive/html/autoconf-patches/2004-04/msg00004.html
4157         * lib/autoconf/programs.m4 (AC_PROG_MAKE_SET): Set SHELL=/bin/sh
4158         in test makefile.
4159         * lib/autotest/general.m4 (AT_INIT): Don't assume /dev/null is
4160         readable; it's not true in OS/2-emx.
4162 2004-09-04  Paul Eggert  <eggert@cs.ucla.edu>
4164         * lib/autoconf/libs.m4 (_AC_PATH_X_XMKMF): If xmkmf returns
4165         "/usr/include", clear ac_x_includes instead of leaving it as "no"
4166         (trivial change).  Problem and patch reported by Andrew Church in:
4167         http://lists.gnu.org/archive/html/bug-autoconf/2004-04/msg00016.html
4169 2004-09-03  Paul Eggert  <eggert@cs.ucla.edu>
4171         * doc/autoconf.texi: Give AC_DEFINE and AC_DEFINE_UNQUOTED
4172         three args in examples.  Problem reported by Frederik Fouvry in:
4173         http://lists.gnu.org/archive/html/bug-autoconf/2004-09/msg00017.html
4174         Also, fix some minor spacing and punctuation bugs.
4176 2004-09-02  Akim Demaille  <akim@epita.fr>
4178         * doc/autoconf.texi (Limitations of Builtins): Swap "cd" and
4179         "case" to restore ordering.
4180         Reported by Stepan Kasal.
4182 2004-08-26  Akim Demaille  <akim@epita.fr>
4184         * doc/autoconf.texi: Minor typos and stylos.
4186 2004-08-20  Paul Eggert  <eggert@cs.ucla.edu>
4188         * configure.ac (AC_INIT): Bump to 2.59c.
4190 2004-08-20  Paul Eggert  <eggert@cs.ucla.edu>
4192         Version 2.59b.
4194         * README: Add advice about m4 1.4.2.
4196         * Makefile.cfg (wget_files): Remove config.guess, config.sub,
4197         texinfo.tex for now (done by hand now).
4198         * Makefile.maint (wget_files, cvs_files):
4199         Remove ansi2knr.c; nobody uses it.
4200         (ansi2knr.c-url_prefix): Remove.
4201         (cvs-update): Fix test for failure.  I don't know why it ever
4202         worked...
4204         * doc/autoconf.texi: Update URLs, some of which went stale.
4205         Use @uref rather than @href.
4207         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ARGS): Have configure
4208         handle "--" as per POSIX.  Suggested by Paul Pogonyshev.
4210         * config/config.guess, config/config.sub, config/elisp-comp,
4211         config/install-sh, config/mkinstalldirs, config/texinfo.tex,
4212         doc/fdl.texi, doc/standards.texi: Sync with master copy.
4214         * NEWS, TODO, configure.ac, bin/autoscan.in,
4215         bin/autoupdate.in, bin/ifnames.in, doc/autoconf.texi,
4216         doc/install.texi, lib/Autom4te/Configure_ac.pm,
4217         lib/Autom4te/FileUtils.pm, lib/autoconf/general.m4,
4218         lib/autoconf/programs.m4, lib/autoconf/status.m4,
4219         lib/autotest/general.m4, lib/m4sugar/m4sh.m4,
4220         lib/m4sugar/m4sugar.m4, tests/local.at, tests/m4sh.at,
4221         tests/tools.at, tests/torture.at:
4222         Use "file name" rather than "filename" or "path",
4223         to be consistent with the terminology of the GNU coding standards.
4225 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
4227         * lib/autoconf/c.m4 (AC_LANG_BOOL_COMPILE_TRY(C),
4228         AC_C_LONG_DOUBLE): Undo 2004-06-04 change, as it didn't work with
4229         HP-UX 11.23 cc/aCC or Tru64 4.0 cc.  Problem reported by Noah Misch in
4230         <http://lists.gnu.org/archive/html/autoconf/2004-07/msg00004.html>.
4232         More fixes to support spaces in the name of the build directory.
4233         This isn't a complete fix but it's an improvement.
4235         * bin/autoconf.as (autom4te_options): New var.
4236         Use it instead of appending to AUTOM4TE, so that we can allow
4237         spaces in the build directory's absolute name.
4238         * bin/autoheader.in ($autoconf): Allow spaces in file names.
4239         * lib/autotest/general.m4 (AT_INIT, AT_CLEANUP, _AT_CHECK,
4240         AT_CHECK_NOESCAPE): Likewise.
4241         * tests/wrapper.as (testdir, AUTOM4TE_CFG, autom4te_perllibdir,
4242         main program): Likewise.
4244 2004-08-18  Paul Eggert  <eggert@cs.ucla.edu>
4246         * lib/autoconf/general.m4 (_AC_INIT_HELP): Quote $ac_popdir uses.
4247         From Ralf Corsepius in:
4248         http://lists.gnu.org/archive/html/autoconf-patches/2004-08/msg00014.html
4250 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
4252         * doc/autoconf.texi (Function Portability): Document isinf and
4253         and isnan.  From a suggestion by Kevin Ryde.
4255         * lib/Autom4te/General.pm (END): Return correct exit status even
4256         if unlink succeeds and sets $?.  Needed with Solaris 8's perl 5.00503.
4258 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
4260         * tests/torture.at (Deep Package): Use configure.in, not configure.ac,
4261         for compatibility with Automake 1.4.  Reported by J C Fitzgerald in
4262         <http://lists.gnu.org/archive/html/bug-autoconf/2003-08/msg00051.html>.
4264 2004-08-04  Alexandre Duret-Lutz  <adl@gnu.org>
4266         * lib/autoconf/general.m4 (AC_REQUIRE_AUX_FILE): New empty macro.
4267         (AC_CANONICAL_BUILD): Call it to require config.sub and config.guess.
4268         * lib/autoconf/programs.m4 (AC_PROG_INSTALL): Likewise for install-sh.
4269         * doc/autoconf.texi (Input): Document AC_REQUIRE_AUX_FILE.
4270         * lib/autom4te.in (Automake-preselections): Preselect
4271         AC_REQUIRE_AUX_FILE.  Automake 1.10 will trace it.
4273 2004-08-02  Alexandre Duret-Lutz  <adl@gnu.org>
4275         * lib/autom4te.in (Automake-preselections): Preselect
4276         AC_CANONICAL_BUILD and AC_CANONICAL_TARGET.  Automake 1.9.1 will
4277         trace them.
4279 2004-07-29  Paul Eggert  <eggert@cs.ucla.edu>
4281         * lib/m4sugar/m4sh.m4 (_AS_BOURNE_COMPATIBLE): Set BIN_SH, for
4282         Tru64.
4283         * doc/autoconf.texi (Shellology): Mention BIN_SH.
4284         Document problem with "`""`" in pdksh POSIX mode.
4286 2004-07-27  Paul Eggert  <eggert@cs.ucla.edu>
4288         * lib/m4sugar/m4sh.m4 (_AS_BOURNE_COMPATIBLE): Use "set -o posix"
4289         with pdksh, too.  Problem reported by Patrick Welche via
4290         Gary V. Vaughan.
4291         * doc/autoconf.texi (Shellology): Note that set -o posix is
4292         useful for pkdsh, too.
4294 2004-06-24  Paul Eggert  <eggert@cs.ucla.edu>
4296         * lib/m4sugar/m4sh.m4 (_AS_DETECT_BETTER_SHELL): Require
4297         _AS_UNSET_PREPARE, so that we can use $as_unset directly.
4298         Don't fail if ENV or BASH_ENV is readonly.
4299         (AS_SHELL_SANITIZE): Don't fail if ENV, MAIL, MAILPATH, LC_ALL,
4300         etc. are read only.  Problem reported by Ludovic Courtes.
4302 2004-06-23  Noah Misch  <noah@cs.caltech.edu>
4304         * lib/m4sugar/m4sh.m4 (_AS_BOURNE_COMPATIBLE): If the shell is
4305         zsh, disable GLOB_SUBST to avoid backslash handling problems.
4306         (trivial change)
4308 2004-06-04  Paul Eggert  <eggert@cs.ucla.edu>
4310         * doc/autoconf.texi (File System Conventions): Warn about
4311         names like "aux".  Problem reported by Eric Blake.
4313         * lib/autoconf/c.m4 (AC_LANG_BOOL_COMPILE_TRY (C)): Use division
4314         by zero instead of array size, so that we can use any arithmetic
4315         constant expression (instead of requiring an integer constant
4316         expression).  This allows us to test expressions like DBL_MAX <
4317         LDBL_MAX, which didn't conform to the C standard using the old
4318         method.
4319         (AC_C_LONG_DOUBLE): Put back in the tests for LDBL_MAX and LDBL_EPSILON,
4320         now that we can do floating-point tests at compile time.
4322 2004-06-02  Paul Eggert  <eggert@cs.ucla.edu>
4324         * lib/autoconf/c.m4 (AC_C_LONG_DOUBLE): Don't check LDBL_MAX
4325         and LDBL_EPSILON, as the resulting expression isn't an
4326         integer constant expression and violates the C standard.
4327         Problem reported by Nelson H. F. Beebe.  Also, check
4328         for "L" suffix, and check that long double doesn't have
4329         worse range or precision than double, that mixed-mode
4330         arithmetic doesn't generate a diagnostic, that double
4331         constants fit in long double.
4333 2004-06-03  Kevin Ryde  <user42@zip.com.au>
4335         * doc/autoconf.texi (Function Portability): Add notes on free(NULL),
4336         malloc(0) and realloc(NULL,size).
4338         * doc/autoconf.texi (Shell Substitutions): Spelling error reported by
4339         Bob Proulx.
4341 2004-05-31  Paul Eggert  <eggert@cs.ucla.edu>
4343         * lib/autoconf/headers.m4 (HAVE_STDBOOL_H): Detect _Bool bug
4344         in HP aC++/ANSI C B3910B A.05.55 [Dec 04 2003].  Problem reported
4345         by Jim Meyering.
4347 2004-05-26  Paul Eggert  <eggert@cs.ucla.edu>
4349         * doc/autoconf.texi (Limitations of Builtins): Mention that ! COMMAND
4350         can be rewritten using if-then-else.  Suggested by Bruno Haible.
4352 2004-05-25  Paul Eggert  <eggert@cs.ucla.edu>
4354         * doc/autoconf.texi (testsuite Scripts): Fix typo.
4355         Problem reported by Stepan Kasal.
4357 2004-05-24  Paul Eggert  <eggert@cs.ucla.edu>
4359         * tests/Makefile.am (autoconfdir): Fix to match comment (trivial
4360         change).  Patch reported by Ralf Wildenhues in
4361         <http://mail.gnu.org/archive/html/bug-autoconf/2004-05/msg00092.html>.
4363         * lib/autoconf/functions.m4 (AC_FUNC_MBRTOWC): Don't assume that a
4364         function F exists if the compiler and linker let you compile an
4365         expression like (F != 0).  Recent versions of GCC optimize away
4366         the reference to F in that case, since every function address must
4367         be nonzero, so the link succeeds even if F does not exist.
4368         Problem reported by Manu in
4369         <http://mail.gnu.org/archive/html/bug-gnu-utils/2004-05/msg00060.html>.
4371         * doc/autoconf.texi (Systemology): Standardize on the spelling of
4372         "Unix".  Many uses changed.
4373         (Limitations of Builtins): Explain better why the ! command isn't
4374         portable.
4376 2004-05-22  Alexandre Duret-Lutz  <adl@gnu.org>
4378         * lib/autom4te.in (Automake-preselections): Preselect
4379         LT_SUPPORTED_TAG in lieu of AC_LIBTOOL_TAGS.
4381 2004-05-19  Kevin Ryde  <user42@zip.com.au>
4383         * doc/autoconf.texi (Function Portability): Add strerror_r, cross
4384         referencing AC_FUNC_STRERROR_R.
4386         * doc/autoconf.texi (Particular Functions): In AC_FUNC_CLOSEDIR_VOID,
4387         note pessimistic assumption when cross compiling.
4389 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
4391         * doc/autoconf.texi (Limitations of Make): Note that BSD make
4392         (until 2004) invoked subcommands with sh -e, contra POSIX.
4393         Reported by Kevin Ryde.
4395 2004-05-10  Eric Sunshine  <sunshine@sunshineco.com>
4397         * programs.m4 (_AC_PROG_GREP): Fixed bug where PATH argument handed to
4398         _AC_PATH_PROG_FEATURE_CHECK contained leading whitespace (i.e.
4399         "        $PATH:/usr/xpg4/bin"). This resulted in bogus tests, such as
4400         `test -f "        /usr/bin/grep"', which _always_ failed.
4401         (AC_PROG_SED): Ditto bogus PATH fix.
4402         * autoconf.texi (AC_PROG_GREP): Properly document that this macro
4403         requires that grep correctly supports _multiple_ `-e' options, rather
4404         than stating only that grep should accept `-e'.
4406 2004-05-03  Paul Eggert  <eggert@cs.ucla.edu>
4408         Port to C99, which requires that 'exit' be declared.
4410         * lib/autoconf/c.m4 (AC_C_BIGENDIAN): Use AC_INCLUDES_DEFAULT
4411         to ensure that stdlib.h is included.
4412         * lib/autoconf/functions.m4 (_AC_LIBOBJ_ALLOCA, AC_FUNC_SETPGRP,
4413         AC_FUNC_STRTOD, AC_FUNC_SETVBUF_REVERSED, AC_FUNC_FORK, _AC_FUNC_FORK,
4414         _AC_FUNC_VFORK, AC_FUNC_WAIT3): Likewise.
4415         * lib/autoconf/specific.m4 (AC_SYS_RESTARTABLE_SYSCALLS): Likewise.
4416         * lib/autoconf/types.m4 (AC_TYPE_GETGROUPS): Likewise.
4417         * lib/autoconf/headers.m4 (AC_HEADER_STDC): Include <stdlib.h>
4418         when using 'exit' in a test; C99 requires that 'exit' be declared.
4420 2004-05-02  Paul Eggert  <eggert@cs.ucla.edu>
4422         * doc/autoconf.texi (Particular Programs): AC_PROG_GREP
4423         now prefers 'grep' implementations that accept -e.
4424         (Limitations of Usual Tools): Describe problems of traditional
4425         egrep and fgrep with long input lines, and of traditional grep
4426         with -e.
4427         * lib/autoconf/programs.m4 (AC_PROG_GREP): Check for -e, too.
4428         (_AC_PROG_GREP): Assume 3rd arg is properly quoted for the shell.
4429         All callers changed.  Append /usr/xpg4/bin to the PATH, for
4430         Solaris.
4431         (_AC_FEATURE_CHECK_LENGTH): Discard stderr, so we don't bother
4432         the user with complaints about multiple -e options.
4433         * tests/local.at (AC_STATE_SAVE): Use $GREP, not grep.
4434         Define it with AC_PROG_GREP.
4435         * configure.ac (AC_PROG_GREP): Add.
4436         * lib/freeze.mk (GREP): New macro.
4438 2004-05-02  Eric Sunshine  <sunshine@sunshineco.com>
4440         * lib/m4sugar/m4sh.m4 (_AS_DETECT_BETTER_SHELL): Consult $SHELL as
4441         a possible candidate only after all others fail, rather than
4442         consulting it first.  This improves backward compatibility by
4443         better reflecting the way shell selection occurred in previous
4444         versions of Autoconf, and should help to avoid triggering latent
4445         problems in other packages, such as the one in Automake where zsh
4446         is not handled robustly:
4447         http://mail.gnu.org/archive/html/automake/2004-04/msg00095.html
4448         Although it is not Autoconf's responsibility to work around
4449         problems in Automake, it nevertheless makes sense to avoid
4450         introducing unnecessary incompatibilites.
4452 2004-04-22  Albert Chin-A-Young  <china@thewrittenword.com>,
4453             Gary V. Vaughan  <gary@gnu.org>
4455         * lib/autoconf/programs.m4 (_AC_FEATURE_CHECK_LENGTH): Don't guess
4456         how deeply nested we are when a suitable tool is found, set the
4457         ac_path_TOOL_found flag.
4458         (_AC_PATH_PROG_FEATURE_CHECK): Encapsulate knowledge of how deeply
4459         nested we are in this macro.  Break out of all 3 nested loops if
4460         ac_path_TOOL_found is set.
4462 2004-04-21  Gary V. Vaughan  <gary@gnu.org>
4464         * lib/autoconf/programs.m4 (_AC_FEATURE_CHECK_LENGTH): Break out
4465         of the _AS_PATH_WALK loop too if GNU flavor is found.
4467 2004-04-21  Alexandre Duret-Lutz  <adl@gnu.org>
4469         * doc/autoconf.texi (Limitations of Make): Update documentation
4470         for `$<'.  New entry `Long lines', based on a report from Simon
4471         Josefsson.  Augment the documentation for SHELL = @SHELL@ with a
4472         paragraph about DJGPP, based on a mail from Richard Dawe.
4474 2004-04-20  Paul Eggert  <eggert@twinsun.com>
4476         * tests/c.at (C keywords): Don't assume that GCC supports
4477         "restrict" and "inline", as sufficiently-old GCC versions do not
4478         (also, GCC configured to be in pedantic C89 mode does not).
4479         Problem reported by Sumit Pandya in:
4480         http://mail.gnu.org/archive/html/autoconf/2004-04/msg00092.html
4482         * lib/autoconf/c.m4 (_AC_PROG_CC_G, _AC_PROG_CXX_G): Don't
4483         consider -g to work if it generates warnings when plain compiles
4484         don't.  Problem reported by Braden McDaniel in:
4485         http://mail.gnu.org/archive/html/autoconf-patches/2003-07/msg00014.html
4487         * doc/autoconf.texi (Slashes): New section, to document a problem
4488         reported by Jim Meyering in:
4489         http://mail.gnu.org/archive/html/bug-coreutils/2004-02/msg00060.html
4491         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Remove potential
4492         linker output files before linking, to work around IRIX 6 linker bug.
4493         Problem reported by Rainer Orth in:
4494         http://mail.gnu.org/archive/html/autoconf-patches/2004-02/msg00007.html
4496 2004-04-20  Gary V. Vaughan  <gary@gnu.org>
4498         * lib/autoconf/programs.m4 (_AC_FEATURE_CHECK_LENGTH): Make the
4499         best tool so far counter rely on the tool path variable name to
4500         avoid checks for one tool being affected by the results of running
4501         the length check on a previous tool.
4503         * lib/autoconf/programs.m4 (_AC_PROG_GREP): Take an additional
4504         match expression argument, as different greps have different
4505         regular expression flavours.
4506         (AC_PROG_FGREP): Pass 'FGREP'. fgrep treats all match chars as
4507         literals.
4508         (AC_PROG_EGREP): Pass 'EGREP$'.
4509         (AC_PROG_GREP): Pass 'GREP$'.
4511 2004-04-20  Albert Chin-A-Young  <china@thewrittenword.com>
4513         * lib/autoconf/programs.m4 (AC_PROG_GREP): Cache variable
4514         is `ac_cv_path_GREP', not `oc_cv_path_GREP'.
4516 2004-03-29  Paul Eggert  <eggert@twinsun.com>
4518         * doc/autoconf.texi (Particular Headers, Particular Types, Generic
4519         Types, Specific Compiler Characteristics, System Services,
4520         Obsolete Macros): Use 'long int', 'short int', 'unsigned int'
4521         etc. consistently instead of 'long', 'short', 'unsigned' etc.
4522         * lib/autoconf/c.m4 (AC_LANG_INT_SAVE(C), AC_C_BIGENDIAN): Likewise.
4523         * lib/autoconf/functions.m4 (AC_FUNC_MMAP, AC_FUNC_SELECT_ARGTYPES):
4524         Likewise.
4525         * lib/autoconf/headers.m4 (AC_HEADER_SYS_WAIT): Likewise.
4526         * lib/autoconf/types.m4 (AC_TYPE_GETGROUPS, AC_TYPE_SIZE_T,
4527         AC_TYPE_OFF_T): Likewise.
4528         * tests/semantics.at (AC_CHECK_TYPES: backward compatibility):
4529         Likewise.
4531         * tests/foreign.at (Libtool): Create an empty aclocal.m4, to
4532         pacify libtool 1.5.2.  Fix quoting problems in sed command.
4534 2004-03-28  Paul Eggert  <eggert@twinsun.com>
4536         * doc/autoconf.texi (Particular Structures): AC_STRUCT_TIMEZONE
4537         now defines HAVE_DECL_TZNAME if it is declared, when
4538         HAVE_STRUCT_TM_TM_ZONE is not defined.
4539         * lib/autoconf/types.m4 (AC_STRUCT_TIMEZONE): Implement this.
4540         Do not assume atoi.  Rely on HAVE_DECL_TZNAME when testing
4541         for HAVE_TZNAME.
4543 2004-03-28  Steven G. Johnson  <stevenj@fftw.org>
4545         * lib/autoconf/fortran.m4 (_AC_PROG_FC_V_OUTPUT): Corrected
4546         superfluous backslashing of quotes (") in sed expressions;
4547         thanks to Paul Eggert.
4549 2004-03-26  Steven G. Johnson  <stevenj@alum.mit.edu>
4551         * lib/autoconf/fortran.m4 (_AC_PROG_FC): new name of Intel
4552         Fortran compiler is ifort, also added pghpf; thanks to Nelson
4553         H. F. Beebe for the bug report.
4555 2004-03-26  Steven G. Johnson  <stevenj@fftw.org>
4557         * lib/autoconf/fortran.m4 (_AC_PROG_FC_V_OUTPUT): fix for
4558         quoted -cmdline argument in Portland Group compiler (bug
4559         reported by Jeffrey J. Barteet).
4561 2004-03-25  Kevin Ryde  <user42@zip.com.au>
4563         * doc/autoconf.texi (Specifying Names): Move cross_compiling ovindex to
4564         (Run Time): ... here, where it's now mentioned.
4566 2004-03-19  Alexandre Duret-Lutz  <adl@gnu.org>
4568         * doc/autoconf.texi (autom4te Invocation): Language Autoconf
4569         inherits from language Autoconf-without-aclocal-m4.
4570         (Customizing autom4te): Adjust example; the cache must now be
4571         disabled for language Autoconf-without-aclocal-m4.
4573 2004-03-16  Paolo Bonzini  <bonzini@gnu.org>
4574             Nathanael Nerode  <neroden@twcny.rr.com>
4576         * lib/autoconf/programs.m4 (AC_PATH_TOOL, AC_CHECK_TOOL,
4577         AC_CHECK_TOOLS): Warn if a cross-tool is found without
4578         a prefix.
4579         (AC_PATH_TARGET_TOOL, AC_CHECK_TARGET_TOOL,
4580         AC_CHECK_TARGET_TOOLS): New macros.
4581         * doc/autoconf.texi (Generic Programs): Document
4582         (AC_PATH_TARGET_TOOL, AC_CHECK_TARGET_TOOL,
4583         AC_CHECK_TARGET_TOOLS, and warn for future changes
4584         in the behavior of AC_PATH_TOOL, AC_CHECK_TOOL and
4585         AC_CHECK_TOOLS.
4586         (Specifying Names): Document the reason for these future
4587         behavioral changes.
4588         * tests/mktests.sh: Do not generate tests for the
4589         new macros.
4590         * NEWS: Document these changes.
4592         * doc/autoconf.texi: Avoid macros with unbraced arguments,
4593         they make TeX hang up.
4595 2004-03-15  Paul Eggert  <eggert@bogus.example.com>
4597         * NEWS: New macro AC_CHECK_ALIGNOF.
4598         * doc/autoconf.texi (Generic Compiler Characteristics): Document it.
4599         * lib/autoconf/types.m4 (AC_CHECK_SIZEOF): Use long int rather than
4600         int; avoid "a `$1'" since this isn't grammatical if $1 begins with a
4601         vowel.
4602         (AC_CHECK_ALIGNOF): New macro.
4603         * tests/mktests.sh (ac_exclude_list): Exclude AC_CHECK_ALIGNOF.
4604         * tests/semantics.at (AC_CHECK_ALIGNOF): Add tests similar to
4605         those for sizeof.
4607 2004-03-03  Paul Eggert  <eggert@twinsun.com>
4609         * bin/Makefile.am (edit): Don't use $< in a context where
4610         POSIX doesn't require support for it.  Use $@.in instead.
4611         Problem reported by Anthony N. Frasso in
4612         <http://mail.gnu.org/archive/html/autoconf/2004-03/msg00008.html>.
4613         * bin/autoscan.in, bin/autoupdate.in: Add @configure_input@ comment.
4615 2004-02-23  Gary V. Vaughan  <gary@gnu.org>
4617         * bin/autoreconf.in (autoreconf_current_directory): Recognize LT_INIT
4618         from the next generation of Libtool.
4619         * lib/autom4te.in (Autoreconf-preselections): Ditto.
4621 2004-02-20  Alexandre Duret-Lutz  <adl@gnu.org>
4623         * doc/autoconf.texi (Limitations of Usual Tools) <mkdir>: `mkdir -p'
4624         is not always thread-safe.  Report from Nathanael Nerode.
4626 2004-02-18  Paul Eggert  <eggert@twinsun.com>
4628         Fix a dependencies problem, stemming from a Autoconf 2.59 build
4629         problem on QNX reported by Stephen Rasku in
4630         <http://mail.gnu.org/archive/html/bug-autoconf/2004-02/msg00066.html>.
4632         * bin/Makefile.am ($(srcdir)/autoconf.in): Depend on
4633         $(m4sh_m4f_dependencies); this removes a FIXME.
4634         * tests/Makefile.am ($(srcdir)/wrapper.in): Likewise.
4635         (MAINTAINERCLEANFILES): Split into pieces,
4636         one per related section.  Add $(srcdir)/wrapper.in.
4638 2004-02-09  Paul Eggert  <eggert@twinsun.com>
4640         * doc/autoconf.texi (Setting Output Variables): Emphasize that
4641         AC_SUBST provides no portable way to escape literal newlines.
4643         * lib/autoconf/fortran.m4 (_AC_FC_LIBRARY_LDFLAGS): Ignore all
4644         flags of the form -lcrt*.o, not just -lcrt[01].o and -lcrtbegin.o.
4645         Darwin uses -lcrt2.o and there's little point to cataloging all
4646         the system variants.  Partial fix reported by Andreas Waechter in:
4647         http://mail.gnu.org/archive/html/autoconf-patches/2004-02/msg00006.html
4648         for bug reported by Nelson H. F. Beebe in:
4649         http://mail.gnu.org/archive/html/bug-autoconf/2003-12/msg00090.html
4651 2004-02-04  Paolo Bonzini  <bonzini@gnu.org>
4653         * doc/autoconf.texi (AU_DEFUN): Fix English,
4654         suggested by Paul Eggert.
4655         * lib/autoconf/autoupdate.m4: Correct reference to
4656         acobsolete.m4, suggested by Alexandre Duret-Lutz.
4658 2004-02-02  Paolo Bonzini  <bonzini@gnu.org>
4660         * bin/autoupdate.in: Define __file__ so that warnings
4661         refer to the correct file.
4662         * doc/autoconf.texi (AU_DEFUN): Describe more correctly
4663         the behavior of the third argument.
4664         * lib/autoconf/autoupdate.m4 (AU_DEFUN): Describe more
4665         correctly the behavior of the third argument.  Document
4666         what the three macros that AU_DEFUN defines do.  Fix
4667         warning message when the third argument includes $0
4668         (reported by Alexandre Duret-Lutz).
4670 2004-01-30  Paolo Bonzini  <bonzini@gnu.org>
4671             Eric Sunshine  <sunshine@sunshineco.com>
4672             Paul Eggert  <eggert@twinsun.com>
4674         * lib/m4sugar/m4sh.m4 (M4SH-SANITIZE): New diversion.
4675         (AS_INIT): Output shell initialization there. Removed optional
4676         parameter. Expand _AS_SHELL_FN_SPY.
4677         (AS_INIT_WITH_SHELL_FN): Removed.
4678         (_AS_SHELL_FN_SPY): New macro.
4679         (AS_DETECT_REQUIRED, AS_DETECT_SUGGESTED): New
4680         macros.
4681         (AS_SHELL_SANITIZE): Remove loop to find better shell
4682         and documentation for the parameter.
4683         (_AS_DETECT_BETTER_SHELL): Move it here.
4684         (_AS_SHELL_FN_WORK): Remove shell invocation, reformat.
4685         (_AS_RUN): Move it here, support testing with eval.
4686         (AS_REQUIRE_SHELL_FN): Require shell functions when
4687         it is used.
4688         (_AS_LINENO_WORKS): Put around braces, we do not
4689         trigger the bash bug anymore.
4690         * lib/autotest/general.m4: Document M4SH-SANITIZE, do not
4691         use AS_INIT_WITH_SHELL_FN.
4692         * bin/autoconf.in, tests/wrapper.in: Regenerated.
4694 2004-01-30  Paolo Bonzini  <bonzini@gnu.org>
4696         * bin/autoupdate.in: Trace AU_DEFINE instead of AU_DEFUN.
4697         * doc/autoconf.texi: Don't say that the third parameter
4698         is broken.
4699         * lib/autoconf/autoupdate.m4 (AU_DEFINE): New dummy macro.
4700         (AU_DEFUN): Honor the third parameter, create autoupdate
4701         macros with AU_DEFINE.
4702         * lib/autoconf/headers.m4 (AC_USG, AC_MEMORY_H,
4703         AC_DIR_HEADER): Use AU_DEFUN's third parameter.
4704         * lib/autoconf/lang.m4 (AC_LANG_SAVE): Likewise.
4705         * lib/autoconf/programs.m4 (AC_RSH): Likewise.
4706         * lib/autoconf/specific.m4 (AC_HAVE_POUNDBANG,
4707         AC_ARG_ARRAY, AC_CYGWIN, AC_EMXOS2, AC_MINGW32,
4708         AC_XENIX_DIR): Likewise.
4709         * lib/autoconf/types.m4 (AC_INT_16_BITS, AC_LONG_64_BITS,
4710         AC_STRUCT_ST_BLKSIZE, AC_STRUCT_ST_RDEV): Likewise.
4711         * lib/autoconf/status.m4: Remove FIXME.
4712         * tests/local.at (AT_CHECK_AU_MACRO): Ignore stderr, check
4713         that the macro is not present anymore in the updated
4714         configure.ac.
4715         * tests/tools.at (autoupdate AC_LINK_FILES): Ignore stderr
4716         of autoupdate.
4718 2004-01-28  Paul Eggert  <eggert@twinsun.com>
4720         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): Add 2004 to
4721         copyright years.
4722         * lib/autoconf/general.m4 (_AC_INIT_COPYRIGHT): Add 1992 thorugh
4723         2003 (except 1997) to the list of copyright years.  This undoes
4724         the 2003-05-22 change, which removed the older years from the list.
4725         * lib/autoconf/status.m4 (AC_OUTPUT): Update copyright date to 2004.
4727 2004-01-27  Gary V. Vaughan  <gary@gnu.org>
4728             Albert Chin-A-Young  <china@thewrittenword.com>
4730         * lib/autoconf/programs.m4 (AC_PROG_GREP): New macro to test for a
4731         grep or ggrep program in PATH that accepts as long lines as
4732         possible.
4733         * lib/autoconf/programs.m4 (_AC_PROG_GREP): Factor out the core of
4734         AC_PROG_GREP.
4735         (AC_PROG_EGREP, AC_PROG_FGREP): Use it to find best available
4736         egrep and fgrep respectively if $GREP -E/-F don't work.
4737         (_AC_PATH_PROG_FEATURE_CHECK): Factor out the common core of
4738         _AC_PROG_GREP, and AC_PROG_SED.
4739         (_AC_FEATURE_CHECK_LENGTH): New helper macro for finding the
4740         longest input length accepted by a command.
4741         (AC_PROG_SED): Use it.
4742         * doc/autoconf.texi (Particular Programs): Document the changes.
4743         * NEWS: Updated.
4745 2004-01-27  Paul Eggert  <eggert@twinsun.com>
4747         * bin/autoconf.as ($version): Update copyright from 2003 to 2004.
4748         * bin/autoheader.in, bin/autom4te.in, bin/autoreconf.in,
4749         bin/autoscan.in, bin/autoupdate.in, bin/ifnames.in: Likewise.
4750         * lib/autoconf/general.m4 (_AC_INIT_COPYRIGHT): Likewise.
4752         * Makefile.in, aclocal.m4, configure, bin/Makefile.in,
4753         bin/autoconf.in, config/Makefile.in, config/config.guess,
4754         config/config.sub, config/install-sh, config/mdate-sh,
4755         config/mkinstalldirs, config/texinfo.tex, doc/Makefile.in,
4756         lib/Makefile.in, lib/Autom4te/Makefile.in,
4757         lib/autoconf/Makefile.in, lib/autoscan/Makefile.in,
4758         lib/autotest/Makefile.in, lib/emacs/Makefile.in,
4759         lib/m4sugar/Makefile.in, man/Makefile.in, man/autoconf.1,
4760         man/autoheader.1, man/autom4te.1, man/autoreconf.1,
4761         man/autoscan.1, man/autoupdate.1, man/config.guess.1,
4762         man/config.sub.1, man/ifnames.1, tests/Makefile.in,
4763         tests/acc.at, tests/acfortran.at, tests/acfunctions.at,
4764         tests/acgeneral.at, tests/acheaders.at, tests/aclang.at,
4765         tests/aclibs.at, tests/acspecific.at, tests/acstatus.at,
4766         tests/actypes.at: Regenerate and/or sync with original
4767         sources.
4769 2004-01-26  Paul Eggert  <eggert@twinsun.com>
4771         * doc/autoconf.texi (Default Includes): Include <stdint.h> even if
4772         HAVE_INTTYPES_H is defined.  This is needed on Tru64 5.1b with
4773         Compac C V6.5-207 (dtk), which defines uintmax_t in <stdint.h> but
4774         not <inttypes.h>.  Problem reported by Tim Mooney in
4775         <http://mail.gnu.org/archive/html/bug-coreutils/2004-01/msg00147.html>.
4776         * lib/autoconf/headers.m4 (_AC_INCLUDES_DEFAULT_REQUIREMENTS):
4777         Likewise.
4779         * lib/autoconf/programs.m4 (AC_PROG_SED): Use diff, not sed;
4780         otherwise "make check" fails because it forbids cmp (I guess
4781         because cmp treats files as binary on DOS-like systems).
4783         * tests/mktests.sh: Update copyright date to 2004, since some tests
4784         have changed in 2004.
4786 2004-01-23  Gary V. Vaughan  <gary@gnu.org>
4788         * lib/autoconf/programs.m4 (AC_PROG_SED):  New macro to test for a
4789         non-truncating sed or gsed program in PATH.
4790         * tests/acprograms.at: Add it.
4791         * doc/autoconf.texi (Particular Programs): Document it.
4792         * NEWS: Updated.
4794 2004-01-15  Paul Eggert  <eggert@twinsun.com>
4796         * lib/autoconf/c.m4 (_AC_PROG_CC_STDC): Try -std, not -std1, since
4797         -std1 disables some useful extensions on Tru64.  Problem reported
4798         by N. Lichtmaier in
4799         <http://mail.gnu.org/archive/html/autoconf/2004-01/msg00100.html>.
4801 2004-01-14  Paul Eggert  <eggert@twinsun.com>
4803         * doc/autoconf.texi (Programming in M4sh): Document that
4804         AS_MKDIR_P succeeds if the destination is a symbolic link
4805         to an existing directory.
4806         (Limitations of Usual Tools): Note that mkdir -p might not
4807         succeed on symlinks to directories.
4809 2004-01-13  Paul Hilfinger  <hilfinger@CS.Berkeley.EDU>
4811         * lib/autoconf/autoupdate.m4 (AU_DEFUN): Grammar fix in comment.
4812         * bin/autoheader.in: Grammar fix in message.
4813         * lib/m4sugar/m4sh.m4 (AS_MKDIR_P):
4814         Test for dir before calling mkdir -p.  (trivial changes)
4816 2004-01-13  Eric Blake  <ebb9@byu.net>
4818         * doc/autoconf.texi (Obsolete Macros): In AC_TRY_COMPILE and
4819         AC_TRY_LINK, s/AC_LANG_SOURCE/AC_LANG_PROGRAM/.  (trivial change)
4821 2004-01-10  Jim Meyering  <jim@meyering.net>
4823         * doc/autoconf.texi (Running the Preprocessor): Correct grammar.
4825 2004-01-09  Paul Eggert  <eggert@twinsun.com>
4827         * lib/autoconf/general.m4: Fix bug: AC_CHECK_SIZEOF evokes a warning
4828         with `autoconf -Wall,error'.  Bug reported by Eric Blake in:
4829         http://mail.gnu.org/archive/html/autoconf-patches/2004-01/msg00000.html
4830         (_AC_COMPUTE_INT_COMPILE): Invoke _AC_COMPILE_IFELSE, not
4831         AC_COMPILE_IFELSE, since we now assume our caller invokes
4832         AC_LANG_COMPILER_REQUIRE, for symmetry with _AC_COMPUTE_INT_RUN.
4833         (_AC_COMPUTE_INT_RUN): Likewise, for _AC_RUN_IFELSE instead
4834         of AC_RUN_IFELSE; this avoids the warning mentioned above.
4835         (_AC_COMPUTE_INT): Invoke AC_LANG_COMPILER_REQUIRE.
4837 2004-01-07  Paul Eggert  <eggert@twinsun.com>
4839         * lib/autoconf/general.m4 (_AC_LIBOBJS_NORMALIZE): Avoid \$ inside
4840         `"'...'"`, as it's confusing (and I suspect it may not work on
4841         some platforms).  The code was incorrect anyway, as it assumed
4842         that \$ evaluated to itself in that context.  Reported by
4843         Alexandre Duret-Lutz.
4845 2004-01-07  Alexandre Duret-Lutz  <adl@gnu.org>
4847         * lib/autom4te.in (Automake-preselections): Preselect AC_LIBTOOL_TAGS
4848         and _LT_AC_TAGCONFIG.
4850 2004-01-06  Paul Eggert  <eggert@twinsun.com>
4852         * doc/autoconf.texi (One Macro Call): Fix an incorrect
4853         example, and add more examples.  Reported by Eric Sunshine.
4855 2004-01-05  Paul Eggert  <eggert@twinsun.com>
4857         * doc/autoconf.texi (Limitations of Usual Tools):
4858         Remove warning against "rm -fr" introduced yesterday; it
4859         was a false alarm.
4861         * bin/Makefile.am (autoconf, autoheader, autom4te, autoreconf,
4862         autoscan, autoupdate, ifnames): Don't use chmod -w.
4863         * lib/Makefile.am (autom4te.cfg): Likewise.
4864         * doc/autoconf.texi (Limitations of Usual Tools): Warn against
4865         "chmod -w".
4867 2004-01-04  Paul Eggert  <eggert@twinsun.com>
4868             Paolo Bonzini  <bonzini@gnu.org>
4870         * lib/m4sugar/m4sh.m4 (_AS_LINENO_PREPARE): Speed up sed scripts
4871         by doing lineno substitution only on lines containing "$LINENO".
4873 2004-01-04  Paul Eggert  <eggert@twinsun.com>
4875         * lib/autoconf/general.m4 (AC_ARG_PROGRAM):
4876         Use "rm -f" to remove conftest.sed, not plain "rm".
4877         Bug reported by David Relson in
4878         <http://mail.gnu.org/archive/html/autoconf/2004-01/msg00011.html>.
4880         * Makefile.am (autom4te-update):
4881         Replace "rm -rf" and "rm -fr" with "rm -f -r", as POSIX requires.
4882         * Makefile.maint (my-distcheck, do-po-update): Likewise.
4883         * doc/autoconf.texi (Guidelines): Likewise.
4884         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Likewise.
4885         * lib/autoconf/libs.m4 (_AC_PATH_X_XMKMF): Likewise.
4886         * lib/autoconf/specific.m4 (AC_SYS_LONG_FILE_NAMES): Likewise.
4887         * lib/autotest/general.m4 (AT_INIT): Likewise.
4888         * lib/m4sugar/m4sh.m4 (AS_TMPDIR): Likewise.
4889         * tests/Makefile.am (clean-local): Likewise.
4890         * tests/tortue.at (AC_CONFIG_FILES, HEADERS, LINKS and COMMANDS,
4891         srcdir): Likewise.
4892         * doc/autoconf.texi (Limitations of Usual Tools):
4893         Warn against "rm -fr".
4895 2004-01-03  Paul Eggert  <eggert@twinsun.com>
4897         * doc/autoconf.texi (Limitations of Usual Tools): Mention that cc
4898         -c -o might not work.  From a suggestion by Kevin Ryde.
4899         (C Compiler, Generating Sources, Limitations
4900         of Usual Tools, Limitations of Make, Making testsuite Scripts):
4901         Don't put '-o' after non-options, as POSIX doesn't allow this.
4902         Mention that cc's name might be gcc or c89 or whatever.
4904 2004-01-04  Kevin Ryde  <user42@zip.com.au>
4906         * doc/autoconf.texi: Add various further index entries.
4908 2003-12-29  Paul Eggert  <eggert@twinsun.com>
4910         * bin/autoreconf.in (autoreconf_current_directory):
4911         Fix typo: mkdir without umask arg.
4913 2003-12-27  Alexandre Duret-Lutz  <adl@gnu.org>
4915         * doc/autoconf.texi (Limitations of Make) <Automatic rule rewriting>:
4916         Documents OSF1/Tru64 make behavior.  Replace `VPATH = ../src' by
4917         `VPATH = ../pkg/src' in examples to make the OSF1/Tru64 make
4918         explanation clearer.
4920 2003-12-24  Andreas Schwab  <schwab@suse.de>
4922         * doc/autoconf.texi (Default Includes): Fix misspelling of
4923         AC_INCLUDES_DEFAULT.
4925 2003-12-03  Paolo Bonzini  <bonzini@gnu.org>
4927         * configure.ac: Test if sh -n works.
4928         * configure: Regenerate.
4929         * tests/atlocal.in: Store the result here.
4930         * tests/local.at (AT_CHECK_SHELL_SYNTAX): Extracted from
4931         tools.at, looking in atlocal's ac_cv_sh_n_works instead
4932         of explicitly testing.
4933         (AT_CHECK_PERL_SYNTAX): Moved from tools.at.
4934         (AT_CHECK_AUTOCONF): Test for the configure script syntax.
4935         * tests/tools.at (Syntax of the shell scripts): Simplify
4936         using AT_CHECK_SHELL_SYNTAX.
4937         (Syntax of the Perl scripts): Remove definition of
4938         AT_CHECK_PERL_SYNTAX.
4940 2003-12-03  Paolo Bonzini  <bonzini@gnu.org>
4942         * lib/m4sugar/m4sh.m4 (_AS_SHELL_FN_WORK): Redirect
4943         stderr to /dev/null.
4944         * bin/autoconf.in: Regenerate.
4945         * bin/wrapper.in: Regenerate.
4947 2003-11-26  Paolo Bonzini  <bonzini@gnu.org>
4949         * lib/m4sugar/m4sh.m4 (_AS_BOURNE_COMPATIBLE):
4950         Extracted from AS_SHELL_SANITIZE.
4951         (_AS_SHELL_FN_WORK, AS_INIT_WITH_SHELL_FN): New
4952         macros.
4953         (AS_SHELL_SANITIZE): Move reinvocation code from
4954         _AS_LINENO_WORKS, use it to find out if shell
4955         functions work.
4956         (_AS_LINENO_WORKS): Don't find another shell if $LINENO
4957         does not work.
4958         (AS_INIT): Pass parameter down to AS_SHELL_SANITIZE.
4959         (AS_REQUIRE_SHELL_FN): Test that AS_INIT_WITH_SHELL_FN
4960         was called.
4961         * lib/autotest/general.m4: Use AS_INIT_WITH_SHELL_FN.
4962         * bin/autoconf.in: Regenerate.
4963         * tests/wrapper.in: Regenerate.
4964         * tests/tools.at: Test the syntax of tests/autoconf
4965         and tests/testsuite.
4967 2003-11-24  Akim Demaille  <akim@epita.fr>
4969         * config/announce-gen (&print_locations, &print_signatures)
4970         (&sizes): New.
4971         Use them.
4972         No longer rely on Gnus to inline the list of signatures: compute
4973         them on the fly.
4975 2003-11-24  Akim Demaille  <akim@epita.fr>
4977         * doc/autoconf.texi (Particular Programs): AC_PROG_LEX can
4978         override some files.
4979         (Input): AC_CONFIG_AUX_DIR(aux) is a bad idea on DOS.
4980         From Debian Autoconf 2.58.
4982 2003-11-24  Akim Demaille  <akim@epita.fr>
4984         * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): Quote $ac_popdir
4985         uses.
4986         From Debian Autoconf 2.58.
4988 2003-11-24  Paolo Bonzini  <bonzini@gnu.org>
4990         * TODO: Remove already done things.  Update the part about finding
4991         tools for the target.
4993 2003-11-24  Paolo Bonzini  <bonzini@gnu.org>
4995         * lib/autoconf/headers.m4 (AC_USG, AC_MEMORY_H, AC_DIR_HEADER):
4996         Make wording more consistent.
4997         * lib/autoconf/specific.m4 (AC_CYGWIN, AC_EMXOS2, AC_MINGW32):
4998         Explain the transition better.
4999         * lib/autoconf/types.m4 (AC_INT_16_BITS, AC_LONG_64_BITS): Explain
5000         the transition better.
5002 2003-11-24  Paolo Bonzini  <bonzini@gnu.org>
5004         * doc/autoconf.texi (Obsoleting Macros): Don't document the third
5005         parameter of AU_DEFUN.
5006         * lib/autoconf/autoupdate.m4 (AU_DEFINE): Remove.
5007         (AU_DEFUN): Remove the third parameter, it was not used.
5008         Use AC_DEFUN directly, not AU_DEFINE.
5009         * lib/autoconf/status.m4 (AC_LINK_FILES): Move the message into
5010         the expanded body, consistently with other macros such as AC_USG.
5012 2003-11-17  Paul Eggert  <eggert@twinsun.com>
5014         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Put at least 14 bytes
5015         into the initial confdefs.h, to work around a bug in NextStep 3.3
5016         patch 3 reported by Eric Sunshine.
5018 2003-11-15  Kevin Ryde  <user42@zip.com.au>
5020         * doc/autoconf.texi (Using System Type): Revise, showing $host rather
5021         than $target since the latter is not usual, add guidelines on when to
5022         use or not use the system type.
5024 2003-11-12  Derek Price  <derek@ximbiot.com>
5026         * doc/autoconf.texi (Limitations of Usual Tools): Fix what looks like a
5027         typo misrepaired by an auto-spellcheck.
5029 2003-11-12  Akim Demaille  <akim@epita.fr>
5031         * bin/autoreconf.in (&parse_args): Don't call automake with
5032         --force-missing unless it actually supports it.
5033         From Debian #219336.
5035 2003-11-12  Akim Demaille  <akim@epita.fr>
5037         * configure.ac: Bump to 2.59a.
5038         Require 2.59.
5040 2003-11-06  Akim Demaille  <akim@epita.fr>
5042         Version 2.59.
5044 2003-11-05  Alexandre Duret-Lutz  <adl@gnu.org>
5046         * lib/autoconf/status.m4 (_AC_SRCPATHS): Fix use of AS_SET_CATFILE
5047         so that ac_abs_builddir, ac_abs_top_builddir, ac_abs_srcdir,
5048         and ac_abs_top_srcdir are absolute paths.
5049         * lib/m4sugar/m4sh.m4 (AS_SET_CATFILE): Remove misleading comment.
5051 2003-11-05  Akim Demaille  <akim@epita.fr>
5053         * configure.ac: Bump to 2.58a.
5055 2003-11-05  Kevin Ryde  <user42@zip.com.au>
5057         * doc/autoconf.texi (Using Autotest): Avoid @strong{Note: ...}, since
5058         it provokes a warning from makeinfo about looking like a cross
5059         reference in info output.
5061         * doc/autoconf.texi (Function Portability): Add notes on signal
5062         handler return type, as per AC_TYPE_SIGNAL.
5064 2003-11-04  Akim Demaille  <akim@epita.fr>
5066         Version 2.58.
5067         * doc/standards.texi: Update from master.
5069         * tests/mktests.sh (ac_exclude_list): Add AC_FC_FREEFORM.
5071 2003-11-04  Akim Demaille  <akim@epita.fr>
5073         AC_CONFIG_FILE([d1/foo:d2/foo]) triggers error messages when
5074         computing the absolute path to d1 in the source hierarchy: it may
5075         not exist at all.  So don't cd into it.
5076         From Alexandre Duret-Lutz.
5077         http://mail.gnu.org/archive/html/bug-autoconf/2003-10/msg00205.html
5079         * lib/m4sugar/m4sh.m4 (AS_SET_CATFILE): New.
5080         From Paul Eggert, but named after Perl's IO::Spec->catfile.
5081         * doc/autoconf.texi (Programming in M4sh): Document.
5082         * lib/autoconf/status.m4 (_AC_SRCPATHS): Use it.
5084 2003-11-03  Pavel Roskin  <proski@gnu.org>
5086         * doc/autoconf.texi (Generic Structure Checks): Describe
5087         action-if-found and action-if-not-found in AC_CHECK_MEMBERS.
5089 2003-10-31  Akim Demaille  <akim@epita.fr>
5091         * tests/fortran.at (GNU Fortran 77): Don't run FC macros.
5092         (GNU Fortran): New.
5093         * doc/autoconf.texi (Language Choice): Document.
5094         * lib/autoconf/fortran.m4 (AC_FC_SRCEXT, AC_FC_FREEFORM): Assert
5095         the current language is Fortran.
5097 2003-10-31  Akim Demaille  <akim@epita.fr>
5099         * bin/autom4te.in (&freeze): Use a less likely warning separator
5100         than `\n\n', so that `\n\n\n' is valid in warnings.
5101         Reported by Steve Huston.
5103 2003-10-28  Akim Demaille  <akim@epita.fr>
5105         * Makefile.cfg (local_updates, executable-update): Tweak to be
5106         robust to parallel makes.
5107         Suggested by Alexandre Duret-Lutz.
5109 2003-10-27  Akim Demaille  <akim@epita.fr>
5111         * Makefile.cfg (executable-update): New.
5112         (local_updates): Call it.
5114 2003-10-27  Akim Demaille  <akim@epita.fr>
5116         * lib/autoconf/general.m4 (_AC_RUN_IFELSE, _AC_INIT_PREPARE):
5117         Don't remove core.* as it may remove valid user files.
5118         * lib/autoconf/functions.m4 (AC_FUNC_SETVBUF_REVERSED)
5119         (AC_FUNC_UTIME_NULL): Likewise.
5121 2003-10-23  Akim Demaille  <akim@epita.fr>
5123         Version 2.57g.
5124         * config/config.guess, config/config.sub: Upgrade from masters.
5126 2003-10-23  Akim Demaille  <akim@epita.fr>
5128         * lib/autoconf/fortran.m4 (AC_FC_SRCEXT): Functions using
5129         AC_COMPILE_IFELSE that use break skip the clean up.  So do it by
5130         hand...
5132 2003-10-23  Akim Demaille  <akim@epita.fr>
5134         * lib/autoconf/general.m4 (_AC_LINK_IFELSE, _AC_COMPILE_IFELSE):
5135         Don't forget to remove conftest.err.
5137 2003-10-23  Akim Demaille  <akim@epita.fr>
5139         * lib/autoconf/general.m4 (_AC_LIBOBJ): Don't insert twice the
5140         same object file in $LIBOBJS.
5141         Reported by Alexandre Duret-Lutz & Derek Robert Price.
5142         * doc/autoconf.texi (Generic Functions): Adjust.
5144 2003-10-20  Paul Eggert  <eggert@twinsun.com>
5146         * lib/m4sugar/m4sh.m4 (_AS_TR_SH_PREPARE, _AS_TR_CPP_PREPARE):
5147         Use 'eval', so that the resulting configure scripts work even if
5148         the current directory has a weird file name like 'y%s+%pp%;s%@%_%g'.
5150 2003-10-20  Daniel Jacobowitz  <drow@mvista.com>
5152         * lib/autoconf/lang.m4 (AC_LANG_WERROR): New macro.
5153         * lib/autoconf/general.m4 (_AC_COMPILE_IFELSE, _AC_PREPROC_IFELSE)
5154         (_AC_LINK_IFELSE): Check the werror flag.
5155         * doc/autoconf.texi (Generic Compiler Characteristics): Document
5156         AC_LANG_WERROR.
5157         * NEWS: Mention it.
5159 2003-10-20  Daniel Jacobowitz  <drow@mvista.com>
5161         * lib/autoconf/lang.m4 (AC_NO_EXECUTABLES): Override
5162         _AC_COMPILER_EXEEXT to attempt a link.  If linking fails,
5163         override AC_LINK_IFELSE.
5165 2003-10-15  Paul Eggert  <eggert@twinsun.com>
5167         * lib/m4sugar/m4sh.m4 (_AS_UNSET_PREPARE): Work around a bug in
5168         pdksh 5.2.14.  Bug reported by Ralf Corsepius.
5169         * doc/autoconf.texi (Shellology): Mention the Korn shell and pdksh.
5170         Mention /usr/dt/bin/dtksh on Solaris.
5171         (Shell Substitutions): Warn about $((...)).
5172         (Parentheses): New section.
5174 2003-10-15  Kevin Ryde  <user42@zip.com.au>
5176         * doc/autoconf.texi (Function Portability): Add @prindex for exit.
5177         Add putenv and unsetenv.  Add sysconf _SC_PAGE_SIZE.
5179 2003-10-13  Nathanael Nerode  <neroden@gcc.gnu.org>
5181         * lib/autoconf/functions.m4 (AC_FUNC_FORK): Trivial fix for vfork
5182         cross test.
5184 2003-10-11  Steven G. Johnson  <stevenj@alum.mit.edu>
5186         * lib/autoconf/fortran.m4 (_AC_PROG_FC): Use the new official
5187         name for the GNU Fortran 95+ compiler, 'gfortran', not 'g95'.
5189 2003-10-10  Andreas Schwab  <schwab@suse.de>
5191         * bin/autoheader.in: Avoid empty first line in --version and
5192         --help output.
5193         * bin/ifnames.in: Likewise.
5195 2003-10-09  Paul Eggert  <eggert@twinsun.com>
5197         * lib/Autom4te/XFile.pm: Don't assume -j is solo.
5198         Issue a more-informative diagnostic.
5199         Problems reported by Eric Sunshine.
5201 2003-10-08  Steven G. Johnson  <stevenj@alum.mit.edu>
5203         * lib/autoconf/fortran.m4 (_AC_PROG_FC_V_OUTPUT): Omit quoted
5204         -mGLOB_options_string stuff for Intel ifc, which can cause
5205         _AC_FC_LIBRARY_LDFLAGS to fail.  Use (faster) case for
5206         pattern-matching instead of grep.
5208 2003-10-08  Steven G. Johnson  <stevenj@alum.mit.edu>
5210         * doc/autoconf.texi: Document new FC Fortran macros.
5212 2003-10-08  Gary V. Vaughan  <gary@gnu.org>
5214         * lib/autoconf/general.m4 (AC_CONFIG_MACRO_DIR): Stub out a macro
5215         that future autopoint/aclocal/automake/autoreconf will be able
5216         to trace to find where to install local m4 macros.
5217         * doc/autoconf.texi (Input): Document it.
5218         * NEWS: Updated.
5220 2003-10-06  Gary V. Vaughan  <gary@gnu.org>
5222         * lib/autoconf/fortran.m4 (_AC_FC_LIBRARY_LDFLAGS): Add
5223         -lcrtbegin.o to list of ignored flags and fix underquoting of
5224         -lcrt[01].o.
5226 2003-10-04  Steven G. Johnson  <stevenj@ab-initio.mit.edu>
5228         * lib/autoconf/fortran.m4 (_AC_PROG_FC_G): Use language-specific
5229         cache variable instead of $G77 to decide whether to include -O2,
5230         since $G77 is specific to Fortran 77.
5232 2003-10-03  Steven G. Johnson  <stevenj@alum.mit.edu>
5234         * lib/autoconf/fortran.m4 (AC_FC_FREEFORM): Support Absoft "-f
5235         free" flag.  Re-order flags tested into rough order of popularity.
5237 2003-10-03  Steven G. Johnson  <stevenj@alum.mit.edu>
5239         * lib/autoconf/fortran.m4 (AC_PROG_FC): Reverse the order of the
5240         arguments so that it can be used with syntax identical to
5241         AC_PROG_F77, and so that we can more easily decide to
5242         remove/deprecate the DIALECT optional argument in the future if it
5243         proves troublesome.
5244         (AC_FC_FREEFORM): Exit 77 upon failure to fix test suite for
5245         non-freeform-supporting compilers.  Document freeform flags.
5247 2003-10-03  Akim Demaille  <akim@epita.fr>
5249         * configure.ac: Look for emacs, not macs.
5250         Reported by Eric Sunshine.
5252 2003-10-03  Akim Demaille  <akim@epita.fr>
5254         * lib/autom4te.in (Autoreconf-preselections): Trace AC_CONFIG_AUX_DIR.
5255         * bin/autoreconf.in (autoreconf_current_directory): Create the
5256         AUX_DIR if needed, for sake of automake --add-missing etc.
5257         Suggested by Alexandre Duret-Lutz.
5259 2003-10-03  Akim Demaille  <akim@epita.fr>
5261         * configure.ac: Quotation and formatting changes.
5262         (EMACS): Don't set it if it is not recent enough to support
5263         autoconf-mode.el.
5264         From Eric Sunshine.
5266 2003-10-02  Akim Demaille  <akim@epita.fr>
5268         * bin/ifnames.in (&scan_file): Skip C++ comments.
5269         From Jeremy Yallop.
5271 2003-10-01  Pavel Roskin  <proski@gnu.org>
5273         * doc/autoconf.texi (Particular Structure Checks):
5274         Fix misspelling of HAVE_STRUCT_STAT_ST_BLOCKS.
5276 2003-10-01  Akim Demaille  <akim@epita.fr>
5278         Version 2.57f.
5280 2003-09-30  Paul Eggert  <eggert@twinsun.com>
5282         * lib/Autom4te/XFile.pm: Use Errno.
5283         (lock): Ignore ENOLCK errors.  Problem reported Andreas Schwab in
5284         <http://mail.gnu.org/archive/html/bug-autoconf/2003-09/msg00141.html>.
5286 2003-09-30  Akim Demaille  <akim@epita.fr>
5288         * config/announce-gen (&print_news_deltas): Extracted from...
5289         (&print_changelog_deltas): here.
5290         (&news_file): Rename as...
5291         (@news_file): this.
5293 2003-09-30  Nicolas Joly  <njoly@pasteur.fr>
5295         * lib/autoconf/fortran.m4 (_AC_PROG_FC): Remove files which might
5296         have been created when invoking the compiler.
5297         * tests/fortran.at (GNU Fortran 77): Quote $G77.
5299 2003-09-29  Akim Demaille  <akim@epita.fr>
5301         Version 2.57e.
5303         * config/mkinstalldirs: Upgrade.
5305 2003-09-28  Paul Eggert  <eggert@twinsun.com>
5307         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Set DUALCASE=1, for MKS sh.
5308         Problem reported by Lars J. Aas in
5309         <http://mail.gnu.org/archive/html/autoconf/2003-07/msg00042.html>.
5310         (_AS_MKDIR_P_PREPARE): Change "rm -fr ./-p" to the more-conservative
5311         "test -d ./-p && rmdir ./-p".  Suggested by Andreas Schwab in:
5312         http://mail.gnu.org/archive/html/autoconf-patches/2003-09/msg00039.html
5314 2003-09-26  Akim Demaille  <akim@epita.fr>
5316         * lib/autoconf/status.m4 (_AC_OUTPUT_COMMANDS): Make sure the
5317         directory for AC_CONFIG_COMMANDS' first argument exists.
5318         This makes valid the invocation of _AC_SRCPATH that follows.
5319         Reported by Eric Sunshine.
5320         * doc/autoconf.texi (Configuration Commands): Adjust.
5322 2003-09-26  Akim Demaille  <akim@epita.fr>
5324         * bin/autoscan.in (Autom4te::FileUtils): Use it for find_file.
5325         Reported by Ralf Corsepius.
5327 2003-09-26  Akim Demaille  <akim@epita.fr>
5329         * lib/autoconf/general.m4 (AC_HELP_STRING): Don't overquote the
5330         arguments.
5331         Actually, use AU_ALIAS.
5332         From Bruno Haible.
5334 2003-09-26  Paul Eggert  <eggert@twinsun.com>
5336         * lib/m4sugar/m4sh.m4 (_AS_MKDIR_P_PREPARE): If mkdir -p . fails,
5337         rm -fr ./-p to remove junk left behind on NextStep and OpenStep.
5338         Problem reported by Eric Sunshine in:
5339         http://mail.gnu.org/archive/html/autoconf-patches/2002-12/msg00014.html
5341 2003-09-26  Akim Demaille  <akim@epita.fr>
5343         The test suite are sometimes assigning timings incorrectly.
5344         Reported by Henk Krus.
5345         Diagnosed by Nicolas Joly.
5347         * lib/autotest/general.m4 (AT_CLEANUP): Rename AT_help as
5348         AT_help_all.
5349         Instead of making AT_help a sequence of assignments to grow
5350         $at_help_all, just make AT_help_all be the growing contents of
5351         $at_help_all, and make a single assignment in...
5352         (AT_INIT): here.
5353         (at_times_skip): Flip the meaning and rename as...
5354         (at_times_p): this.
5355         (AT_INIT): When summarizing the test that ran, remove
5356         $at_times_file after use, and check it is present before trying to
5357         use it.
5359 2003-09-25  Akim Demaille  <akim@epita.fr>
5361         Version 2.57d.
5363         * bin/Makefile.am (edit): Handle '@configure_input@'.
5364         (autoconf, autoheader, autom4te, autoreconf, autoscan, autoupdate)
5365         (ifnames): chmod -w.
5366         * tests/wrapper.as (AUTOCONF, AUTOM4TE, ): Point to tests/
5367         executables, not bin/ executables!  Otherwise all the magic needed
5368         to find non installed files is turned off.  This caused a failure
5369         of test 40 and 41 that ran aclocal 1.8 which in turn ran autom4te
5370         as found in its environment (sent by tests/autoreconf): pointing
5371         to bin/autom4te that could not find its files.
5372         * tests/mktests.sh: Force the replacement of generated files, for
5373         the sake of "mv" program that are interactive when overwriting a
5374         -w file.
5375         * config/install-sh: Upgrade from CVS Automake.
5377 2003-09-23  Paul Eggert  <eggert@twinsun.com>
5379         * doc/autoconf.texi (Limitations of Builtins): Document test -h
5380         versus test -L issues.
5382 2003-09-23  Daniel Jacobowitz  <drow@mvista.com> and
5383             Paul Eggert  <eggert@twinsun.com>
5385         Trivial change to support GCC's configuration procedure.
5386         * lib/autoconf/c.m4 (AC_PROG_CPP_WERROR): New macro.
5387         * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_MONGREL): Don't warn
5388         about inconsistency if the preprocessor is set to give errors for
5389         any warning.
5390         * doc/autoconf.texi (C Compiler Characteristics): Document this.
5392 2003-09-13  Alexandre Duret-Lutz  <adl@gnu.org>
5394         * Makefile.am (autom4te-update, autom4te_files): Fetch Struct.pm
5395         and XFile.pm from Automake.
5396         * lib/Autom4te/XFile.pm: Update from Automake.
5398 2003-09-12  Akim Demaille  <akim@epita.fr>
5400         Version 2.57c.
5402 2003-09-12  Akim Demaille  <akim@epita.fr>
5404         * config/config.guess, config/config.sub, config/missing,
5405         * lib/Autom4te/Channels.pm, lib/Autom4te/Configure_ac.pm: Update
5406         from masters.
5408 2003-09-12  Akim Demaille  <akim@epita.fr>
5410         * doc/autoconf.texi (Header Portability): Promote linux/types.h,
5411         not asm/types.h.
5413 2003-09-11  Akim Demaille  <akim@epita.fr>
5415         * doc/autoconf.texi (Header Portability): linux/random.h.
5416         From Peter Hendrickson.
5418 2003-09-10  Akim Demaille  <akim@epita.fr>
5420         * tests/mktests.sh (au_exclude_egrep): Make it harder to be
5421         willing to edit the output files.
5423 2003-09-10  Akim Demaille  <akim@epita.fr>
5425         * tests/fortran.at (GNU Fortran 77): Also exercise AC_FC_SRCEXT
5426         and AC_FC_FREEFORM.
5427         * tests/mktests.sh: Skip AC_FC_SRCEXT.
5428         * lib/autoconf/fortran.m4 (AC_FC_SRCEXT, AC_FC_FREEFORM): Likewise.
5430 2003-09-09  Akim Demaille  <akim@epita.fr>
5432         * lib/Autom4te/FileUtils.pm (&update_file): s/cannot not/cannot/g.
5433         Reported by Gary Vaughan.
5434         * bin/autom4te.in (handle_m4): Likewise.
5436 2003-09-09  Akim Demaille  <akim@epita.fr>
5438         * lib/Autom4te/FileUtils.pm (&update_file): Be sure not to leave
5439         trailing files.
5441 2003-09-07  Paul Eggert  <eggert@twinsun.com>
5443         * lib/autoconf/specific.m4 (AC_SYS_RESTARTABLE_SYSCALLS):
5444         Improve the accuracy of the wording about obsolescence.
5445         From a suggestion by Ian Lance Taylor in
5446         <http://mail.gnu.org/archive/html/autoconf/2003-09/msg00044.html>.
5448 2003-09-05  Paul Eggert  <eggert@twinsun.com>
5450         * lib/autoconf/fortran.m4 (AC_FC_FREEFORM): Try -ffree-form too,
5451         for the benefit of g77 3.2.  Fix suggested by Steven G. Johnson.
5453 2003-09-04  Akim Demaille  <akim@epita.fr>
5455         * tests/mktests.sh (ac_exclude_list): Fix the filtering of
5456         AC_FUNC_WAIT3.
5458 2003-09-04  Akim Demaille  <akim@epita.fr>
5460         * bin/autom4te.in: Use &fatal where more appropriate than &error.
5461         (freeze): When exiting, use $exit_code.
5462         * lib/autoconf/fortran.m4: Comment changes.
5464 2003-09-04  Akim Demaille  <akim@epita.fr>
5466         * tests/mktests.sh (ac_exclude_list): Add AC_FC_FUNC.
5468 2003-09-02  Steven G. Johnson  <stevenj@alum.mit.edu>
5470         Add support for newer Fortran dialects.  The F77 interface is
5471         unchanged, and continues to support Fortran 77.  New FC macros
5472         correspond to all the old F77 macros, with output variables FC,
5473         FCFLAGS, and FCLIBS.  AC_PROG_FC defaults to picking the newest
5474         available dialect, but older dialects can be specified.  There are
5475         new macros AC_FC_SRCEXT to set the source extension, and
5476         AC_FC_FREEFORM to accept free-form source files.
5478         * lib/autoconf/c.m4 (_AC_LANG_PREFIX(C), _AC_LANG_PREFIX(C++)):
5479         New macros.
5480         (AC_LANG_PROGRAM(C)): Invoke _AC_LANG_PROGRAM_C_FC_HOOKS if defined.
5481         * lib/autoconf/fortran.m4 (AC_LANG(Fortran), _AC_FORTRAN_ASSERT,
5482         _AC_LANG_ABBREV(Fortran), _AC_LANG_PREFIX(Fortran 77),
5483         _AC_LANG_PREFIX(Fortran), _AC_FC, AC_LANG_SOURCE(Fortran),
5484         AC_LANG_PROGRAM(Fortran), AC_LANG_CALL(Fortran),
5485         AC_LANG_PREPROC(Fortran), AC_LANG_COMPILER(Fortran),
5486         _AC_FC_DIALECT_YEAR, _AC_F95_FC, _AC_F90_FC, _AC_F77_FC,
5487         _AC_PROG_FC, AC_PROG_FC, _AC_PROG_FC_G, _AC_PROG_FC_C_O,
5488         AC_PROG_FC_C_O, _AC_PROG_FC_V_OUTPUT, _AC_PROG_FC_V,
5489         _AC_FC_LIBRARY_LDFLAGS, AC_FC_LIBRARY_LDFLAGS, _AC_FC_DUMMY_MAIN,
5490         AC_FC_DUMMY_MAIN, _AC_FC_MAIN, AC_FC_MAIN, __AC_FC_NAME_MANGLING,
5491         _AC_FC_WRAPPERS, AC_FC_WRAPPERS, _AC_FC_FUNC, AC_FC_FUNC,
5492         AC_FC_SRCEXT, AC_FC_FREEFORM):
5493         New macros.
5494         (AC_PROG_F77, AC_PROG_F77_C_O, AC_F77_LIBRARY_LDFLAGS,
5495         AC_F77_DUMMY_MAIN, AC_F77_MAIN, _AC_F77_NAME_MANGLING,
5496         AC_F77_NAME_MANGLING, AC_F77_WRAPPERS, AC_F77_FUNC):
5497         Rewrite in terms of the above.
5498         (_AC_PROG_F77_G, _AC_PROG_F77_V_OUTPUT, _AC_PROG_F77_V): Remove.
5499         * lib/autoconf/lang.m4 (_AC_LANG_PREFIX): New macro.
5500         * tests/acfortran.at: Test AC_FC_FREEFORM, AC_FC_FUNC,
5501         AC_FC_MAIN, AC_FC_SRCEXT, AC_FC_WRAPPERS, AC_PROG_FC_C_O.
5503 2003-09-02  Paul Eggert  <eggert@twinsun.com>
5505         * doc/autoconf.texi (Limitations of Usual Tools, Limitations of Make):
5506         Document problems with timestamp resolution that 'make', 'cp -p', and
5507         'touch -r' have.
5509 2003-08-27  Akim Demaille  <akim@epita.fr>
5511         * tests/m4sugar.at (cross_warning): Make sure to enable the
5512         output, so that we can track spurious m4sugar output.
5513         * tests/local.at: Require 2.57.
5514         (AT_CHECK_M4SUGAR, AT_CHECK_M4SH): Don't m4_default the arguments that
5515         are defaulted by AT_CHECK anyway.
5516         Use AT_CHECK_AUTOM4TE.
5517         * lib/m4sugar/m4sugar.m4: There should be no output at all: add a
5518         missing dnl.
5520 2003-08-27  Akim Demaille  <akim@epita.fr>
5522         * bin/autoheader.in: Issue the "Using auxiliary..." message only
5523         when -Wobsolete is set.
5524         Set it on by default.
5525         Suggested by Klee Dienes.
5527 2003-08-27  Akim Demaille  <akim@epita.fr>
5529         * doc/autoconf.texi (AC_FUNC_FSEEKO, AC_SYS_LARGEFILE): More
5530         documentation.
5531         From Guido Draheim.
5533 2003-08-26  Akim Demaille  <akim@epita.fr>
5535         * doc/autoconf.texi (Output): Make clear that one can run code
5536         after AC_OUTPUT.
5538 2003-08-25  Akim Demaille  <akim@epita.fr>
5540         * config/announce-gen, GNUmakefile, Makefile.maint: Update from
5541         CVS Bison.
5543 2003-08-25  Alexandre Duret-Lutz  <adl@gnu.org>
5545         * bin/autoreconf.in (parse_args): Do not pass --no-force to
5546         Automake versions prior to 1.8.
5548 2003-08-25  Akim Demaille  <akim@epita.fr>
5550         * doc/autoconf.texi (Header Portability): netinet/if_ether.h.
5551         From Ville Karaila.
5553 2003-08-24  Akim Demaille  <akim@epita.fr>
5555         * configure.ac: Bump to 2.57c.
5557 2003-08-22  Akim Demaille  <akim@epita.fr>
5559         Version 2.57b.
5561         * Makefile.cfg (local-checks-to-skip): New.
5562         * Makefile.maint (local-check): Rename as...
5563         (local-checks-available): this.
5564         (local-check): New.
5566         * Makefile.am (EXTRA_DIST): Add Makefile.cfg.
5567         * configure.ac: Require Automake 1.7.6.
5569 2003-08-22  Akim Demaille  <akim@epita.fr>
5571         Output stack traces in warnings.
5573         * lib/m4sugar/m4sugar.m4 (_m4_warn): New.
5574         Replace the former...
5575         (m4_warn): Pass the call stack to _m4_warn.
5576         * bin/autom4te.in: Adjust to output the call stack.
5577         * tests/m4sugar.at (m4@&t@_warn): Adjust.
5579 2003-08-22  Akim Demaille  <akim@epita.fr>
5581         * lib/Autom4te/Request.pm, lib/Autom4te/C4che.pm: New.
5582         * bin/autom4te.in: Adjust.
5584 2003-08-21  Akim Demaille  <akim@epita.fr>
5586         * lib/Autom4te/General.pm (&file_name_is_absolute): Remove.
5587         (&verbose): Remove.
5588         (&getopt): Adjust the note and verb channels, depending upon
5589         --verbose.
5590         * bin/autoheader.in, bin/autom4te.in, bin/autoscan.in,
5591         * bin/autoupdate.in: Adjust.
5592         Use &verb, not &verbose.
5594 2003-08-21  Akim Demaille  <akim@epita.fr>
5596         * bin/autoheader.in (&parse_args): Use &parse_warnings and
5597         &parse_WARNINGS.
5598         ($help): Use Autom4te::ChannelDefs::usage.
5599         * bin/autoscan.in: Use Autom4te::ChannelDefs.
5600         * lib/Autom4te/General.pm: Don't export error: you don't own it.
5602 2003-08-21  Akim Demaille  <akim@epita.fr>
5604         First stab at preserving warnings between calls to autom4te,
5605         including when the cache is used.
5607         There are still several issues: (i) there are too many runs of m4
5608         (one for include, one for warnings, and some more), (ii) warnings
5609         spreading on several lines are not handled gracefully, (iii) the
5610         code meant to have the call stack display for errors does not work
5611         (its handling should move from m4 to autom4te).
5613         * bin/autom4te.in Autom4te::Channels, Autom4te::ChannelDefs):
5614         Use them.
5615         (@preselect): Add m4_warn.
5616         ($exit_status): Remove, use $exit_code.
5617         ($help): Use Autom4te::ChannelDefs::usage.
5618         (&handle_m4): No longer define the m4_warnings.
5619         At each run, extract and report the warnings.
5620         Always cache the result, including if the exit status is on
5621         failure, since if nothing changes, we should result in the same
5622         failure, hence we can use the cache.
5623         * lib/m4sugar/m4sugar.m4 (m4_warning_ifelse, _m4_warning_ifelse)
5624         (_m4_warning_error_ifelse, __m4_warning_error_ifelse, _m4_warn):
5625         Remove.
5626         (m4_warn): Redefine as a do-nothing: it is its invocation that
5627         matters, as warnings are now reported via traces.
5628         * lib/autoconf/general.m4 (AC_DIAGNOSE): Don't make it a copy of
5629         the contents of m4_warn: make it _call_ m4_warn, so that tracing
5630         the latter reveals calls to the former.
5632         Adjust the tests.
5634         * tests/m4sugar.at (m4@&t@_warn): Use existing warning categories.
5636 2003-08-21  Akim Demaille  <akim@epita.fr>
5638         * bin/autoreconf.pm (Autom4te::Channels, Autom4te::ChannelDefs):
5639         Use them.
5641 2003-08-21  Akim Demaille  <akim@epita.fr>
5643         * lib/Autom4te/FileUtils.pm (&find_file): Walk the @include in
5644         forward order.
5645         * lib/Autom4te/ChannelDefs.pm: Doc typos.
5646         (&parse_warnings): Accept a list of warning requests.
5647         (&usage): Return a string, not a side effect.
5648         (cross): New warning category.
5650 2003-08-21  Akim Demaille  <akim@epita.fr>
5652         * lib/Autom4te/Configure_ac.pm (&find_configure_ac)
5653         (&require_configure_ac): Accept an optional directory argument.
5654         ($configure_ac): Remove.
5655         * lib/Autom4te/General.pm (&find_configure_ac, &canonfile)
5656         (&catfile): Remove.
5657         * bin/autoheader.in, bin/autoreconf.in, bin/autoupdate.in,
5658         * bin/autoscan.in: Adjust.
5660 2003-08-20  Akim Demaille  <akim@epita.fr>
5662         * bin/autoheader.in: Remove duplicate 'use Autom4te::FileUtils'.
5663         Reported by Alexandre Duret-Lutz.
5665 2003-08-20  Akim Demaille  <akim@epita.fr>
5667         * bin/autoupdate.in, bin/autoheader.in, bin/autoreconf.in,
5668         * bin/autom4te: Adjust.
5669         In particular, be Autoconf tools are really silent when properly
5670         working, bind the verbosity of the 'note' channel to $verbose.
5671         * lib/Autom4te/General.pm (&find_file, &mtime, &update_file)
5672         (&xsystem, &contents): Remove, since they are exported by...
5673         * lib/Autom4te/FileUtils.pm: this.
5674         More perldoc.
5675         * lib/Autom4te/General.pm (&up_to_date_p): Move to...
5676         * lib/Autom4te/FileUtils.pm: here.
5678 2003-08-20  Akim Demaille  <akim@epita.fr>
5680         * lib/Autom4te/Channels.pm, lib/Autom4te/ChannelDefs.pm
5681         * lib/Autom4te/Configure_ac.pm, lib/Autom4te/FileUtils.pm: New,
5682         from CVS Automake.
5684 2003-08-20  Akim Demaille  <akim@epita.fr>
5686         * Makefile.am (automake_cvsweb, automake_cvsargs, autom4te_files)
5687         (autom4te-update): New.
5688         * Makefile.cfg (update): Bind autom4te-update.
5690 2003-08-19  Derek Price  <derek@ximbiot.com>
5692         * lib/autotest/general.m4: Comment various HELP_* diversions.
5693         (PARSE_ARGS_BEGIN): New section for option parsing related
5694         initialization.
5695         (AT_ARG_OPTION,AT_ARG_OPTION_ARG,_AT_ARG_OPTION): New macros to define
5696         package specific options and associated help.
5698 2003-08-19  Akim Demaille  <akim@epita.fr>
5700         * config/announce-gen, Makefile.cfg: New.
5701         * Makefile.am: Adjust.
5702         * GNUmakefile, Makefile.maint: Update from CVS Coreutils.
5704 2003-08-19  Alexandre Duret-Lutz  <adl@gnu.org>
5706         * lib/autom4te.in (Automake-preselections): Preselect
5707         AC_CONFIG_LIBOBJ_DIR, AC_CONFIG_LINKS, m4_include,
5708         and m4_sinclude.
5710 2003-08-19  Alexandre Duret-Lutz  <adl@gnu.org>
5712         * lib/autom4te.in (Autoconf): Move all args except aclocal.m4? into ...
5713         (Autoconf-without-aclocal-m4): ... this new language.
5714         * doc/autoconf.texi (autom4te Invocation): Mention
5715         Autoconf-without-aclocal-m4.
5717 2003-08-18  Derek Price  <derek@ximbiot.com>
5719         * doc/autoconf.texi (Writing testsuite.at): Document RUN-IF-FAIL &
5720         RUN-IF-PASS optional arguments.
5722 2003-08-18  Derek Price  <derek@ximbiot.com>
5724         * doc/autoconf.texi (Programming in M4sh): Add doc for AS_IF.
5726 2003-08-16  Derek Price  <derek@ximbiot.com>
5728         * doc/autoconf.texi (Writing testsuite.at): Document defaults for
5729         STDOUT & STDERR arguments.
5731 2003-08-14  Derek Price  <derek@ximbiot.com>
5733         * lib/autotestgeneral.m4 (AT_INIT): Reformat test summary line to print
5734         DESCRIPTION rather than FILE and LINE.  Shorten result to fit in new,
5735         shorter column three.  Add DESCRIPTION to log file content.
5737 2003-08-13  Derek Price  <derek@ximbiot.com>
5739         * lib/autotest/general.m4 (AT_INIT): Correct typo in final status
5740         output.
5742 2003-08-12  Derek Price  <derek@ximbiot.com>
5744         * lib/autotest/general.m4 (AT_CHECK): Use new _AT_CHECK API.
5745         (AT_CHECK_NOESCAPE): Move core functionality to...
5746         (_AT_CHECK): ...this new macro.
5748 2003-08-07  Derek Price  <derek@ximbiot.com>
5750         * lib/autotest/general.m4 (AT_CHECK): Move core functionality...
5751         (AT_CHECK_NOESCAPE): ...to this new macro.
5753 2003-07-31  Paul Eggert  <eggert@twinsun.com>
5755         * lib/m4sugar/m4sh.m4 (_AS_UNSET_PREPARE): Work around a bug
5756         in Bash 2.01.  Problem reported by Brian Gough in
5757         <http://mail.gnu.org/archive/html/bug-autoconf/2003-07/msg00106.html>.
5759 2003-07-25  John W. Eaton  <jwe@bevo.che.wisc.edu>
5761         * lib/autoconf/fortran.m4 (AC_F77_LIBRARY_LDFLAGS): Also ignore
5762         -lcrt1.o, for OS X.  (trivial change)
5764 2003-07-07  Paul Eggert  <eggert@twinsun.com>
5766         * lib/autoconf/c.m4 (AC_C_INLINE): Wrap the '#define inline ...'
5767         inside '#ifndef __cplusplus'.  Problem reported by
5768         Bob Friesenhahn.
5770 2003-07-06  Bill Clarke  <llib@computer.org>
5772         * lib/autoconf/functions.m4 (AC_FUNC_MMAP): Cast pointer to
5773         'long', not 'int', for benefit of Sun's recent C++ compilers
5774         (trivial change).  See:
5775         http://mail.gnu.org/archive/html/autoconf-patches/2003-07/msg00007.html
5776         (This really should be 'intptr_t', not 'long', but that would
5777         take more work.)
5779 2003-06-25  Akim Demaille  <akim@epita.fr>
5781         * lib/Makefile.am (autom4te.cfg): Make it read only.
5782         Depend on Makefile since it contains substitutions.
5783         From Paolo Bonzini.
5784         * lib/autom4te.in (args): Add local.at? for Autotest args.
5785         This change was made on autom4te.cfg which is generated.
5786         Reported by Raja R. Harinath.
5788 2003-06-25  Akim Demaille  <akim@epita.fr>
5790         * doc/autoconf.texi (Header Portability): sys/mount.h.
5791         From Gareth McCaughan.
5793 2003-06-23  Akim Demaille  <akim@epita.fr>
5795         * lib/autotest/general.m4 (AT_INIT): Report a single config.log,
5796         not all of them.  This fixes 1. the fact that when testing
5797         Autoconf there are many many config.log, 2. the incorrect use of
5798         top_srcdir to find config.log.
5799         Don't mix the detailed output of failed test with the summary of
5800         failures.  Rather, append detailed log afterwards.
5802 2003-06-23  Akim Demaille  <akim@epita.fr>
5804         * tests/local.at (AT_CHECK_CONFIGURE): Adjust to the verbose being
5805         always run: output config.log on $at_group_log.
5807 2003-06-23  Akim Demaille  <akim@epita.fr>
5809         * tests/torture.at (#define header templates): Don't use quotes in
5810         C++ comments as it puzzles Emacs' sh font-lock-mode.
5812 2003-06-23  Akim Demaille  <akim@epita.fr>
5814         * tests/mktests.sh (au_exclude_egrep): Fix output copyright notice.
5815         * lib/autom4te.cfg (args): Add local.at? for Autotest args.
5816         * tests/atspecific.m4: Rename as...
5817         * tests/local.at: This.
5818         * tests/suite.at: Move the globals into...
5819         * tests/local.at: here.
5820         * tests/Makefile.am: Adjust.
5821         * doc/autoconf.texi (testsuite Scripts): Adjust.
5823 2003-06-21  Kevin Ryde  <user42@zip.com.au>
5825         * lib/autoconf/c.m4 (_AC_PROG_CC_STDC): Extend test program to get an
5826         error from OSF 4.0 Compaq cc in its default almost-ANSI mode, thereby
5827         ensuring we add -std1 for full-ANSI.
5829         * doc/autoconf.texi (hdrindex): New macro.
5830         Add index entries for portability of various standard header files.
5832 2003-06-20  Akim Demaille  <akim@epita.fr>
5834         * configure.ac: Bump to 2.57b.
5836 2003-06-20  Akim Demaille  <akim@epita.fr>
5838         Version 2.57a.
5840 2003-06-20  Akim Demaille  <akim@epita.fr>
5842         * bin/autom4te.in: Don't rely on $HOME being defined.
5843         Reported by Marc Espie as PR/233.
5845 2003-06-20  Akim Demaille  <akim@epita.fr>
5847         * lib/autotest/general.m4: Use at_times_file only if used.
5848         From Nicolas Joly.
5850 2003-06-20  Akim Demaille  <akim@epita.fr>
5852         * config/config.guess, config/config.sub, config/elisp-comp,
5853         * config/install-sh, config/mkinstalldirs, doc/standards.texi:
5854         Update from masters.
5856 2003-06-11  Paolo Bonzini  <bonzini@gnu.org>
5858         * doc/autoconf.texi (Writing testsuite.at): Document AT_XFAIL_IF
5859         * lib/autotest/general.m4 (AT_XFAIL_IF): New macro.
5860         (TEST_SCRIPT): New diversion.
5861         (AT_SETUP): Divert output to TEST_SCRIPT and move some code...
5862         (AT_CLEANUP): ...to here.  Undivert TEST_SCRIPT.
5863         (AT_INIT): Support for expected failures.
5865 2003-06-02  Akim Demaille  <akim@epita.fr>
5867         * bin/autom4te.in, bin/autoscan.in, bin/autoheader.in: White space
5868         changes.
5869         * lib/Autom4te/General.pm (&backname): Remove, no longer used by
5870         Autoconf nor Automake.
5871         (&contents): New, from Automake.
5872         PODify.
5874 2003-05-28  Paul Eggert  <eggert@twinsun.com>
5876         * NEWS, doc/autoconf.texi (Particular Functions),
5877         lib/autoconf/functions.m4 (AC_FUNC_MKTIME): Check that mktime
5878         is the inverse of localtime.
5880 2003-05-25  Alexandre Duret-Lutz  <adl@gnu.org>
5882         * lib/Autom4te/General.pm (END): Print diagnostics to STDERR.
5883         (handle_exec_errors): New function.  Work around $! being
5884         altered by WEXITSTATUS.
5885         (xqx, xsystem): Use handle_exec_errors.
5887 2003-05-23  Alexandre Duret-Lutz  <adl@gnu.org>
5889         * lib/Autom4te/General.pm (END): Rewrite exit code processing.
5890         Do not call `_exit()', simply modify `$?'.
5891         (xsystem): Reset $! before running system, and check it afterward.
5892         * tests/tools.at (autoupdating AC_PREREQ): Expect exit status
5893         63 for version mismatches.
5895 2003-05-23  Akim Demaille  <akim@epita.fr>
5897         * lib/autoconf/status.m4: Prefer "TAB-SP" to "SP-TAB", because of
5898         Emacs' dangerous whitespace.el behavior (smashing "useless" spaces in
5899         the middle of a line).
5900         * lib/m4sugar/m4sugar.m4: Likewise.
5901         Remove useless spaces in comments.
5903 2003-05-23  Akim Demaille  <akim@epita.fr>
5905         * lib/m4sugar/m4sugar.m4 (m4_version_prereq): Failure causes an
5906         exit 63, so that we (or Automake's "missing") can tell the
5907         difference with a plain failure.
5908         * doc/autoconf.texi (Notices): Adjust.
5910 2003-05-23  Akim Demaille  <akim@epita.fr>
5912         * Makefile.am, bin/Makefile.am, config/Makefile.am,
5913         * doc/Makefile.am, lib/autoconf/Makefile.am, tests/Makefile.am:
5914         White spaces cleanup.
5916 2003-05-22  Jim Meyering  <jim@meyering.net>
5917             Paul Eggert  <eggert@twinsun.com>
5919         * lib/autoconf/c.m4 (_AC_PROG_CXX_EXIT_DECLARATION):
5920         Remove `#include <stdlib.h>' from the list; we should never
5921         make confdefs.h include <stdlib.h> or <cstdlib>, because the
5922         resulting namespace pollution would cause other tests to fail.
5923         Configure scripts run with some older versions of g++ and HP's
5924         aCC would fail due to such an #include.  Problems reported by
5925         Matthew Mueller in <http://bugs.debian.org/120704> and by
5926         Keith Bostic in
5927         <http://mail.gnu.org/archive/html/autoconf/2003-05/msg00063.html>.
5928         In the test, use the test declaration before including <stdlib.h>,
5929         as that's closer to how it'll be used.
5931 2003-05-23  Akim Demaille  <akim@epita.fr>
5933         * doc/autoconf.texi (Header Portability): ucred.h.
5934         From Ian Redfern.
5936 2003-05-22  Paolo Bonzini  <bonzini@gnu.org>
5938         Overhaul Autotest's logging: generate separate log files
5939         in testsuite.dir/NNN/testsuite.log, and append them to
5940         testsuite.log instead of re-running the test verbosely.
5942         * lib/autotest/general.m4 (AT_INIT): Use a single redirected
5943         file descriptor, write 0 to at_status_file instead of setting
5944         at_status=0, initialize some new variables (at_status_file,
5945         at_group_log, at_suite_log, at_tee_pipe).  Remove the cruft
5946         to rerun the tests, instead append the at_group_log to the
5947         at_suite_log when a test fails.
5948         (AT_SETUP): pipe the test case's output into at_tee_pipe,
5949         with the AS_MESSAGE_LOG_FD redirected to stdout.
5950         (AT_CLEANUP): save the output status in $at_status_file
5951         and restore it, redirect the AS_MESSAGE_LOG_FD back to
5952         its original place.
5953         (AT_CHECK): since tests are run with a redirected stdout,
5954         and used to be re-run in verbose mode, turn some $at_verbose
5955         into echo, and don't redirect the output of testing stdout
5956         and stderr.
5958         * lib/autotest/autoconf.texi (testsuite Scripts): Update
5959         the name of the debugging directory and information about
5960         its contents.
5962 2003-05-22  Paolo Bonzini  <bonzini@gnu.org>
5964         * lib/m4sugar/m4sh.m4 (AS_REQUIRE): Actually use the 2nd
5965         parameter.
5967 2003-05-22  Akim Demaille  <akim@epita.fr>
5969         * lib/autoconf/autotest.m4, lib/autoconf/autoupdate.m4
5970         * lib/autoconf/fortran.m4 lib/autoconf/general.m4
5971         * lib/autoconf/headers.m4 lib/autoconf/oldnames.m4
5972         * lib/autoconf/status.m4: Fix and adjust copyright notices.
5974 2003-05-22  Akim Demaille  <akim@epita.fr>
5976         * aclocal.m4, bin/autoconf.as, lib/autoconf/autoconf.m4,
5977         * lib/autoconf/autoheader.m4, lib/autoconf/autoupdate.m4,
5978         * lib/autoconf/c.m4, lib/autoconf/fortran.m4,
5979         * lib/autoconf/general.m4, lib/autoconf/headers.m4,
5980         * lib/autoconf/lang.m4, lib/autoconf/libs.m4,
5981         * lib/autoconf/programs.m4, lib/autoconf/specific.m4,
5982         * lib/autoconf/status.m4, lib/autoconf/types.m4,
5983         * lib/autotest/general.m4, lib/m4sugar/m4sugar.m4,
5984         * tests/atspecific.m4, tests/base.at, tests/compile.at,
5985         * tests/foreign.at, tests/m4sh.at, tests/semantics.at,
5986         * tests/tools.at, tests/torture.at:
5987         Whitespace clean up.
5988         Suggested by Jim Meyering.
5990 2003-05-22  Akim Demaille  <akim@epita.fr>
5992         * lib/autoconf/functions.m4 (AC_FUNC_GETLOADAVG): Restore smashed
5993         ' \t' as '\t ' so that Emacs' whitespace.el keep it.
5994         Reported by Jim Meyering.
5996 2003-05-22  Akim Demaille  <akim@epita.fr>
5998         * doc/autoconf.texi: Replace AC_HELP_STRING AS_HELP_STRING.
5999         Add AC_HELP_STRING  to the obsolete macros section.
6000         Typos.
6001         Use '@.' for sentences that ended in a capital letter.
6002         From Art Haas.
6004 2003-05-22  Akim Demaille  <akim@epita.fr>
6006         * config/config.guess, config/config.sub, config/elisp-comp,
6007         * config/install-sh, config/mdate-sh, config/mkinstalldirs,
6008         * config/texinfo.tex, doc/standards.texi: Update from masters.
6010 2003-05-21  Paolo Bonzini  <bonzini@gnu.org>
6012         * lib/m4sugar/m4sh.m4 (AS_VAR_SET): Escape the RHS before passing
6013         it to eval.
6015 2003-05-21  Akim Demaille  <akim@epita.fr>
6017         * bin/autoupdate.in ($m4): Fix quotation.
6018         Reported by Martin Mokrejs.
6020 2003-05-19  Paul Eggert  <eggert@twinsun.com>
6022         * ChangeLog, ChangeLog.2, THANKS, lib/m4sugar/m4sugar.m4:
6023         Remove non-ASCII characters.
6025 2003-05-18  Paolo Bonzini  <bonzini@gnu.org>
6027         * tests/semantics.at (AC_SEARCH_LIBS): New test.
6028         * tests/semantics.at (AC_CHECK_HEADERS_OLD,
6029         AC_CHECK_HEADERS_NEW): New tests.
6031 2003-05-17  Akim Demaille  <akim@epita.fr>
6033         * lib/autoconf/functions.m4: Use the default includes so that
6034         memcmp be declared before being tested.
6035         Reported by Sander Niemeijer.
6036         (AC_FUNC_ERROR_AT_LINE, AC_FUNC_GETGROUPS, AC_FUNC_STRNLEN): Likewise.
6037         * doc/autoconf.texi (Default Includes): Document
6038         AC_INCLUDES_DEFAULT.
6040 2003-05-17  Akim Demaille  <akim@epita.fr>
6042         * lib/autoconf/specific.m4: Include signal.h and unistd.h.
6043         * doc/autoconf.texi (Obsolete Macros): Adjust.
6044         Reported by Werner LEMBERG and Debian Bug 190886.
6046 2003-05-16  Akim Demaille  <akim@epita.fr>
6048         * lib/m4sugar/m4sh.m4 (_AS_UNSET_PREPARE): s/FOO/as_foo/ to avoid
6049         user name space clashes.
6050         Reported by Bruno Haible.
6052 2003-05-16  Akim Demaille  <akim@epita.fr>
6054         * bin/autoheader.in, bin/autom4te.in, bin/autoreconf.in,
6055         * bin/autoscan.in, bin/autoupdate.in, bin/ifnames.in (BEGIN): Make
6056         them uniform, and more robust to Perl special characters.
6057         Reported by Martin Mokrejs.
6059 2003-05-14  Akim Demaille  <akim@epita.fr>
6061         * tests/foreign.at (Libtool): Skip all Libtools pre 1.4.
6063 2003-05-14  Akim Demaille  <akim@epita.fr>
6065         * doc/autoconf.texi (Header Portability): X11/extensions/scrnsaver.h,
6066         linux/irda.h.
6068 2003-05-12  Akim Demaille  <akim@epita.fr>
6070         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Improve the
6071         message.
6072         From Matthias Andree.
6074 2003-05-07  Alexandre Duret-Lutz  <adl@gnu.org>
6076         * lib/Autom4te/XFile.pm (lock, truncate): Do not pass @_ to flock
6077         and truncate.
6079 2003-05-06  Akim Demaille  <akim@epita.fr>
6081         Don't try to be smart with aclocal 1.8+ because (i) aclocal no
6082         longer updates aclocal.m4 if useless, (ii) if a file m4_included
6083         by aclocal.m4 is changed it might require the importing of another
6084         m4 extension file, i.e., aclocal must be run.
6086         * bin/autoreconf.in (&run_aclocal, $aclocal_supports_force): New.
6087         (&parse_args): Use --force with aclocal if required and supported.
6088         (&autoreconf_current_directory): Use &run_aclocal.
6090 2003-05-06  Akim Demaille  <akim@epita.fr>
6092         Lock autom4te's cache.
6094         * lib/Autom4te/XFile.pm ($me, &name, &lock, &truncate, &seek): New.
6095         * bin/autom4te.in (&Request::save, &Request::load): Use an IO::File
6096         argument instead of a file name, so that the request file remains
6097         open during the whole autom4te run.
6098         ($icache_file): New.
6099         (&freeze): Lock the $icache_file.
6101 2003-04-29  Derek Price  <derek@ximbiot.com>
6103         * lib/autotest/general.m4 (AT_KEYWORDS): Don't use a comma as the
6104         seperator with m4_append_uniq().  It doesn't work.
6105         (AT_CLEANUP): Add `;' to end of at_help_all.
6106         (AT_INIT): Allow --keywords to be specified more than once.  When
6107         grepping $at_help_all for keywords, use the field and keyword
6108         seperators to ensure a complete keyword match.  Alter at_prev handling
6109         to support the new --keywords behavior.
6111 2003-04-27  Karl Berry  <karl@freefriends.org>
6113         * doc/autoconf.texi: Make the dir entries in the autoconf manual
6114         align better with others.  I also made some of the individual
6115         entries on one line, for brevity and to make it easier for me to
6116         sort my dir-example file in the Texinfo distribution :).
6118 2003-04-12  Jim Meyering  <jim@meyering.net>
6120         * NEWS: Mention the new macro.
6121         * lib/autoconf/c.m4 (AC_C_RESTRICT): New macro.
6122         * doc/autoconf.texi (C Compiler): Describe AC_C_RESTRICT.
6123         * tests/c.at: Test AC_C_RESTRICT.
6124         * tests/mktests.sh (ac_exclude_list): Add exclusion for AC_C_RESTRICT.
6126 2003-04-08  Akim Demaille  <akim@epita.fr>
6128         * bin/ifnames.in: Skip C++ comments.
6129         From Jeremy Yallop.
6131 2003-04-08  Akim Demaille  <akim@epita.fr>
6133         * GNUmakefile (SHELL): Don't assume sh is in /bin/.
6134         From Ilya Zakharevich.
6136 2003-04-08  Akim Demaille  <akim@epita.fr>
6138         * doc/autoconf.texi (Particular Headers): Some about sys/socket.h,
6139         net/if.h, stdlib.h.
6141 2003-04-01  Derek Price  <derek@ximbiot.com>
6143         * lib/autoconf/programs.m4 (AC_PROG_INSTALL): Correct syntax error
6144         from Akim's checkin of 2003-03-29.
6146 2003-04-01  Derek Price  <derek@ximbiot.com>
6148         * tests/torture.at (Configuring subdirectories): Add missing
6149         close-quote for Akim's change from 2003-03-28.
6151 2003-04-01  Akim Demaille  <akim@epita.fr>
6153         * doc/autoconf.texi (ac, at, ms): Rename these indexes as...
6154         (AC, AT, MS): these.
6155         (shortindexflag, @acindex, @ahindex, @asindex, @atindex, @msindex):
6156         New.
6157         Use them.
6158         * doc/Makefile.am (CLEANFILES): Adjust.
6159         (TEXI2DVI): Make it --batch.
6161 2003-03-31  Derek Price  <derek@ximbiot.com>
6163         * lib/autotest/general.m4: Revert the checkin from 2003-03-27
6164         which removed the main loop.
6165         Thanks to Akim Demaille.
6167 2003-03-29  Akim Demaille  <akim@epita.fr>
6169         * lib/autoconf/programs.m4 (AC_PROG_INSTALL): Skip OS/2's install,
6170         that starts a GUI.
6171         From Ilya Zakharevich.
6173 2003-03-29  Akim Demaille  <akim@epita.fr>
6175         * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_MONGREL): The
6176         documentation to read is Autoconf's.
6177         Suggested by Paul Eggert.
6179 2003-03-28  Akim Demaille  <akim@epita.fr>
6181         * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_MONGREL): Suggest
6182         reading the section "Present But Cannot Be Compiled" when the
6183         header causes problems.
6185 2003-03-28  Akim Demaille  <akim@epita.fr>
6187         * tests/torture.at (Configuring subdirectories): Require aclocal
6188         1.4, otherwise the test fails, as it does support configure.ac.
6189         This fixes the "test 40 failed" bug reports.
6191 2003-03-28  Akim Demaille  <akim@epita.fr>
6193         * doc/autoconf.texi (C Compiler): `#line' portability.
6194         From Paul Eggert and Nelson H. F. Beebe.
6196 2003-03-27  Derek Price  <derek@ximbiot.com>
6198         * lib/autotest/general.m4: Eliminate main loop and reorganize test
6199         layout in order to allow scripting around test groups.
6201 2003-03-27  Derek Price  <derek@ximbiot.com>
6203         * lib/autotest/general.m4 (PARSE_ARGS,PARSE_ARGS_END,HELP,HELP_MODES,
6204         HELP_TUNING,HELP_OTHER,HELP_END,PREPARE_TESTS,TESTS_END): Define and
6205         use new diversions in preparation for accepting new arguments and
6206         allowing scripting around tests.
6207         (OPTIONS,TAIL): Remove these diversions to make way for the ones above.
6209 2003-03-26  Derek Price  <derek@ximbiot.com>
6211         * lib/autoconf/general.m4 (AC_ARG_VAR): Use AS_HELP_STRING instead of
6212         obsolete AC_HELP_STRING.
6213         (AC_HELP_STRING): AU_DEFUN to...
6214         * lib/m4sugar/m4sh.m4 (AS_HELP_STRING): ...here.
6215         * tests/m4sh.at (AS_HELP_STRING): New test.
6217         * tests/acgeneral.at: Regenerated.
6219 2003-03-26  Derek Price  <derek@ximbiot.com>
6221         * lib/autotest/general.m4: s/DEFAULT/DEFAULTS/ since it makes more
6222         sense.  Verbosify the diversion definitions comment.
6224 2003-03-26  Derek Price  <derek@ximbiot.com>
6226         * lib/autotest/general.m4 (AT_INIT): Remove redundant call to
6227         AS_PREPARE.
6229 2003-03-21  Eric Siegerman  <eric_97@pobox.com>
6231         * doc/autoconf.texi (Present But Cannot Be Compiled):
6232         Grammar fixes and minor rewording. (trivial change)
6234 2003-03-06  Paul Eggert  <eggert@twinsun.com>
6236         Work around a problem noted by Nelson H. F. Beebe with coreutils
6237         4.5.9: Sun c89 (Sun WorkShop 6 update 2 C 5.3 Patch 111679-08
6238         2002/05/09) rejects '#line 32768 "configure"' because the line
6239         number overflows.
6240         * lib/autoconf/c.m4 (AC_LANG_SOURCE(C)): Do not generate
6241         #line directives.
6242         * lib/autoconf/lang.m4 (AC_LANG_SOURCE): Fix comment to match this.
6243         * doc/autoconf.texi (Generating Sources): Document this.
6245 2003-03-01  Richard Dawe  <rich@phekda.freeserve.co.uk>
6247         * tests/atspecific.m4 (AT_CHECK_AUTOM4TE): Normalize
6248         file name for the m4 program, when it has an "exe" file extension.
6249         DJGPP's error messages include the error code in brackets -
6250         remove the error code during normalization.
6252 2003-02-28  Akim Demaille  <akim@epita.fr>
6254         * doc/autoconf.texi (Present But Cannot Be Compiled): New.
6256 2003-02-28  Alexandre Duret-Lutz  <adl@gnu.org>
6258         * doc/autoconf.texi (Limitations of Make): Remove the section
6259         about `$<' in inference rules, it was a bogus interpretation of
6260         an old Automake change.  Discuss NetBSD, FreeBSD, OpenBSD, and
6261         Tru64 make in the "target lookup" section.
6262         (Automake): Automake 1.5+ no longer requires special tools to be
6263         present on the developer's host.
6265 2003-02-26  Richard Dawe  <rich@phekda.freeserve.co.uk>
6267         * bin/autoheader.in (BEGIN): For DJGPP SHELL may not be set
6268         to a shell that can handle redirection or quoting correctly.
6269         Override SHELL with the shell detected by configure.
6270         Use of $^O suggested by Tim van Holder.
6271         * bin/autom4te.in (BEGIN): Likewise.
6272         * bin/autoreconf.in (BEGIN): Likewise.
6273         * bin/autoscan.in (BEGIN): Likewise.
6274         * bin/autoupdate.in (BEGIN): Likewise.
6275         * bin/ifnames.in (BEGIN): Likewise.
6277         * bin/ifnames.in: Add final newline to help and version messages.
6279         * lib/autoconf/programs.m4 (AC_PROG_MAKE_SET): Translate colons,
6280         to cope with DOS-style absolute paths, when constructing
6281         ${ac_make}.
6283         * lib/autoconf/status.m4 (_AC_OUTPUT_HEADERS, _AC_OUTPUT_FILES):
6284         When constructing paths with IFS=:, quote the path. If we're
6285         constructing a DOS-style absolute path, we don't want to split it
6286         on the colon.
6288         * tests/atspecific.m4 (AT_CHECK_CONFIGURE): Fix typo
6289         in description.
6291 2003-02-25  Pavel Roskin  <proski@gnu.org>
6293         * bin/autoheader.in: Add missing newline when printing
6294         suggestion how change AC_DEFINE call.
6296 2003-02-24  Paul Eggert  <eggert@twinsun.com>
6298         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Fix typo in
6299         2002-09-01 patch by replacing "test -n" with "test -z".
6300         This fixes a bug found by Jeff Painter and reported by Tom Epperly in
6301         <http://mail.gnu.org/archive/html/autoconf/2003-02/msg00139.html>.
6303         * doc/autoconf.texi (Shell Substitutions): test -n -> test -z,
6304         to fix a mismatch between example and discussion.
6306 2003-02-24  Kevin Ryde  <user42@zip.com.au>
6308         * doc/autoconf.texi (Limitations of Builtins): Add notes on printf
6309         format starting with "-".
6311 2003-02-20  Alexandre Duret-Lutz  <adl@gnu.org>
6313         * doc/autoconf.texi (Limitations of Make): `foo=bar make -e'
6314         is not portable inside Makefile.
6316 2003-02-20  Akim Demaille  <akim@epita.fr>
6318         * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_MONGREL): When
6319         compiler says yeah, but preproc says nope, compiler is right.
6320         Conversely, prompt the reader to send a bug report to the
6321         maintainers of the package, not of Autoconf.
6323 2003-02-20  Klee Dienes  <kdienes@apple.com>
6325         * bin/autoreconf.in (autoreconf_current_directory): Properly
6326         handle an empty aclocal.m4.
6328 2003-02-20  Akim Demaille  <akim@epita.fr>
6330         * lib/autoconf/general.m4 (AC_PREFIX_PROGRAM): Quote
6331         $ac_prefix_program.
6332         From Larry Jones.
6334 2002-12-23  Paul Eggert  <eggert@twinsun.com>
6336         * lib/autoconf/c.m4 (AC_LANG_FUNC_LINK_TRY(C)): Define $1 to an
6337         innocuous variant befor including <limits.h> or <assert.h>.  This
6338         works around a bug reported by Albert Chin: HP-UX 11i
6339         (and earlier versions) have a <limits.h> that declares
6340         gettimeofday and many other functions.
6342 2002-12-03  Paul Eggert  <eggert@twinsun.com>
6344         Version 2.57.
6346         * NEWS, configure.ac: Update version.
6348         * doc/fdl.texi: Upgrade to FDL version 1.2.
6350         * lib/autoconf/c.m4 (AC_LANG_FUNC_LINK_TRY(C)): Use the function f
6351         nontrivially in main's body, so that f's external declaration is
6352         not optimized away in AIX.  This should fix the bug reported by
6353         Martin Frydl in
6354         <http://mail.gnu.org/pipermail/autoconf/2002-November/014508.html>.
6356         * lib/autoconf/c.m4 (AC_LANG_FUNC_LINK_TRY(C),
6357         _AC_PROG_PREPROC_WORKS_IFELSE): Use <limits.h> if __STDC__ is
6358         defined, to support freestanding compilers.  This should fix the
6359         bug reported by Momchil Velkov in
6360         <http://mail.gnu.org/pipermail/autoconf/2002-November/014490.html>.
6362         * doc/autoconf.texi (Obsolete Macros): Fix typos (insert empty
6363         arg, AC_DEFINE -> AC_DEFINE_UNQUOTED) in documentation for
6364         obsolete AC_CHECK_TYPE.  The missing empty arg was reported
6365         by Simon Josefsson in
6366         <http://mail.gnu.org/pipermail/autoconf-patches/2002-December/008830.html>.
6368         * Makefile.maint (www-gnu): New macro.
6369         (standards.texi-url_prefix, make-stds.texi-url_prefix): Use it, as
6370         the location has moved.
6372 2002-12-02  Martin Frydl  <martin@systinet.com>
6374         * bin/autom4te.in (at_flatten): rewritten to avoid M4 problem when
6375         \(.*\) match is too long and there is something more to be checked.
6376         <http://mail.gnu.org/pipermail/autoconf/2002-November/014524.html>
6378 2002-11-15  Akim Demaille  <akim@epita.fr>
6380         Version 2.56.
6382         * config/install-sh: chmod +x.
6383         From Paul Eggert.
6384         * config/move-if-change: Indenting changes.
6385         * Makefile.am (AUTOMAKE_OPTIONS): Move to...
6386         * configure.ac (AM_INIT_AUTOMAKE): here.
6387         Require 1.7.1.
6389 2002-11-14  Akim Demaille  <akim@epita.fr>
6391         Version 2.55.
6393         * config/config.guess, config/config.sub, config/install-sh:
6394         Update from masters.
6396 2002-11-14  Akim Demaille  <akim@epita.fr>
6398         * Makefile.maint: Sync with Bison, i.e.:
6399         (po-check): Scan .l and .y files instead of the
6400         .c and the .h files that they generate.  This fixes the bug
6401         reported by Tim Van Holder in:
6402         <http://mail.gnu.org/pipermail/bison-patches/2002-November/001352.html>
6403         Look for N_ as well as for _.  Try to avoid matching #define for
6404         N_ and _.
6405         From Paul Eggert.
6407 2002-11-14  Akim Demaille  <akim@epita.fr>
6409         * doc/autoconf.texi (C Compiler): Compiling several files at once.
6410         From Paul Eggert and Albert Chin-A-Young.
6412 2002-11-14  Akim Demaille  <akim@epita.fr>
6414         * doc/autoconf.texi (C Compiler): Solitary backslashes.
6415         From Paul Eggert and Albert Chin-A-Young.
6417 2002-11-14  Kevin Ryde  <user42@zip.com.au>
6419         * lib/autoconf/c.m4 (AC_LANG_FUNC_LINK_TRY(C)): Initialize f=$1 rather
6420         than assigning in main, to avoid HP cc +O3 optimizing it away.
6422 2002-11-12  Peter Eisentraut  <peter_e@gmx.net>
6424         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Add -q
6425         option.  Process --recheck after parsing all options.  Pass -q
6426         option to configure on --recheck.
6427         (AC_OUTPUT): Pass -q from configure to config.status.
6428         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Strip -q from
6429         arguments to record.
6430         * doc/autoconf.texi (config.status Invocation): Document
6431         config.status -q option.
6433 2002-11-07  Alexandre Duret-Lutz  <adl@gnu.org>
6435         * bin/autoscan.in (scan_file): Scan Makefile.am too. Ignore
6436         Makefile.in if Makefile.am exists.
6437         (output): Strip `.am' from Makefiles.  Don't
6438         output AC_CONFIG_FILES if no Makefiles were found.
6440 2002-11-07  Akim Demaille  <akim@epita.fr>
6442         * Makefile.am (cvs_files): Add elisp-comp, mdate-sh.
6443         (local_updates): New.
6444         * Makefile.maint: Update, from CVS Bison.
6445         (local_updates): New.
6447 2002-11-06  Akim Demaille  <akim@epita.fr>
6449         * lib/autoconf/c.m4 (AC_LANG_FUNC_LINK_TRY): Wrap the `f'
6450         declaration in extern "C" too.
6451         Reported by Roberto Bagnara.
6453 2002-11-06  Akim Demaille  <akim@epita.fr>
6455         * tests/torture.at (Configuring subdirectories): Don't use grep
6456         -w.
6457         * doc/autoconf.texi (Limitations of Usual Tools): Grep -w.
6458         Reported by Ezra Peisach.
6460 2002-11-05  Akim Demaille  <akim@epita.fr>
6462         * lib/autoconf/autoheader.m4 (_AH_TEMPLATE_OLD, _AH_VERBATIM_OLD):
6463         Remove.
6464         We _have_ to stop using the old compatibility scheme that tried to
6465         avoid useless backslashes because Libtool 1.4.3 contains a
6466         AC_DEFINE([error_t], [int],
6467         [Define to a type to use for \`error_t' if it is not
6468         otherwise available.])
6469         We _have_ to quote the single quote and backslashes with \.  The
6470         old compatibility scheme saw that ` was backslashed, and therefore
6471         did not quote the single quote.  Hence before this patch, Autoconf
6472         was not compatible with Libtool.
6474 2002-11-04  Paul Eggert  <eggert@twinsun.com>
6476         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Set the following variables,
6477         too: LC_ADDRESS, LC_IDENTIFICATION, LC_MEASUREMENT, LC_MONETARY,
6478         LC_NAME, LC_PAPER, LC_TELEPHONE.
6479         * doc/autoconf.texi (Special Shell Variables): Mention those vars.
6481 2002-11-04  Akim Demaille  <akim@epita.fr>
6483         Version 2.54c.
6485         * Makefile.maint (update, cvs-update, po-update, do-po-update):
6486         New.
6487         * config/texinfo.tex: Update.
6489 2002-11-03  Akim Demaille  <akim@epita.fr>
6491         * bin/autoreconf.in (&autoreconf_current_directory): New, extracted
6492         from...
6493         (&autoreconf): here.
6494         ($help, $make, &parse_args, &autoreconf_current_directory):
6495         Support -m/--make.
6496         * doc/autoconf.texi (autoreconf Invocation): Adjust.
6498 2002-10-31  Bruno Haible  <bruno@clisp.org>
6500         * lib/autoconf/functions.m4 (_AC_FUNC_MALLOC_IF): Change message.
6501         Change name of cache variable to ac_cv_func_malloc_0_nonnull.
6502         (AC_FUNC_MALLOC): Change description of HAVE_MALLOC macro.
6503         (_AC_FUNC_REALLOC_IF): Change message. Change name of cache variable
6504         to ac_cv_func_realloc_0_nonnull.
6505         (AC_FUNC_REALLOC): Change description of HAVE_REALLOC macro.
6507 2002-10-31  Akim Demaille  <akim@epita.fr>
6509         The test suite was no longer checking for trailing envvars and files.
6511         * tests/atspecific.m4 (AC_STATE_SAVE): Don't use quadrigraphs here.
6512         (AT_CHECK_ENV): Make sure the `state-ls.before file exists.
6514 2002-10-31  Akim Demaille  <akim@epita.fr>
6516         * lib/autoconf/programs.m4 (AC_PROG_MAKE_SET): Use and display
6517         `$(MAKE)' instead of '${MAKE}' to emphasize that we refer to the
6518         Make variable, not a shell variable.
6519         Suggested by Bruno Haible.
6521 2002-10-31  Akim Demaille  <akim@epita.fr>
6523         * bin/autom4te.in (load_configuration): Reject #args out of any
6524         language.
6526 2002-10-31  Akim Demaille  <akim@epita.fr>
6528         * lib/autoconf/general.m4 (_AC_MSG_LOG_CONFTEST): New.
6529         (_AC_PREPROC_IFELSE, _AC_COMPILE_IFELSE, _AC_LINK_IFELSE)
6530         (_AC_RUN_IFELSE): Use it.
6531         * lib/autoconf/lang.m4 (_AC_COMPILER_OBJEXT):
6532         (_AC_COMPILER_EXEEXT_DEFAULT): Likewise.
6533         * lib/autoconf/c.m4 (AC_LANG_SOURCE): Don't include confdefs.h,
6534         inline it.
6536 2002-10-30  Akim Demaille  <akim@epita.fr>
6538         * bin/autom4te.in (&parse_args, $help): Support --no-cache.
6539         * doc/autoconf.texi (autom4te Invocation): Adjust.
6540         Suggested by Tim van Holder.
6542 2002-10-29  Paul Eggert  <eggert@twinsun.com>
6544         * doc/autoconf.texi (Particular Functions): AC_FUNC_MALLOC and
6545         AC_FUNC_REALLOC check for compatibility with glibc, not POSIX.
6546         Problem reported by Bruno Haible.
6548 2002-10-29  Akim Demaille  <akim@epita.fr>
6550         * doc/autoconf.texi (Header Templates): Put also in words what the
6551         pictures says to assist free style readers.
6552         (Customizing autom4te): s/--cache=/--cache /.
6554 2002-10-29  Akim Demaille  <akim@epita.fr>
6556         * lib/autoconf/functions.m4 (_AC_FUNC_VFORK): Include stdlib.h and
6557         sys/wait.h.
6558         sparc_address_test returns void.
6559         Use it with an argument, as prototyped.
6560         From Bruno Haible.
6562 2002-10-29  Akim Demaille  <akim@epita.fr>
6564         * doc/autoconf.texi (Subdirectories): Cygnus dirs have
6565         configure.in, not configure.ac.
6566         Reported by Bruno Haible.
6568 2002-10-29  Akim Demaille  <akim@epita.fr>
6570         * tests/torture.at (Deep Package): New test.
6571         (Configuring subdirectories): Don't use a testSubDir as Autotest
6572         now does it itself.
6574 2002-10-29  Akim Demaille  <akim@epita.fr>
6576         * bin/autoreconf.in (&parse_args, $help): Support --warnings.
6577         * doc/autoconf.texi (Invoking autom4te): Rename as...
6578         (autom4te Invocation): this, for consistency with the other nodes.
6580 2002-10-29  Akim Demaille  <akim@epita.fr>
6582         * lib/autom4te.in (Autoconf): s/automate/autom4te/.
6583         Reported by Ralf Corsepius.
6585 2002-10-29  Akim Demaille  <akim@epita.fr>
6587         * lib/m4sugar/m4sh.m4 (_AS_QUOTE): The warning about quoted
6588         characters is a back as an `obsolete' warning now.
6589         Reported by Ralf Corsepius.
6591 2002-10-28  Akim Demaille  <akim@epita.fr>
6593         * configure.ac: Bump to 2.54c.
6595 2002-10-28  Akim Demaille  <akim@epita.fr>
6597         Version 2.54b.
6599         * tests/foreign.at (Libtool): Adjust to broken libtoolize.
6601 2002-10-28  Akim Demaille  <akim@epita.fr>
6603         * tests/atspecific.m4 (AT_CHECK_AUTOM4TE): Be robust to different
6604         m4 executable names, and different GNU M4 version.
6605         Reported by Ezra Peisach and Paul Jarc.
6607 2002-10-27  Akim Demaille  <akim@epita.fr>
6609         * lib/autoconf/functions.m4 (_AC_FUNC_VFORK): Really use
6610         AC_RUN_IFELSE.
6612 2002-10-27  Akim Demaille  <akim@epita.fr>
6614         * doc/autoconf.texi: More AC_MSG_FAILURE promotion.
6615         * lib/autoconf/fortran.m4 (_AC_F77_NAME_MANGLING):
6616         Die when a simple Fortran program cannot be compiled.
6617         * lib/autoconf/lang.m4 (AC_LANG_CALL, AC_LANG_FUNC_LINK_TRY):
6618         Issue a warning if no function is given.
6620 2002-10-27  Akim Demaille  <akim@epita.fr>
6622         * doc/autoconf.texi (Run Time): Document AC_RUN_IFELSE.
6623         Move the documentation of AC_TRY_RUN to...
6624         (Obsolete Macros): here.
6625         Adjust all the old samples still using AC_TRY_RUN to AC_RUN_IFELSE.
6626         (autoconf Invocation): Remove the duplicates with `invoking
6627         autom4te'.
6628         * lib/autoconf/headers.m4 (AC_HEADER_STDC): Don't use AC_TRY_RUN.
6629         * lib/autoconf/c.m4 (AC_C_BIGENDIAN): Likewise.
6631 2002-10-27  Akim Demaille  <akim@epita.fr>
6633         * doc/autoconf.texi (Generating Sources): Document AC_LANG_CALL
6634         and AC_LANG_FUNC_LINK_TRY.
6635         (Examining Libraries): Rename as...
6636         (Running the Linker): this.
6637         Document AC_LINK_IFELSE.
6638         Move the documentation of AC_TRY_LINK and AC_TRY_LINK_FUNC to...
6639         (Obsolete Macros): here.
6640         * lib/autoconf/fortran.m4 (_AC_F77_NAME_MANGLING): Don't use
6641         AC_TRY_LINK_FUNC nor AC_TRY_LINK.
6642         * lib/autoconf/libs.m4 (AC_CHECK_LIB, AC_PATH_XTRA): Likewise.
6643         * lib/autoconf/headers.m4 (AC_USG): Likewise.
6645 2002-10-27  Akim Demaille  <akim@epita.fr>
6647         * lib/autoconf/headers.m4 (AC_HEADER_STDC): Don't use AC_TRY_CPP.
6649         More `check config.log' messages.
6651         * lib/autoconf/general.m4 (AC_MSG_FAILURE): New.
6652         * doc/autoconf.texi (Printing Messages): Document it.
6653         * lib/autoconf/types.m4 (AC_CHECK_SIZEOF): Use it when
6654         appropriate.
6655         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT)
6656         (_AC_COMPILER_EXEEXT_WORKS, _AC_COMPILER_EXEEXT_O)
6657         (_AC_COMPILER_OBJEXT): Likewise.
6658         * lib/autoconf/general.m4 (AC_RUN_IFELSE): Likewise.
6659         * lib/autoconf/fortran.m4 (_AC_LANG_PROGRAM_C_F77_HOOKS):
6660         Likewise.
6661         * lib/autoconf/c.m4 (AC_PROG_CPP, AC_PROG_CC, AC_PROG_CXXCPP):
6662         Likewise.
6664         Deprecate macros with unusual interfaces.
6666         * lib/autoconf/general.m4 (AC_TRY_CPP, AC_TRY_LINK)
6667         (AC_TRY_COMPILE, AC_TRY_RUN): AU_DEFUN'ed.
6669         Document the new ones, and proper style.
6671         * doc/autoconf.texi (Generating Sources): New.
6672         Document AC_LANG_CONFTEST, AC_LANG_SOURCE, AC_LANG_PROGRAM.
6673         (Examining Declarations): Rename as...
6674         (Running the Preprocessor): this.
6675         Document AC_PREPROC_IFELSE.
6676         (Examining Syntax): Rename as...
6677         (Running the Compiler): this.
6678         (AC_FOO_IFELSE vs AC_TRY_FOO): New section.
6679         (Obsolete Macros): Move the definition of AC_TRY_CPP and
6680         AC_TRY_COMPILE here.
6682 2002-10-27  Akim Demaille  <akim@epita.fr>
6684         Move sections around.
6686         * doc/autoconf.texi (Customizing autom4te): Remove a lost
6687         sentence.
6688         Reported by Burno Haible.
6689         (Language Choice): Now the first section of...
6690         (Writing Tests): this section.
6691         Make the introduction less C-centric.
6692         (Guidelines, Test Functions): Move to...
6693         (Writing Test Programs): this new section.
6694         (Test Programs): Merge into...
6695         (Run Time): this.
6697 2002-10-27  Akim Demaille  <akim@epita.fr>
6699         * lib/freeze.mk ($(AUTOM4TE_CFG)): Add a missing dependency on
6700         autom4te.in that resulted in the need for two `make' runs.
6702 2002-10-27  Akim Demaille  <akim@epita.fr>
6704         * configure.ac: Bump to 2.54b.
6706 2002-10-25  Akim Demaille  <akim@epita.fr>
6708         Version 2.54a.
6710         * Makefile.maint: Update from the Coreutils.
6711         (AMTAR): Remove, obsolete.
6712         (automake_repo): Update to redhat.com.
6713         (cvs_file): New.
6714         Adjust to the fact that ansi2knr is now hosted by Automake.
6715         * Makefile.am (cvs_files): Add install-sh and mkinstalldirs.
6716         * config/config.guess, config/mkinstalldirs, config/texinfo.tex:
6717         Update from masters.
6718         * lib/autoscan/Makefile.am (EXTRA_DIST, nodist_autoscanlib_DATA):
6719         autoscan.pre is not to be installed, and autoscan.list is not to
6720         be shipped.
6721         (CLEANFILES): Add autoscan.list.
6722         (autoscan.list): Disable the cache.
6723         * bin/Makefile.am: Include freeze.mk.
6725 2002-10-25  Akim Demaille  <akim@epita.fr>
6727         * bin/autom4te.in (&load_configuration): Take the file as
6728         argument.
6729         (&parse_args): Handle -C, --cache.
6730         ($help): Adjust.
6731         (MAIN): Load ~/.autom4te.cfg and ./.autom4te.cfg.
6732         * lib/autom4te.in (Autoconf): Pass --cache=autom4te.cache.
6733         * doc/autoconf.texi (Invoking autom4te): Document --cache.
6734         Now a subsection of...
6735         (Using autom4te): This new section.
6736         (Customizing autom4te): New.
6737         (autom4te.cache): Adjust.
6739 2002-10-25  Akim Demaille  <akim@epita.fr>
6741         * doc/autoconf.texi (Generic Headers): More information on how to
6742         use AC_CHECK_HEADERS.
6744 2002-10-25  Akim Demaille  <akim@epita.fr>
6746         * bin/autoconf.as, bin/autoconf.in, bin/autoupdate.in ($help):
6747         Space changes.
6749 2002-10-25  Akim Demaille  <akim@epita.fr>
6751         * bin/autoscan.in (output): Output AC_PREREQ.
6752         (%needed_macros): Add AC_PREREQ so that configure.ac without one
6753         be reported.
6755 2002-10-23  Akim Demaille  <akim@epita.fr>
6757         * doc/autoconf.texi (Particular Headers): In AC_HEADER_STDBOOL,
6758         document _Bool.
6760 2002-10-23  Akim Demaille  <akim@epita.fr>
6762         * bin/autom4te.in (handle_traces): Handle @&t@ in traces.
6763         Reported by Peter Eisentraut.
6765 2002-10-23  Akim Demaille  <akim@epita.fr>
6767         * lib/autoconf/headers.m4 (AC_HEADER_STDBOOL): Also look for the
6768         type _Bool.
6769         Fix a typo.
6770         * doc/autoconf.texi (Particular Headers): Adjust according to Paul
6771         Eggert's recommandations.
6773 2002-10-22  Akim Demaille  <akim@epita.fr>
6775         * lib/autoconf/headers.m4 (AC_HEADER_STDBOOL): New, based on CVS
6776         Bison, by Paul Eggert.
6777         * doc/autoconf.texi (Particular Headers): Document it.
6779 2002-10-22  Aaron M. Ucko  <amu@alum.mit.edu>
6781         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Avoid duplicates in
6782         `$ac_configure_args'.
6784 2002-10-22  Akim Demaille  <akim@epita.fr>
6786         * doc/autoconf.texi: Use AC_CONFIG_HEADERS in examples.
6787         (AC_ST_BLKSIZE, AC_ST_RDEV): Directly point to AC_CHECK_MEMBERS.
6788         From Art Haas.
6790 2002-10-22  Akim Demaille  <akim@epita.fr>
6792         Restore the 2002-10-11  Akim Demaille  <akim@epita.fr> patch:
6794         * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_MONGREL)
6795         (AC_CHECK_HEADER, _AC_CHECK_HEADER_NEW,_AC_CHECK_HEADER_OLD): Restore.
6796         (_AC_CHECK_HEADER_NEW): Rename as...
6797         (AC_CHECK_HEADER): this.
6799 2002-10-22  Akim Demaille  <akim@epita.fr>
6801         * doc/autoconf.texi (Limitations of Usual Tools): Remove incorrect
6802         words about HP-UX cmp: it was actually a user-written cmp.
6804 2002-10-22  Akim Demaille  <akim@epita.fr>
6806         * tests/foreign.at (Libtool): Don't check autoconf's stderr: there
6807         are a few warnings.
6808         * lib/autoconf/autoheader.m4 (AH_VERBATIM, _AH_VERBATIM_OLD):
6809         Quote for Perl '' strings, not "".
6810         * bin/autoheader.in: Invoke autoconf to get '' strings, not ""
6811         strings.
6813 2002-10-22  Akim Demaille  <akim@epita.fr>
6815         * lib/m4sugar/m4sh.m4 (_AS_QUOTE): The warning about quoted
6816         characters is a syntax warning now.
6817         (_AS_QUOTE): Accept $2 as list of characters to quote.
6818         * lib/autoconf/autoheader.m4 (AH_VERBATIM, _AH_VERBATIM_OLD):
6819         Quote for Perl, not sh.
6820         * bin/autoheader.in: When $debug, report the file which is
6821         `do'ne.
6822         * tests/tools.at (autom4te, autoheader): Exercise @bar, not merely
6823         `@', to tickle Perl's lists.
6824         Reported by Carlos Velasco.
6826 2002-10-18  Akim Demaille  <akim@epita.fr>
6828         * bin/autom4te.in (handle_m4): Pass --fatal-warning to m4, so that
6829         missing included files _are_ errors.
6830         Thanks to Alexandre Duret-Lutz.
6831         * tests/tools.at (autom4te cache): Adjust.
6832         * tests/atspecific.m4 (AT_CHECK_AUTOM4TE): New.
6833         (AT_CHECK_M4SUGAR): Use it.
6834         * tests/m4sugar.at (m4_warn, m4_require: circular dependencies):
6835         Adjust.
6836         * tests/tools.at (autom4te): Now it does exit 1.
6838 2002-10-17  Akim Demaille  <akim@epita.fr>
6840         * lib/autoconf/general.m4 (AC_CACHE_SAVE): Don't use cmp.
6841         Fixes the `AC_ARG_VAR' test failures.
6842         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES): Don't use cmp.
6843         * lib/freeze.mk (check-forbidden-patterns): New.
6844         * lib/autoconf/Makefile.am, lib/autotest/Makefile.am
6845         * lib/m4sugar/Makefile.am (check-local): Use it to catch `cmp'.
6846         * doc/autoconf.texi (Limitations of Usual Tools): HP-UX' cmp and
6847         /dev/null.
6848         Reported months ago by H. Merijn Brand.
6850 2002-10-17  Akim Demaille  <akim@epita.fr>
6852         * tests/tools.at (autoheader): Put randoms `@' to stress Perl.
6854 2002-10-16  Paul Eggert  <eggert@twinsun.com>
6856         * Makefile.maint (wget_files): Remove ansi2knr.c.
6857         (ansi2knr.c-url_prefix): Remove.
6859 2002-10-16  Akim Demaille  <akim@epita.fr>
6861         Because of caching, some files that no longer exist and are no
6862         longer required can still cause errors.
6863         Reported by Alexandre Duret-Lutz.
6865         * bin/autom4te.in (&parse_args): Do not prepend `--reload-state'
6866         to frozen files in @ARGV, as @ARGV must remain being a list of
6867         files.  Rather, at M4 call sites, use this...
6868         (&files_to_options): New function.
6869         (&freeze): Use &error.
6870         (&up_to_date): If a file that was included according to the cache
6871         is no longer there, then the output is out dated.
6872         (&main): Don't even check whether a file is up to date is anyway
6873         --force is given.
6874         * tests/tools.at (autom4te cache): New.
6876 2002-10-16  Akim Demaille  <akim@epita.fr>
6878         * bin/autoconf.as: Kill dead options.
6879         * bin/autoupdate.in (&parse_args): Kill old options.
6880         * bin/autoreconf.in (&parse_args): Remove dead options.
6881         Factor some code.
6882         (&autoreconf): Report the directories we enter *and leave*, so
6883         that error messages can be easily located, and use GNU Make
6884         format, so that Emacs' compile mode understands us.
6885         * lib/Autom4te/General.pm (&update_file): Use `verbose' to report
6886         if some file was changed instead of `print'.
6887         * bin/autoheader.in: Suggest AC_DEFINE with 3 args when needed.
6888         (&parse_args): Remove the dead options.
6889         * tests/atspecific.m4 (AT_CHECK_AUTOHEADER): Adjust to the new
6890         autoheader's quiet mode.
6891         (AT_CHECK_AUTOUPDATE): Likewise.
6892         * tests/tools.at (autoupdate): Adjust.
6893         * tests/semantics.at (AC_C_BIGENDIAN): Likewise.
6895 2002-10-11  Akim Demaille  <akim@epita.fr>
6897         No longer use CPP to check for the existing of headers: use CC to
6898         check for compilability.
6900         * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_MONGREL)
6901         (AC_CHECK_HEADER, _AC_CHECK_HEADER_OLD): Remove.
6902         (_AC_CHECK_HEADER_NEW): Rename as...
6903         (AC_CHECK_HEADER): this.
6905         * lib/autotest/general.m4 (AT_INIT): Include the failed test
6906         numbers in the Subject suggestion.
6908 2002-10-11  Akim Demaille  <akim@epita.fr>
6910         * lib/autoconf/specific.m4 (AC_DECL_SYS_SIGLIST): Obsolete.
6911         Suggest using AC_CHECK_DECLS instead.
6913 2002-10-11  Akim Demaille  <akim@epita.fr>
6915         * tests/torture.at (AC_ARG_VAR): Have configure report the value
6916         of `precious'.
6918 2002-10-11  Akim Demaille  <akim@epita.fr>
6920         * lib/m4sugar/m4sh.m4 (_AS_PATH_SEPARATOR_PREPARE): Use $$ in the
6921         file name to enable parallel executions.
6922         From Sam Varshavchik.
6924 2002-10-08  Akim Demaille  <akim@epita.fr>
6926         * bin/autoreconf.in (&autoreconf): Run autopoint before the first
6927         aclocal invocation, as Gettext macros might not be visible to
6928         aclocal.
6929         Instead of blindly running autopoint, scan configure.ac (not the
6930         traces) for AM_GNU_GETTEXT_VERSION uses, as autopoint does.
6931         Reported by Paul D. Smith.
6933 2002-10-08  Paul Eggert  <eggert@twinsun.com>
6935         Work around problems found when POSIXLY_CORRECT=1 is set.
6936         None of this seems to have anything to do with POSIX, really,
6937         but it's how Perl getopt works.
6938         * bin/autom4te.in (parse_args): Configure GetOpt with
6939         "permute", too.
6940         * doc/autoconf.texi (Invoking autom4te):
6941         --warning -> --warnings.
6942         * lib/autom4te.in: --warning -> --warnings.
6944 2002-09-28  Akim Demaille  <akim@epita.fr>
6946         * doc/autoconf.texi (autom4te.cache): New section.
6948 2002-09-28  Akim Demaille  <akim@epita.fr>
6950         * lib/autom4te.in (Autoscan-preselections, Autoreconf-preselections)
6951         (Automake-preselections): Update.
6952         * bin/autoreconf.in, bin/autoheader.in: Comment changes.
6954 2002-09-28  Akim Demaille  <akim@epita.fr>
6956         * lib/autoscan/autoscan.pre: Move all the remaining rules to...
6957         * lib/autoconf/c.m4, lib/autoconf/functions.m4,
6958         * lib/autoconf/headers.m4, lib/autoconf/libs.m4,
6959         * lib/autoconf/specific.m4, lib/autoconf/types.m4: here.
6961 2002-09-28  Akim Demaille  <akim@epita.fr>
6963         * tests/torture.at (Configuring subdirectories): Be robust to
6964         users who use config.site to require for a cache: in this case,
6965         the two last configure runs, using two different sets of
6966         arguments, trigger a legitimate error.
6968 2002-09-28  Akim Demaille  <akim@epita.fr>
6970         * tests/m4sh.at (Functions Support, Functions and return Support):
6971         New.
6973 2002-09-28  Akim Demaille  <akim@epita.fr>
6975         * bin/Makefile.am (ETAGS_SH, ETAGS_PERL): Update: ifnames and
6976         autoheader are Perl programs.
6977         (autoconf, autoheader, autoreconf, autoupdate, ifnames, autoscan)
6978         (autom4te): Specify that the sources are in the $srcdir.
6979         * doc/autoconf.texi (Installation Directory Variables): Adjust.
6981 2002-09-28  Akim Demaille  <akim@epita.fr>
6983         * lib/autoscan/autoscan.pre (st_blksize, st_blocks, st_rdev)
6984         (tm_zone): Move their rules to...
6985         * lib/autoconf/types.m4: here, using AN_ macros.
6986         * lib/autoscan/autoscan.pre (AWK, BISON, INSTALL, LEX, LN, MAKE)
6987         (RANLIB, YACC, awk, bison, byacc, flex, gawk, install, lex, ln)
6988         (make, mawk, nawk, ranlib, yacc): Similarly, move to...
6989         * lib/autoconf/programs.m4: here.
6990         * lib/freeze.mk (ETAGS_FOR_M4, ETAGS_FOR_M4SUGAR)
6991         (ETAGS_FOR_AUTOCONF): New.
6992         Use it.
6994 2002-09-28  Akim Demaille  <akim@epita.fr>
6996         * lib/autoconf/autoscan.m4: New file.
6997         * lib/autoconf/autoconf.m4: Include it.
6998         * lib/autoconf/functions.m4: Use AN_FUNCTION for all the functions
6999         that were listed in the original autoscan.list.
7000         * lib/autoconf/headers.m4: Similarly with headers.
7001         * lib/freeze.mk (autoconf_m4f_dependencies): Add autoscan.m4.
7002         (.m4.m4f): Don't pass --prepend-include, since that's done by
7003         tests/autom4te itself.
7004         * lib/autoscan/Makefile.am: Include freeze.mk.
7005         (autoscan.list): New target --this file is no longer a source.
7006         (autoscan.pre): New file.
7008 2002-09-28  Akim Demaille  <akim@epita.fr>
7010         * bin/autoscan.in (@kinds): Make them singular.
7011         Adjust all uses.
7012         (&init_tables): When --debug, report the list of rules to ease
7013         tracking changes in autoscan.list.
7014         * lib/autoscan/autoscan.list (function): Strip comments, sort.
7016 2002-09-28  Akim Demaille  <akim@epita.fr>
7018         * lib/autoscan/functions, lib/autoscan/headers,
7019         * lib/autoscan/identifiers, lib/autoscan/makevars,
7020         * lib/autoscan/programs: Merge into...
7021         * lib/autoscan/autoscan.list: this.
7022         * bin/autoscan.in (&init_tables): Adjust.
7024 2002-09-28  Akim Demaille  <akim@epita.fr>
7026         * lib/autoscan/functions, lib/autoscan/headers,
7027         * lib/autoscan/identifiers, lib/autoscan/makevars,
7028         * lib/autoscan/programs: Make the `kind' explicit, i.e., each
7029         `functions' line is now prefixed with `function:'.
7030         * bin/autoscan.in (&init_tables): Adjust.
7032 2002-09-28  Akim Demaille  <akim@epita.fr>
7034         From now on, autoscan files must always map a macro name to a
7035         word: there is no `default' macro for autoscan.
7037         * bin/autoscan.in (&init_tables): Reject entries with no macro at
7038         all.
7039         * lib/autoscan/functions, lib/autoscan/headers: Make the macro
7040         explicit.
7042 2002-09-28  Akim Demaille  <akim@epita.fr>
7044         * bin/autoscan.in (%c_keywords): Remove.
7045         (&used): Keep only track of the words we might be interested in.
7046         (&output_kind): It is no longer needed to look for non active
7047         checks.
7049 2002-09-27  Akim Demaille  <akim@epita.fr>
7051         * lib/autoconf/functions.m4 (AC_FUNC_MBRTOWC): New, stolen from
7052         jm_FUNC_MBRTOWC, by Paul Eggert, from the Coreutils 4.5.1.
7053         * lib/autoscan/functions: Adjust.
7054         * doc/autoconf.texi (Particular Functions): Adjust.
7056 2002-09-27  Akim Demaille  <akim@epita.fr>
7058         * doc/autoconf.texi (Limitations of Usual Tools): Some about mv
7059         from /tmp.
7060         Thanks to Bill Moseley and Paul Eggert.
7061         * lib/m4sugar/m4sh.m4 (AS_TMPDIR): $2 is the directory into which
7062         the tmpdir must be created.
7063         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Have the tmp
7064         dir be in the build tree, instead of $TMPDIR.
7066 2002-09-27  Akim Demaille  <akim@epita.fr>
7068         * bin/autoscan.in: Improve the comments.
7069         (&parse_args): Drop obsolete undocumented options.
7070         (&output_kind): Output warnings.
7071         * lib/autoscan/functions: (dcgettext): Now trigger AM_GNU_GETTEXT.
7072         (getwd): Trigger a warning.
7074 2002-09-26  Akim Demaille  <akim@epita.fr>
7076         * bin/autoreconf.in: Clarify that -s is meaningless without -i.
7077         Reported by Ralf Corsepius.
7078         * doc/autoconf.texi (autoreconf Invocation): Likewise.
7080 2002-09-26  Akim Demaille  <akim@epita.fr>
7082         Single suffix rules and seperated dependencies are not portable.
7084         * doc/autoconf.texi (Installation Directory Variables): Update.
7085         (Limitations of Make): Some about `Single Suffix Rules and
7086         Separated Dependencies'.
7087         * bin/Makefile.am (autoconf, autoheader, autoreconf, autoupdate)
7088         (ifnames, autoscan, autom4te): Un-factor into several rules.
7090 2002-09-25  Paul Eggert  <eggert@twinsun.com>
7092         * BUGS (Interoperability bugs): New section.  Mention libtool
7093         1.4.2, configure.ac, and AC_CONFIG_AUX_DIR interoperability bug.
7095 2002-09-24  Paul Eggert  <eggert@twinsun.com>
7097         Fix a portability bug reported by Alexandre Duret-Lutz: Solaris 8
7098         make handles suffix-rules differently from GNU make.
7100         * bin/Makefile.am (SUFFIXES, .in): Remove.
7101         (autoconf autoheader autoreconf autoupdate ifnames autoscan autom4te):
7102         Move the body of the old .in rule here.
7104 2002-09-16  Akim Demaille  <akim@epita.fr>
7106         i960 compilers create `b.out' files by default.
7107         Reported by Ralf Corsepius.
7109         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT): Remove b.out files.
7110         (_AC_COMPILER_EXEEXT_DEFAULT): Adjust to b.out.
7112 2002-09-13  Paul Eggert  <eggert@twinsun.com>
7114         * doc/autoconf.texi (Particular Headers): Remove obsolete
7115         reference to `struct timezone' in the description of
7116         AC_HEADER_TIME.
7118 2002-09-13  Akim Demaille  <akim@epita.fr>
7120         Version 2.54.
7122         * config/config.sub, config/config.guess: Update.
7123         * Makefile.maint: Update from bits of the Coreutils 4.5.1.
7124         * Makefile.am: Adjust.
7126 2002-09-13  Akim Demaille  <akim@epita.fr>
7128         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Suggest
7129         reading config.log when the compiler is rejected.
7130         Suggested by Guido Draheim.
7132 2002-09-13  Akim Demaille  <akim@epita.fr>
7134         * bin/autoreconf.in: Don't use Cwd::chdir, since in its internals
7135         (chdir_init) might hang when stat'ing mounted directories.
7136         Reported by Vance Shipley.
7138 2002-09-12  Akim Demaille  <akim@epita.fr>
7140         * bin/autoscan.in (&parse_args): Pass a reference to the lists, not
7141         the lists.
7143 2002-09-12  Akim Demaille  <akim@epita.fr>
7145         * doc/autoconf.texi (Defining Symbols): Present two different
7146         prototypes for AC_DEFINE and AC_DEFINE_UNQUOTED to emphasize the
7147         difference between 1 argument calls, and 2-3 argument calls.
7149 2002-09-12  Peter Eisentraut  <peter_e@gmx.net>
7151         * doc/autoconf.texi: Review grammar and punctuation.
7153 2002-09-11  Paul Eggert  <eggert@twinsun.com>
7155         * doc/autoconf.texi: Fix minor formatting, spelling, and
7156         grammatical typos.
7157         (Defining Symbols): Explain that AC_DEFINE(var) defaults to 1, but
7158         AC_DEFINE(var,,description) does not; and the AC_DEFINE(var) case
7159         is obsolescent.
7161 2002-09-11  Akim Demaille  <akim@epita.fr>
7163         * doc/autoconf.texi (Questions): Rename as...
7164         (FAQ): this.
7165         (Defining Directories): New.
7167 2002-09-09  Akim Demaille  <akim@epita.fr>
7169         * doc/autoconf.texi (Making testsuite Scripts): Update.
7170         Suggested by Nishio Futoshi.
7172 2002-09-09  Koji Arai  <JCA02266@nifty.ne.jp>
7174         * doc/autoconf.texi (Making testsuite Scripts): Use `@@' where a
7175         plain `@' is wanted.
7177 2002-09-09  Akim Demaille  <akim@epita.fr>
7179         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Keep the
7180         `duplicates', since the algorithm was too naive and could keep
7181         `--prefix=1 --prefix=2 --prefix=1' as `--prefix=1 --prefix=2', and
7182         keep `--prefix foo --prefix bar' as `--prefix foo bar'.
7183         Reported by Ralf Corsepius.
7184         * tests/torture.at (Configuring subdirectories): Exercise these
7185         cases.
7187 2002-09-09  Akim Demaille  <akim@epita.fr>
7189         * lib/autoconf/functions.m4 (AC_FUNC_GETLOADAVG): Use $srcdir when
7190         looking for a replacement file.
7191         * lib/autoconf/general.m4 (AC_CHECK_DECLS): Check that the
7192         directory is relative.
7193         * doc/autoconf.texi (Generic Functions): Clarify the replacement
7194         directory definition.
7195         Reported by Andreas Schwab and Jim Meyering.
7197 2002-09-06  Akim Demaille  <akim@epita.fr>
7199         * doc/autoconf.texi (Setting Output Variables): Clarify what
7200         precious variables are.
7201         Suggested by Pontus Skoeld.
7203 2002-09-05  Akim Demaille  <akim@epita.fr>
7205         * bin/Makefile.am (autoconf, autoheader, autoreconf, autoupdate)
7206         (ifnames, autoscan, autom4te): Since we don't only depend on
7207         configure.ac variables (such as VERSION etc.), but also on prefix
7208         and so forth, depend on Makefile, not configure.ac.
7209         Reported by Alexandre Duret-Lutz.
7210         * doc/autoconf.texi (Installation Directory Variables): Adjust.
7212 2002-09-05  Kevin Ryde  <user42@zip.com.au>
7214         * doc/autoconf.texi (Limitations of Make): HP-UX trailing backslashes
7215         doesn't seem to be confined to ia64, just say "some versions".
7217 2002-09-04  Akim Demaille  <akim@epita.fr>
7219         * Makefile.am, doc/Makefile.am: Remove pdf targets, handled by
7220         Automake 1.6c.
7221         * Makefile.am (maintainer-clean-local): Remove.
7222         (MAINTAINERCLEANFILES): Remove COPYING.
7224 2002-09-03  Paul Eggert  <eggert@twinsun.com>
7226         * doc/autoconf.texi (Configuration Commands): Remove obsolete
7227         example for AC_CONFIG_COMMANDS_PRE.  Problem reported by Marcus
7228         Brinkmann.
7230 2002-09-03  Akim Demaille  <akim@epita.fr>
7232         * configure.ac: Bump to 2.53d.
7233         * Makefile.am (AUTOMAKE_OPTIONS): Require 1.6c, i.e., CVS Automake
7234         as of today, on Automake's team suggestion.
7236 2002-09-03  Akim Demaille  <akim@epita.fr>
7238         Version 2.53c.
7240 2002-09-02  Akim Demaille  <akim@epita.fr>
7242         * bin/autom4te.in (parse_args): Don't honor AUTOM4TE_PATH and
7243         SITE_MACRO_DIR.
7244         * configure.ac: Disable SITE_MACRO_DIR.
7246 2002-09-02  Jim Meyering  <meyering@lucent.com>
7248         * doc/autoconf.texi (AC_SYS_POSIX_TERMIOS): Reflect renaming: s/am/ac/,
7249         i.e., change am_cv_sys_posix_termios to ac_cv_sys_posix_termios.
7250         Also, tweak grammar: s/make sure to/be sure to/.
7252 2002-09-02  Paul Eggert  <eggert@twinsun.com>
7254         * doc/autoconf.texi (Limitations of Builtins): Explain why logical
7255         directory names are generally preferable to physical names.
7257 2002-09-02  Akim Demaille  <akim@epita.fr>
7259         * lib/Autom4te/General.pm (&update_file): s/die/error/.
7260         Reported by Raja R. Harinath.
7261         * bin/autoheader.in, bin/autoreconf.in, bin/autoscan.in,
7262         * bin/autoupdate.in: Use error instead of die.
7264 2002-09-01  Paul Eggert  <eggert@twinsun.com>
7266         * tests/mktests.sh (ac_exclude_egrep, au_exclude_egrep): Use
7267         ordinary shell concatenation rather than echo+tr+sed command that
7268         runs afoul of a long-line-related sed bug in Solaris 8.
7270         * bin/autoheader.in (parse_args): --warning -> --warnings.
7272         * bin/autoconf.as: Work even if "ls" outputs "FOO not found" to
7273         stdout, as traditional "ls" does.
7274         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT,
7275         _AC_COMPILER_EXEEXT_O): Likewise.
7276         * doc/autoconf.texi (Limitations of Usual Tools): Add "ls".
7278         * bin/autoconf.as: Add --prepend-include option.  This patch was
7279         applied to bin/autoconf.in in the 2002-07-17 patch by Mark D. Roth,
7280         but bin/autoconf.in is generated automatically from bin/autoconf.as.
7282         * bin/autoconf.in, configure: Regenerate.
7284         * doc/autoconf.texi (Special Shell Variables): Mention
7285         ENV, MAIL, MAILPATH, PS1, PS2, PS4.  Index PWD.
7287         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Unset ENV, MAIL,
7288         MAILPATH and set PS1, PS2, PS4 to default values, to work
7289         around bug in pre-3.0 UWIN ksh reported by Bruce Lilly.
7290         For LC_ALL etc, first try to set to "C" as POSIX requires and as
7291         the Autoconf documentation specifies; fall back to "unset" only if
7292         this fails.  Use a shell for-loop for this rather than an m4 loop,
7293         to shorten the output script.
7295 2002-08-30  Paul Eggert  <eggert@twinsun.com>
7297         * doc/autoconf.texi (Special Shell Variables): Mention POSIX
7298         1003.1-2001's requirements for CDPATH.  Give a simpler workaround
7299         for the CDPATH problem.  Document PWD.
7300         (Limitations of Builtins): Document the problem that "cd $foo" and
7301         "ls $foo" may refer to different directories in shells conforming
7302         to POSIX 1003.1-2001.  Use PS1 rather than CDPATH for "unset"
7303         example, since the old example is now out of date.
7305         * lib/autoconf/general.m4 (_AC_INIT_SRCDIR): Reject FOO if "cd
7306         FOO" and "ls FOO" talk about different directories; this catches
7307         problems when POSIX 1003.1-2001 "cd" fails due to symlink
7308         spaghetti.
7310         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Use AS_UNSET instead
7311         of rolling our own unset.
7312         (_AS_PREPARE): $as_unset CDPATH instead of AS_UNSETting it, since
7313         in practice we needn't worry about CDPATH if unset doesn't work.
7315         * Makefile.in, aclocal.m4, bin/Makefile.in,
7316         config/Makefile.in, doc/Makefile.in, lib/Makefile.in,
7317         lib/Autom4te/Makefile.in, lib/autoconf/Makefile.in,
7318         lib/autoscan/Makefile.in, lib/autotest/Makefile.in,
7319         lib/emacs/Makefile.in, lib/m4sugar/Makefile.in, man/Makefile.in,
7320         tests/Makefile.in: Regenerate with Automake 1.6.3.
7322         * config/config.guess, config/config.sub, config/mkinstalldirs:
7323         Update.
7325         * configure: Regenerate with self.
7327 2002-08-30  Kevin Ryde  <user42@zip.com.au>
7329         * doc/autoconf.texi (Limitations of Usual Tools): Notes on "cc"
7330         default output.
7332 2002-08-29  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
7334         * bin/autom4te.in (Request::load): Correctly test for "do" read
7335         failure.
7337 2002-08-29  Akim Demaille  <akim@epita.fr>
7339         * lib/Autom4te/General.pm (&xqx): New.
7340         (&xsystem): Use WIFEXITED and WEXITSTATUS instead of decoding $? by
7341         hand, which is not portable.
7342         (&error): New.
7343         * bin/autom4te.in: Use them.
7344         Use &error instead of die.
7345         * tests/m4sugar.at (m4_warn, m4_require: circular dependencies):
7346         Adjust.
7348 2002-08-17  Paul Eggert  <eggert@twinsun.com>
7350         * lib/autoconf/fortran.m4 (AC_PROG_F77): Remove fc from the
7351         default list of compilers to try, since it was long ago superseded
7352         by the ksh fc builtin.  Suggested by Steven G. Johnson.
7354 2002-07-31  Alexandre Duret-Lutz  <duret_g@epita.fr>
7356         * doc/autoconf.texi (Invoking autom4te): End the option table,
7357         fixing a bug introduced by the previous patch.
7358         (Limitations of Make): Add a 'target lookup' subentry in the
7359         'VPATH' entry.  Rewrite all `make' occurences as `@command{make}'.
7361 2002-07-29  Mark D. Roth  <roth@feep.net>
7363         * bin/autom4te.in: Remove --include-envvar and --site-macro-subdir
7364         options and use $AUTOM4TE_PATH.
7365         * doc/autoconf.texi: Remove documentation of autom4te
7366         --include-envvar and --site-macro-subdir options and document
7367         use of $AUTOM4TE_PATH.
7368         * lib/autom4te.in: Remove --include-envvar and --site-macro-subdir
7369         arguments from each language section.
7371 2002-07-29  Paul Eggert  <eggert@twinsun.com>
7373         * doc/install.texi: Include copyright symbol in copyright notice.
7375         * Makefile.am (MAKEINFO): Remove; it's a user-specified macro.
7376         Replace with:
7377         (AM_MAKEINFOFLAGS): New macro.
7378         * doc/Makefile.am (MAKEINFO, AM_MAKEINFOFLAGS): Likewise.
7379         * Makefile.am (INSTALL): Use the new macros.
7380         Use -o rather than --output, since "missing" does not grok --output.
7382 2002-07-25  Alexandre Duret-Lutz  <duret_g@epita.fr>
7384         * doc/autoconf.texi (Limitations of Make): Escaped newlines in
7385         comments do not always work. Never trust the exit status of
7386         `make -k'.
7388 2002-07-24  Kevin Ryde  <user42@zip.com.au>
7390         * doc/autoconf.texi (Limitations of Make, Making testsuite Scripts):
7391         Untabify, since tabs are not enjoyed by texi2dvi and makeinfo.
7393 2002-07-23  Paul Eggert  <eggert@twinsun.com>
7395         * lib/m4sugar/m4sh.m4 (_AS_PATH_SEPARATOR_PREPARE):
7396         Use PATH="/nonexistent;.", not PATH=".;.", as FreeBSD ksh2002
7397         apparently treats PATH="nonexistent" as if it contained ".".
7398         Bug reported by Stefan `Sec' Zehl.
7400 2002-07-22  Alexandre Duret-Lutz  <duret_g@epita.fr>
7402         * doc/autoconf.texi (Limitations of Make): Mention the special
7403         handling of the obj/ directory by BSD make.
7405 2002-07-20  Kevin Ryde  <user42@zip.com.au>
7407         * doc/autoconf.texi (Limitations of Make): Add HP-UX IA-64 trailing
7408         backslashes.
7410 2002-07-19  Akim Demaille  <akim@epita.fr>
7412         * doc/autoconf.texi (Function Portability): `exit'.
7413         (Programming in M4sh): Ethymology of M4sh.
7415 2002-07-19  Akim Demaille  <akim@epita.fr>
7417         * doc/autoconf.texi (AC_LIBOBJ vs LIBOBJS): More about $U.
7419 2002-07-18  Akim Demaille  <akim@epita.fr>
7421         Version 2.53b.
7423 2002-07-18  Akim Demaille  <akim@epita.fr>
7425         * config/config.guess, config/config.sub: Update.
7427 2002-07-18  Akim Demaille  <akim@epita.fr>
7429         Handle LIBOBJS and LTLIBOBJS once for all, including Libtool's and
7430         Automake's parts.
7432         * lib/autoconf/general.m4 (_AC_LIBOBJS_NORMALIZE): New.
7433         * lib/autoconf/status.m4 (AC_OUTPUT_COMMANDS_PRE): Call it.
7434         * tests/semantics.at (AC_REPLACE_FUNCS): Adjust.
7436 2002-07-18  Akim Demaille  <akim@epita.fr>,
7437             Alexandre Duret-Lutz  <duret_g@epita.fr>
7439         * lib/autoconf/status.m4 (_AC_OUTPUT_HEADERS): Install
7440         _AC_AM_CONFIG_HEADER_HOOK for Automake 1.7.
7442 2002-07-17  Russ Allbery  <rra@stanford.edu>
7444         * doc/autoconf.texi (Initializing configure): Clarify the
7445         description of the tarname default.
7447 2002-07-17  Andreas Buening  <andreas.buening@nexgo.de>
7449         * lib/autoconf/functions.m4 (AC_FUNC_FORK): Don't set
7450         ac_cv_func_fork_works before running _AC_FUNC_FORK, do it if the
7451         latter was not run.
7453 2002-07-17  Akim Demaille  <akim@epita.fr>
7455         * lib/Autom4te/General.pm (find_file): Browse the directories in
7456         the order they are given.
7458 2002-07-17  Akim Demaille  <akim@epita.fr>
7460         * tests/wrapsh.as, tests/wrappl.as: Merge into...
7461         * tests/wrapper.as: this.
7462         * tests/Makefile.am, configure.ac: Adjust.
7464 2002-07-17  Mark D. Roth  <roth@feep.net>
7466         * configure.ac: Add --enable-site-macro-dir option.
7467         * bin/Makefile.am: Expand @SITE_MACRO_DIR@.
7468         * bin/autom4te.in: Add --prepend-include, --include-envvar, and
7469         --site-macro-subdir options.
7470         * bin/autoconf.in: Add --prepend-include option.
7471         * bin/autoheader.in: Add --prepend-include option.
7472         * bin/autoreconf.in: Add --prepend-include option.
7473         * bin/autoscan.in: Add --prepend-include option.
7474         * bin/autoupdate.in: Add --prepend-include option.
7475         * doc/autoconf.texi: Document use of $AC_MACRO_PATH and site
7476         macro directory, remove note that include path directories are
7477         used in reverse order, and document --prepend-include option.
7478         * lib/autom4te.in: Use --prepend-include instead of --include.
7479         * tests/wrapsh.in: Use --prepend-include instead of --include.
7481 2002-07-17  Akim Demaille  <akim@epita.fr>
7483         * lib/autoconf/general.m4 (_AC_INIT_PACKAGE): `_' is allowed in
7484         tarnames.
7485         * doc/autoconf.texi (Initializing configure): Adjust.
7487 2002-07-17  Akim Demaille  <akim@epita.fr>
7489         * lib/autoconf/functions.m4 (AC_FUNC_REALLOC, _AC_FUNC_REALLOC)
7490         (_AC_FUNC_MALLOC): New.
7491         (AC_FUNC_MALLOC): Use the latter.
7492         Define HAVE_MALLOC to 0 if broken.
7493         * doc/autoconf.texi (Particular Functions): Adjust.
7495 2002-07-16  Akim Demaille  <akim@epita.fr>
7497         * lib/autoconf/c.m4 (AC_C_BACKSLASH_A): New.
7498         * doc/autoconf.texi (C Compiler): Adjust.
7500 2002-07-09  Akim Demaille  <akim@epita.fr>
7502         * doc/autoconf.texi: Properly set the ``header'' part.
7504 2002-07-09  Akim Demaille  <akim@epita.fr>
7506         * doc/autoconf.texi (Systemology): Some about Darwin.
7508 2002-07-09  Alexandre Duret-Lutz  <duret_g@epita.fr>
7510         * lib/autoconf/specific.m4 (AC_CYGWIN, AC_EMXOS2, AC_MINGW32):
7511         Don't use AC_REQUIRE in AU_DEFUN.
7513 2002-07-09  Art Haas  <ahaas@neosoft.com>
7515         * doc/autoconf.texi: Use @enddots{} or @dots{} where appropriate.
7517 2002-07-02  Alexandre Duret-Lutz  <duret_g@epita.fr>
7519         * bin/autoheader.in, bin/autom4te.in, bin/autoreconf.in,
7520         bin/autoupdate.in, bin/ifnames.in, lib/Autom4te/General.pm,
7521         lib/Autom4te/Struct.pm, lib/Autom4te/XFile.pm: Add local variables
7522         so that Emacs setups GNU style for perl-mode and cperl-mode.
7524 2002-06-27  Paul Eggert  <eggert@twinsun.com>
7526         * config/install-sh: Quote $src.  Prefer || to test's -o option,
7527         as per "Limitations of Builtins".
7528         * tests/atspecific.m4 (AT_CHECK_ENV): Likewise, for && vs test -a.
7529         * tests/semantics.at (AC_C_BIGENDIAN): Likewise.
7531         * tests/mktests.sh: Use grep instead of fgrep, as per
7532         "Limitations of Builtins".
7534 2002-06-15  Paul Eggert  <eggert@twinsun.com>
7536         * tests/wrapsh.as (AUTOCONF, AUTOHEADER, AUTOM4TE, AUTOM4TE_CFG,
7537         autom4te_perllibdir): Set to top build dir or src dir as appropriate,
7538         so that we consistently test the just-built programs.
7539         * tests/wrappl.as: Likewise.
7541 2002-06-12  Paul Eggert  <eggert@twinsun.com>
7543         * bin/autoconf.as (AUTOM4TE): Default to a fully qualified path
7544         name, so that symlinks to 'autoconf' work properly.  Bug reported
7545         by Bruno Haible.
7546         * bin/autoheader.in (AUTOM4TE): Likewise.
7547         * bin/autoreconf.in (autoconf, autoheader): Likewise.
7548         * bin/autoscan.in (autom4te): Likewise.
7549         * bin/autoupdate.in (autom4te): Likewise.
7551         * lib/autoconf/functions.m4 (_AC_LIBOBJ_FNMATCH): Also check for
7552         btowc, to fix a portability bug with diffutils-2.8.2/lib/fnmatch.c
7553         on Solaris 2.5.1.
7555 2002-06-11  Andreas Schwab  <schwab@suse.de>
7557         * doc/autoconf.texi: Add more dir entries.
7559 2002-06-10  Alexandre Duret-Lutz  <duret_g@epita.fr>
7561         * bin/autom4te.in ($cache): Don't define using `$me', the name
7562         of the cache should not depend on the name under which autom4te
7563         was installed.
7565 2002-06-07  Akim Demaille  <akim@epita.fr>
7567         * tests/tools.at (autoconf: forbidden tokens, basic)
7568         (autoconf: forbidden tokens, exceptions): Adjust to the change of
7569         words in autom4te.in.
7571 2002-06-07  Peter Eisentraut  <peter_e@gmx.net>
7573         * lib/autoconf/c.m4 (AC_LANG_PROGRAM(C)): Use
7574         _AC_LANG_PROGRAM_C_F77_HOOKS.
7576 2002-06-07  Akim Demaille  <akim@epita.fr>
7578         * lib/autoconf/functions.m4 (AC_REPLACE_FUNC_FNMATCH): Typo,
7579         rename as...
7580         (AC_REPLACE_FNMATCH): this.
7581         * tests/mktests.sh (exclude_list): Exclude AC_REPLACE_FNMATCH,
7582         AC_FUNC_FNMATCH_GNU.
7584 2002-06-07  Akim Demaille  <akim@epita.fr>
7586         * doc/autoconf.texi (Systemology): Point to Tru64 docs, and the
7587         Rosetta Stone for Unix.
7589 2002-06-07  Akim Demaille  <akim@epita.fr>
7591         * bin/autom4te.in (warn_forbidden): When rejecting a token,
7592         suggest m4_pattern_allow.
7593         Suggested by Adam J. Richter.
7595 2002-06-07  Akim Demaille  <akim@epita.fr>
7597         * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS): Initialize
7598         ac_config_libobj_dir.
7599         (AC_CONFIG_LIBOBJ_DIR): New.
7600         * lib/autoconf/functions.m4 (_AC_FUNC_FNMATCH): Split into...
7601         (_AC_FUNC_FNMATCH_IF, _AC_LIBOBJ_FNMATCH): these.
7602         Use ac_config_libobj_dir to find the replacement files.
7603         (AC_FUNC_FNMATCH, AC_FUNC_FNMATCH_GNU): Split into...
7604         (AC_FUNC_FNMATCH, AC_FUNC_FNMATCH_GNU, AC_REPLACE_FNMATCH)
7605         (AC_REPLACE_FNMATCH_GNU): these.
7606         (AC_FUNC_GETLOADAVG): Use ac_config_libobj_dir.
7607         * doc/autoconf.texi (Particular Functions, Generic Functions): Adjust.
7608         * tests/mktests.sh (ac_exclude_list): Don't check
7609         AC_FUNC_GETLOADAVG as it requires getloadavg.c which is not shipped.
7611 2002-06-06  Paul Eggert  <eggert@twinsun.com>
7613         * lib/autoconf/status.m4 (_AC_OUTPUT_LINKS): Fall back on cp
7614         if ln doesn't work.
7615         * NEWS: Likewise.
7616         * doc/autoconf.texi (Configuration Links): Likewise.
7617         (Limitations of Usual Tools): Prefer $(LN_S) to ln -s || ln.
7619 2002-06-05  Paul Eggert  <eggert@twinsun.com>
7621         * config/config.guess, config/config.sub, config/texinfo.tex:
7622         Update from masters.
7624 2002-05-29  Paul Eggert  <eggert@twinsun.com>
7626         * bin/autom4te.in ($m4): Do not assume that egrep and fgrep exist.
7627         * lib/autoconf/c.m4 (AC_C_BIGENDIAN): Likewise.
7628         * lib/autoconf/general.m4 (_AC_RUN_LOG_STDERR, AC_EGREP_CPP):
7629         Likewise.
7630         * lib/autoconf/Makefile.am (check-local): Likewise.
7631         * lib/autoconf/status.m4 (AC_CONFIG_HEADER): Likewise.
7632         * lib/autoconf/types.m4 (commentary only): Likewise.
7633         * lib/autotest/general.m4 (AT_INIT, AT_CHECK): Likewise.
7634         * lib/autotest/Makefile.am (check-local): Likewise.
7635         * lib/m4sugar/Makefile.am (check-local): Likewise.
7636         * tests/atspecific.m4 (AT_CONFIGURE_AC, AT_CHECK_DEFINES): Likewise.
7637         * tests/mktests.sh (egrep): New var; use it instead of plain egrep.
7639         * lib/autoconf/programs.m4 (AC_PROG_EGREP, AC_PROG_FGREP): New macros.
7640         * doc/autoconf.texi (Particular Programs): Document them.
7641         (Limitations of Usual Tools): Warn that egrep and fgrep may not exist.
7642         * NEWS: Likewise.
7644 2002-05-27  Paul Eggert  <eggert@twinsun.com>
7646         * lib/autoconf/types.m4 (AC_TYPE_MBSTATE_T): New macro.
7647         * NEWS, doc/autoconf.texi (Particular Types): Document it.
7648         * lib/autoconf/functions.m4 (_AC_FUNC_FNMATCH): Require it
7649         instead of AC_MBSTATE_T, which never existed.
7651 2002-05-23  Akim Demaille  <akim@epita.fr>
7653         * doc/autoconf.texi (Hosts and Cross-Compilation): Specify the
7654         version of Autoconf that is discussed.
7656 2002-05-22  Paul Eggert  <eggert@twinsun.com>
7658         * lib/autoconf/fortran.m4 (AC_PROG_F77): Remove cf77 and cft77
7659         from the default list of compilers to try.  Suggested by
7660         Kate Hedstrom.
7661         * NEWS: Document the above.
7662         * doc/autoconf.texi (Fortran 77 Compiler): Don't suggest cf77.
7664 2002-05-17  Paul Eggert  <eggert@twinsun.com>
7666         * lib/autoconf/types.m4 (AC_CHECK_MEMBER): Work correctly even if
7667         the member is itself an aggregate.  Bug reported by Sergey Poznyakoff.
7668         This improves on an earlier suggestion by H. Peter Anvin.
7670 2002-05-16  Paul Eggert  <eggert@twinsun.com>
7672         AC_FUNC_FNMATCH now tests only for POSIX compatibility.
7673         AC_FUNC_FNMATCH_GNU also tests for GNU extensions.
7674         Both macros now accept an optional source-dir arg.
7675         New macro AC_GNU_SOURCE to define _GNU_SOURCE.
7677         * NEWS: Document this.
7678         * doc/autoconf.texi (Particular Functions, UNIX Variants): Likewise.
7680         * lib/autoconf/functions.m4 (_AC_FUNC_FNMATCH): New macro.
7681         (AC_FUNC_FNMATCH): Use it.  Test only for POSIX conformance,
7682         not for GNU extensions; this undoes part of the 2000-11-03 change,
7683         reverting to 2.13-compatible behavior.
7684         Add new optional argument DIR.
7685         (AC_FUNC_FNMATCH_GNU): New macro.
7687         * lib/autoconf/specific.m4 (AC_GNU_SOURCE): New macro.
7689 2002-05-08  Paul Eggert  <eggert@twinsun.com>
7691         * lib/autoconf/headers.m4 (AC_HEADER_TIOCGWINSZ):
7692         Don't require AC_SYS_POSIX_TERMIOS.  The test is unnecessary,
7693         and it causes a 'test' syntax error if it fails.
7694         Bug reported by Stephen Gildea.
7696         * lib/autoconf/functions.m4 (AC_FUNC_SETVBUF_REVERSED):
7697         If prototypes are supported, use them to check this at compile-time,
7698         instead of trying to check it at run-time.  If we must do a run-time
7699         check, assume that setvbuf is standard when cross-compiling, as
7700         nonstandard setvbuf occurs only on ancient and unlikely hosts.
7701         Bug reported by Paul D. Smith.
7703         * lib/autoconf/functions.m4 (AC_FUNC_GETLOADAVG): Add optional
7704         argument specifying location of getloadavg.c.  This removes a
7705         FIXME.  This idea was taken from Jim Meyering's implementation in
7706         textutils.
7707         * doc/autoconf.texi (Particular Functions): Document this.
7708         Also, mention HAVE_NLIST_H rather than NLIST_STRUCT, since
7709         that's what the code does; this fixes a bug reported by
7710         Paul D. Smith.
7712 2002-05-03  Akim Demaille  <akim@epita.fr>
7714         * bin/autoreconf.in (autoreconf): Rewrite to use Gettext's
7715         autopoint instead of gettextize.
7716         ($uses_alocal): Rename as...
7717         ($uses_aclocal): this.
7718         * doc/autoconf.texi (autoreconf Invocation): Adjust.
7719         Suggested by Bruno Haible.
7721 2002-05-03  Akim Demaille  <akim@epita.fr>
7723         * lib/m4sugar/m4sugar.m4 (m4_map_sep): New.
7725 2002-04-29  Paul Eggert  <eggert@twinsun.com>
7727         * bin/autoreconf.in (autoreconf): Don't age aclocal.m4's input
7728         files to be 1 second older; just set them to be the same time.
7729         Also, sleep 1 second after the first aclocal, to work around
7730         problems with sub-second time stamps on the input files.
7732 2002-04-29  Thien-Thi Nguyen  <ttn@gnu.org>
7734         * doc/autoconf.texi: Mention "set -e -x" lossage
7735         under node "Limitations of Builtins".
7737 2002-04-29  Akim Demaille  <akim@epita.fr>
7739         * doc/install.texi: Better wording for setting variables when
7740         running configure.
7741         From Christian Cornelssen.
7743 2002-04-29  Akim Demaille  <akim@epita.fr>
7745         * tests/m4sh.at (LINENO): If testsuite itself is rewritten because
7746         of lack of $LINENO support, then the test will compare the $LINENO
7747         in testsuite vs. the lineno in the test file.  This is wrong, of
7748         course.
7749         Be sure to protect it.
7750         Reported by Patrick Welche.
7752 2002-04-25  Akim Demaille  <akim@epita.fr>
7754         * doc/autoconf.texi (Obsolete Macros): Typo.
7755         Reported by Vladimir Volovich.
7757 2002-04-25  Akim Demaille  <akim@epita.fr>
7759         * bin/autoreconf.in (autoreconf): Don't let aclocal.m4 be older
7760         than some of the input files, hence, on the second run of aclocal,
7761         if some of its input are younger, make them older.
7762         Suggested by Paul Eggert.
7764 2002-04-25  Akim Demaille  <akim@epita.fr>
7766         * doc/autoconf.texi (Limitations of Usual Tools): sed and `!'.
7767         Thanks to Paul Eggert.
7769 2002-04-25  Akim Demaille  <akim@epita.fr>
7771         * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS): Let ac_subst_files
7772         and ac_subst_vars be sh variables containing the list of
7773         AC_SUBST_FILES'ed and AC_SUBST'ed identifiers.  Output them in the
7774         DEFAULT diversion.
7775         (_AC_INIT_PREPARE): Use them to log them.
7776         (_AC_SUBST, _AC_SUBST_SED_PROGRAM): Remove.
7777         (AC_SUBST, AC_SUBST_FILE): Instead of buliding the
7778         _AC_SUBST_SED_PROGRAM, store the list of output files/variables in
7779         _AC_SUBST_FILES and _AC_SUBST_VARS.
7780         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES): Adjust.
7782 2002-04-24  Akim Demaille  <akim@epita.fr>
7784         * bin/autoreconf.in (autoreconf): Run automake after autoconf and
7785         autoheader, so that automake does not complain about a missing
7786         config.h.in that was to be created.
7788 2002-04-23  Akim Demaille  <akim@epita.fr>
7790         * bin/autoheader.in (parse_args): --warning takes an argument.
7791         Fixes PR/220.
7793 2002-04-22  Peter Eisentraut  <peter_e@gmx.net>
7795         * lib/autoconf/general.m4 (_AC_RUN_IFELSE): Remove gmon.out
7796         and bb.out when cleaning up.
7798 2002-04-22  Akim Demaille  <akim@epita.fr>
7800         Version 2.53a.
7802 2002-04-22  Akim Demaille  <akim@epita.fr>
7804         * tests/m4sh.at (LINENO): Fix the Zsh skip pattern.
7806 2002-04-22  Akim Demaille  <akim@epita.fr>
7808         * doc/autoconf.texi (Pretty Help Strings): Remove a spurious
7809         comma.
7810         Reported by Gregory Giannoni.
7812 2002-04-22  Akim Demaille  <akim@epita.fr>
7814         * tests/m4sh.at (LINENO): Skip the test if LINENO cannot be unset.
7815         Fixes false failures on Darwin.
7817 2002-04-21  Paul Eggert  <eggert@twinsun.com>
7819         * TODO, bin/autoupdate.in, doc/autoconf.texi,
7820         lib/autoconf/general.m4, lib/autoconf/libs.m4,
7821         lib/autoconf/status.m4, lib/m4sugar/m4sugar.m4, tests/m4sh.at,
7822         tests/tools.at: Minor spelling and grammar fixes.
7824 2002-04-20  Paul Eggert  <eggert@twinsun.com>
7826         * doc/autoconf.texi (Shell Substitutions): Fix typos in yesterday's
7827         ZSH_VERSION fixes.  Bug reported by Raja R Harinath.
7828         * lib/autotest/general.m4 (AT_INIT): Likewise.
7829         * tests/atgeneral.m4 (AT_INIT): Likewise.
7831 2002-04-19  Paul Eggert  <eggert@twinsun.com>
7833         * NEWS, TODO, bin/autom4te.in, bin/autoreconf.in, bin/autoupdate.in,
7834         doc/autoconf.texi, lib/freeze.mk, lib/Autom4te/Struct.pm,
7835         lib/autoconf/autoheader.m4, lib/autoconf/c.m4,
7836         lib/autoconf/functions.m4, lib/autoconf/general.m4,
7837         lib/autoconf/lang.m4, lib/autoconf/libs.m4, lib/autoscan/identifiers,
7838         lib/autotest/general.m4, lib/m4sugar/m4sh.m4, tests/atgeneral.m4,
7839         tests/atspecific.m4, tests/semantics.at, tests/torture.at:
7840         Minor spelling and grammar fixes.
7842         * doc/autoconf.texi: Follow the outline suggested in the GNU
7843         Sample Texts sections of the Texinfo 4.2 manual.  Most
7844         importantly, this makes sure that the copyright notices appear in
7845         all output formats.  You probably need Texinfo 4.2 to generate
7846         the manual now.
7848         Fix some bugs when using "$@" when there might be zero positional
7849         arguments in cases where this matters.
7851         * bin/autoconf.as: Rewrite so that the problem does not come up.
7852         * lib/autoconf/programs.m4 (AC_CHECK_PROG): Likewise.
7853         * lib/autoconf/status.m4 (AC_OUTPUT): Likewise.
7854         * lib/autotest/general.m4 (AT_INIT): Likewise.
7856         * bin/autoheader.in: Use 'case' statement to work around problem.
7857         * bin/auto4mte.in: Likewise.
7858         * bin/autoreconf.in: Likewise.
7859         * bin/autoscan.in: Likewise.
7860         * bin/autoupdate.in: Likewise.
7861         * bin/ifnames.in: Likewise.
7863         * doc/autoconf.texi (Shell Substitutions): Document the problem.
7865         * lib/autotest/general.m4 (AT_INIT):
7866         Use Zsh alias to work around problem.
7867         * tests/atgeneral.m4 (AT_INIT): Likewise.
7869         * tests/c.at: We can't have zero arguments, so remove workaround
7870         that is not portable to Zsh.
7872 2002-04-19  Alexandre Duret-Lutz  <duret_g@epita.fr>
7874         * bin/autoupdate.in (handle_autoconf_macros): Honor AU_DEFUNs
7875         from aclocal.m4 too.
7877 2002-04-12  Akim Demaille  <akim@epita.fr>
7879         * tests/wrappl.as: New, M4sh precursor of wrappl.in.
7881 2002-04-10  Akim Demaille  <akim@epita.fr>
7883         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Install the Zsh
7884         workaround for ${1+"$@"}.
7885         * doc/autoconf.texi (Shell Substitutions): Explain it.
7886         From Oliver Kiddle and Peter Stephenson.
7888         Have M4sh perform minimal shell sanitizing.
7890         * lib/m4sugar/m4sh.at (AS_SHELL_SANITIZE): Split the `_AS_PREPARE_*'
7891         part into...
7892         (_AS_PREPARE): this new macro.
7893         (AS_PREPARE): New.
7894         (AS_INIT): Invoke AS_SHELL_SANITIZE.
7895         * tests/m4sh.at (AT_DATA_LINENO): Use _AS_PREPARE.
7897         Adjust Autoconf and Autotest.
7899         * lib/autoconf/general.m4 (_AC_INIT_DEFAULTS): Don't invoke
7900         AS_SHELL_SANITIZE, AS_INIT did it, but invoke AS_PREPARE.
7901         * lib/autotest/general.m4 (AT_INIT): Likewise.
7902         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS):
7903         Invoke _AS_PREPARE (not AS_PREPARE) in addition to
7904         AS_SHELL_SANITIZE.
7906         Use this M4sh to generate Autoconf's shell scripts.
7908         * tests/wrapsh.as: New, precursor of wrapsh.in.
7909         * tests/Makefile.am: Include lib/freeze.mk to get the dependencies
7910         on Autotest and M4sh.
7911         ($(TESTSUITE)): Use $(autotest_m4f_dependencies).
7912         (wrapsh.in): New target.
7913         * bin/autoconf.as: New, precursor of autoconf.in.
7914         (autoconf.in): New target.
7916 2002-04-09  Alexandre Duret-Lutz  <duret_g@epita.fr>
7918         * doc/autoconf.texi (Limitations of Make): Mention the issue
7919         with indented comments in rules.
7921 2002-04-09  Andreas Schwab  <schwab@suse.de>
7923         * lib/autoconf/status.m4 (_AC_SRCPATHS): Handle empty
7924         ac_top_builddir when setting ac_abs_top_builddir.
7926 2002-04-06  Kevin Ryde  <user42@zip.com.au>
7928         * doc/autoconf.texi (Systemology): Add link to Unix V7 online docs.
7929         (Portable Shell): Cross reference to Systemology.
7931 2002-04-05  Akim Demaille  <akim@epita.fr>
7933         * bin/autoreconf.in (autoreconf): Be sure to accumulate the
7934         directories when descending in a SUBDIRS.
7935         Reported by Ezra Peisach.
7937 2002-04-04  Andreas Schwab  <schwab@suse.de>
7939         * lib/m4sugar/m4sh.m4 (_AS_PATH_WALK): Only simplify if path
7940         contains no literal separators.
7942 2002-04-03  Akim Demaille  <akim@epita.fr>
7944         * lib/autoconf/status.m4 (_AC_CONFIG_FILE, _AC_CONFIG_HEADER)
7945         (_AC_CONFIG_COMMAND, _AC_CONFIG_LINK): New.
7946         Use dnl, not the KILL diversion.
7947         Extracted from...
7948         (AC_CONFIG_FILES, AC_CONFIG_HEADERS, AC_CONFIG_COMMANDS)
7949         (AC_CONFIG_LINKS): here.
7950         Adjust.
7951         Don't use the KILL diversion, as it kills spurious output, which
7952         results in failures being hidden.
7953         Use m4_defn where appropriate.
7954         (AC_CONFIG_IF_MEMBER): Kill the real bug: a spurious parenthesis
7955         after the second argument.
7956         Use m4_defn.
7957         * lib/autom4te.in (Autoconf, Autotest, M4sh): Don't pass --warning
7958         syntax, as it is provided by M4sugar.
7959         * tests/torture.at (Multiple AC_CONFIG_FILES): New.
7961 2002-04-03  Andreas Schwab  <schwab@suse.de>
7963         * lib/m4sugar/m4sugar.m4 (m4_bmatch): Make sure m4_bregexp is not
7964         expanded if $# <= 2.
7966         * bin/autoreconf.in (autoreconf): Run automake after rerunning
7967         aclocal.
7969 2002-04-03  Akim Demaille  <akim@epita.fr>
7971         * lib/autoconf/lang.m4 (_AC_COMPILER_OBJEXT_REJECT)
7972         (_AC_COMPILER_EXEEXT_REJECT): New.
7973         Also recognize *.bb and *.bbg as compilation byproducts.
7974         (_AC_COMPILER_EXEEXT_DEFAULT, _AC_COMPILER_EXEEXT_O)
7975         (_AC_COMPILER_OBJEXT): Use them.
7976         Fixes Debian #138666.
7978 2002-04-02  Peter Eisentraut  <peter_e@gmx.net>
7980         Integrate AC_PROG_CC_STDC into AC_PROG_CC.
7982         * lib/autoconf/c.m4 (AC_PROG_CC_STDC): Rename to _AC_PROG_CC_STDC.
7983         AU_DEFUN old name.  Use _AC_COMPILE_IFELSE.
7984         (AC_PROG_CC): Call _AC_PROG_CC_STDC.
7985         (AC_C_INLINE): Do not require AC_PROG_CC_STDC.
7986         (AC_C_CONST): Same.
7987         (AC_C_INLINE): Same.
7988         (AC_C_PROTOTYPES): Same.  Require AC_PROG_CC instead.
7989         * doc/autoconf.texi, NEWS: Document.
7990         * tests/mktests.sh (au_exclude_list): Add AC_PROG_CC_STDC and
7991         AC_C_CROSS.
7993 2002-04-02  Akim Demaille  <akim@epita.fr>
7995         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Invoke
7996         _AS_MKDIR_P_PREPARE.
7998 2002-03-28  Kevin Ryde  <user42@zip.com.au>
8000         * lib/autoconf/c.m4 (AC_C_INLINE): Test with a typedef return value,
8001         to avoid versions of HP C which don't allow that.
8003 2002-03-27  Paul Eggert  <eggert@twinsun.com>
8005         * lib/m4sugar/m4sh.m4 (_AS_BASENAME_PREPARE): New macro.
8006         (AS_SHELL_SANITIZE): Invoke it.
8007         (AS_BASENAME): AS_REQUIRE it, and use $as_basename.
8009 2002-03-26  Akim Demaille  <akim@epita.fr>
8011         * doc/autoconf.texi (Portable Shell): Add pointers to FAQs.
8013 2002-03-26  Akim Demaille  <akim@epita.fr>
8015         * doc/autoconf.texi (Introduction): The GNATS base moved.
8017 2002-03-25  Paul Eggert  <eggert@twinsun.com>
8019         * tests/m4sh.at: Don't rely on "PATH=test:$PATH test-1" working
8020         as POSIX requires, as it doesn't work with Zsh.
8021         * doc/autoconf.texi (Assignments): Document the problem.
8023 2002-03-25  Alexandre Duret-Lutz  <duret_g@epita.fr>
8025         * doc/autoconf.texi (Limitations of Make): Mention more issue
8026         about VPATH, overriding of macros in sub-makes, and handling of
8027         SHELL.
8029 2002-03-21  Paul Eggert  <eggert@twinsun.com>
8031         * doc/autoconf.texi (Here-Documents): Mention Solaris 8 dtksh
8032         problem with here-document buffer boundaries.
8034         * lib/m4sugar/m4sh.m4 (_AS_LINENO_PREPARE): Unset ENV and BASH_ENV
8035         when reinvoking the shell, to work around problems with installers
8036         who put strange things like "cd" commands in their environments.
8038 2002-03-19  Akim Demaille  <akim@epita.fr>
8040         * tests/semantics.at (AC_C_BIGENDIAN): s/unknow/unknown/.
8041         From Aaron Ucko.
8043 2002-03-19  Akim Demaille  <akim@epita.fr>
8045         * bin/autoscan.in (scan_file): Specify the location in `&used'
8046         invocations.
8047         From Nicolas Joly.
8049 2002-03-19  Akim Demaille  <akim@epita.fr>
8051         * doc/autoconf.texi: Adjust @code/@command, @xref/@ref usage.
8052         From Nishio Futoshi.
8054 2002-03-19  Akim Demaille  <akim@epita.fr>
8056         * lib/m4sugar/m4sugar.m4 (m4_define_default, m4_fst, m4_map): New.
8058 2002-03-18  Paul Eggert  <eggert@twinsun.com>
8060         * doc/autoconf.texi (Programming in M4sh): Add AS_MKDIR_P.
8061         (Limitations of Usual Tools): Add mkdir section.
8063         * lib/m4sugar/m4sh.m4 (_AS_MKDIR_P_PREPARE): New macro.
8064         (AS_MKDIR_P): Require it.  Use mkdir -p if available, falling
8065         back on AS_DIRNAME to compute prefixes otherwise; this is
8066         roughly what mkinstalldirs does.  That way, we need not have
8067         our own filename disassembler.  The old disassembler did not
8068         work with Solaris 8 dtksh, which is ksh Version M-12/28/93d.
8070         * lib/autotest/general.m4 (AT_INIT, AT_CLEANUP):
8071         Create at_test_all by a series of assignments,
8072         not by a single assignment of a long string.  The latter causes ksh
8073         version 11/16/88g to silently misbehave on OpenServer 5.0.6a,
8074         presumably because of a buffer overrun.
8076 2002-03-14  Paul Eggert  <eggert@twinsun.com>
8078         * lib/autotest/general.m4 (at_times_skip):
8079         Renamed from at_times.  Now a boolean.
8080         ksh93 Version M-12/28/93d doesn't like 'x=times; $x'; it
8081         says 'times: not found'.
8083 2002-03-14  Akim Demaille  <akim@epita.fr>
8085         * bin/autoreconf.in (&study_gettextize): New.
8086         (&autoreconf): Handle newest gettextize.
8087         Rerun aclocal if needed.
8088         Suggested by Andreas Schwab.
8090 2002-03-13  Akim Demaille  <akim@epita.fr>
8092         * doc/autoconf.texi (Special Shell Variables): More about IFS.
8094 2002-03-13  Akim Demaille  <akim@epita.fr>
8096         * doc/autoconf.texi (Header Portability): New.
8097         Add information about stdint.h and inttypes.h from Paul Eggert.
8099 2002-03-13  Akim Demaille  <akim@epita.fr>
8101         * doc/autoconf.texi (Limitations of Usual Tools): Some about `cp
8102         -p'.
8103         From Bob Proulx.
8105 2002-03-12  Akim Demaille  <akim@epita.fr>
8107         * lib/m4sugar/m4sh.m4 (AS_BASENAME_EXPR): AS_REQUIRE, not
8108         m4_require.
8110 2002-03-11  Andreas Schwab  <schwab@suse.de>
8112         * configure.ac: Explicitly check for EMACS since AM_PATH_LISPDIR
8113         does not do it if --with-lispdir is given.
8115 2002-03-08  Akim Demaille  <akim@epita.fr>
8117         Version 2.53.
8119 2002-03-08  Akim Demaille  <akim@epita.fr>
8121         * doc/autoconf.texi (Subdirectories): Clarify that the
8122         subdirectory should exist.
8124 2002-03-08  Akim Demaille  <akim@epita.fr>
8126         * Makefile.am (AUTOMAKE_OPTIONS): 1.6.
8128 2002-03-08  Akim Demaille  <akim@epita.fr>
8130         * bin/autom4te.in (&handle_m4): Do not foreach with `$_' as it
8131         aliases the actual variables, and modifications of the former
8132         affect the latter.
8134 2002-03-08  Akim Demaille  <akim@epita.fr>
8136         * bin/autom4te.in (&handle_m4): Protect us from corrupted file
8137         because of C-c: have m4 output in tmp files, then mv them.
8139 2002-03-08  Akim Demaille  <akim@epita.fr>
8141         * bin/autoconf.in, bin/autoheader.in, bin/autom4te.in,
8142         * bin/autoreconf.in, bin/autoscan.in, bin/autoupdate.in,
8143         * bin/ifnames.in: Copyright update.
8145 2002-03-08  Akim Demaille  <akim@epita.fr>
8147         * doc/autoconf.texi (Invoking autom4te): New.
8149 2002-03-05  Akim Demaille  <akim@epita.fr>
8151         * doc/autoconf.texi (Specifying Names): Clarification suggested by
8152         Kevin Ryde.
8154 2002-03-05  Akim Demaille  <akim@epita.fr>
8156         Version 2.52i.
8158 2002-03-04  Akim Demaille  <akim@epita.fr>
8160         * doc/autoconf.texi (AC_LIBOBJ vs. LIBOBJS): New.
8161         * lib/autoconf/general.m4 (AC_INIT): More informative error
8162         message for LIBOBJ.
8164 2002-03-04  Akim Demaille  <akim@epita.fr>
8166         * lib/freeze.mk ($(build_libdir)/m4sugar/version.m4): New, for
8167         parallel builds.
8169 2002-03-04  Akim Demaille  <akim@epita.fr>
8171         * doc/autoconf.texi (Transforming Names): Equality between target
8172         and host is irrelevant.
8173         (Specifying Names, Canonicalizing): Remove all references to the
8174         backward compatibility hooks.  Rather, collect them all into...
8175         (Hosts and Cross-Compilation): this new section.
8176         * doc/install.texi (System Type): Ditto.
8177         * lib/autoconf/general.m4 (AC_CANONICAL_HOST): Explicitly state
8178         that `--host' implies cross-compilation.
8180 2002-03-04  Akim Demaille  <akim@epita.fr>
8182         * doc/autoconf.texi (Evaluation Macros): New.
8183         * lib/m4sugar/m4sugar.m4 (m4_lquote): Remove, it is totally
8184         useless.
8185         (_m4_foreach): Define the variant with immediate evaluation so
8186         that it contains exactly the items, not an expression which
8187         evaluation is the current item.
8188         (m4_re_string, m4_re_word): Don't over quote them.
8190 2002-03-04  Akim Demaille  <akim@epita.fr>
8192         Instead of having stacking `shift's evaluated at the end, let
8193         `foreach' loops immediately evaluate them.
8195         * lib/m4sugar/m4sugar.m4 (m4_quote, m4_dquote): Use $@ rather than
8196         $*.  This is the n-th time I change my mind, but hopefully this is
8197         the last...
8198         (m4_lquote): New.
8199         (m4_text_wrap): Use m4_foreach, which is finally correct _and_
8200         efficient.
8201         (m4_foreach_quoted, m4_car_quoted, _m4_foreach_quoted): Remove, as
8202         it was only a hack for m4_text_wrap.
8203         (m4_car2): Remove, replaced by...
8204         (m4_cdr): New.
8205         (_m4_foreach): Adjust.
8206         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Adjust, and use
8207         m4_bpatsubst for clarification.
8209 2002-03-04  Akim Demaille  <akim@epita.fr>
8211         * doc/autoconf.texi (Changequote is Evil): New.
8213 2002-03-03  Kevin Ryde  <user42@zip.com.au>
8215         * doc/autoconf.texi (Portable Shell): Mention 32-byte #! length limit
8216         on old systems like SunOS.
8218 2002-03-01  Peter Eisentraut  <peter_e@gmx.net>
8220         * lib/autoconf/c.m4, lib/autoconf/fortran.m4,
8221         lib/autoconf/functions.m4, lib/autoconf/general.m4,
8222         lib/autoconf/headers.m4, lib/autoconf/lang.m4,
8223         lib/autoconf/programs.m4, lib/autoconf/status.m4: Improve spelling
8224         of messages.
8226 2002-02-28  Akim Demaille  <akim@epita.fr>
8228         * lib/autotest/general.m4 (AT_INIT): Suggest a title to the
8229         message to be sent.
8231 2002-02-28  Kevin Ryde  <user42@zip.com.au>
8233         * doc/autoconf.texi (Function Portability): Add va_copy and va_list.
8235 2002-02-25  Akim Demaille  <akim@epita.fr>
8237         * lib/autoconf/functions.m4 (AC_FUNC_SETPGRP): Fix the test.
8238         From Akinori Musha.
8240 2002-02-13  Alexandre Duret-Lutz  <duret_g@epita.fr>
8242         * lib/Autom4te/XFile.pm (getline, getlines): New functions,
8243         translate \r\n to \n.
8245 2002-02-07  Akim Demaille  <akim@epita.fr>
8247         Version 2.52h.
8249 2002-02-07  Akim Demaille  <akim@epita.fr>
8251         Fix Autoconf PR/209.
8252         Also reported by Frank Denis.
8254         * lib/m4sugar/m4sh.m4 (_AS_PATH_WALK): Don't over quote.
8256 2002-02-07  Akim Demaille  <akim@epita.fr>
8258         Fix Autoconf PR/207:
8259         AC_PREFIX_PROGRAM fails with dashed program names
8261         * lib/autoconf/general.m4 (AC_PREFIX_PROGRAM): Just use a fresh
8262         variable when looking for the prefix program.
8263         Now it also works for shell variables.
8265 2002-02-07  Akim Demaille  <akim@epita.fr>
8267         * doc/autoconf.texi (Limitations of Builtins): More about
8268         case/esac.
8270 2002-02-06  Akim Demaille  <akim@epita.fr>
8272         * lib/autoconf/status.m4 (_AC_OUTPUT_COMMANDS): Don't output empty
8273         case/esac, some shells don't support it.
8274         Reported by Zack Weinberg.
8275         * tests/torture.at (AC_CONFIG_COMMANDS with empty commands): New.
8277 2002-02-06  Akim Demaille  <akim@epita.fr>
8279         * lib/autotest/general.m4 (AT_INIT): When handling --keywords, be
8280         sure not to introduce newlines in at_groups.
8281         * lib/autotest/Makefile.am (autotest.m4f): Typo.
8283 2002-02-06  Akim Demaille  <akim@epita.fr>
8285         * tests/torture.at (Configuring subdirectories): Skip if aclocal
8286         is not available.
8288 2002-02-05  Paul Eggert  <eggert@twinsun.com>
8290         * doc/autoconf.texi (Specific Compiler Characteristics):
8291         Describe HP-UX cc bug workaround more accurately.
8292         * lib/autoconf/types.m4 (AC_CHECK_SIZEOF): Cast to long,
8293         not unsigned long.
8294         * tests/semantics.at (AC_CHECK_SIZEOF): Check non-GCC
8295         cross-compilers, too.  This undoes some of the most recent change
8296         to this file.
8298 2002-02-05  Akim Demaille  <akim@epita.fr>
8300         * tests/Makefile.am (check_SCRIPTS): Use it, instead of WRAPPERS,
8301         to make sure they are up to date when `check' is run.
8303 2002-02-05  Akim Demaille  <akim@epita.fr>
8305         * doc/autoconf.texi (Making testsuite Scripts): Document
8306         package.m4.
8308 2002-02-05  Akim Demaille  <akim@epita.fr>
8310         * lib/freeze.mk: New.
8312 2002-02-05  Akim Demaille  <akim@epita.fr>
8314         Implement `autom4te --freeze'.
8316         * bin/autom4te.in (&freeze): New.
8317         * lib/autoconf/autoconf.m4, lib/autotest/general.m4,
8318         * lib/m4sugar/m4sh.m4: Don't include files given by autom4te.
8320 2002-02-05  Akim Demaille  <akim@epita.fr>
8322         * bin/autom4te.in (&parse_args): Implement `frozen files are
8323         optional are the sum of the previous files on the command line'.
8324         Also, pass `--reload-state=' on them, so...
8325         (handle_m4): don't.
8326         * lib/autom4te.in (Autotest, Autoconf): Rely on M4sh.
8327         (M4sh): Rely on M4sugar.
8328         (Autotest, M4sh, M4sugar): Use frozen files.
8330 2002-01-31  Akim Demaille  <akim@epita.fr>
8332         * lib/autoconf/general.m4 (_AC_INIT_PACKAGE): Accept $4.
8333         * doc/autoconf.texi (Initializing configure): Adjust.
8335 2002-01-30  Akim Demaille  <akim@epita.fr>
8337         * lib/autoconf/general.m4 (_AC_INIT_PACKAGE): Map non
8338         alphanumeric to `-' instead of `_'.
8340 2002-01-30  Akim Demaille  <akim@epita.fr>
8342         * tests/semantics.at (AC_CHECK_SIZEOF): Split into two tests: one
8343         for plain code, the other for cross-compilation code.  The latter
8344         is now run with GCC only.
8345         * doc/autoconf.texi (Compilers and Preprocessors): New.
8347 2002-01-30  Akim Demaille  <akim@epita.fr>
8349         * lib/autoconf/general.m4 (_AC_INIT_PACKAGE): Support pre-defined
8350         values.
8351         * doc/autoconf.texi (Initializing configure): Explain how to
8352         change AC_INIT default values.
8354 2002-01-29  Akim Demaille  <akim@epita.fr>
8356         * tests/torture.at (Configuring subdirectories): Use configure.in,
8357         so that aclocal 1.4 works.
8358         Reported by Alexandre Duret-Lutz and Larry Schmitt.
8360 2002-01-28  Akim Demaille  <akim@epita.fr>
8362         * doc/autoconf.texi (Writing testsuite.at): AT_CLEANUP no longer
8363         needs an argument.
8365 2002-01-28  Akim Demaille  <akim@epita.fr>
8367         * lib/autotest/general.m4 (AT_INIT): Don't be ridiculous: adjust
8368         AUTOTEST_PATH *after* it was set.
8369         Don't put `.' in the PATH: the user should be precise and `./' if
8370         needed.  In addition, given that the test suite does some `cd', if
8371         `.' is in the path, the `tested programs' sections will report
8372         programs found in the test suite's directory, while during the
8373         tests (performed in their own directory), these programs are no
8374         longer visible.  In other words, the results is confusing and
8375         useless.
8376         * tests/m4sh.at: Adjust: don't rely on `.' being in the PATH.
8378 2002-01-24  Akim Demaille  <akim@epita.fr>
8380         Version 2.52g.
8382 2002-01-24  Akim Demaille  <akim@epita.fr>
8384         * bin/autoheader.in, bin/autoconf.in, bin/autoscan.in,
8385         * doc/autoconf.texi: Finally add Akim as an author.
8387 2002-01-24  Akim Demaille  <akim@epita.fr>
8389         * lib/m4sugar/m4sh.m4 (_AS_LINENO_PREPARE): Use PATH_SEPARATOR.
8390         (_AS_PATH_SEPARATOR_PREPARE): Don't expect $SHELL to be
8391         Bourne. Use /bin/sh.
8392         From Andreas Buening.
8394 2002-01-24  Akim Demaille  <akim@epita.fr>
8396         * config/config.guess, config/config.sub, config/texinfo.tex:
8397         Update from masters.
8399 2002-01-24  Akim Demaille  <akim@epita.fr>
8401         * Makefile.am (AUTOMAKE_OPTIONS): 1.5b.
8402         * config/auxdir.m4, config/cond.m4, config/depend.m4,
8403         * config/init.m4, config/install-sh.m4, config/lispdir.m4,
8404         * config/missing.m4, config/sanity.m4, config/select.m4,
8405         * config/strip.m4: Remove, to ease sync'ing with any version of
8406         Automake.
8408 2002-01-24  Akim Demaille  <akim@epita.fr>
8410         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ARGS)
8411         (_AC_INIT_PREPARE): Support -n as --no-create, as documented.
8412         Reported by Geir Ove Myhr.
8414 2002-01-21  Akim Demaille  <akim@epita.fr>
8416         * lib/autoconf/functions.m4 (AC_FUNC_MMAP): #Undef malloc.
8418 2002-01-21  Akim Demaille  <akim@epita.fr>
8420         * lib/Autom4te/General.pm (getopt): Use a more GNUish error
8421         message on invalid options.
8422         * bin/autom4te.in (parse_args): Don't use
8423         Autoconf::General::getopt with non valid options.
8425 2002-01-17  Jim Meyering  <meyering@lucent.com>
8427         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Initialize
8428         $ac_cv_exeext so we don't use an old, invalid, cached value.
8430 2002-01-11  Akim Demaille  <akim@epita.fr>
8432         * lib/autoconf/functions.m4 (AC_FUNC_STRNLEN): New, from Jim
8433         Meyering.
8434         * doc/autoconf.texi (Function Portability): Document the strnlen
8435         limitation.
8436         (Particular Functions): Document AC_FUNC_STRNLEN.
8437         * lib/autoscan/functions: Adjust.
8439 2002-01-06  Akim Demaille  <akim@epita.fr>
8441         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): Don't create
8442         package.m4, since is really depends upon configure.ac, not
8443         configure.
8444         * doc/autoconf.texi (testsuite Scripts): Adjust.
8445         * tests/Makefile.am (package.m4): New.
8446         EXTRA_DIST it since its a source.
8448 2002-01-06  Akim Demaille  <akim@epita.fr>
8450         * lib/autoconf/general.m4 (_AC_INIT_PARSE_ARGS): Move the AC_SUBST
8451         of PACKAGE_NAME, PACKAGE_TARNAME, PACKAGE_VERSION, PACKAGE_STRING,
8452         and PACKAGE_BUGREPORT from here...
8453         (_AC_INIT_DEFAULTS): to here, since it is unrelated to the
8454         arguments.
8455         (_AC_INIT_PREPARE): AC_DEFINE these symbols.
8456         * lib/autotest/general.m4: Use AT_PACKAGE_*, not PACKAGE_*.
8457         (AT_INIT): No longer catch `^PACKAGE_(BUGREPORT|STRING)$'.
8458         * tests/tools.at (autoheader): Adjust.
8459         * tests/atspecific.m4 (AT_CHECK_DEFINES): Adjust.
8461 2002-01-06  Akim Demaille  <akim@epita.fr>
8463         * bin/autoscan.in (scan_file): Use `&used'.
8465 2002-01-03  Akim Demaille  <akim@epita.fr>
8467         * doc/autoconf.texi (Output): Improved wording regarding use of
8468         AC_OUTPUT.
8469         From Olly Betts.
8471 2001-12-18  Kevin Ryde  <user42@zip.com.au>
8473         * doc/autoconf.texi (Function Portability): Add notes on sscanf
8474         sometimes needing writable input.
8476 2001-12-17  Jim Meyering  <meyering@lucent.com>
8478         * doc/autoconf.texi (New Macros): Tweak wording.
8480 2001-12-14  Akim Demaille  <akim@epita.fr>
8482         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): We cleaning up the
8483         trailing files, don't apply `-rf' to files which might not be
8484         created by configure (core, core.*, and *.core), but just `rm -f'.
8485         Suggested by Jonathan Kamens.
8487 2001-12-14  Aaron M. Ucko  <amu@alum.mit.edu>
8489         * lib/autoconf/general.m4: Avoid duplicates in `$ac_configure_args'.
8491 2001-12-14  Akim Demaille  <akim@epita.fr>
8493         * Makefile.am (MAINTAINERCLEANFILES): Remove configure.
8495 2001-12-13  Peter Eisentraut  <peter_e@gmx.net>
8497         * lib/autoconf/status.m4 (_AC_SRCPATHS): Rename buildpath to
8498         abs_builddir, top_buildpath to abs_top_builddir, srcpath to
8499         abs_srcdir, top_srcpath to abs_top_srcdir.
8500         (_AC_OUTPUT_FILES): Adjust.
8501         * NEWS, doc/autoconf.texi, lib/autoconf/autotest.m4,
8502         * tests/atspecific.m4, tests/autoreconf.in, tests/tools.at,
8503         * tests/wrappl.in, tests/wrapsh.in: Adjust.
8505 2001-12-12  Steven G. Johnson  <stevenj@alum.mit.edu>
8507         * lib/autoconf/fortran.m4 (_AC_PROG_F77_V_OUTPUT): Fix failed
8508         C/Fortran linking on HP/UX, by extracting the Fortran library
8509         search path from the LPATH line in the $F77 -v output.
8511 2001-12-12  Kevin Ryde  <user42@zip.com.au>
8513         * doc/autoconf.texi (File Descriptors): Use a clearer layout for the
8514         forbidden file descriptors table.
8516 2001-11-26  Akim Demaille  <akim@epita.fr>
8518         * bin/autoscan.in (%c_keywords): Build it at top level.
8519         Map to 1 in order to simplify its uses.
8521 2001-11-26  Akim Demaille  <akim@epita.fr>
8523         * bin/autoscan.in (&scan_c_file, &scan_sh_file, &scan_makefile):
8524         Remove $filepath, useless.
8525         (&scan_makefile): Don't remove the $(FOO), ${FOO} and @FOO@
8526         variables, they are really part of the tokens.
8527         Split the input line on spaces and then look for tokens.
8528         Now autoscan ceases to ask for AC_PROG_LEX for the package Bison
8529         because of `lex$U.$(OBJEXT)'.
8530         (&scan_files): Use "@list" instead of join.
8531         * doc/Makefile.am (CLEANFILES): Add *.fns.
8533 2001-11-26  Akim Demaille  <akim@epita.fr>
8535         * tests/autoreconf.in, tests/autom4te.in, tests/autoupdate.in:
8536         Remove, replaced by...
8537         * tests/wrappl.in: Be common for all the Perl executables.
8538         In particular autoscan and autoheader want -I.
8539         * configure.ac: Adjust.
8540         * lib/autoscan/headers: errno.h is portable.
8542 2001-11-26  Akim Demaille  <akim@epita.fr>
8544         * bin/autoscan.in (used): New.
8545         Use it.
8547 2001-11-26  Akim Demaille  <akim@epita.fr>
8549         * bin/autoscan.in (&scan_c_file): Better parsing of CPP
8550         directives.
8551         (&scan_sh_file): Remove a duplicate pattern.
8552         (&check_configure_ac): Use long options.
8553         * lib/autoscan/headers (alloca.h): Check with AC_FUNC_ALLOCA.
8555 2001-11-26  Akim Demaille  <akim@epita.fr>
8557         * bin/autoscan.in (scan_c_file): Fix the handling of C comments.
8558         Before, having a line containing the opening of a multi line
8559         comment made the whole line be ignored.
8561 2001-11-26  Akim Demaille  <akim@epita.fr>
8563         * doc/autoconf.texi (Using an Autotest Test Suite): New.
8564         (testsuite Scripts): Be one of its subsection.
8565         (Autotest Logs): New.
8567 2001-11-26  Akim Demaille  <akim@epita.fr>
8569         Test groups are now run two directories deeper.
8571         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): Replace srcdir,
8572         top_srcdir and top_builddir with at_srcdir, at_top_srcdir and
8573         at_top_builddir.
8574         * lib/autotest/general.m4 (AT_INIT): Compute srcdir,
8575         top_srcdir, builddir and top_builddir.
8576         Use `at_*dir' relatively to the directory containing the
8577         suite, use `*dir' when relatively to the current group dir.
8579 2001-11-25  Joseph S. Myers  <jsm28@cam.ac.uk>
8581         * doc/autoconf.texi, TODO, lib/autoconf/fortran.m4,
8582         lib/autoconf/functions.m4, lib/autoconf/headers.m4,
8583         tests/atgeneral.m4, tests/tools.at, tests/atspecific.m4: Fix
8584         spelling errors.
8586 2001-11-22  Alexandre Duret-Lutz  <duret_g@epita.fr>
8588         * doc/autoconf.texi (Using System Type): Add an example of `case
8589         $host' usage so people quit using `case $target' everywhere.
8591 2001-11-22  Akim Demaille  <akim@epita.fr>
8593         * doc/autoconf.texi (Installation Directory Variables): Englishoes
8594         spotted by Jim Meyering.
8596 2001-11-16  Paul Eggert  <eggert@twinsun.com>
8598         This patch implements a `long double' suggestion by Oliver Kiddle.
8600         * lib/autoconf/c.m4 (AC_LANG_BOOL_COMPILE_TRY(C)): Make the array
8601         static, to catch errors if the value isn't known at compile-time
8602         and the compiler supports dynamic arrays.  Change its name from
8603         `_array_' to `test_array' to avoid potential name clashes.
8604         (AC_C_LONG_DOUBLE): Make it a compile-time test, not a run-time
8605         test.  Do not define HAVE_LONG_DOUBLE if `long double' is no
8606         better than double.  Catch a bug in GCC 2.95.2 x86.
8607         * doc/autoconf.texi (C Compiler): Document the above.
8608         * NEWS: Likewise.
8610 2001-11-13  Akim Demaille  <akim@epita.fr>
8612         * tests/m4sh.at (LINENO): Protect from autom4te's substitution by
8613         hand.
8614         * tests/tools.at: Don't protect dnl, AT_DATA_M4SH does.
8616 2001-11-13  Akim Demaille  <akim@epita.fr>
8618         * lib/autotest/general.m4 (AT_INIT): After having run the test
8619         group, go back to the initial directory, not to at_suite_dir.
8621 2001-11-13  Akim Demaille  <akim@epita.fr>
8623         * tests/atspecific.m4 (AT_DATA_M4SUGAR, AT_DATA_M4SH)
8624         (AT_DATA_AUTOCONF):  Also protect @&t@ from autom4te.
8625         (AT_CHECK_AUTOCONF, AT_CHECK_AUTOHEADER): Pass no --include
8626         option.
8627         (AT_CHECK_CONFIGURE): Use absolute paths.
8628         (_AT_CHECK_AC_MACRO): Create aclocal.m4 with AC_STATE_SAVE in it.
8629         The problem is still the old one: there is no means in M4 (that I
8630         know about) to create a defining macro, because there is no means
8631         to create `$1' etc., therefore, the defining macro ``swallows''
8632         all the arguments meant to the defined macro.
8634 2001-11-13  Akim Demaille  <akim@epita.fr>
8636         * tests/atspecific.m4 (AT_DATA_AUTOCONF): New.
8637         (AT_CONFIGURE_AC): Output the definition of AC_STATE_SAVE in
8638         configure.ac.
8639         * tests/aclocal.m4: Remove, as it is no longer used.
8641 2001-11-13  Akim Demaille  <akim@epita.fr>
8643         * lib/autotest/general.m4: Change `tests?' into `groups?' in
8644         variable names when referring to a single test group, or to
8645         `suite' when referring to the whole test suite.
8646         `at_last_test' is removed: m4 compute at_format itself.
8647         (at_stdout, at_stder1, at_stderr): New variables.
8648         (AT_CHECK): Use them.
8650 2001-11-13  Akim Demaille  <akim@epita.fr>
8652         * lib/autotest/general.m4 (AT_INIT): Be sure to put `.', relative,
8653         in PATH.
8654         Create `testsuite.dir/003/run' instead of `testsuite.003'.
8655         Do it as soon as a test fails, don't wait till the end of the test
8656         suite.
8657         Don't remove $as_me.[0-9]*, since these files no longer exist.
8659 2001-11-13  Akim Demaille  <akim@epita.fr>
8661         * tests/tools.at: Use absolute paths, since we are no longer run
8662         in place.
8664 2001-11-13  Akim Demaille  <akim@epita.fr>
8666         Now that tests are running in their own private dir, there is no
8667         need to list the files to remove at the end of tests groups.
8669         * lib/autotest/general.m4 (_AT_CLEANUP_FILE, AT_CLEANUP_FILES):
8670         (AT_data_files, at_data_files): Remove.
8671         (AT_CLEANUP, AT_DATA): Simplify.
8672         (AT_INIT): Adjust.
8673         Remove the group dir if !debug && !failed.
8674         * tests/atspecific.m4: Adjust.
8676 2001-11-13  Akim Demaille  <akim@epita.fr>
8678         Start a new layout for Autotest: `testsuite' creates
8679         `testsuite.dir' in which the at-check-line etc. files are to be
8680         found, and `testsuite.dir/003' where the test group 3 is run.
8682         * lib/autotest/general.m4 (AT_INIT): at_tests_dir,
8683         at_check_line_file, at_format, at_test_normalized, at_group_dir
8684         are new variables.
8685         Create the directories.
8686         Use absolute paths for at- files.
8687         (AT_CHECK): Adjust.
8689 2001-11-11  Michael Matz  <matz@kde.org>
8691         * m4sugar.m4 (_m4_foreach): Make it linear instead quadratic.
8692         (m4_car2): New.
8693         (m4_car): Properly quote arguments.
8695 2001-11-13  Akim Demaille  <akim@epita.fr>
8697         * tests/aclocal.m4 (AC_STATE_SAVE): s/LIBOBJS/LIB@&t@OBJS/ to cope
8698         with stricter rules on LIBOBJS.
8700 2001-11-12  Paul Eggert  <eggert@twinsun.com>
8702         * lib/autoconf/c.m4 (AC_C_PROTOTYPES): Define __PROTOTYPES too.
8703         * doc/autoconf.texi (C Compiler): AC_C_PROTOTYPES now defines
8704         __PROTOTYPES too.
8706 2001-11-12  Akim Demaille  <akim@epita.fr>
8708         * lib/autoconf/functions.m4 (AC_FUNC_GETMNTENT): Use AC_CHECK_FUNCS.
8710 2001-11-12  Akim Demaille  <akim@epita.fr>
8712         * lib/autoconf/c.m4, lib/autoconf/fortran.m4,
8713         * lib/autoconf/functions.m4, lib/autoconf/general.m4,
8714         * lib/autoconf/headers.m4, lib/autoconf/libs.m4,
8715         * lib/autoconf/programs.m4, lib/autoconf/specific.m4,
8716         * lib/autoconf/types.m4: When invoking AC_DEFINE and friends,
8717         specify to what the macro should be defined (typically to 1).
8719 2001-11-12  Akim Demaille  <akim@epita.fr>
8721         * lib/autoconf/functions.m4 (AC_FUNC_STRTOD): AC_SUBST POW_LIB.
8722         From Jim Meyering.
8724 2001-11-12  Akim Demaille  <akim@epita.fr>
8726         * lib/autoconf/programs.m4 (_AC_PROG_LEX_YYTEXT_DECL): Use
8727         AC_TRY_EVAL to run $LEX, not AC_TRY_COMMAND.  This validates the
8728         definition used by Automake where LEX is +/- "${missing} lex" and
8729         `missing' itself contains variables.
8731 2001-11-12  Akim Demaille  <akim@epita.fr>
8733         * lib/autotest/general.m4 (AT_INIT): Push KILL at the end.
8734         Now that M4sh pushes BODY, the comments were output at the end of
8735         the test suites.
8737 2001-11-08  Akim Demaille  <akim@epita.fr>
8739         * bin/autoreconf.in (&autoreconf): Run aclocal before tracing, so
8740         that we can trace macros from aclocal.m4.
8741         Trace AC_PROG_LIBTOOL, not AM_PROG_LIBTOOL, since the latter is
8742         obsoleted, and redirect to the former anyway.
8743         Reported by Ralf Corsepius.
8745 2001-11-08  Akim Demaille  <akim@epita.fr>
8747         * bin/autoreconf.in (&autoreconf): AC_CONFIG_SUBIDRS are to be
8748         processed only if present.
8749         * tests/torture.at (Configuring subdirectories): Use autoreconf
8750         instead of successive calls to autoconf.
8751         Add a nonexistent subdirectory to exercise the patch above.
8752         Reported by Ralf Corsepius.
8754 2001-11-08  Kevin Ryde  <user42@zip.com.au>
8756         * doc/autoconf.texi (Limitations of Usual Tools): Note HP-UX cc
8757         doesn't accept .S files.
8759 2001-11-07  Akim Demaille  <akim@epita.fr>
8761         * lib/m4sugar/m4sugar.m4 (m4_pattern_forbid): Accepts $2.
8762         * lib/autoconf/general.m4 (AC_INTI): Forbid LIBOBJS.
8763         (_AC_LIBOBJ): s/LIBOBJS/LIB@&t@OBJS/.
8764         * bin/autom4te.in (warn_forbidden): New.
8765         (handle_output): Use it.
8766         Read m4_pattern_forbid with messages.
8768 2001-11-05  Akim Demaille  <akim@epita.fr>
8770         * bin/autom4te.in (--normalize): Remove.
8771         * lib/autom4te.in: Adjust.
8773 2001-11-05  Akim Demaille  <akim@epita.fr>
8775         * tests/Makefile.am (testsuite): Rename this target as...
8776         ($(TESTSUITE)): this.
8777         From Nicolas Joly.
8779 2001-11-05  Alexandre Duret-Lutz  <duret_g@epita.fr>
8781         * lib/autoconf/status.m4 (_AC_OUTPUT_SUBDIRS): When removing
8782         the --prefix option, also remove it's argument.
8784 2001-11-05  Akim Demaille  <akim@epita.fr>
8786         * doc/autoconf.texi (testsuite Invocation): Update.
8787         (Writing testsuite.at): Update.
8789 2001-11-03  Akim Demaille  <akim@epita.fr>
8791         * doc/autoconf.texi: s/@code/@command/ where appropriate.
8793 2001-11-03  Akim Demaille  <akim@epita.fr>
8795         * lib/Autom4te/General.pm: (&catfile, &canonfile)
8796         (&file_name_is_absolute): New, wrappers around routines from
8797         File::Spec.
8798         Use and export them.
8799         (&find_configure_ac): Optionally take a directory where to look at.
8800         * bin/autoreconf.in (&parse_args): Trim the configure.ac part of
8801         the arguments.
8802         Default @ARGV to `.', not find_configure_ac.
8803         (&autoreconf): Argument is a directory.
8804         Trace AC_CONFIG_SUBDIRS and schedule the subdirs for autoreconf'ing.
8805         * doc/autoconf.texi (autoreconf Invocation): Update.
8807 2001-11-03  Akim Demaille  <akim@epita.fr>
8809         * lib/Autom4te/General.pm (@export_vars, @export_subs)
8810         (@export_forward_subs): New.
8811         Add basename, dirname, and fileparse.
8812         (@EXPORT): Adjust.
8813         * bin/autoreconf.in (&autoreconf): Fix call to fileparse.
8814         Don't look for aclocal flags if we already know aclocal is not
8815         used.
8816         Move aclocal.m4t only if it exists.
8817         Reported by Ezra Peisach.
8819 2001-11-03  Akim Demaille  <akim@epita.fr>
8821         * bin/autoreconf.in (&parse_args): Work only on the configure.ac
8822         passed on command line, defaulting to ./configure.ac if present.
8823         (&maybe_autoreconf, File::Find): Remove, unused.
8824         (&autoreconf): If autoconf is not used, don't try to trace.
8826 2001-11-02  Akim Demaille  <akim@epita.fr>
8828         * configure.ac: Bump to 2.52g.
8830 2001-11-02  Akim Demaille  <akim@epita.fr>
8832         Version 2.52f.
8834 2001-11-02  Akim Demaille  <akim@epita.fr>
8836         * config/config.guess, config/config.sub, doc/standards.texi:
8837         * config/lispdir.m4: Update from masters.
8838         * configure.ac: Bump to 2.52f.
8840 2001-11-02  Akim Demaille  <akim@epita.fr>
8842         * bin/autoreconf.in (&autoreconf): Set `$aclocal_flags' to ''.
8843         Don't run aclocal when aclocal.m4 is not from aclocal.
8844         From Ezra Peisach.
8845         Don't run libtoolize and gettextize if --install is not given.
8847 2001-11-01  Paul Eggert  <eggert@twinsun.com>
8849         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): _AS_CR_PREPARE needs to
8850         be invoked before _AS_LINENO_PREPARE.
8851         (_AS_LINENO_PREPARE): Use as_cr_digits and as_cr_alnum rather
8852         than character ranges.
8854         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Fix NLS before
8855         invoking AS_BASENAME.  Set the locale variables to 'C' if
8856         possible, as POSIX requires this to get the traditional
8857         behavior.
8858         * doc/autoconf.texi (Special Shell Variables): Describe the above.
8860 2001-10-31  Paul Eggert  <eggert@twinsun.com>
8862         * lib/m4sugar/m4sh.m4 (_AS_LINENO_WORKS): Do not surround body
8863         with {}, as that triggers a bug in Bash 2.05.
8865         (_AS_LINENO_PREPARE): Use Sed rather than
8866         Awk.  Fix the sed prepass to work even if there are multiple
8867         instances of $LINENO on the same line.  Do not substitute for
8868         other variables like $LINENOT.  Do not check file dates; such a
8869         check is unreliable on sufficiently fast machines, and removing
8870         the check makes the code simpler and more reliable.  Check for
8871         output and chmod failures.
8873         * doc/autoconf.texi (Special Shell Variables): Document
8874         the above.
8876 2001-10-31  Akim Demaille  <akim@epita.fr>
8878         * tests/Makefile.am (atconfig): Remove this target, Automake
8879         handles it now.
8881 2001-10-31  Akim Demaille  <akim@epita.fr>
8883         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): Do not
8884         AC_CONFIG_FILES(atlocal) as it means a file atlocal.in *must* be
8885         provided, while it is optional.
8886         * configure.ac: Adjust.
8888 2001-10-26  Paul Eggert  <eggert@twinsun.com>
8890         * NEWS, README, configure.ac, lib/Autom4te/General.pm,
8891           lib/Autom4te/Struct.pm:
8892         Require Perl 5.005_03 instead of just 5.005, as some tests fail
8893         with 5.005_02.
8895         * doc/autoconf.texi (Special Shell Variables): Document some
8896         more LINENO gotchas, particularly with respect to the Awk+Sed hack.
8898         * lib/m4sugar/m4sh.m4 (_AS_LINENO_WORKS): New macro.
8899         (_AS_LINENO_PREPARE): Use it instead of shell eval, since
8900         eval $LINENO is not portable in practice.
8902 2001-10-24  Akim Demaille  <akim@epita.fr>
8904         * lib/Autom4te/General.pm (backname): New.
8906 2001-10-24  Akim Demaille  <akim@epita.fr>
8908         * m4/: Remove, merged into...
8909         * config/: here.
8911 2001-10-23  Tim Van Holder  <tim.van.holder@pandora.be>
8913         * doc/autoconf.texi (Shellology): Mention the problems with bash
8914         2.05's use of ANSI quoting in its `set' builtin.
8916 2001-10-22  Paul Eggert  <eggert@twinsun.com>
8918         * lib/autoconf/functions.m4 (AC_FUNC_STRERROR_R):
8919         Rename ac_cv_func_strerror_r_works to ac_cv_func_strerror_r_char_p,
8920         and rename HAVE_WORKING_STRERROR_R to STRERROR_R_CHAR_P, since
8921         POSIX decided to standardize on the int flavor of strerror_r.
8922         Always do char* test, as there's no reason not to.
8923         Assign to a char* var, to catch strerror_r that returns int*.
8925         * doc/autoconf.texi (Particular Functions):
8926         Document the above changes.  Also, document the fact that
8927         AC_FUNC_STRERROR_R defines HAVE_DECL_STRERROR_R.
8929         * NEWS: Mention HAVE_WORKING_STRERROR_R -> STRERROR_R_CHAR_P.
8931 2001-10-20  Akim Demaille  <akim@epita.fr>
8933         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): The name of
8934         the executable was missing from the log.
8936 2001-10-20  Akim Demaille  <akim@epita.fr>
8938         * lib/Autom4te/General.pm (&update_file): If destination is
8939         unchanged, remove the source.
8940         (&up_to_date_p): Don't be verbose, be debug.
8941         * bin/autoreconf.in: No longer support --m4dir.
8942         (&autoreconf): Display the full path of the configure.ac we are
8943         studying.
8944         Trace it only once.
8945         Be sure to honor --force with gettextize.
8946         Always run aclocal.
8947         * doc/autoconf.texi: Adjust.
8949 2001-10-20  Akim Demaille  <akim@epita.fr>
8951         * bin/autoheader.in ($localdir, $m4, $SIMPLE_BACKUP_SUFFIX):
8952         Remove, dead.
8953         * bin/autoreconf.in (&autoreconf): Do not run gettextize when
8954         `intl' is already present, as it refuses unless --force.
8955         (&parse_args): Use -I, --include instead of the old Autoconf
8956         options.
8957         ($localdir, $autoconf_dir): Remove.
8958         (@include): New.
8959         (&maybe_autoreconf): New, to preserve $_ for File::Find.
8961 2001-10-19  Jens Petersen  <petersen@redhat.com>
8963         * lib/autoconf/programs.m4 (AC_PROG_AWK): Prefer gawk to mawk.
8964         * doc/autoconf.texi (Particular Programs): Likewise.
8966 2001-10-19  Akim Demaille  <akim@epita.fr>
8968         * lib/autoconf/status.m4 (_AC_OUTPUT_FILES): Name the generated
8969         file in @configure_input@.
8970         Don't mention `automatically' in addition to `generated'.
8971         * tests/torture.at (#define header templates): Adjust.
8973 2001-10-19  Akim Demaille  <akim@epita.fr>
8975         * lib/emacs/autoconf-mode.el, lib/emacs/autotest-mode.el: In a
8976         comment, explain how to install automatic mode selection.
8977         From Russ Allbery.
8979 2001-10-19  Ezra Peisach  <epeisach@zif.mit.edu>
8981         * bin/autoreconf.in (autoreconf): Display the path to the
8982         configure.ac being studied.
8984 2001-10-18  Paul Eggert  <eggert@twinsun.com>
8986         * lib/autoconf/types.m4 (AC_CHECK_SIZEOF): Cast sizeof to unsigned
8987         long, to work around a bug in the HP C compiler version HP92453-01
8988         B.11.11.23709.GP.
8990         * lib/m4sugar/m4sh.m4 (AS_DIRNAME): Use 'dirname' if that works.
8991         (AS_BASENAME_EXPR): New macro.
8992         (AS_BASENAME_SED): Do not assume GNU sed semantics.
8993         (AS_BASENAME): Use 'basename' if that works; then try 'expr';
8994         and fall back on 'sed' only if the other two fail.  This makes
8995         AS_BASENAME act more like AS_DIRNAME.
8996         (as_me): Shell-quote the argument of AS_BASENAME, in case $0
8997         contains white space.
8998         * lib/autoconf/general.m4 (_AC_INIT_SRCDIR):
8999         Use AS_DIRNAME, since I think it's now DOS-friendly.
9000         * tests/m4sh.at (DIRNAME_TEST): New arg $3.
9001         Allow "dirname //FOO" to return either / or //, as POSIX allows
9002         either behavior.
9004 2001-10-10  Akim Demaille  <akim@epita.fr>
9006         * lib/autoconf/lang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Recognize
9007         `a_out.exe' for OpenVMS 7.1, DEC C 5.5 compiler, via GNV.
9008         From Eric Sharkey.
9010 2001-10-10  Akim Demaille  <akim@epita.fr>
9012         * lib/m4sugar/m4sh.m4 (_AS_ECHO_N_PREPARE): m4_defun, not
9013         m4_define, since...
9014         (_AS_ECHO_N): AS_REQUIREs it.
9016 2001-10-10  Akim Demaille  <akim@epita.fr>
9018         * lib/autoconf/general.m4 (_AC_INCLUDES_DEFAULT_REQUIREMENTS)
9019         (AC_INCLUDES_DEFAULT): Move to...
9020         * lib/autoconf/headers.m4: here.
9021         * lib/autoconf/types.m4: Comment changes.
9022         * doc/autoconf.texi: Specify where the default includes are used
9023         in the macro prototypes.
9025 2001-10-09  Akim Demaille  <akim@epita.fr>
9027         * lib/autoconf/autoconf.m4 (m4_patsubst, m4_regexp): New
9028         transition code.
9030 2001-10-08  Akim Demaille  <akim@epita.fr>
9032         * bin/autoreconf.in (&autoreconf): Remove debugging code.
9033         (&parse_args): Pass verbosity/debugging options to subtools when
9034         --debug, not when --verbose.
9035         * lib/autom4te.in (Autoreconf-preselections): New.
9036         (Autoconf): Use it.
9038 2001-10-08  Akim Demaille  <akim@epita.fr>
9040         * bin/autoreconf.in (autoreconf): Run libtoolize when appropriate.
9042 2001-10-08  Akim Demaille  <akim@epita.fr>
9044         * doc/autoconf.texi (autoreconf Invocation): Adjust.
9045         * bin/autoreconf.in (autoreconf): Run gettextize when appropriate.
9047 2001-10-08  Akim Demaille  <akim@epita.fr>
9049         * tests/tools.at (AT_CHECK_PERL_SYNTAX): Check autoreconf.
9050         (Syntax of the shell scripts): Don't.
9051         * bin/autoheader.in, bin/autom4te.in, bin/autoreconf.in: Don't
9052         bother with $force since...
9053         * lib/Autom4te/General.pm: does.
9055 2001-10-08  Akim Demaille  <akim@epita.fr>
9057         * bin/autoreconf.in: Rewrite in Perl.
9058         * configure.ac: Adjust.
9059         * lib/Autom4te/General.pm (&up_to_date_p): New.
9060         * bin/autom4te.in (&up_to_date_p): Use it.
9061         Rename as...
9062         (&up_to_date): this.
9064 2001-10-08  Akim Demaille  <akim@epita.fr>
9066         * lib/m4sugar/m4sugar.m4 (m4_case, m4_bmatch, m4_normalize)
9067         (m4_list_cmp): Use $0 to reinvoke yourself.
9068         (m4_patsubsts): New.
9069         (m4_strip, m4_version_unletter): Use it.
9070         * tests/atspecific.m4 (AT_DATA_M4SUGAR, AT_DATA_M4SH): Likewise.
9072 2001-10-08  Akim Demaille  <akim@epita.fr>
9074         * lib/autoconf/autoconf.m4, lib/autoconf/general.m4,
9075         * lib/autoconf/libs.m4, lib/autoconf/status.m4,
9076         * lib/autoconf/types.m4, lib/autotest/general.m4,
9077         * lib/m4sugar/m4sh.m4, lib/m4sugar/m4sugar.m4, tests/atspecific.m4,
9078         * tests/torture.at: Rename m4_regexp, m4_patsubst, and m4_match to
9079         m4_bregexp, m4_bpatsubst, and m4_bmatch.
9080         * doc/autoconf.texi (Redefined M4 Macros): Adjust.
9082 2001-10-08  Akim Demaille  <akim@epita.fr>
9084         * lib/m4sugar/m4sh.m4: Use AS_REQUIRE.
9086 2001-10-08  Akim Demaille  <akim@epita.fr>
9088         * lib/m4sugar/m4sh.m4 (AS_DIRNAME_EXPR): Use AS_REQUIRE.
9089         * tests/tools.at (AT_DATA_FORBIDDEN): Rename/move/duplicate to...
9090         * tests/atspecific.m4 (AT_DATA_M4SUGAR, AT_DATA_M4SH): here.
9091         * tests/tools.at, tests/m4sh.at: Use it.
9092         * tests/m4sh.at: Don't rely on Autoconf macros.
9093         (DIRNAME_TEST): Also exercise the expr variant.
9094         * tests/m4sugar.at, tests/atspecific.m4 (AT_CHECK_M4SUGAR): The
9095         preferred M4sugar extension is now `.4s'.
9096         * tests/README: Remove.
9098 2001-10-08  Akim Demaille  <akim@epita.fr>
9100         * lib/m4sugar/m4sugar.m4 (m4_provide_ifelse): Rename as...
9101         (m4_provide_if): this.
9102         * lib/m4sugar/m4sh.m4 (AS_REQUIRE): New.
9103         * lib/autoconf/general.m4 (AS_DEFUN, AC_DEFUN_ONCE, AC_BEFORE)
9104         (AC_REQUIRE, AC_PROVIDE, AC_PROVIDE_IFELSE): Be exact copy of the
9105         M4sugar peer, i.e., drop the `AC_PROVIDE_$1' broken marker.
9107 2001-10-08  Akim Demaille  <akim@epita.fr>
9109         Use `add-log-current-defun-function' for ChangeLog creation.
9110         Suggested by Tom Tromey.
9112         * lib/emacs/autotest-mode.el (autotest-mode-map): New.
9113         (autotest-mode): Adjust.
9114         * lib/emacs/autoconf-mode.el (autoconf-mode-map): Modernize, map
9115         'comment-region onto `C-c ;'.
9116         Comments are `#', not `dnl'.
9117         (autoconf-current-defun): New.
9118         (autoconf-font-lock-keywords): Recognize `m4_defun'.
9120 2001-10-08  Akim Demaille  <akim@epita.fr>
9122         * lib/autoconf/general.m4 (_m4_divert(BODY)): Move to...
9123         * lib/m4sugar/m4sh.m4: here.
9124         (AS_INIT): Push the BODY diversion, set the #! /bin/sh line.
9125         * lib/autoconf/general.m4 (AC_PLAIN_SCRIPT) : Remove.
9126         (AT_INIT): Replace AC_PLAIN_SCRIPT with AS_INIT invocation,
9127         include handle the m4_pattern_*, no longer push the
9128         BODY diversion nor set the /bin/sh line, AS_INIT does it.
9129         * lib/autotest/general.m4 (AT_INIT): Likewise.
9130         * tests/base.at: Adjust the tests to use AS_INIT.
9131         * tests/tools.at (AT_DATA_FORBIDDEN): New.
9132         (autoconf: forbidden tokens): Adjust to work on M4sh instead of
9133         Autoconf.
9135 2001-10-07  Paul Eggert  <eggert@twinsun.com>
9137         * doc/autoconf.texi (config.status Invocation):
9138         CONFIG_SHELL defaults to a shell that supports LINENO if available.
9140         * lib/m4sugar/m4sh.m4 (_AS_LINENO_PREPARE): If the current
9141         shell does not support LINENO, and if CONFIG_SHELL is unset or
9142         empty, and if we can find a shell that does support LINENO,
9143         then set CONFIG_SHELL to that shell and then re-execute
9144         ourselves with CONFIG_SHELL.
9146 2001-10-05  Paul Eggert  <eggert@twinsun.com>
9148         * tests/Makefile.am (clean-local): Don't invoke $(TESTSUITE) if it
9149         doesn't exist.  Remove *.tmp, as a .tmp file is created during the
9150         build of $(TESTSUITE).
9152 2001-10-05  Akim Demaille  <akim@epita.fr>
9154         * lib/m4sugar/m4sh.m4 (_AS_LINENO_PREPARE): Look in the path
9155         iff we are a bareword.
9156         Reported by Raja R Harinath.
9158 2001-10-05  Akim Demaille  <akim@epita.fr>
9160         * tests/m4sh.at (LINENO): New.
9161         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Be sure to set
9162         PATH_SEPARATOR before using it.
9163         Fix the absolute path case/esac pattern.
9164         Provide $0 as fallback for as_myself.
9165         Reported by Raja R Harinath.
9167 2001-10-05  Akim Demaille  <akim@epita.fr>
9169         * Makefile.am, config/Makefile.am, lib/emacs/Makefile.am,
9170         * m4/Makefile.am, man/Makefile.am: Add/adjust MAINTAINERCLEANFILES.
9172 2001-10-05  Akim Demaille  <akim@epita.fr>
9174         * lib/m4sugar/m4sh.m4 (_AS_LINENO_PREPARE): New, extracted from...
9175         (AS_SHELL_SANITIZE): here.  Use it.
9176         (_AS_LINENO_PREPARE): Preserve the exit status of $0.lineno.
9177         From Paul Eggert.
9179 2001-10-04  Akim Demaille  <akim@epita.fr>
9181         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Use a portable
9182         combination of Awk and sed to replace $LINENO.
9184 2001-10-02  Paul Eggert  <eggert@twinsun.com>
9186         * doc/autoconf.texi (Limitations of Builtins): You can't use
9187         "source"; it's not portable.  Remove confusing and
9188         somewhat-incorrect example involving "." and "/".
9190         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): "source" -> ".", for
9191         compatibility with POSIX shells.
9193 2001-10-02  Akim Demaille  <akim@epita.fr>
9195         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Just source 40.lineno
9196         instead of exec'ing to preserve $0 and $@.
9198 2001-10-01  Akim Demaille  <akim@epita.fr>
9200         * tests/testsuite (AT_INIT) <at_pass_list>: New.
9201         Don't run twice the same test.
9203 2001-10-01  Akim Demaille  <akim@epita.fr>
9205         * lib/autotest/general.m4 (AT_INIT) <--help>: Catch up with reality.
9206         No longer output the list of tests.
9207         <--list>: New option.
9208         <--full-help>: Remove.
9209         Complete the short/long options duality.
9210         Various small adjustments.
9212 2001-10-01  Akim Demaille  <akim@epita.fr>
9214         * doc/autoconf.texi: Use @kbd for user input.
9215         Always use `$' as shell prompt.
9217 2001-09-30  Paul Eggert  <eggert@twinsun.com>
9219         * lib/autoconf/status.m4 (AC_OUTPUT_MAKE_DEFS):
9220         Don't use nested parenthesization.  This patch was originally
9221         suggested to bug-autoconf by Philippe De Muyter on 2000-05-28,
9222         but somehow it didn't get incorporated then.
9223         * doc/autoconf.texi (Limitations of Usual Tools):
9224         Clarify remark about sed and nested parenthesization.
9226         * lib/autoconf/types.m4 (AC_CHECK_SIZEOF):
9227         Report an error if the size cannot be determined even though
9228         the type exists.
9229         * lib/autoconf/general.m4 (_AC_COMPUTE_INT_COMPILE):
9230         Check for `expr' arithmetic overflow, and for compilation failure,
9231         and invoke a new argument $4 if either is discovered.
9232         This makes _AC_COMPUTE_INT_COMPILE more like _AC_COMPUTE_INT_RUN.
9233         (_AC_COMPUTE_INT): Pass IF-FAILS arg to _AC_COMPUTE_INT_COMPILE.
9235 2001-09-28  Akim Demaille  <akim@epita.fr>
9237         * lib/emacs/autoconf-mode.el, lib/emacs/autotest-mode.el: New.
9238         * m4/lispdir.m4: New.
9239         * aclocal.m4, configure.ac: Adjust.
9241 2001-09-28  Akim Demaille  <akim@epita.fr>
9243         * lib/autotest/general.m4 (AT_VICTIMS): Rename as...
9244         (AT_TESTED): this.
9245         (AT_INIT): More the wrapped section to where it will be expanded.
9246         Output `AT_tested' only when existing.
9247         Catch unexpanded PACKAGE_STRING and PACKAGE_BUGREPORT.
9249 2001-09-27  Akim Demaille  <akim@epita.fr>
9251         Fix the passing of $? to ACTION-IF-FAILED in AC_TRY_RUN, that
9252         generates too many bug reports.
9254         * lib/autoconf/general.m4 (_AC_RUN_IFELSE): Pass the right exit
9255         status when executing the ACTION-IF-FALSE.
9256         * tests/base.at (AC_TRY_*): Rename as...
9257         (AC_TRY_COMMAND): this.
9258         (AC_RUN_IFELSE): New.
9259         * tests/compile.at (Extensions, C keywords)
9260         (AC_PROG_CPP requires AC_PROG_CC, GNU Fortran 77)
9261         (Broken/missing compilers, AC_PROG_CPP with warnings)
9262         (AC_PROG_CPP without warnings, AC_PROG_CPP via CC): Move to...
9263         * tests/c.at (Extensions, C keywords)
9264         (Broken/missing compilers, AC_PROG_CPP with warnings)
9265         (AC_PROG_CPP without warnings, AC_PROG_CPP via CC)
9266         (AC_PROG_CPP requires AC_PROG_CC): here and...
9267         * tests/fortran.at (GNU Fortran 77): there.
9268         * doc/autoconf.texi (autoconf Invocation): Fix the example:
9269         AC_TRY_RUN is about compilation, not shell commands.
9270         (Test Programs): AC_TRY_RUN works as used to be advertised.
9272 2001-09-27  Akim Demaille  <akim@epita.fr>
9274         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Fix bugs spotted by
9275         Raja R Harinath:
9276         Be sure to detect when $LINENO always returns the same value.
9277         Look for the original script, basename($0) is certainly not
9278         enough.
9279         Pass the CLI arguments to `$as_me.lineno'.
9281 2001-09-25  Akim Demaille  <akim@epita.fr>
9283         * lib/autotest/general.m4 (AT_INIT): Dump the whole config.log.
9284         Be sure the close and reopen the LOG fd before and after using tee
9285         to extend the log.
9286         <at_tests_pattern>: Adjust to the new format of at_help_all.
9288 2001-09-23  Akim Demaille  <akim@epita.fr>
9290         * bin/autom4te.in (parse_args): There can be several invocations
9291         of --language now.
9293 2001-09-23  Akim Demaille  <akim@epita.fr>
9295         * doc/autoconf.texi (Top): Wrap in @ifnottex.
9297 2001-09-23  Akim Demaille  <akim@epita.fr>
9299         * lib/autoconf/status.m4 (_AC_SRCPATHS): Compute and provide
9300         ac_buildpath, ac_top_buildpath, ac_srcpath, and ac_top_srcpath.
9301         (_AC_OUTPUT_FILES): Also substitute srcpath, top_srcpath,
9302         builddir, buildpath, top_builddir, and top_buildpath.
9303         (_AC_OUTPUT_SUBDIRS): Compute the dir variables *before* changing
9304         the current directory.
9305         * lib/autoconf/general.m4 (_AC_INIT_HELP): Compute the dir
9306         variables *before* changing the current directory.
9307         Skip nonexistent dirs.
9308         * doc/autoconf.texi (Preset Output Variables): Document these
9309         variables.
9311         * lib/autotest/general.m4: Do not reset AT_victims.
9312         Don't compute at_srcdir nor at_top_srcdir.
9314         * tests/tools.at: Hence use top_srcdir.
9316         * tests/Makefile.am, tests/autoconf, tests/autoheader,
9317         * tests/autom4te, tests/autoreconf, tests/autoupdate, tests/ifnames:
9318         Remove.
9319         * tests/autoreconf.in, tests/wrappl.in, tests/autom4te.in,
9320         * tests/wrapsh.in, tests/autoupdate.in: New.
9321         * tests/Makefile.am (DISTCLEANFILES, EXTRA_DIST): Adjust.
9322         * configure.ac: Build the position independent wrappers.
9324         * man/Makefile.am: Now that test wrappers are position
9325         independent, use them and drop dark envvar magic.
9327 2001-09-23  Akim Demaille  <akim@epita.fr>
9329         * doc/autoconf.texi (Common Shell Constructs): Rename as...
9330         (Programming in M4sh): this.
9331         Promote to @section.
9333 2001-09-23  Akim Demaille  <akim@epita.fr>
9335         * lib/autotest/general.m4 (AT_INIT): Dump config.log last.
9336         Pass $at_debug_args to the rerun test suite.
9337         * lib/m4sugar/Makefile.am (DISTCLEANFILES): New.
9338         * bin/Makefile.am (ETAGS_SH): Don't use characters ranges.
9339         From Paul Eggert.
9341 2001-09-23  Akim Demaille  <akim@epita.fr>
9343         * bin/autom4te.in (@my_warning): Remove, handled by `autom4te.cfg'.
9345 2001-09-23  Akim Demaille  <akim@epita.fr>
9347         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Fix shell
9348         over-escaping.
9350 2001-09-23  Akim Demaille  <akim@epita.fr>
9352         * lib/Autom4te/General.pm (&debug): New.
9353         * bin/autom4te.in ($language): Move to...
9354         (parse_args): here.
9355         Handle --language in languages.
9356         * lib/autom4te.in (Automake-selections, Autoheader-selections)
9357         (Autoscan-selections): New.
9358         (Autoconf): Adjust.
9360 2001-09-23  Tim Van Holder  <tim.van.holder@pandora.be>
9362         * m4/auxdir.m4, m4/cond.m4, m4/depend.m4, m4/init.m4,
9363         * m4/install-sh.m4, m4/missing.m4, m4/sanity.m4, m4/strip.m4: Updated
9364         to match current versions from CVS Automake.
9366 2001-09-23  Alexandre Duret-Lutz  <duret_g@epita.fr>
9368         * doc/autoconf.texi (Special Shell Variables): Add pdksh output
9369         for $LINENO.
9371 2001-09-22  Akim Demaille  <akim@epita.fr>
9373         * lib/autoconf/autotest.m4: Create `package.m4'.
9374         * tests/Makefile.am (package.m4): Remove.
9376 2001-09-22  Akim Demaille  <akim@epita.fr>
9378         Rely on `$LINENO' when possible instead of `__oline__'.
9380         * lib/m4sugar/m4sh.m4 (AS_SHELL_SANITIZE): Provide some form of
9381         `$LINENO' support replacement when not supported.
9382         (_AS_CR_PREPARE, _AS_TR_CPP_PREPARE, _AS_TR_SH_PREPARE): Invoke
9383         them explicitly to be sure they are not output before this section
9384         (via m4_require).  Cosmetic only.
9385         * lib/autoconf/c.m4, lib/autoconf/general.m4,
9386         * lib/autoconf/programs.m4: Replace all the occurrences of
9387         `__oline__' with `$LINENO'.
9388         * doc/autoconf.texi (Special Shell Variables): Document LINENO.
9390 2001-09-21  Tim Van Holder  <tim.van.holder@pandora.be>
9392         * lib/autoconf/functions.m4 (_AC_FUNC_FORK): Replaceded an 8-bit
9393         character (u: -> ue) in a code comment.
9394         (AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK): Only run 'ln -s' if we know
9395         it works.
9397 2001-09-21  Akim Demaille  <akim@epita.fr>
9399         * Makefile.maint (AUTOM4TE): Neutralize autom4te.
9400         Suggested by Jim Meyering.
9402 2001-09-20  Tim Van Holder  <tim.van.holder@pandora.be>
9404         * lib/autoconf/programs.m4: Use extensions listed in
9405         $ac_executable_extensions when looking for programs.
9407 2001-09-20  Tim Van Holder  <tim.van.holder@pandora.be>
9409         * lib/autoconf/general.m4: Fix a small Englisho.
9410         * lib/autoconf/status.m4: Fix a small typo.  Handle DOS paths when
9411         setting up ac_dir_suffix and ac_top_builddir.
9412         * lib/m4sugar/m4sh.m4: Default CDPATH to $PATH_SEPARATOR, not ':'.
9414 2001-09-20  Tim Van Holder  <tim.van.holder@pandora.be>
9416         * doc/autoconf.texi (File System Conventions): Clarify the use of
9417         PATH_SEPARATOR.
9418         (Special Shell Variables[PATH_SEPARATOR]): Ditto.
9419         (Special Shell Variables[CDPATH]): Mention that $PATH_SEPRATOR should
9420         be used instead of ':'.
9421         * lib/autotest/general.m4: Replace occurrences of ':' in
9422         AUTOTEST_PATH with $PATH_SEPARATOR at test suite startup.
9424 2001-09-20  Tim Van Holder  <tim.van.holder@pandora.be>
9426         * tests/atgeneral.m4: Add basic support for test ranges (e.g. 7-34) as
9427         arguments.  Fixed a typo.
9429 2001-09-20  Tim Van Holder  <tim.van.holder@pandora.be>
9431         * man/Makefile.am (.x.1): Use @PATH_SEPARATOR@, not ':' to set up
9432         $PATH.  Also set AUTOM4TE_CFG, so we can process autom4te properly.
9434 2001-09-20  Tim Van Holder  <tim.van.holder@pandora.be>
9436         * bin/autoscan.in: Add 'exec-perl-if-not-run-by-perl'.
9437         * bin/autoupdate.in: Ditto.
9438         * bin/autoheader.in: Reworded a few comments.
9439         * bin/autoconf.in: Reworded help text for a few options.
9440         * bin/autoheader.in, bin/autom4te.in, bin/autoreconf.in,
9441         * bin/autoscan.in, bin/autoupdate.in: Ditto.
9443 2001-09-20  Tim Van Holder  <tim.van.holder@pandora.be>
9445         * lib/Autom4te/XFile.pm (open): Simplified the error message (we
9446         already have $file).  Set output files to binary mode (helps avoid
9447         CR issues on DOSish systems).
9449 2001-09-19  Akim Demaille  <akim@epita.fr>
9451         * lib/autotest/general.m4: Englishoes.
9452         From Tim Van Holder and Alexey Mahotkin.
9454 2001-09-18  Paul Eggert  <eggert@twinsun.com>
9456         * doc/autoconf.texi (Common Shell Constructs): New node,
9457         documenting AS_DIRNAME.
9458         (Limitations of Usual Tools): Refer to it when discussing dirname.
9459         Also, update discussion of POSIX standard to reflect latest draft.
9461         * lib/autoconf/c.m4:
9462         (AC_LANG_INT_SAVE(C)): Also support negative values, down to LONG_MIN.
9464         * lib/autoconf/general.m4 (_AC_COMPUTE_INT_COMPILE):
9465         Do not pass a first argument with leading '-'
9466         to expr, by parenthesizing initial integers that might be negative.
9468         * doc/autoconf.texi (Particular Functions): AC_FUNC_GETPGRP
9469         now merely checks whether it is an error to pass an argument
9470         to getpgrp.
9472         * lib/autoconf/functions.m4 (_AC_FUNC_GETPGRP_TEST): Remove.
9473         (AC_FUNC_GETPGRP): Don't bother with a runtime test.  Just check
9474         whether it is a (compile-time) error to pass an argument to
9475         getpgrp.  This simpler test supports the revised documentation,
9476         and is all that AC_FUNC_GETPGRP's users really need.
9478 2001-09-18  Akim Demaille  <akim@epita.fr>
9480         * doc/autoconf.texi (Limitations of Make) <$<>: New.
9482 2001-09-18  Akim Demaille  <akim@epita.fr>
9484         * doc/autoconf.texi (Limitations of Usual Tools) <find>: More about
9485         `{}'.
9486         * lib/autotest/general.m4 (AT_INIT): Adjust.
9488 2001-09-18  Paul Wagland  <paul@wagland.net>
9490         * tests/m4sh.at: Ensure that AS_DIRNAME handles '/', '//' and '///'
9491         correctly.
9492         Add test for AS_BASENAME.
9493         * lib/m4sugar/m4sh.m4: Fix AS_BASENAME so that it passes the previous
9494         added test. It now correctly handles /1/2/3/, returning '3' not ''.
9495         Added AS_BASENAME_SED to make the interface the same as AS_DIRNAME.
9496         * tests/base.at: Fixed the expected responses. The old ones were
9497         one line out...
9498         * lib/autoconf/general.m4: Fixed AC_PREFIX_PROGRAM, it now behaves as
9499         the documentation claims it should (and how it behaved in 2.13).
9501 2001-09-18  Akim Demaille  <akim@epita.fr>
9503         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): No INIT-CMDS in
9504         the AC_CONFIG_COMMANDS invocation.
9505         This also solves the name clash problems.
9506         Don't set the package's ID.
9507         * lib/m4sugar/Makefile.am (version.m4): Revamp.
9508         No longer to be shipped.
9509         (version.in): Remove.
9510         * lib/m4sugar/m4sugar.m4, lib/autoconf/general.m4,
9511         * lib/autoconf/status.m4: Adjust.
9512         Use `m4_PACKAGE_STRING'.
9513         * lib/autotest/general.m4 (AT_INIT): N-th signature change: now
9514         the only optional argument is the name of the test suite.
9515         Expect `package.m4' to define the package signature.
9516         * lib/autom4te.in (Autotest): Add `package.m4?'.
9517         * tests/Makefile.am (package.m4): New.
9518         * tests/suite.at: ifnames is a victim.
9520 2001-09-18  Akim Demaille  <akim@epita.fr>
9522         * lib/autom4te.in (Autoconf): Preselect AM_CONDITIONAL,
9523         AC_LIBSOURCE, AC_CONFIG_FILES.
9524         * lib/autotest/general.m4 (AT_INIT): Don't abort when a tested
9525         program version string doesn't match the package's.
9526         * lib/autoconf/general.m4 (AC_CACHE_VAL): Reestablish the space
9527         after `(cached)'.
9529 2001-09-17  Paul Eggert  <eggert@twinsun.com>
9531         * lib/autoconf/c.m4: (AC_LANG_INT_SAVE(C)):
9532         Allow expression to return any value that can fit into unsigned long
9533         (not int, as before).  Check for output errors.
9535 2001-09-17  Bruno Haible  <haible@ilog.fr>
9537         * lib/autoconf/c.m4: (AC_LANG_INT_SAVE(C)):
9538         Always include <stdio.h> and <stdlib.h>. Evaluate
9539         the expression in an extra function before these includes. Call
9540         fprintf "%d" only after ensuring the argument is of type 'int'.
9541         Reported by Wayne Chapeskie <waynec@spinnaker.com>.
9543 2001-09-17  Paul Eggert  <eggert@twinsun.com>
9545         Fix bug reported by Paul Townsend on AIX 4.3.3.0 with CFLAGS=-O4
9546         or CFLAGS=-O5.  In that case, the linker has a relaxed view of
9547         fatal errors, and AC_CHECK_LIB causes it to include libraries even
9548         when they don't exist.
9550         * lib/autoconf/headers.m4 (AC_HEADER_DIRENT): Use AC_SEARCH_LIBS,
9551         not AC_CHECK_LIB, so that we don't use -ldir or -lx if we don't
9552         need it.
9554         * lib/autoconf/specific.m4 (AC_ISC_POSIX): Replace the old, crufty
9555         version with the version used by fileutils 4.1, except use
9556         AC_SEARCH_LIBS, not AC_CHECK_LIB, so that we don't use -lcposix if
9557         we don't need it.
9559         * doc/autoconf.texi (AC_ISC_POSIX): Describe new behavior.
9561 2001-09-13  Akim Demaille  <akim@epita.fr>
9563         * tests/base.at, tests/m4sh.at: Be sure to issue the bangshe line
9564         _first_.
9565         Reported by Gerrit P. Haase.
9567 2001-09-13  Akim Demaille  <akim@epita.fr>
9569         * lib/autotest/general.m4 (AT_INIT): Reset `AT_victims' so that
9570         m4_defn'ing is valid.
9572 2001-09-13  Akim Demaille  <akim@epita.fr>
9574         * lib/m4sugar/m4sugar.m4 (m4_append_uniq): New.
9575         * lib/autotest/general.m4 (AT_VICTIMS, AT_KEYWORDS, _AT_CLEANUP_FILE):
9576         Use it.
9578 2001-09-13  Akim Demaille  <akim@epita.fr>
9580         * lib/m4sugar/m4sugar.m4 (_AS_QUOTE_IFELSE, _AS_BOX_INDIR): Use
9581         m4_match.
9582         (m4_re_escape): New.
9583         * lib/autoconf/status.m4 (AC_CONFIG_IF_MEMBER): Use it.
9584         * lib/autoconf/general.m4 (AC_CACHE_SAVE): Use m4_match.
9585         * lib/autoconf/status.m4 (AC_CONFIG_IF_MEMBER, AC_CONFIG_LINKS):
9586         Likewise.
9587         * lib/autoconf/types.m4 (_AC_CHECK_TYPE_REPLACEMENT_TYPE_P)
9588         (_AC_CHECK_TYPE_MAYBE_TYPE_P, AC_CHECK_MEMBER): Likewise.
9589         * lib/autotest/general.m4 (AT_INIT): Rename AT_TESTS_ALL as
9590         AT_tests_all for consistency.
9591         Set at_victims.
9592         (AT_VICTIMS): Similar to AT_KEYWORDS.
9593         (_AT_CLEANUP_FILE_IF): Use m4_match and m4_re_escape.
9595 2001-09-13  Akim Demaille  <akim@epita.fr>
9597         * lib/autotest/general.m4 (AT_INIT): Fix stupid bugs.
9599 2001-09-13  Akim Demaille  <akim@epita.fr>
9601         * lib/autotest/general.m4 (AT_INIT): Create and remove
9602         `$as_me.[0-9]+' instead of `debug-[0-9]+.sh', so that multiple
9603         test suites can cohabit.
9605 2001-09-13  Akim Demaille  <akim@epita.fr>
9607         * tests/mktests.sh: Don't output banners for empty test files.
9609 2001-09-13  Akim Demaille  <akim@epita.fr>
9611         Test suites can be run independently of configure.
9613         * lib/m4sugar/m4sh.m4 (_AS_ECHO, _AS_ECHO_N_PREPARE): New.
9614         * lib/autoconf/programs.m4 (_AC_PROG_ECHO): Remove.
9615         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Adjust: AC_SUBST
9616         ECHO_N etc.
9617         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): Don't ask for at_n
9618         and at_c.
9619         * lib/autotest/general.m4: Use ECHO_*.
9621 2001-09-13  Akim Demaille  <akim@epita.fr>
9623         * bin/ifnames.in: Rewrite in Perl.
9624         * configure.ac: Don't look for AWK.
9625         * tests/tools.at (AWK portability): Remove.
9626         (Syntax of the shell scripts): Don't check ifnames.
9627         (AT_CHECK_PERL_SYNTAX): New.
9628         (Syntax of the Perl scripts): Check ifnames.
9629         * tests/ifnames: New.
9631 2001-09-13  Akim Demaille  <akim@epita.fr>
9633         * lib/autotest/general.m4 (AT_INIT): Let --keywords also match
9634         test group titles.
9635         * tests/atspecific.m4 (AT_CHECK_AU_MACRO): AT_KEYWORDS(autoupdate).
9636         Remove all the other keywords.
9638 2001-09-10  Akim Demaille  <akim@epita.fr>
9640         * lib/autotest/general.m4 (AT_INIT): Remove the diversion HELP and
9641         SETUP: no longer used.
9642         Support -k, --keywords.
9643         <at_help>: Be `no', `short', or `long'.
9644         <at_help_all>: New variable.
9645         (AT_KEYWORDS): New.
9646         (AT_CLEANUP_FILE_IFELSE, AT_CLEANUP_FILE): Rename as...
9647         (_AT_CLEANUP_FILE_IF, _AT_CLEANUP_FILE): these.
9648         (_AT_CLEANUP_FILE_IF): Simplify the regexp.
9649         (AT_SETUP): Reset AT_line, AT_keywords, AT_description.
9650         No longer fill the HELP diversion.
9651         (AT_CLEANUP): Use them.
9652         * lib/m4sugar/m4sugar.m4 (m4_append): Support a separator.
9653         (m4_list_append): Remove.
9655         Spread a few keywords in the Autoconf test suite.
9657 2001-09-10  Akim Demaille  <akim@epita.fr>
9659         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): Don't pass
9660         PATH_SEPARATOR, let M4sh compute it.
9661         * lib/m4sugar/m4sh.m4 (_AS_PATH_SEPARATOR_PREPARE): New.
9662         * lib/autoconf/programs.m4 (AC_SHELL_PATH_WALK): Use PATH_SEPARATOR.
9663         Move to...
9664         * lib/m4sugar/m4sh.m4 (_AS_PATH_WALK): Here.
9665         Simplify when the path is not a literal.
9666         (AS_UNAME): Use it to report PATH.
9667         * lib/autoconf/general.m4 (_AC_INIT_PREPARE_FS_SEPARATORS): Remove.
9668         (_AC_INIT_DEFAULTS): AC_SUBST PATH_SEPARATOR.
9669         * lib/autoconf/programs.m4 (AC_PROG_INSTALL): Use _AS_PATH_WALK.
9670         * lib/autotest/general.m4 (AT_INIT): Use _AS_PATH_WALK to
9671         normalize the path, and to look for victims.
9672         * tests/semantics.at (AC_PATH_PROG & AC_PATH_PROGS)
9673         (AC_CHECK_PROG & AC_CHECK_PROGS): Use PATH_SEPARATOR.
9675 2001-09-07  Akim Demaille  <akim@epita.fr>
9677         * bin/autom4te.in (&handle_m4): `< /dev/null' so that GNU M4 1.5
9678         doesn't neutralize SIGINT, making autoconf etc. non interruptible.
9679         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): Move the package
9680         related variables into `at_package_*'.
9681         * lib/autotest/general.m4 (AT_VICTIMS): New.
9682         (AT_INIT): Adjust for stand-alone/embedded test suites.
9683         (AS_MESSAGE_LOG_FD): Define and use it.
9684         * tests/suite.at (AT_VICTIMS): Use it.
9685         * tests/tools.at (autoupdating AC_PREREQ): Don't depend upon
9686         at_version.
9688 2001-09-07  Akim Demaille  <akim@epita.fr>
9690         Move toward possibly stand-alone test suites.
9692         * lib/autotest/general.m4: Stop displaying srcdir everywhere as,
9693         in addition, it introduces useless differences in logs.
9694         (AT_INIT): Let atconfig and atlocal be both optional.
9695         Adjust PATH computation.
9696         * lib/m4sugar/m4sh.m4 (AS_UNAME): More readable display of PATH.
9698 2001-09-07  Akim Demaille  <akim@epita.fr>
9700         * lib/autoconf/Makefile.am (autoconf.m4f): Depends upon
9701         m4sugar/version.m4.
9703 2001-09-05  Akim Demaille  <akim@epita.fr>
9705         * lib/autoconf/c.m4 (AC_LANG_BOOL_COMPILE_TRY(C)): Use `_array_'
9706         to avoid GCC warnings.
9707         From Uwe Seimet.
9709 2001-09-05  Akim Demaille  <akim@epita.fr>
9711         * bin/autom4te.in: --language is -l, not -s.
9713 2001-09-05  Akim Demaille  <akim@epita.fr>
9715         Be ready to handle filenames as stupid as `dnl.at', for if even
9716         the maintainer is dumb enough to do that...
9718         * lib/autotest/general.m4 (AT_SETUP, AT_LINE): Demonstrates your
9719         excellence in M4 quotation: consider `__file__' is active.
9721         And BTW, when invoking m4, pass the --include in the right order:
9722         the wrong one.
9724         * bin/autom4te.in, bin/autoupdate.in: Use reverse when kingtal to
9725         4m.
9727 2001-09-05  Akim Demaille  <akim@epita.fr>
9729         * lib/Autom4te/XFile.pm: New lib file.
9730         * bin/autoupdate.in, bin/autoscan.pl, bin/autom4te.in,
9731         * bin/autoheader.in: Use it.
9733 2001-09-05  Akim Demaille  <akim@epita.fr>
9735         * bin/autoupdate.in (&handle_m4_macros) <unm4.m4>: Undefine iff
9736         defined.
9738 2001-09-05  Akim Demaille  <akim@epita.fr>
9740         * lib/Autom4te/General.pm (&getopt): Work around the `-' Getopt bug.
9741         * bin/autoheader.in, bin/autoupdate.in (&parse_args): Adjust.
9743         * bin/autoscan.in: Use `getopt' and `find_files' etc.
9744         Add -I, --include support.
9745         * doc/autoconf.texi (autoscan Invocation): Adjust.
9747 2001-09-05  Akim Demaille  <akim@epita.fr>
9749         CVS GNU M4 doesn't like `undefine(undefined)'.
9751         * bin/autoupdate.in (&handle_m4_macros, &handle_autoconf_macros):
9752         New, extracted from main.
9753         Use IO::File wherever possible.
9754         (input.m4): Be constant, use -I instead of hard coding $tmp.
9755         Therefore be a quoted heredoc.
9756         Don't invoke `_au_disable', since ac was not loaded, but just
9757         `unm4.m4'.
9759 2001-08-31  Akim Demaille  <akim@epita.fr>
9761         Version 2.52d.
9763 2001-08-31  Akim Demaille  <akim@epita.fr>
9765         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): Fix the
9766         previous patch.
9767         * tests/atspecific.m4 (AT_CHECK_AUTOHEADER): Can create `config.hin~'.
9769 2001-08-31  Akim Demaille  <akim@epita.fr>
9771         * lib/autoconf/status.m4 (_AC_OUTPUT_CONFIG_STATUS): DU 5.0 has
9772         serious problems handling heredocs in heredocs.
9773         Reported by Nicolas Joly.
9775 2001-08-31  Akim Demaille  <akim@epita.fr>
9777         * doc/autoconf.texi: Don't promote non `m4_*' M4 macros.
9778         (Making testsuite Scripts): Update.
9780 2001-08-31  Akim Demaille  <akim@epita.fr>
9782         * lib/Makefile.am (CLEANFILES): Add autom4te.cfg.
9784 2001-08-31  Akim Demaille  <akim@epita.fr>
9786         * doc/autoconf.texi (Quadrigraphs): Document `@&t@'.
9787         (testsuite Scripts): There is no such thing as `atconfig.in'.
9788         And actually one diagram is missing: test suite runtime.
9790 2001-08-31  Akim Demaille  <akim@epita.fr>
9792         * lib/Autom4te/General.pm (&find_file): Browse the includes in the
9793         inverse order.
9795 2001-08-31  Akim Demaille  <akim@epita.fr>
9797         * bin/autoupdate.in (@include): `installcheck' revealed the path
9798         to m4sugar was lacking!
9800 2001-08-31  Akim Demaille  <akim@epita.fr>
9802         * man/Makefile.am (.x.1): We really have to pass
9803         autom4te_perllibdir.
9805 2001-08-31  Akim Demaille  <akim@epita.fr>
9807         * lib/autotest/general.m4 (AT_INIT): Don't pass all the args to
9808         debug scripts, in particular passing explicitly listed tests to
9809         run is stupid.
9811 2001-08-31  Akim Demaille  <akim@epita.fr>
9813         * bin/autom4te.in (&parse_args): Strip `.' from `@include'.
9814         * bin/autoupdate.in: Use --include, -I, and --force, -f, too.
9815         Use directly autom4te, not autoconf.
9816         * tests/autoupdate: $top_srcdir/lib is needed too for melt files.
9818 2001-08-31  Akim Demaille  <akim@epita.fr>
9820         * tests/semantics.at (AC_C_BIGENDIAN): Missing eol.
9821         * bin/autoheader.in (%symbol): Strip arguments of macros.
9823 2001-08-31  Akim Demaille  <akim@epita.fr>
9825         * doc/autoconf.texi: Catch up -I, --include changes.
9827 2001-08-31  Akim Demaille  <akim@epita.fr>
9829         * bin/autom4te.in (&parse_args): Die on unknown languages.
9830         * bin/autoheader.in: Run directly autom4te --mode=autoconf, no
9831         need for autoconf.
9832         Promote --include over --macrodir and other obsolete options.
9834 2001-08-31  Akim Demaille  <akim@epita.fr>
9836         * lib/Autom4te/General.pm ($version, $help, &getopt): New.
9837         * bin/autoupdate.in, bin/autoheader.in, bin/autom4te.in: Use them.
9838         * bin/autom4te.in ($autoconf): Pass --force.
9839         `print $out' doesn't print `$_' but `$out'.
9840         * tests/tools.at (Syntax of the Perl scripts): Pass the lib dir.
9841         (autoheader): Pass --force since the test suite goes too fast for
9842         the time stamps.
9843         Adjust to the new autoheader messages.
9845 2001-08-31  Akim Demaille  <akim@epita.fr>
9847         * bin/autoheader.in: Handle the acconfig.h etc. junk files.
9848         Check the completeness of the #template.
9849         * lib/Autom4te/General.pm (&update_file): s/remove/unlink/.
9850         * tests/semantics.at (AC_C_BIGENDIAN): Adjust AT_CHECK_AUTOHEADER
9851         invocation.
9853 2001-08-31  Akim Demaille  <akim@epita.fr>
9855         * lib/Autom4te/General.pm (&find_file, &update_file): New.
9856         * bin/autoupdate.in, bin/autoheader.in: Adjust.
9857         Drop AC_MACRODIR dead for real.
9858         * tests/atspecific.m4 (AT_CHECK_AUTOHEADER): Now autoheader says
9859         `autoheader: `config.hin' is created'.
9860         * tests/tools.at (Syntax of the Perl scripts): Check autoheader.
9862 2001-08-31  Akim Demaille  <akim@epita.fr>
9864         * bin/autoheader.in: Rewrite in Perl.
9865         * tests/autoheader: Adjust.
9867 2001-08-31  Akim Demaille  <akim@epita.fr>
9869         * bin/autoconf.in (--include, -I): New option.
9870         Map --localdir, --autoconf-dir onto it.
9871         Forward autom4te's options instead of interpreting them.
9872         * bin/autoconf.in, bin/autoheader.in (AC_MACRODIR, autoconf_dir):
9873         There is no such envvar since the inception of autom4te.cfg.
9874         * bin/autom4te.in (&parse_args): Uniquify `@include'.
9875         * bin/autoupdate.in: Adjust, and perform more control.
9876         * tests/atspecific.m4 (AT_CHECK_AUTOCONF): Adjust.
9877         * tests/autoconf: Dittowise.
9879 2001-08-31  Akim Demaille  <akim@epita.fr>
9881         * bin/autoconf.in: Don't bother with `acsite.m4' and `aclocal.m4'.
9882         * bin/autom4te.in (&find_file): Support `FILE?' standing for
9883         optionally `FILE'.
9884         Use -e, not -f, since /dev/null for instance is OK.
9885         (&parse_args): Adjust.
9886         * lib/autom4te.in (Autoconf): Add `acsite.m4?' and `aclocal.m4?'.
9888 2001-08-31  Akim Demaille  <akim@epita.fr>
9890         * configure.ac: Also find tested executables in bin.
9891         * bin/autoconf.in, bin/autoheader.in, bin/autoreconf.in,
9892         * bin/autoscan.in, autoupdate.in: Use exclusively the name of the
9893         installed peer executables, only PATH is allowed to resolve it.
9894         Pass `autoconf_dir' via options, not via invisible envvars.
9895         * lib/Autom4te/General.pm (&find_peer): Remove.
9896         * lib/autotest/general.m4 (AT_INIT): `AUTOTEST_PATH=a:b' gives
9897         `abuild:asrc:bbuild:bsrc', not `abuild:bbuild:asrc:bsrc'.
9898         * man/Makefile.am: Let help2man rely on PATH instead of trying to
9899         find the executables for it.
9900         * tests/Makefile.am: Major cleanup.  Too lazy to document...
9901         * tests/atlocal.in: Remove all the obscure envvar manipulations.
9902         We only need PERL.
9903         * tests/atspecific.m4, tests/tools.at: Passing --localdir is
9904         indeed related to running the test suite, while passing
9905         --autoconf-dir and others is related to running non installed
9906         Autoconf executables.  So don't do that, leave it to...
9907         * tests/autoconf, tests/autoheader, tests/autom4te, tests/autoupdate,
9908         * tests/autoscan: New.
9909         * tests/atspecific.m4 (AT_CHECK_M4SUGAR, AT_CHECK_M4SH): Don't
9910         refer to library files: rely on --language.
9912 2001-08-29  Akim Demaille  <akim@epita.fr>
9914         * bin/autom4te.in, lib/autom4te.in, bin/autoconf.in:
9915         s/--set/--language/.
9917 2001-08-29  Akim Demaille  <akim@epita.fr>
9919         * doc/autoconf.texi: Strip the @nodes.
9920         Suggested by Paul Eggert.
9921         (Initializing configure): Typo.
9923 2001-08-29  Akim Demaille  <akim@epita.fr>
9925         * bin/autom4te.in (&handle_output): s/@__@/@&t@/.
9926         Suggested by Paul Eggert.
9928 2001-08-29  Akim Demaille  <akim@epita.fr>
9930         * Makefile.maint (do-po-update): Wget refuses to overwrite files:
9931         download in a tmp dir.
9933 2001-08-29  Akim Demaille  <akim@epita.fr>
9935         * lib/autotest/general.m4: s/AT-devnull/devnull/ since there are
9936         case insensitive OSes out there :(
9937         From Tim Van Holder.
9939 2001-08-29  Akim Demaille  <akim@epita.fr>
9941         * lib/autom4te.in: New.
9942         * lib/Makefile.am (edit, autom4te.cfg): New.
9943         * bin/autom4te.in (BEGIN): Simplify.
9944         Rely on `AC_MACRODIR' in addition of `autom4te_perllibdir'.
9945         (&load_configuration): New.  Use it.
9946         (&parse_args): Support --mode, --set, and --melt.
9947         * bin/autoconf.in: Simplify and adjust.
9948         * tests/Makefile.am (AUTOMAKE): Use --set.
9949         * tests/atlocal.in: Adjust.
9950         * BUGS: distcheck and check are weak.
9952 2001-08-29  Akim Demaille  <akim@epita.fr>
9954         * lib/autotest/general.m4: Use
9955                 foo=`(command) 2>/dev/null`
9956         not
9957                 foo=`command` 2>/dev/null
9958         (at-devnull): Rename as...
9959         (AT-devnull): this.
9960         (--clean): Remove AT-* files too.
9961         * doc/autoconf.texi (Limitations of Usual Tools): Document `date'.
9962         Reported by Nicolas Joly.
9964 2001-08-28  Akim Demaille  <akim@epita.fr>
9966         * lib/autoconf/general.m4 (_AC_INIT_PREPARE): Don't use single
9967         quotes inside single quotes.
9968         Reported by Nicolas Joly.
9970 2001-08-28  Kevin Ryde  <user42@zip.com.au>
9972         * doc/autoconf.texi (Function Portability): Mention C right shifts.
9974 2001-08-27  Tim Van Holder  <tim.van.holder@pandora.be>
9976         * lib/autotest/general.m4: Reword some messages.
9977         (AT_INIT): Check for the `times' builtin before using it.
9978         Support test ranges as arguments to the testsuite.
9979         Have -e imply -d as the help text suggested.
9981 2001-08-27  Akim Demaille  <akim@epita.fr>
9983         * Makefile.maint: Formatting changes.
9984         (do-po-update, po-update, cvs-update, update): New targets.
9985         (AMTAR): Remove.
9987 2001-08-27  Akim Demaille  <akim@epita.fr>
9989         * lib/autotest/general.m4 (AT_INIT) <at_cmd_line>: Remove.
9990         <at_cmd_line>: New.
9991         Pass it to debug-*.sh scripts.
9992         <AUTOTEST_PATH>: May contain absolute dir names.
9994 2001-08-27  Akim Demaille  <akim@epita.fr>
9996         * lib/autotest/general.m4 (AT_INIT): Log the command line.
9997         Support `VAR=VAL' as arguments.
9998         Compute PATH _after_ the options processing, so that AUTOTEST_PATH
9999         may be set via the command line.
10001 2001-08-27  Akim Demaille  <akim@epita.fr>
10003         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): $2 defaults to $1.
10004         * lib/autotest/autotest.m4 (AT_INIT): Expand AUTOTEST_PATH into
10005         first the build dirs, then the src dirs.
10006         * configure.ac (AC_CONFIG_TESTDIR): Adjust.
10008 2001-08-27  Akim Demaille  <akim@epita.fr>
10010         * lib/autotest/general.m4 (AT_INIT): Output the definition of
10011         at_data_files earlier.
10012         (--clean, -c): New option.
10013         * tests/Makefile.am: Use this option.
10015 2001-08-27  Akim Demaille  <akim@epita.fr>
10017         * lib/autoconf/status.m4 (_AC_SRCPATHS): Rename `ac_dots' as
10018         `ac_top_builddir' to mimic Automake's vocabulary, which much more
10019         readable.
10020         Adjust callers.
10021         * doc/autoconf.texi (Configuration Actions): Document the vars
10022         available in commands.
10023         Emphasize the risks of collisions in init-cmds.
10025 2001-08-27  Akim Demaille  <akim@epita.fr>
10027         * doc/autoconf.texi (Input) <AC_INIT>: Move to..
10028         (Initializing configure): this new node.
10030 2001-08-27  Akim Demaille  <akim@epita.fr>
10032         * Makefile.am (EXTRA_DIST): INSTALL.txt is a dead hack.
10034 2001-08-27  Akim Demaille  <akim@epita.fr>
10036         * m4/atconfig.m4 (AT_CONFIG): Remove, replaced by...
10037         * lib/autoconf/autotest.m4 (AC_CONFIG_TESTDIR): this.
10038         New file.
10039         * m4/Makefile.am (EXTRA_DIST): Oops, adjust...
10041 2001-08-27  Akim Demaille  <akim@epita.fr>
10043         * lib/autoconf/general.m4 (AU_DEFINE, AU_DEFUN, AU_ALIAS): Move
10044         to...
10045         * lib/autoconf/autoheader.m4: this new file.
10046         * lib/autoconf/general.m4 (AH_OUTPUT, AH_VERBATIM)
10047         (_AH_VERBATIM_OLD, AH_TEMPLATE, _AH_TEMPLATE_OLD, AH_TOP, AH_BOTTOM):
10048         Move to...
10049         * lib/autoconf/autoupdate.m4: this new file.
10051 2001-08-27  Akim Demaille  <akim@epita.fr>
10053         * lib/autoconf/status.m4 (_AC_SRCPATHS): New.
10054         (_AC_OUTPUT_LINKS, _AC_OUTPUT_FILES, _AC_OUTPUT_SUBDIRS): Use it.
10055         Standardize the var names (ac_sub_srcdir -> ac_srcdir, ac_subdir
10056         -> ac_dir).
10057         (_AC_OUTPUT_HEADERS): AS_DIRNAME always return a dir name.
10058         * lib/autoconf/general.m4 (_AC_INIT_HELP): Ditto.
10060 2001-08-27  Akim Demaille  <akim@epita.fr>
10062         * lib/autoconf/autoconf.m4 (AC_CONFIG_COMMANDS)
10063         (AC_CONFIG_COMMANDS_POST, AC_CONFIG_COMMANDS_PRE, AC_CONFIG_FILES)
10064         (AC_CONFIG_HEADER, AC_CONFIG_HEADERS, AC_CONFIG_IF_MEMBER)
10065         (AC_CONFIG_LINKS, AC_CONFIG_SUBDIRS, AC_FILE_DEPENDENCY_TRACE)
10066         (AC_LINK_FILES, AC_LIST_COMMANDS, AC_LIST_COMMANDS_COMMANDS)
10067         (AC_LIST_FILES, AC_LIST_FILES_COMMANDS, AC_LIST_HEADERS)
10068         (AC_LIST_HEADERS_COMMANDS, AC_LIST_LINKS, AC_LIST_LINKS_COMMANDS)
10069         (AC_OUTPUT, AC_OUTPUT_COMMANDS, AC_OUTPUT_COMMANDS_POST)
10070         (AC_OUTPUT_COMMANDS_PRE, AC_OUTPUT_MAKE_DEFS)
10071         (_AC_CONFIG_COMMANDS_INIT, _AC_CONFIG_DEPENDENCIES)
10072         (_AC_CONFIG_DEPENDENCY, _AC_CONFIG_UNIQUE, _AC_LINK_FILES_CNT)
10073         (_AC_LIST_SUBDIRS, _AC_OUTPUT_COMMANDS, _AC_OUTPUT_COMMANDS_CNT)
10074         (_AC_OUTPUT_COMMANDS_INIT, _AC_OUTPUT_CONFIG_STATUS)
10075         (_AC_OUTPUT_FILES, _AC_OUTPUT_HEADERS, _AC_OUTPUT_LINKS)
10076         (_AC_OUTPUT_SUBDIRS): Move to...
10077         * lib/autoconf/status.m4: this new file.
10078         * lib/autoconf/general.m4, lib/autoconf/Makefile.am: Adjust.
10079         * tests/Makefile.am, tests/suite.at: Adjust.
10081 2001-08-27  Akim Demaille  <akim@epita.fr>
10083         Automake 1.5.
10085         * Makefile.am (AUTOMAKE_OPTIONS): Add 1.5 and dist-bzip2.
10086         (AMTAR): Help automake define it.
10087         (INSTALL, install-data-hook): The INSTALL.txt trick is no longer
10088         needed, 1.5 can have a macro and a target with the same name.
10089         * m4/auxdir.m4, m4/cond.m4, m4/depend.m4, m4/install-sh.m4,
10090         * m4/strip.m4: New.
10091         * m4/init.m4, m4/sanity.m4: Update.
10092         * doc/Makefile.am (CLEANFILES): 1.5 knows the texi2dvi files.
10093         * lib/autoconf/Makefile.am, lib/autotest/Makefile.am,
10094         * lib/m4sugar/Makefile.am, lib/autoscan/Makefile.am,
10095         * lib/Autom4te/Makefile.am, man/Makefile.am: Use dist/nodist.
10097 2001-08-27  Akim Demaille  <akim@epita.fr>
10099         Provide a mean to ``AC_PREREQ'' for M4sugar, M4sh and Autotest.
10101         * lib/autoconf/version.in: Remove.
10102         * lib/m4sugar/version.in: New.
10103         * lib/m4sugar/m4sugar.m4 (m4_acversion, m4_version_prereq): New.
10104         Adjust callers.
10105         * bin/autoupdate.in: Distinguish M4sugar vs. Autoconf macros by
10106         the name of the directory they're in, instead of the filename,
10107         since version.m4 is now in m4sugar, but m4_acversion must not be
10108         classified as an Autoconf macro.
10109         ($input_m4): Don't qualify the path to m4sugar.
10110         Rather, pass autoconf_dir to m4.
10111         * tests/Makefile.am (testsuite): Remove -I top_srcdir, unneeded.
10112         * tests/suite.at: Require 2.52c.
10114 2001-08-27  Akim Demaille  <akim@epita.fr>
10116         testsuite.log should include config.log.
10118         * lib/autotest/autotest.m4: New.
10119         * lib/autotest/general.m4, tests/atspecific.m4: Adjust.
10120         * tests/suite.at : Adjust.
10121         (AT_INIT): Log config.log.
10122         * lib/m4sugar/m4sugar.m4 (m4_text_box): New.
10123         * lib/m4sugar/m4sh.m4 (_AS_BOX_LITERAL): Adjust.
10124         * lib/autoconf/general.m4 (_AC_INIT_CONFIG_LOG): Use them.
10125         (_AC_INIT_PREPARE): Fix the incredibly messy and buggy completion
10126         of config.log on traps.
10127         (_AC_OUTPUT_CONFIG_STATUS): Use AS_BOX.
10128         Use consistently `_ACEOF' for configure's here docs, and `_CSEOF'
10129         for config.status'.
10130         Open the log as soon as possible.
10131         Use the same log introduction as configure's.
10133 2001-08-22  Paul Eggert  <eggert@twinsun.com>
10135         * doc/autoconf.texi (Indices): New node.
10136         Move indices out of the top level menu and into this submenu.
10138 2001-08-22  Akim Demaille  <akim@epita.fr>
10140         * lib/autoconf/programs.m4 (_AC_PROG_LEX_YYTEXT_DECL): Use
10141         AC_TRY_COMMAND.
10142         (AC_DECL_YYTEXT): Fix the previous patch: it points to AC_PROG_LEX.
10144 2001-08-22  Akim Demaille  <akim@epita.fr>
10146         * lib/autoconf/general.m4 (AC_SHELL_PATH_WALK, AC_CHECK_PROG)
10147         (AC_CHECK_PROGS, AC_PATH_PROG, AC_PATH_PROGS, AC_CHECK_TOOL_PREFIX)
10148         (AC_PATH_TOOL, AC_CHECK_TOOL, AC_CHECK_TOOLS): Move to...
10149         * lib/autoconf/programs.m4: here.
10150         * lib/autoconf/specific.m4 (_AC_PROG_ECHO, AC_PROG_MAKE_SET)
10151         (AC_PROG_RANLIB, AC_PROG_YACC, AC_PROG_LEX, _AC_DECL_YYTEXT)
10152         (AC_PROG_INSTALL, AC_PROG_LN_S, AC_RSH): Move to...
10153         * lib/autoconf/programs.m4: here.
10154         (_AC_DECL_YYTEXT): Rename as...
10155         (_AC_PROG_LEX_YYTEXT_DECL): this.
10156         * lib/autoconf/autoconf.m4, lib/autoconf/Makefile.am
10157         * tests/Makefile.am, tests/suite.am: Adjust.
10159 2001-08-22  Akim Demaille  <akim@epita.fr>
10161         * lib/autoconf/general.m4 (AC_LIST_MEMBER_OF, AC_LINKER_OPTION):
10162         Move to...
10163         * lib/autoconf/fortran.m4 (_AC_LIST_MEMBER_IF, _AC_LINKER_OPTION):
10164         here.
10165         * lib/autoconf/general.m4 (AC_TRY_LINK_FUNC): Move to...
10166         * lib/autoconf/functions.m4: here.
10167         * lib/autoconf/general.m4 (AC_SEARCH_LIBS, AC_CHECK_LIB)
10168         (AH_CHECK_LIB): Move to...
10169         * lib/autoconf/libs: this new file.
10170         * lib/autoconf/specific.m4 (_AC_PATH_X_XMKMF, _AC_PATH_X_DIRECT)
10171         (_AC_PATH_X, AC_PATH_X, AC_PATH_XTRA): Move to...
10172         * lib/autoconf/libs.m4: here.
10173         * lib/autoconf/autoconf.m4, lib/autoconf/Makefile.am: Adjust.
10175 2001-08-22  Akim Demaille  <akim@epita.fr>
10177         * lib/m4sugar/m4sh.m4 (AS_MKDIR_P): Fail if fails.
10178         * lib/autoconf/general.m4 (_AC_OUTPUT_SUBDIRS): Adjust.
10179         (AC_SITE_LOAD): Better logging of config.site.
10181 2001-08-20  Akim Demaille  <akim@epita.fr>
10183         * configure.ac (AT_CONFIG): Fix the path.
10184         * m4/atconfig.m4 (AT_CONFIG): Don't use EOF but ATEOF so that 2.52
10185         can be used.
10187 2001-08-20  Alexandre Duret-Lutz  <duret_g@epita.fr>
10189         * lib/autoconf/c.m4 (AC_C_BIGENDIAN): Prepare the cross-compile
10190         program with AC_LANG_PROGRAM before feeding it to
10191         AC_COMPILE_IFELSE.  Cleanup grep usage.
10193 2001-08-20  Akim Demaille  <akim@epita.fr>
10195         * ChangeLog, ChangeLog.0, ChangeLog.1, ChangeLog.2, AUTHORS, BUGS,
10196         * NEWS, README, README-alpha, TODO, tests/README: This package is
10197         `Autoconf', not `autoconf' (the executable).
10199 2001-08-20  Akim Demaille  <akim@epita.fr>
10201         Info readers seem to need `Index' in the index node title :(
10203         * doc/autoconf.texi: Reverse the 2001-08-15 change which
10204         simplified index node names.
10206 2001-08-20  Akim Demaille  <akim@epita.fr>
10208         * lib/autoconf/general.m4 (_AC_INIT_PACKAGE): Warn if the
10209         arguments are not literals.
10210         * doc/autoconf.texi (Input) <AC_INIT>: Arguments must be literals.
10211         Specify the output variables, and macros defined.
10213 2001-08-20  Akim Demaille  <akim@epita.fr>
10215         * doc/autoconf.texi (Examining Declarations) <AC_TRY_CPP>:
10216         (Examining Syntax) <AC_TRY_COMPILE>
10217         (Examining Libraries) <AC_TRY_LINK>
10218         (Test Programs) <AC_TRY_RUN>: These macros double quote some of
10219         their arguments.
10220         Reported by Werner Lemberg.
10222 2001-08-20  Akim Demaille  <akim@epita.fr>
10224         * lib/autotest/general.m4 (AT_INIT): Compute top_builddir,
10225         top_srcdir and srcdir from at_topbuild_2_topsrc and at_testdir.
10226         Load atlocal late enough to dump it in the log.
10227         * m4/atconfig.m4 (AT_CONFIG): Pass them to atconfig.
10229 2001-08-20  Akim Demaille  <akim@epita.fr>
10231         * tests/torture.at (Configuring subdirectories): New test.
10232         * lib/autoconf/general.m4 (_AC_INIT_SRCDIR): Say what you are
10233         looking for.
10234         * m4/atconfig.m4: Be sure the let $[0] be expandable.
10235         (top_srcdir): Fix its computation.
10237 2001-08-20  Akim Demaille  <akim@epita.fr>
10239         * lib/autoconf/general.m4 (_AC_OUTPUT_COMMANDS): Say what you do.
10240         * m4/atconfig.m4 (AT_CONFIG): $1 is now the directory where the
10241         test suite lives.
10242         Create `atconfig' automagically.
10243         Configure atlocal.in if present.
10244         * tests/atconfig.in: Remove.
10245         * tests/atlocal.in: New.
10246         * tests/Makefile.am: Adjust.
10248 2001-08-20  Akim Demaille  <akim@epita.fr>
10250         Huh!?!?!  There are still some user EOF tags used, which prevents
10251         their use in AC_CONFIG_COMMANDS for instance...
10253         * lib/autoconf/general.m4, lib/autoconf/specific.m4,
10254         * lib/autotest/general.m4: Rename the EOF tags as `_ACEOF',
10255         `_CSEOF', or `_ATEOF', as appropriate.
10256         * lib/m4sugar/Makefile.am, lib/autoconf/Makefile.am,
10257         * lib/autotest/Makefile.am (check-local): Enforce this constraint.
10259 2001-08-20  Akim Demaille  <akim@epita.fr>
10261         * tests/base.at, tests/m4sh.at, tests/m4sugar.at,
10262         * tests/semantics.at, tests/tools.at, tests/torture.at:
10263         s/^AT_DATA\(([^][]+),/AT_DATA([$1],/.
10265 2001-08-20  Akim Demaille  <akim@epita.fr>
10267         Autotest invokes M4sh's initialization.
10269         * lib/autotest/general.m4: Adjust the diversion names.
10270         (AT_INIT): Run AS_INIT.
10271         Use the BINSH diversion to invoke /bin/sh.
10272         * tests/base.at, tests/m4sh.at, tests/m4sugar.at, tests/tools.at:
10273         * tests/torture.at: Respect M4sugar and M4sh macro name spaces.
10275 2001-08-20  Akim Demaille  <akim@epita.fr>
10277         Let M4sh have its own diversions.
10279         * lib/autoconf/general.m4 (_m4_divert(BINSH), _m4_divert(REVISION))
10280         (_m4_divert(NOTICE)): Rename as...
10281         * lib/m4sugar/m4msh.m4 (_m4_divert(BINSH), _m4_divert(HEADER-REVISION))
10282         (_m4_divert(HEADER-COMMENT)): these.
10283         (_m4_divert(HEADER-COPYRIGHT), _m4_divert(HEADER-COPYRIGHT)): New.
10284         (_m4_divert(NOTICE)): New, for Libtool.
10285         * lib/autoconf/general.m4 (_m4_divert(PREPARE)): Remove, replaced
10286         long ago with `_m4_divert(GROW)'.
10287         (AC_COPYRIGHT, AC_REVISION, _AC_INIT_NOTICE): Adjust.
10289 2001-08-20  Akim Demaille  <akim@epita.fr>
10291         * tests/base.at, tests/compile.at, tests/foreign.at,
10292         * tests/m4sh.at, tests/m4sugar.at, tests/mktests.sh,
10293         * tests/semantics.at, tests/suite.at, tests/tools.at,
10294         * tests/torture.at: Ask Autotest mode, not Autoconf mode.
10296 2001-08-20  Akim Demaille  <akim@epita.fr>
10298         * bin/autom4te.in (handle_output): Handle @__@.
10300 2001-08-20  Akim Demaille  <akim@epita.fr>
10302         * lib/autoconf/autoconf.m4, lib/autoconf/oldnames.m4,
10303         * lib/autotest/general.m4: Adjust the license.
10305 2001-08-17  Paul Eggert  <eggert@twinsun.com>
10307         * doc/autoconf.texi (Function Portability): Mention snprintf,
10308         following up on a suggestion by Kevin Ryde.
10310 2001-08-17  Akim Demaille  <akim@epita.fr>
10312         * doc/install.texi, doc/autoconf.texi: Use `autoconf', not
10313         `autoconf_manual', as texinfo.tex 2001-06-21.10 chokes on it.
10315 2001-08-17  Akim Demaille  <akim@epita.fr>
10317         * lib/autotest/general.m4 (AT_INIT): Refer to `$as_me.log', not
10318         `$0.log' as for projects where testsuite is in src, we'd have
10319         testsuite.log created in src.
10321 2001-08-17  Akim Demaille  <akim@epita.fr>
10323         * bin/autom4te.in (&parse_args): Recognize --normalize.
10325 2001-08-17  Akim Demaille  <akim@epita.fr>
10327         Start implementing the AC_CHECK_HEADER transition scheme.
10329         * lib/autoconf/headers.m4 (_AC_CHECK_HEADER_NEW)
10330         (_AC_CHECK_HEADER_OLD, _AC_CHECK_HEADER_MONGREL): New.
10331         (AC_CHECK_HEADER): Use them.
10333 2001-08-17  Akim Demaille  <akim@epita.fr>
10335         * doc/autoconf.texi: Work around Texinfo buglets.
10336         (Transformation Rules): One example is enough, users are expected
10337         to have their brains on. And BTW, use DESTDIR.
10338         (dvar): New macro.  Use it.
10340 2001-08-17  Akim Demaille  <akim@epita.fr>
10342         * doc/autoconf.texi (Writing testsuite.at) <AT_CHECK>: Complete.
10343         * lib/autotest/general.m4 (AT_INIT): Use the relative dir when
10344         looking for ChangeLogs.
10346 2001-08-17  Akim Demaille  <akim@epita.fr>
10348         * bin/autom4te.in: --normalize is a new option.
10349         * bin/autoconf.in: Use it.
10351 2001-08-17  Akim Demaille  <akim@epita.fr>
10353         * bin/Makefile.am, lib/Autom4te/Makefile.am, lib/autoconf/Makefile.am
10354         * lib/autotest/Makefile.am, lib/m4sugar/Makefile.am: Add TAGS support.
10356 2001-08-16  Paul Eggert  <eggert@twinsun.com>
10358         * doc/autoconf.texi, doc/install.texi: Put copyright notice at
10359         start, not at end.
10361 2001-08-15  Akim Demaille  <akim@epita.fr>
10363         * doc/Makefile.am (fu): New index, can't use fn because of defmac.
10364         Use it.
10366 2001-08-15  Akim Demaille  <akim@epita.fr>
10368         * doc/autoconf.texi (pr): New index.
10369         (prindex, findex): Use, merge, and output them.
10370         (Environment Variable Index, Output Variable Index)
10371         (Preprocessor Symbol Index, Autoconf Macro Index, M4 Macro Index)
10372         (Autotest Macro Index): Rename as...
10373         (Environment Variables, Output Variables,Preprocessor Symbols)
10374         (Autoconf Macros, M4 Macros, Autotest Macros): these.
10375         * doc/install.texi: Use @command.
10376         (Environment Variables): Rename as...
10377         (Defining Variables): this.
10379 2001-08-15  Akim Demaille  <akim@epita.fr>
10381         * doc/autoconf.texi (Function Portability): sprintf's return
10382         value.
10383         From Kevin Ryde.
10385 2001-08-15  Akim Demaille  <akim@epita.fr>
10387         * Makefile.maint (CVS): New.
10388         (local-check): Run changelog-check. last.
10389         (alpha): Don't depend upon local-check, since...
10390         (cvs-dist): depends upon it.
10392 2001-08-15  Tim Van Holder  <tim.van.holder@pandora.be>
10394         * tests/Makefile.am: Use a clean-local rule to remove
10395         autom4te.cache (it's a directory, not a file.
10396         * Makefile.am: Ditto (but maintainer-clean-local).
10398 2001-08-15  Akim Demaille  <akim@epita.fr>
10400         * bin/autom4te.in (@m4_warning): New.
10401         (&handle_m4): Use it.
10402         * tests/m4sugar.at (m4_warn): Pass `-f' to autom4te to ensure the
10403         warnings are issued at each run.
10404         * tests/atspecific.m4 (AT_CHECK_M4SUGAR, AT_CHECK_M4SH): M4sugar
10405         is in the src tree.
10407 2001-08-15  Akim Demaille  <akim@epita.fr>
10409         * tests/atspecific.m4 (AT_CHECK_AUTOUPDATE): Perl is now required:
10410         don't waste time running `autoupdate --version' works.
10411         * tests/tools.at (autoupdating AC_PREREQ): Likewise.
10413 2001-08-13  Akim Demaille  <akim@epita.fr>
10415         * doc/autoconf.texi (ma): Rename this index as...
10416         (ac): this.
10418 2001-08-13  Akim Demaille  <akim@epita.fr>
10420         * Makefile.am: Remove dead code and dead comments.
10421         (pdf, html): New targets.
10422         * doc/autoconf.texi (Using Autotest): New chapter.
10423         * doc/Makefile.am (pdf): New targets.
10424         (CLEANFILES): Adjust.
10426 2001-08-13  Akim Demaille  <akim@epita.fr>
10428         * lib/autotest/general.m4 (AT_INIT): Log the start/stop dates and
10429         duration of the test suite.
10431 2001-08-12  Alexandre Duret-Lutz  <duret_g@epita.fr>
10433         * tests/semantics.at (AC_C_BIGENDIAN): Explicitelly save and load
10434         endianness for comparison instead of relying on AT_CHECK_ENV.
10436 2001-08-11  Paul Eggert  <eggert@twinsun.com>
10438         * doc/autoconf.texi, doc/install.texi: Add a copyright notice
10439         to the INSTALL file.
10441 2001-08-11  Paul Eggert  <eggert@twinsun.com>
10443         * NEWS: The autoconf manual now is distributed under the terms
10444         of the GNU Free Documentation License.
10446         * doc/autoconf.texi: Switch from old style copyright notice to FDL.
10447         Add an appendix "Copying This Manual" for the FDL.
10449         * doc/fdl.texi: New file, from
10450         <http://www.gnu.org/licenses/fdl.texi>.
10452         * doc/Makefile.am (autoconf_TEXINFOS): Add fdl.texi.
10454 2001-08-10  Paul Eggert  <eggert@twinsun.com>
10456         * AUTHORS, BUGS, ChangeLog, ChangeLog.0, ChangeLog.1,
10457         ChangeLog.2, GNUmakefile, Makefile.maint, NEWS, README,
10458         README-alpha, TODO, configure.ac, lib/autoconf/Makefile.am,
10459         m4/atconfig.m4, m4/init.m4, m4/m4.m4, m4/missing.m4,
10460         m4/sanity.m4, tests/README, tests/aclocal.m4,
10461         tests/atspecific.m4, tests/base.at, tests/compile.at,
10462         tests/foreign.at, tests/m4sh.at, tests/m4sugar.at,
10463         tests/semantics.at, tests/suite.at, tests/tools.at,
10464         tests/torture.at: Add copyright notice.
10466         * tests/mktests.sh: Update year in copyright notice.
10468 2001-08-12  Alexandre Duret-Lutz  <duret_g@epita.fr>
10470         * tests/semantics.at (AC_C_BIGENDIAN): New test.
10472 2001-08-11  Alexandre Duret-Lutz  <duret_g@epita.fr>
10474         * lib/autoconf/c.m4 (AC_C_BIGENDIAN): Handle ACTION-IF-TRUE,
10475         ACTION-IF-FALSE, and ACTION-IF-UNKNOWN.
10476         * doc/autoconf.texi (C Compiler Characteristics): Update
10477         documentation for AC_C_BIGENDIAN.
10479 2001-08-11  Alexandre Duret-Lutz  <duret_g@epita.fr>
10481         * lib/autoconf/c.m4 (AC_C_BIGENDIAN): Guess endianness by grep'ing
10482         magic values from an object file when cross-compiling.
10483         Based on code by Guido Draheim <Guido.Draheim@gmx.de>.
10485 2001-08-10  Akim Demaille  <akim@epita.fr>
10487         * bin/autom4te.in (&handle_output): Don't use `grep' with side
10488         effects.
10489         Suggested by Russ Allbery.
10491 2001-08-10  Ralf Corsepius  <corsepiu@faw.uni-ulm.de>
10493         * lib/autoconf/general.m4 (_AC_OUTPUT_SUBDIRS): Propagate the
10494         current $prefix to the sub-configures.
10496 2001-08-09  Tim Van Holder  <tim.van.holder@pandora.be>
10498         * lib/autoconf/lang.m4: Ignore *.xSYM when looking for an executable
10499         extension (needed on BeOS).  Reported by Guido van Rossum.
10501 2001-08-09  Akim Demaille  <akim@epita.fr>
10503         * bin/autom4te.in ($icache): Load it only if older than autom4te.
10505 2001-08-07  Akim Demaille  <akim@epita.fr>
10507         * lib/autotest/general.m4 (AT_INIT): All the `at-*' are to be
10508         removed.
10509         (at-setup-line): Huh?  Be a variable `at_setup_line', not a file.
10510         No need to remove the files before and after the each test, before
10511         each test and at the end of the suite is enough.
10512         Display only the children `times', not the shell's.
10513         If the test failed or was skipped, at-times is not available.
10515 2001-08-07  Akim Demaille  <akim@epita.fr>
10517         Always produce testsuite.log, including when there are no
10518         failures.  This helps getting information on skipped tests, and
10519         duration of the tests.  Err, implement the latter btw.
10521         * lib/autotest/general.m4 (AT_INIT): Set up fd 6 for the log.
10522         Dump information on the first run of each test.
10523         (AT_CLEANUP): Create `at-times' containing the duration of the
10524         test group.
10526 2001-08-07  Akim Demaille  <akim@epita.fr>
10528         The use of `dumpstat' revealed that `len' was used although it
10529         should not.  m4_text_wrap was using it, but in the Autoconf world
10530         where it is legal.  Hence (i) test M4sh in its own world, not
10531         Autoconf's, and (ii), ahem, fix the bug :)
10533         * lib/autotest/general.m4: Be sure the set good quotes, as tracing
10534         does not like `' instead of [].
10535         (AT_INIT): Forbid `^_?AT_'.
10536         And don't output such tokens.
10537         * tests/Makefile.am (CLEANFILES): Add `script', `script.s4g',
10538         `script.as', and `autom4te.cache'.
10539         Remove `empty' and `macro' which are no longer used.
10540         * tests/atspecific.m4 (AT_CHECK_M4SUGAR, AT_CHECK_M4SH): New.
10541         * tests/m4sugar.at: Use it.
10542         * lib/m4sugar/m4sugar.m4: Use `m4_len' not `len'.
10544 2001-08-07  Akim Demaille  <akim@epita.fr>
10546         * bin/autoconf.in, bin/autoheader.in: --force, -f is a new option.
10548 2001-08-07  Alexandre Duret-Lutz  <duret_g@epita.fr>
10550         * bin/autom4te.in (handle_output): Typo in quadrigraph substitution.
10552 2001-08-04  Akim Demaille  <akim@epita.fr>
10554         * lib/autoconf/functions.m4 (AC_FUNC_ALLOCA, AC_FUNC_ERROR_AT_LINE)
10555         (AC_FUNC_FSEEKO, AC_FUNC_OBSTACK): Use AC_LANG_IFELSE, not
10556         AC_TRY_LINK.
10557         * lib/autoconf/headers.m4 (AC_HEADER_MAJOR): Likewise.
10558         * lib/autoconf/fortran.m4 (_AC_LANG_PROGRAM_C_F77_HOOKS)
10559         (AC_F77_MAIN): Likewise.
10561 2001-08-04  Akim Demaille  <akim@epita.fr>
10563         Don't rely on M4sugar outputting the patterns in files, since we
10564         might process the output _without_ running m4, hence without these
10565         files.
10567         * lib/m4sugar/m4sugar.m4 (m4_init): No need for `m4_tmpdir'.
10568         * bin/autom4te.in (@Request::includes): Remove, unused.
10569         (@Request::source): Rename as...
10570         (@Request::input): this.
10571         (@preselect): Add `m4_pattern_forbid' and `m4_pattern_allow'.
10572         (&handle_output): Fetch the patterns from the traces.
10573         `$forbidden' and `$allowed' are constant: use m//o.
10574         (&handle_m4): M4sugar no longer wants `m4_tmpdir'.
10575         (m4_pattern_forbid, m4_pattern_allow): Adjust for tracing only.
10577 2001-08-04  Akim Demaille  <akim@epita.fr>
10579         `autoconf && autoheader' is sped up.  Now, speed up `autoheader &&
10580         autoconf', i.e., in addition to caching traces, cache the output.
10582         * bin/autom4te.in (Request::cache): Rename as...
10583         (Request::id): this.
10584         ($cache, $icache, $tcache, $ocache): New.
10585         (&handle_m4): Save M4 output in the cache instead of $tmp.
10586         (&handle_output): Adjust.
10587         (&up_to_date_p): Check that the output cache is up to date too.
10588         (top level): Run `&handle_m4' iff force or the cache is invalid.
10589         Run `&handle_output' if the output cache is more recent.
10591 2001-08-04  Akim Demaille  <akim@epita.fr>
10593         * bin/autom4te.in ($force): New.
10594         (&parse_args, &print_usage): -f, --force is a new option.
10595         (&handle_output): CPP directives might have spaces after `#'.
10596         (&parse_args): The first file only can be frozen.
10598 2001-08-04  Akim Demaille  <akim@epita.fr>
10600         Don't let autom4te compute the `include' traces several times:
10601         first check that the trace cache file is up to date, and then
10602         compare its timestamp with that of the output.
10604         * bin/autom4te.in, bin/autoupdate.in, bin/autoscan.in: Normalize
10605         the preamble.  Don't require 5.005 as Autom4te::General does it,
10606         and better yet (use `use', not `require'!).
10607         * lib/Autom4te/Struct.pm: Rename the last occurrences of
10608         Class::Struct as Autom4te::Struct.
10609         * lib/Autom4te/General.pm (File::stat): Use it.
10610         (&mtime): New, export it.
10611         * bin/autom4te.in: Use it.
10612         Declare `$req' is invalid if it is outdated.
10613         Don't declare it valid before saving it if something went wrong.
10615 2001-08-04  Akim Demaille  <akim@epita.fr>
10617         Autom4te shall not encode Autoconf data, and preselecting traces
10618         must be proposed to the users.
10620         * bin/autom4te.in (@required_trace): Remove.
10621         (@preselect): New.
10622         (&parse_args, &print_usage): -p, --preselect is a new option.
10623         (&up_to_date_p): Adjust.
10624         * bin/autoconf.in: Preselect some Autoconf macros.
10626 2001-08-04  Akim Demaille  <akim@epita.fr>
10628         * tests/tools.at (autoconf --trace: user macros): Check traces on
10629         macros invoked without arguments, and macros invoked with multiple
10630         lines arguments.
10632 2001-08-03  Alexandre Duret-Lutz  <duret_g@epita.fr>
10634         * bin/autom4te.in (handle_traces): Fix rewriting of traces without
10635         arguments.
10637 2001-08-03  Akim Demaille  <akim@epita.fr>
10639         * bin/autoconf.in ($@): Work around the usual sh bug.
10640         From Nicolas Joly.
10642 2001-08-03  Akim Demaille  <akim@epita.fr>
10644         Clean up the handling of the M4 builtins tracing exception.
10646         * bin/autom4te.in (Request::request): Don't complete M4 builtins
10647         trace requests.
10648         (@m4_builtins): Rename as...
10649         (@m4_builtin): this.
10650         (%m4_builtin_alternate_name): New.
10651         (&parse_args): Complete the trace requests with alternate names.
10652         (&handle_traces): Hence no longer do it here.
10653         (&trace_requests): Remove, unused.
10655 2001-08-03  Akim Demaille  <akim@epita.fr>
10657         * doc/autoconf.texi (Redefined M4 Macros): Document m4_exit,
10658         m4_if, and m4_wrap.
10660 2001-08-03  Akim Demaille  <akim@epita.fr>
10662         * lib/m4sugar/m4sugar.m4 (m4_init): Also forbid `_m4_*' tokens.
10663         (m4_divert_pop): Dump the whole diversion stack when a diversion
10664         mismatch happens.
10665         * bin/autom4te.in (&handle_output): Remember of the first
10666         occurrence of a possibly undefined macro, not the last.
10667         Complain about the possibly undefined macros in the same order as
10668         the appear in the output.
10669         * lib/autoconf/Makefile.am (autoconf.m4f): List its dependencies.
10670         * tests/tools.at (autoconf: forbidden tokens, basic)
10671         (autoconf: forbidden tokens, exceptions): No longer sort
10672         autoconf's stderr, as it is now deterministic.
10673         Check that `dnl' is caught.
10675 2001-08-01  Akim Demaille  <akim@epita.fr>
10677         * configure.ac: Bump to 2.52c.
10679 2001-08-01  Akim Demaille  <akim@epita.fr>
10681         Version 2.52b.
10683         * lib/Autom4te/Makefile.am (perllibdir): s/Autoconf/Autom4te/.
10685 2001-08-01  Akim Demaille  <akim@epita.fr>
10687         Version 2.52a.
10689 2001-08-01  Akim Demaille  <akim@epita.fr>
10691         * lib/Autom4te/General.pm: Use `carp' and `croak', not `warn' and
10692         `die'.
10693         (&END): New.
10694         * bin/autoconf.in, bin/autom4te.in, bin/autoupdate.in: Remove your
10695         `END', as `Autom4te::General::END' will be triggered.
10696         * bin/autoupdate.in, bin/autoscan.in: Improve error messages accuracy.
10697         * bin/autoupdate.in (File::Compare, File::Copy): Use them instead of
10698         system to run `mv', `rm', and `cmp'.
10700 2001-08-01  Akim Demaille  <akim@epita.fr>
10702         * lib/Autom4te/General.pm (&unique): New.
10703         * bin/autoscan.in (&output): Use it to issue trace requests once.
10705 2001-08-01  Akim Demaille  <akim@epita.fr>
10707         * lib/Autom4te/General.pm: New.
10708         * bin/autom4te.in (Autom4te::General): Use it.
10709         ($me, $tmp, $verbose, $debug, &mktmpdir, &verbose, &xsystem)
10710         (&find_configure_ac, &find_slave): Remove.
10711         * bin/autoscan.in: Likewise.
10712         * bin/autoupdate.in: Likewise.
10714 2001-08-01  Akim Demaille  <akim@epita.fr>
10716         * autoconf.in, autom4te.in, autoscan.in, ifnames.in,
10717         * autoheader.in, autoreconf.in, autoupdate.in: Move to...
10718         * bin: here, new directory.
10719         * lib/Autoconf: Rename as...
10720         * lib/Autom4te: this, to please case insensitive junkie OSes.
10722 2001-08-01  Akim Demaille  <akim@epita.fr>
10724         * autom4te.in ($m4): Handle the --nesting-limit.
10725         * autoconf.in (M4): Remove.
10727 2001-08-01  Akim Demaille  <akim@epita.fr>
10729         * autoconf.in ($AWK): Remove, no longer used.
10730         * test/tools.at: Use AT_CHECK_AUTOCONF.
10731         (AWK portability): Remove, for autoconf no longer uses AWK.
10732         (Syntax of the Perl scripts): New.
10733         * configure.ac: autoconf no longer needs an AWK with a good
10734         regexp engine.
10735         Use a static test on AC_PACKAGE_VERSION.
10736         * autom4te.in (&up_to_date_p): Output depends on the arguments.
10737         * lib/autoconf/Makefile.am: Ship version.m4, maintainer file.
10738         * tests/atconfig.in (PERL): New.
10740 2001-08-01  Akim Demaille  <akim@epita.fr>
10742         * lib/autoconf/lang.m4 (AC_LANG(C), AC_LANG_C, _AC_LANG_ABBREV(C))
10743         (AC_LANG(C++), AC_LANG_CPLUSPLUS, _AC_LANG_ABBREV(C++))
10744         (AC_LANG_SOURCE(C), AC_LANG_PROGRAM(C), AC_LANG_CALL(C))
10745         (AC_LANG_FUNC_LINK_TRY(C), AC_LANG_BOOL_COMPILE_TRY(C))
10746         (AC_LANG_INT_SAVE(C), _AC_ARG_VAR_CPPFLAGS, _AC_ARG_VAR_LDFLAGS)
10747         (AC_LANG_PREPROC(C), _AC_PROG_PREPROC_WORKS_IFELSE, AC_PROG_CPP)
10748         (AC_LANG_COMPILER(C), ac_cv_prog_gcc, AC_PROG_CC, _AC_PROG_CC_G)
10749         (AC_PROG_GCC_TRADITIONAL, AC_PROG_CC_C_O, AC_LANG_PREPROC(C++))
10750         (AC_PROG_CXXCPP, AC_LANG_COMPILER(C++), ac_cv_prog_gxx)
10751         (AC_PROG_CXX, _AC_PROG_CXX_G, _AC_PROG_CXX_EXIT_DECLARATION)
10752         (AC_PROG_CC_STDC, AC_C_CROSS, AC_C_CHAR_UNSIGNED, AC_C_LONG_DOUBLE)
10753         (AC_C_BIGENDIAN, AC_C_INLINE, AC_C_CONST, AC_C_VOLATILE)
10754         (AC_C_STRINGIZE, AC_C_PROTOTYPES): Move to...
10755         * lib/autoconf/c.m4: here, new file.
10757         * lib/autoconf/lang.m4 (AC_LANG(Fortran 77), AC_LANG_FORTRAN77)
10758         (_AC_LANG_ABBREV(Fortran 77), AC_LANG_SOURCE(Fortran 77))
10759         (AC_LANG_PROGRAM(Fortran 77), AC_LANG_CALL(Fortran 77))
10760         (AC_LANG_PREPROC(Fortran 77), AC_LANG_COMPILER(Fortran 77))
10761         (ac_cv_prog_g77, AC_PROG_F77, _AC_PROG_F77_G, AC_PROG_F77_C_O)
10762         (_AC_PROG_F77_V_OUTPUT, _AC_PROG_F77_V, AC_F77_LIBRARY_LDFLAGS)
10763         (AC_F77_DUMMY_MAIN, _AC_LANG_PROGRAM_C_F77_HOOKS, AC_F77_MAIN)
10764         (_AC_F77_NAME_MANGLING, AC_F77_NAME_MANGLING, AC_F77_WRAPPERS)
10765         (AC_F77_FUNC): Move to...
10766         * lib/autoconf/fortran.m4: here, new file.
10768 2001-08-01  Akim Demaille  <akim@epita.fr>
10770         * acfunctions.m4: Rename as...
10771         * lib/autoconf/functions.m4: this.
10772         * acgeneral.m4: Rename as...
10773         * lib/autoconf/general.m4: this.
10774         * acheaders.m4: Rename as...
10775         * lib/autoconf/headers.m4: this.
10776         * aclang.m4: Rename as...
10777         * lib/autoconf/lang.m4: this.
10778         * acoldnames.m4: Rename as...
10779         * lib/autoconf/oldnames.m4: this.
10780         * acspecific.m4: Rename as...
10781         * lib/autoconf/specific.m4: this.
10782         * actypes.m4: Rename as...
10783         * lib/autoconf/types.m4: this.
10784         * autoconf.m4: Rename as...
10785         * lib/autoconf/autoconf.m4: this.
10787         * m4sugar.m4: Rename as...
10788         * lib/m4sugar/m4sugar.m4: this.
10789         * m4sh.m4: Rename as...
10790         * lib/m4sugar/m4sh.m4: this.
10792         * tests/atgeneral.m4: Rename as...
10793         * lib/autotest/general.m4: this.
10795         * acfunctions: Rename as...
10796         * lib/autoscan/functions: this.
10797         * acheaders: Rename as...
10798         * lib/autoscan/headers: this.
10799         * acidentifiers: Rename as...
10800         * lib/autoscan/identifiers: this.
10801         * aclibraries: Rename as...
10802         * lib/autoscan/libraries: this.
10803         * acmakevars: Rename as...
10804         * lib/autoscan/makevars: this.
10805         * acprograms: Rename as...
10806         * lib/autoscan/programs: this.
10808 2001-08-01  Akim Demaille  <akim@epita.fr>
10810         * doc/autoconf.texi: Moving/deleting open files is not portable.
10811         Portability issues for `.' (source), and more information about sed.
10813 2001-07-25  Steven G. Johnson  <stevenj@alum.mit.edu>
10815         * aclang.m4 (AC_F77_LIBRARY_LDFLAGS): Ignore -libmil (on Solaris),
10816         which has a special meaning and is not a reference to libibmil.a.
10817         Reported by Matteo Frigo.
10819 2001-07-25  Pavel Roskin  <proski@gnu.org>
10821         * autom4te.in (mktmpdir): Strip trailing newline from mktemp
10822         output.
10824 2001-07-25  Akim Demaille  <akim@epita.fr>
10826         * autoconf.in: Try to define the variables before using them.
10827         * autom4te.in ($perllibdir): Use `$autom4te_perllibdir' as envvar
10828         instead of `$perllibdir'.
10829         * tests/atconfig.in ($autom4te_perllibdir): Export it.
10831 2001-07-25  Akim Demaille  <akim@epita.fr>
10833         * autoconf.in (ac_LF_and_DOT): Remove, unused.
10835 2001-07-24  Akim Demaille  <akim@epita.fr>
10837         Let autoconf use autom4te for traces.
10839         * autoconf.in ($task, task trace): Remove, merely pass --trace to
10840         autom4te.
10841         * autoheader.in: Don't pass `-' to autoconf, rather, a tmp file.
10842         (Because I found no way for autom4te to accept `-').
10843         * autom4te.in (&Request::request): Beware of M4 builtins.
10844         (END): Don't try to remove the content of an empty dir.
10845         (&parse_args): Default is `$f:$l:$n:$%', not `$f:$l:$n:$*'.
10846         (&handle_output): Set a default value to `$forbidden'.
10847         * autoupdate.in (&verbose, &xsystem): New, from autom4te.in.
10848         ($autoconf): Pass --debug and --verbose.
10849         * tests/atspecific.m4 (AT_CHECK_AUTOCONF): Clean up autom4te's
10850         cache.
10852 2001-07-24  Akim Demaille  <akim@epita.fr>
10854         Let autoconf use autom4te to create configure.
10856         * autoconf.in ($automate): New var.
10857         (task script): Use autom4te.
10858         * autom4te.in (File::Spec): Use it.
10859         (&find_file): New.
10860         (&parse_args): --warning is -W, not -w.
10861         Find the top level files.
10862         (&handle_m4): Pass the warnings flags.
10863         Don't report verbosely m4's failures, unless requested.
10864         (&handle_output): Don't complain for forbidden tokens in comments.
10865         Be sure to report all the forbidden tokens within a single line.
10866         (&trace_format_to_m4): Preserve `$_'.
10867         (&handle_traces): Sort the output macros.
10868         (&up_to_date_p): Find the files before trying to get its time stamp.
10870 2001-07-24  Akim Demaille  <akim@epita.fr>
10872         * Makefile.am: Ship, build and install Autom4te.
10873         (SUBDIRS): Add lib.
10874         * lib/Autoconf/Struct.pm: New, from Automake 1.5.
10875         * configure.in: Require Perl.
10876         * man/autom4te.in: New.
10878 2001-07-19  Paul Eggert  <eggert@twinsun.com>
10880         * doc/autoconf.texi (Cache Checkpointing): Use AC_MSG_ERROR in
10881         example, rather than (exit 1); exit (which isn't portable).
10883 2001-07-18  Akim Demaille  <akim@epita.fr>
10885         Version 2.52.
10887 2001-07-18  Akim Demaille  <akim@epita.fr>
10889         The C-Fortran 77 hooks are available only once AC_F77_DUMMY_MAIN
10890         was run, while they are needed also when it is expanded.
10891         Reported by Nicolas Joly.
10893         * aclang.m4 (AC_F77_DUMMY_MAIN): Define _AC_LANG_PROGRAM_C_F77_HOOKS.
10894         (AC_LANG_PROGRAM(C)): Use it instead of depending upon
10895         AC_F77_DUMMY_MAIN being expanded.
10897 2001-07-18  Akim Demaille  <akim@epita.fr>
10899         * configure.in: Bump to 2.51a.
10901 2001-07-17  Akim Demaille  <akim@epita.fr>
10903         Version 2.51.
10905 2001-07-17  Akim Demaille  <akim@epita.fr>
10907         * aclang.m4 (AC_F77_DUMMY_MAIN): Let the interface be more
10908         Autoconfy: $1 = action-if-found, $2 = action-if-not-found.
10910 2001-07-17  Akim Demaille  <akim@epita.fr>
10912         The runtime test for AC_FUNC_GETPGRP fails when prototypes are
10913         used.  Well, then use the prototypes when you can, and runtime as
10914         a last resort.
10915         Reported by Artur Frysiak
10917         * acfunctions.m4 (_AC_FUNC_GETPGRP_TEST): New.
10918         (AC_FUNC_GETPGRP): Use it.
10919         First try to compile with 0-ary or 1-ary calls.
10921 2001-07-17  Akim Demaille  <akim@epita.fr>
10923         * actypes.m4 (_AC_CHECK_TYPE_REPLACEMENT_TYPE_P): `foo_t' is a
10924         replacement type.
10925         From Paul Eggert.
10927 2001-07-17  Akim Demaille  <akim@epita.fr>
10929         * Makefile.maint: Sync. with cppi 1.10.
10931 2001-07-17  Akim Demaille  <akim@epita.fr>
10933         * aclang.m4 (AC_LANG_PROGRAM(C)): Output F77_DUMMY_MAIN only when
10934         AC_F77_DUMMY_MAIN has been run.
10935         From Pavel Roskin and Steven G. Johnson.
10937 2001-07-17  Akim Demaille  <akim@epita.fr>
10939         * configure.in: Rename as...
10940         * configure.ac: this.
10942 2001-07-17  Akim Demaille  <akim@epita.fr>
10944         * Makefile.am (INSTALL.txt): Don't use $@ and $< in non suffix
10945         rules.
10946         From Marc Espie.
10947         * Makefile.maint (release-archive-dir): Rename as...
10948         (release_archive_dir): this, so that it can be specialized in
10949         Makefile.
10951 2001-07-14  Akim Demaille  <akim@epita.fr>
10953         * configure.in: Bump to 2.50d.
10955 2001-07-14  Akim Demaille  <akim@epita.fr>
10957         Version 2.50c.
10958         * Makefile.maint (alpha): Typo.
10960 2001-07-14  Akim Demaille  <akim@epita.fr>
10962         * doc/autoconf.texi (Limitations of Make): Macro names and underscore.
10964 2001-07-14  Akim Demaille  <akim@epita.fr>
10966         * config/config.guess, config/config.sub, config/texinfo.tex
10967         * doc/standards.texi, doc/make-stds.texi: Update.
10969 2001-07-14  Akim Demaille  <akim@epita.fr>
10971         * Makefile.maint (cvs-check, cvs-tag-check, cvs-diff-check): New.
10973 2001-07-14  Akim Demaille  <akim@epita.fr>
10975         * Makefile.maint (maintainer-check): Rename as...
10976         (maintainer-distcheck): this.
10977         (changelog-check, static-check): New.
10978         Use them.
10980 2001-07-14  Kevin Ryde  <user42@zip.com.au>
10982         * doc/autoconf.texi (C++ Compilers Characteristics): Last resort
10983         for CXX is g++, not gcc.
10985 2001-07-14  Akim Demaille  <akim@epita.fr>
10987         * doc/autoconf.texi (Files): New subsection.
10989 2001-07-14  Akim Demaille  <akim@epita.fr>
10991         * doc/autoconf.texi (C Compiler, Fortran 77 Compiler): Be subsections
10992         of...
10993         (Generic Compiler Characteristics): this.
10994         (C++ Compiler): New subsection.
10996 2001-07-14  Akim Demaille  <akim@epita.fr>
10998         * autoscan.in: Use IO::File.
10999         Adjust all the routines to use it.
11000         ($log): New file (autoscan.log).
11001         (output): Dump detailed logs into $log, and a shortened version to
11002         stderr.
11003         (&scan_makefile): Refine the regexp catching tokens in the code.
11004         * doc/autoconf.texi (autoscan Invocation): Document `autoscan.log'
11005         and the `configure.ac' checking feature.
11007 2001-07-12  Akim Demaille  <akim@epita.fr>
11009         For some AWK, such as on HPUX 11, `xfoo' does not match `foo|^bar'.
11010         Reported by Michael Elizabeth Chastain.
11012         * autoconf.in: Refuse such AWK.
11013         * configure.in: Likewise.
11014         * Makefile.am (acversion.m4): Do not use move-if-change this file
11015         has dependencies.
11016         * doc/autoconf.texi (Fortran 77 Compiler): Some typos.
11018 2001-07-10  Jens Petersen  <petersen@redhat.com>
11020         * autoscan.in (&scan_makefile): Improve programs regexp to parse
11021         things like "g++", "file.c" and "some-conf" as tokens.
11022         (&scan_file): Match C++ files extensions.
11023         If the filename extension is C++ then ask for c++.
11025 2001-07-05  Steven G. Johnson  <stevenj@alum.mit.edu>
11027         * aclang.m4 (AC_F77_DUMMY_MAIN): Use AC_TRY_LINK, not
11028         AC_TRY_LINK_FUNC, to check whether defining a dummy
11029         main-like routine is needed for linking with F77 libs.
11031 2001-07-05  Pavel Roskin  <proski@gnu.org>
11033         * aclocal.m4 (_AC_PROG_CXX_EXIT_DECLARATION): Remove conftest*
11034         after using break.
11035         (_AC_PROG_F77_V_OUTPUT): Remove conftest*, not conftest.* after
11036         linking.
11038 2001-07-05  Akim Demaille  <akim@epita.fr>
11040         * Makefile.am (move_if_change): New.  Use it instead of `mv'.
11041         (acversion.m4): Name it `$(srcdir)/acversion.m4' to ease broken
11042         Makes' lives.
11043         Reported by Nicolas Joly.
11045 2001-07-04  Akim Demaille  <akim@epita.fr>
11047         * acgeneral.m4 (_AC_RUN_IFELSE): Remove conftest.o when cleaning
11048         up.
11049         * acfunctions.m4 (AC_FUNC_WAIT3): Use `break' to silent some
11050         warnings from compilers.
11051         * aclang.m4 (_AC_LANG_COMPILER_GNU): Log the version information
11052         for all the compilers, not only GNU.  Hence move from here...
11053         (AC_PROG_CC, AC_PROG_CXX, AC_PROG_F77): to here.
11055 2001-07-04  Akim Demaille  <akim@epita.fr>
11057         * acfunctions.m4 (AC_FUNC_STRTOD, AC_FUNC_STRERROR_R)
11058         (AC_FUNC_STRCOLL, AC_FUNC_WAIT3): Use AC_RUN_IFELSE and
11059         AC_COMPILE_IFELSE.
11061 2001-07-04  Akim Demaille  <akim@epita.fr>
11063         * acgeneral.m4 (_AC_INCLUDES_DEFAULT_REQUIREMENTS): Actually apply
11064         the ``strings.h'' change claimed below.
11066 2001-07-04  Akim Demaille  <akim@epita.fr>
11068         * aclang.m4 (_AC_LANG_COMPILER_GNU): s/-dumpspecs/-v/.
11070 2001-07-04  Akim Demaille  <akim@epita.fr>
11072         * acgeneral.m4 (_AC_INCLUDES_DEFAULT_REQUIREMENTS): Include
11073         strings.h if usable with string.h.
11074         Suggested by Paul Eggert.
11076 2001-07-04  Akim Demaille  <akim@epita.fr>
11078         * autoscan.in (&scan_file): Skip FILE if there is FILE.in.
11079         From Jens Petersen.
11081 2001-07-03  Akim Demaille  <akim@epita.fr>
11083         * acgeneral.m4 (_AC_OUTPUT_CONFIG_STATUS): Specify CONFIG_FILES
11084         etc. in the log.
11086 2001-07-03  Akim Demaille  <akim@epita.fr>
11088         * acheaders.m4 (AC_CHECK_HEADER): When INCLUDES are set, use the
11089         compiler, not the preprocessor.
11090         * acgeneral.m4 (_AC_INCLUDES_DEFAULT_REQUIREMENTS): No longer use
11091         dedicated code to check for inttypes.h, as AC_CHECK_HEADERS does
11092         the right thing.
11093         * Makefile.am (.m4.m4f): Emphasize M4 error messages and fail
11094         earlier if there are.
11096 2001-07-03  Akim Demaille  <akim@epita.fr>
11098         * autoscan.in ($initfile): Remove.
11099         (&find_file): Rename as...
11100         (&scan_file): this.
11101         Immediately scan the current file, instead of gathering them, and
11102         later having them handled by &scan_files.
11103         (&scan_files): Merely invoke Find::File.
11104         Adjust.
11106 2001-07-02  Akim Demaille  <akim@epita.fr>
11108         * autoscan.in: Formatting changes, matching the invocation order.
11109         (File::Find): Use it instead of Perl 4's `find.pl'.
11110         (&wanted): Rename as...
11111         (&find_file): this.
11113 2001-07-01  Pavel Roskin  <proski@gnu.org>
11115         * aclang.m4 (AC_F77_DUMMY_MAIN): Remove conftest* after using
11116         break in the argument to AC_TRY_LINK_FUNC.
11117         (AC_F77_MAIN): Remove conftest* after using break in the
11118         argument to AC_TRY_LINK.
11120 2001-07-01  Steven G. Johnson  <stevenj@alum.mit.edu>
11122         Add alternate 'main' routine detection for linking C/C++ with Fortran,
11123         fixing link failures for e.g. AC_F77_WRAPPERS on NetBSD.
11125         * aclang.m4 (AC_F77_DUMMY_MAIN): New macro to detect whether a
11126         dummy alternate main is required even if the user provides her own
11127         'main'.
11128         (AC_F77_MAIN): New macro to detect whether it is possible to
11129         provide an alternate 'main' function name, using the 'main' from
11130         the Fortran libraries.
11131         (AC_LANG_PROGRAM(C)): Use F77_DUMMY_MAIN, if it is defined, so that
11132         cross-language link tests can be performed successfully.
11133         (_AC_F77_NAME_MANGLING): Require AC_F77_DUMMY_MAIN.  Also put $FLIBS
11134         after $LIBS, for consistency; this should be the general rule since
11135         the user may want to link to Fortran libraries that require $FLIBS.
11136         * doc/autoconf.texi: Document AC_F77_DUMMY_MAIN and AC_F77_MAIN.
11138 2001-06-29  Pavel Roskin  <proski@gnu.org>
11140         * atgeneral.m4 (AT_CHECK): Add a newline to the end of
11141         at-stdout and at-stderr instead of removing the newline
11142         from the echo output, which is not guaranteed to work.
11144 2001-06-28  Jens Petersen  <petersen@redhat.com>
11146         * aclang.m4 (_AC_PROG_CXX_EXIT_DECLARATION): Only add declaration to
11147         confdefs.h when non-zero.
11149 2001-06-28  Akim Demaille  <akim@epita.fr>
11151         * configure.in: Bump to 2.50c.
11153 2001-06-26  Akim Demaille  <akim@epita.fr>
11155         Version 2.50b.
11157 2001-06-26  Akim Demaille  <akim@epita.fr>
11159         Version 2.50a.
11161 2001-06-25  Pavel Roskin  <proski@gnu.org>
11163         * tests/atspecific.m4 (AT_CHECK_MACRO): Accept one more
11164         argument, AUTOCONF-FLAGS.
11165         * tests/mktests.sh (update_exclude_list): Add
11166         AC_SYS_RESTARTABLE_SYSCALLS and AC_FUNC_WAIT3.
11167         * tests/semantics.at: Test AC_SYS_RESTARTABLE_SYSCALLS and
11168         AC_FUNC_WAIT3 with "-W no-obsolete".
11170 2001-06-25  Akim Demaille  <akim@epita.fr>
11172         * tests/foreign.at (libtool): Fix the `libtoolize --version' decoding.
11174 2001-06-25  Akim Demaille  <akim@epita.fr>
11176         * autoscan.in (%macro): Now maps from word to list of macros.
11177         (&init_tables): Die when a word which is already handled by
11178         explicit macros is mapped to the default macro.
11179         (&print_unique): Remove, inlined in...
11180         (&output_kind): here.
11181         (File::Basename): Use it.
11182         (&output): Sort the CONFIG_FILES.
11183         * acheaders: Normalize.
11184         * acfunctions: Likewise.
11186 2001-06-25  Akim Demaille  <akim@epita.fr>
11188         * aclang.m4 (_AC_LANG_COMPILER_GNU): If GNU, dump the compiler
11189         characteristics in the logs.
11190         Suggested by Mo DeJong.
11192 2001-06-24  Akim Demaille  <akim@epita.fr>
11194         * acfunctions.m4 (AM_FUNC_ERROR_AT_LINE, AM_FUNC_FNMATCH)
11195         (AM_FUNC_MKTIME, AM_FUNC_OBSTACK, AM_FUNC_STRTOD): Reactivated.
11196         * doc/autoconf.texi (Autoconf 2.13): New section.
11198 2001-06-24  Akim Demaille  <akim@epita.fr>
11200         * autoconf.in (Task traces): Separate the error messages from the
11201         traces to improve robustness.
11203 2001-06-23  Akim Demaille  <akim@epita.fr>
11205         * tests/torture.at (AC_ARG_VAR): Make it a single test instead of
11206         three as failures are unlikely, and speed matters.
11208 2001-06-23  Akim Demaille  <akim@epita.fr>
11210         * doc/autoconf.texi (Redefined M4 Macros): New.
11212 2001-06-23  Akim Demaille  <akim@epita.fr>
11214         * acgeneral.m4 (_AC_INCLUDES_DEFAULT_REQUIREMENTS): Consider
11215         inttypes.h is missing if it conflicts with sys/types.h, as on IRIX
11216         5.3.
11218 2001-06-23  Paolo Bonzini  <bonzini@gnu.org>
11220         * acgeneral.m4 (_AC_OUTPUT_CONFIG_STATUS): Defer parsing of
11221         config.status targets to after the evaluation of the INIT-CMDS.
11222         Double quote config.status targets (used to be single quoted).
11224 2001-06-23  Akim Demaille  <akim@epita.fr>
11226         * tests/torture.at (CONFIG_FILES, HEADERS, LINKS and COMMANDS):
11227         Check the content of the created file.
11228         Check the ./config.status command line invocation.
11230 2001-06-23  Akim Demaille  <akim@epita.fr>
11232         * tests/foreign.at (Libtool): Reject prehistoric versions.
11234 2001-06-23  Akim Demaille  <akim@epita.fr>
11236         * aclang.m4 (_AC_COMPILER_EXEEXT_DEFAULT): Try to be robust to
11237         preexisting files matching a.*.
11239 2001-06-23  Akim Demaille  <akim@epita.fr>
11241         * acgeneral.m4 (_AC_ARG_VAR_VALIDATE): Output error messages on
11242         stderr.
11243         * doc/autoconf.texi (AC_ARG_VAR): Update.
11245 2001-06-21  Akim Demaille  <akim@epita.fr>
11247         * acgeneral.m4 (_AC_ARG_VAR_VALIDATE): Die instead of warning when
11248         precious variables have changed.
11249         * tests/torture.at (AC_ARG_VAR): Adjust.
11251 2001-06-21  Akim Demaille  <akim@epita.fr>
11253         ./configure --program-suffix=foo produces `transform=s,$$,foo,;',
11254         but some sed choke on multiple `;', and other tools (e.g.,
11255         Automake), include the separator themselves.
11257         * acgeneral.m4 (AC_ARG_VAR): Be sure not to leave extra `;'.
11259 2001-06-19  Tim Van Holder  <tim.van.holder@pandora.be>
11261         * doc/autoconf.texi (Functions Portability): Rename as...
11262         (Function Portability): this.
11263         (Function Portability): Document potential problems with unlink().
11265 2001-06-19  Paul Eggert  <eggert@twinsun.com>
11267         * NEWS, doc/autoconf.texi: Document quadrigraphs.
11269 2001-06-18  Akim Demaille  <akim@epita.fr>
11271         * acfunctions.m4 (AC_FUNC_FORK): Fix typos.
11273 2001-06-18  Ruediger Kuhlmann  <info@ruediger-kuhlmann.de>
11275         * acfunctions.m4: (AC_FUNC_VFORK) rename as...
11276         (_AC_FUNC_VFORK): this.
11277         Remove AC_DEFINEs and don't guess cross-compilation values.
11278         (_AC_FUNC_FORK): New, check whether fork() isn't just a stub.
11279         (AC_FUNC_FORK): New, use _AC_FUNC_VFORK and _AC_FUNC_FORK to
11280         define HAVE_WORKING_FORK, HAVE_WORKING_VFORK; and vfork to fork if
11281         vfork doesn't work.
11282         Guess values if cross-compiling, but warn.
11283         * acfunctions: Add AC_FUNC_FORK.
11284         * doc/autoconf.texi: Document AC_FUNC_FORK. Give example to define
11285         and vfork appropriately.
11287 2001-06-18  Akim Demaille  <akim@epita.fr>
11289         * doc/autoconf.texi (Functions Portability): New section.
11291 2001-06-18  Akim Demaille  <akim@epita.fr>
11293         * autoconf.in (M4): Pass --nesting-limit=1024, unless already set
11294         in $M4.
11295         Suggested by Andreas Schwab.
11297 2001-06-18  Akim Demaille  <akim@epita.fr>
11299         * acfunctions.m4 (AC_FUNC_CHOWN, AC_FUNC_CLOSEDIR_VOID)
11300         (AC_FUNC_GETPGRP, AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK)
11301         (AC_FUNC_MMAP, AC_FUNC_SELECT_ARGTYPES, _AC_FUNC_STAT)
11302         (AC_FUNC_UTIME_NULL): Use AC_INCLUDES_DEFAULT.
11303         Don't use AC_TRY_RUN, which double quotes, prefer AC_RUN_IFELSE,
11304         and either AC_LANG_SOURCE or AC_LANG_PROGRAM.
11305         (AC_FUNC_CLOSEDIR_VOID): Protect C++ from `int closedir ();' (or
11306         the converse).
11308 2001-06-18  Akim Demaille  <akim@epita.fr>
11310         * doc/autoconf.texi (ms): New index.
11311         (Macro Index): Rename as...
11312         (Autoconf Macro Index): this.
11313         (M4 Macro Index): New appendix.
11314         (Programming in M4): New chapter.
11315         Define M4sugar, M4sh, m4_pattern_forbid, and m4_pattern_allow.
11316         (Quoting): Rename as...
11317         (M$ Quotation): this.
11318         Be part of `Programming in M4).
11320 2001-06-18  Nicolas Joly  <njoly@pasteur.fr>
11322         * tests/torture.at (AC_ARG_VAR): Set variables and export them
11323         in separate statements for compatibility with Tru64 v5.1.
11325 2001-06-17  Akim Demaille  <akim@epita.fr>
11327         * acgeneral.m4 (_AC_ARG_VAR_VALIDATE): Be sure to cache the
11328         current values of the precious variables, not the previously
11329         cached values.
11330         Pass precious variables which are set to config.status.
11331         * doc/autoconf.texi (Setting Output Variables): Document AC_ARG_VAR.
11332         * tests/torture.at (AC_ARG_VAR): New.
11334 2001-06-15  Paul Eggert  <eggert@twinsun.com>
11336         * doc/autoconf.texi: Move AC_FUNC_WAIT3 and
11337         AC_SYS_RESTARTABLE_SYSCALLS to the obsolete section,
11338         and explain why and how to replace them.
11339         * acfunctions.m4 (AC_FUNC_WAIT3): Warn as obsolete.
11340         * acspecific.m4 (AC_SYS_RESTARTABLE_SYSCALLS): Likewise.
11342 2001-06-15  Akim Demaille  <akim@epita.fr>
11344         `build_alias', `host_alias', and `target_alias' are not AC_SUBST'd.
11345         Reported by Bruno Haible.
11347         * acgeneral.m4 (AC_ARG_VAR): Move the AC_SUBST, from here...
11348          (_AC_ARG_VAR_PRECIOUS): to here.
11350 2001-06-15  Pavel Roskin  <proski@gnu.org>
11352         * acheaders.m4 (_AC_CHECK_HEADER_DIRENT): Instead of defining
11353         an unused pointer use cast to this type and `if' statement to
11354         avoid warnings from the compiler.
11355         (AC_HEADER_TIME): Likewise.
11356         * actypes.m4 (AC_CHECK_MEMBER): s/foo/ac_aggr/. Use the member
11357         in `if' statement to avoid warnings from the compiler. Declare
11358         ac_aggr static to avoid the need to initialize it.
11360 2001-06-14  Akim Demaille  <akim@epita.fr>
11362         * doc/autoconf.texi (Portable Shell): Move to follow `Writing
11363         Macros'.
11365 2001-06-13  Akim Demaille  <akim@epita.fr>
11367         * m4/missing.m4, config/missing: Updated to Automake 1.4g's.
11368         Suggested by Alexander Mai.
11370 2001-06-13  Akim Demaille  <akim@epita.fr>
11372         * acgeneral.m4 (_AC_INCLUDES_DEFAULT_REQUIREMENTS): Guard
11373         sys/types.h and sys/stat.h, and check for them.
11375 2001-06-13  Akim Demaille  <akim@epita.fr>
11377         * acheaders.m4 (AC_CHECK_HEADER, AC_CHECK_HEADERS): Support $4 =
11378         INCLUDES.
11380 2001-06-12  Maciej W. Rozycki  <macro@ds2.pg.gda.pl>
11382         * acspecific.m4 (AC_PATH_XTRA): Check if linking against libX11
11383         succeeds and only try adding libdnet upon a failure.
11385 2001-06-12  Akim Demaille  <akim@epita.fr>
11387         * autoscan.in (&output_kind): Output the comment only if it exists.
11388         (%kind_comment): Add entry for `programs'.
11389         (&output_programs): Use &output_kind.
11390         (&output_functions, &output_identifiers, &output_headers)
11391         (&output_programs): Inline, and remove.
11393 2001-06-12  Akim Demaille  <akim@epita.fr>
11395         * autoscan.in (%kind_comment): New.
11396         (output_kind): New.
11397         (output_functions, output_identifiers, output_headers): Use it.
11399 2001-06-12  Akim Demaille  <akim@epita.fr>
11401         * autoscan.in (&print_unique): Take `$kind' and `$word' as
11402         arguments, to factor indirections into `%macro' and `%used'.
11403         (%generic_macro): Fix a typo.
11405 2001-06-12  Akim Demaille  <akim@epita.fr>
11407         * aclibraries: New.
11408         * autoscan.in (@kinds): Add `libraries'.
11409         Use `@kinds' instead of hard coded lists.
11410         (%programs, %headers, %identifiers, %makevars, %libraries, %functions):
11411         Remove, replaced by...
11412         (%used): this.
11414 2001-06-12  Akim Demaille  <akim@epita.fr>
11416         * autoscan.in (%functions_macros %headers_macros)
11417         (%identifiers_macros %programs_macros %makevars_macros): Remove,
11418         replaced by...
11419         (%macro): New.
11421 2001-06-11  Raja R Harinath  <harinath@cs.umn.edu>
11423         * aclang.m4 (AC_NO_EXECUTABLES): Override
11424         _AC_COMPILER_EXEEXT_WORKS, not _AC_LANG_COMPILER_WORKS.
11426 2001-06-11  Akim Demaille  <akim@epita.fr>
11428         * aclang.m4 (AC_NO_EXECUTABLES): Define the macros with their
11429         trailing new line.
11430         Reported by Andreas Schwab.
11432 2001-06-11  Akim Demaille  <akim@epita.fr>
11434         * Makefile.am, Makefile.maint: Typos.
11436 2001-06-09  Akim Demaille  <akim@epita.fr>
11438         * doc/autoconf.texi (Here-Documents): New section, gathering
11439         documentation about here-documents.
11440         Use `href', not `uref', and other changes.
11442 2001-06-09  Akim Demaille  <akim@epita.fr>
11444         * doc/autoconf.texi (Portable Shell Programming): Promoted as a
11445         chapter.
11447 2001-06-09  Akim Demaille  <akim@epita.fr>
11449         * doc/autoconf.texi (Limitations of Builtins): Complete the
11450         description of the here-docs penalties with Alexandre Oliva's
11451         explanations.
11453 2001-06-01  Paul Eggert  <eggert@twinsun.com>
11455         * doc/autoconf.texi: Talk about here documents and speedups.
11456         Do not use "echo" on arbitrary strings.
11457         Spell "here-documents" consistently with the standard.
11459 2001-06-09  Akim Demaille  <akim@epita.fr>
11461         * doc/autoconf.texi (Concept Index): Introduce it.
11462         Regenerate the menus.
11464 2001-06-09  Akim Demaille  <akim@epita.fr>
11466         * Makefile.maint, GNUmakefile: New, from Jim Meyering.
11467         * config/prev-version.txt: New.
11468         * config/move-if-change: New, for GNU libc.
11470 2001-06-06  Pavel Roskin  <proski@gnu.org>
11472         * tests/atgeneral.m4 (AT_INIT): Remove "/bin/sh" after $SHELL.
11474 2001-06-06  Akim Demaille  <akim@epita.fr>
11476         * acgeneral.m4 (AC_CHECK_LIB): Fix the cache var name to work
11477         properly when $1 is not a literal.
11478         Fixes PR Autoconf/187, reported by Bram Moolenaar.
11480 2001-06-06  Akim Demaille  <akim@epita.fr>
11482         Invoking AC_COPYRIGHT before AC_INIT fails.
11484         * Makefile.am (.m4.m4f): Pass --fatal-warnings to m4.
11485         * acgeneral.m4 (_m4_divert(VERSION_FSF))
11486         (_m4_divert(VERSION_USER)): New.
11487         (AC_COPYRIGHT): $2 is the diversion to use.
11488         (_AC_INIT_COPYRIGHT): Use the FSF diversion.
11489         (AC_INIT): Remove dead comments as now it's commutative.
11491 2001-06-06  Akim Demaille  <akim@epita.fr>
11493         * tests/semantics.at (AC_CHECK_LIB): Strengthen to reflect
11494         PR autoconf/187.
11496 2001-06-05  Akim Demaille  <akim@epita.fr>
11498         * acgeneral.m4 (_AC_INIT_PARSE_ARGS): `prefix' and `exec_prefix'
11499         can be empty.
11500         `*dir' variables cannot be NONE.
11501         Reported by Mark Kettenis.
11503 2001-06-05  Paul Eggert  <eggert@twinsun.com>
11505         * doc/autoconf.texi: Fix references to Solaris and SunOS versions.
11507 2001-06-04  Akim Demaille  <akim@epita.fr>
11509         * acgeneral.m4 (AC_VAR_SET, AC_VAR_GET, AC_VAR_TEST_SET)
11510         (AC_VAR_SET_IFELSE, AC_VAR_PUSHDEF and AC_VAR_POPDEF, AC_TR_CPP)
11511         (AC_TR_SH): Move as...
11512         * m4sh.m4 (AS_VAR_SET, AS_VAR_GET, AS_VAR_TEST_SET)
11513         (AS_VAR_SET_IF, AC_VAR_PUSHDEF, AS_VAR_POPDEF, AS_TR_CPP)
11514         (AS_TR_SH): these.
11515         (_AS_TR_PREPARE, _AS_CR_PREPARE, _AS_TR_CPP_PREPARE)
11516         (_AS_TR_SH_PREPARE): New.
11517         (AS_SHELL_SANITIZE): Invoke _AS_TR_PREPARE.
11518         * tests/aclocal.m4 (AC_STATE_SAVE): `as_' vars can be modified.
11520 2001-06-02  Akim Demaille  <akim@epita.fr>
11522         * Makefile.am (.m4.m4f): Pass the options first.
11523         Fixes PR autoconf/182.
11525 2001-06-02  Nathan Sidwell  <nathan@codesourcery.com>
11527         GNU getopt, when POSIXLY_CORRECT does not permute options and
11528         arguments.  So pass the options first.
11529         Fixes PR autoconf/184.
11531         * autoconf.sh (m4_prefiles, m4f_prefiles): New variables.
11532         (run_m4): Remove files.
11533         (run_m4f): Remove.
11534         Update remainder of script to use them.
11535         (for warning in): Do not use a literal comma as it will not be
11536         split by IFS.
11538 2001-06-02  Christian Marquardt  <marq@gfz-potsdam.de>
11540         * aclang.m4 (AC_PROG_F77): Add Fujitsu's "frt" to the list of
11541         Fortran compilers to check.
11542         (_AC_PROG_F77_V): Add '-###' as a possible option to print
11543         information on library and object files.
11544         (AC_PROG_CXX): Add Fujitsu's "FCC" to the list of C++ compilers
11545         to check.
11547 2001-06-02  Akim Demaille  <akim@epita.fr>
11549         * autom4te.in (Request::@request): Declare with `vars', not `my',
11550         as it prevents updates via `do FILENAME'.
11552 2001-06-02  Akim Demaille  <akim@epita.fr>
11554         * configure.in (standards_texi): Remove, dead code.
11556 2001-06-02  Akim Demaille  <akim@epita.fr>
11558         * autom4te.in: New.
11560 2001-06-02  Pavel Roskin  <proski@gnu.org>
11562         * acgeneral.m4 (_AC_INIT_PREPARE): Don't rely on $? in the traps
11563         for signals other than 0 - exit with code 1.
11564         * m4sh.m4 (AS_TMPDIR): Likewise.
11565         * autoconf.in: Likewise. Also don't rely on exit == exit $?.
11566         * autoheader.in: Likewise.
11567         * autoreconf.in: Likewise.
11568         * tests/torture.at (Signal handling): New test for the above.
11570 2001-06-01  Akim Demaille  <akim@epita.fr>
11572         * m4sugar.m4 (m4_defn, m4_undefine, m4_popdef): Clarify the error
11573         message.
11575 2001-05-31  Akim Demaille  <akim@epita.fr>
11577         * acfunctions, acheaders, acidentifiers, acmakevars, acprograms:
11578         Add copyright and comments.
11579         * acheaders: Add stdint.h.
11580         Suggested by Paul Eggert.
11582 2001-05-31  Akim Demaille  <akim@epita.fr>
11584         * atgeneral.m4 (AT_INIT): Use $SHELL.
11585         * atspecific.m4 (AT_CHECK_DEFINES): Skip HAVE_STDINT_H.
11587 2001-05-31  Akim Demaille  <akim@epita.fr>
11589         * acgeneral.m4 (_AC_INCLUDES_DEFAULT_REQUIREMENTS): Include
11590         stdint.h.
11591         From Paul Eggert and Lars Hecking.
11593 2001-05-31  Akim Demaille  <akim@epita.fr>
11595         * tests/base.at: Adjust line numbers in error messages.
11597 2001-05-31  Akim Demaille  <akim@epita.fr>
11599         * tests/base.at, tests/m4sh.at: When using AC_PLAIN_SCRIPT be sure
11600         to emit the bangshe line.
11601         Reported by David Carter.
11603 2001-05-30  Steven G. Johnson  <stevenj@alum.mit.edu>
11605         * aclang.m4 (AC_PROG_F77): Add Compaq's "fort" to the list of
11606         Fortran (95) compilers to check.
11608 2001-05-29  Alexandre Duret-Lutz  <duret_g@epita.fr>
11610         * doc/autoconf.texi (Introduction, Pointers): Update the Autoconf
11611         Macro Archive URL.
11613 2001-05-23  Pavel Roskin  <proski@gnu.org>
11615         * aclang.m4 (AC_PROG_CPP): Use `break' instead of `break 2' since
11616         _AC_PROG_PREPROC_WORKS_IFELSE expands arguments outside the loop.
11617         (AC_PROG_CXXCPP): Likewise.
11619 2001-05-22  Akim Demaille  <akim@epita.fr>
11621         * config: New directory.
11622         * configure.in: AC_CONFIG_AUX_DIR it.
11623         * tests/atspecific.m4 (AT_CONFIGURE_AC): Adjust.
11625 2001-05-22  Akim Demaille  <akim@epita.fr>
11627         * autoconf.in, autoreconf.in, autoheader.in, autoscan.in, ifnames.in,
11628         * autoupdate.in: Specify the Emacs mode.
11629         * acversion.m4.in: Rename as...
11630         * acversion.m4: this.
11631         * tests/Makefile.am (CLEANFILES): More garbage.
11633 2001-05-22  Akim Demaille  <akim@epita.fr>
11635         * autoconf.sh, autoreconf.sh, autoheader.sh, autoscan.pl, ifnames.sh:
11636         Rename as...
11637         * autoconf.in, autoreconf.in, autoheader.in, autoscan.in, ifnames.in:
11638         these.
11640 2001-05-21  Akim Demaille  <akim@epita.fr>
11642         * configure.in: Bump to 2.50a.
11644 -----
11646 Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
11648 This file is part of GNU Autoconf.
11650 GNU Autoconf is free software; you can redistribute it and/or modify
11651 it under the terms of the GNU General Public License as published by
11652 the Free Software Foundation; either version 2, or (at your option)
11653 any later version.
11655 GNU Autoconf is distributed in the hope that it will be useful,
11656 but WITHOUT ANY WARRANTY; without even the implied warranty of
11657 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11658 GNU General Public License for more details.
11660 You should have received a copy of the GNU General Public License
11661 along with autoconf; see the file COPYING.  If not, write to
11662 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
11663 Boston, MA 02110-1301, USA.